From 734f89a7209f801005cba79688fbe3383172564e Mon Sep 17 00:00:00 2001 From: feldenr <135638674+feldenr@users.noreply.github.com> Date: Fri, 23 Jan 2026 14:27:15 +0100 Subject: [PATCH] feat: Add FR translation and Mekanism/Create compatibility + Bump version to 2.1.8 --- .gradle/8.8/checksums/checksums.lock | Bin 17 -> 17 bytes .../8.8/executionHistory/executionHistory.bin | Bin 776230 -> 1011610 bytes .../executionHistory/executionHistory.lock | Bin 17 -> 17 bytes .gradle/8.8/fileHashes/fileHashes.bin | Bin 108124 -> 122983 bytes .gradle/8.8/fileHashes/fileHashes.lock | Bin 17 -> 17 bytes .../buildOutputCleanup.lock | Bin 17 -> 17 bytes .gradle/buildOutputCleanup/outputFiles.bin | Bin 19631 -> 19865 bytes .gradle/file-system.probe | Bin 8 -> 8 bytes build.gradle | 2 +- .../runClient_minecraftClasspath.txt | 116 + build/createSrgToMcp/output.srg | 104048 +++++++++++++++ build/downloadMCMeta/version.json | 2 +- build/libs/custom_ore_gen-2.1.5.jar | Bin 183565 -> 0 bytes build/libs/custom_ore_gen-2.1.6.jar | Bin 190731 -> 0 bytes ...gen-2.1.7.jar => custom_ore_gen-2.1.8.jar} | Bin 190724 -> 199513 bytes build/reobfJar/log.txt | 69 +- build/reobfJar/output.jar | Bin 190724 -> 199513 bytes .../assets/custom_ore_gen/lang/fr_fr.json | 31 + .../create_crushing_concentrated_coal.json | 27 + .../create_crushing_copperhighore.json | 27 + .../create_crushing_copperlowerore.json | 27 + ...create_crushing_deepslate_diamond_ore.json | 27 + .../create_crushing_deepslate_iron_ore.json | 27 + .../create_crushing_deepslate_lapis_ore.json | 27 + ...eate_crushing_deepslate_pure_gold_ore.json | 27 + ...reate_crushing_deepslate_redstone_ore.json | 27 + ..._crushing_deepslate_shard_diamond_ore.json | 27 + .../create_crushing_highemeraldore.json | 27 + .../recipes/create_crushing_impure_iron.json | 27 + .../recipes/create_crushing_lapis_ore.json | 27 + .../create_crushing_loweremeraldore.json | 27 + .../recipes/create_crushing_pure_gold.json | 27 + .../recipes/create_crushing_redstone_ore.json | 27 + .../create_crushing_shard_diamond_ore.json | 27 + .../mekanism_enriching_concentrated_coal.json | 12 + .../mekanism_enriching_impure_iron.json | 12 + .../recipes/mekanism_enriching_pure_gold.json | 12 + .../mekanism_enriching_shard_diamond.json | 12 + .../crash-2026-01-23_13.39.36-fml.txt | 136 + run/logs/2026-01-02-2.log.gz | Bin 0 -> 4192 bytes run/logs/debug-1.log.gz | Bin 15634 -> 15842 bytes run/logs/debug-2.log.gz | Bin 14957 -> 15634 bytes run/logs/debug-3.log.gz | Bin 16870 -> 14957 bytes run/logs/debug-4.log.gz | Bin 0 -> 16870 bytes run/logs/debug.log | 1325 +- run/logs/latest.log | 266 +- .../assets/custom_ore_gen/lang/fr_fr.json | 31 + .../create_crushing_concentrated_coal.json | 27 + .../create_crushing_copperhighore.json | 27 + .../create_crushing_copperlowerore.json | 27 + ...create_crushing_deepslate_diamond_ore.json | 27 + .../create_crushing_deepslate_iron_ore.json | 27 + .../create_crushing_deepslate_lapis_ore.json | 27 + ...eate_crushing_deepslate_pure_gold_ore.json | 27 + ...reate_crushing_deepslate_redstone_ore.json | 27 + ..._crushing_deepslate_shard_diamond_ore.json | 27 + .../create_crushing_highemeraldore.json | 27 + .../recipes/create_crushing_impure_iron.json | 27 + .../recipes/create_crushing_lapis_ore.json | 27 + .../create_crushing_loweremeraldore.json | 27 + .../recipes/create_crushing_pure_gold.json | 27 + .../recipes/create_crushing_redstone_ore.json | 27 + .../create_crushing_shard_diamond_ore.json | 27 + .../mekanism_enriching_concentrated_coal.json | 12 + .../mekanism_enriching_impure_iron.json | 12 + .../recipes/mekanism_enriching_pure_gold.json | 12 + .../mekanism_enriching_shard_diamond.json | 12 + 67 files changed, 105888 insertions(+), 1098 deletions(-) create mode 100644 build/classpath/runClient_minecraftClasspath.txt create mode 100644 build/createSrgToMcp/output.srg delete mode 100644 build/libs/custom_ore_gen-2.1.5.jar delete mode 100644 build/libs/custom_ore_gen-2.1.6.jar rename build/libs/{custom_ore_gen-2.1.7.jar => custom_ore_gen-2.1.8.jar} (75%) create mode 100644 build/resources/main/assets/custom_ore_gen/lang/fr_fr.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperhighore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_impure_iron.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_pure_gold.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json create mode 100644 build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json create mode 100644 run/crash-reports/crash-2026-01-23_13.39.36-fml.txt create mode 100644 run/logs/2026-01-02-2.log.gz create mode 100644 run/logs/debug-4.log.gz create mode 100644 src/main/resources/assets/custom_ore_gen/lang/fr_fr.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperhighore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_impure_iron.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_pure_gold.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json create mode 100644 src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json diff --git a/.gradle/8.8/checksums/checksums.lock b/.gradle/8.8/checksums/checksums.lock index 3a8f30c6e0965155f8d14be8097e92297a28bd24..1d49cb53148eba909140d1e3a4ba83f89b348c0b 100644 GIT binary patch literal 17 VcmZSXc(k;*>5}sj1~6be002E91%dzo literal 17 VcmZSXc(k;*>5}sj1~6b;0RTM-1!@2Q diff --git a/.gradle/8.8/executionHistory/executionHistory.bin b/.gradle/8.8/executionHistory/executionHistory.bin index 87dbb8843ab03068192424836d23f28b90f75a2e..145d9c9e8913b529efb77cf92d70b5579042b5a9 100644 GIT binary patch delta 27638 zcmeHwXLuAxw)TuPqc8$97LL{7GP{l&Y0X0kt7f~c>n<-BOy?ek;sS~jEF)a znvBSZD00p@es9&t288Y1yZ7$i`{VOt?Q>LJeY(P_bKY~_l6Uc%iZd@)jmYa$|CYhv z6&l&3RaJu_!02T#oGE4?|5!@*f*eWZ3|kHx440QvIpAywgW>8D$cw({vv%!TC1+Ib zTzP*ESX#ElFur{37TVjGwcn?-f0o_9oTv2aI-6*_;ivh(w{Mx7rR}HUi>K1|j57!P z-hOA>g0*W73~5T+y>H%*YM+a*!MD967E2jC$)n`Qz~4L9I#;jJ?1Ve5X#02J`+sk5 ze)o+bhh=gl+HPiwMlH%!)61B9?b@K6YZHIY8JXy+$6@}h@xzm!S!%zojvj-!em%NM z&fxB%JSe!Q8Y*@R>1wx@nDZ#%{@R7D`V{}wI`r7J%3j~JL_Pe;=G##0)1{xL-t3nR{s!Zy9%>)axKmFG2q+oVxW0dhS`E<9uAds(yGuxLg|59rg1xOWxcTvYCxo zgYTop{Z#OKqiir3<-c2w6^(Y8Gqo6)MGMIr)@t^Q!4r+v^i5cgGWwd0Mt?IM*6&MF zHeFi*m4Nb=KA%rukZ5XHDi38O~wUt ztNnE^YtfJ9kbuW}NyQNW0y>L6PKqIf`Z|C)W4%+9NF5v^(dBqQC=iPtY_g*@7MgP04IM6h1 z@A}%O-p^<6&uO|iF30=ttm&JghBc@kb&M{oSeqI)gW#g#sl;^)2etsJ1YuVHk>Cv5f`ZVcc4(mQ_pOH&Wwd*->p zz&!uEDcybXsZWosO^e3X@7Zk6&XTEXYgp4a{cc@;K7qY^t9|}Ban!uNZ2Z4;>elI* zJ9w3Ki*&?>FP3i?ZZkY_e)|DU!%( zcGM$0RQ3-ErQ; znX5}cIS1vO)6Uy$qO38pEI4IOuyGQUvM!sTF?P}6(wwZyIt|tk!^z%Uj>6qH21Yhp zI3ls(+e1Y6%=p64J^AuE)vMg&GwzV?NwsE~&K`ks7nHjsjTc1T#oFzR9Yg0CJI2jv z93we3%^@lr%R6}0V2x-}X5F1m8Gq*AZSKDHM4kzw4ie=%77*nz^$IQjCI7CUTZDGl z7qH5F9=avymNV9>~$gPc!j%_!U{}2HSIK2K6iLoC=YoM7vAn# z!A(0)4%x8zhp_?BtwOh|a4ObLwAp!9V4Mn;R+HSK(<#a>Sc$_f+F6!US%dY%zNvQ~ zt*XFexZu_Jx8NMT_R;Atn^6$TOO$P##b@`kO*P&ocx|e>?z$n&#u%5`7`w}^*|AYP zFDVXD$;5ev~1V(gfuslKH3|8gt=J9p)QMv16{xqWc_U%umQnMXChODi{ zWW92?6Q`K%?Yq&JINw%&g4(~L;JxXDnCGhyRYLDB4- z=U z8hG(?v!K3nx;+UzT7CkQ+o9Z!-O&V2BcoGTRncss%BptR>A+dBOE$YrlI;x6#Qg7@ z$GW;tpZVcwh~-WfsmWcsw3k;Gf$jpw9ycGbu5ftllgv|o4#>ekw*$J}4u%zM0?$g= zF$qVFb-4sZm7ETSlU0Rr$ePN-)(zI~bBf-WS3CKGsq=}d+`I!@&Qs-Ur;&YgD4feC zxnvD1Ac?YIhX$Knbc%|?;$%s7*(PBA25U;DeRq1b+WINH=(s}1UM4Tv?xxe9alFeOfPDr8k%Hpam?T%rx0h{YOnQ2zAs znt<`)Ty8~WT$~*y zz^c4WVr@1SrlCjz>vZvUnRl=*m3QI5{bb%*v(@WDaY;L$1r=-^9R8F}|Kt|91o&0W zfo+#ro)Z{5G$bX<<>*(XHmtQ_uzR8G=7$Ohlyd;YF*QLsu!bptFs4^r)v@vi(c80^aMb4oa ztb6xw>9J@_)xM2(g$;;!nzz_)y0jBN6ou|_A-g*kiBS6H?$z~|=i3}vpj&`$L2^6o zDi7b~(436R1*2tboZx_?)oeW6m{Y?;1_#bNBEQz)&bSeGFRZTGppVm?K$R!cGtpyb z%7MMMc|BWY?fGf zEEOHvK%^xTuBXOqjFO7}{x%QTA?Qn3;3yzzl{k7N;4G%FYOO0cNYR zvTA2Jr=Y?=;$PL};O!2l$ZAfPXt3sJbHAsl`Hms;;&S}hVSC(< zeRp+F5S}bvz3S;-{of1$!cHo%l<4p?+M&2*zb${9EHP8)fW}PB&W1{NB(RFZw z8)hT%f~u(^%faV4RE=d^s!KLlnSPG#1(gnxTjF#ll+kT5QA+VR0m^u?#0ktV?87o5Q9$Injo}F|Y(i`MS7um_I7vxi z9c~3q$LX-U7zRcy+hong0Gc3t&M()}T=4pYt^W1*j>&iAiT zJKUf8aiwz(*zl&(#xWS82<4&!5lD3?E+>4Lpa_y=*RbuXO;enR$%t~Q4XDRpot_eK z+r;lfNmS;!HfpL53?vG3)(?2{XYT?mJ+|Uo%uCj-+6(0!Qi0>@CfJ=}?JKUrV z0hzVC5r#y`1p{-b4i>&h6B&mFf3x$u4n-4Ij#~Ei^00t{l6z=0o&KWZd5IR00oG7) zLY*#Hqlts6pBP+=W>%=m~ z42|3k@6_0SqsGLmxqUH21p%0K@hayyd@D1T+~Dr zh*WXA;BW=bL2Q^N2 z`70|rcWBts5XJ$5aEvU-n#kjPDzG3PYH)V34x-99aJW>(=@2Czr`FZ7*tDTtI|YuP z)g!;Vs-+xeH1fc}Utcuhn>HvuWAa=aTh0dMHsBYAvGY980*}DRX)Xs& zfef1koWer^j!nav=(fK3wOW?%+lKaio3q=JXPK7MflpgXVsN<`r;9bKOd?5|XHCUAjczU2=izIoAI&xm&MS)n2juUOwfIa~rKiX!5yhR`T0tfKNfz$k*g%?Yz& zG*RRof&h!_Bx9-X`siF50p-iJI25L^ASvIWJ6my7cJSB|RSelF}>FR47M) zw`*8en_zbW;*+r8QbarQG!5&7xd8jxMS-{T@D%;?3S&N4c169-KQN|c;_NbW>Ag1D)vk56uvrtEe?IV{fM z6cju1Kln(SlXG#v9tb>`hJf|pfl6R-WHk)dElZ!}e1Cal%z$c1i8F5fIClp%xYU=# zCAi~*a^IX7FI>2nz1fG}{Tp_Ma>Pk;Iy8lKA+qD-ii(DD!&52@U;_gXzE2B$?;h`;e^+rVV};kSr9`!{D<*X+*qS#;zdwvnS!IlM`g z!VOX!)fSGbm6B=2A}B}r0FFk&E=d}PE zjonipHtzpqe2tVVnm6N32mW>^8TftMGgJ7) zl&e2F%2sLNK6ADbl*0=@R&oS|lc{ z=*mYY3c-F4BB}C?_ld0x8WFRr#IqCgU*FM-Rc|*X2)bd2PP+|JUsJFS3IpgvRv6CE z#o7@6c&8*gWfv#%Hk?ByOOw}yrrck!Z&GydQg2Ja5%jD?&8i6HpAL5|m92cO7Cn7O zR#hj}kf9uK6{(tN1BkFAQPxoOLGBIY&Ik&!ZWyJ*hTKe3?9lz-d`h-GD;lzU%ZIa#F}BD2J6hog9u3$I3h>YDn)LA|s&S zg98L8$0D^8R1O&3(oq;*HS<@|n#DIqfN_EHn~ zskf=c&0avy;fT2BCw1SI>z6F5^>}io98eCZg_0CZ0S3kjfN%&OP8@N>Sd1B&JuyJk zLPUvi8?1)vhgwxGHfl$A{=kV&v!>@;N!RxMxYAS$g0-MZsF*nHNDvj+E&w;u0)<6- zk45ENP6t7n{&~XY=3YLmSAoZwUSzG5?^kNJr&364`mRuD&@U}k)UH*c^SUvYPn$79 zgb$~N3_y0{$8HDg)@V3o zHP$BBM1$KJa=QJJ+kGaE?HakIS=H|68@#5|A32@N{yM%2Q`95EDy^*`+e}EnK?($=|8$aQ2e$775BFIbhG-8$(63!x|AIOqJTpG=!-G9oZ1~w`Z){@mj|*jdNEFI-bE{x;2#!eA{F) z@GJY@Ib%%I+_$DSn-{n$?)4KWN0HWr0}E>dVzmKN;_TU6E<4I998`-c>UIv~`iutU z-MVd*uX?FXTKC_TvCx?k1?JL$f0#hdM0ikM+R5XO~aPd5X5AX&8o(;7LoMo&E)}ME{fU@9;H2`tOrl644#L&2y zW68G4l@`>van?P5OpZl#S@cLU@(OO($R<~AWvZFs?clbxBR@eoyf9BHX*LbP2&Gg8 zCr)K;s3RcXA&5pmt}6mj%NY2g%&)Vp|Ebd1F7AZW)3+Udex9z%v7Kb#*;-%DzI|5b z#BJg0n#j_mJkTw;p`4^#A}_~I}+384gM#oDj0Px$CgL zx6E;qy?*vA`QB(UaC?IpdaZV=yN({&baL3ci%I{bSQS>fB7PI$Ca30*L7*Px%#KZ z=9^FsAIGaG$H)rGtE>jR<&u!1!KvFBq$i>iB|L}Z;*l!@^H0wFzWf2nd*YgH1$Q^_ z`q2}cX1}llf5T14DiUfLCk6+^g|my=5iE^$BI{FCpgIx01U_zC>k%7nTyHA%Z`-TC zZ;8wG7gHa1`yDwd59(ZxUy!u9YSzvL5_$|vonr_SV9kQ0fyn?&L?zGxz$TKs1odY? zIG2Q~wiEn=Dx#=jupWJVx0?Cbuo5AQf@*HPc7ERmYH`!vle3cCKfHdaYe@%Vn;ssS znp;Hp6kyH*_6Ly4#vw8z7KxxSR5%U?%Suk!fe0-C;YlQVt{=DZdA}NE?oIpo;pydt z9<6vxmv;Mn?3>%VX4R|2ajk2X9rZYO*PNqn;H(H(TT)HK@kVV*L7f@yS;i>AM-Y#S zlmz8|;=egm2Fv9h(LDFyu;8EGCw$*6GRhQ2m9LyajG|EPI^UmSGd9kc__AyhF~0@6 z;rRs(hgde1h1k?=(A%Y|VY+wMrv6D!qaonM#TZh+=OC310`eB)Dfe)+npOj2T zcyJau6Yly6PtM)WwtMM;%v0{pZ?g(WQ$#TVSt-w`f+|RYh;1WIUJ;NtIdD3Vj`I?d zN(J9Uo$F&#wL;Bry)5g9Sv9%9=pvrN=(@FKh!T)1ER4wMbih%%P(EZ)$CY>n5fvaA z8KvTuLDU(n6(_$kXtQK8t5kq^wp_p?YvJG@#(?CPki$k7gj2LYR0^vz@``> zA{^=vNJbru-RYDRm@C2&DF7)v77@0qz{)gGTG;&reTh1A>1)5GY>B19`Qn-5==9gn zYDYkwJa`KcVN!(c0BhP51OmVgNF3_*$N)%*7T8M$`gAC67Rr@+ z*)|-CSe|U~IX-@Jg@xlh(dOtDGW`y>m$jVzVQQt~U7y7*^%-x2a-drgG^+^bM9NU8 z>qy8u0Z(l*yeaYvmH{CNb0fO%PP?6<|B54A?C$1sx8$*x@l+({jV6|rvG-JWw!$AW zI-9l35uImQ*YQw}voE65i2}GL+K3xLZI-ohtW9%*;+5?z)*S{6`V?SIJS=d^#FaJhO}xXc zqQr{Y7SOpJ+^@g^QrQJ;F3!Xc?LSVM{Y%84I~AJD-5F>(K$RzMEf3{CynfJkdF9|+ zS6BMv+>@!C1m(yNvC6=yaI_BOnJ&02Qcy$6#)6y#7*^mF9H325UA=s~c1hPkbC$jC zz~oV(_kZ3#o?1m5Edpii^4*TwE4%j!-5TV2)#_ydC`W!Mu>wl-oCqqz4!@4fKmue% z@Im;1CqUlfA~`AIM3-lkyAEpg;+G61Pc>VWVN9vL^uXPJMOI~1w_V;b(@XijZ)v}s zJMX*`ZYT$OkU)2RuA-W@!v5XA}%?>ik$xC*iK?RtO)KccQ7?N6Y#mV)Pmo?n9 zWSq9^Dph`WA(9m+aT2bA0pwR8pbm-@AB8Xn>Xd>Ll)4KXh7%BEPR2UJ8V0|}+~bp5 zTro(R^~{rdpE*c|_~R$%xp&3m_K(QY>-NR(!@;;nIB*j35|n*`NmU$TRzQ?d7}zk6 zWWoW83{etkGK*xTrbB65W#rBEXYQ0=RPpZm85`*c_fbIIGUJQu$2#5!{`vX!R~?H@ ze{67vNx-WTk{|(?fU!Ac@bV~w0SOC8#Yw^p?whdxV8&q-yN#uG{q%0VaH4S28HYQU zYd@0)gd36M9Qr&J7ZeuGH=N=Z@wBR!Tmb_|3?>1B10CQ(o@$p=xJp%ZIr}^rwjnczB-Y7Vyv4>b1+sfe@pC@H;$%<} zxIN$iTMq&e?iNL08-x4;r8GU4WN8-(5^KqU=1JV~>vWG;Q- zRrxo1?>Yy@^yv_|#bdVN2MKhn?VZ$q%dU^cfS=i|%d+2EfDs~mAmenggw0glfKEVO zB0?rW3YHa~-G<^b7z4%Wl;OsQScYV&wyulX=L}QgcDK|$^fa${N2Xs!yX1Ez?^#oD zgO=g_u5~#I6sRPB`$;JuPwV+>47E z3H@$h$E!_ymL9d@&c4BcZ@@;)09=MO#uC#XSWq4Iqz- z0y5Z2q`Jg&pl)ig_O8qLTEi zu%Hf<<21`C5TPuGOFSqla)41z1)~NXi_?O92;4r9t5d+p7v4#@;#;Co?861SoA%n) zrdTRnm9sjjUCuGY=Gw!a8C#TQZ<++OhuKVUeN z<21v*P>wJVFuVsyMzO2gM$WpB>=4-b?mtFfsljOHTYwcaDjhu{3Hk%s79Pwc`=qSf?K`qb!MpJr8hNO{ zjjxGO?Anu}49vQ`SLNoD-q@y3%#0Dj!-GF$G^EA25ri-ai~_P2B{kL!sz!j{2g#}s zDgqm)-#+QI%*sEqkvsSN8pl&Fc*-63XAl=ZBR=1exE=f3W*y$)(AKjKcwq%lOA%0# zVDP`Vzl9T`sE8%VuaL_t0G}MfG%{~ocQRN{6&Ubz$d*7qwf?RQt9}m3w98GWzw#^@ z`IWi(TfVEYY;KnGw#M(R)ifx_SpjHAp^TL1YzW6r4Hu^XVQn@ZDKSckxQ^qLK$!!? zpKmu{S?w+7BEmjI6zjOD^D7TQ@#{wr_KGNIzQxB|fP2%7@KEx;u6(d)J5g{`+{&H_ilZ{j+h2u>L}H+U3-HEwU-46{0q=5~%v2{*Of+9cd_|K#LM zz;)aWL;|fLcXm192sHtKk4J=H?1&C1fCEp$0V^oS>6MQdiVRI|oqK4!TCU~cq2uWY zcg!Twrcw6M&kwEn@H+BY>lb%UZ;HYQfhd7SScbO&GuV+-Apw9%VIerX(=DM5P!@F^ zPIkhVpPxE0#eVS851nUbTkW-HO5w@W_|H!vC+p0my5CJJ%{^{&V{!Oo`=(xoFcpwe zWpH+ISp|s-t{*}l&mqc#d_pMJ;B*l=K+*DmJ*HAKcb~tWtIxT}8*vGS;$0UVr1kGx zXUWJ-DpvKTWz`-9iiC{ms<76)Hfs+%bDdAEC; z(*;gVsqtvG*H2pG$ox=_IDsX>sn<~Y$8{POTs@8ipc9xm;2v^$6Yf|>*hBrh^_hdg zxr!GoKX}u?iD92|_VPf=7axgHynH!2ug~=T{Y*^{^nI~s^K3(y24Airk3gvxH75?} zS7K!b%Z+PPJSzIQNCY*absRAef4BEx-X*gR>(JlZ$Om3;%lS-a1K@O3mK*>bL$OW2sSWeoaQ$>R3-# zQiiyT75mmq9eTV+8;lV92CGEbj$DOuIS|V*96@q{5&*%Dv7-hI%LOmzLjC7^P565)h>aX7iS(}>lO1n74EaH~o5U9S9- z4{H-A=~~FA7^?i$X4G#8@v6#pBqzYz2mvI2BzJdE(BqL_iFOArv`M5e+HrL7r#}8c z*-Kna>RzGR3}4TM*>ls0&z^ttx1WDGGq7lkQ2k!aTK}^cA&Pfk7GZ`i#f?$`IY+pd z;-dT`5@XqI-+k=WcGc z#awIR^B(S2gS*9*O;B_W++2eRA(!WIJrdEJbD_3@`#~a{0xq1W7JSF-A%gRA{orh%`r)(YjwC;v{vxnYhPCz+8lBVH?4K7IWz>JcLb=45R zVe`11it;0_g2+H&j1$JM@0pP>sK=cN(uy7PJ7(T=){{8g97!x|;~^>A!X78$?Rnql za8>#>bp+Zjo!(#L!uj*9{O)F5ayPYZeKfJj&$u#e4sRKJv*fe`h7-@oUlrJl`juIx zR^e{Zj2|ET_~OS8KmPc!#Jk0SCH?B-k9n@n#ZR=saHYqrE^@Fmh#lY<*iQ zT%PG#i2KsTHqm;Mecn0sD=r_u!v9c({(g(4p_XsOYa^X z)!@)B^55=Fo=q3GY>Zr1y>+u4AC5(|+oh*oOxv4c|BM#h7N0gb$Defnc8Bf_ObWX- z{QcsG((xn7TdTg*o3t@`OrgNvzpn?@OPehBCmqx8)6y5kE^HeYARQc8>&)UhTQBIg zMrr$$@9*B$MK83`Eu@UHU8kba#b33G&RV(XH&(Mo`;?Fz_RAt`VQI0 zYQ9an>xD9!%bD*`u}Ma=Els@K*;Fx2jIH9&neL&3KK!C3kDjRD)%&!6;qS~v(!`h` zQ&IB++S>Cwa~bnPD$e`PT*~~2io;Z&5@}+iF3|m$wq~y8F9bd#A~!XYar|eGW3Z<8 zIG$b$GQ)*#y|KLN`PmA8a?Y0Vl`X+-qNORMm>4BDUbds+|O#JP5O7;OswfW zp6W^GEH?88(oY{Y#?NjdqFyn@Qr7g5NF7ov#mq!X(5++rikUu<#?>j7a;9O&AzeYcj!lsAnb`c_}CaDGHe;Es6dsh#n$iNR1f zmiGJD)yHlgN5$0fex*#~$t&3MGNuVcT7407B2t3hA;eV7G!bI-B}|D3I&;ZV-ZY6w z;w4LI^JLnuS9hP1X=3J{rn2S;+8Wps+aF0qV-F0ChJSsjWVhj}v_VRJ2iAQ^z%9&$HYjht|0ex97 zoG1FLp3uvuqG`^2-xr@EqQ3f;rG|A@`@K~nR_v39U(C8~M71qH>8X8vs+i)*^Xj)P<*XfzJJ}%D z^9eccuDl{-kOTC!PyO=g@B5jum^V><5&e9+nRbx=`R`Z+Um_)N)Acp^%_a2}{e7$! zPs0ZDarHY2u*)KDA7{ z$@2>LER{S`_j@=(q%DEdje4d*rb7CPf!M%3^yQ?1K9$USi5NY|hd1w|ja3I>>pfy@ zQ~w`LzoAvXeBaW|bdX35A6Uxx9VR_F-KzH*j<{ETh{>APG~eoRRRK`h=q%qi<(c;*4Uw@ zVrgRIp)jITv~}1}pVDdKv7+XZrZZ^OpFFbIOlOHy;<2TtJB9S*PIwuYq{k$Gj`|GN z^r+9HA>3q)O|Kz6OfXo}1G)2V`uU08#(C*q{yOyI#%elAKN4 z|4-gezZ&U*kmu#QM&sf?dHK&4qO+1d;RY3H^um6G2fuikH+|wPZN!? zekJqXq+L&V0TEmd4VgG)T-yoF$CW8k|H;Ek@EDfLru*oiKYnT{X(m#FzADzQtob1o zFF}DH6}hDry~!|BF1^}toMX?^O7s0jo1fB-fo=Rtn~11)dXDh^oJf!o-M_ zz&+KI(QKx_M2|A%&sn+Nuo>rz#FbrbKGq;tjePBgpCH{H>yH=vF=qOUUTrkod>GpG zq}LXQFOd?sH+tqEpImyUa%QV}Bx%vlkM=2QBBI{pjitEXDBA6&x1LnPKbKx%sh`zv zG;Mn9t;c?clqY61mLiXe0yfxRP9UFGld|$Crn@!IL2Zp}T z`@OaBrb*;^*Y}np9x39zrI=|l+M?fCikc$G!^`h2g*{UJcaS1UTQ4F_AyT6cmf{|1 z$2$O_DAM-eoyBgNN~GfNErBMTNc0oai9|m!0}}lN5j>xmNhH$;D4s>6(jPFU*+inB zpc4JW9MZP<13odANS8iXhMQuEB!9H@HZO*hpzrA9UocHv8*a*{f9m9KH7zBbDt@w5 z_gzLhantlw8;oVl^cQ`M=wHdaoW9&74%W1SijPG9BBqrPr`ZCkTW9-!xR5DJ(8OBp zO7^H_8tSLVRs;qsFb=0;7404&`8$fPCL%Z6h(nh?O(B(xD}zp_jW1yX{ti_CJieXy z-7~&Dj+ef?6@g1Zh9p6zZ((xrjq~qK1{K|*AbuJvcdDz*b*2>q9z8K$0+MSHA z$0;Iu#`mV3xUg2929po@x|cscIIbrd-_-@EqFkPjpP2^3#pi!lMd?&7WcU$DS>0jf z*xm)NAMHESXieV~AHtZMo4humqJaO zG715W+Uv@%0rhCY{-3F&pbk+|Pn=;a{ckR(+^_cKcm6#!m6g@M{Ko%uVTEx7RMCem zHRtmbR+1N|?bCm6;9jLqa=O=o~64-PH>58ONETjNX&~SF5{|SKJS% zw)*YFql@*&5033Q@?Wa%{!MLkt<#vz+CIy$EqgL0f9UXbNnyzzSpRcv^xHEZwARv= zn%B3Fnp6nLZrxX+f>-xBtUFWVER9bU&$H}v?eW_eGS@a{)xTeyR#2^$K6Ox3wP)|{ zr1+gyi|rT^s;1S5+37;vcDEfDSH}BIJXmg>uW_GVc#bhUEkhUi$BOhF3oK3OG=#tI zOlsa=eDd;vnO-+ePMm6;=MywSWB7!}FgGJNoF-vUV3T z`yZI~VuP}z{zg5iRN5E*{5AdX;(!u#8dd*#1fi8Kb?K$t3Ez1&FKFLzGcHQ zi@j)-wn~@CS|feOU+Vkc=3CNR+J`od?(2@o7k>(Mq~36@nE9D+$&r4AJg@4Vs-@ZU zw}$fMh<6U_{7gBx?7mTvn_5?HQN90xM!I+PRrW%%Xd^<@Y$mmNI%H0Rp^By(^migGg5?_ z{DL`5Ux@jTp(^rg?r|Bz3iZ*!| zDI$6pso%(}9!6?EX{3x4l_(>1fIg;-6cIg))IlOqMv6#jjMO0_e$7Z7CjBTQb%Z|r zl94(}S|}q$rLPz%PfHpjl}tK%7%3up7^&k_-&c$jZPFL01J&e><+DI8Gk4PD*YqXUzQXY{q zQXY{qQa5M^%1C)c%1C)c%1GU$9VjE^5h){eo3wsrr0&p8l#wE$hmpEZB+5uVppPjd z^^i1DMv6!YI%T9hB4wl=(^kqzJtN{DjMQ`bfHG1Zkup**(duEOh=j%envtT~xO9xv z6RL?aQXY{qQXY{qQuM<*Wu)HFzLb$7;@>e+AIS56#7L1&2|5_5?%rq7of1+bA$?6q zjixQ>2r1I2Q$mV9)+r%H8z~_*hPF}sqy3~ zC8Q=0NvDLAN2G+*M52chQV~R=gcOm|5mJ$~=_^8tH0hTKAr(a=N=Qv5-8_WUH2TI@ zgj6(rN(m{CNC_#ANC~Owv;!riJR&8eX3$njNO?p`NXvb`!@HWYyVK{FF|_}2lW}?a{(qf5;@Vic z^wFbbpUJrNueH#0(EWP~3YH{YKIqYL%!EG^NOxuH^GLpi-Ue&>ByT>Q4Royh3my7^ zPR7h`lE2})Zo2%<^YUqvam8P}j7<6u#QJ$2>C>|XbPNYf#M*{=BNMCpKQ(VsYuh`a}m$mI8EOW#DBFR>C=p* z^!umNxK__^|4puS8CChObFH5D|3$7fj(+^V!?iA_8h+Sw0M|S zB6^rs+Q@yyv>v5ze#NxXCY>^^$EX&{v=Y(7v<8lM;QKaol#`iZNM z=qHHa`NTCMQKpqjlxe+A+UO^!L_cwZv{9y&N|b56P1-2adLL36llg#(pP9_Zq!VRY ziS!4P`Gj_(Oy)BxQYP~`6)BTRM9O4-+7>wJQ&NECH}0`PKc98p7fj|W+MP0)RP->J z>C!`f5#sfifkVi^^(2XBDTld=X0X<2}W!BrZgsV_y0DNnI4RN zt}*=+cf$V>`}bd_4sNasX#YP-9V}UrMj8G`se@mBwUqhH@cu{mgNu^_n$eZ}5Ag>N z7Nvdf+j8xHhd=1M%2ML<%KfKFgzrYC5u^W0B*No$f4Qjt8i`P4i>1it<^1+n*SZlf38md4Y2^~ z&~x?Ha~F>mz_T0EA~3XBVVrnq^m}R3+zS zq?=WyRV0~}mYSNIm2OYo#`u_#aqIL%Nk)mu0X{O*yLK=t@Wq1k+W@f%2v5J$#U`V? z{pQx29#8MAx|}QAGjm7w#@(y}=t7epco74cr>@^7 z;Wpu`umHLc!{Oe;K36Iq3@{y3qFjoh%C(84qt?*v-OYGkwBh=H%%DCs=CQ z52&(iKcLE*#l^N57|V;NOh4GkBBRRhGu?OBkqGO5N!}Vf{hPJdF$$myF|3(v5F)zW zU^kB~3)3gY?H}#gS(v7;lV$YTeqbV-mEiW+IA&wl>1&U(Bv030!5lO_;RMU1=>l)q zO1C?RGQE+W_LRkIy6z$7!0G$NIN7Gpf65ZquDOO4h}nRc9f&!Am=lP(wrj58{;LfD D#f%0f(&`{bv_(>(uvp7ZQ?z3Y9yZ=Jo?+H37q@|(fE zLc=}1%(za_+bmPqvTRVQRnUHgbaCk&;j&qxkYcrC9=AUZxvbVOy{(t>yGjQ!-lVJm z$(+8B+qR$3B)IGMvD^jZN*zGgHd?r~yI23JJ(kGnbegfE2QNgHA0FH4$}1!@hiNvn zYs(AOnP2r>uO5%&4FPt38l{9=qhA&_$)w*Be?teSxFtV9un#`ML8VTk< z&e?R{d@YitT20XHn+D46uk9)WcWsxuB`X75%7cU$Rlq#HTas+Q3F`7ZA$gmriO<}F z$Ym|ocs%ss1RsOHLl;t9pv&VRA(g*aH26stayeTy zD<2=?geZ^I#ao;lWp^X!_w@2XnzqljaV=`(OQA4R!`K(Ml|znH9r)qFHwGxnnGNl$fm z#3c%=e$MkA)5x=3pDnbot;s-bOOyLzoOm!WSH)4iWoNG6LaiMjfVsWH4uf43ZEW zg<=H9fb(Hh$B1QT^cRrho`?z|C4yC+1Z{*!oV~Dtr=a^pMxTNy6GbSGV2wKsmcAlH zOq2@=C^=2?tT5PV;_Z#-SFl~e{Aa*l4{|q&kh_F=&k~oeoCu|I37$-1;&U`U0;!&% z-$>bLMCYMkDWi&@VyQ@`jKP)`!$?0y7el0b`7{42uOtuhPX}=#v>{L^9+%M+T!0Tfsm<8s)G~+rJ$7o zX>W&?GU8c_qGj|asH2(jPdMk#z%8iO1KR+Z@kelni*tGi)H;vK%fdW0KK=6<__C)U^5-Ov|L|uzqe6jX19FH-F3n|9Z1b7O=w~3^{ z7o$Igkr^y{1w`sWo*qou$*P_c``#GnInnwddI6r(MIyAsC@-KqP$Zs{vGfX}r!(U# zsF)_g*lgAQFJH1y){V*Tesn+=$4Vir4M4qF zByl(ttqn-UR9aUxL#|WJl)_VyDp3T#nT%~py!&F@rjnWonnBqQ3>bm^RyqXyF_jTG z&XVa+1kFK>poP>5R@Z`*$*3iX4nR%`VJqpp>5pNQa6X7hRZtT|pR?Rp6}jFY<;Gw? zn+ZN4&JIYKkT4mU5>+5_rogRcGE?X_hXFJ2(}Q>fZQ-~KNbvx)iG*`RWKPu6Ih(fh ziG0dlu?lVsz1!%QM~nRX(>ZTWFnjv#c3)RDzJ=3#^X+DGDo*fq583+r-)E53nUKD- zxGJH@A~xb^w@M^4yz;GrxCxx{!o!lZ#MEigGJO}m?Ug5(9J}s1`VVZOYy9TsvyLT=%M z!UM4Hn3WuOw;NI3og_G+!WLYzSnu1ylQahGz%pF~A&!NzgM>9A^b28yKHwd~Bwvz& zo6z2uJaN_|%YiZi%e7240P^BRNLkCwj!-sNgfnwl!AUBR*hFlN6G=`)s}s3Uiy~c+ z8%XkGXaTp?^8Yl|zHx&_sPiQtN82yu~- z8@MDenLGHe7oi}5g>naOz6k#bV+9YXK+?8iTo0x*pO01K=~j$5OhO_=B0r312O~cM zv_FbuTN0W_kb_Cck0iEkRPPBa&PbTDKqP&VQ8ki`N=B6@iK<0Z&l>7Q{Pjp`3b9K; z*EqUq5J{;UmL`z7YSjBM{;(Q(AL8kO{6rG%!HJ~nHmsOP3f%P-6}4z{DssNk+lju> zhN9S){GCdR`qWe3OYL8qI^ez30kx^8NvYYNnMM~)EpmkxEQ451uTPf#o6w!eG({1{OdZf`w3^2NejyN$3dlhZFS( z8aH%f4>E5j_i$=YIyt-0pY)YrsT>hr()7f$0nR5g!>DC$TXtVD({T#+kcQc;M zTK=l?uH@)V8}fNwi+E6X_&`FY^Mo-4)fd+JoVM7DHCjp7Bpf6#Wzs8t(c9G5yQY-Q)RGw2Zg43iw1{<4FGjVzBi{@uOk zw`q?9E*5EzIMNSCDtc9npM?s=?YdzzUUn=wx~h4=xfs{0X>LbK(D6%0IqZYFjs%m+ zJztJWIkA6HysLIxyH4o1+L|hZB-fj|miqdiZh{IWxuW6yU%QBYr2lzqx#@gE`=7V& zjP2kX+W)V+_(_g`(f@Suk!FK*eWd?&iFhQSXmJ0(bNqAv|4;4)_CIxW#l|Wc*#Feg zjXIi0t~YRexUt2ofJDpC88iETv#~?m<1S6vAkn3=FI>(kd>1)x${AZ2F8bru@rBhZ z-E4QX|7&@nEW(X}Vns5jvW>k@&;B%T_sN$BgFCb_G4dQFY0CNTIPCdX(*1*p;@3Lr z@F_uCJ^4+#Wk4^N5zN5_mPu`+Gj=%fp2itRcCz7vlX^r7Uah?@e<5a~C}e;v8cpvX zgzd4ZpNH@L-n!iUrg7)2_Zl*XVzq_rsAueyp54sfxfHivnPM<2C9}!znB%9xl4B-q ziC5hu6>;ALwA1X19jQ2N^Q`^d-DojPl#|rsD1LGy)3-#`?Ch48`vTKP96-m#IN3p5 z66v2k_U5vc?YZC^CnLgR;)aIYLy;)IlK5eD8`4AN7uL-2T3J!xUl-lI=I><=MM}OL zc4}S6=Lg>Ua8qK#*YrPi`L$ItJus2p*xn9QDZLta>Cx8idmCxA&u4M}*MSB-0`iz) zFm3Sqxim0Mc4L7i;xD?5tb5AwlvmCu3pw9zW`7Q)r6KuMJeO!7_?>SxZdNcIoKgUt zJ6YL`9)8qwA`&E|J6HF6-YpuHIYlJGh;F6pJ0{`H=pop_Hf$RjSv|3L@ZO?nx?%Hs zm)+@;vl*XaH4a`yeQ&5#!L+A|AtW4};4s!X{H!N)aFaxqSiwujJRgk9fnmqmU*C0Y z@0?tZd40ap{)P@!4ORA`KVIs94=fKdn{Zb<->z(9l;@XSU`v-@+Et46bdi-Vo{gCf z^-d$+T0h=DGL3la4lIy@Z|F37=V<6Ok{$nM8u8Yj$<1o$G8a$2O zEm2dc?SsClcN(E1QcA+6(ffO)dPmv2B=xL=^^P*$nl9zi^-rU0be&=LZs~03DC4d1 MkW;~rqnT{}3+K~6L;wH) delta 2609 zcmY+FYfzMB6vurQ5*;sqlER}#>(o$^EbA>VDXyBAQC!ecR>frzl#6ny4DiCm#4<%# zk9q(_T+Is^qdV`1?eYPcX_~QekUp5ENLY>)Dy}-HrPBMJ^S(^&m;Igp^FROdy!Tt@ zg0B78_w0mlF#;xrH$ZoI6&#M32hSp`Fjp2Tm*h;75;H2q1j`}|l$(*~gOu;0f&$@Y zv|qXVMn_+htigR5q8zQ6A{L7>#eBSyDZ-WO|nIY9aA_n-U1l};BdxqV6*awkE+rn{A3 z?s6%$U1tTP`p?1C`&Dq`ewFg+0~F!2O1BT&y{qjmPpdNb=s#coMv)=l_3j8|MR%S_ zx$!uupYQvx#4VF=N}w?DF;q0WF7h8rLpv~&Z_QQZFJo$54_iab+mWPc#$MB-6Mj;APL>*c#1g|6u+* zI)S~I0-i#d0l|e5E)-Mmb1fEnio*ibivok47VY9Z2b(iS6EJ10Af*SzGS2IP#u6>h zA)wuW&{9$Y)KLSVQtKXfnXhFdV0k=iUg+?In*+5^bw^RYLRj5pc17sCIfr!onjG zn^tl9NQgg0=`TTv0bYhka2}_nNVHDmATzcm>jd_6iNS+7#SEQk678$G8VzOX)HoXa zYb3mTnl4KeY&cD76jn~+kTKY-Q#87qtXUy(hx)j@$x&83Gey0hTXs;yc<|Iptl&G* zF&_OX>e`dFv^Eh!*HOF*H4>87v5JY4Id_ugCc`A?_?TcaSP!YUfQv^>hUpo)oXao; zJUVE*ptY&kq0=-hOJ!{aUq{TYs0Hk***)bS!9@nano3u zjrqM4n#S535WC1W2cokH=0dUol?F63%)^$qxNRPa=}ZgIlP+Q+)GNM_U%_Ij`X6Jw z=RDu1OI#=V3CzzB_k8Nd!Y-hELIZlTMXc}7Y?0JY89e=EfejmlMR|Khg21E# z;ezXNRX$gt=ohHO%qbN^+vjxj3D9*y2lGh@!4(v>1l+qNOxZxiGDzG& zmL!~6&Fx9p702X2^GuzR1alH@PyvwNFBmo02l1C7;wR6(pWG#F1I#8Sx%@vhdy^4$Ia^LJ8~Zv2_mX>!Ee8 z#3OawydJ--V?75gb5*|`C?^M;?@OF?m|eNJ_%OTju(X#{KW!%;T?T1e!Pt84Do{U{ z65HpB7u7>5z#I?TS^nC?rXsX2pkpq=vIRoom?Nxj!lrqoZ$`fXwMRK&i}p~e5Au9U z-iptUs+BRd^uJR}d#AE&Ox JFz>jy{V(G@3)lbv diff --git a/.gradle/8.8/fileHashes/fileHashes.lock b/.gradle/8.8/fileHashes/fileHashes.lock index f7ebb9eda79dcb84c1a316a3405e4733969ff421..edc38057c713a8cb5cdefb87266bd7618f46d455 100644 GIT binary patch literal 17 VcmZSn7Ua5o$LutA1~AY%1pqZw1nd9+ literal 17 VcmZSn7Ua5o$LutA1~5?n1pqaF1sMPU diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock index 32ba4d31bc70cba21ea24819d0aeed9fdff2cb7a..6eba9d65c8f0704e5f5951451ded55d62b652860 100644 GIT binary patch literal 17 VcmZQRC}z8ETKoOU3}C>#3;;DO1pWX3 literal 17 VcmZQRC}z8ETKoOU3}C=q001=h1jqmY diff --git a/.gradle/buildOutputCleanup/outputFiles.bin b/.gradle/buildOutputCleanup/outputFiles.bin index 6d0e41522f15d07209095a389cf1c2cc89951ff1..871c929f7be77fb89db3cbfa4a7f11a222dbc89c 100644 GIT binary patch delta 334 zcmZ2KlX2#3#tkMCl0Ge0x$pMm3sp0Kfv^34DA;T&VZkV{*W2Wg)FYv_D|1SrDg!6?N-Jmx zb?;Fyh?~0$Dku%JQCuPHTd7A#0aToG@>1y^0=hp8zNf5PycKHf`pHveHVA}SFP-W0 z&}I)*@cU$2*#Loroj+RMek|pLYHy$1Dx0BEbed!RzAxY9p@PXUyGq!0JZwHOtr%*; z!O2f$6$GlDTlT9JmK}!*UY`6{R*Q+T^*>C9Ue%N eeI8(w4IdbjJs%SY diff --git a/.gradle/file-system.probe b/.gradle/file-system.probe index 625b0d88459ad8f87ceaac388ec504d3996011fb..6e4f51d460ffd4e57a777127b9cd0f77591719ff 100644 GIT binary patch literal 8 PcmZQzV4VHx?zF`K3nK%a literal 8 PcmZQzV4VHjuBaaX2;Kt2 diff --git a/build.gradle b/build.gradle index 41b5ad30e..2531ff989 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id 'net.minecraftforge.gradle' version '[6.0.16,6.2)' } -version = '2.1.7' +version = '2.1.8' group = 'com.aulyrius.custom_ore_gen' archivesBaseName = 'custom_ore_gen' diff --git a/build/classpath/runClient_minecraftClasspath.txt b/build/classpath/runClient_minecraftClasspath.txt new file mode 100644 index 000000000..8973f8f53 --- /dev/null +++ b/build/classpath/runClient_minecraftClasspath.txt @@ -0,0 +1,116 @@ +C:\Users\polar\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar +C:\Users\polar\.gradle\caches\forge_gradle\minecraft_repo\versions\1.20.1\client-extra.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlearlydisplay\1.20.1-47.3.0\91e33682894f35862e9ce29d633e3258120952f0\fmlearlydisplay-1.20.1-47.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlloader\1.20.1-47.3.0\547850469c8a336b4c60cb8619f6cd421e9e5f55\fmlloader-1.20.1-47.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarSelector\0.3.19\376cc9c8ea60720cf027c01fc033de915699801c\JarJarSelector-0.3.19.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarMetadata\0.3.19\83feaa9b770e6ac0e96ee4fc23fa89325c5fe2\JarJarMetadata-0.3.19.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\31.1-jre\60458f877d055d0c9114d9e1a2efb737b4bc282c\guava-31.1-jre.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.1\1227f9e0666314f9de41477e3ec277e542ed7f7b\java-objc-bridge-1.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\7.0.1\3b4972a0cdb135853dba219be61a79b22cff1309\forgespi-7.0.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.1.5\f3da18e12c696d35a47c82cbb2cc8b5aa15e1154\mergetool-1.1.5-api.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jetbrains\annotations\24.0.1\13c5c75c4206580aa4d683bffee658caae6c9f43\annotations-24.0.1.jar +C:\Users\polar\.gradle\caches\forge_gradle\mcp_repo\net\minecraft\mapping\1.20.1\mapping-1.20.1-mapping.zip +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\8.0.4\272d240aa73f42195b2a68e2ebd8b701ecf41f63\accesstransformers-8.0.4.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\6.0.5\699143dd438431d06b57416944f7cedbe52e1475\eventbus-6.0.5.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\10.0.9\6d9443f56f50bb85cea383686ff9c867391458b\modlauncher-10.0.9.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\bootstraplauncher\1.1.2\c546e00443d8432cda6baa1c860346980742628\bootstraplauncher-1.1.2.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\securejarhandler\2.1.10\51e6a22c6c716beb11e244bf5b8be480f51dd6b5\securejarhandler-2.1.10.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\5.1.6\62fab3c3d59d37f8e15af311cb638c6f6123423\coremods-5.1.6.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.openjdk.nashorn\nashorn-core\15.3\43977e804697048fc8d81d333a36c17d07a5b3dd\nashorn-core-15.3.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.7\e86dda4696d3c185fcc95d8d311904e7ce38a53f\asm-commons-9.7.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.7\c0655519f24d92af2202cb681cd7c1569df6ead6\asm-util-9.7.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.7\e4a258b7eb96107106c0599f0061cfc1832fe07a\asm-analysis-9.7.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.7\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\asm-tree-9.7.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.7\73d7b3086e14beb604ced229c302feff6449723\asm-9.7.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4\4.9.1\e92af8ab33e428461927b484e90bb155a4f3a052\antlr4-4.9.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.4\51d6cefb2b55ee55ee26b16391212fb2c7dfb4f4\toml-3.6.4.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.4\510f174abbf1c947494db50ef2445683bd52c230\core-3.6.4.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.8.5\4433f50c07debefaed0553bd0068f4f48d449313\maven-artifact-3.8.5.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.6.3\a01aaa6ddaea9ec07ec4f209487b7a46a526283a\typetools-0.6.3.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.5\9d1c0c3a304ae6697ecd477218fa61b850bf57fc\mixin-0.8.5.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarFileSystems\0.3.19\2464eb7d6b9ddb9db36a82cf8a95193e5c6fe020\JarJarFileSystems-0.3.19.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.github.oshi\oshi-core\6.2.2\54f5efc19bca95d709d9a37d19ffcbba3d21c1a6\oshi-core-6.2.2.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.10\dd9b193aef96e973d5a11ab13cd17430c2e4306b\gson-2.10.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\failureaccess\1.0.1\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\failureaccess-1.0.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\71.1\9e7d3304c23f9ba5cb71915f7cce23231a57a445\icu4j-71.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\4.0.43\2ff9d747a77570a07a60d32ac77eb6162ad2a2d9\authlib-4.0.43.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\blocklist\1.0.10\5c685c5ffa94c4cd39496c7184c1d122e515ecef\blocklist-1.0.10.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.1.8\5244ce82c3337bba4a196a3ce858bfaecc74404a\brigadier-1.1.8.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\6.0.8\3ba4a30557a9b057760af4011f909ba619fc5125\datafixerupper-6.0.8.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\logging\1.1.1\832b8e6674a9b325a5175a3a6267dfaf34c85139\logging-1.1.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\2.2.10\da05971b07cbb379d002cf7eaec6a2048211fefc\patchy-2.2.10.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.17.9\3cad216e3a7f0c19b4b394388bc9ffc446f13b14\text2speech-1.17.9.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.5.13\e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada\httpclient-4.5.13.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.15\49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d\commons-codec-1.15.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.11.0\a2503f302b11ebde7ebc3df41daebe0e4eea3689\commons-io-2.11.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.2\4bfc12adfe4842bf07b657f0369c4cb522955686\commons-logging-1.2.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-handler\4.1.82.Final\644041d1fa96a5d3130a29e8978630d716d76e38\netty-handler-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-codec\4.1.82.Final\b77200379acb345a9ffdece1c605e591ac3e4e0a\netty-codec-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-classes-epoll\4.1.82.Final\e7c7dd18deac93105797f30057c912651ea76521\netty-transport-classes-epoll-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-unix-common\4.1.82.Final\3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce\netty-transport-native-unix-common-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport\4.1.82.Final\e431a218d91acb6476ccad5f5aafde50aa3945ca\netty-transport-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-buffer\4.1.82.Final\a544270cf1ae8b8077082f5036436a9a9971ea71\netty-buffer-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-resolver\4.1.82.Final\38f665ae8dcd29032eea31245ba7806bed2e0fa8\netty-resolver-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-common\4.1.82.Final\22d148e85c3f5ebdacc0ce1f5aabb1d420f73f3\netty-common-4.1.82.Final.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.5.9\bb7ea75ecdb216654237830b3a96d87ad91f8cc5\fastutil-8.5.9.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna-platform\5.12.1\97406a297c852f4a41e688a176ec675f72e8329\jna-platform-5.12.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\5.12.1\b1e93a735caea94f503e95e6fe79bf9cdc1e985d\jna-5.12.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.21\4ec95b60d4e86b5c95a0e919cb172a0af98011ef\commons-compress-1.21.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.12.0\c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e\commons-lang3-3.12.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.4.15\7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d\httpcore-4.4.15.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.19.0\3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb\log4j-core-2.19.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-slf4j2-impl\2.19.0\5c04bfdd63ce9dceb2e284b81e96b6a70010ee10\log4j-slf4j2-impl-2.19.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.19.0\ea1b37f38c327596b216542bc636cfdc0b8036fa\log4j-api-2.19.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.joml\joml\1.10.5\22566d58af70ad3d72308bab63b8339906deb649\joml-1.10.5.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\cbac1b8d30cb4795149c1ef540f912671a8616d0\lwjgl-glfw-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\ed892f945cf7e79c8756796f32d00fa4ceaf573b\lwjgl-glfw-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\beda65ee503443e60aa196d58ed31f8d001dc22a\lwjgl-glfw-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\b997e3391d6ce8f05487e7335d95c606043884a1\lwjgl-glfw-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\a817bcf213db49f710603677457567c37d53e103\lwjgl-jemalloc-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\948a89b76a16aa324b046ae9308891216ffce5f9\lwjgl-jemalloc-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\cae85c4edb219c88b6a0c26a87955ad98dc9519d\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\2623a6b8ae1dfcd880738656a9f0243d2e6840bd\lwjgl-openal-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\30a474d0e57193d7bc128849a3ab66bc9316fdb1\lwjgl-openal-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\40d65f1a7368a2aa47336f9cb69f5a190cf9975a\lwjgl-openal-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\888349f7b1be6fbae58bf8edfb9ef12def04c4e3\lwjgl-openal-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\831a5533a21a5f4f81bbc51bb13e9899319b5411\lwjgl-opengl-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\c1807e9bd571402787d7e37e3029776ae2513bb8\lwjgl-opengl-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\527d78f1e9056aff3ed02ce93019c73c5e8f1721\lwjgl-opengl-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\deef3eb9b178ff2ff3ce893cc72ae741c3a17974\lwjgl-opengl-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\b119297cf8ed01f247abe8685857f8e7fcf5980f\lwjgl-stb-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\86315914ac119efdb02dc9e8e978ade84f1702af\lwjgl-stb-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\fde63cdd2605c00636721a6c8b961e41d1f6b247\lwjgl-stb-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\a8d41f419eecb430b7c91ea2ce2c5c451cae2091\lwjgl-stb-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\ff1914111ef2e3e0110ef2dabc8d8cdaad82347\lwjgl-tinyfd-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\a5d830475ec0958d9fdba1559efa99aef211e6ff\lwjgl-tinyfd-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\83a5e780df610829ff3a737822b4f931cffecd91\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\842eedd876fae354abc308c98a263f6bbc9e8a4d\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\ae58664f88e18a9bb2c77b063833ca7aaec484cb\lwjgl-3.3.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\36c37f16ab611b3aa11f3bcf80b1d509b4ce6b\lwjgl-3.3.1-natives-windows.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\f46cadcf95675908fd3a550d63d9d709cb68998\lwjgl-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\3b14f4beae9dd39791ec9e12190a9380cd8a3ce6\lwjgl-3.3.1-natives-windows-x86.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.machinezoo.noexception\noexception\1.7.1\b65330c98e38a1f915fa54a6e5eca496505e3f0a\noexception-1.7.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-simple\1.7.30\e606eac955f55ecf1d8edcccba04eb8ac98088dd\slf4j-simple-1.7.30.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\2.0.1\f48d81adce2abf5ad3cfe463df517952749e03bc\slf4j-api-2.0.1.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\srgutils\0.4.11\fbad1341ffdb47d276bbdc40ecb06da49e053e74\srgutils-0.4.11.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.3.0\cf43b5391de623b36fe066a21127baef82c64022\plexus-utils-3.3.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\b421526c5f297295adef1c886e5246c39d4ac629\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.checkerframework\checker-qual\3.12.0\d5692f0526415fcc6de94bb5bfbd3afd9dd3b3e5\checker-qual-3.12.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.errorprone\error_prone_annotations\2.11.0\c5a0ace696d3f8b1c1d8cc036d8c03cc0cbe6b69\error_prone_annotations-2.11.0.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.j2objc\j2objc-annotations\1.3\ba035118bc8bac37d7eff77700720999acd9986d\j2objc-annotations-1.3.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\ST4\4.3\92f2c1ad8d84abcbeead6cf7f2c53a04166293c2\ST4-4.3.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr-runtime\3.5.2\cd9cd41361c155f3af0f653009dcecb08d8b4afd\antlr-runtime-3.5.2.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.abego.treelayout\org.abego.treelayout.core\1.0.3\457216e8e6578099ae63667bb1e4439235892028\org.abego.treelayout.core-1.0.3.jar +C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.glassfish\javax.json\1.0.4\3178f73569fd7a1e5ffc464e680f7a8cc784b85a\javax.json-1.0.4.jar \ No newline at end of file diff --git a/build/createSrgToMcp/output.srg b/build/createSrgToMcp/output.srg new file mode 100644 index 000000000..50febfea3 --- /dev/null +++ b/build/createSrgToMcp/output.srg @@ -0,0 +1,104048 @@ +CL: com/mojang/blaze3d/Blaze3D com/mojang/blaze3d/Blaze3D +CL: com/mojang/blaze3d/DontObfuscate com/mojang/blaze3d/DontObfuscate +CL: com/mojang/blaze3d/FieldsAreNonnullByDefault com/mojang/blaze3d/FieldsAreNonnullByDefault +CL: com/mojang/blaze3d/MethodsReturnNonnullByDefault com/mojang/blaze3d/MethodsReturnNonnullByDefault +CL: com/mojang/blaze3d/audio/Channel com/mojang/blaze3d/audio/Channel +CL: com/mojang/blaze3d/audio/Library com/mojang/blaze3d/audio/Library +CL: com/mojang/blaze3d/audio/Library$1 com/mojang/blaze3d/audio/Library$1 +CL: com/mojang/blaze3d/audio/Library$ChannelPool com/mojang/blaze3d/audio/Library$ChannelPool +CL: com/mojang/blaze3d/audio/Library$CountingChannelPool com/mojang/blaze3d/audio/Library$CountingChannelPool +CL: com/mojang/blaze3d/audio/Library$Pool com/mojang/blaze3d/audio/Library$Pool +CL: com/mojang/blaze3d/audio/Listener com/mojang/blaze3d/audio/Listener +CL: com/mojang/blaze3d/audio/OggAudioStream com/mojang/blaze3d/audio/OggAudioStream +CL: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat com/mojang/blaze3d/audio/OggAudioStream$OutputConcat +CL: com/mojang/blaze3d/audio/OpenAlUtil com/mojang/blaze3d/audio/OpenAlUtil +CL: com/mojang/blaze3d/audio/SoundBuffer com/mojang/blaze3d/audio/SoundBuffer +CL: com/mojang/blaze3d/audio/package-info com/mojang/blaze3d/audio/package-info +CL: com/mojang/blaze3d/font/GlyphInfo com/mojang/blaze3d/font/GlyphInfo +CL: com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo +CL: com/mojang/blaze3d/font/GlyphProvider com/mojang/blaze3d/font/GlyphProvider +CL: com/mojang/blaze3d/font/SheetGlyphInfo com/mojang/blaze3d/font/SheetGlyphInfo +CL: com/mojang/blaze3d/font/SpaceProvider com/mojang/blaze3d/font/SpaceProvider +CL: com/mojang/blaze3d/font/SpaceProvider$Definition com/mojang/blaze3d/font/SpaceProvider$Definition +CL: com/mojang/blaze3d/font/TrueTypeGlyphProvider com/mojang/blaze3d/font/TrueTypeGlyphProvider +CL: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph +CL: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1 com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1 +CL: com/mojang/blaze3d/font/package-info com/mojang/blaze3d/font/package-info +CL: com/mojang/blaze3d/package-info com/mojang/blaze3d/package-info +CL: com/mojang/blaze3d/pipeline/MainTarget com/mojang/blaze3d/pipeline/MainTarget +CL: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState com/mojang/blaze3d/pipeline/MainTarget$AttachmentState +CL: com/mojang/blaze3d/pipeline/MainTarget$Dimension com/mojang/blaze3d/pipeline/MainTarget$Dimension +CL: com/mojang/blaze3d/pipeline/RenderCall com/mojang/blaze3d/pipeline/RenderCall +CL: com/mojang/blaze3d/pipeline/RenderPipeline com/mojang/blaze3d/pipeline/RenderPipeline +CL: com/mojang/blaze3d/pipeline/RenderTarget com/mojang/blaze3d/pipeline/RenderTarget +CL: com/mojang/blaze3d/pipeline/TextureTarget com/mojang/blaze3d/pipeline/TextureTarget +CL: com/mojang/blaze3d/pipeline/package-info com/mojang/blaze3d/pipeline/package-info +CL: com/mojang/blaze3d/platform/ClipboardManager com/mojang/blaze3d/platform/ClipboardManager +CL: com/mojang/blaze3d/platform/DebugMemoryUntracker com/mojang/blaze3d/platform/DebugMemoryUntracker +CL: com/mojang/blaze3d/platform/DisplayData com/mojang/blaze3d/platform/DisplayData +CL: com/mojang/blaze3d/platform/GLX com/mojang/blaze3d/platform/GLX +CL: com/mojang/blaze3d/platform/GlConst com/mojang/blaze3d/platform/GlConst +CL: com/mojang/blaze3d/platform/GlDebug com/mojang/blaze3d/platform/GlDebug +CL: com/mojang/blaze3d/platform/GlDebug$LogEntry com/mojang/blaze3d/platform/GlDebug$LogEntry +CL: com/mojang/blaze3d/platform/GlStateManager com/mojang/blaze3d/platform/GlStateManager +CL: com/mojang/blaze3d/platform/GlStateManager$BlendState com/mojang/blaze3d/platform/GlStateManager$BlendState +CL: com/mojang/blaze3d/platform/GlStateManager$BooleanState com/mojang/blaze3d/platform/GlStateManager$BooleanState +CL: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState com/mojang/blaze3d/platform/GlStateManager$ColorLogicState +CL: com/mojang/blaze3d/platform/GlStateManager$ColorMask com/mojang/blaze3d/platform/GlStateManager$ColorMask +CL: com/mojang/blaze3d/platform/GlStateManager$CullState com/mojang/blaze3d/platform/GlStateManager$CullState +CL: com/mojang/blaze3d/platform/GlStateManager$DepthState com/mojang/blaze3d/platform/GlStateManager$DepthState +CL: com/mojang/blaze3d/platform/GlStateManager$DestFactor com/mojang/blaze3d/platform/GlStateManager$DestFactor +CL: com/mojang/blaze3d/platform/GlStateManager$LogicOp com/mojang/blaze3d/platform/GlStateManager$LogicOp +CL: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState +CL: com/mojang/blaze3d/platform/GlStateManager$ScissorState com/mojang/blaze3d/platform/GlStateManager$ScissorState +CL: com/mojang/blaze3d/platform/GlStateManager$SourceFactor com/mojang/blaze3d/platform/GlStateManager$SourceFactor +CL: com/mojang/blaze3d/platform/GlStateManager$StencilFunc com/mojang/blaze3d/platform/GlStateManager$StencilFunc +CL: com/mojang/blaze3d/platform/GlStateManager$StencilState com/mojang/blaze3d/platform/GlStateManager$StencilState +CL: com/mojang/blaze3d/platform/GlStateManager$TextureState com/mojang/blaze3d/platform/GlStateManager$TextureState +CL: com/mojang/blaze3d/platform/GlStateManager$Viewport com/mojang/blaze3d/platform/GlStateManager$Viewport +CL: com/mojang/blaze3d/platform/GlUtil com/mojang/blaze3d/platform/GlUtil +CL: com/mojang/blaze3d/platform/IconSet com/mojang/blaze3d/platform/IconSet +CL: com/mojang/blaze3d/platform/InputConstants com/mojang/blaze3d/platform/InputConstants +CL: com/mojang/blaze3d/platform/InputConstants$Key com/mojang/blaze3d/platform/InputConstants$Key +CL: com/mojang/blaze3d/platform/InputConstants$Type com/mojang/blaze3d/platform/InputConstants$Type +CL: com/mojang/blaze3d/platform/Lighting com/mojang/blaze3d/platform/Lighting +CL: com/mojang/blaze3d/platform/MacosUtil com/mojang/blaze3d/platform/MacosUtil +CL: com/mojang/blaze3d/platform/MemoryTracker com/mojang/blaze3d/platform/MemoryTracker +CL: com/mojang/blaze3d/platform/Monitor com/mojang/blaze3d/platform/Monitor +CL: com/mojang/blaze3d/platform/MonitorCreator com/mojang/blaze3d/platform/MonitorCreator +CL: com/mojang/blaze3d/platform/NativeImage com/mojang/blaze3d/platform/NativeImage +CL: com/mojang/blaze3d/platform/NativeImage$Format com/mojang/blaze3d/platform/NativeImage$Format +CL: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat com/mojang/blaze3d/platform/NativeImage$InternalGlFormat +CL: com/mojang/blaze3d/platform/NativeImage$WriteCallback com/mojang/blaze3d/platform/NativeImage$WriteCallback +CL: com/mojang/blaze3d/platform/ScreenManager com/mojang/blaze3d/platform/ScreenManager +CL: com/mojang/blaze3d/platform/TextureUtil com/mojang/blaze3d/platform/TextureUtil +CL: com/mojang/blaze3d/platform/VideoMode com/mojang/blaze3d/platform/VideoMode +CL: com/mojang/blaze3d/platform/Window com/mojang/blaze3d/platform/Window +CL: com/mojang/blaze3d/platform/Window$WindowInitFailed com/mojang/blaze3d/platform/Window$WindowInitFailed +CL: com/mojang/blaze3d/platform/WindowEventHandler com/mojang/blaze3d/platform/WindowEventHandler +CL: com/mojang/blaze3d/platform/package-info com/mojang/blaze3d/platform/package-info +CL: com/mojang/blaze3d/preprocessor/GlslPreprocessor com/mojang/blaze3d/preprocessor/GlslPreprocessor +CL: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context +CL: com/mojang/blaze3d/preprocessor/package-info com/mojang/blaze3d/preprocessor/package-info +CL: com/mojang/blaze3d/shaders/AbstractUniform com/mojang/blaze3d/shaders/AbstractUniform +CL: com/mojang/blaze3d/shaders/BlendMode com/mojang/blaze3d/shaders/BlendMode +CL: com/mojang/blaze3d/shaders/Effect com/mojang/blaze3d/shaders/Effect +CL: com/mojang/blaze3d/shaders/EffectProgram com/mojang/blaze3d/shaders/EffectProgram +CL: com/mojang/blaze3d/shaders/EffectProgram$1 com/mojang/blaze3d/shaders/EffectProgram$1 +CL: com/mojang/blaze3d/shaders/FogShape com/mojang/blaze3d/shaders/FogShape +CL: com/mojang/blaze3d/shaders/Program com/mojang/blaze3d/shaders/Program +CL: com/mojang/blaze3d/shaders/Program$Type com/mojang/blaze3d/shaders/Program$Type +CL: com/mojang/blaze3d/shaders/ProgramManager com/mojang/blaze3d/shaders/ProgramManager +CL: com/mojang/blaze3d/shaders/Shader com/mojang/blaze3d/shaders/Shader +CL: com/mojang/blaze3d/shaders/Uniform com/mojang/blaze3d/shaders/Uniform +CL: com/mojang/blaze3d/shaders/package-info com/mojang/blaze3d/shaders/package-info +CL: com/mojang/blaze3d/systems/RenderSystem com/mojang/blaze3d/systems/RenderSystem +CL: com/mojang/blaze3d/systems/RenderSystem$1 com/mojang/blaze3d/systems/RenderSystem$1 +CL: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer +CL: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator +CL: com/mojang/blaze3d/systems/TimerQuery com/mojang/blaze3d/systems/TimerQuery +CL: com/mojang/blaze3d/systems/TimerQuery$FrameProfile com/mojang/blaze3d/systems/TimerQuery$FrameProfile +CL: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader +CL: com/mojang/blaze3d/systems/package-info com/mojang/blaze3d/systems/package-info +CL: com/mojang/blaze3d/vertex/BufferBuilder com/mojang/blaze3d/vertex/BufferBuilder +CL: com/mojang/blaze3d/vertex/BufferBuilder$1 com/mojang/blaze3d/vertex/BufferBuilder$1 +CL: com/mojang/blaze3d/vertex/BufferBuilder$DrawState com/mojang/blaze3d/vertex/BufferBuilder$DrawState +CL: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer +CL: com/mojang/blaze3d/vertex/BufferBuilder$SortState com/mojang/blaze3d/vertex/BufferBuilder$SortState +CL: com/mojang/blaze3d/vertex/BufferUploader com/mojang/blaze3d/vertex/BufferUploader +CL: com/mojang/blaze3d/vertex/BufferVertexConsumer com/mojang/blaze3d/vertex/BufferVertexConsumer +CL: com/mojang/blaze3d/vertex/DefaultVertexFormat com/mojang/blaze3d/vertex/DefaultVertexFormat +CL: com/mojang/blaze3d/vertex/DefaultedVertexConsumer com/mojang/blaze3d/vertex/DefaultedVertexConsumer +CL: com/mojang/blaze3d/vertex/PoseStack com/mojang/blaze3d/vertex/PoseStack +CL: com/mojang/blaze3d/vertex/PoseStack$Pose com/mojang/blaze3d/vertex/PoseStack$Pose +CL: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator +CL: com/mojang/blaze3d/vertex/Tesselator com/mojang/blaze3d/vertex/Tesselator +CL: com/mojang/blaze3d/vertex/VertexBuffer com/mojang/blaze3d/vertex/VertexBuffer +CL: com/mojang/blaze3d/vertex/VertexBuffer$Usage com/mojang/blaze3d/vertex/VertexBuffer$Usage +CL: com/mojang/blaze3d/vertex/VertexConsumer com/mojang/blaze3d/vertex/VertexConsumer +CL: com/mojang/blaze3d/vertex/VertexFormat com/mojang/blaze3d/vertex/VertexFormat +CL: com/mojang/blaze3d/vertex/VertexFormat$1 com/mojang/blaze3d/vertex/VertexFormat$1 +CL: com/mojang/blaze3d/vertex/VertexFormat$IndexType com/mojang/blaze3d/vertex/VertexFormat$IndexType +CL: com/mojang/blaze3d/vertex/VertexFormat$Mode com/mojang/blaze3d/vertex/VertexFormat$Mode +CL: com/mojang/blaze3d/vertex/VertexFormatElement com/mojang/blaze3d/vertex/VertexFormatElement +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Type com/mojang/blaze3d/vertex/VertexFormatElement$Type +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Usage com/mojang/blaze3d/vertex/VertexFormatElement$Usage +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState +CL: com/mojang/blaze3d/vertex/VertexMultiConsumer com/mojang/blaze3d/vertex/VertexMultiConsumer +CL: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double com/mojang/blaze3d/vertex/VertexMultiConsumer$Double +CL: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple +CL: com/mojang/blaze3d/vertex/VertexSorting com/mojang/blaze3d/vertex/VertexSorting +CL: com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction +CL: com/mojang/blaze3d/vertex/package-info com/mojang/blaze3d/vertex/package-info +CL: com/mojang/math/Axis com/mojang/math/Axis +CL: com/mojang/math/Constants com/mojang/math/Constants +CL: com/mojang/math/Divisor com/mojang/math/Divisor +CL: com/mojang/math/FieldsAreNonnullByDefault com/mojang/math/FieldsAreNonnullByDefault +CL: com/mojang/math/GivensParameters com/mojang/math/GivensParameters +CL: com/mojang/math/MatrixUtil com/mojang/math/MatrixUtil +CL: com/mojang/math/MethodsReturnNonnullByDefault com/mojang/math/MethodsReturnNonnullByDefault +CL: com/mojang/math/OctahedralGroup com/mojang/math/OctahedralGroup +CL: com/mojang/math/OctahedralGroup$1 com/mojang/math/OctahedralGroup$1 +CL: com/mojang/math/SymmetricGroup3 com/mojang/math/SymmetricGroup3 +CL: com/mojang/math/Transformation com/mojang/math/Transformation +CL: com/mojang/math/package-info com/mojang/math/package-info +CL: com/mojang/realmsclient/KeyCombo com/mojang/realmsclient/KeyCombo +CL: com/mojang/realmsclient/RealmsMainScreen com/mojang/realmsclient/RealmsMainScreen +CL: com/mojang/realmsclient/RealmsMainScreen$1 com/mojang/realmsclient/RealmsMainScreen$1 +CL: com/mojang/realmsclient/RealmsMainScreen$2 com/mojang/realmsclient/RealmsMainScreen$2 +CL: com/mojang/realmsclient/RealmsMainScreen$3 com/mojang/realmsclient/RealmsMainScreen$3 +CL: com/mojang/realmsclient/RealmsMainScreen$4 com/mojang/realmsclient/RealmsMainScreen$4 +CL: com/mojang/realmsclient/RealmsMainScreen$5 com/mojang/realmsclient/RealmsMainScreen$5 +CL: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry com/mojang/realmsclient/RealmsMainScreen$ButtonEntry +CL: com/mojang/realmsclient/RealmsMainScreen$CloseButton com/mojang/realmsclient/RealmsMainScreen$CloseButton +CL: com/mojang/realmsclient/RealmsMainScreen$CrossButton com/mojang/realmsclient/RealmsMainScreen$CrossButton +CL: com/mojang/realmsclient/RealmsMainScreen$Entry com/mojang/realmsclient/RealmsMainScreen$Entry +CL: com/mojang/realmsclient/RealmsMainScreen$NewsButton com/mojang/realmsclient/RealmsMainScreen$NewsButton +CL: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry +CL: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton +CL: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList +CL: com/mojang/realmsclient/RealmsMainScreen$RealmsCall com/mojang/realmsclient/RealmsMainScreen$RealmsCall +CL: com/mojang/realmsclient/RealmsMainScreen$ServerEntry com/mojang/realmsclient/RealmsMainScreen$ServerEntry +CL: com/mojang/realmsclient/RealmsMainScreen$TrialEntry com/mojang/realmsclient/RealmsMainScreen$TrialEntry +CL: com/mojang/realmsclient/Unit com/mojang/realmsclient/Unit +CL: com/mojang/realmsclient/client/FileDownload com/mojang/realmsclient/client/FileDownload +CL: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream +CL: com/mojang/realmsclient/client/FileDownload$ProgressListener com/mojang/realmsclient/client/FileDownload$ProgressListener +CL: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener +CL: com/mojang/realmsclient/client/FileUpload com/mojang/realmsclient/client/FileUpload +CL: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity +CL: com/mojang/realmsclient/client/Ping com/mojang/realmsclient/client/Ping +CL: com/mojang/realmsclient/client/Ping$Region com/mojang/realmsclient/client/Ping$Region +CL: com/mojang/realmsclient/client/RealmsClient com/mojang/realmsclient/client/RealmsClient +CL: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse +CL: com/mojang/realmsclient/client/RealmsClient$Environment com/mojang/realmsclient/client/RealmsClient$Environment +CL: com/mojang/realmsclient/client/RealmsClientConfig com/mojang/realmsclient/client/RealmsClientConfig +CL: com/mojang/realmsclient/client/RealmsError com/mojang/realmsclient/client/RealmsError +CL: com/mojang/realmsclient/client/Request com/mojang/realmsclient/client/Request +CL: com/mojang/realmsclient/client/Request$Delete com/mojang/realmsclient/client/Request$Delete +CL: com/mojang/realmsclient/client/Request$Get com/mojang/realmsclient/client/Request$Get +CL: com/mojang/realmsclient/client/Request$Post com/mojang/realmsclient/client/Request$Post +CL: com/mojang/realmsclient/client/Request$Put com/mojang/realmsclient/client/Request$Put +CL: com/mojang/realmsclient/client/UploadStatus com/mojang/realmsclient/client/UploadStatus +CL: com/mojang/realmsclient/client/package-info com/mojang/realmsclient/client/package-info +CL: com/mojang/realmsclient/dto/Backup com/mojang/realmsclient/dto/Backup +CL: com/mojang/realmsclient/dto/BackupList com/mojang/realmsclient/dto/BackupList +CL: com/mojang/realmsclient/dto/GuardedSerializer com/mojang/realmsclient/dto/GuardedSerializer +CL: com/mojang/realmsclient/dto/Ops com/mojang/realmsclient/dto/Ops +CL: com/mojang/realmsclient/dto/PendingInvite com/mojang/realmsclient/dto/PendingInvite +CL: com/mojang/realmsclient/dto/PendingInvitesList com/mojang/realmsclient/dto/PendingInvitesList +CL: com/mojang/realmsclient/dto/PingResult com/mojang/realmsclient/dto/PingResult +CL: com/mojang/realmsclient/dto/PlayerInfo com/mojang/realmsclient/dto/PlayerInfo +CL: com/mojang/realmsclient/dto/RealmsDescriptionDto com/mojang/realmsclient/dto/RealmsDescriptionDto +CL: com/mojang/realmsclient/dto/RealmsNews com/mojang/realmsclient/dto/RealmsNews +CL: com/mojang/realmsclient/dto/RealmsNotification com/mojang/realmsclient/dto/RealmsNotification +CL: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl com/mojang/realmsclient/dto/RealmsNotification$VisitUrl +CL: com/mojang/realmsclient/dto/RealmsServer com/mojang/realmsclient/dto/RealmsServer +CL: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator com/mojang/realmsclient/dto/RealmsServer$McoServerComparator +CL: com/mojang/realmsclient/dto/RealmsServer$State com/mojang/realmsclient/dto/RealmsServer$State +CL: com/mojang/realmsclient/dto/RealmsServer$WorldType com/mojang/realmsclient/dto/RealmsServer$WorldType +CL: com/mojang/realmsclient/dto/RealmsServerAddress com/mojang/realmsclient/dto/RealmsServerAddress +CL: com/mojang/realmsclient/dto/RealmsServerList com/mojang/realmsclient/dto/RealmsServerList +CL: com/mojang/realmsclient/dto/RealmsServerPing com/mojang/realmsclient/dto/RealmsServerPing +CL: com/mojang/realmsclient/dto/RealmsServerPlayerList com/mojang/realmsclient/dto/RealmsServerPlayerList +CL: com/mojang/realmsclient/dto/RealmsServerPlayerLists com/mojang/realmsclient/dto/RealmsServerPlayerLists +CL: com/mojang/realmsclient/dto/RealmsText com/mojang/realmsclient/dto/RealmsText +CL: com/mojang/realmsclient/dto/RealmsWorldOptions com/mojang/realmsclient/dto/RealmsWorldOptions +CL: com/mojang/realmsclient/dto/RealmsWorldResetDto com/mojang/realmsclient/dto/RealmsWorldResetDto +CL: com/mojang/realmsclient/dto/ReflectionBasedSerialization com/mojang/realmsclient/dto/ReflectionBasedSerialization +CL: com/mojang/realmsclient/dto/RegionPingResult com/mojang/realmsclient/dto/RegionPingResult +CL: com/mojang/realmsclient/dto/ServerActivity com/mojang/realmsclient/dto/ServerActivity +CL: com/mojang/realmsclient/dto/ServerActivityList com/mojang/realmsclient/dto/ServerActivityList +CL: com/mojang/realmsclient/dto/Subscription com/mojang/realmsclient/dto/Subscription +CL: com/mojang/realmsclient/dto/Subscription$SubscriptionType com/mojang/realmsclient/dto/Subscription$SubscriptionType +CL: com/mojang/realmsclient/dto/UploadInfo com/mojang/realmsclient/dto/UploadInfo +CL: com/mojang/realmsclient/dto/ValueObject com/mojang/realmsclient/dto/ValueObject +CL: com/mojang/realmsclient/dto/WorldDownload com/mojang/realmsclient/dto/WorldDownload +CL: com/mojang/realmsclient/dto/WorldTemplate com/mojang/realmsclient/dto/WorldTemplate +CL: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType +CL: com/mojang/realmsclient/dto/WorldTemplatePaginatedList com/mojang/realmsclient/dto/WorldTemplatePaginatedList +CL: com/mojang/realmsclient/dto/package-info com/mojang/realmsclient/dto/package-info +CL: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler +CL: com/mojang/realmsclient/exception/RealmsHttpException com/mojang/realmsclient/exception/RealmsHttpException +CL: com/mojang/realmsclient/exception/RealmsServiceException com/mojang/realmsclient/exception/RealmsServiceException +CL: com/mojang/realmsclient/exception/RetryCallException com/mojang/realmsclient/exception/RetryCallException +CL: com/mojang/realmsclient/exception/package-info com/mojang/realmsclient/exception/package-info +CL: com/mojang/realmsclient/gui/ErrorCallback com/mojang/realmsclient/gui/ErrorCallback +CL: com/mojang/realmsclient/gui/RealmsDataFetcher com/mojang/realmsclient/gui/RealmsDataFetcher +CL: com/mojang/realmsclient/gui/RealmsNewsManager com/mojang/realmsclient/gui/RealmsNewsManager +CL: com/mojang/realmsclient/gui/RealmsServerList com/mojang/realmsclient/gui/RealmsServerList +CL: com/mojang/realmsclient/gui/RealmsWorldSlotButton com/mojang/realmsclient/gui/RealmsWorldSlotButton +CL: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action +CL: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State com/mojang/realmsclient/gui/RealmsWorldSlotButton$State +CL: com/mojang/realmsclient/gui/RowButton com/mojang/realmsclient/gui/RowButton +CL: com/mojang/realmsclient/gui/package-info com/mojang/realmsclient/gui/package-info +CL: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen +CL: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList +CL: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen com/mojang/realmsclient/gui/screens/RealmsBackupScreen +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1 com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen +CL: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1 com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen com/mojang/realmsclient/gui/screens/RealmsConfirmScreen +CL: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen +CL: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus +CL: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen +CL: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage +CL: com/mojang/realmsclient/gui/screens/RealmsInviteScreen com/mojang/realmsclient/gui/screens/RealmsInviteScreen +CL: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen +CL: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type +CL: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2 +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3 +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration +CL: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2 +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3 +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen com/mojang/realmsclient/gui/screens/RealmsPlayerScreen +CL: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1 com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton +CL: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1 com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen com/mojang/realmsclient/gui/screens/RealmsSettingsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider +CL: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1 com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsTermsScreen com/mojang/realmsclient/gui/screens/RealmsTermsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsUploadScreen com/mojang/realmsclient/gui/screens/RealmsUploadScreen +CL: com/mojang/realmsclient/gui/screens/UploadResult com/mojang/realmsclient/gui/screens/UploadResult +CL: com/mojang/realmsclient/gui/screens/UploadResult$Builder com/mojang/realmsclient/gui/screens/UploadResult$Builder +CL: com/mojang/realmsclient/gui/screens/package-info com/mojang/realmsclient/gui/screens/package-info +CL: com/mojang/realmsclient/gui/task/DataFetcher com/mojang/realmsclient/gui/task/DataFetcher +CL: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult +CL: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask +CL: com/mojang/realmsclient/gui/task/DataFetcher$Subscription com/mojang/realmsclient/gui/task/DataFetcher$Subscription +CL: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult +CL: com/mojang/realmsclient/gui/task/DataFetcher$Task com/mojang/realmsclient/gui/task/DataFetcher$Task +CL: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy com/mojang/realmsclient/gui/task/RepeatedDelayStrategy +CL: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1 com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1 +CL: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2 com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2 +CL: com/mojang/realmsclient/gui/task/package-info com/mojang/realmsclient/gui/task/package-info +CL: com/mojang/realmsclient/package-info com/mojang/realmsclient/package-info +CL: com/mojang/realmsclient/util/JsonUtils com/mojang/realmsclient/util/JsonUtils +CL: com/mojang/realmsclient/util/LevelType com/mojang/realmsclient/util/LevelType +CL: com/mojang/realmsclient/util/RealmsPersistence com/mojang/realmsclient/util/RealmsPersistence +CL: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData +CL: com/mojang/realmsclient/util/RealmsTextureManager com/mojang/realmsclient/util/RealmsTextureManager +CL: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture +CL: com/mojang/realmsclient/util/RealmsUtil com/mojang/realmsclient/util/RealmsUtil +CL: com/mojang/realmsclient/util/RealmsUtil$1 com/mojang/realmsclient/util/RealmsUtil$1 +CL: com/mojang/realmsclient/util/TextRenderingUtils com/mojang/realmsclient/util/TextRenderingUtils +CL: com/mojang/realmsclient/util/TextRenderingUtils$Line com/mojang/realmsclient/util/TextRenderingUtils$Line +CL: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment com/mojang/realmsclient/util/TextRenderingUtils$LineSegment +CL: com/mojang/realmsclient/util/UploadTokenCache com/mojang/realmsclient/util/UploadTokenCache +CL: com/mojang/realmsclient/util/WorldGenerationInfo com/mojang/realmsclient/util/WorldGenerationInfo +CL: com/mojang/realmsclient/util/package-info com/mojang/realmsclient/util/package-info +CL: com/mojang/realmsclient/util/task/CloseServerTask com/mojang/realmsclient/util/task/CloseServerTask +CL: com/mojang/realmsclient/util/task/ConnectTask com/mojang/realmsclient/util/task/ConnectTask +CL: com/mojang/realmsclient/util/task/DownloadTask com/mojang/realmsclient/util/task/DownloadTask +CL: com/mojang/realmsclient/util/task/GetServerDetailsTask com/mojang/realmsclient/util/task/GetServerDetailsTask +CL: com/mojang/realmsclient/util/task/LongRunningTask com/mojang/realmsclient/util/task/LongRunningTask +CL: com/mojang/realmsclient/util/task/OpenServerTask com/mojang/realmsclient/util/task/OpenServerTask +CL: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask +CL: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask com/mojang/realmsclient/util/task/ResettingTemplateWorldTask +CL: com/mojang/realmsclient/util/task/ResettingWorldTask com/mojang/realmsclient/util/task/ResettingWorldTask +CL: com/mojang/realmsclient/util/task/RestoreTask com/mojang/realmsclient/util/task/RestoreTask +CL: com/mojang/realmsclient/util/task/SwitchMinigameTask com/mojang/realmsclient/util/task/SwitchMinigameTask +CL: com/mojang/realmsclient/util/task/SwitchSlotTask com/mojang/realmsclient/util/task/SwitchSlotTask +CL: com/mojang/realmsclient/util/task/WorldCreationTask com/mojang/realmsclient/util/task/WorldCreationTask +CL: com/mojang/realmsclient/util/task/package-info com/mojang/realmsclient/util/task/package-info +CL: net/minecraft/BlockUtil net/minecraft/BlockUtil +CL: net/minecraft/BlockUtil$FoundRectangle net/minecraft/BlockUtil$FoundRectangle +CL: net/minecraft/BlockUtil$IntBounds net/minecraft/BlockUtil$IntBounds +CL: net/minecraft/CharPredicate net/minecraft/CharPredicate +CL: net/minecraft/ChatFormatting net/minecraft/ChatFormatting +CL: net/minecraft/CrashReport net/minecraft/CrashReport +CL: net/minecraft/CrashReportCategory net/minecraft/CrashReportCategory +CL: net/minecraft/CrashReportCategory$Entry net/minecraft/CrashReportCategory$Entry +CL: net/minecraft/CrashReportDetail net/minecraft/CrashReportDetail +CL: net/minecraft/DefaultUncaughtExceptionHandler net/minecraft/DefaultUncaughtExceptionHandler +CL: net/minecraft/DefaultUncaughtExceptionHandlerWithName net/minecraft/DefaultUncaughtExceptionHandlerWithName +CL: net/minecraft/DetectedVersion net/minecraft/DetectedVersion +CL: net/minecraft/FieldsAreNonnullByDefault net/minecraft/FieldsAreNonnullByDefault +CL: net/minecraft/FileUtil net/minecraft/FileUtil +CL: net/minecraft/MethodsReturnNonnullByDefault net/minecraft/MethodsReturnNonnullByDefault +CL: net/minecraft/Optionull net/minecraft/Optionull +CL: net/minecraft/ReportedException net/minecraft/ReportedException +CL: net/minecraft/ResourceLocationException net/minecraft/ResourceLocationException +CL: net/minecraft/SharedConstants net/minecraft/SharedConstants +CL: net/minecraft/SystemReport net/minecraft/SystemReport +CL: net/minecraft/Util net/minecraft/Util +CL: net/minecraft/Util$1 net/minecraft/Util$1 +CL: net/minecraft/Util$10 net/minecraft/Util$10 +CL: net/minecraft/Util$11 net/minecraft/Util$11 +CL: net/minecraft/Util$2 net/minecraft/Util$2 +CL: net/minecraft/Util$5 net/minecraft/Util$5 +CL: net/minecraft/Util$6 net/minecraft/Util$6 +CL: net/minecraft/Util$7 net/minecraft/Util$7 +CL: net/minecraft/Util$8 net/minecraft/Util$8 +CL: net/minecraft/Util$9 net/minecraft/Util$9 +CL: net/minecraft/Util$IdentityStrategy net/minecraft/Util$IdentityStrategy +CL: net/minecraft/Util$OS net/minecraft/Util$OS +CL: net/minecraft/Util$OS$1 net/minecraft/Util$OS$1 +CL: net/minecraft/Util$OS$2 net/minecraft/Util$OS$2 +CL: net/minecraft/WorldVersion net/minecraft/WorldVersion +CL: net/minecraft/advancements/Advancement net/minecraft/advancements/Advancement +CL: net/minecraft/advancements/Advancement$Builder net/minecraft/advancements/Advancement$Builder +CL: net/minecraft/advancements/AdvancementList net/minecraft/advancements/AdvancementList +CL: net/minecraft/advancements/AdvancementList$Listener net/minecraft/advancements/AdvancementList$Listener +CL: net/minecraft/advancements/AdvancementProgress net/minecraft/advancements/AdvancementProgress +CL: net/minecraft/advancements/AdvancementProgress$Serializer net/minecraft/advancements/AdvancementProgress$Serializer +CL: net/minecraft/advancements/AdvancementRewards net/minecraft/advancements/AdvancementRewards +CL: net/minecraft/advancements/AdvancementRewards$Builder net/minecraft/advancements/AdvancementRewards$Builder +CL: net/minecraft/advancements/CriteriaTriggers net/minecraft/advancements/CriteriaTriggers +CL: net/minecraft/advancements/Criterion net/minecraft/advancements/Criterion +CL: net/minecraft/advancements/CriterionProgress net/minecraft/advancements/CriterionProgress +CL: net/minecraft/advancements/CriterionTrigger net/minecraft/advancements/CriterionTrigger +CL: net/minecraft/advancements/CriterionTrigger$Listener net/minecraft/advancements/CriterionTrigger$Listener +CL: net/minecraft/advancements/CriterionTriggerInstance net/minecraft/advancements/CriterionTriggerInstance +CL: net/minecraft/advancements/DisplayInfo net/minecraft/advancements/DisplayInfo +CL: net/minecraft/advancements/FrameType net/minecraft/advancements/FrameType +CL: net/minecraft/advancements/RequirementsStrategy net/minecraft/advancements/RequirementsStrategy +CL: net/minecraft/advancements/TreeNodePosition net/minecraft/advancements/TreeNodePosition +CL: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance +CL: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger net/minecraft/advancements/critereon/BeeNestDestroyedTrigger +CL: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/BlockPredicate net/minecraft/advancements/critereon/BlockPredicate +CL: net/minecraft/advancements/critereon/BlockPredicate$Builder net/minecraft/advancements/critereon/BlockPredicate$Builder +CL: net/minecraft/advancements/critereon/BredAnimalsTrigger net/minecraft/advancements/critereon/BredAnimalsTrigger +CL: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/BrewedPotionTrigger net/minecraft/advancements/critereon/BrewedPotionTrigger +CL: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ChangeDimensionTrigger net/minecraft/advancements/critereon/ChangeDimensionTrigger +CL: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ChanneledLightningTrigger net/minecraft/advancements/critereon/ChanneledLightningTrigger +CL: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ConstructBeaconTrigger net/minecraft/advancements/critereon/ConstructBeaconTrigger +CL: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ConsumeItemTrigger net/minecraft/advancements/critereon/ConsumeItemTrigger +CL: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ContextAwarePredicate net/minecraft/advancements/critereon/ContextAwarePredicate +CL: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger net/minecraft/advancements/critereon/CuredZombieVillagerTrigger +CL: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/DamagePredicate net/minecraft/advancements/critereon/DamagePredicate +CL: net/minecraft/advancements/critereon/DamagePredicate$Builder net/minecraft/advancements/critereon/DamagePredicate$Builder +CL: net/minecraft/advancements/critereon/DamageSourcePredicate net/minecraft/advancements/critereon/DamageSourcePredicate +CL: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder net/minecraft/advancements/critereon/DamageSourcePredicate$Builder +CL: net/minecraft/advancements/critereon/DeserializationContext net/minecraft/advancements/critereon/DeserializationContext +CL: net/minecraft/advancements/critereon/DistancePredicate net/minecraft/advancements/critereon/DistancePredicate +CL: net/minecraft/advancements/critereon/DistanceTrigger net/minecraft/advancements/critereon/DistanceTrigger +CL: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EffectsChangedTrigger net/minecraft/advancements/critereon/EffectsChangedTrigger +CL: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EnchantedItemTrigger net/minecraft/advancements/critereon/EnchantedItemTrigger +CL: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EnchantmentPredicate net/minecraft/advancements/critereon/EnchantmentPredicate +CL: net/minecraft/advancements/critereon/EnterBlockTrigger net/minecraft/advancements/critereon/EnterBlockTrigger +CL: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EntityEquipmentPredicate net/minecraft/advancements/critereon/EntityEquipmentPredicate +CL: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder +CL: net/minecraft/advancements/critereon/EntityFlagsPredicate net/minecraft/advancements/critereon/EntityFlagsPredicate +CL: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder +CL: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger net/minecraft/advancements/critereon/EntityHurtPlayerTrigger +CL: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EntityPredicate net/minecraft/advancements/critereon/EntityPredicate +CL: net/minecraft/advancements/critereon/EntityPredicate$Builder net/minecraft/advancements/critereon/EntityPredicate$Builder +CL: net/minecraft/advancements/critereon/EntitySubPredicate net/minecraft/advancements/critereon/EntitySubPredicate +CL: net/minecraft/advancements/critereon/EntitySubPredicate$1 net/minecraft/advancements/critereon/EntitySubPredicate$1 +CL: net/minecraft/advancements/critereon/EntitySubPredicate$Type net/minecraft/advancements/critereon/EntitySubPredicate$Type +CL: net/minecraft/advancements/critereon/EntitySubPredicate$Types net/minecraft/advancements/critereon/EntitySubPredicate$Types +CL: net/minecraft/advancements/critereon/EntityTypePredicate net/minecraft/advancements/critereon/EntityTypePredicate +CL: net/minecraft/advancements/critereon/EntityTypePredicate$1 net/minecraft/advancements/critereon/EntityTypePredicate$1 +CL: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate +CL: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate +CL: net/minecraft/advancements/critereon/EntityVariantPredicate net/minecraft/advancements/critereon/EntityVariantPredicate +CL: net/minecraft/advancements/critereon/EntityVariantPredicate$1 net/minecraft/advancements/critereon/EntityVariantPredicate$1 +CL: net/minecraft/advancements/critereon/FilledBucketTrigger net/minecraft/advancements/critereon/FilledBucketTrigger +CL: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/FishingHookPredicate net/minecraft/advancements/critereon/FishingHookPredicate +CL: net/minecraft/advancements/critereon/FishingRodHookedTrigger net/minecraft/advancements/critereon/FishingRodHookedTrigger +CL: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/FluidPredicate net/minecraft/advancements/critereon/FluidPredicate +CL: net/minecraft/advancements/critereon/FluidPredicate$Builder net/minecraft/advancements/critereon/FluidPredicate$Builder +CL: net/minecraft/advancements/critereon/ImpossibleTrigger net/minecraft/advancements/critereon/ImpossibleTrigger +CL: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/InventoryChangeTrigger net/minecraft/advancements/critereon/InventoryChangeTrigger +CL: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ItemDurabilityTrigger net/minecraft/advancements/critereon/ItemDurabilityTrigger +CL: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ItemPredicate net/minecraft/advancements/critereon/ItemPredicate +CL: net/minecraft/advancements/critereon/ItemPredicate$Builder net/minecraft/advancements/critereon/ItemPredicate$Builder +CL: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger +CL: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/KilledByCrossbowTrigger net/minecraft/advancements/critereon/KilledByCrossbowTrigger +CL: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/KilledTrigger net/minecraft/advancements/critereon/KilledTrigger +CL: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/LevitationTrigger net/minecraft/advancements/critereon/LevitationTrigger +CL: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/LightPredicate net/minecraft/advancements/critereon/LightPredicate +CL: net/minecraft/advancements/critereon/LightPredicate$Builder net/minecraft/advancements/critereon/LightPredicate$Builder +CL: net/minecraft/advancements/critereon/LighthingBoltPredicate net/minecraft/advancements/critereon/LighthingBoltPredicate +CL: net/minecraft/advancements/critereon/LightningStrikeTrigger net/minecraft/advancements/critereon/LightningStrikeTrigger +CL: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/LocationPredicate net/minecraft/advancements/critereon/LocationPredicate +CL: net/minecraft/advancements/critereon/LocationPredicate$Builder net/minecraft/advancements/critereon/LocationPredicate$Builder +CL: net/minecraft/advancements/critereon/LootTableTrigger net/minecraft/advancements/critereon/LootTableTrigger +CL: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/MinMaxBounds net/minecraft/advancements/critereon/MinMaxBounds +CL: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory +CL: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory +CL: net/minecraft/advancements/critereon/MinMaxBounds$Doubles net/minecraft/advancements/critereon/MinMaxBounds$Doubles +CL: net/minecraft/advancements/critereon/MinMaxBounds$Ints net/minecraft/advancements/critereon/MinMaxBounds$Ints +CL: net/minecraft/advancements/critereon/MobEffectsPredicate net/minecraft/advancements/critereon/MobEffectsPredicate +CL: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate +CL: net/minecraft/advancements/critereon/NbtPredicate net/minecraft/advancements/critereon/NbtPredicate +CL: net/minecraft/advancements/critereon/PickedUpItemTrigger net/minecraft/advancements/critereon/PickedUpItemTrigger +CL: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger net/minecraft/advancements/critereon/PlayerHurtEntityTrigger +CL: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/PlayerInteractTrigger net/minecraft/advancements/critereon/PlayerInteractTrigger +CL: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/PlayerPredicate net/minecraft/advancements/critereon/PlayerPredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$Builder net/minecraft/advancements/critereon/PlayerPredicate$Builder +CL: net/minecraft/advancements/critereon/PlayerTrigger net/minecraft/advancements/critereon/PlayerTrigger +CL: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/RecipeCraftedTrigger net/minecraft/advancements/critereon/RecipeCraftedTrigger +CL: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/RecipeUnlockedTrigger net/minecraft/advancements/critereon/RecipeUnlockedTrigger +CL: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/SerializationContext net/minecraft/advancements/critereon/SerializationContext +CL: net/minecraft/advancements/critereon/ShotCrossbowTrigger net/minecraft/advancements/critereon/ShotCrossbowTrigger +CL: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/SimpleCriterionTrigger net/minecraft/advancements/critereon/SimpleCriterionTrigger +CL: net/minecraft/advancements/critereon/SlideDownBlockTrigger net/minecraft/advancements/critereon/SlideDownBlockTrigger +CL: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/SlimePredicate net/minecraft/advancements/critereon/SlimePredicate +CL: net/minecraft/advancements/critereon/StartRidingTrigger net/minecraft/advancements/critereon/StartRidingTrigger +CL: net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate net/minecraft/advancements/critereon/StatePropertiesPredicate +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher +CL: net/minecraft/advancements/critereon/SummonedEntityTrigger net/minecraft/advancements/critereon/SummonedEntityTrigger +CL: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/TagPredicate net/minecraft/advancements/critereon/TagPredicate +CL: net/minecraft/advancements/critereon/TameAnimalTrigger net/minecraft/advancements/critereon/TameAnimalTrigger +CL: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/TargetBlockTrigger net/minecraft/advancements/critereon/TargetBlockTrigger +CL: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/TradeTrigger net/minecraft/advancements/critereon/TradeTrigger +CL: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/UsedEnderEyeTrigger net/minecraft/advancements/critereon/UsedEnderEyeTrigger +CL: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/UsedTotemTrigger net/minecraft/advancements/critereon/UsedTotemTrigger +CL: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/UsingItemTrigger net/minecraft/advancements/critereon/UsingItemTrigger +CL: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/WrappedMinMaxBounds net/minecraft/advancements/critereon/WrappedMinMaxBounds +CL: net/minecraft/advancements/critereon/package-info net/minecraft/advancements/critereon/package-info +CL: net/minecraft/advancements/package-info net/minecraft/advancements/package-info +CL: net/minecraft/client/AttackIndicatorStatus net/minecraft/client/AttackIndicatorStatus +CL: net/minecraft/client/Camera net/minecraft/client/Camera +CL: net/minecraft/client/Camera$NearPlane net/minecraft/client/Camera$NearPlane +CL: net/minecraft/client/CameraType net/minecraft/client/CameraType +CL: net/minecraft/client/ClientBrandRetriever net/minecraft/client/ClientBrandRetriever +CL: net/minecraft/client/ClientRecipeBook net/minecraft/client/ClientRecipeBook +CL: net/minecraft/client/ClientRecipeBook$1 net/minecraft/client/ClientRecipeBook$1 +CL: net/minecraft/client/CloudStatus net/minecraft/client/CloudStatus +CL: net/minecraft/client/ComponentCollector net/minecraft/client/ComponentCollector +CL: net/minecraft/client/DebugQueryHandler net/minecraft/client/DebugQueryHandler +CL: net/minecraft/client/GameNarrator net/minecraft/client/GameNarrator +CL: net/minecraft/client/GameNarrator$NarratorInitException net/minecraft/client/GameNarrator$NarratorInitException +CL: net/minecraft/client/GraphicsStatus net/minecraft/client/GraphicsStatus +CL: net/minecraft/client/GraphicsStatus$1 net/minecraft/client/GraphicsStatus$1 +CL: net/minecraft/client/GuiMessage net/minecraft/client/GuiMessage +CL: net/minecraft/client/GuiMessage$Line net/minecraft/client/GuiMessage$Line +CL: net/minecraft/client/GuiMessageTag net/minecraft/client/GuiMessageTag +CL: net/minecraft/client/GuiMessageTag$Icon net/minecraft/client/GuiMessageTag$Icon +CL: net/minecraft/client/HotbarManager net/minecraft/client/HotbarManager +CL: net/minecraft/client/InputType net/minecraft/client/InputType +CL: net/minecraft/client/KeyMapping net/minecraft/client/KeyMapping +CL: net/minecraft/client/KeyboardHandler net/minecraft/client/KeyboardHandler +CL: net/minecraft/client/KeyboardHandler$1 net/minecraft/client/KeyboardHandler$1 +CL: net/minecraft/client/Minecraft net/minecraft/client/Minecraft +CL: net/minecraft/client/Minecraft$1 net/minecraft/client/Minecraft$1 +CL: net/minecraft/client/Minecraft$ChatStatus net/minecraft/client/Minecraft$ChatStatus +CL: net/minecraft/client/Minecraft$ChatStatus$1 net/minecraft/client/Minecraft$ChatStatus$1 +CL: net/minecraft/client/Minecraft$ChatStatus$2 net/minecraft/client/Minecraft$ChatStatus$2 +CL: net/minecraft/client/Minecraft$ChatStatus$3 net/minecraft/client/Minecraft$ChatStatus$3 +CL: net/minecraft/client/Minecraft$ChatStatus$4 net/minecraft/client/Minecraft$ChatStatus$4 +CL: net/minecraft/client/MouseHandler net/minecraft/client/MouseHandler +CL: net/minecraft/client/NarratorStatus net/minecraft/client/NarratorStatus +CL: net/minecraft/client/OptionInstance net/minecraft/client/OptionInstance +CL: net/minecraft/client/OptionInstance$AltEnum net/minecraft/client/OptionInstance$AltEnum +CL: net/minecraft/client/OptionInstance$CaptionBasedToString net/minecraft/client/OptionInstance$CaptionBasedToString +CL: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange +CL: net/minecraft/client/OptionInstance$CycleableValueSet net/minecraft/client/OptionInstance$CycleableValueSet +CL: net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter +CL: net/minecraft/client/OptionInstance$Enum net/minecraft/client/OptionInstance$Enum +CL: net/minecraft/client/OptionInstance$IntRange net/minecraft/client/OptionInstance$IntRange +CL: net/minecraft/client/OptionInstance$IntRangeBase net/minecraft/client/OptionInstance$IntRangeBase +CL: net/minecraft/client/OptionInstance$IntRangeBase$1 net/minecraft/client/OptionInstance$IntRangeBase$1 +CL: net/minecraft/client/OptionInstance$LazyEnum net/minecraft/client/OptionInstance$LazyEnum +CL: net/minecraft/client/OptionInstance$OptionInstanceSliderButton net/minecraft/client/OptionInstance$OptionInstanceSliderButton +CL: net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet +CL: net/minecraft/client/OptionInstance$SliderableValueSet net/minecraft/client/OptionInstance$SliderableValueSet +CL: net/minecraft/client/OptionInstance$TooltipSupplier net/minecraft/client/OptionInstance$TooltipSupplier +CL: net/minecraft/client/OptionInstance$UnitDouble net/minecraft/client/OptionInstance$UnitDouble +CL: net/minecraft/client/OptionInstance$UnitDouble$1 net/minecraft/client/OptionInstance$UnitDouble$1 +CL: net/minecraft/client/OptionInstance$ValueSet net/minecraft/client/OptionInstance$ValueSet +CL: net/minecraft/client/Options net/minecraft/client/Options +CL: net/minecraft/client/Options$1 net/minecraft/client/Options$1 +CL: net/minecraft/client/Options$2 net/minecraft/client/Options$2 +CL: net/minecraft/client/Options$3 net/minecraft/client/Options$3 +CL: net/minecraft/client/Options$4 net/minecraft/client/Options$4 +CL: net/minecraft/client/Options$FieldAccess net/minecraft/client/Options$FieldAccess +CL: net/minecraft/client/ParticleStatus net/minecraft/client/ParticleStatus +CL: net/minecraft/client/PeriodicNotificationManager net/minecraft/client/PeriodicNotificationManager +CL: net/minecraft/client/PeriodicNotificationManager$Notification net/minecraft/client/PeriodicNotificationManager$Notification +CL: net/minecraft/client/PeriodicNotificationManager$NotificationTask net/minecraft/client/PeriodicNotificationManager$NotificationTask +CL: net/minecraft/client/PrioritizeChunkUpdates net/minecraft/client/PrioritizeChunkUpdates +CL: net/minecraft/client/Realms32BitWarningStatus net/minecraft/client/Realms32BitWarningStatus +CL: net/minecraft/client/RecipeBookCategories net/minecraft/client/RecipeBookCategories +CL: net/minecraft/client/RecipeBookCategories$1 net/minecraft/client/RecipeBookCategories$1 +CL: net/minecraft/client/ResourceLoadStateTracker net/minecraft/client/ResourceLoadStateTracker +CL: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo +CL: net/minecraft/client/ResourceLoadStateTracker$ReloadReason net/minecraft/client/ResourceLoadStateTracker$ReloadReason +CL: net/minecraft/client/ResourceLoadStateTracker$ReloadState net/minecraft/client/ResourceLoadStateTracker$ReloadState +CL: net/minecraft/client/Screenshot net/minecraft/client/Screenshot +CL: net/minecraft/client/StringSplitter net/minecraft/client/StringSplitter +CL: net/minecraft/client/StringSplitter$1 net/minecraft/client/StringSplitter$1 +CL: net/minecraft/client/StringSplitter$FlatComponents net/minecraft/client/StringSplitter$FlatComponents +CL: net/minecraft/client/StringSplitter$LineBreakFinder net/minecraft/client/StringSplitter$LineBreakFinder +CL: net/minecraft/client/StringSplitter$LineComponent net/minecraft/client/StringSplitter$LineComponent +CL: net/minecraft/client/StringSplitter$LinePosConsumer net/minecraft/client/StringSplitter$LinePosConsumer +CL: net/minecraft/client/StringSplitter$WidthLimitedCharSink net/minecraft/client/StringSplitter$WidthLimitedCharSink +CL: net/minecraft/client/StringSplitter$WidthProvider net/minecraft/client/StringSplitter$WidthProvider +CL: net/minecraft/client/Timer net/minecraft/client/Timer +CL: net/minecraft/client/ToggleKeyMapping net/minecraft/client/ToggleKeyMapping +CL: net/minecraft/client/User net/minecraft/client/User +CL: net/minecraft/client/User$Type net/minecraft/client/User$Type +CL: net/minecraft/client/animation/AnimationChannel net/minecraft/client/animation/AnimationChannel +CL: net/minecraft/client/animation/AnimationChannel$Interpolation net/minecraft/client/animation/AnimationChannel$Interpolation +CL: net/minecraft/client/animation/AnimationChannel$Interpolations net/minecraft/client/animation/AnimationChannel$Interpolations +CL: net/minecraft/client/animation/AnimationChannel$Target net/minecraft/client/animation/AnimationChannel$Target +CL: net/minecraft/client/animation/AnimationChannel$Targets net/minecraft/client/animation/AnimationChannel$Targets +CL: net/minecraft/client/animation/AnimationDefinition net/minecraft/client/animation/AnimationDefinition +CL: net/minecraft/client/animation/AnimationDefinition$Builder net/minecraft/client/animation/AnimationDefinition$Builder +CL: net/minecraft/client/animation/Keyframe net/minecraft/client/animation/Keyframe +CL: net/minecraft/client/animation/KeyframeAnimations net/minecraft/client/animation/KeyframeAnimations +CL: net/minecraft/client/animation/definitions/CamelAnimation net/minecraft/client/animation/definitions/CamelAnimation +CL: net/minecraft/client/animation/definitions/FrogAnimation net/minecraft/client/animation/definitions/FrogAnimation +CL: net/minecraft/client/animation/definitions/SnifferAnimation net/minecraft/client/animation/definitions/SnifferAnimation +CL: net/minecraft/client/animation/definitions/WardenAnimation net/minecraft/client/animation/definitions/WardenAnimation +CL: net/minecraft/client/animation/definitions/package-info net/minecraft/client/animation/definitions/package-info +CL: net/minecraft/client/animation/package-info net/minecraft/client/animation/package-info +CL: net/minecraft/client/color/block/BlockColor net/minecraft/client/color/block/BlockColor +CL: net/minecraft/client/color/block/BlockColors net/minecraft/client/color/block/BlockColors +CL: net/minecraft/client/color/block/BlockTintCache net/minecraft/client/color/block/BlockTintCache +CL: net/minecraft/client/color/block/BlockTintCache$CacheData net/minecraft/client/color/block/BlockTintCache$CacheData +CL: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo +CL: net/minecraft/client/color/block/package-info net/minecraft/client/color/block/package-info +CL: net/minecraft/client/color/item/ItemColor net/minecraft/client/color/item/ItemColor +CL: net/minecraft/client/color/item/ItemColors net/minecraft/client/color/item/ItemColors +CL: net/minecraft/client/color/item/package-info net/minecraft/client/color/item/package-info +CL: net/minecraft/client/gui/ComponentPath net/minecraft/client/gui/ComponentPath +CL: net/minecraft/client/gui/ComponentPath$Leaf net/minecraft/client/gui/ComponentPath$Leaf +CL: net/minecraft/client/gui/ComponentPath$Path net/minecraft/client/gui/ComponentPath$Path +CL: net/minecraft/client/gui/Font net/minecraft/client/gui/Font +CL: net/minecraft/client/gui/Font$DisplayMode net/minecraft/client/gui/Font$DisplayMode +CL: net/minecraft/client/gui/Font$StringRenderOutput net/minecraft/client/gui/Font$StringRenderOutput +CL: net/minecraft/client/gui/Gui net/minecraft/client/gui/Gui +CL: net/minecraft/client/gui/Gui$HeartType net/minecraft/client/gui/Gui$HeartType +CL: net/minecraft/client/gui/GuiGraphics net/minecraft/client/gui/GuiGraphics +CL: net/minecraft/client/gui/GuiGraphics$ScissorStack net/minecraft/client/gui/GuiGraphics$ScissorStack +CL: net/minecraft/client/gui/MapRenderer net/minecraft/client/gui/MapRenderer +CL: net/minecraft/client/gui/MapRenderer$MapInstance net/minecraft/client/gui/MapRenderer$MapInstance +CL: net/minecraft/client/gui/components/AbstractButton net/minecraft/client/gui/components/AbstractButton +CL: net/minecraft/client/gui/components/AbstractOptionSliderButton net/minecraft/client/gui/components/AbstractOptionSliderButton +CL: net/minecraft/client/gui/components/AbstractScrollWidget net/minecraft/client/gui/components/AbstractScrollWidget +CL: net/minecraft/client/gui/components/AbstractSelectionList net/minecraft/client/gui/components/AbstractSelectionList +CL: net/minecraft/client/gui/components/AbstractSelectionList$1 net/minecraft/client/gui/components/AbstractSelectionList$1 +CL: net/minecraft/client/gui/components/AbstractSelectionList$Entry net/minecraft/client/gui/components/AbstractSelectionList$Entry +CL: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList net/minecraft/client/gui/components/AbstractSelectionList$TrackedList +CL: net/minecraft/client/gui/components/AbstractSliderButton net/minecraft/client/gui/components/AbstractSliderButton +CL: net/minecraft/client/gui/components/AbstractStringWidget net/minecraft/client/gui/components/AbstractStringWidget +CL: net/minecraft/client/gui/components/AbstractWidget net/minecraft/client/gui/components/AbstractWidget +CL: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget +CL: net/minecraft/client/gui/components/BossHealthOverlay net/minecraft/client/gui/components/BossHealthOverlay +CL: net/minecraft/client/gui/components/BossHealthOverlay$1 net/minecraft/client/gui/components/BossHealthOverlay$1 +CL: net/minecraft/client/gui/components/Button net/minecraft/client/gui/components/Button +CL: net/minecraft/client/gui/components/Button$Builder net/minecraft/client/gui/components/Button$Builder +CL: net/minecraft/client/gui/components/Button$CreateNarration net/minecraft/client/gui/components/Button$CreateNarration +CL: net/minecraft/client/gui/components/Button$OnPress net/minecraft/client/gui/components/Button$OnPress +CL: net/minecraft/client/gui/components/ChatComponent net/minecraft/client/gui/components/ChatComponent +CL: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion +CL: net/minecraft/client/gui/components/Checkbox net/minecraft/client/gui/components/Checkbox +CL: net/minecraft/client/gui/components/CommandSuggestions net/minecraft/client/gui/components/CommandSuggestions +CL: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList +CL: net/minecraft/client/gui/components/CommonButtons net/minecraft/client/gui/components/CommonButtons +CL: net/minecraft/client/gui/components/ComponentRenderUtils net/minecraft/client/gui/components/ComponentRenderUtils +CL: net/minecraft/client/gui/components/ContainerObjectSelectionList net/minecraft/client/gui/components/ContainerObjectSelectionList +CL: net/minecraft/client/gui/components/ContainerObjectSelectionList$1 net/minecraft/client/gui/components/ContainerObjectSelectionList$1 +CL: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry +CL: net/minecraft/client/gui/components/CycleButton net/minecraft/client/gui/components/CycleButton +CL: net/minecraft/client/gui/components/CycleButton$Builder net/minecraft/client/gui/components/CycleButton$Builder +CL: net/minecraft/client/gui/components/CycleButton$OnValueChange net/minecraft/client/gui/components/CycleButton$OnValueChange +CL: net/minecraft/client/gui/components/CycleButton$ValueListSupplier net/minecraft/client/gui/components/CycleButton$ValueListSupplier +CL: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1 net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1 +CL: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2 net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2 +CL: net/minecraft/client/gui/components/DebugScreenOverlay net/minecraft/client/gui/components/DebugScreenOverlay +CL: net/minecraft/client/gui/components/DebugScreenOverlay$1 net/minecraft/client/gui/components/DebugScreenOverlay$1 +CL: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator +CL: net/minecraft/client/gui/components/EditBox net/minecraft/client/gui/components/EditBox +CL: net/minecraft/client/gui/components/FittingMultiLineTextWidget net/minecraft/client/gui/components/FittingMultiLineTextWidget +CL: net/minecraft/client/gui/components/ImageButton net/minecraft/client/gui/components/ImageButton +CL: net/minecraft/client/gui/components/ImageWidget net/minecraft/client/gui/components/ImageWidget +CL: net/minecraft/client/gui/components/LerpingBossEvent net/minecraft/client/gui/components/LerpingBossEvent +CL: net/minecraft/client/gui/components/LockIconButton net/minecraft/client/gui/components/LockIconButton +CL: net/minecraft/client/gui/components/LockIconButton$Icon net/minecraft/client/gui/components/LockIconButton$Icon +CL: net/minecraft/client/gui/components/LogoRenderer net/minecraft/client/gui/components/LogoRenderer +CL: net/minecraft/client/gui/components/MultiLineEditBox net/minecraft/client/gui/components/MultiLineEditBox +CL: net/minecraft/client/gui/components/MultiLineLabel net/minecraft/client/gui/components/MultiLineLabel +CL: net/minecraft/client/gui/components/MultiLineLabel$1 net/minecraft/client/gui/components/MultiLineLabel$1 +CL: net/minecraft/client/gui/components/MultiLineLabel$2 net/minecraft/client/gui/components/MultiLineLabel$2 +CL: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth +CL: net/minecraft/client/gui/components/MultiLineTextWidget net/minecraft/client/gui/components/MultiLineTextWidget +CL: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey +CL: net/minecraft/client/gui/components/MultilineTextField net/minecraft/client/gui/components/MultilineTextField +CL: net/minecraft/client/gui/components/MultilineTextField$1 net/minecraft/client/gui/components/MultilineTextField$1 +CL: net/minecraft/client/gui/components/MultilineTextField$StringView net/minecraft/client/gui/components/MultilineTextField$StringView +CL: net/minecraft/client/gui/components/ObjectSelectionList net/minecraft/client/gui/components/ObjectSelectionList +CL: net/minecraft/client/gui/components/ObjectSelectionList$Entry net/minecraft/client/gui/components/ObjectSelectionList$Entry +CL: net/minecraft/client/gui/components/OptionsList net/minecraft/client/gui/components/OptionsList +CL: net/minecraft/client/gui/components/OptionsList$Entry net/minecraft/client/gui/components/OptionsList$Entry +CL: net/minecraft/client/gui/components/PlainTextButton net/minecraft/client/gui/components/PlainTextButton +CL: net/minecraft/client/gui/components/PlayerFaceRenderer net/minecraft/client/gui/components/PlayerFaceRenderer +CL: net/minecraft/client/gui/components/PlayerTabOverlay net/minecraft/client/gui/components/PlayerTabOverlay +CL: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState net/minecraft/client/gui/components/PlayerTabOverlay$HealthState +CL: net/minecraft/client/gui/components/Renderable net/minecraft/client/gui/components/Renderable +CL: net/minecraft/client/gui/components/SplashRenderer net/minecraft/client/gui/components/SplashRenderer +CL: net/minecraft/client/gui/components/StateSwitchingButton net/minecraft/client/gui/components/StateSwitchingButton +CL: net/minecraft/client/gui/components/StringWidget net/minecraft/client/gui/components/StringWidget +CL: net/minecraft/client/gui/components/SubtitleOverlay net/minecraft/client/gui/components/SubtitleOverlay +CL: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle net/minecraft/client/gui/components/SubtitleOverlay$Subtitle +CL: net/minecraft/client/gui/components/TabButton net/minecraft/client/gui/components/TabButton +CL: net/minecraft/client/gui/components/TabOrderedElement net/minecraft/client/gui/components/TabOrderedElement +CL: net/minecraft/client/gui/components/TextAndImageButton net/minecraft/client/gui/components/TextAndImageButton +CL: net/minecraft/client/gui/components/TextAndImageButton$Builder net/minecraft/client/gui/components/TextAndImageButton$Builder +CL: net/minecraft/client/gui/components/Tooltip net/minecraft/client/gui/components/Tooltip +CL: net/minecraft/client/gui/components/Whence net/minecraft/client/gui/components/Whence +CL: net/minecraft/client/gui/components/events/AbstractContainerEventHandler net/minecraft/client/gui/components/events/AbstractContainerEventHandler +CL: net/minecraft/client/gui/components/events/ContainerEventHandler net/minecraft/client/gui/components/events/ContainerEventHandler +CL: net/minecraft/client/gui/components/events/GuiEventListener net/minecraft/client/gui/components/events/GuiEventListener +CL: net/minecraft/client/gui/components/events/package-info net/minecraft/client/gui/components/events/package-info +CL: net/minecraft/client/gui/components/package-info net/minecraft/client/gui/components/package-info +CL: net/minecraft/client/gui/components/spectator/SpectatorGui net/minecraft/client/gui/components/spectator/SpectatorGui +CL: net/minecraft/client/gui/components/spectator/package-info net/minecraft/client/gui/components/spectator/package-info +CL: net/minecraft/client/gui/components/tabs/GridLayoutTab net/minecraft/client/gui/components/tabs/GridLayoutTab +CL: net/minecraft/client/gui/components/tabs/Tab net/minecraft/client/gui/components/tabs/Tab +CL: net/minecraft/client/gui/components/tabs/TabManager net/minecraft/client/gui/components/tabs/TabManager +CL: net/minecraft/client/gui/components/tabs/TabNavigationBar net/minecraft/client/gui/components/tabs/TabNavigationBar +CL: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder +CL: net/minecraft/client/gui/components/tabs/package-info net/minecraft/client/gui/components/tabs/package-info +CL: net/minecraft/client/gui/components/toasts/AdvancementToast net/minecraft/client/gui/components/toasts/AdvancementToast +CL: net/minecraft/client/gui/components/toasts/RecipeToast net/minecraft/client/gui/components/toasts/RecipeToast +CL: net/minecraft/client/gui/components/toasts/SystemToast net/minecraft/client/gui/components/toasts/SystemToast +CL: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds +CL: net/minecraft/client/gui/components/toasts/Toast net/minecraft/client/gui/components/toasts/Toast +CL: net/minecraft/client/gui/components/toasts/Toast$Visibility net/minecraft/client/gui/components/toasts/Toast$Visibility +CL: net/minecraft/client/gui/components/toasts/ToastComponent net/minecraft/client/gui/components/toasts/ToastComponent +CL: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance +CL: net/minecraft/client/gui/components/toasts/TutorialToast net/minecraft/client/gui/components/toasts/TutorialToast +CL: net/minecraft/client/gui/components/toasts/TutorialToast$Icons net/minecraft/client/gui/components/toasts/TutorialToast$Icons +CL: net/minecraft/client/gui/components/toasts/package-info net/minecraft/client/gui/components/toasts/package-info +CL: net/minecraft/client/gui/font/AllMissingGlyphProvider net/minecraft/client/gui/font/AllMissingGlyphProvider +CL: net/minecraft/client/gui/font/CodepointMap net/minecraft/client/gui/font/CodepointMap +CL: net/minecraft/client/gui/font/CodepointMap$Output net/minecraft/client/gui/font/CodepointMap$Output +CL: net/minecraft/client/gui/font/FontManager net/minecraft/client/gui/font/FontManager +CL: net/minecraft/client/gui/font/FontManager$BuilderId net/minecraft/client/gui/font/FontManager$BuilderId +CL: net/minecraft/client/gui/font/FontManager$BuilderResult net/minecraft/client/gui/font/FontManager$BuilderResult +CL: net/minecraft/client/gui/font/FontManager$FontDefinitionFile net/minecraft/client/gui/font/FontManager$FontDefinitionFile +CL: net/minecraft/client/gui/font/FontManager$Preparation net/minecraft/client/gui/font/FontManager$Preparation +CL: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle +CL: net/minecraft/client/gui/font/FontSet net/minecraft/client/gui/font/FontSet +CL: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter net/minecraft/client/gui/font/FontSet$GlyphInfoFilter +CL: net/minecraft/client/gui/font/FontTexture net/minecraft/client/gui/font/FontTexture +CL: net/minecraft/client/gui/font/FontTexture$Node net/minecraft/client/gui/font/FontTexture$Node +CL: net/minecraft/client/gui/font/GlyphRenderTypes net/minecraft/client/gui/font/GlyphRenderTypes +CL: net/minecraft/client/gui/font/GlyphRenderTypes$1 net/minecraft/client/gui/font/GlyphRenderTypes$1 +CL: net/minecraft/client/gui/font/TextFieldHelper net/minecraft/client/gui/font/TextFieldHelper +CL: net/minecraft/client/gui/font/TextFieldHelper$1 net/minecraft/client/gui/font/TextFieldHelper$1 +CL: net/minecraft/client/gui/font/TextFieldHelper$CursorStep net/minecraft/client/gui/font/TextFieldHelper$CursorStep +CL: net/minecraft/client/gui/font/glyphs/BakedGlyph net/minecraft/client/gui/font/glyphs/BakedGlyph +CL: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect +CL: net/minecraft/client/gui/font/glyphs/EmptyGlyph net/minecraft/client/gui/font/glyphs/EmptyGlyph +CL: net/minecraft/client/gui/font/glyphs/SpecialGlyphs net/minecraft/client/gui/font/glyphs/SpecialGlyphs +CL: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1 net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1 +CL: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider +CL: net/minecraft/client/gui/font/glyphs/package-info net/minecraft/client/gui/font/glyphs/package-info +CL: net/minecraft/client/gui/font/package-info net/minecraft/client/gui/font/package-info +CL: net/minecraft/client/gui/font/providers/BitmapProvider net/minecraft/client/gui/font/providers/BitmapProvider +CL: net/minecraft/client/gui/font/providers/BitmapProvider$Definition net/minecraft/client/gui/font/providers/BitmapProvider$Definition +CL: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph net/minecraft/client/gui/font/providers/BitmapProvider$Glyph +CL: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1 net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1 +CL: net/minecraft/client/gui/font/providers/GlyphProviderDefinition net/minecraft/client/gui/font/providers/GlyphProviderDefinition +CL: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader +CL: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference +CL: net/minecraft/client/gui/font/providers/GlyphProviderType net/minecraft/client/gui/font/providers/GlyphProviderType +CL: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition net/minecraft/client/gui/font/providers/ProviderReferenceDefinition +CL: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition +CL: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift +CL: net/minecraft/client/gui/font/providers/UnihexProvider net/minecraft/client/gui/font/providers/UnihexProvider +CL: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Definition net/minecraft/client/gui/font/providers/UnihexProvider$Definition +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph net/minecraft/client/gui/font/providers/UnihexProvider$Glyph +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1 net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1 +CL: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents net/minecraft/client/gui/font/providers/UnihexProvider$IntContents +CL: net/minecraft/client/gui/font/providers/UnihexProvider$LineData net/minecraft/client/gui/font/providers/UnihexProvider$LineData +CL: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange +CL: net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput +CL: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents +CL: net/minecraft/client/gui/font/providers/package-info net/minecraft/client/gui/font/providers/package-info +CL: net/minecraft/client/gui/layouts/AbstractLayout net/minecraft/client/gui/layouts/AbstractLayout +CL: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper +CL: net/minecraft/client/gui/layouts/FrameLayout net/minecraft/client/gui/layouts/FrameLayout +CL: net/minecraft/client/gui/layouts/FrameLayout$ChildContainer net/minecraft/client/gui/layouts/FrameLayout$ChildContainer +CL: net/minecraft/client/gui/layouts/GridLayout net/minecraft/client/gui/layouts/GridLayout +CL: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant net/minecraft/client/gui/layouts/GridLayout$CellInhabitant +CL: net/minecraft/client/gui/layouts/GridLayout$RowHelper net/minecraft/client/gui/layouts/GridLayout$RowHelper +CL: net/minecraft/client/gui/layouts/HeaderAndFooterLayout net/minecraft/client/gui/layouts/HeaderAndFooterLayout +CL: net/minecraft/client/gui/layouts/Layout net/minecraft/client/gui/layouts/Layout +CL: net/minecraft/client/gui/layouts/LayoutElement net/minecraft/client/gui/layouts/LayoutElement +CL: net/minecraft/client/gui/layouts/LayoutSettings net/minecraft/client/gui/layouts/LayoutSettings +CL: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl +CL: net/minecraft/client/gui/layouts/LinearLayout net/minecraft/client/gui/layouts/LinearLayout +CL: net/minecraft/client/gui/layouts/LinearLayout$1 net/minecraft/client/gui/layouts/LinearLayout$1 +CL: net/minecraft/client/gui/layouts/LinearLayout$ChildContainer net/minecraft/client/gui/layouts/LinearLayout$ChildContainer +CL: net/minecraft/client/gui/layouts/LinearLayout$Orientation net/minecraft/client/gui/layouts/LinearLayout$Orientation +CL: net/minecraft/client/gui/layouts/SpacerElement net/minecraft/client/gui/layouts/SpacerElement +CL: net/minecraft/client/gui/layouts/package-info net/minecraft/client/gui/layouts/package-info +CL: net/minecraft/client/gui/narration/NarratableEntry net/minecraft/client/gui/narration/NarratableEntry +CL: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority +CL: net/minecraft/client/gui/narration/NarratedElementType net/minecraft/client/gui/narration/NarratedElementType +CL: net/minecraft/client/gui/narration/NarrationElementOutput net/minecraft/client/gui/narration/NarrationElementOutput +CL: net/minecraft/client/gui/narration/NarrationSupplier net/minecraft/client/gui/narration/NarrationSupplier +CL: net/minecraft/client/gui/narration/NarrationThunk net/minecraft/client/gui/narration/NarrationThunk +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector net/minecraft/client/gui/narration/ScreenNarrationCollector +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$1 net/minecraft/client/gui/narration/ScreenNarrationCollector$1 +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output net/minecraft/client/gui/narration/ScreenNarrationCollector$Output +CL: net/minecraft/client/gui/narration/package-info net/minecraft/client/gui/narration/package-info +CL: net/minecraft/client/gui/navigation/CommonInputs net/minecraft/client/gui/navigation/CommonInputs +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent net/minecraft/client/gui/navigation/FocusNavigationEvent +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation +CL: net/minecraft/client/gui/navigation/ScreenAxis net/minecraft/client/gui/navigation/ScreenAxis +CL: net/minecraft/client/gui/navigation/ScreenAxis$1 net/minecraft/client/gui/navigation/ScreenAxis$1 +CL: net/minecraft/client/gui/navigation/ScreenDirection net/minecraft/client/gui/navigation/ScreenDirection +CL: net/minecraft/client/gui/navigation/ScreenDirection$1 net/minecraft/client/gui/navigation/ScreenDirection$1 +CL: net/minecraft/client/gui/navigation/ScreenPosition net/minecraft/client/gui/navigation/ScreenPosition +CL: net/minecraft/client/gui/navigation/ScreenPosition$1 net/minecraft/client/gui/navigation/ScreenPosition$1 +CL: net/minecraft/client/gui/navigation/ScreenRectangle net/minecraft/client/gui/navigation/ScreenRectangle +CL: net/minecraft/client/gui/navigation/ScreenRectangle$1 net/minecraft/client/gui/navigation/ScreenRectangle$1 +CL: net/minecraft/client/gui/navigation/package-info net/minecraft/client/gui/navigation/package-info +CL: net/minecraft/client/gui/package-info net/minecraft/client/gui/package-info +CL: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen net/minecraft/client/gui/screens/AccessibilityOnboardingScreen +CL: net/minecraft/client/gui/screens/AccessibilityOptionsScreen net/minecraft/client/gui/screens/AccessibilityOptionsScreen +CL: net/minecraft/client/gui/screens/AlertScreen net/minecraft/client/gui/screens/AlertScreen +CL: net/minecraft/client/gui/screens/BackupConfirmScreen net/minecraft/client/gui/screens/BackupConfirmScreen +CL: net/minecraft/client/gui/screens/BackupConfirmScreen$Listener net/minecraft/client/gui/screens/BackupConfirmScreen$Listener +CL: net/minecraft/client/gui/screens/BanNoticeScreen net/minecraft/client/gui/screens/BanNoticeScreen +CL: net/minecraft/client/gui/screens/ChatOptionsScreen net/minecraft/client/gui/screens/ChatOptionsScreen +CL: net/minecraft/client/gui/screens/ChatScreen net/minecraft/client/gui/screens/ChatScreen +CL: net/minecraft/client/gui/screens/ChatScreen$1 net/minecraft/client/gui/screens/ChatScreen$1 +CL: net/minecraft/client/gui/screens/ConfirmLinkScreen net/minecraft/client/gui/screens/ConfirmLinkScreen +CL: net/minecraft/client/gui/screens/ConfirmScreen net/minecraft/client/gui/screens/ConfirmScreen +CL: net/minecraft/client/gui/screens/ConnectScreen net/minecraft/client/gui/screens/ConnectScreen +CL: net/minecraft/client/gui/screens/ConnectScreen$1 net/minecraft/client/gui/screens/ConnectScreen$1 +CL: net/minecraft/client/gui/screens/CreateBuffetWorldScreen net/minecraft/client/gui/screens/CreateBuffetWorldScreen +CL: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList +CL: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry +CL: net/minecraft/client/gui/screens/CreateFlatWorldScreen net/minecraft/client/gui/screens/CreateFlatWorldScreen +CL: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList +CL: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry +CL: net/minecraft/client/gui/screens/CreditsAndAttributionScreen net/minecraft/client/gui/screens/CreditsAndAttributionScreen +CL: net/minecraft/client/gui/screens/DatapackLoadFailureScreen net/minecraft/client/gui/screens/DatapackLoadFailureScreen +CL: net/minecraft/client/gui/screens/DeathScreen net/minecraft/client/gui/screens/DeathScreen +CL: net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen +CL: net/minecraft/client/gui/screens/DemoIntroScreen net/minecraft/client/gui/screens/DemoIntroScreen +CL: net/minecraft/client/gui/screens/DirectJoinServerScreen net/minecraft/client/gui/screens/DirectJoinServerScreen +CL: net/minecraft/client/gui/screens/DisconnectedScreen net/minecraft/client/gui/screens/DisconnectedScreen +CL: net/minecraft/client/gui/screens/EditServerScreen net/minecraft/client/gui/screens/EditServerScreen +CL: net/minecraft/client/gui/screens/ErrorScreen net/minecraft/client/gui/screens/ErrorScreen +CL: net/minecraft/client/gui/screens/FaviconTexture net/minecraft/client/gui/screens/FaviconTexture +CL: net/minecraft/client/gui/screens/GenericDirtMessageScreen net/minecraft/client/gui/screens/GenericDirtMessageScreen +CL: net/minecraft/client/gui/screens/GenericWaitingScreen net/minecraft/client/gui/screens/GenericWaitingScreen +CL: net/minecraft/client/gui/screens/InBedChatScreen net/minecraft/client/gui/screens/InBedChatScreen +CL: net/minecraft/client/gui/screens/LanguageSelectScreen net/minecraft/client/gui/screens/LanguageSelectScreen +CL: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList +CL: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry +CL: net/minecraft/client/gui/screens/LevelLoadingScreen net/minecraft/client/gui/screens/LevelLoadingScreen +CL: net/minecraft/client/gui/screens/LoadingDotsText net/minecraft/client/gui/screens/LoadingDotsText +CL: net/minecraft/client/gui/screens/LoadingOverlay net/minecraft/client/gui/screens/LoadingOverlay +CL: net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture +CL: net/minecraft/client/gui/screens/MenuScreens net/minecraft/client/gui/screens/MenuScreens +CL: net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor +CL: net/minecraft/client/gui/screens/MouseSettingsScreen net/minecraft/client/gui/screens/MouseSettingsScreen +CL: net/minecraft/client/gui/screens/OnlineOptionsScreen net/minecraft/client/gui/screens/OnlineOptionsScreen +CL: net/minecraft/client/gui/screens/OptionsScreen net/minecraft/client/gui/screens/OptionsScreen +CL: net/minecraft/client/gui/screens/OptionsSubScreen net/minecraft/client/gui/screens/OptionsSubScreen +CL: net/minecraft/client/gui/screens/OutOfMemoryScreen net/minecraft/client/gui/screens/OutOfMemoryScreen +CL: net/minecraft/client/gui/screens/Overlay net/minecraft/client/gui/screens/Overlay +CL: net/minecraft/client/gui/screens/PauseScreen net/minecraft/client/gui/screens/PauseScreen +CL: net/minecraft/client/gui/screens/PopupScreen net/minecraft/client/gui/screens/PopupScreen +CL: net/minecraft/client/gui/screens/PopupScreen$ButtonOption net/minecraft/client/gui/screens/PopupScreen$ButtonOption +CL: net/minecraft/client/gui/screens/PresetFlatWorldScreen net/minecraft/client/gui/screens/PresetFlatWorldScreen +CL: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList +CL: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry +CL: net/minecraft/client/gui/screens/ProgressScreen net/minecraft/client/gui/screens/ProgressScreen +CL: net/minecraft/client/gui/screens/ReceivingLevelScreen net/minecraft/client/gui/screens/ReceivingLevelScreen +CL: net/minecraft/client/gui/screens/Screen net/minecraft/client/gui/screens/Screen +CL: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering +CL: net/minecraft/client/gui/screens/Screen$NarratableSearchResult net/minecraft/client/gui/screens/Screen$NarratableSearchResult +CL: net/minecraft/client/gui/screens/ShareToLanScreen net/minecraft/client/gui/screens/ShareToLanScreen +CL: net/minecraft/client/gui/screens/SimpleOptionsSubScreen net/minecraft/client/gui/screens/SimpleOptionsSubScreen +CL: net/minecraft/client/gui/screens/SkinCustomizationScreen net/minecraft/client/gui/screens/SkinCustomizationScreen +CL: net/minecraft/client/gui/screens/SoundOptionsScreen net/minecraft/client/gui/screens/SoundOptionsScreen +CL: net/minecraft/client/gui/screens/SymlinkWarningScreen net/minecraft/client/gui/screens/SymlinkWarningScreen +CL: net/minecraft/client/gui/screens/TitleScreen net/minecraft/client/gui/screens/TitleScreen +CL: net/minecraft/client/gui/screens/TitleScreen$WarningLabel net/minecraft/client/gui/screens/TitleScreen$WarningLabel +CL: net/minecraft/client/gui/screens/VideoSettingsScreen net/minecraft/client/gui/screens/VideoSettingsScreen +CL: net/minecraft/client/gui/screens/WinScreen net/minecraft/client/gui/screens/WinScreen +CL: net/minecraft/client/gui/screens/WinScreen$CreditsReader net/minecraft/client/gui/screens/WinScreen$CreditsReader +CL: net/minecraft/client/gui/screens/achievement/StatsScreen net/minecraft/client/gui/screens/achievement/StatsScreen +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow +CL: net/minecraft/client/gui/screens/achievement/StatsUpdateListener net/minecraft/client/gui/screens/achievement/StatsUpdateListener +CL: net/minecraft/client/gui/screens/achievement/package-info net/minecraft/client/gui/screens/achievement/package-info +CL: net/minecraft/client/gui/screens/advancements/AdvancementTab net/minecraft/client/gui/screens/advancements/AdvancementTab +CL: net/minecraft/client/gui/screens/advancements/AdvancementTabType net/minecraft/client/gui/screens/advancements/AdvancementTabType +CL: net/minecraft/client/gui/screens/advancements/AdvancementTabType$1 net/minecraft/client/gui/screens/advancements/AdvancementTabType$1 +CL: net/minecraft/client/gui/screens/advancements/AdvancementWidget net/minecraft/client/gui/screens/advancements/AdvancementWidget +CL: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType net/minecraft/client/gui/screens/advancements/AdvancementWidgetType +CL: net/minecraft/client/gui/screens/advancements/AdvancementsScreen net/minecraft/client/gui/screens/advancements/AdvancementsScreen +CL: net/minecraft/client/gui/screens/advancements/package-info net/minecraft/client/gui/screens/advancements/package-info +CL: net/minecraft/client/gui/screens/controls/ControlsScreen net/minecraft/client/gui/screens/controls/ControlsScreen +CL: net/minecraft/client/gui/screens/controls/KeyBindsList net/minecraft/client/gui/screens/controls/KeyBindsList +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1 net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1 +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$Entry net/minecraft/client/gui/screens/controls/KeyBindsList$Entry +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry +CL: net/minecraft/client/gui/screens/controls/KeyBindsScreen net/minecraft/client/gui/screens/controls/KeyBindsScreen +CL: net/minecraft/client/gui/screens/controls/package-info net/minecraft/client/gui/screens/controls/package-info +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1 net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1 +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot +CL: net/minecraft/client/gui/screens/debug/package-info net/minecraft/client/gui/screens/debug/package-info +CL: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen net/minecraft/client/gui/screens/inventory/AbstractContainerScreen +CL: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen +CL: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen +CL: net/minecraft/client/gui/screens/inventory/AnvilScreen net/minecraft/client/gui/screens/inventory/AnvilScreen +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen net/minecraft/client/gui/screens/inventory/BeaconScreen +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$1 net/minecraft/client/gui/screens/inventory/BeaconScreen$1 +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton +CL: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen net/minecraft/client/gui/screens/inventory/BookEditScreen +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen net/minecraft/client/gui/screens/inventory/BookViewScreen +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$1 net/minecraft/client/gui/screens/inventory/BookViewScreen$1 +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess +CL: net/minecraft/client/gui/screens/inventory/BrewingStandScreen net/minecraft/client/gui/screens/inventory/BrewingStandScreen +CL: net/minecraft/client/gui/screens/inventory/CartographyTableScreen net/minecraft/client/gui/screens/inventory/CartographyTableScreen +CL: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/ContainerScreen net/minecraft/client/gui/screens/inventory/ContainerScreen +CL: net/minecraft/client/gui/screens/inventory/CraftingScreen net/minecraft/client/gui/screens/inventory/CraftingScreen +CL: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener net/minecraft/client/gui/screens/inventory/CreativeInventoryListener +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper +CL: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground net/minecraft/client/gui/screens/inventory/CyclingSlotBackground +CL: net/minecraft/client/gui/screens/inventory/DispenserScreen net/minecraft/client/gui/screens/inventory/DispenserScreen +CL: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen +CL: net/minecraft/client/gui/screens/inventory/EnchantmentNames net/minecraft/client/gui/screens/inventory/EnchantmentNames +CL: net/minecraft/client/gui/screens/inventory/EnchantmentScreen net/minecraft/client/gui/screens/inventory/EnchantmentScreen +CL: net/minecraft/client/gui/screens/inventory/FurnaceScreen net/minecraft/client/gui/screens/inventory/FurnaceScreen +CL: net/minecraft/client/gui/screens/inventory/GrindstoneScreen net/minecraft/client/gui/screens/inventory/GrindstoneScreen +CL: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen net/minecraft/client/gui/screens/inventory/HangingSignEditScreen +CL: net/minecraft/client/gui/screens/inventory/HopperScreen net/minecraft/client/gui/screens/inventory/HopperScreen +CL: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen net/minecraft/client/gui/screens/inventory/HorseInventoryScreen +CL: net/minecraft/client/gui/screens/inventory/InventoryScreen net/minecraft/client/gui/screens/inventory/InventoryScreen +CL: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen net/minecraft/client/gui/screens/inventory/ItemCombinerScreen +CL: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/LecternScreen net/minecraft/client/gui/screens/inventory/LecternScreen +CL: net/minecraft/client/gui/screens/inventory/LecternScreen$1 net/minecraft/client/gui/screens/inventory/LecternScreen$1 +CL: net/minecraft/client/gui/screens/inventory/LoomScreen net/minecraft/client/gui/screens/inventory/LoomScreen +CL: net/minecraft/client/gui/screens/inventory/MenuAccess net/minecraft/client/gui/screens/inventory/MenuAccess +CL: net/minecraft/client/gui/screens/inventory/MerchantScreen net/minecraft/client/gui/screens/inventory/MerchantScreen +CL: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton +CL: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/PageButton net/minecraft/client/gui/screens/inventory/PageButton +CL: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen +CL: net/minecraft/client/gui/screens/inventory/SignEditScreen net/minecraft/client/gui/screens/inventory/SignEditScreen +CL: net/minecraft/client/gui/screens/inventory/SmithingScreen net/minecraft/client/gui/screens/inventory/SmithingScreen +CL: net/minecraft/client/gui/screens/inventory/SmokerScreen net/minecraft/client/gui/screens/inventory/SmokerScreen +CL: net/minecraft/client/gui/screens/inventory/StonecutterScreen net/minecraft/client/gui/screens/inventory/StonecutterScreen +CL: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2 net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2 +CL: net/minecraft/client/gui/screens/inventory/package-info net/minecraft/client/gui/screens/inventory/package-info +CL: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil +CL: net/minecraft/client/gui/screens/inventory/tooltip/package-info net/minecraft/client/gui/screens/inventory/tooltip/package-info +CL: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen +CL: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen +CL: net/minecraft/client/gui/screens/multiplayer/SafetyScreen net/minecraft/client/gui/screens/multiplayer/SafetyScreen +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList net/minecraft/client/gui/screens/multiplayer/ServerSelectionList +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry +CL: net/minecraft/client/gui/screens/multiplayer/WarningScreen net/minecraft/client/gui/screens/multiplayer/WarningScreen +CL: net/minecraft/client/gui/screens/multiplayer/package-info net/minecraft/client/gui/screens/multiplayer/package-info +CL: net/minecraft/client/gui/screens/package-info net/minecraft/client/gui/screens/package-info +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel net/minecraft/client/gui/screens/packs/PackSelectionModel +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry +CL: net/minecraft/client/gui/screens/packs/PackSelectionScreen net/minecraft/client/gui/screens/packs/PackSelectionScreen +CL: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher +CL: net/minecraft/client/gui/screens/packs/TransferableSelectionList net/minecraft/client/gui/screens/packs/TransferableSelectionList +CL: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry +CL: net/minecraft/client/gui/screens/packs/package-info net/minecraft/client/gui/screens/packs/package-info +CL: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/GhostRecipe net/minecraft/client/gui/screens/recipebook/GhostRecipe +CL: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton +CL: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent net/minecraft/client/gui/screens/recipebook/RecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/RecipeBookPage net/minecraft/client/gui/screens/recipebook/RecipeBookPage +CL: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton +CL: net/minecraft/client/gui/screens/recipebook/RecipeButton net/minecraft/client/gui/screens/recipebook/RecipeButton +CL: net/minecraft/client/gui/screens/recipebook/RecipeCollection net/minecraft/client/gui/screens/recipebook/RecipeCollection +CL: net/minecraft/client/gui/screens/recipebook/RecipeShownListener net/minecraft/client/gui/screens/recipebook/RecipeShownListener +CL: net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener +CL: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/package-info net/minecraft/client/gui/screens/recipebook/package-info +CL: net/minecraft/client/gui/screens/reporting/ChatReportScreen net/minecraft/client/gui/screens/reporting/ChatReportScreen +CL: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen net/minecraft/client/gui/screens/reporting/ChatSelectionScreen +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry +CL: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen +CL: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList +CL: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry +CL: net/minecraft/client/gui/screens/reporting/package-info net/minecraft/client/gui/screens/reporting/package-info +CL: net/minecraft/client/gui/screens/social/PlayerEntry net/minecraft/client/gui/screens/social/PlayerEntry +CL: net/minecraft/client/gui/screens/social/PlayerEntry$1 net/minecraft/client/gui/screens/social/PlayerEntry$1 +CL: net/minecraft/client/gui/screens/social/PlayerEntry$2 net/minecraft/client/gui/screens/social/PlayerEntry$2 +CL: net/minecraft/client/gui/screens/social/PlayerEntry$3 net/minecraft/client/gui/screens/social/PlayerEntry$3 +CL: net/minecraft/client/gui/screens/social/PlayerSocialManager net/minecraft/client/gui/screens/social/PlayerSocialManager +CL: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen net/minecraft/client/gui/screens/social/SocialInteractionsScreen +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1 net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1 +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2 net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2 +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page +CL: net/minecraft/client/gui/screens/social/package-info net/minecraft/client/gui/screens/social/package-info +CL: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget +CL: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content +CL: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder +CL: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen +CL: net/minecraft/client/gui/screens/telemetry/package-info net/minecraft/client/gui/screens/telemetry/package-info +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen net/minecraft/client/gui/screens/worldselection/CreateWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1 net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1 +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2 net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2 +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1 net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1 +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1 net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1 +CL: net/minecraft/client/gui/screens/worldselection/EditWorldScreen net/minecraft/client/gui/screens/worldselection/EditWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen net/minecraft/client/gui/screens/worldselection/ExperimentsScreen +CL: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/PresetEditor net/minecraft/client/gui/screens/worldselection/PresetEditor +CL: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen net/minecraft/client/gui/screens/worldselection/SelectWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid net/minecraft/client/gui/screens/worldselection/SwitchGrid +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationContext net/minecraft/client/gui/screens/worldselection/WorldCreationContext +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState net/minecraft/client/gui/screens/worldselection/WorldCreationUiState +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry +CL: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows net/minecraft/client/gui/screens/worldselection/WorldOpenFlows +CL: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList net/minecraft/client/gui/screens/worldselection/WorldSelectionList +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry +CL: net/minecraft/client/gui/screens/worldselection/package-info net/minecraft/client/gui/screens/worldselection/package-info +CL: net/minecraft/client/gui/spectator/PlayerMenuItem net/minecraft/client/gui/spectator/PlayerMenuItem +CL: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory net/minecraft/client/gui/spectator/RootSpectatorMenuCategory +CL: net/minecraft/client/gui/spectator/SpectatorMenu net/minecraft/client/gui/spectator/SpectatorMenu +CL: net/minecraft/client/gui/spectator/SpectatorMenu$1 net/minecraft/client/gui/spectator/SpectatorMenu$1 +CL: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem +CL: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem +CL: net/minecraft/client/gui/spectator/SpectatorMenuCategory net/minecraft/client/gui/spectator/SpectatorMenuCategory +CL: net/minecraft/client/gui/spectator/SpectatorMenuItem net/minecraft/client/gui/spectator/SpectatorMenuItem +CL: net/minecraft/client/gui/spectator/SpectatorMenuListener net/minecraft/client/gui/spectator/SpectatorMenuListener +CL: net/minecraft/client/gui/spectator/categories/SpectatorPage net/minecraft/client/gui/spectator/categories/SpectatorPage +CL: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory +CL: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory +CL: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem +CL: net/minecraft/client/gui/spectator/categories/package-info net/minecraft/client/gui/spectator/categories/package-info +CL: net/minecraft/client/gui/spectator/package-info net/minecraft/client/gui/spectator/package-info +CL: net/minecraft/client/main/GameConfig net/minecraft/client/main/GameConfig +CL: net/minecraft/client/main/GameConfig$FolderData net/minecraft/client/main/GameConfig$FolderData +CL: net/minecraft/client/main/GameConfig$GameData net/minecraft/client/main/GameConfig$GameData +CL: net/minecraft/client/main/GameConfig$QuickPlayData net/minecraft/client/main/GameConfig$QuickPlayData +CL: net/minecraft/client/main/GameConfig$UserData net/minecraft/client/main/GameConfig$UserData +CL: net/minecraft/client/main/Main net/minecraft/client/main/Main +CL: net/minecraft/client/main/Main$1 net/minecraft/client/main/Main$1 +CL: net/minecraft/client/main/Main$2 net/minecraft/client/main/Main$2 +CL: net/minecraft/client/main/Main$3 net/minecraft/client/main/Main$3 +CL: net/minecraft/client/main/SilentInitException net/minecraft/client/main/SilentInitException +CL: net/minecraft/client/main/package-info net/minecraft/client/main/package-info +CL: net/minecraft/client/model/AbstractZombieModel net/minecraft/client/model/AbstractZombieModel +CL: net/minecraft/client/model/AgeableHierarchicalModel net/minecraft/client/model/AgeableHierarchicalModel +CL: net/minecraft/client/model/AgeableListModel net/minecraft/client/model/AgeableListModel +CL: net/minecraft/client/model/AllayModel net/minecraft/client/model/AllayModel +CL: net/minecraft/client/model/AnimationUtils net/minecraft/client/model/AnimationUtils +CL: net/minecraft/client/model/ArmedModel net/minecraft/client/model/ArmedModel +CL: net/minecraft/client/model/ArmorStandArmorModel net/minecraft/client/model/ArmorStandArmorModel +CL: net/minecraft/client/model/ArmorStandModel net/minecraft/client/model/ArmorStandModel +CL: net/minecraft/client/model/AxolotlModel net/minecraft/client/model/AxolotlModel +CL: net/minecraft/client/model/BatModel net/minecraft/client/model/BatModel +CL: net/minecraft/client/model/BeeModel net/minecraft/client/model/BeeModel +CL: net/minecraft/client/model/BlazeModel net/minecraft/client/model/BlazeModel +CL: net/minecraft/client/model/BoatModel net/minecraft/client/model/BoatModel +CL: net/minecraft/client/model/BookModel net/minecraft/client/model/BookModel +CL: net/minecraft/client/model/CamelModel net/minecraft/client/model/CamelModel +CL: net/minecraft/client/model/CatModel net/minecraft/client/model/CatModel +CL: net/minecraft/client/model/ChestBoatModel net/minecraft/client/model/ChestBoatModel +CL: net/minecraft/client/model/ChestRaftModel net/minecraft/client/model/ChestRaftModel +CL: net/minecraft/client/model/ChestedHorseModel net/minecraft/client/model/ChestedHorseModel +CL: net/minecraft/client/model/ChickenModel net/minecraft/client/model/ChickenModel +CL: net/minecraft/client/model/CodModel net/minecraft/client/model/CodModel +CL: net/minecraft/client/model/ColorableAgeableListModel net/minecraft/client/model/ColorableAgeableListModel +CL: net/minecraft/client/model/ColorableHierarchicalModel net/minecraft/client/model/ColorableHierarchicalModel +CL: net/minecraft/client/model/CowModel net/minecraft/client/model/CowModel +CL: net/minecraft/client/model/CreeperModel net/minecraft/client/model/CreeperModel +CL: net/minecraft/client/model/DolphinModel net/minecraft/client/model/DolphinModel +CL: net/minecraft/client/model/DrownedModel net/minecraft/client/model/DrownedModel +CL: net/minecraft/client/model/ElytraModel net/minecraft/client/model/ElytraModel +CL: net/minecraft/client/model/EndermanModel net/minecraft/client/model/EndermanModel +CL: net/minecraft/client/model/EndermiteModel net/minecraft/client/model/EndermiteModel +CL: net/minecraft/client/model/EntityModel net/minecraft/client/model/EntityModel +CL: net/minecraft/client/model/EvokerFangsModel net/minecraft/client/model/EvokerFangsModel +CL: net/minecraft/client/model/FoxModel net/minecraft/client/model/FoxModel +CL: net/minecraft/client/model/FrogModel net/minecraft/client/model/FrogModel +CL: net/minecraft/client/model/GhastModel net/minecraft/client/model/GhastModel +CL: net/minecraft/client/model/GiantZombieModel net/minecraft/client/model/GiantZombieModel +CL: net/minecraft/client/model/GoatModel net/minecraft/client/model/GoatModel +CL: net/minecraft/client/model/GuardianModel net/minecraft/client/model/GuardianModel +CL: net/minecraft/client/model/HeadedModel net/minecraft/client/model/HeadedModel +CL: net/minecraft/client/model/HierarchicalModel net/minecraft/client/model/HierarchicalModel +CL: net/minecraft/client/model/HoglinModel net/minecraft/client/model/HoglinModel +CL: net/minecraft/client/model/HorseModel net/minecraft/client/model/HorseModel +CL: net/minecraft/client/model/HumanoidArmorModel net/minecraft/client/model/HumanoidArmorModel +CL: net/minecraft/client/model/HumanoidModel net/minecraft/client/model/HumanoidModel +CL: net/minecraft/client/model/HumanoidModel$1 net/minecraft/client/model/HumanoidModel$1 +CL: net/minecraft/client/model/HumanoidModel$ArmPose net/minecraft/client/model/HumanoidModel$ArmPose +CL: net/minecraft/client/model/IllagerModel net/minecraft/client/model/IllagerModel +CL: net/minecraft/client/model/IronGolemModel net/minecraft/client/model/IronGolemModel +CL: net/minecraft/client/model/LavaSlimeModel net/minecraft/client/model/LavaSlimeModel +CL: net/minecraft/client/model/LeashKnotModel net/minecraft/client/model/LeashKnotModel +CL: net/minecraft/client/model/ListModel net/minecraft/client/model/ListModel +CL: net/minecraft/client/model/LlamaModel net/minecraft/client/model/LlamaModel +CL: net/minecraft/client/model/LlamaSpitModel net/minecraft/client/model/LlamaSpitModel +CL: net/minecraft/client/model/MinecartModel net/minecraft/client/model/MinecartModel +CL: net/minecraft/client/model/Model net/minecraft/client/model/Model +CL: net/minecraft/client/model/ModelUtils net/minecraft/client/model/ModelUtils +CL: net/minecraft/client/model/OcelotModel net/minecraft/client/model/OcelotModel +CL: net/minecraft/client/model/PandaModel net/minecraft/client/model/PandaModel +CL: net/minecraft/client/model/ParrotModel net/minecraft/client/model/ParrotModel +CL: net/minecraft/client/model/ParrotModel$1 net/minecraft/client/model/ParrotModel$1 +CL: net/minecraft/client/model/ParrotModel$State net/minecraft/client/model/ParrotModel$State +CL: net/minecraft/client/model/PhantomModel net/minecraft/client/model/PhantomModel +CL: net/minecraft/client/model/PigModel net/minecraft/client/model/PigModel +CL: net/minecraft/client/model/PiglinHeadModel net/minecraft/client/model/PiglinHeadModel +CL: net/minecraft/client/model/PiglinModel net/minecraft/client/model/PiglinModel +CL: net/minecraft/client/model/PlayerModel net/minecraft/client/model/PlayerModel +CL: net/minecraft/client/model/PolarBearModel net/minecraft/client/model/PolarBearModel +CL: net/minecraft/client/model/PufferfishBigModel net/minecraft/client/model/PufferfishBigModel +CL: net/minecraft/client/model/PufferfishMidModel net/minecraft/client/model/PufferfishMidModel +CL: net/minecraft/client/model/PufferfishSmallModel net/minecraft/client/model/PufferfishSmallModel +CL: net/minecraft/client/model/QuadrupedModel net/minecraft/client/model/QuadrupedModel +CL: net/minecraft/client/model/RabbitModel net/minecraft/client/model/RabbitModel +CL: net/minecraft/client/model/RaftModel net/minecraft/client/model/RaftModel +CL: net/minecraft/client/model/RavagerModel net/minecraft/client/model/RavagerModel +CL: net/minecraft/client/model/SalmonModel net/minecraft/client/model/SalmonModel +CL: net/minecraft/client/model/SheepFurModel net/minecraft/client/model/SheepFurModel +CL: net/minecraft/client/model/SheepModel net/minecraft/client/model/SheepModel +CL: net/minecraft/client/model/ShieldModel net/minecraft/client/model/ShieldModel +CL: net/minecraft/client/model/ShulkerBulletModel net/minecraft/client/model/ShulkerBulletModel +CL: net/minecraft/client/model/ShulkerModel net/minecraft/client/model/ShulkerModel +CL: net/minecraft/client/model/SilverfishModel net/minecraft/client/model/SilverfishModel +CL: net/minecraft/client/model/SkeletonModel net/minecraft/client/model/SkeletonModel +CL: net/minecraft/client/model/SkullModel net/minecraft/client/model/SkullModel +CL: net/minecraft/client/model/SkullModelBase net/minecraft/client/model/SkullModelBase +CL: net/minecraft/client/model/SlimeModel net/minecraft/client/model/SlimeModel +CL: net/minecraft/client/model/SnifferModel net/minecraft/client/model/SnifferModel +CL: net/minecraft/client/model/SnowGolemModel net/minecraft/client/model/SnowGolemModel +CL: net/minecraft/client/model/SpiderModel net/minecraft/client/model/SpiderModel +CL: net/minecraft/client/model/SquidModel net/minecraft/client/model/SquidModel +CL: net/minecraft/client/model/StriderModel net/minecraft/client/model/StriderModel +CL: net/minecraft/client/model/TadpoleModel net/minecraft/client/model/TadpoleModel +CL: net/minecraft/client/model/TridentModel net/minecraft/client/model/TridentModel +CL: net/minecraft/client/model/TropicalFishModelA net/minecraft/client/model/TropicalFishModelA +CL: net/minecraft/client/model/TropicalFishModelB net/minecraft/client/model/TropicalFishModelB +CL: net/minecraft/client/model/TurtleModel net/minecraft/client/model/TurtleModel +CL: net/minecraft/client/model/VexModel net/minecraft/client/model/VexModel +CL: net/minecraft/client/model/VillagerHeadModel net/minecraft/client/model/VillagerHeadModel +CL: net/minecraft/client/model/VillagerModel net/minecraft/client/model/VillagerModel +CL: net/minecraft/client/model/WardenModel net/minecraft/client/model/WardenModel +CL: net/minecraft/client/model/WaterPatchModel net/minecraft/client/model/WaterPatchModel +CL: net/minecraft/client/model/WitchModel net/minecraft/client/model/WitchModel +CL: net/minecraft/client/model/WitherBossModel net/minecraft/client/model/WitherBossModel +CL: net/minecraft/client/model/WolfModel net/minecraft/client/model/WolfModel +CL: net/minecraft/client/model/ZombieModel net/minecraft/client/model/ZombieModel +CL: net/minecraft/client/model/ZombieVillagerModel net/minecraft/client/model/ZombieVillagerModel +CL: net/minecraft/client/model/dragon/DragonHeadModel net/minecraft/client/model/dragon/DragonHeadModel +CL: net/minecraft/client/model/dragon/package-info net/minecraft/client/model/dragon/package-info +CL: net/minecraft/client/model/geom/EntityModelSet net/minecraft/client/model/geom/EntityModelSet +CL: net/minecraft/client/model/geom/LayerDefinitions net/minecraft/client/model/geom/LayerDefinitions +CL: net/minecraft/client/model/geom/ModelLayerLocation net/minecraft/client/model/geom/ModelLayerLocation +CL: net/minecraft/client/model/geom/ModelLayers net/minecraft/client/model/geom/ModelLayers +CL: net/minecraft/client/model/geom/ModelPart net/minecraft/client/model/geom/ModelPart +CL: net/minecraft/client/model/geom/ModelPart$Cube net/minecraft/client/model/geom/ModelPart$Cube +CL: net/minecraft/client/model/geom/ModelPart$Polygon net/minecraft/client/model/geom/ModelPart$Polygon +CL: net/minecraft/client/model/geom/ModelPart$Vertex net/minecraft/client/model/geom/ModelPart$Vertex +CL: net/minecraft/client/model/geom/ModelPart$Visitor net/minecraft/client/model/geom/ModelPart$Visitor +CL: net/minecraft/client/model/geom/PartNames net/minecraft/client/model/geom/PartNames +CL: net/minecraft/client/model/geom/PartPose net/minecraft/client/model/geom/PartPose +CL: net/minecraft/client/model/geom/builders/CubeDefinition net/minecraft/client/model/geom/builders/CubeDefinition +CL: net/minecraft/client/model/geom/builders/CubeDeformation net/minecraft/client/model/geom/builders/CubeDeformation +CL: net/minecraft/client/model/geom/builders/CubeListBuilder net/minecraft/client/model/geom/builders/CubeListBuilder +CL: net/minecraft/client/model/geom/builders/LayerDefinition net/minecraft/client/model/geom/builders/LayerDefinition +CL: net/minecraft/client/model/geom/builders/MaterialDefinition net/minecraft/client/model/geom/builders/MaterialDefinition +CL: net/minecraft/client/model/geom/builders/MeshDefinition net/minecraft/client/model/geom/builders/MeshDefinition +CL: net/minecraft/client/model/geom/builders/PartDefinition net/minecraft/client/model/geom/builders/PartDefinition +CL: net/minecraft/client/model/geom/builders/UVPair net/minecraft/client/model/geom/builders/UVPair +CL: net/minecraft/client/model/geom/builders/package-info net/minecraft/client/model/geom/builders/package-info +CL: net/minecraft/client/model/geom/package-info net/minecraft/client/model/geom/package-info +CL: net/minecraft/client/model/package-info net/minecraft/client/model/package-info +CL: net/minecraft/client/multiplayer/AccountProfileKeyPairManager net/minecraft/client/multiplayer/AccountProfileKeyPairManager +CL: net/minecraft/client/multiplayer/ClientAdvancements net/minecraft/client/multiplayer/ClientAdvancements +CL: net/minecraft/client/multiplayer/ClientAdvancements$Listener net/minecraft/client/multiplayer/ClientAdvancements$Listener +CL: net/minecraft/client/multiplayer/ClientChunkCache net/minecraft/client/multiplayer/ClientChunkCache +CL: net/minecraft/client/multiplayer/ClientChunkCache$Storage net/minecraft/client/multiplayer/ClientChunkCache$Storage +CL: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl +CL: net/minecraft/client/multiplayer/ClientLevel net/minecraft/client/multiplayer/ClientLevel +CL: net/minecraft/client/multiplayer/ClientLevel$1 net/minecraft/client/multiplayer/ClientLevel$1 +CL: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData net/minecraft/client/multiplayer/ClientLevel$ClientLevelData +CL: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks +CL: net/minecraft/client/multiplayer/ClientPacketListener net/minecraft/client/multiplayer/ClientPacketListener +CL: net/minecraft/client/multiplayer/ClientPacketListener$1 net/minecraft/client/multiplayer/ClientPacketListener$1 +CL: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket +CL: net/minecraft/client/multiplayer/ClientRegistryLayer net/minecraft/client/multiplayer/ClientRegistryLayer +CL: net/minecraft/client/multiplayer/ClientSuggestionProvider net/minecraft/client/multiplayer/ClientSuggestionProvider +CL: net/minecraft/client/multiplayer/ClientSuggestionProvider$1 net/minecraft/client/multiplayer/ClientSuggestionProvider$1 +CL: net/minecraft/client/multiplayer/MultiPlayerGameMode net/minecraft/client/multiplayer/MultiPlayerGameMode +CL: net/minecraft/client/multiplayer/PlayerInfo net/minecraft/client/multiplayer/PlayerInfo +CL: net/minecraft/client/multiplayer/ProfileKeyPairManager net/minecraft/client/multiplayer/ProfileKeyPairManager +CL: net/minecraft/client/multiplayer/ProfileKeyPairManager$1 net/minecraft/client/multiplayer/ProfileKeyPairManager$1 +CL: net/minecraft/client/multiplayer/ServerData net/minecraft/client/multiplayer/ServerData +CL: net/minecraft/client/multiplayer/ServerData$ServerPackStatus net/minecraft/client/multiplayer/ServerData$ServerPackStatus +CL: net/minecraft/client/multiplayer/ServerList net/minecraft/client/multiplayer/ServerList +CL: net/minecraft/client/multiplayer/ServerStatusPinger net/minecraft/client/multiplayer/ServerStatusPinger +CL: net/minecraft/client/multiplayer/ServerStatusPinger$1 net/minecraft/client/multiplayer/ServerStatusPinger$1 +CL: net/minecraft/client/multiplayer/ServerStatusPinger$2 net/minecraft/client/multiplayer/ServerStatusPinger$2 +CL: net/minecraft/client/multiplayer/ServerStatusPinger$2$1 net/minecraft/client/multiplayer/ServerStatusPinger$2$1 +CL: net/minecraft/client/multiplayer/chat/ChatListener net/minecraft/client/multiplayer/chat/ChatListener +CL: net/minecraft/client/multiplayer/chat/ChatListener$Message net/minecraft/client/multiplayer/chat/ChatListener$Message +CL: net/minecraft/client/multiplayer/chat/ChatLog net/minecraft/client/multiplayer/chat/ChatLog +CL: net/minecraft/client/multiplayer/chat/ChatTrustLevel net/minecraft/client/multiplayer/chat/ChatTrustLevel +CL: net/minecraft/client/multiplayer/chat/ChatTrustLevel$1 net/minecraft/client/multiplayer/chat/ChatTrustLevel$1 +CL: net/minecraft/client/multiplayer/chat/LoggedChatEvent net/minecraft/client/multiplayer/chat/LoggedChatEvent +CL: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type +CL: net/minecraft/client/multiplayer/chat/LoggedChatMessage net/minecraft/client/multiplayer/chat/LoggedChatMessage +CL: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player +CL: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System net/minecraft/client/multiplayer/chat/LoggedChatMessage$System +CL: net/minecraft/client/multiplayer/chat/package-info net/minecraft/client/multiplayer/chat/package-info +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender net/minecraft/client/multiplayer/chat/report/AbuseReportSender +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1 net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1 +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services +CL: net/minecraft/client/multiplayer/chat/report/BanReason net/minecraft/client/multiplayer/chat/report/BanReason +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder net/minecraft/client/multiplayer/chat/report/ChatReportBuilder +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result +CL: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder +CL: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector +CL: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment net/minecraft/client/multiplayer/chat/report/ReportEnvironment +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty +CL: net/minecraft/client/multiplayer/chat/report/ReportReason net/minecraft/client/multiplayer/chat/report/ReportReason +CL: net/minecraft/client/multiplayer/chat/report/ReportingContext net/minecraft/client/multiplayer/chat/report/ReportingContext +CL: net/minecraft/client/multiplayer/chat/report/package-info net/minecraft/client/multiplayer/chat/report/package-info +CL: net/minecraft/client/multiplayer/package-info net/minecraft/client/multiplayer/package-info +CL: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler +CL: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState +CL: net/minecraft/client/multiplayer/prediction/PredictiveAction net/minecraft/client/multiplayer/prediction/PredictiveAction +CL: net/minecraft/client/multiplayer/prediction/package-info net/minecraft/client/multiplayer/prediction/package-info +CL: net/minecraft/client/multiplayer/resolver/AddressCheck net/minecraft/client/multiplayer/resolver/AddressCheck +CL: net/minecraft/client/multiplayer/resolver/AddressCheck$1 net/minecraft/client/multiplayer/resolver/AddressCheck$1 +CL: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress net/minecraft/client/multiplayer/resolver/ResolvedServerAddress +CL: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1 net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1 +CL: net/minecraft/client/multiplayer/resolver/ServerAddress net/minecraft/client/multiplayer/resolver/ServerAddress +CL: net/minecraft/client/multiplayer/resolver/ServerAddressResolver net/minecraft/client/multiplayer/resolver/ServerAddressResolver +CL: net/minecraft/client/multiplayer/resolver/ServerNameResolver net/minecraft/client/multiplayer/resolver/ServerNameResolver +CL: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler net/minecraft/client/multiplayer/resolver/ServerRedirectHandler +CL: net/minecraft/client/multiplayer/resolver/package-info net/minecraft/client/multiplayer/resolver/package-info +CL: net/minecraft/client/package-info net/minecraft/client/package-info +CL: net/minecraft/client/particle/AshParticle net/minecraft/client/particle/AshParticle +CL: net/minecraft/client/particle/AshParticle$Provider net/minecraft/client/particle/AshParticle$Provider +CL: net/minecraft/client/particle/AttackSweepParticle net/minecraft/client/particle/AttackSweepParticle +CL: net/minecraft/client/particle/AttackSweepParticle$Provider net/minecraft/client/particle/AttackSweepParticle$Provider +CL: net/minecraft/client/particle/BaseAshSmokeParticle net/minecraft/client/particle/BaseAshSmokeParticle +CL: net/minecraft/client/particle/BlockMarker net/minecraft/client/particle/BlockMarker +CL: net/minecraft/client/particle/BlockMarker$Provider net/minecraft/client/particle/BlockMarker$Provider +CL: net/minecraft/client/particle/BreakingItemParticle net/minecraft/client/particle/BreakingItemParticle +CL: net/minecraft/client/particle/BreakingItemParticle$Provider net/minecraft/client/particle/BreakingItemParticle$Provider +CL: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider net/minecraft/client/particle/BreakingItemParticle$SlimeProvider +CL: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider net/minecraft/client/particle/BreakingItemParticle$SnowballProvider +CL: net/minecraft/client/particle/BubbleColumnUpParticle net/minecraft/client/particle/BubbleColumnUpParticle +CL: net/minecraft/client/particle/BubbleColumnUpParticle$Provider net/minecraft/client/particle/BubbleColumnUpParticle$Provider +CL: net/minecraft/client/particle/BubbleParticle net/minecraft/client/particle/BubbleParticle +CL: net/minecraft/client/particle/BubbleParticle$Provider net/minecraft/client/particle/BubbleParticle$Provider +CL: net/minecraft/client/particle/BubblePopParticle net/minecraft/client/particle/BubblePopParticle +CL: net/minecraft/client/particle/BubblePopParticle$Provider net/minecraft/client/particle/BubblePopParticle$Provider +CL: net/minecraft/client/particle/CampfireSmokeParticle net/minecraft/client/particle/CampfireSmokeParticle +CL: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider +CL: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider +CL: net/minecraft/client/particle/CherryParticle net/minecraft/client/particle/CherryParticle +CL: net/minecraft/client/particle/CritParticle net/minecraft/client/particle/CritParticle +CL: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider net/minecraft/client/particle/CritParticle$DamageIndicatorProvider +CL: net/minecraft/client/particle/CritParticle$MagicProvider net/minecraft/client/particle/CritParticle$MagicProvider +CL: net/minecraft/client/particle/CritParticle$Provider net/minecraft/client/particle/CritParticle$Provider +CL: net/minecraft/client/particle/DragonBreathParticle net/minecraft/client/particle/DragonBreathParticle +CL: net/minecraft/client/particle/DragonBreathParticle$Provider net/minecraft/client/particle/DragonBreathParticle$Provider +CL: net/minecraft/client/particle/DripParticle net/minecraft/client/particle/DripParticle +CL: net/minecraft/client/particle/DripParticle$CoolingDripHangParticle net/minecraft/client/particle/DripParticle$CoolingDripHangParticle +CL: net/minecraft/client/particle/DripParticle$DripHangParticle net/minecraft/client/particle/DripParticle$DripHangParticle +CL: net/minecraft/client/particle/DripParticle$DripLandParticle net/minecraft/client/particle/DripParticle$DripLandParticle +CL: net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle +CL: net/minecraft/client/particle/DripParticle$FallAndLandParticle net/minecraft/client/particle/DripParticle$FallAndLandParticle +CL: net/minecraft/client/particle/DripParticle$FallingParticle net/minecraft/client/particle/DripParticle$FallingParticle +CL: net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle +CL: net/minecraft/client/particle/DustColorTransitionParticle net/minecraft/client/particle/DustColorTransitionParticle +CL: net/minecraft/client/particle/DustColorTransitionParticle$Provider net/minecraft/client/particle/DustColorTransitionParticle$Provider +CL: net/minecraft/client/particle/DustParticle net/minecraft/client/particle/DustParticle +CL: net/minecraft/client/particle/DustParticle$Provider net/minecraft/client/particle/DustParticle$Provider +CL: net/minecraft/client/particle/DustParticleBase net/minecraft/client/particle/DustParticleBase +CL: net/minecraft/client/particle/EnchantmentTableParticle net/minecraft/client/particle/EnchantmentTableParticle +CL: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider +CL: net/minecraft/client/particle/EnchantmentTableParticle$Provider net/minecraft/client/particle/EnchantmentTableParticle$Provider +CL: net/minecraft/client/particle/EndRodParticle net/minecraft/client/particle/EndRodParticle +CL: net/minecraft/client/particle/EndRodParticle$Provider net/minecraft/client/particle/EndRodParticle$Provider +CL: net/minecraft/client/particle/ExplodeParticle net/minecraft/client/particle/ExplodeParticle +CL: net/minecraft/client/particle/ExplodeParticle$Provider net/minecraft/client/particle/ExplodeParticle$Provider +CL: net/minecraft/client/particle/FallingDustParticle net/minecraft/client/particle/FallingDustParticle +CL: net/minecraft/client/particle/FallingDustParticle$Provider net/minecraft/client/particle/FallingDustParticle$Provider +CL: net/minecraft/client/particle/FireworkParticles net/minecraft/client/particle/FireworkParticles +CL: net/minecraft/client/particle/FireworkParticles$1 net/minecraft/client/particle/FireworkParticles$1 +CL: net/minecraft/client/particle/FireworkParticles$FlashProvider net/minecraft/client/particle/FireworkParticles$FlashProvider +CL: net/minecraft/client/particle/FireworkParticles$OverlayParticle net/minecraft/client/particle/FireworkParticles$OverlayParticle +CL: net/minecraft/client/particle/FireworkParticles$SparkParticle net/minecraft/client/particle/FireworkParticles$SparkParticle +CL: net/minecraft/client/particle/FireworkParticles$SparkProvider net/minecraft/client/particle/FireworkParticles$SparkProvider +CL: net/minecraft/client/particle/FireworkParticles$Starter net/minecraft/client/particle/FireworkParticles$Starter +CL: net/minecraft/client/particle/FlameParticle net/minecraft/client/particle/FlameParticle +CL: net/minecraft/client/particle/FlameParticle$Provider net/minecraft/client/particle/FlameParticle$Provider +CL: net/minecraft/client/particle/FlameParticle$SmallFlameProvider net/minecraft/client/particle/FlameParticle$SmallFlameProvider +CL: net/minecraft/client/particle/GlowParticle net/minecraft/client/particle/GlowParticle +CL: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider net/minecraft/client/particle/GlowParticle$ElectricSparkProvider +CL: net/minecraft/client/particle/GlowParticle$GlowSquidProvider net/minecraft/client/particle/GlowParticle$GlowSquidProvider +CL: net/minecraft/client/particle/GlowParticle$ScrapeProvider net/minecraft/client/particle/GlowParticle$ScrapeProvider +CL: net/minecraft/client/particle/GlowParticle$WaxOffProvider net/minecraft/client/particle/GlowParticle$WaxOffProvider +CL: net/minecraft/client/particle/GlowParticle$WaxOnProvider net/minecraft/client/particle/GlowParticle$WaxOnProvider +CL: net/minecraft/client/particle/HeartParticle net/minecraft/client/particle/HeartParticle +CL: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider net/minecraft/client/particle/HeartParticle$AngryVillagerProvider +CL: net/minecraft/client/particle/HeartParticle$Provider net/minecraft/client/particle/HeartParticle$Provider +CL: net/minecraft/client/particle/HugeExplosionParticle net/minecraft/client/particle/HugeExplosionParticle +CL: net/minecraft/client/particle/HugeExplosionParticle$Provider net/minecraft/client/particle/HugeExplosionParticle$Provider +CL: net/minecraft/client/particle/HugeExplosionSeedParticle net/minecraft/client/particle/HugeExplosionSeedParticle +CL: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider net/minecraft/client/particle/HugeExplosionSeedParticle$Provider +CL: net/minecraft/client/particle/ItemPickupParticle net/minecraft/client/particle/ItemPickupParticle +CL: net/minecraft/client/particle/LargeSmokeParticle net/minecraft/client/particle/LargeSmokeParticle +CL: net/minecraft/client/particle/LargeSmokeParticle$Provider net/minecraft/client/particle/LargeSmokeParticle$Provider +CL: net/minecraft/client/particle/LavaParticle net/minecraft/client/particle/LavaParticle +CL: net/minecraft/client/particle/LavaParticle$Provider net/minecraft/client/particle/LavaParticle$Provider +CL: net/minecraft/client/particle/MobAppearanceParticle net/minecraft/client/particle/MobAppearanceParticle +CL: net/minecraft/client/particle/MobAppearanceParticle$Provider net/minecraft/client/particle/MobAppearanceParticle$Provider +CL: net/minecraft/client/particle/NoRenderParticle net/minecraft/client/particle/NoRenderParticle +CL: net/minecraft/client/particle/NoteParticle net/minecraft/client/particle/NoteParticle +CL: net/minecraft/client/particle/NoteParticle$Provider net/minecraft/client/particle/NoteParticle$Provider +CL: net/minecraft/client/particle/Particle net/minecraft/client/particle/Particle +CL: net/minecraft/client/particle/ParticleDescription net/minecraft/client/particle/ParticleDescription +CL: net/minecraft/client/particle/ParticleEngine net/minecraft/client/particle/ParticleEngine +CL: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition net/minecraft/client/particle/ParticleEngine$1ParticleDefinition +CL: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet net/minecraft/client/particle/ParticleEngine$MutableSpriteSet +CL: net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration +CL: net/minecraft/client/particle/ParticleProvider net/minecraft/client/particle/ParticleProvider +CL: net/minecraft/client/particle/ParticleProvider$Sprite net/minecraft/client/particle/ParticleProvider$Sprite +CL: net/minecraft/client/particle/ParticleRenderType net/minecraft/client/particle/ParticleRenderType +CL: net/minecraft/client/particle/ParticleRenderType$1 net/minecraft/client/particle/ParticleRenderType$1 +CL: net/minecraft/client/particle/ParticleRenderType$2 net/minecraft/client/particle/ParticleRenderType$2 +CL: net/minecraft/client/particle/ParticleRenderType$3 net/minecraft/client/particle/ParticleRenderType$3 +CL: net/minecraft/client/particle/ParticleRenderType$4 net/minecraft/client/particle/ParticleRenderType$4 +CL: net/minecraft/client/particle/ParticleRenderType$5 net/minecraft/client/particle/ParticleRenderType$5 +CL: net/minecraft/client/particle/ParticleRenderType$6 net/minecraft/client/particle/ParticleRenderType$6 +CL: net/minecraft/client/particle/PlayerCloudParticle net/minecraft/client/particle/PlayerCloudParticle +CL: net/minecraft/client/particle/PlayerCloudParticle$Provider net/minecraft/client/particle/PlayerCloudParticle$Provider +CL: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider +CL: net/minecraft/client/particle/PortalParticle net/minecraft/client/particle/PortalParticle +CL: net/minecraft/client/particle/PortalParticle$Provider net/minecraft/client/particle/PortalParticle$Provider +CL: net/minecraft/client/particle/ReversePortalParticle net/minecraft/client/particle/ReversePortalParticle +CL: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider +CL: net/minecraft/client/particle/RisingParticle net/minecraft/client/particle/RisingParticle +CL: net/minecraft/client/particle/SculkChargeParticle net/minecraft/client/particle/SculkChargeParticle +CL: net/minecraft/client/particle/SculkChargeParticle$Provider net/minecraft/client/particle/SculkChargeParticle$Provider +CL: net/minecraft/client/particle/SculkChargePopParticle net/minecraft/client/particle/SculkChargePopParticle +CL: net/minecraft/client/particle/SculkChargePopParticle$Provider net/minecraft/client/particle/SculkChargePopParticle$Provider +CL: net/minecraft/client/particle/ShriekParticle net/minecraft/client/particle/ShriekParticle +CL: net/minecraft/client/particle/ShriekParticle$Provider net/minecraft/client/particle/ShriekParticle$Provider +CL: net/minecraft/client/particle/SimpleAnimatedParticle net/minecraft/client/particle/SimpleAnimatedParticle +CL: net/minecraft/client/particle/SingleQuadParticle net/minecraft/client/particle/SingleQuadParticle +CL: net/minecraft/client/particle/SmokeParticle net/minecraft/client/particle/SmokeParticle +CL: net/minecraft/client/particle/SmokeParticle$Provider net/minecraft/client/particle/SmokeParticle$Provider +CL: net/minecraft/client/particle/SnowflakeParticle net/minecraft/client/particle/SnowflakeParticle +CL: net/minecraft/client/particle/SnowflakeParticle$Provider net/minecraft/client/particle/SnowflakeParticle$Provider +CL: net/minecraft/client/particle/SonicBoomParticle net/minecraft/client/particle/SonicBoomParticle +CL: net/minecraft/client/particle/SonicBoomParticle$Provider net/minecraft/client/particle/SonicBoomParticle$Provider +CL: net/minecraft/client/particle/SoulParticle net/minecraft/client/particle/SoulParticle +CL: net/minecraft/client/particle/SoulParticle$EmissiveProvider net/minecraft/client/particle/SoulParticle$EmissiveProvider +CL: net/minecraft/client/particle/SoulParticle$Provider net/minecraft/client/particle/SoulParticle$Provider +CL: net/minecraft/client/particle/SpellParticle net/minecraft/client/particle/SpellParticle +CL: net/minecraft/client/particle/SpellParticle$AmbientMobProvider net/minecraft/client/particle/SpellParticle$AmbientMobProvider +CL: net/minecraft/client/particle/SpellParticle$InstantProvider net/minecraft/client/particle/SpellParticle$InstantProvider +CL: net/minecraft/client/particle/SpellParticle$MobProvider net/minecraft/client/particle/SpellParticle$MobProvider +CL: net/minecraft/client/particle/SpellParticle$Provider net/minecraft/client/particle/SpellParticle$Provider +CL: net/minecraft/client/particle/SpellParticle$WitchProvider net/minecraft/client/particle/SpellParticle$WitchProvider +CL: net/minecraft/client/particle/SpitParticle net/minecraft/client/particle/SpitParticle +CL: net/minecraft/client/particle/SpitParticle$Provider net/minecraft/client/particle/SpitParticle$Provider +CL: net/minecraft/client/particle/SplashParticle net/minecraft/client/particle/SplashParticle +CL: net/minecraft/client/particle/SplashParticle$Provider net/minecraft/client/particle/SplashParticle$Provider +CL: net/minecraft/client/particle/SpriteSet net/minecraft/client/particle/SpriteSet +CL: net/minecraft/client/particle/SquidInkParticle net/minecraft/client/particle/SquidInkParticle +CL: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider net/minecraft/client/particle/SquidInkParticle$GlowInkProvider +CL: net/minecraft/client/particle/SquidInkParticle$Provider net/minecraft/client/particle/SquidInkParticle$Provider +CL: net/minecraft/client/particle/SuspendedParticle net/minecraft/client/particle/SuspendedParticle +CL: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider +CL: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider +CL: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1 net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1 +CL: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider +CL: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider +CL: net/minecraft/client/particle/SuspendedTownParticle net/minecraft/client/particle/SuspendedTownParticle +CL: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$Provider net/minecraft/client/particle/SuspendedTownParticle$Provider +CL: net/minecraft/client/particle/TerrainParticle net/minecraft/client/particle/TerrainParticle +CL: net/minecraft/client/particle/TerrainParticle$Provider net/minecraft/client/particle/TerrainParticle$Provider +CL: net/minecraft/client/particle/TextureSheetParticle net/minecraft/client/particle/TextureSheetParticle +CL: net/minecraft/client/particle/TotemParticle net/minecraft/client/particle/TotemParticle +CL: net/minecraft/client/particle/TotemParticle$Provider net/minecraft/client/particle/TotemParticle$Provider +CL: net/minecraft/client/particle/TrackingEmitter net/minecraft/client/particle/TrackingEmitter +CL: net/minecraft/client/particle/VibrationSignalParticle net/minecraft/client/particle/VibrationSignalParticle +CL: net/minecraft/client/particle/VibrationSignalParticle$Provider net/minecraft/client/particle/VibrationSignalParticle$Provider +CL: net/minecraft/client/particle/WakeParticle net/minecraft/client/particle/WakeParticle +CL: net/minecraft/client/particle/WakeParticle$Provider net/minecraft/client/particle/WakeParticle$Provider +CL: net/minecraft/client/particle/WaterCurrentDownParticle net/minecraft/client/particle/WaterCurrentDownParticle +CL: net/minecraft/client/particle/WaterCurrentDownParticle$Provider net/minecraft/client/particle/WaterCurrentDownParticle$Provider +CL: net/minecraft/client/particle/WaterDropParticle net/minecraft/client/particle/WaterDropParticle +CL: net/minecraft/client/particle/WaterDropParticle$Provider net/minecraft/client/particle/WaterDropParticle$Provider +CL: net/minecraft/client/particle/WhiteAshParticle net/minecraft/client/particle/WhiteAshParticle +CL: net/minecraft/client/particle/WhiteAshParticle$Provider net/minecraft/client/particle/WhiteAshParticle$Provider +CL: net/minecraft/client/particle/package-info net/minecraft/client/particle/package-info +CL: net/minecraft/client/player/AbstractClientPlayer net/minecraft/client/player/AbstractClientPlayer +CL: net/minecraft/client/player/Input net/minecraft/client/player/Input +CL: net/minecraft/client/player/KeyboardInput net/minecraft/client/player/KeyboardInput +CL: net/minecraft/client/player/LocalPlayer net/minecraft/client/player/LocalPlayer +CL: net/minecraft/client/player/RemotePlayer net/minecraft/client/player/RemotePlayer +CL: net/minecraft/client/player/inventory/Hotbar net/minecraft/client/player/inventory/Hotbar +CL: net/minecraft/client/player/inventory/package-info net/minecraft/client/player/inventory/package-info +CL: net/minecraft/client/player/package-info net/minecraft/client/player/package-info +CL: net/minecraft/client/profiling/ClientMetricsSamplersProvider net/minecraft/client/profiling/ClientMetricsSamplersProvider +CL: net/minecraft/client/profiling/package-info net/minecraft/client/profiling/package-info +CL: net/minecraft/client/quickplay/QuickPlay net/minecraft/client/quickplay/QuickPlay +CL: net/minecraft/client/quickplay/QuickPlayLog net/minecraft/client/quickplay/QuickPlayLog +CL: net/minecraft/client/quickplay/QuickPlayLog$1 net/minecraft/client/quickplay/QuickPlayLog$1 +CL: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry +CL: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld +CL: net/minecraft/client/quickplay/QuickPlayLog$Type net/minecraft/client/quickplay/QuickPlayLog$Type +CL: net/minecraft/client/quickplay/package-info net/minecraft/client/quickplay/package-info +CL: net/minecraft/client/renderer/BiomeColors net/minecraft/client/renderer/BiomeColors +CL: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer +CL: net/minecraft/client/renderer/ChunkBufferBuilderPack net/minecraft/client/renderer/ChunkBufferBuilderPack +CL: net/minecraft/client/renderer/CubeMap net/minecraft/client/renderer/CubeMap +CL: net/minecraft/client/renderer/DimensionSpecialEffects net/minecraft/client/renderer/DimensionSpecialEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType net/minecraft/client/renderer/DimensionSpecialEffects$SkyType +CL: net/minecraft/client/renderer/EffectInstance net/minecraft/client/renderer/EffectInstance +CL: net/minecraft/client/renderer/FaceInfo net/minecraft/client/renderer/FaceInfo +CL: net/minecraft/client/renderer/FaceInfo$Constants net/minecraft/client/renderer/FaceInfo$Constants +CL: net/minecraft/client/renderer/FaceInfo$VertexInfo net/minecraft/client/renderer/FaceInfo$VertexInfo +CL: net/minecraft/client/renderer/FogRenderer net/minecraft/client/renderer/FogRenderer +CL: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction +CL: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction net/minecraft/client/renderer/FogRenderer$DarknessFogFunction +CL: net/minecraft/client/renderer/FogRenderer$FogData net/minecraft/client/renderer/FogRenderer$FogData +CL: net/minecraft/client/renderer/FogRenderer$FogMode net/minecraft/client/renderer/FogRenderer$FogMode +CL: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction +CL: net/minecraft/client/renderer/GameRenderer net/minecraft/client/renderer/GameRenderer +CL: net/minecraft/client/renderer/GameRenderer$1 net/minecraft/client/renderer/GameRenderer$1 +CL: net/minecraft/client/renderer/GameRenderer$ResourceCache net/minecraft/client/renderer/GameRenderer$ResourceCache +CL: net/minecraft/client/renderer/GpuWarnlistManager net/minecraft/client/renderer/GpuWarnlistManager +CL: net/minecraft/client/renderer/GpuWarnlistManager$Preparations net/minecraft/client/renderer/GpuWarnlistManager$Preparations +CL: net/minecraft/client/renderer/ItemBlockRenderTypes net/minecraft/client/renderer/ItemBlockRenderTypes +CL: net/minecraft/client/renderer/ItemInHandRenderer net/minecraft/client/renderer/ItemInHandRenderer +CL: net/minecraft/client/renderer/ItemInHandRenderer$1 net/minecraft/client/renderer/ItemInHandRenderer$1 +CL: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection +CL: net/minecraft/client/renderer/ItemModelShaper net/minecraft/client/renderer/ItemModelShaper +CL: net/minecraft/client/renderer/LevelRenderer net/minecraft/client/renderer/LevelRenderer +CL: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo +CL: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage +CL: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap net/minecraft/client/renderer/LevelRenderer$RenderInfoMap +CL: net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException +CL: net/minecraft/client/renderer/LightTexture net/minecraft/client/renderer/LightTexture +CL: net/minecraft/client/renderer/MultiBufferSource net/minecraft/client/renderer/MultiBufferSource +CL: net/minecraft/client/renderer/MultiBufferSource$BufferSource net/minecraft/client/renderer/MultiBufferSource$BufferSource +CL: net/minecraft/client/renderer/OutlineBufferSource net/minecraft/client/renderer/OutlineBufferSource +CL: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator +CL: net/minecraft/client/renderer/PanoramaRenderer net/minecraft/client/renderer/PanoramaRenderer +CL: net/minecraft/client/renderer/PostChain net/minecraft/client/renderer/PostChain +CL: net/minecraft/client/renderer/PostPass net/minecraft/client/renderer/PostPass +CL: net/minecraft/client/renderer/Rect2i net/minecraft/client/renderer/Rect2i +CL: net/minecraft/client/renderer/RenderBuffers net/minecraft/client/renderer/RenderBuffers +CL: net/minecraft/client/renderer/RenderStateShard net/minecraft/client/renderer/RenderStateShard +CL: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard net/minecraft/client/renderer/RenderStateShard$BooleanStateShard +CL: net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard +CL: net/minecraft/client/renderer/RenderStateShard$CullStateShard net/minecraft/client/renderer/RenderStateShard$CullStateShard +CL: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard +CL: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard +CL: net/minecraft/client/renderer/RenderStateShard$LayeringStateShard net/minecraft/client/renderer/RenderStateShard$LayeringStateShard +CL: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard net/minecraft/client/renderer/RenderStateShard$LightmapStateShard +CL: net/minecraft/client/renderer/RenderStateShard$LineStateShard net/minecraft/client/renderer/RenderStateShard$LineStateShard +CL: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard +CL: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder +CL: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard +CL: net/minecraft/client/renderer/RenderStateShard$OutputStateShard net/minecraft/client/renderer/RenderStateShard$OutputStateShard +CL: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard net/minecraft/client/renderer/RenderStateShard$OverlayStateShard +CL: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard net/minecraft/client/renderer/RenderStateShard$ShaderStateShard +CL: net/minecraft/client/renderer/RenderStateShard$TextureStateShard net/minecraft/client/renderer/RenderStateShard$TextureStateShard +CL: net/minecraft/client/renderer/RenderStateShard$TexturingStateShard net/minecraft/client/renderer/RenderStateShard$TexturingStateShard +CL: net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard +CL: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard +CL: net/minecraft/client/renderer/RenderType net/minecraft/client/renderer/RenderType +CL: net/minecraft/client/renderer/RenderType$CompositeRenderType net/minecraft/client/renderer/RenderType$CompositeRenderType +CL: net/minecraft/client/renderer/RenderType$CompositeState net/minecraft/client/renderer/RenderType$CompositeState +CL: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder +CL: net/minecraft/client/renderer/RenderType$OutlineProperty net/minecraft/client/renderer/RenderType$OutlineProperty +CL: net/minecraft/client/renderer/RunningTrimmedMean net/minecraft/client/renderer/RunningTrimmedMean +CL: net/minecraft/client/renderer/ScreenEffectRenderer net/minecraft/client/renderer/ScreenEffectRenderer +CL: net/minecraft/client/renderer/ShaderInstance net/minecraft/client/renderer/ShaderInstance +CL: net/minecraft/client/renderer/ShaderInstance$1 net/minecraft/client/renderer/ShaderInstance$1 +CL: net/minecraft/client/renderer/Sheets net/minecraft/client/renderer/Sheets +CL: net/minecraft/client/renderer/Sheets$1 net/minecraft/client/renderer/Sheets$1 +CL: net/minecraft/client/renderer/SpriteCoordinateExpander net/minecraft/client/renderer/SpriteCoordinateExpander +CL: net/minecraft/client/renderer/ViewArea net/minecraft/client/renderer/ViewArea +CL: net/minecraft/client/renderer/VirtualScreen net/minecraft/client/renderer/VirtualScreen +CL: net/minecraft/client/renderer/block/BlockModelShaper net/minecraft/client/renderer/block/BlockModelShaper +CL: net/minecraft/client/renderer/block/BlockRenderDispatcher net/minecraft/client/renderer/block/BlockRenderDispatcher +CL: net/minecraft/client/renderer/block/BlockRenderDispatcher$1 net/minecraft/client/renderer/block/BlockRenderDispatcher$1 +CL: net/minecraft/client/renderer/block/LiquidBlockRenderer net/minecraft/client/renderer/block/LiquidBlockRenderer +CL: net/minecraft/client/renderer/block/LiquidBlockRenderer$1 net/minecraft/client/renderer/block/LiquidBlockRenderer$1 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer net/minecraft/client/renderer/block/ModelBlockRenderer +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$1 net/minecraft/client/renderer/block/ModelBlockRenderer$1 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache net/minecraft/client/renderer/block/ModelBlockRenderer$Cache +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1 net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2 net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo +CL: net/minecraft/client/renderer/block/model/BakedQuad net/minecraft/client/renderer/block/model/BakedQuad +CL: net/minecraft/client/renderer/block/model/BlockElement net/minecraft/client/renderer/block/model/BlockElement +CL: net/minecraft/client/renderer/block/model/BlockElement$1 net/minecraft/client/renderer/block/model/BlockElement$1 +CL: net/minecraft/client/renderer/block/model/BlockElement$Deserializer net/minecraft/client/renderer/block/model/BlockElement$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockElementFace net/minecraft/client/renderer/block/model/BlockElementFace +CL: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockElementRotation net/minecraft/client/renderer/block/model/BlockElementRotation +CL: net/minecraft/client/renderer/block/model/BlockFaceUV net/minecraft/client/renderer/block/model/BlockFaceUV +CL: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockModel net/minecraft/client/renderer/block/model/BlockModel +CL: net/minecraft/client/renderer/block/model/BlockModel$Deserializer net/minecraft/client/renderer/block/model/BlockModel$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockModel$GuiLight net/minecraft/client/renderer/block/model/BlockModel$GuiLight +CL: net/minecraft/client/renderer/block/model/BlockModel$LoopException net/minecraft/client/renderer/block/model/BlockModel$LoopException +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition net/minecraft/client/renderer/block/model/BlockModelDefinition +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context net/minecraft/client/renderer/block/model/BlockModelDefinition$Context +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException +CL: net/minecraft/client/renderer/block/model/FaceBakery net/minecraft/client/renderer/block/model/FaceBakery +CL: net/minecraft/client/renderer/block/model/FaceBakery$1 net/minecraft/client/renderer/block/model/FaceBakery$1 +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator net/minecraft/client/renderer/block/model/ItemModelGenerator +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator$1 net/minecraft/client/renderer/block/model/ItemModelGenerator$1 +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span net/minecraft/client/renderer/block/model/ItemModelGenerator$Span +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing +CL: net/minecraft/client/renderer/block/model/ItemOverride net/minecraft/client/renderer/block/model/ItemOverride +CL: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer net/minecraft/client/renderer/block/model/ItemOverride$Deserializer +CL: net/minecraft/client/renderer/block/model/ItemOverride$Predicate net/minecraft/client/renderer/block/model/ItemOverride$Predicate +CL: net/minecraft/client/renderer/block/model/ItemOverrides net/minecraft/client/renderer/block/model/ItemOverrides +CL: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride +CL: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher +CL: net/minecraft/client/renderer/block/model/ItemTransform net/minecraft/client/renderer/block/model/ItemTransform +CL: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer net/minecraft/client/renderer/block/model/ItemTransform$Deserializer +CL: net/minecraft/client/renderer/block/model/ItemTransforms net/minecraft/client/renderer/block/model/ItemTransforms +CL: net/minecraft/client/renderer/block/model/ItemTransforms$1 net/minecraft/client/renderer/block/model/ItemTransforms$1 +CL: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer +CL: net/minecraft/client/renderer/block/model/MultiVariant net/minecraft/client/renderer/block/model/MultiVariant +CL: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer net/minecraft/client/renderer/block/model/MultiVariant$Deserializer +CL: net/minecraft/client/renderer/block/model/Variant net/minecraft/client/renderer/block/model/Variant +CL: net/minecraft/client/renderer/block/model/Variant$Deserializer net/minecraft/client/renderer/block/model/Variant$Deserializer +CL: net/minecraft/client/renderer/block/model/multipart/AndCondition net/minecraft/client/renderer/block/model/multipart/AndCondition +CL: net/minecraft/client/renderer/block/model/multipart/Condition net/minecraft/client/renderer/block/model/multipart/Condition +CL: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition net/minecraft/client/renderer/block/model/multipart/KeyValueCondition +CL: net/minecraft/client/renderer/block/model/multipart/MultiPart net/minecraft/client/renderer/block/model/multipart/MultiPart +CL: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer +CL: net/minecraft/client/renderer/block/model/multipart/OrCondition net/minecraft/client/renderer/block/model/multipart/OrCondition +CL: net/minecraft/client/renderer/block/model/multipart/Selector net/minecraft/client/renderer/block/model/multipart/Selector +CL: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer +CL: net/minecraft/client/renderer/block/model/multipart/package-info net/minecraft/client/renderer/block/model/multipart/package-info +CL: net/minecraft/client/renderer/block/model/package-info net/minecraft/client/renderer/block/model/package-info +CL: net/minecraft/client/renderer/block/package-info net/minecraft/client/renderer/block/package-info +CL: net/minecraft/client/renderer/blockentity/BannerRenderer net/minecraft/client/renderer/blockentity/BannerRenderer +CL: net/minecraft/client/renderer/blockentity/BeaconRenderer net/minecraft/client/renderer/blockentity/BeaconRenderer +CL: net/minecraft/client/renderer/blockentity/BedRenderer net/minecraft/client/renderer/blockentity/BedRenderer +CL: net/minecraft/client/renderer/blockentity/BellRenderer net/minecraft/client/renderer/blockentity/BellRenderer +CL: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher +CL: net/minecraft/client/renderer/blockentity/BlockEntityRenderer net/minecraft/client/renderer/blockentity/BlockEntityRenderer +CL: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider +CL: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context +CL: net/minecraft/client/renderer/blockentity/BlockEntityRenderers net/minecraft/client/renderer/blockentity/BlockEntityRenderers +CL: net/minecraft/client/renderer/blockentity/BrightnessCombiner net/minecraft/client/renderer/blockentity/BrightnessCombiner +CL: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer net/minecraft/client/renderer/blockentity/BrushableBlockRenderer +CL: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1 net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1 +CL: net/minecraft/client/renderer/blockentity/CampfireRenderer net/minecraft/client/renderer/blockentity/CampfireRenderer +CL: net/minecraft/client/renderer/blockentity/ChestRenderer net/minecraft/client/renderer/blockentity/ChestRenderer +CL: net/minecraft/client/renderer/blockentity/ConduitRenderer net/minecraft/client/renderer/blockentity/ConduitRenderer +CL: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer net/minecraft/client/renderer/blockentity/DecoratedPotRenderer +CL: net/minecraft/client/renderer/blockentity/EnchantTableRenderer net/minecraft/client/renderer/blockentity/EnchantTableRenderer +CL: net/minecraft/client/renderer/blockentity/HangingSignRenderer net/minecraft/client/renderer/blockentity/HangingSignRenderer +CL: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel +CL: net/minecraft/client/renderer/blockentity/LecternRenderer net/minecraft/client/renderer/blockentity/LecternRenderer +CL: net/minecraft/client/renderer/blockentity/PistonHeadRenderer net/minecraft/client/renderer/blockentity/PistonHeadRenderer +CL: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer +CL: net/minecraft/client/renderer/blockentity/SignRenderer net/minecraft/client/renderer/blockentity/SignRenderer +CL: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel net/minecraft/client/renderer/blockentity/SignRenderer$SignModel +CL: net/minecraft/client/renderer/blockentity/SkullBlockRenderer net/minecraft/client/renderer/blockentity/SkullBlockRenderer +CL: net/minecraft/client/renderer/blockentity/SpawnerRenderer net/minecraft/client/renderer/blockentity/SpawnerRenderer +CL: net/minecraft/client/renderer/blockentity/StructureBlockRenderer net/minecraft/client/renderer/blockentity/StructureBlockRenderer +CL: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1 net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1 +CL: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer +CL: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer net/minecraft/client/renderer/blockentity/TheEndPortalRenderer +CL: net/minecraft/client/renderer/blockentity/package-info net/minecraft/client/renderer/blockentity/package-info +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher net/minecraft/client/renderer/chunk/ChunkRenderDispatcher +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1 +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask +CL: net/minecraft/client/renderer/chunk/RenderChunk net/minecraft/client/renderer/chunk/RenderChunk +CL: net/minecraft/client/renderer/chunk/RenderChunkRegion net/minecraft/client/renderer/chunk/RenderChunkRegion +CL: net/minecraft/client/renderer/chunk/RenderRegionCache net/minecraft/client/renderer/chunk/RenderRegionCache +CL: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo +CL: net/minecraft/client/renderer/chunk/VisGraph net/minecraft/client/renderer/chunk/VisGraph +CL: net/minecraft/client/renderer/chunk/VisGraph$1 net/minecraft/client/renderer/chunk/VisGraph$1 +CL: net/minecraft/client/renderer/chunk/VisibilitySet net/minecraft/client/renderer/chunk/VisibilitySet +CL: net/minecraft/client/renderer/chunk/package-info net/minecraft/client/renderer/chunk/package-info +CL: net/minecraft/client/renderer/culling/Frustum net/minecraft/client/renderer/culling/Frustum +CL: net/minecraft/client/renderer/culling/package-info net/minecraft/client/renderer/culling/package-info +CL: net/minecraft/client/renderer/debug/BeeDebugRenderer net/minecraft/client/renderer/debug/BeeDebugRenderer +CL: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo +CL: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo +CL: net/minecraft/client/renderer/debug/BrainDebugRenderer net/minecraft/client/renderer/debug/BrainDebugRenderer +CL: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump +CL: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo +CL: net/minecraft/client/renderer/debug/ChunkBorderRenderer net/minecraft/client/renderer/debug/ChunkBorderRenderer +CL: net/minecraft/client/renderer/debug/ChunkDebugRenderer net/minecraft/client/renderer/debug/ChunkDebugRenderer +CL: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData +CL: net/minecraft/client/renderer/debug/CollisionBoxRenderer net/minecraft/client/renderer/debug/CollisionBoxRenderer +CL: net/minecraft/client/renderer/debug/DebugRenderer net/minecraft/client/renderer/debug/DebugRenderer +CL: net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer +CL: net/minecraft/client/renderer/debug/GameEventListenerRenderer net/minecraft/client/renderer/debug/GameEventListenerRenderer +CL: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent +CL: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener +CL: net/minecraft/client/renderer/debug/GameTestDebugRenderer net/minecraft/client/renderer/debug/GameTestDebugRenderer +CL: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker +CL: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer +CL: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal +CL: net/minecraft/client/renderer/debug/HeightMapRenderer net/minecraft/client/renderer/debug/HeightMapRenderer +CL: net/minecraft/client/renderer/debug/HeightMapRenderer$1 net/minecraft/client/renderer/debug/HeightMapRenderer$1 +CL: net/minecraft/client/renderer/debug/LightDebugRenderer net/minecraft/client/renderer/debug/LightDebugRenderer +CL: net/minecraft/client/renderer/debug/LightSectionDebugRenderer net/minecraft/client/renderer/debug/LightSectionDebugRenderer +CL: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1 net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1 +CL: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData +CL: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer net/minecraft/client/renderer/debug/NeighborsUpdateRenderer +CL: net/minecraft/client/renderer/debug/PathfindingRenderer net/minecraft/client/renderer/debug/PathfindingRenderer +CL: net/minecraft/client/renderer/debug/RaidDebugRenderer net/minecraft/client/renderer/debug/RaidDebugRenderer +CL: net/minecraft/client/renderer/debug/SolidFaceRenderer net/minecraft/client/renderer/debug/SolidFaceRenderer +CL: net/minecraft/client/renderer/debug/StructureRenderer net/minecraft/client/renderer/debug/StructureRenderer +CL: net/minecraft/client/renderer/debug/SupportBlockRenderer net/minecraft/client/renderer/debug/SupportBlockRenderer +CL: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer +CL: net/minecraft/client/renderer/debug/WaterDebugRenderer net/minecraft/client/renderer/debug/WaterDebugRenderer +CL: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer net/minecraft/client/renderer/debug/WorldGenAttemptRenderer +CL: net/minecraft/client/renderer/debug/package-info net/minecraft/client/renderer/debug/package-info +CL: net/minecraft/client/renderer/entity/AbstractHorseRenderer net/minecraft/client/renderer/entity/AbstractHorseRenderer +CL: net/minecraft/client/renderer/entity/AbstractZombieRenderer net/minecraft/client/renderer/entity/AbstractZombieRenderer +CL: net/minecraft/client/renderer/entity/AllayRenderer net/minecraft/client/renderer/entity/AllayRenderer +CL: net/minecraft/client/renderer/entity/ArmorStandRenderer net/minecraft/client/renderer/entity/ArmorStandRenderer +CL: net/minecraft/client/renderer/entity/ArrowRenderer net/minecraft/client/renderer/entity/ArrowRenderer +CL: net/minecraft/client/renderer/entity/AxolotlRenderer net/minecraft/client/renderer/entity/AxolotlRenderer +CL: net/minecraft/client/renderer/entity/BatRenderer net/minecraft/client/renderer/entity/BatRenderer +CL: net/minecraft/client/renderer/entity/BeeRenderer net/minecraft/client/renderer/entity/BeeRenderer +CL: net/minecraft/client/renderer/entity/BlazeRenderer net/minecraft/client/renderer/entity/BlazeRenderer +CL: net/minecraft/client/renderer/entity/BoatRenderer net/minecraft/client/renderer/entity/BoatRenderer +CL: net/minecraft/client/renderer/entity/CamelRenderer net/minecraft/client/renderer/entity/CamelRenderer +CL: net/minecraft/client/renderer/entity/CatRenderer net/minecraft/client/renderer/entity/CatRenderer +CL: net/minecraft/client/renderer/entity/CaveSpiderRenderer net/minecraft/client/renderer/entity/CaveSpiderRenderer +CL: net/minecraft/client/renderer/entity/ChestedHorseRenderer net/minecraft/client/renderer/entity/ChestedHorseRenderer +CL: net/minecraft/client/renderer/entity/ChickenRenderer net/minecraft/client/renderer/entity/ChickenRenderer +CL: net/minecraft/client/renderer/entity/CodRenderer net/minecraft/client/renderer/entity/CodRenderer +CL: net/minecraft/client/renderer/entity/CowRenderer net/minecraft/client/renderer/entity/CowRenderer +CL: net/minecraft/client/renderer/entity/CreeperRenderer net/minecraft/client/renderer/entity/CreeperRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer$1 net/minecraft/client/renderer/entity/DisplayRenderer$1 +CL: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer +CL: net/minecraft/client/renderer/entity/DolphinRenderer net/minecraft/client/renderer/entity/DolphinRenderer +CL: net/minecraft/client/renderer/entity/DragonFireballRenderer net/minecraft/client/renderer/entity/DragonFireballRenderer +CL: net/minecraft/client/renderer/entity/DrownedRenderer net/minecraft/client/renderer/entity/DrownedRenderer +CL: net/minecraft/client/renderer/entity/ElderGuardianRenderer net/minecraft/client/renderer/entity/ElderGuardianRenderer +CL: net/minecraft/client/renderer/entity/EndCrystalRenderer net/minecraft/client/renderer/entity/EndCrystalRenderer +CL: net/minecraft/client/renderer/entity/EnderDragonRenderer net/minecraft/client/renderer/entity/EnderDragonRenderer +CL: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel +CL: net/minecraft/client/renderer/entity/EndermanRenderer net/minecraft/client/renderer/entity/EndermanRenderer +CL: net/minecraft/client/renderer/entity/EndermiteRenderer net/minecraft/client/renderer/entity/EndermiteRenderer +CL: net/minecraft/client/renderer/entity/EntityRenderDispatcher net/minecraft/client/renderer/entity/EntityRenderDispatcher +CL: net/minecraft/client/renderer/entity/EntityRenderer net/minecraft/client/renderer/entity/EntityRenderer +CL: net/minecraft/client/renderer/entity/EntityRendererProvider net/minecraft/client/renderer/entity/EntityRendererProvider +CL: net/minecraft/client/renderer/entity/EntityRendererProvider$Context net/minecraft/client/renderer/entity/EntityRendererProvider$Context +CL: net/minecraft/client/renderer/entity/EntityRenderers net/minecraft/client/renderer/entity/EntityRenderers +CL: net/minecraft/client/renderer/entity/EvokerFangsRenderer net/minecraft/client/renderer/entity/EvokerFangsRenderer +CL: net/minecraft/client/renderer/entity/EvokerRenderer net/minecraft/client/renderer/entity/EvokerRenderer +CL: net/minecraft/client/renderer/entity/EvokerRenderer$1 net/minecraft/client/renderer/entity/EvokerRenderer$1 +CL: net/minecraft/client/renderer/entity/ExperienceOrbRenderer net/minecraft/client/renderer/entity/ExperienceOrbRenderer +CL: net/minecraft/client/renderer/entity/FallingBlockRenderer net/minecraft/client/renderer/entity/FallingBlockRenderer +CL: net/minecraft/client/renderer/entity/FireworkEntityRenderer net/minecraft/client/renderer/entity/FireworkEntityRenderer +CL: net/minecraft/client/renderer/entity/FishingHookRenderer net/minecraft/client/renderer/entity/FishingHookRenderer +CL: net/minecraft/client/renderer/entity/FoxRenderer net/minecraft/client/renderer/entity/FoxRenderer +CL: net/minecraft/client/renderer/entity/FrogRenderer net/minecraft/client/renderer/entity/FrogRenderer +CL: net/minecraft/client/renderer/entity/GhastRenderer net/minecraft/client/renderer/entity/GhastRenderer +CL: net/minecraft/client/renderer/entity/GiantMobRenderer net/minecraft/client/renderer/entity/GiantMobRenderer +CL: net/minecraft/client/renderer/entity/GlowSquidRenderer net/minecraft/client/renderer/entity/GlowSquidRenderer +CL: net/minecraft/client/renderer/entity/GoatRenderer net/minecraft/client/renderer/entity/GoatRenderer +CL: net/minecraft/client/renderer/entity/GuardianRenderer net/minecraft/client/renderer/entity/GuardianRenderer +CL: net/minecraft/client/renderer/entity/HoglinRenderer net/minecraft/client/renderer/entity/HoglinRenderer +CL: net/minecraft/client/renderer/entity/HorseRenderer net/minecraft/client/renderer/entity/HorseRenderer +CL: net/minecraft/client/renderer/entity/HumanoidMobRenderer net/minecraft/client/renderer/entity/HumanoidMobRenderer +CL: net/minecraft/client/renderer/entity/HuskRenderer net/minecraft/client/renderer/entity/HuskRenderer +CL: net/minecraft/client/renderer/entity/IllagerRenderer net/minecraft/client/renderer/entity/IllagerRenderer +CL: net/minecraft/client/renderer/entity/IllusionerRenderer net/minecraft/client/renderer/entity/IllusionerRenderer +CL: net/minecraft/client/renderer/entity/IllusionerRenderer$1 net/minecraft/client/renderer/entity/IllusionerRenderer$1 +CL: net/minecraft/client/renderer/entity/IronGolemRenderer net/minecraft/client/renderer/entity/IronGolemRenderer +CL: net/minecraft/client/renderer/entity/ItemEntityRenderer net/minecraft/client/renderer/entity/ItemEntityRenderer +CL: net/minecraft/client/renderer/entity/ItemFrameRenderer net/minecraft/client/renderer/entity/ItemFrameRenderer +CL: net/minecraft/client/renderer/entity/ItemRenderer net/minecraft/client/renderer/entity/ItemRenderer +CL: net/minecraft/client/renderer/entity/LeashKnotRenderer net/minecraft/client/renderer/entity/LeashKnotRenderer +CL: net/minecraft/client/renderer/entity/LightningBoltRenderer net/minecraft/client/renderer/entity/LightningBoltRenderer +CL: net/minecraft/client/renderer/entity/LivingEntityRenderer net/minecraft/client/renderer/entity/LivingEntityRenderer +CL: net/minecraft/client/renderer/entity/LivingEntityRenderer$1 net/minecraft/client/renderer/entity/LivingEntityRenderer$1 +CL: net/minecraft/client/renderer/entity/LlamaRenderer net/minecraft/client/renderer/entity/LlamaRenderer +CL: net/minecraft/client/renderer/entity/LlamaRenderer$1 net/minecraft/client/renderer/entity/LlamaRenderer$1 +CL: net/minecraft/client/renderer/entity/LlamaSpitRenderer net/minecraft/client/renderer/entity/LlamaSpitRenderer +CL: net/minecraft/client/renderer/entity/MagmaCubeRenderer net/minecraft/client/renderer/entity/MagmaCubeRenderer +CL: net/minecraft/client/renderer/entity/MinecartRenderer net/minecraft/client/renderer/entity/MinecartRenderer +CL: net/minecraft/client/renderer/entity/MobRenderer net/minecraft/client/renderer/entity/MobRenderer +CL: net/minecraft/client/renderer/entity/MushroomCowRenderer net/minecraft/client/renderer/entity/MushroomCowRenderer +CL: net/minecraft/client/renderer/entity/NoopRenderer net/minecraft/client/renderer/entity/NoopRenderer +CL: net/minecraft/client/renderer/entity/OcelotRenderer net/minecraft/client/renderer/entity/OcelotRenderer +CL: net/minecraft/client/renderer/entity/PaintingRenderer net/minecraft/client/renderer/entity/PaintingRenderer +CL: net/minecraft/client/renderer/entity/PandaRenderer net/minecraft/client/renderer/entity/PandaRenderer +CL: net/minecraft/client/renderer/entity/ParrotRenderer net/minecraft/client/renderer/entity/ParrotRenderer +CL: net/minecraft/client/renderer/entity/ParrotRenderer$1 net/minecraft/client/renderer/entity/ParrotRenderer$1 +CL: net/minecraft/client/renderer/entity/PhantomRenderer net/minecraft/client/renderer/entity/PhantomRenderer +CL: net/minecraft/client/renderer/entity/PigRenderer net/minecraft/client/renderer/entity/PigRenderer +CL: net/minecraft/client/renderer/entity/PiglinRenderer net/minecraft/client/renderer/entity/PiglinRenderer +CL: net/minecraft/client/renderer/entity/PillagerRenderer net/minecraft/client/renderer/entity/PillagerRenderer +CL: net/minecraft/client/renderer/entity/PolarBearRenderer net/minecraft/client/renderer/entity/PolarBearRenderer +CL: net/minecraft/client/renderer/entity/PufferfishRenderer net/minecraft/client/renderer/entity/PufferfishRenderer +CL: net/minecraft/client/renderer/entity/RabbitRenderer net/minecraft/client/renderer/entity/RabbitRenderer +CL: net/minecraft/client/renderer/entity/RabbitRenderer$1 net/minecraft/client/renderer/entity/RabbitRenderer$1 +CL: net/minecraft/client/renderer/entity/RavagerRenderer net/minecraft/client/renderer/entity/RavagerRenderer +CL: net/minecraft/client/renderer/entity/RenderLayerParent net/minecraft/client/renderer/entity/RenderLayerParent +CL: net/minecraft/client/renderer/entity/SalmonRenderer net/minecraft/client/renderer/entity/SalmonRenderer +CL: net/minecraft/client/renderer/entity/SheepRenderer net/minecraft/client/renderer/entity/SheepRenderer +CL: net/minecraft/client/renderer/entity/ShulkerBulletRenderer net/minecraft/client/renderer/entity/ShulkerBulletRenderer +CL: net/minecraft/client/renderer/entity/ShulkerRenderer net/minecraft/client/renderer/entity/ShulkerRenderer +CL: net/minecraft/client/renderer/entity/SilverfishRenderer net/minecraft/client/renderer/entity/SilverfishRenderer +CL: net/minecraft/client/renderer/entity/SkeletonRenderer net/minecraft/client/renderer/entity/SkeletonRenderer +CL: net/minecraft/client/renderer/entity/SlimeRenderer net/minecraft/client/renderer/entity/SlimeRenderer +CL: net/minecraft/client/renderer/entity/SnifferRenderer net/minecraft/client/renderer/entity/SnifferRenderer +CL: net/minecraft/client/renderer/entity/SnowGolemRenderer net/minecraft/client/renderer/entity/SnowGolemRenderer +CL: net/minecraft/client/renderer/entity/SpectralArrowRenderer net/minecraft/client/renderer/entity/SpectralArrowRenderer +CL: net/minecraft/client/renderer/entity/SpiderRenderer net/minecraft/client/renderer/entity/SpiderRenderer +CL: net/minecraft/client/renderer/entity/SquidRenderer net/minecraft/client/renderer/entity/SquidRenderer +CL: net/minecraft/client/renderer/entity/StrayRenderer net/minecraft/client/renderer/entity/StrayRenderer +CL: net/minecraft/client/renderer/entity/StriderRenderer net/minecraft/client/renderer/entity/StriderRenderer +CL: net/minecraft/client/renderer/entity/TadpoleRenderer net/minecraft/client/renderer/entity/TadpoleRenderer +CL: net/minecraft/client/renderer/entity/ThrownItemRenderer net/minecraft/client/renderer/entity/ThrownItemRenderer +CL: net/minecraft/client/renderer/entity/ThrownTridentRenderer net/minecraft/client/renderer/entity/ThrownTridentRenderer +CL: net/minecraft/client/renderer/entity/TippableArrowRenderer net/minecraft/client/renderer/entity/TippableArrowRenderer +CL: net/minecraft/client/renderer/entity/TntMinecartRenderer net/minecraft/client/renderer/entity/TntMinecartRenderer +CL: net/minecraft/client/renderer/entity/TntRenderer net/minecraft/client/renderer/entity/TntRenderer +CL: net/minecraft/client/renderer/entity/TropicalFishRenderer net/minecraft/client/renderer/entity/TropicalFishRenderer +CL: net/minecraft/client/renderer/entity/TropicalFishRenderer$1 net/minecraft/client/renderer/entity/TropicalFishRenderer$1 +CL: net/minecraft/client/renderer/entity/TurtleRenderer net/minecraft/client/renderer/entity/TurtleRenderer +CL: net/minecraft/client/renderer/entity/UndeadHorseRenderer net/minecraft/client/renderer/entity/UndeadHorseRenderer +CL: net/minecraft/client/renderer/entity/VexRenderer net/minecraft/client/renderer/entity/VexRenderer +CL: net/minecraft/client/renderer/entity/VillagerRenderer net/minecraft/client/renderer/entity/VillagerRenderer +CL: net/minecraft/client/renderer/entity/VindicatorRenderer net/minecraft/client/renderer/entity/VindicatorRenderer +CL: net/minecraft/client/renderer/entity/VindicatorRenderer$1 net/minecraft/client/renderer/entity/VindicatorRenderer$1 +CL: net/minecraft/client/renderer/entity/WanderingTraderRenderer net/minecraft/client/renderer/entity/WanderingTraderRenderer +CL: net/minecraft/client/renderer/entity/WardenRenderer net/minecraft/client/renderer/entity/WardenRenderer +CL: net/minecraft/client/renderer/entity/WitchRenderer net/minecraft/client/renderer/entity/WitchRenderer +CL: net/minecraft/client/renderer/entity/WitherBossRenderer net/minecraft/client/renderer/entity/WitherBossRenderer +CL: net/minecraft/client/renderer/entity/WitherSkeletonRenderer net/minecraft/client/renderer/entity/WitherSkeletonRenderer +CL: net/minecraft/client/renderer/entity/WitherSkullRenderer net/minecraft/client/renderer/entity/WitherSkullRenderer +CL: net/minecraft/client/renderer/entity/WolfRenderer net/minecraft/client/renderer/entity/WolfRenderer +CL: net/minecraft/client/renderer/entity/ZoglinRenderer net/minecraft/client/renderer/entity/ZoglinRenderer +CL: net/minecraft/client/renderer/entity/ZombieRenderer net/minecraft/client/renderer/entity/ZombieRenderer +CL: net/minecraft/client/renderer/entity/ZombieVillagerRenderer net/minecraft/client/renderer/entity/ZombieVillagerRenderer +CL: net/minecraft/client/renderer/entity/layers/ArrowLayer net/minecraft/client/renderer/entity/layers/ArrowLayer +CL: net/minecraft/client/renderer/entity/layers/BeeStingerLayer net/minecraft/client/renderer/entity/layers/BeeStingerLayer +CL: net/minecraft/client/renderer/entity/layers/CapeLayer net/minecraft/client/renderer/entity/layers/CapeLayer +CL: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer net/minecraft/client/renderer/entity/layers/CarriedBlockLayer +CL: net/minecraft/client/renderer/entity/layers/CatCollarLayer net/minecraft/client/renderer/entity/layers/CatCollarLayer +CL: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer net/minecraft/client/renderer/entity/layers/CreeperPowerLayer +CL: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer +CL: net/minecraft/client/renderer/entity/layers/CustomHeadLayer net/minecraft/client/renderer/entity/layers/CustomHeadLayer +CL: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer +CL: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer +CL: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer net/minecraft/client/renderer/entity/layers/DrownedOuterLayer +CL: net/minecraft/client/renderer/entity/layers/ElytraLayer net/minecraft/client/renderer/entity/layers/ElytraLayer +CL: net/minecraft/client/renderer/entity/layers/EnderEyesLayer net/minecraft/client/renderer/entity/layers/EnderEyesLayer +CL: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer net/minecraft/client/renderer/entity/layers/EnergySwirlLayer +CL: net/minecraft/client/renderer/entity/layers/EyesLayer net/minecraft/client/renderer/entity/layers/EyesLayer +CL: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer +CL: net/minecraft/client/renderer/entity/layers/HorseArmorLayer net/minecraft/client/renderer/entity/layers/HorseArmorLayer +CL: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer net/minecraft/client/renderer/entity/layers/HorseMarkingLayer +CL: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer +CL: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1 net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1 +CL: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer +CL: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer +CL: net/minecraft/client/renderer/entity/layers/ItemInHandLayer net/minecraft/client/renderer/entity/layers/ItemInHandLayer +CL: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer net/minecraft/client/renderer/entity/layers/LlamaDecorLayer +CL: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer +CL: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer +CL: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer +CL: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer net/minecraft/client/renderer/entity/layers/PhantomEyesLayer +CL: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer +CL: net/minecraft/client/renderer/entity/layers/RenderLayer net/minecraft/client/renderer/entity/layers/RenderLayer +CL: net/minecraft/client/renderer/entity/layers/SaddleLayer net/minecraft/client/renderer/entity/layers/SaddleLayer +CL: net/minecraft/client/renderer/entity/layers/SheepFurLayer net/minecraft/client/renderer/entity/layers/SheepFurLayer +CL: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer +CL: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer net/minecraft/client/renderer/entity/layers/SlimeOuterLayer +CL: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer +CL: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer net/minecraft/client/renderer/entity/layers/SpiderEyesLayer +CL: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer +CL: net/minecraft/client/renderer/entity/layers/StrayClothingLayer net/minecraft/client/renderer/entity/layers/StrayClothingLayer +CL: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer net/minecraft/client/renderer/entity/layers/StuckInBodyLayer +CL: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer +CL: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1 net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1 +CL: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer +CL: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer +CL: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction +CL: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector +CL: net/minecraft/client/renderer/entity/layers/WitchItemLayer net/minecraft/client/renderer/entity/layers/WitchItemLayer +CL: net/minecraft/client/renderer/entity/layers/WitherArmorLayer net/minecraft/client/renderer/entity/layers/WitherArmorLayer +CL: net/minecraft/client/renderer/entity/layers/WolfCollarLayer net/minecraft/client/renderer/entity/layers/WolfCollarLayer +CL: net/minecraft/client/renderer/entity/layers/package-info net/minecraft/client/renderer/entity/layers/package-info +CL: net/minecraft/client/renderer/entity/package-info net/minecraft/client/renderer/entity/package-info +CL: net/minecraft/client/renderer/entity/player/PlayerRenderer net/minecraft/client/renderer/entity/player/PlayerRenderer +CL: net/minecraft/client/renderer/entity/player/package-info net/minecraft/client/renderer/entity/player/package-info +CL: net/minecraft/client/renderer/item/ClampedItemPropertyFunction net/minecraft/client/renderer/item/ClampedItemPropertyFunction +CL: net/minecraft/client/renderer/item/CompassItemPropertyFunction net/minecraft/client/renderer/item/CompassItemPropertyFunction +CL: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget +CL: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble +CL: net/minecraft/client/renderer/item/ItemProperties net/minecraft/client/renderer/item/ItemProperties +CL: net/minecraft/client/renderer/item/ItemProperties$1 net/minecraft/client/renderer/item/ItemProperties$1 +CL: net/minecraft/client/renderer/item/ItemPropertyFunction net/minecraft/client/renderer/item/ItemPropertyFunction +CL: net/minecraft/client/renderer/item/package-info net/minecraft/client/renderer/item/package-info +CL: net/minecraft/client/renderer/package-info net/minecraft/client/renderer/package-info +CL: net/minecraft/client/renderer/texture/AbstractTexture net/minecraft/client/renderer/texture/AbstractTexture +CL: net/minecraft/client/renderer/texture/Dumpable net/minecraft/client/renderer/texture/Dumpable +CL: net/minecraft/client/renderer/texture/DynamicTexture net/minecraft/client/renderer/texture/DynamicTexture +CL: net/minecraft/client/renderer/texture/HttpTexture net/minecraft/client/renderer/texture/HttpTexture +CL: net/minecraft/client/renderer/texture/MipmapGenerator net/minecraft/client/renderer/texture/MipmapGenerator +CL: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite net/minecraft/client/renderer/texture/MissingTextureAtlasSprite +CL: net/minecraft/client/renderer/texture/OverlayTexture net/minecraft/client/renderer/texture/OverlayTexture +CL: net/minecraft/client/renderer/texture/PreloadedTexture net/minecraft/client/renderer/texture/PreloadedTexture +CL: net/minecraft/client/renderer/texture/SimpleTexture net/minecraft/client/renderer/texture/SimpleTexture +CL: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage net/minecraft/client/renderer/texture/SimpleTexture$TextureImage +CL: net/minecraft/client/renderer/texture/SpriteContents net/minecraft/client/renderer/texture/SpriteContents +CL: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture +CL: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo net/minecraft/client/renderer/texture/SpriteContents$FrameInfo +CL: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData net/minecraft/client/renderer/texture/SpriteContents$InterpolationData +CL: net/minecraft/client/renderer/texture/SpriteContents$Ticker net/minecraft/client/renderer/texture/SpriteContents$Ticker +CL: net/minecraft/client/renderer/texture/SpriteLoader net/minecraft/client/renderer/texture/SpriteLoader +CL: net/minecraft/client/renderer/texture/SpriteLoader$Preparations net/minecraft/client/renderer/texture/SpriteLoader$Preparations +CL: net/minecraft/client/renderer/texture/SpriteTicker net/minecraft/client/renderer/texture/SpriteTicker +CL: net/minecraft/client/renderer/texture/Stitcher net/minecraft/client/renderer/texture/Stitcher +CL: net/minecraft/client/renderer/texture/Stitcher$Entry net/minecraft/client/renderer/texture/Stitcher$Entry +CL: net/minecraft/client/renderer/texture/Stitcher$Holder net/minecraft/client/renderer/texture/Stitcher$Holder +CL: net/minecraft/client/renderer/texture/Stitcher$Region net/minecraft/client/renderer/texture/Stitcher$Region +CL: net/minecraft/client/renderer/texture/Stitcher$SpriteLoader net/minecraft/client/renderer/texture/Stitcher$SpriteLoader +CL: net/minecraft/client/renderer/texture/StitcherException net/minecraft/client/renderer/texture/StitcherException +CL: net/minecraft/client/renderer/texture/TextureAtlas net/minecraft/client/renderer/texture/TextureAtlas +CL: net/minecraft/client/renderer/texture/TextureAtlasSprite net/minecraft/client/renderer/texture/TextureAtlasSprite +CL: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 net/minecraft/client/renderer/texture/TextureAtlasSprite$1 +CL: net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker +CL: net/minecraft/client/renderer/texture/TextureManager net/minecraft/client/renderer/texture/TextureManager +CL: net/minecraft/client/renderer/texture/Tickable net/minecraft/client/renderer/texture/Tickable +CL: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader +CL: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1 net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1 +CL: net/minecraft/client/renderer/texture/atlas/SpriteSource net/minecraft/client/renderer/texture/atlas/SpriteSource +CL: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output net/minecraft/client/renderer/texture/atlas/SpriteSource$Output +CL: net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier +CL: net/minecraft/client/renderer/texture/atlas/SpriteSourceType net/minecraft/client/renderer/texture/atlas/SpriteSourceType +CL: net/minecraft/client/renderer/texture/atlas/SpriteSources net/minecraft/client/renderer/texture/atlas/SpriteSources +CL: net/minecraft/client/renderer/texture/atlas/package-info net/minecraft/client/renderer/texture/atlas/package-info +CL: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister +CL: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage +CL: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations +CL: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier +CL: net/minecraft/client/renderer/texture/atlas/sources/SingleFile net/minecraft/client/renderer/texture/atlas/sources/SingleFile +CL: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter net/minecraft/client/renderer/texture/atlas/sources/SourceFilter +CL: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher net/minecraft/client/renderer/texture/atlas/sources/Unstitcher +CL: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region +CL: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance +CL: net/minecraft/client/renderer/texture/atlas/sources/package-info net/minecraft/client/renderer/texture/atlas/sources/package-info +CL: net/minecraft/client/renderer/texture/package-info net/minecraft/client/renderer/texture/package-info +CL: net/minecraft/client/resources/ClientPackSource net/minecraft/client/resources/ClientPackSource +CL: net/minecraft/client/resources/DefaultPlayerSkin net/minecraft/client/resources/DefaultPlayerSkin +CL: net/minecraft/client/resources/DefaultPlayerSkin$ModelType net/minecraft/client/resources/DefaultPlayerSkin$ModelType +CL: net/minecraft/client/resources/DefaultPlayerSkin$SkinType net/minecraft/client/resources/DefaultPlayerSkin$SkinType +CL: net/minecraft/client/resources/DownloadedPackSource net/minecraft/client/resources/DownloadedPackSource +CL: net/minecraft/client/resources/FoliageColorReloadListener net/minecraft/client/resources/FoliageColorReloadListener +CL: net/minecraft/client/resources/GrassColorReloadListener net/minecraft/client/resources/GrassColorReloadListener +CL: net/minecraft/client/resources/IndexedAssetSource net/minecraft/client/resources/IndexedAssetSource +CL: net/minecraft/client/resources/LegacyStuffWrapper net/minecraft/client/resources/LegacyStuffWrapper +CL: net/minecraft/client/resources/MobEffectTextureManager net/minecraft/client/resources/MobEffectTextureManager +CL: net/minecraft/client/resources/PaintingTextureManager net/minecraft/client/resources/PaintingTextureManager +CL: net/minecraft/client/resources/SkinManager net/minecraft/client/resources/SkinManager +CL: net/minecraft/client/resources/SkinManager$1 net/minecraft/client/resources/SkinManager$1 +CL: net/minecraft/client/resources/SkinManager$2 net/minecraft/client/resources/SkinManager$2 +CL: net/minecraft/client/resources/SkinManager$SkinTextureCallback net/minecraft/client/resources/SkinManager$SkinTextureCallback +CL: net/minecraft/client/resources/SplashManager net/minecraft/client/resources/SplashManager +CL: net/minecraft/client/resources/TextureAtlasHolder net/minecraft/client/resources/TextureAtlasHolder +CL: net/minecraft/client/resources/language/ClientLanguage net/minecraft/client/resources/language/ClientLanguage +CL: net/minecraft/client/resources/language/FormattedBidiReorder net/minecraft/client/resources/language/FormattedBidiReorder +CL: net/minecraft/client/resources/language/I18n net/minecraft/client/resources/language/I18n +CL: net/minecraft/client/resources/language/LanguageInfo net/minecraft/client/resources/language/LanguageInfo +CL: net/minecraft/client/resources/language/LanguageManager net/minecraft/client/resources/language/LanguageManager +CL: net/minecraft/client/resources/language/package-info net/minecraft/client/resources/language/package-info +CL: net/minecraft/client/resources/metadata/animation/AnimationFrame net/minecraft/client/resources/metadata/animation/AnimationFrame +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection net/minecraft/client/resources/metadata/animation/AnimationMetadataSection +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1 net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1 +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer +CL: net/minecraft/client/resources/metadata/animation/FrameSize net/minecraft/client/resources/metadata/animation/FrameSize +CL: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection +CL: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat +CL: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer +CL: net/minecraft/client/resources/metadata/animation/package-info net/minecraft/client/resources/metadata/animation/package-info +CL: net/minecraft/client/resources/metadata/language/LanguageMetadataSection net/minecraft/client/resources/metadata/language/LanguageMetadataSection +CL: net/minecraft/client/resources/metadata/language/package-info net/minecraft/client/resources/metadata/language/package-info +CL: net/minecraft/client/resources/metadata/package-info net/minecraft/client/resources/metadata/package-info +CL: net/minecraft/client/resources/metadata/texture/TextureMetadataSection net/minecraft/client/resources/metadata/texture/TextureMetadataSection +CL: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer +CL: net/minecraft/client/resources/metadata/texture/package-info net/minecraft/client/resources/metadata/texture/package-info +CL: net/minecraft/client/resources/model/AtlasSet net/minecraft/client/resources/model/AtlasSet +CL: net/minecraft/client/resources/model/AtlasSet$AtlasEntry net/minecraft/client/resources/model/AtlasSet$AtlasEntry +CL: net/minecraft/client/resources/model/AtlasSet$StitchResult net/minecraft/client/resources/model/AtlasSet$StitchResult +CL: net/minecraft/client/resources/model/BakedModel net/minecraft/client/resources/model/BakedModel +CL: net/minecraft/client/resources/model/BlockModelRotation net/minecraft/client/resources/model/BlockModelRotation +CL: net/minecraft/client/resources/model/BuiltInModel net/minecraft/client/resources/model/BuiltInModel +CL: net/minecraft/client/resources/model/Material net/minecraft/client/resources/model/Material +CL: net/minecraft/client/resources/model/ModelBaker net/minecraft/client/resources/model/ModelBaker +CL: net/minecraft/client/resources/model/ModelBakery net/minecraft/client/resources/model/ModelBakery +CL: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey net/minecraft/client/resources/model/ModelBakery$BakedCacheKey +CL: net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException +CL: net/minecraft/client/resources/model/ModelBakery$LoadedJson net/minecraft/client/resources/model/ModelBakery$LoadedJson +CL: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl +CL: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey net/minecraft/client/resources/model/ModelBakery$ModelGroupKey +CL: net/minecraft/client/resources/model/ModelManager net/minecraft/client/resources/model/ModelManager +CL: net/minecraft/client/resources/model/ModelManager$ReloadState net/minecraft/client/resources/model/ModelManager$ReloadState +CL: net/minecraft/client/resources/model/ModelResourceLocation net/minecraft/client/resources/model/ModelResourceLocation +CL: net/minecraft/client/resources/model/ModelState net/minecraft/client/resources/model/ModelState +CL: net/minecraft/client/resources/model/MultiPartBakedModel net/minecraft/client/resources/model/MultiPartBakedModel +CL: net/minecraft/client/resources/model/MultiPartBakedModel$Builder net/minecraft/client/resources/model/MultiPartBakedModel$Builder +CL: net/minecraft/client/resources/model/SimpleBakedModel net/minecraft/client/resources/model/SimpleBakedModel +CL: net/minecraft/client/resources/model/SimpleBakedModel$Builder net/minecraft/client/resources/model/SimpleBakedModel$Builder +CL: net/minecraft/client/resources/model/UnbakedModel net/minecraft/client/resources/model/UnbakedModel +CL: net/minecraft/client/resources/model/WeightedBakedModel net/minecraft/client/resources/model/WeightedBakedModel +CL: net/minecraft/client/resources/model/WeightedBakedModel$Builder net/minecraft/client/resources/model/WeightedBakedModel$Builder +CL: net/minecraft/client/resources/model/package-info net/minecraft/client/resources/model/package-info +CL: net/minecraft/client/resources/package-info net/minecraft/client/resources/package-info +CL: net/minecraft/client/resources/sounds/AbstractSoundInstance net/minecraft/client/resources/sounds/AbstractSoundInstance +CL: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance net/minecraft/client/resources/sounds/AbstractTickableSoundInstance +CL: net/minecraft/client/resources/sounds/AmbientSoundHandler net/minecraft/client/resources/sounds/AmbientSoundHandler +CL: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance +CL: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance net/minecraft/client/resources/sounds/BeeFlyingSoundInstance +CL: net/minecraft/client/resources/sounds/BeeSoundInstance net/minecraft/client/resources/sounds/BeeSoundInstance +CL: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler +CL: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance +CL: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler +CL: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance +CL: net/minecraft/client/resources/sounds/EntityBoundSoundInstance net/minecraft/client/resources/sounds/EntityBoundSoundInstance +CL: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance net/minecraft/client/resources/sounds/GuardianAttackSoundInstance +CL: net/minecraft/client/resources/sounds/MinecartSoundInstance net/minecraft/client/resources/sounds/MinecartSoundInstance +CL: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance net/minecraft/client/resources/sounds/RidingMinecartSoundInstance +CL: net/minecraft/client/resources/sounds/SimpleSoundInstance net/minecraft/client/resources/sounds/SimpleSoundInstance +CL: net/minecraft/client/resources/sounds/SnifferSoundInstance net/minecraft/client/resources/sounds/SnifferSoundInstance +CL: net/minecraft/client/resources/sounds/Sound net/minecraft/client/resources/sounds/Sound +CL: net/minecraft/client/resources/sounds/Sound$Type net/minecraft/client/resources/sounds/Sound$Type +CL: net/minecraft/client/resources/sounds/SoundEventRegistration net/minecraft/client/resources/sounds/SoundEventRegistration +CL: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer +CL: net/minecraft/client/resources/sounds/SoundInstance net/minecraft/client/resources/sounds/SoundInstance +CL: net/minecraft/client/resources/sounds/SoundInstance$Attenuation net/minecraft/client/resources/sounds/SoundInstance$Attenuation +CL: net/minecraft/client/resources/sounds/TickableSoundInstance net/minecraft/client/resources/sounds/TickableSoundInstance +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance +CL: net/minecraft/client/resources/sounds/package-info net/minecraft/client/resources/sounds/package-info +CL: net/minecraft/client/searchtree/FullTextSearchTree net/minecraft/client/searchtree/FullTextSearchTree +CL: net/minecraft/client/searchtree/IdSearchTree net/minecraft/client/searchtree/IdSearchTree +CL: net/minecraft/client/searchtree/IntersectionIterator net/minecraft/client/searchtree/IntersectionIterator +CL: net/minecraft/client/searchtree/MergingUniqueIterator net/minecraft/client/searchtree/MergingUniqueIterator +CL: net/minecraft/client/searchtree/PlainTextSearchTree net/minecraft/client/searchtree/PlainTextSearchTree +CL: net/minecraft/client/searchtree/RefreshableSearchTree net/minecraft/client/searchtree/RefreshableSearchTree +CL: net/minecraft/client/searchtree/ResourceLocationSearchTree net/minecraft/client/searchtree/ResourceLocationSearchTree +CL: net/minecraft/client/searchtree/ResourceLocationSearchTree$1 net/minecraft/client/searchtree/ResourceLocationSearchTree$1 +CL: net/minecraft/client/searchtree/ResourceLocationSearchTree$2 net/minecraft/client/searchtree/ResourceLocationSearchTree$2 +CL: net/minecraft/client/searchtree/SearchRegistry net/minecraft/client/searchtree/SearchRegistry +CL: net/minecraft/client/searchtree/SearchRegistry$Key net/minecraft/client/searchtree/SearchRegistry$Key +CL: net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier +CL: net/minecraft/client/searchtree/SearchRegistry$TreeEntry net/minecraft/client/searchtree/SearchRegistry$TreeEntry +CL: net/minecraft/client/searchtree/SearchTree net/minecraft/client/searchtree/SearchTree +CL: net/minecraft/client/searchtree/SuffixArray net/minecraft/client/searchtree/SuffixArray +CL: net/minecraft/client/searchtree/package-info net/minecraft/client/searchtree/package-info +CL: net/minecraft/client/server/IntegratedPlayerList net/minecraft/client/server/IntegratedPlayerList +CL: net/minecraft/client/server/IntegratedServer net/minecraft/client/server/IntegratedServer +CL: net/minecraft/client/server/LanServer net/minecraft/client/server/LanServer +CL: net/minecraft/client/server/LanServerDetection net/minecraft/client/server/LanServerDetection +CL: net/minecraft/client/server/LanServerDetection$LanServerDetector net/minecraft/client/server/LanServerDetection$LanServerDetector +CL: net/minecraft/client/server/LanServerDetection$LanServerList net/minecraft/client/server/LanServerDetection$LanServerList +CL: net/minecraft/client/server/LanServerPinger net/minecraft/client/server/LanServerPinger +CL: net/minecraft/client/server/package-info net/minecraft/client/server/package-info +CL: net/minecraft/client/sounds/AudioStream net/minecraft/client/sounds/AudioStream +CL: net/minecraft/client/sounds/ChannelAccess net/minecraft/client/sounds/ChannelAccess +CL: net/minecraft/client/sounds/ChannelAccess$ChannelHandle net/minecraft/client/sounds/ChannelAccess$ChannelHandle +CL: net/minecraft/client/sounds/LoopingAudioStream net/minecraft/client/sounds/LoopingAudioStream +CL: net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider +CL: net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer +CL: net/minecraft/client/sounds/MusicManager net/minecraft/client/sounds/MusicManager +CL: net/minecraft/client/sounds/SoundBufferLibrary net/minecraft/client/sounds/SoundBufferLibrary +CL: net/minecraft/client/sounds/SoundEngine net/minecraft/client/sounds/SoundEngine +CL: net/minecraft/client/sounds/SoundEngine$DeviceCheckState net/minecraft/client/sounds/SoundEngine$DeviceCheckState +CL: net/minecraft/client/sounds/SoundEngineExecutor net/minecraft/client/sounds/SoundEngineExecutor +CL: net/minecraft/client/sounds/SoundEventListener net/minecraft/client/sounds/SoundEventListener +CL: net/minecraft/client/sounds/SoundManager net/minecraft/client/sounds/SoundManager +CL: net/minecraft/client/sounds/SoundManager$1 net/minecraft/client/sounds/SoundManager$1 +CL: net/minecraft/client/sounds/SoundManager$2 net/minecraft/client/sounds/SoundManager$2 +CL: net/minecraft/client/sounds/SoundManager$Preparations net/minecraft/client/sounds/SoundManager$Preparations +CL: net/minecraft/client/sounds/SoundManager$Preparations$1 net/minecraft/client/sounds/SoundManager$Preparations$1 +CL: net/minecraft/client/sounds/WeighedSoundEvents net/minecraft/client/sounds/WeighedSoundEvents +CL: net/minecraft/client/sounds/Weighted net/minecraft/client/sounds/Weighted +CL: net/minecraft/client/sounds/package-info net/minecraft/client/sounds/package-info +CL: net/minecraft/client/telemetry/ClientTelemetryManager net/minecraft/client/telemetry/ClientTelemetryManager +CL: net/minecraft/client/telemetry/TelemetryEventInstance net/minecraft/client/telemetry/TelemetryEventInstance +CL: net/minecraft/client/telemetry/TelemetryEventLog net/minecraft/client/telemetry/TelemetryEventLog +CL: net/minecraft/client/telemetry/TelemetryEventLogger net/minecraft/client/telemetry/TelemetryEventLogger +CL: net/minecraft/client/telemetry/TelemetryEventSender net/minecraft/client/telemetry/TelemetryEventSender +CL: net/minecraft/client/telemetry/TelemetryEventType net/minecraft/client/telemetry/TelemetryEventType +CL: net/minecraft/client/telemetry/TelemetryEventType$Builder net/minecraft/client/telemetry/TelemetryEventType$Builder +CL: net/minecraft/client/telemetry/TelemetryLogManager net/minecraft/client/telemetry/TelemetryLogManager +CL: net/minecraft/client/telemetry/TelemetryProperty net/minecraft/client/telemetry/TelemetryProperty +CL: net/minecraft/client/telemetry/TelemetryProperty$Exporter net/minecraft/client/telemetry/TelemetryProperty$Exporter +CL: net/minecraft/client/telemetry/TelemetryProperty$GameMode net/minecraft/client/telemetry/TelemetryProperty$GameMode +CL: net/minecraft/client/telemetry/TelemetryProperty$ServerType net/minecraft/client/telemetry/TelemetryProperty$ServerType +CL: net/minecraft/client/telemetry/TelemetryPropertyMap net/minecraft/client/telemetry/TelemetryPropertyMap +CL: net/minecraft/client/telemetry/TelemetryPropertyMap$1 net/minecraft/client/telemetry/TelemetryPropertyMap$1 +CL: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder net/minecraft/client/telemetry/TelemetryPropertyMap$Builder +CL: net/minecraft/client/telemetry/WorldSessionTelemetryManager net/minecraft/client/telemetry/WorldSessionTelemetryManager +CL: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent net/minecraft/client/telemetry/events/AggregatedTelemetryEvent +CL: net/minecraft/client/telemetry/events/GameLoadTimesEvent net/minecraft/client/telemetry/events/GameLoadTimesEvent +CL: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement +CL: net/minecraft/client/telemetry/events/PerformanceMetricsEvent net/minecraft/client/telemetry/events/PerformanceMetricsEvent +CL: net/minecraft/client/telemetry/events/WorldLoadEvent net/minecraft/client/telemetry/events/WorldLoadEvent +CL: net/minecraft/client/telemetry/events/WorldLoadEvent$1 net/minecraft/client/telemetry/events/WorldLoadEvent$1 +CL: net/minecraft/client/telemetry/events/WorldLoadTimesEvent net/minecraft/client/telemetry/events/WorldLoadTimesEvent +CL: net/minecraft/client/telemetry/events/WorldUnloadEvent net/minecraft/client/telemetry/events/WorldUnloadEvent +CL: net/minecraft/client/telemetry/events/package-info net/minecraft/client/telemetry/events/package-info +CL: net/minecraft/client/telemetry/package-info net/minecraft/client/telemetry/package-info +CL: net/minecraft/client/tutorial/BundleTutorial net/minecraft/client/tutorial/BundleTutorial +CL: net/minecraft/client/tutorial/CompletedTutorialStepInstance net/minecraft/client/tutorial/CompletedTutorialStepInstance +CL: net/minecraft/client/tutorial/CraftPlanksTutorialStep net/minecraft/client/tutorial/CraftPlanksTutorialStep +CL: net/minecraft/client/tutorial/FindTreeTutorialStepInstance net/minecraft/client/tutorial/FindTreeTutorialStepInstance +CL: net/minecraft/client/tutorial/MovementTutorialStepInstance net/minecraft/client/tutorial/MovementTutorialStepInstance +CL: net/minecraft/client/tutorial/OpenInventoryTutorialStep net/minecraft/client/tutorial/OpenInventoryTutorialStep +CL: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance net/minecraft/client/tutorial/PunchTreeTutorialStepInstance +CL: net/minecraft/client/tutorial/Tutorial net/minecraft/client/tutorial/Tutorial +CL: net/minecraft/client/tutorial/Tutorial$TimedToast net/minecraft/client/tutorial/Tutorial$TimedToast +CL: net/minecraft/client/tutorial/TutorialStepInstance net/minecraft/client/tutorial/TutorialStepInstance +CL: net/minecraft/client/tutorial/TutorialSteps net/minecraft/client/tutorial/TutorialSteps +CL: net/minecraft/client/tutorial/package-info net/minecraft/client/tutorial/package-info +CL: net/minecraft/commands/BrigadierExceptions net/minecraft/commands/BrigadierExceptions +CL: net/minecraft/commands/CommandBuildContext net/minecraft/commands/CommandBuildContext +CL: net/minecraft/commands/CommandBuildContext$1 net/minecraft/commands/CommandBuildContext$1 +CL: net/minecraft/commands/CommandBuildContext$2 net/minecraft/commands/CommandBuildContext$2 +CL: net/minecraft/commands/CommandBuildContext$2$1 net/minecraft/commands/CommandBuildContext$2$1 +CL: net/minecraft/commands/CommandBuildContext$3 net/minecraft/commands/CommandBuildContext$3 +CL: net/minecraft/commands/CommandBuildContext$Configurable net/minecraft/commands/CommandBuildContext$Configurable +CL: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy +CL: net/minecraft/commands/CommandFunction net/minecraft/commands/CommandFunction +CL: net/minecraft/commands/CommandFunction$CacheableFunction net/minecraft/commands/CommandFunction$CacheableFunction +CL: net/minecraft/commands/CommandFunction$CommandEntry net/minecraft/commands/CommandFunction$CommandEntry +CL: net/minecraft/commands/CommandFunction$Entry net/minecraft/commands/CommandFunction$Entry +CL: net/minecraft/commands/CommandFunction$FunctionEntry net/minecraft/commands/CommandFunction$FunctionEntry +CL: net/minecraft/commands/CommandRuntimeException net/minecraft/commands/CommandRuntimeException +CL: net/minecraft/commands/CommandSigningContext net/minecraft/commands/CommandSigningContext +CL: net/minecraft/commands/CommandSigningContext$1 net/minecraft/commands/CommandSigningContext$1 +CL: net/minecraft/commands/CommandSigningContext$SignedArguments net/minecraft/commands/CommandSigningContext$SignedArguments +CL: net/minecraft/commands/CommandSource net/minecraft/commands/CommandSource +CL: net/minecraft/commands/CommandSource$1 net/minecraft/commands/CommandSource$1 +CL: net/minecraft/commands/CommandSourceStack net/minecraft/commands/CommandSourceStack +CL: net/minecraft/commands/Commands net/minecraft/commands/Commands +CL: net/minecraft/commands/Commands$1 net/minecraft/commands/Commands$1 +CL: net/minecraft/commands/Commands$1$1 net/minecraft/commands/Commands$1$1 +CL: net/minecraft/commands/Commands$CommandSelection net/minecraft/commands/Commands$CommandSelection +CL: net/minecraft/commands/Commands$ParseFunction net/minecraft/commands/Commands$ParseFunction +CL: net/minecraft/commands/SharedSuggestionProvider net/minecraft/commands/SharedSuggestionProvider +CL: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType +CL: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates net/minecraft/commands/SharedSuggestionProvider$TextCoordinates +CL: net/minecraft/commands/arguments/AngleArgument net/minecraft/commands/arguments/AngleArgument +CL: net/minecraft/commands/arguments/AngleArgument$SingleAngle net/minecraft/commands/arguments/AngleArgument$SingleAngle +CL: net/minecraft/commands/arguments/ArgumentSignatures net/minecraft/commands/arguments/ArgumentSignatures +CL: net/minecraft/commands/arguments/ArgumentSignatures$Entry net/minecraft/commands/arguments/ArgumentSignatures$Entry +CL: net/minecraft/commands/arguments/ArgumentSignatures$Signer net/minecraft/commands/arguments/ArgumentSignatures$Signer +CL: net/minecraft/commands/arguments/ColorArgument net/minecraft/commands/arguments/ColorArgument +CL: net/minecraft/commands/arguments/ComponentArgument net/minecraft/commands/arguments/ComponentArgument +CL: net/minecraft/commands/arguments/CompoundTagArgument net/minecraft/commands/arguments/CompoundTagArgument +CL: net/minecraft/commands/arguments/DimensionArgument net/minecraft/commands/arguments/DimensionArgument +CL: net/minecraft/commands/arguments/EntityAnchorArgument net/minecraft/commands/arguments/EntityAnchorArgument +CL: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor net/minecraft/commands/arguments/EntityAnchorArgument$Anchor +CL: net/minecraft/commands/arguments/EntityArgument net/minecraft/commands/arguments/EntityArgument +CL: net/minecraft/commands/arguments/EntityArgument$Info net/minecraft/commands/arguments/EntityArgument$Info +CL: net/minecraft/commands/arguments/EntityArgument$Info$Template net/minecraft/commands/arguments/EntityArgument$Info$Template +CL: net/minecraft/commands/arguments/GameModeArgument net/minecraft/commands/arguments/GameModeArgument +CL: net/minecraft/commands/arguments/GameProfileArgument net/minecraft/commands/arguments/GameProfileArgument +CL: net/minecraft/commands/arguments/GameProfileArgument$Result net/minecraft/commands/arguments/GameProfileArgument$Result +CL: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult net/minecraft/commands/arguments/GameProfileArgument$SelectorResult +CL: net/minecraft/commands/arguments/HeightmapTypeArgument net/minecraft/commands/arguments/HeightmapTypeArgument +CL: net/minecraft/commands/arguments/MessageArgument net/minecraft/commands/arguments/MessageArgument +CL: net/minecraft/commands/arguments/MessageArgument$Message net/minecraft/commands/arguments/MessageArgument$Message +CL: net/minecraft/commands/arguments/MessageArgument$Part net/minecraft/commands/arguments/MessageArgument$Part +CL: net/minecraft/commands/arguments/NbtPathArgument net/minecraft/commands/arguments/NbtPathArgument +CL: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode +CL: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode +CL: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode +CL: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode +CL: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode +CL: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode +CL: net/minecraft/commands/arguments/NbtPathArgument$NbtPath net/minecraft/commands/arguments/NbtPathArgument$NbtPath +CL: net/minecraft/commands/arguments/NbtPathArgument$Node net/minecraft/commands/arguments/NbtPathArgument$Node +CL: net/minecraft/commands/arguments/NbtTagArgument net/minecraft/commands/arguments/NbtTagArgument +CL: net/minecraft/commands/arguments/ObjectiveArgument net/minecraft/commands/arguments/ObjectiveArgument +CL: net/minecraft/commands/arguments/ObjectiveCriteriaArgument net/minecraft/commands/arguments/ObjectiveCriteriaArgument +CL: net/minecraft/commands/arguments/OperationArgument net/minecraft/commands/arguments/OperationArgument +CL: net/minecraft/commands/arguments/OperationArgument$Operation net/minecraft/commands/arguments/OperationArgument$Operation +CL: net/minecraft/commands/arguments/OperationArgument$SimpleOperation net/minecraft/commands/arguments/OperationArgument$SimpleOperation +CL: net/minecraft/commands/arguments/ParticleArgument net/minecraft/commands/arguments/ParticleArgument +CL: net/minecraft/commands/arguments/RangeArgument net/minecraft/commands/arguments/RangeArgument +CL: net/minecraft/commands/arguments/RangeArgument$Floats net/minecraft/commands/arguments/RangeArgument$Floats +CL: net/minecraft/commands/arguments/RangeArgument$Ints net/minecraft/commands/arguments/RangeArgument$Ints +CL: net/minecraft/commands/arguments/ResourceArgument net/minecraft/commands/arguments/ResourceArgument +CL: net/minecraft/commands/arguments/ResourceArgument$Info net/minecraft/commands/arguments/ResourceArgument$Info +CL: net/minecraft/commands/arguments/ResourceArgument$Info$Template net/minecraft/commands/arguments/ResourceArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceKeyArgument net/minecraft/commands/arguments/ResourceKeyArgument +CL: net/minecraft/commands/arguments/ResourceKeyArgument$Info net/minecraft/commands/arguments/ResourceKeyArgument$Info +CL: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceLocationArgument net/minecraft/commands/arguments/ResourceLocationArgument +CL: net/minecraft/commands/arguments/ResourceOrTagArgument net/minecraft/commands/arguments/ResourceOrTagArgument +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$Info net/minecraft/commands/arguments/ResourceOrTagArgument$Info +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$Result net/minecraft/commands/arguments/ResourceOrTagArgument$Result +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument net/minecraft/commands/arguments/ResourceOrTagKeyArgument +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult +CL: net/minecraft/commands/arguments/ScoreHolderArgument net/minecraft/commands/arguments/ScoreHolderArgument +CL: net/minecraft/commands/arguments/ScoreHolderArgument$Info net/minecraft/commands/arguments/ScoreHolderArgument$Info +CL: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template +CL: net/minecraft/commands/arguments/ScoreHolderArgument$Result net/minecraft/commands/arguments/ScoreHolderArgument$Result +CL: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult +CL: net/minecraft/commands/arguments/ScoreboardSlotArgument net/minecraft/commands/arguments/ScoreboardSlotArgument +CL: net/minecraft/commands/arguments/SignedArgument net/minecraft/commands/arguments/SignedArgument +CL: net/minecraft/commands/arguments/SlotArgument net/minecraft/commands/arguments/SlotArgument +CL: net/minecraft/commands/arguments/StringRepresentableArgument net/minecraft/commands/arguments/StringRepresentableArgument +CL: net/minecraft/commands/arguments/TeamArgument net/minecraft/commands/arguments/TeamArgument +CL: net/minecraft/commands/arguments/TemplateMirrorArgument net/minecraft/commands/arguments/TemplateMirrorArgument +CL: net/minecraft/commands/arguments/TemplateRotationArgument net/minecraft/commands/arguments/TemplateRotationArgument +CL: net/minecraft/commands/arguments/TimeArgument net/minecraft/commands/arguments/TimeArgument +CL: net/minecraft/commands/arguments/TimeArgument$Info net/minecraft/commands/arguments/TimeArgument$Info +CL: net/minecraft/commands/arguments/TimeArgument$Info$Template net/minecraft/commands/arguments/TimeArgument$Info$Template +CL: net/minecraft/commands/arguments/UuidArgument net/minecraft/commands/arguments/UuidArgument +CL: net/minecraft/commands/arguments/blocks/BlockInput net/minecraft/commands/arguments/blocks/BlockInput +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument net/minecraft/commands/arguments/blocks/BlockPredicateArgument +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate +CL: net/minecraft/commands/arguments/blocks/BlockStateArgument net/minecraft/commands/arguments/blocks/BlockStateArgument +CL: net/minecraft/commands/arguments/blocks/BlockStateParser net/minecraft/commands/arguments/blocks/BlockStateParser +CL: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult +CL: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult +CL: net/minecraft/commands/arguments/blocks/package-info net/minecraft/commands/arguments/blocks/package-info +CL: net/minecraft/commands/arguments/coordinates/BlockPosArgument net/minecraft/commands/arguments/coordinates/BlockPosArgument +CL: net/minecraft/commands/arguments/coordinates/ColumnPosArgument net/minecraft/commands/arguments/coordinates/ColumnPosArgument +CL: net/minecraft/commands/arguments/coordinates/Coordinates net/minecraft/commands/arguments/coordinates/Coordinates +CL: net/minecraft/commands/arguments/coordinates/LocalCoordinates net/minecraft/commands/arguments/coordinates/LocalCoordinates +CL: net/minecraft/commands/arguments/coordinates/RotationArgument net/minecraft/commands/arguments/coordinates/RotationArgument +CL: net/minecraft/commands/arguments/coordinates/SwizzleArgument net/minecraft/commands/arguments/coordinates/SwizzleArgument +CL: net/minecraft/commands/arguments/coordinates/Vec2Argument net/minecraft/commands/arguments/coordinates/Vec2Argument +CL: net/minecraft/commands/arguments/coordinates/Vec3Argument net/minecraft/commands/arguments/coordinates/Vec3Argument +CL: net/minecraft/commands/arguments/coordinates/WorldCoordinate net/minecraft/commands/arguments/coordinates/WorldCoordinate +CL: net/minecraft/commands/arguments/coordinates/WorldCoordinates net/minecraft/commands/arguments/coordinates/WorldCoordinates +CL: net/minecraft/commands/arguments/coordinates/package-info net/minecraft/commands/arguments/coordinates/package-info +CL: net/minecraft/commands/arguments/item/FunctionArgument net/minecraft/commands/arguments/item/FunctionArgument +CL: net/minecraft/commands/arguments/item/FunctionArgument$1 net/minecraft/commands/arguments/item/FunctionArgument$1 +CL: net/minecraft/commands/arguments/item/FunctionArgument$2 net/minecraft/commands/arguments/item/FunctionArgument$2 +CL: net/minecraft/commands/arguments/item/FunctionArgument$Result net/minecraft/commands/arguments/item/FunctionArgument$Result +CL: net/minecraft/commands/arguments/item/ItemArgument net/minecraft/commands/arguments/item/ItemArgument +CL: net/minecraft/commands/arguments/item/ItemInput net/minecraft/commands/arguments/item/ItemInput +CL: net/minecraft/commands/arguments/item/ItemParser net/minecraft/commands/arguments/item/ItemParser +CL: net/minecraft/commands/arguments/item/ItemParser$ItemResult net/minecraft/commands/arguments/item/ItemParser$ItemResult +CL: net/minecraft/commands/arguments/item/ItemParser$TagResult net/minecraft/commands/arguments/item/ItemParser$TagResult +CL: net/minecraft/commands/arguments/item/ItemPredicateArgument net/minecraft/commands/arguments/item/ItemPredicateArgument +CL: net/minecraft/commands/arguments/item/ItemPredicateArgument$Result net/minecraft/commands/arguments/item/ItemPredicateArgument$Result +CL: net/minecraft/commands/arguments/item/package-info net/minecraft/commands/arguments/item/package-info +CL: net/minecraft/commands/arguments/package-info net/minecraft/commands/arguments/package-info +CL: net/minecraft/commands/arguments/selector/EntitySelector net/minecraft/commands/arguments/selector/EntitySelector +CL: net/minecraft/commands/arguments/selector/EntitySelector$1 net/minecraft/commands/arguments/selector/EntitySelector$1 +CL: net/minecraft/commands/arguments/selector/EntitySelectorParser net/minecraft/commands/arguments/selector/EntitySelectorParser +CL: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions net/minecraft/commands/arguments/selector/options/EntitySelectorOptions +CL: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier +CL: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option +CL: net/minecraft/commands/arguments/selector/options/package-info net/minecraft/commands/arguments/selector/options/package-info +CL: net/minecraft/commands/arguments/selector/package-info net/minecraft/commands/arguments/selector/package-info +CL: net/minecraft/commands/package-info net/minecraft/commands/package-info +CL: net/minecraft/commands/synchronization/ArgumentTypeInfo net/minecraft/commands/synchronization/ArgumentTypeInfo +CL: net/minecraft/commands/synchronization/ArgumentTypeInfo$Template net/minecraft/commands/synchronization/ArgumentTypeInfo$Template +CL: net/minecraft/commands/synchronization/ArgumentTypeInfos net/minecraft/commands/synchronization/ArgumentTypeInfos +CL: net/minecraft/commands/synchronization/ArgumentUtils net/minecraft/commands/synchronization/ArgumentUtils +CL: net/minecraft/commands/synchronization/SingletonArgumentInfo net/minecraft/commands/synchronization/SingletonArgumentInfo +CL: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template net/minecraft/commands/synchronization/SingletonArgumentInfo$Template +CL: net/minecraft/commands/synchronization/SuggestionProviders net/minecraft/commands/synchronization/SuggestionProviders +CL: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper net/minecraft/commands/synchronization/SuggestionProviders$Wrapper +CL: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo net/minecraft/commands/synchronization/brigadier/LongArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer +CL: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1 net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1 +CL: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template +CL: net/minecraft/commands/synchronization/brigadier/package-info net/minecraft/commands/synchronization/brigadier/package-info +CL: net/minecraft/commands/synchronization/package-info net/minecraft/commands/synchronization/package-info +CL: net/minecraft/core/AxisCycle net/minecraft/core/AxisCycle +CL: net/minecraft/core/AxisCycle$1 net/minecraft/core/AxisCycle$1 +CL: net/minecraft/core/AxisCycle$2 net/minecraft/core/AxisCycle$2 +CL: net/minecraft/core/AxisCycle$3 net/minecraft/core/AxisCycle$3 +CL: net/minecraft/core/BlockMath net/minecraft/core/BlockMath +CL: net/minecraft/core/BlockPos net/minecraft/core/BlockPos +CL: net/minecraft/core/BlockPos$1 net/minecraft/core/BlockPos$1 +CL: net/minecraft/core/BlockPos$2 net/minecraft/core/BlockPos$2 +CL: net/minecraft/core/BlockPos$3 net/minecraft/core/BlockPos$3 +CL: net/minecraft/core/BlockPos$4 net/minecraft/core/BlockPos$4 +CL: net/minecraft/core/BlockPos$5 net/minecraft/core/BlockPos$5 +CL: net/minecraft/core/BlockPos$MutableBlockPos net/minecraft/core/BlockPos$MutableBlockPos +CL: net/minecraft/core/BlockSource net/minecraft/core/BlockSource +CL: net/minecraft/core/BlockSourceImpl net/minecraft/core/BlockSourceImpl +CL: net/minecraft/core/Cursor3D net/minecraft/core/Cursor3D +CL: net/minecraft/core/DefaultedMappedRegistry net/minecraft/core/DefaultedMappedRegistry +CL: net/minecraft/core/DefaultedRegistry net/minecraft/core/DefaultedRegistry +CL: net/minecraft/core/Direction net/minecraft/core/Direction +CL: net/minecraft/core/Direction$1 net/minecraft/core/Direction$1 +CL: net/minecraft/core/Direction$Axis net/minecraft/core/Direction$Axis +CL: net/minecraft/core/Direction$Axis$1 net/minecraft/core/Direction$Axis$1 +CL: net/minecraft/core/Direction$Axis$2 net/minecraft/core/Direction$Axis$2 +CL: net/minecraft/core/Direction$Axis$3 net/minecraft/core/Direction$Axis$3 +CL: net/minecraft/core/Direction$AxisDirection net/minecraft/core/Direction$AxisDirection +CL: net/minecraft/core/Direction$Plane net/minecraft/core/Direction$Plane +CL: net/minecraft/core/Direction8 net/minecraft/core/Direction8 +CL: net/minecraft/core/FrontAndTop net/minecraft/core/FrontAndTop +CL: net/minecraft/core/GlobalPos net/minecraft/core/GlobalPos +CL: net/minecraft/core/Holder net/minecraft/core/Holder +CL: net/minecraft/core/Holder$Direct net/minecraft/core/Holder$Direct +CL: net/minecraft/core/Holder$Kind net/minecraft/core/Holder$Kind +CL: net/minecraft/core/Holder$Reference net/minecraft/core/Holder$Reference +CL: net/minecraft/core/Holder$Reference$Type net/minecraft/core/Holder$Reference$Type +CL: net/minecraft/core/HolderGetter net/minecraft/core/HolderGetter +CL: net/minecraft/core/HolderGetter$Provider net/minecraft/core/HolderGetter$Provider +CL: net/minecraft/core/HolderLookup net/minecraft/core/HolderLookup +CL: net/minecraft/core/HolderLookup$1 net/minecraft/core/HolderLookup$1 +CL: net/minecraft/core/HolderLookup$Delegate net/minecraft/core/HolderLookup$Delegate +CL: net/minecraft/core/HolderLookup$Provider net/minecraft/core/HolderLookup$Provider +CL: net/minecraft/core/HolderLookup$Provider$1 net/minecraft/core/HolderLookup$Provider$1 +CL: net/minecraft/core/HolderLookup$Provider$2 net/minecraft/core/HolderLookup$Provider$2 +CL: net/minecraft/core/HolderLookup$RegistryLookup net/minecraft/core/HolderLookup$RegistryLookup +CL: net/minecraft/core/HolderLookup$RegistryLookup$Delegate net/minecraft/core/HolderLookup$RegistryLookup$Delegate +CL: net/minecraft/core/HolderOwner net/minecraft/core/HolderOwner +CL: net/minecraft/core/HolderSet net/minecraft/core/HolderSet +CL: net/minecraft/core/HolderSet$Direct net/minecraft/core/HolderSet$Direct +CL: net/minecraft/core/HolderSet$ListBacked net/minecraft/core/HolderSet$ListBacked +CL: net/minecraft/core/HolderSet$Named net/minecraft/core/HolderSet$Named +CL: net/minecraft/core/IdMap net/minecraft/core/IdMap +CL: net/minecraft/core/IdMapper net/minecraft/core/IdMapper +CL: net/minecraft/core/LayeredRegistryAccess net/minecraft/core/LayeredRegistryAccess +CL: net/minecraft/core/MappedRegistry net/minecraft/core/MappedRegistry +CL: net/minecraft/core/MappedRegistry$1 net/minecraft/core/MappedRegistry$1 +CL: net/minecraft/core/MappedRegistry$2 net/minecraft/core/MappedRegistry$2 +CL: net/minecraft/core/NonNullList net/minecraft/core/NonNullList +CL: net/minecraft/core/Position net/minecraft/core/Position +CL: net/minecraft/core/PositionImpl net/minecraft/core/PositionImpl +CL: net/minecraft/core/QuartPos net/minecraft/core/QuartPos +CL: net/minecraft/core/Registry net/minecraft/core/Registry +CL: net/minecraft/core/Registry$1 net/minecraft/core/Registry$1 +CL: net/minecraft/core/Registry$2 net/minecraft/core/Registry$2 +CL: net/minecraft/core/RegistryAccess net/minecraft/core/RegistryAccess +CL: net/minecraft/core/RegistryAccess$1 net/minecraft/core/RegistryAccess$1 +CL: net/minecraft/core/RegistryAccess$1FrozenAccess net/minecraft/core/RegistryAccess$1FrozenAccess +CL: net/minecraft/core/RegistryAccess$Frozen net/minecraft/core/RegistryAccess$Frozen +CL: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess net/minecraft/core/RegistryAccess$ImmutableRegistryAccess +CL: net/minecraft/core/RegistryAccess$RegistryEntry net/minecraft/core/RegistryAccess$RegistryEntry +CL: net/minecraft/core/RegistryCodecs net/minecraft/core/RegistryCodecs +CL: net/minecraft/core/RegistryCodecs$RegistryEntry net/minecraft/core/RegistryCodecs$RegistryEntry +CL: net/minecraft/core/RegistrySetBuilder net/minecraft/core/RegistrySetBuilder +CL: net/minecraft/core/RegistrySetBuilder$1 net/minecraft/core/RegistrySetBuilder$1 +CL: net/minecraft/core/RegistrySetBuilder$BuildState net/minecraft/core/RegistrySetBuilder$BuildState +CL: net/minecraft/core/RegistrySetBuilder$BuildState$1 net/minecraft/core/RegistrySetBuilder$BuildState$1 +CL: net/minecraft/core/RegistrySetBuilder$CompositeOwner net/minecraft/core/RegistrySetBuilder$CompositeOwner +CL: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup net/minecraft/core/RegistrySetBuilder$EmptyTagLookup +CL: net/minecraft/core/RegistrySetBuilder$RegisteredValue net/minecraft/core/RegistrySetBuilder$RegisteredValue +CL: net/minecraft/core/RegistrySetBuilder$RegistryBootstrap net/minecraft/core/RegistrySetBuilder$RegistryBootstrap +CL: net/minecraft/core/RegistrySetBuilder$RegistryContents net/minecraft/core/RegistrySetBuilder$RegistryContents +CL: net/minecraft/core/RegistrySetBuilder$RegistryContents$1 net/minecraft/core/RegistrySetBuilder$RegistryContents$1 +CL: net/minecraft/core/RegistrySetBuilder$RegistryStub net/minecraft/core/RegistrySetBuilder$RegistryStub +CL: net/minecraft/core/RegistrySetBuilder$UniversalLookup net/minecraft/core/RegistrySetBuilder$UniversalLookup +CL: net/minecraft/core/RegistrySetBuilder$ValueAndHolder net/minecraft/core/RegistrySetBuilder$ValueAndHolder +CL: net/minecraft/core/RegistrySynchronization net/minecraft/core/RegistrySynchronization +CL: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData net/minecraft/core/RegistrySynchronization$NetworkedRegistryData +CL: net/minecraft/core/Rotations net/minecraft/core/Rotations +CL: net/minecraft/core/SectionPos net/minecraft/core/SectionPos +CL: net/minecraft/core/SectionPos$1 net/minecraft/core/SectionPos$1 +CL: net/minecraft/core/UUIDUtil net/minecraft/core/UUIDUtil +CL: net/minecraft/core/Vec3i net/minecraft/core/Vec3i +CL: net/minecraft/core/WritableRegistry net/minecraft/core/WritableRegistry +CL: net/minecraft/core/cauldron/CauldronInteraction net/minecraft/core/cauldron/CauldronInteraction +CL: net/minecraft/core/cauldron/package-info net/minecraft/core/cauldron/package-info +CL: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior +CL: net/minecraft/core/dispenser/BoatDispenseItemBehavior net/minecraft/core/dispenser/BoatDispenseItemBehavior +CL: net/minecraft/core/dispenser/DefaultDispenseItemBehavior net/minecraft/core/dispenser/DefaultDispenseItemBehavior +CL: net/minecraft/core/dispenser/DispenseItemBehavior net/minecraft/core/dispenser/DispenseItemBehavior +CL: net/minecraft/core/dispenser/DispenseItemBehavior$1 net/minecraft/core/dispenser/DispenseItemBehavior$1 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$10 net/minecraft/core/dispenser/DispenseItemBehavior$10 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$11 net/minecraft/core/dispenser/DispenseItemBehavior$11 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$12 net/minecraft/core/dispenser/DispenseItemBehavior$12 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$13 net/minecraft/core/dispenser/DispenseItemBehavior$13 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$14 net/minecraft/core/dispenser/DispenseItemBehavior$14 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$15 net/minecraft/core/dispenser/DispenseItemBehavior$15 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$16 net/minecraft/core/dispenser/DispenseItemBehavior$16 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$17 net/minecraft/core/dispenser/DispenseItemBehavior$17 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$18 net/minecraft/core/dispenser/DispenseItemBehavior$18 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$19 net/minecraft/core/dispenser/DispenseItemBehavior$19 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$2 net/minecraft/core/dispenser/DispenseItemBehavior$2 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$20 net/minecraft/core/dispenser/DispenseItemBehavior$20 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$21 net/minecraft/core/dispenser/DispenseItemBehavior$21 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$22 net/minecraft/core/dispenser/DispenseItemBehavior$22 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$23 net/minecraft/core/dispenser/DispenseItemBehavior$23 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$24 net/minecraft/core/dispenser/DispenseItemBehavior$24 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$25 net/minecraft/core/dispenser/DispenseItemBehavior$25 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$26 net/minecraft/core/dispenser/DispenseItemBehavior$26 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$27 net/minecraft/core/dispenser/DispenseItemBehavior$27 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$3 net/minecraft/core/dispenser/DispenseItemBehavior$3 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$4 net/minecraft/core/dispenser/DispenseItemBehavior$4 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$5 net/minecraft/core/dispenser/DispenseItemBehavior$5 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$6 net/minecraft/core/dispenser/DispenseItemBehavior$6 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$7 net/minecraft/core/dispenser/DispenseItemBehavior$7 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$7$1 net/minecraft/core/dispenser/DispenseItemBehavior$7$1 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$8 net/minecraft/core/dispenser/DispenseItemBehavior$8 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$8$1 net/minecraft/core/dispenser/DispenseItemBehavior$8$1 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$9 net/minecraft/core/dispenser/DispenseItemBehavior$9 +CL: net/minecraft/core/dispenser/OptionalDispenseItemBehavior net/minecraft/core/dispenser/OptionalDispenseItemBehavior +CL: net/minecraft/core/dispenser/ShearsDispenseItemBehavior net/minecraft/core/dispenser/ShearsDispenseItemBehavior +CL: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior +CL: net/minecraft/core/dispenser/package-info net/minecraft/core/dispenser/package-info +CL: net/minecraft/core/package-info net/minecraft/core/package-info +CL: net/minecraft/core/particles/BlockParticleOption net/minecraft/core/particles/BlockParticleOption +CL: net/minecraft/core/particles/BlockParticleOption$1 net/minecraft/core/particles/BlockParticleOption$1 +CL: net/minecraft/core/particles/DustColorTransitionOptions net/minecraft/core/particles/DustColorTransitionOptions +CL: net/minecraft/core/particles/DustColorTransitionOptions$1 net/minecraft/core/particles/DustColorTransitionOptions$1 +CL: net/minecraft/core/particles/DustParticleOptions net/minecraft/core/particles/DustParticleOptions +CL: net/minecraft/core/particles/DustParticleOptions$1 net/minecraft/core/particles/DustParticleOptions$1 +CL: net/minecraft/core/particles/DustParticleOptionsBase net/minecraft/core/particles/DustParticleOptionsBase +CL: net/minecraft/core/particles/ItemParticleOption net/minecraft/core/particles/ItemParticleOption +CL: net/minecraft/core/particles/ItemParticleOption$1 net/minecraft/core/particles/ItemParticleOption$1 +CL: net/minecraft/core/particles/ParticleGroup net/minecraft/core/particles/ParticleGroup +CL: net/minecraft/core/particles/ParticleOptions net/minecraft/core/particles/ParticleOptions +CL: net/minecraft/core/particles/ParticleOptions$Deserializer net/minecraft/core/particles/ParticleOptions$Deserializer +CL: net/minecraft/core/particles/ParticleType net/minecraft/core/particles/ParticleType +CL: net/minecraft/core/particles/ParticleTypes net/minecraft/core/particles/ParticleTypes +CL: net/minecraft/core/particles/ParticleTypes$1 net/minecraft/core/particles/ParticleTypes$1 +CL: net/minecraft/core/particles/SculkChargeParticleOptions net/minecraft/core/particles/SculkChargeParticleOptions +CL: net/minecraft/core/particles/SculkChargeParticleOptions$1 net/minecraft/core/particles/SculkChargeParticleOptions$1 +CL: net/minecraft/core/particles/ShriekParticleOption net/minecraft/core/particles/ShriekParticleOption +CL: net/minecraft/core/particles/ShriekParticleOption$1 net/minecraft/core/particles/ShriekParticleOption$1 +CL: net/minecraft/core/particles/SimpleParticleType net/minecraft/core/particles/SimpleParticleType +CL: net/minecraft/core/particles/SimpleParticleType$1 net/minecraft/core/particles/SimpleParticleType$1 +CL: net/minecraft/core/particles/VibrationParticleOption net/minecraft/core/particles/VibrationParticleOption +CL: net/minecraft/core/particles/VibrationParticleOption$1 net/minecraft/core/particles/VibrationParticleOption$1 +CL: net/minecraft/core/particles/package-info net/minecraft/core/particles/package-info +CL: net/minecraft/core/registries/BuiltInRegistries net/minecraft/core/registries/BuiltInRegistries +CL: net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap +CL: net/minecraft/core/registries/Registries net/minecraft/core/registries/Registries +CL: net/minecraft/core/registries/package-info net/minecraft/core/registries/package-info +CL: net/minecraft/data/BlockFamilies net/minecraft/data/BlockFamilies +CL: net/minecraft/data/BlockFamily net/minecraft/data/BlockFamily +CL: net/minecraft/data/BlockFamily$Builder net/minecraft/data/BlockFamily$Builder +CL: net/minecraft/data/BlockFamily$Variant net/minecraft/data/BlockFamily$Variant +CL: net/minecraft/data/CachedOutput net/minecraft/data/CachedOutput +CL: net/minecraft/data/DataGenerator net/minecraft/data/DataGenerator +CL: net/minecraft/data/DataGenerator$PackGenerator net/minecraft/data/DataGenerator$PackGenerator +CL: net/minecraft/data/DataProvider net/minecraft/data/DataProvider +CL: net/minecraft/data/DataProvider$Factory net/minecraft/data/DataProvider$Factory +CL: net/minecraft/data/HashCache net/minecraft/data/HashCache +CL: net/minecraft/data/HashCache$CacheUpdater net/minecraft/data/HashCache$CacheUpdater +CL: net/minecraft/data/HashCache$ProviderCache net/minecraft/data/HashCache$ProviderCache +CL: net/minecraft/data/HashCache$ProviderCacheBuilder net/minecraft/data/HashCache$ProviderCacheBuilder +CL: net/minecraft/data/HashCache$UpdateFunction net/minecraft/data/HashCache$UpdateFunction +CL: net/minecraft/data/HashCache$UpdateResult net/minecraft/data/HashCache$UpdateResult +CL: net/minecraft/data/Main net/minecraft/data/Main +CL: net/minecraft/data/PackOutput net/minecraft/data/PackOutput +CL: net/minecraft/data/PackOutput$PathProvider net/minecraft/data/PackOutput$PathProvider +CL: net/minecraft/data/PackOutput$Target net/minecraft/data/PackOutput$Target +CL: net/minecraft/data/advancements/AdvancementProvider net/minecraft/data/advancements/AdvancementProvider +CL: net/minecraft/data/advancements/AdvancementSubProvider net/minecraft/data/advancements/AdvancementSubProvider +CL: net/minecraft/data/advancements/package-info net/minecraft/data/advancements/package-info +CL: net/minecraft/data/advancements/packs/VanillaAdvancementProvider net/minecraft/data/advancements/packs/VanillaAdvancementProvider +CL: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements net/minecraft/data/advancements/packs/VanillaAdventureAdvancements +CL: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements +CL: net/minecraft/data/advancements/packs/VanillaNetherAdvancements net/minecraft/data/advancements/packs/VanillaNetherAdvancements +CL: net/minecraft/data/advancements/packs/VanillaStoryAdvancements net/minecraft/data/advancements/packs/VanillaStoryAdvancements +CL: net/minecraft/data/advancements/packs/VanillaTheEndAdvancements net/minecraft/data/advancements/packs/VanillaTheEndAdvancements +CL: net/minecraft/data/advancements/packs/package-info net/minecraft/data/advancements/packs/package-info +CL: net/minecraft/data/info/BiomeParametersDumpReport net/minecraft/data/info/BiomeParametersDumpReport +CL: net/minecraft/data/info/BlockListReport net/minecraft/data/info/BlockListReport +CL: net/minecraft/data/info/CommandsReport net/minecraft/data/info/CommandsReport +CL: net/minecraft/data/info/RegistryDumpReport net/minecraft/data/info/RegistryDumpReport +CL: net/minecraft/data/info/package-info net/minecraft/data/info/package-info +CL: net/minecraft/data/loot/BlockLootSubProvider net/minecraft/data/loot/BlockLootSubProvider +CL: net/minecraft/data/loot/EntityLootSubProvider net/minecraft/data/loot/EntityLootSubProvider +CL: net/minecraft/data/loot/LootTableProvider net/minecraft/data/loot/LootTableProvider +CL: net/minecraft/data/loot/LootTableProvider$1 net/minecraft/data/loot/LootTableProvider$1 +CL: net/minecraft/data/loot/LootTableProvider$SubProviderEntry net/minecraft/data/loot/LootTableProvider$SubProviderEntry +CL: net/minecraft/data/loot/LootTableSubProvider net/minecraft/data/loot/LootTableSubProvider +CL: net/minecraft/data/loot/package-info net/minecraft/data/loot/package-info +CL: net/minecraft/data/loot/packs/VanillaArchaeologyLoot net/minecraft/data/loot/packs/VanillaArchaeologyLoot +CL: net/minecraft/data/loot/packs/VanillaBlockLoot net/minecraft/data/loot/packs/VanillaBlockLoot +CL: net/minecraft/data/loot/packs/VanillaChestLoot net/minecraft/data/loot/packs/VanillaChestLoot +CL: net/minecraft/data/loot/packs/VanillaEntityLoot net/minecraft/data/loot/packs/VanillaEntityLoot +CL: net/minecraft/data/loot/packs/VanillaFishingLoot net/minecraft/data/loot/packs/VanillaFishingLoot +CL: net/minecraft/data/loot/packs/VanillaGiftLoot net/minecraft/data/loot/packs/VanillaGiftLoot +CL: net/minecraft/data/loot/packs/VanillaLootTableProvider net/minecraft/data/loot/packs/VanillaLootTableProvider +CL: net/minecraft/data/loot/packs/VanillaPiglinBarterLoot net/minecraft/data/loot/packs/VanillaPiglinBarterLoot +CL: net/minecraft/data/loot/packs/package-info net/minecraft/data/loot/packs/package-info +CL: net/minecraft/data/metadata/PackMetadataGenerator net/minecraft/data/metadata/PackMetadataGenerator +CL: net/minecraft/data/metadata/package-info net/minecraft/data/metadata/package-info +CL: net/minecraft/data/models/BlockModelGenerators net/minecraft/data/models/BlockModelGenerators +CL: net/minecraft/data/models/BlockModelGenerators$1 net/minecraft/data/models/BlockModelGenerators$1 +CL: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator +CL: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider +CL: net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier +CL: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey +CL: net/minecraft/data/models/BlockModelGenerators$TintState net/minecraft/data/models/BlockModelGenerators$TintState +CL: net/minecraft/data/models/BlockModelGenerators$WoodProvider net/minecraft/data/models/BlockModelGenerators$WoodProvider +CL: net/minecraft/data/models/ItemModelGenerators net/minecraft/data/models/ItemModelGenerators +CL: net/minecraft/data/models/ItemModelGenerators$TrimModelData net/minecraft/data/models/ItemModelGenerators$TrimModelData +CL: net/minecraft/data/models/ModelProvider net/minecraft/data/models/ModelProvider +CL: net/minecraft/data/models/blockstates/BlockStateGenerator net/minecraft/data/models/blockstates/BlockStateGenerator +CL: net/minecraft/data/models/blockstates/Condition net/minecraft/data/models/blockstates/Condition +CL: net/minecraft/data/models/blockstates/Condition$CompositeCondition net/minecraft/data/models/blockstates/Condition$CompositeCondition +CL: net/minecraft/data/models/blockstates/Condition$Operation net/minecraft/data/models/blockstates/Condition$Operation +CL: net/minecraft/data/models/blockstates/Condition$TerminalCondition net/minecraft/data/models/blockstates/Condition$TerminalCondition +CL: net/minecraft/data/models/blockstates/MultiPartGenerator net/minecraft/data/models/blockstates/MultiPartGenerator +CL: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry +CL: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry net/minecraft/data/models/blockstates/MultiPartGenerator$Entry +CL: net/minecraft/data/models/blockstates/MultiVariantGenerator net/minecraft/data/models/blockstates/MultiVariantGenerator +CL: net/minecraft/data/models/blockstates/PropertyDispatch net/minecraft/data/models/blockstates/PropertyDispatch +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C1 net/minecraft/data/models/blockstates/PropertyDispatch$C1 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C2 net/minecraft/data/models/blockstates/PropertyDispatch$C2 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C3 net/minecraft/data/models/blockstates/PropertyDispatch$C3 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C4 net/minecraft/data/models/blockstates/PropertyDispatch$C4 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C5 net/minecraft/data/models/blockstates/PropertyDispatch$C5 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction +CL: net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction +CL: net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction +CL: net/minecraft/data/models/blockstates/Selector net/minecraft/data/models/blockstates/Selector +CL: net/minecraft/data/models/blockstates/Variant net/minecraft/data/models/blockstates/Variant +CL: net/minecraft/data/models/blockstates/VariantProperties net/minecraft/data/models/blockstates/VariantProperties +CL: net/minecraft/data/models/blockstates/VariantProperties$Rotation net/minecraft/data/models/blockstates/VariantProperties$Rotation +CL: net/minecraft/data/models/blockstates/VariantProperty net/minecraft/data/models/blockstates/VariantProperty +CL: net/minecraft/data/models/blockstates/VariantProperty$Value net/minecraft/data/models/blockstates/VariantProperty$Value +CL: net/minecraft/data/models/blockstates/package-info net/minecraft/data/models/blockstates/package-info +CL: net/minecraft/data/models/model/DelegatedModel net/minecraft/data/models/model/DelegatedModel +CL: net/minecraft/data/models/model/ModelLocationUtils net/minecraft/data/models/model/ModelLocationUtils +CL: net/minecraft/data/models/model/ModelTemplate net/minecraft/data/models/model/ModelTemplate +CL: net/minecraft/data/models/model/ModelTemplate$JsonFactory net/minecraft/data/models/model/ModelTemplate$JsonFactory +CL: net/minecraft/data/models/model/ModelTemplates net/minecraft/data/models/model/ModelTemplates +CL: net/minecraft/data/models/model/TextureMapping net/minecraft/data/models/model/TextureMapping +CL: net/minecraft/data/models/model/TextureSlot net/minecraft/data/models/model/TextureSlot +CL: net/minecraft/data/models/model/TexturedModel net/minecraft/data/models/model/TexturedModel +CL: net/minecraft/data/models/model/TexturedModel$Provider net/minecraft/data/models/model/TexturedModel$Provider +CL: net/minecraft/data/models/model/package-info net/minecraft/data/models/model/package-info +CL: net/minecraft/data/models/package-info net/minecraft/data/models/package-info +CL: net/minecraft/data/package-info net/minecraft/data/package-info +CL: net/minecraft/data/recipes/CraftingRecipeBuilder net/minecraft/data/recipes/CraftingRecipeBuilder +CL: net/minecraft/data/recipes/CraftingRecipeBuilder$1 net/minecraft/data/recipes/CraftingRecipeBuilder$1 +CL: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult +CL: net/minecraft/data/recipes/FinishedRecipe net/minecraft/data/recipes/FinishedRecipe +CL: net/minecraft/data/recipes/RecipeBuilder net/minecraft/data/recipes/RecipeBuilder +CL: net/minecraft/data/recipes/RecipeCategory net/minecraft/data/recipes/RecipeCategory +CL: net/minecraft/data/recipes/RecipeProvider net/minecraft/data/recipes/RecipeProvider +CL: net/minecraft/data/recipes/ShapedRecipeBuilder net/minecraft/data/recipes/ShapedRecipeBuilder +CL: net/minecraft/data/recipes/ShapedRecipeBuilder$Result net/minecraft/data/recipes/ShapedRecipeBuilder$Result +CL: net/minecraft/data/recipes/ShapelessRecipeBuilder net/minecraft/data/recipes/ShapelessRecipeBuilder +CL: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result net/minecraft/data/recipes/ShapelessRecipeBuilder$Result +CL: net/minecraft/data/recipes/SimpleCookingRecipeBuilder net/minecraft/data/recipes/SimpleCookingRecipeBuilder +CL: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result +CL: net/minecraft/data/recipes/SingleItemRecipeBuilder net/minecraft/data/recipes/SingleItemRecipeBuilder +CL: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result net/minecraft/data/recipes/SingleItemRecipeBuilder$Result +CL: net/minecraft/data/recipes/SmithingTransformRecipeBuilder net/minecraft/data/recipes/SmithingTransformRecipeBuilder +CL: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result +CL: net/minecraft/data/recipes/SmithingTrimRecipeBuilder net/minecraft/data/recipes/SmithingTrimRecipeBuilder +CL: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result +CL: net/minecraft/data/recipes/SpecialRecipeBuilder net/minecraft/data/recipes/SpecialRecipeBuilder +CL: net/minecraft/data/recipes/SpecialRecipeBuilder$1 net/minecraft/data/recipes/SpecialRecipeBuilder$1 +CL: net/minecraft/data/recipes/package-info net/minecraft/data/recipes/package-info +CL: net/minecraft/data/recipes/packs/BundleRecipeProvider net/minecraft/data/recipes/packs/BundleRecipeProvider +CL: net/minecraft/data/recipes/packs/VanillaRecipeProvider net/minecraft/data/recipes/packs/VanillaRecipeProvider +CL: net/minecraft/data/recipes/packs/package-info net/minecraft/data/recipes/packs/package-info +CL: net/minecraft/data/registries/RegistriesDatapackGenerator net/minecraft/data/registries/RegistriesDatapackGenerator +CL: net/minecraft/data/registries/VanillaRegistries net/minecraft/data/registries/VanillaRegistries +CL: net/minecraft/data/registries/package-info net/minecraft/data/registries/package-info +CL: net/minecraft/data/structures/NbtToSnbt net/minecraft/data/structures/NbtToSnbt +CL: net/minecraft/data/structures/SnbtToNbt net/minecraft/data/structures/SnbtToNbt +CL: net/minecraft/data/structures/SnbtToNbt$Filter net/minecraft/data/structures/SnbtToNbt$Filter +CL: net/minecraft/data/structures/SnbtToNbt$StructureConversionException net/minecraft/data/structures/SnbtToNbt$StructureConversionException +CL: net/minecraft/data/structures/SnbtToNbt$TaskResult net/minecraft/data/structures/SnbtToNbt$TaskResult +CL: net/minecraft/data/structures/StructureUpdater net/minecraft/data/structures/StructureUpdater +CL: net/minecraft/data/structures/package-info net/minecraft/data/structures/package-info +CL: net/minecraft/data/tags/BannerPatternTagsProvider net/minecraft/data/tags/BannerPatternTagsProvider +CL: net/minecraft/data/tags/BiomeTagsProvider net/minecraft/data/tags/BiomeTagsProvider +CL: net/minecraft/data/tags/CatVariantTagsProvider net/minecraft/data/tags/CatVariantTagsProvider +CL: net/minecraft/data/tags/DamageTypeTagsProvider net/minecraft/data/tags/DamageTypeTagsProvider +CL: net/minecraft/data/tags/EntityTypeTagsProvider net/minecraft/data/tags/EntityTypeTagsProvider +CL: net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider +CL: net/minecraft/data/tags/FluidTagsProvider net/minecraft/data/tags/FluidTagsProvider +CL: net/minecraft/data/tags/GameEventTagsProvider net/minecraft/data/tags/GameEventTagsProvider +CL: net/minecraft/data/tags/InstrumentTagsProvider net/minecraft/data/tags/InstrumentTagsProvider +CL: net/minecraft/data/tags/IntrinsicHolderTagsProvider net/minecraft/data/tags/IntrinsicHolderTagsProvider +CL: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender +CL: net/minecraft/data/tags/ItemTagsProvider net/minecraft/data/tags/ItemTagsProvider +CL: net/minecraft/data/tags/PaintingVariantTagsProvider net/minecraft/data/tags/PaintingVariantTagsProvider +CL: net/minecraft/data/tags/PoiTypeTagsProvider net/minecraft/data/tags/PoiTypeTagsProvider +CL: net/minecraft/data/tags/StructureTagsProvider net/minecraft/data/tags/StructureTagsProvider +CL: net/minecraft/data/tags/TagsProvider net/minecraft/data/tags/TagsProvider +CL: net/minecraft/data/tags/TagsProvider$1CombinedData net/minecraft/data/tags/TagsProvider$1CombinedData +CL: net/minecraft/data/tags/TagsProvider$TagAppender net/minecraft/data/tags/TagsProvider$TagAppender +CL: net/minecraft/data/tags/TagsProvider$TagLookup net/minecraft/data/tags/TagsProvider$TagLookup +CL: net/minecraft/data/tags/VanillaBlockTagsProvider net/minecraft/data/tags/VanillaBlockTagsProvider +CL: net/minecraft/data/tags/VanillaItemTagsProvider net/minecraft/data/tags/VanillaItemTagsProvider +CL: net/minecraft/data/tags/WorldPresetTagsProvider net/minecraft/data/tags/WorldPresetTagsProvider +CL: net/minecraft/data/tags/package-info net/minecraft/data/tags/package-info +CL: net/minecraft/data/worldgen/AncientCityStructurePieces net/minecraft/data/worldgen/AncientCityStructurePieces +CL: net/minecraft/data/worldgen/AncientCityStructurePools net/minecraft/data/worldgen/AncientCityStructurePools +CL: net/minecraft/data/worldgen/BastionBridgePools net/minecraft/data/worldgen/BastionBridgePools +CL: net/minecraft/data/worldgen/BastionHoglinStablePools net/minecraft/data/worldgen/BastionHoglinStablePools +CL: net/minecraft/data/worldgen/BastionHousingUnitsPools net/minecraft/data/worldgen/BastionHousingUnitsPools +CL: net/minecraft/data/worldgen/BastionPieces net/minecraft/data/worldgen/BastionPieces +CL: net/minecraft/data/worldgen/BastionSharedPools net/minecraft/data/worldgen/BastionSharedPools +CL: net/minecraft/data/worldgen/BastionTreasureRoomPools net/minecraft/data/worldgen/BastionTreasureRoomPools +CL: net/minecraft/data/worldgen/BiomeDefaultFeatures net/minecraft/data/worldgen/BiomeDefaultFeatures +CL: net/minecraft/data/worldgen/BootstapContext net/minecraft/data/worldgen/BootstapContext +CL: net/minecraft/data/worldgen/Carvers net/minecraft/data/worldgen/Carvers +CL: net/minecraft/data/worldgen/DesertVillagePools net/minecraft/data/worldgen/DesertVillagePools +CL: net/minecraft/data/worldgen/DimensionTypes net/minecraft/data/worldgen/DimensionTypes +CL: net/minecraft/data/worldgen/NoiseData net/minecraft/data/worldgen/NoiseData +CL: net/minecraft/data/worldgen/PillagerOutpostPools net/minecraft/data/worldgen/PillagerOutpostPools +CL: net/minecraft/data/worldgen/PlainVillagePools net/minecraft/data/worldgen/PlainVillagePools +CL: net/minecraft/data/worldgen/Pools net/minecraft/data/worldgen/Pools +CL: net/minecraft/data/worldgen/ProcessorLists net/minecraft/data/worldgen/ProcessorLists +CL: net/minecraft/data/worldgen/SavannaVillagePools net/minecraft/data/worldgen/SavannaVillagePools +CL: net/minecraft/data/worldgen/SnowyVillagePools net/minecraft/data/worldgen/SnowyVillagePools +CL: net/minecraft/data/worldgen/StructureSets net/minecraft/data/worldgen/StructureSets +CL: net/minecraft/data/worldgen/Structures net/minecraft/data/worldgen/Structures +CL: net/minecraft/data/worldgen/SurfaceRuleData net/minecraft/data/worldgen/SurfaceRuleData +CL: net/minecraft/data/worldgen/TaigaVillagePools net/minecraft/data/worldgen/TaigaVillagePools +CL: net/minecraft/data/worldgen/TerrainProvider net/minecraft/data/worldgen/TerrainProvider +CL: net/minecraft/data/worldgen/TrailRuinsStructurePools net/minecraft/data/worldgen/TrailRuinsStructurePools +CL: net/minecraft/data/worldgen/VillagePools net/minecraft/data/worldgen/VillagePools +CL: net/minecraft/data/worldgen/biome/BiomeData net/minecraft/data/worldgen/biome/BiomeData +CL: net/minecraft/data/worldgen/biome/EndBiomes net/minecraft/data/worldgen/biome/EndBiomes +CL: net/minecraft/data/worldgen/biome/NetherBiomes net/minecraft/data/worldgen/biome/NetherBiomes +CL: net/minecraft/data/worldgen/biome/OverworldBiomes net/minecraft/data/worldgen/biome/OverworldBiomes +CL: net/minecraft/data/worldgen/biome/package-info net/minecraft/data/worldgen/biome/package-info +CL: net/minecraft/data/worldgen/features/AquaticFeatures net/minecraft/data/worldgen/features/AquaticFeatures +CL: net/minecraft/data/worldgen/features/CaveFeatures net/minecraft/data/worldgen/features/CaveFeatures +CL: net/minecraft/data/worldgen/features/EndFeatures net/minecraft/data/worldgen/features/EndFeatures +CL: net/minecraft/data/worldgen/features/FeatureUtils net/minecraft/data/worldgen/features/FeatureUtils +CL: net/minecraft/data/worldgen/features/MiscOverworldFeatures net/minecraft/data/worldgen/features/MiscOverworldFeatures +CL: net/minecraft/data/worldgen/features/NetherFeatures net/minecraft/data/worldgen/features/NetherFeatures +CL: net/minecraft/data/worldgen/features/OreFeatures net/minecraft/data/worldgen/features/OreFeatures +CL: net/minecraft/data/worldgen/features/PileFeatures net/minecraft/data/worldgen/features/PileFeatures +CL: net/minecraft/data/worldgen/features/TreeFeatures net/minecraft/data/worldgen/features/TreeFeatures +CL: net/minecraft/data/worldgen/features/VegetationFeatures net/minecraft/data/worldgen/features/VegetationFeatures +CL: net/minecraft/data/worldgen/features/package-info net/minecraft/data/worldgen/features/package-info +CL: net/minecraft/data/worldgen/package-info net/minecraft/data/worldgen/package-info +CL: net/minecraft/data/worldgen/placement/AquaticPlacements net/minecraft/data/worldgen/placement/AquaticPlacements +CL: net/minecraft/data/worldgen/placement/CavePlacements net/minecraft/data/worldgen/placement/CavePlacements +CL: net/minecraft/data/worldgen/placement/EndPlacements net/minecraft/data/worldgen/placement/EndPlacements +CL: net/minecraft/data/worldgen/placement/MiscOverworldPlacements net/minecraft/data/worldgen/placement/MiscOverworldPlacements +CL: net/minecraft/data/worldgen/placement/NetherPlacements net/minecraft/data/worldgen/placement/NetherPlacements +CL: net/minecraft/data/worldgen/placement/OrePlacements net/minecraft/data/worldgen/placement/OrePlacements +CL: net/minecraft/data/worldgen/placement/PlacementUtils net/minecraft/data/worldgen/placement/PlacementUtils +CL: net/minecraft/data/worldgen/placement/TreePlacements net/minecraft/data/worldgen/placement/TreePlacements +CL: net/minecraft/data/worldgen/placement/VegetationPlacements net/minecraft/data/worldgen/placement/VegetationPlacements +CL: net/minecraft/data/worldgen/placement/VillagePlacements net/minecraft/data/worldgen/placement/VillagePlacements +CL: net/minecraft/data/worldgen/placement/package-info net/minecraft/data/worldgen/placement/package-info +CL: net/minecraft/gametest/framework/AfterBatch net/minecraft/gametest/framework/AfterBatch +CL: net/minecraft/gametest/framework/BeforeBatch net/minecraft/gametest/framework/BeforeBatch +CL: net/minecraft/gametest/framework/ExhaustedAttemptsException net/minecraft/gametest/framework/ExhaustedAttemptsException +CL: net/minecraft/gametest/framework/GameTest net/minecraft/gametest/framework/GameTest +CL: net/minecraft/gametest/framework/GameTestAssertException net/minecraft/gametest/framework/GameTestAssertException +CL: net/minecraft/gametest/framework/GameTestAssertPosException net/minecraft/gametest/framework/GameTestAssertPosException +CL: net/minecraft/gametest/framework/GameTestBatch net/minecraft/gametest/framework/GameTestBatch +CL: net/minecraft/gametest/framework/GameTestBatchRunner net/minecraft/gametest/framework/GameTestBatchRunner +CL: net/minecraft/gametest/framework/GameTestBatchRunner$1 net/minecraft/gametest/framework/GameTestBatchRunner$1 +CL: net/minecraft/gametest/framework/GameTestEvent net/minecraft/gametest/framework/GameTestEvent +CL: net/minecraft/gametest/framework/GameTestGenerator net/minecraft/gametest/framework/GameTestGenerator +CL: net/minecraft/gametest/framework/GameTestHelper net/minecraft/gametest/framework/GameTestHelper +CL: net/minecraft/gametest/framework/GameTestHelper$1 net/minecraft/gametest/framework/GameTestHelper$1 +CL: net/minecraft/gametest/framework/GameTestHelper$2 net/minecraft/gametest/framework/GameTestHelper$2 +CL: net/minecraft/gametest/framework/GameTestHelper$3 net/minecraft/gametest/framework/GameTestHelper$3 +CL: net/minecraft/gametest/framework/GameTestInfo net/minecraft/gametest/framework/GameTestInfo +CL: net/minecraft/gametest/framework/GameTestListener net/minecraft/gametest/framework/GameTestListener +CL: net/minecraft/gametest/framework/GameTestRegistry net/minecraft/gametest/framework/GameTestRegistry +CL: net/minecraft/gametest/framework/GameTestRunner net/minecraft/gametest/framework/GameTestRunner +CL: net/minecraft/gametest/framework/GameTestSequence net/minecraft/gametest/framework/GameTestSequence +CL: net/minecraft/gametest/framework/GameTestSequence$Condition net/minecraft/gametest/framework/GameTestSequence$Condition +CL: net/minecraft/gametest/framework/GameTestServer net/minecraft/gametest/framework/GameTestServer +CL: net/minecraft/gametest/framework/GameTestServer$1 net/minecraft/gametest/framework/GameTestServer$1 +CL: net/minecraft/gametest/framework/GameTestTicker net/minecraft/gametest/framework/GameTestTicker +CL: net/minecraft/gametest/framework/GameTestTimeoutException net/minecraft/gametest/framework/GameTestTimeoutException +CL: net/minecraft/gametest/framework/GlobalTestReporter net/minecraft/gametest/framework/GlobalTestReporter +CL: net/minecraft/gametest/framework/JUnitLikeTestReporter net/minecraft/gametest/framework/JUnitLikeTestReporter +CL: net/minecraft/gametest/framework/LogTestReporter net/minecraft/gametest/framework/LogTestReporter +CL: net/minecraft/gametest/framework/MultipleTestTracker net/minecraft/gametest/framework/MultipleTestTracker +CL: net/minecraft/gametest/framework/MultipleTestTracker$1 net/minecraft/gametest/framework/MultipleTestTracker$1 +CL: net/minecraft/gametest/framework/ReportGameListener net/minecraft/gametest/framework/ReportGameListener +CL: net/minecraft/gametest/framework/StructureUtils net/minecraft/gametest/framework/StructureUtils +CL: net/minecraft/gametest/framework/StructureUtils$1 net/minecraft/gametest/framework/StructureUtils$1 +CL: net/minecraft/gametest/framework/TeamcityTestReporter net/minecraft/gametest/framework/TeamcityTestReporter +CL: net/minecraft/gametest/framework/TestClassNameArgument net/minecraft/gametest/framework/TestClassNameArgument +CL: net/minecraft/gametest/framework/TestCommand net/minecraft/gametest/framework/TestCommand +CL: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer +CL: net/minecraft/gametest/framework/TestFunction net/minecraft/gametest/framework/TestFunction +CL: net/minecraft/gametest/framework/TestFunctionArgument net/minecraft/gametest/framework/TestFunctionArgument +CL: net/minecraft/gametest/framework/TestReporter net/minecraft/gametest/framework/TestReporter +CL: net/minecraft/gametest/framework/package-info net/minecraft/gametest/framework/package-info +CL: net/minecraft/locale/Language net/minecraft/locale/Language +CL: net/minecraft/locale/Language$1 net/minecraft/locale/Language$1 +CL: net/minecraft/locale/package-info net/minecraft/locale/package-info +CL: net/minecraft/nbt/ByteArrayTag net/minecraft/nbt/ByteArrayTag +CL: net/minecraft/nbt/ByteArrayTag$1 net/minecraft/nbt/ByteArrayTag$1 +CL: net/minecraft/nbt/ByteTag net/minecraft/nbt/ByteTag +CL: net/minecraft/nbt/ByteTag$1 net/minecraft/nbt/ByteTag$1 +CL: net/minecraft/nbt/ByteTag$Cache net/minecraft/nbt/ByteTag$Cache +CL: net/minecraft/nbt/CollectionTag net/minecraft/nbt/CollectionTag +CL: net/minecraft/nbt/CompoundTag net/minecraft/nbt/CompoundTag +CL: net/minecraft/nbt/CompoundTag$1 net/minecraft/nbt/CompoundTag$1 +CL: net/minecraft/nbt/CompoundTag$2 net/minecraft/nbt/CompoundTag$2 +CL: net/minecraft/nbt/DoubleTag net/minecraft/nbt/DoubleTag +CL: net/minecraft/nbt/DoubleTag$1 net/minecraft/nbt/DoubleTag$1 +CL: net/minecraft/nbt/EndTag net/minecraft/nbt/EndTag +CL: net/minecraft/nbt/EndTag$1 net/minecraft/nbt/EndTag$1 +CL: net/minecraft/nbt/FloatTag net/minecraft/nbt/FloatTag +CL: net/minecraft/nbt/FloatTag$1 net/minecraft/nbt/FloatTag$1 +CL: net/minecraft/nbt/IntArrayTag net/minecraft/nbt/IntArrayTag +CL: net/minecraft/nbt/IntArrayTag$1 net/minecraft/nbt/IntArrayTag$1 +CL: net/minecraft/nbt/IntTag net/minecraft/nbt/IntTag +CL: net/minecraft/nbt/IntTag$1 net/minecraft/nbt/IntTag$1 +CL: net/minecraft/nbt/IntTag$Cache net/minecraft/nbt/IntTag$Cache +CL: net/minecraft/nbt/ListTag net/minecraft/nbt/ListTag +CL: net/minecraft/nbt/ListTag$1 net/minecraft/nbt/ListTag$1 +CL: net/minecraft/nbt/ListTag$2 net/minecraft/nbt/ListTag$2 +CL: net/minecraft/nbt/LongArrayTag net/minecraft/nbt/LongArrayTag +CL: net/minecraft/nbt/LongArrayTag$1 net/minecraft/nbt/LongArrayTag$1 +CL: net/minecraft/nbt/LongTag net/minecraft/nbt/LongTag +CL: net/minecraft/nbt/LongTag$1 net/minecraft/nbt/LongTag$1 +CL: net/minecraft/nbt/LongTag$Cache net/minecraft/nbt/LongTag$Cache +CL: net/minecraft/nbt/NbtAccounter net/minecraft/nbt/NbtAccounter +CL: net/minecraft/nbt/NbtAccounter$1 net/minecraft/nbt/NbtAccounter$1 +CL: net/minecraft/nbt/NbtIo net/minecraft/nbt/NbtIo +CL: net/minecraft/nbt/NbtIo$1 net/minecraft/nbt/NbtIo$1 +CL: net/minecraft/nbt/NbtOps net/minecraft/nbt/NbtOps +CL: net/minecraft/nbt/NbtOps$1 net/minecraft/nbt/NbtOps$1 +CL: net/minecraft/nbt/NbtOps$ByteListCollector net/minecraft/nbt/NbtOps$ByteListCollector +CL: net/minecraft/nbt/NbtOps$HeterogenousListCollector net/minecraft/nbt/NbtOps$HeterogenousListCollector +CL: net/minecraft/nbt/NbtOps$HomogenousListCollector net/minecraft/nbt/NbtOps$HomogenousListCollector +CL: net/minecraft/nbt/NbtOps$InitialListCollector net/minecraft/nbt/NbtOps$InitialListCollector +CL: net/minecraft/nbt/NbtOps$IntListCollector net/minecraft/nbt/NbtOps$IntListCollector +CL: net/minecraft/nbt/NbtOps$ListCollector net/minecraft/nbt/NbtOps$ListCollector +CL: net/minecraft/nbt/NbtOps$LongListCollector net/minecraft/nbt/NbtOps$LongListCollector +CL: net/minecraft/nbt/NbtOps$NbtRecordBuilder net/minecraft/nbt/NbtOps$NbtRecordBuilder +CL: net/minecraft/nbt/NbtUtils net/minecraft/nbt/NbtUtils +CL: net/minecraft/nbt/NumericTag net/minecraft/nbt/NumericTag +CL: net/minecraft/nbt/ShortTag net/minecraft/nbt/ShortTag +CL: net/minecraft/nbt/ShortTag$1 net/minecraft/nbt/ShortTag$1 +CL: net/minecraft/nbt/ShortTag$Cache net/minecraft/nbt/ShortTag$Cache +CL: net/minecraft/nbt/SnbtPrinterTagVisitor net/minecraft/nbt/SnbtPrinterTagVisitor +CL: net/minecraft/nbt/StreamTagVisitor net/minecraft/nbt/StreamTagVisitor +CL: net/minecraft/nbt/StreamTagVisitor$EntryResult net/minecraft/nbt/StreamTagVisitor$EntryResult +CL: net/minecraft/nbt/StreamTagVisitor$ValueResult net/minecraft/nbt/StreamTagVisitor$ValueResult +CL: net/minecraft/nbt/StringTag net/minecraft/nbt/StringTag +CL: net/minecraft/nbt/StringTag$1 net/minecraft/nbt/StringTag$1 +CL: net/minecraft/nbt/StringTagVisitor net/minecraft/nbt/StringTagVisitor +CL: net/minecraft/nbt/Tag net/minecraft/nbt/Tag +CL: net/minecraft/nbt/TagParser net/minecraft/nbt/TagParser +CL: net/minecraft/nbt/TagType net/minecraft/nbt/TagType +CL: net/minecraft/nbt/TagType$1 net/minecraft/nbt/TagType$1 +CL: net/minecraft/nbt/TagType$2 net/minecraft/nbt/TagType$2 +CL: net/minecraft/nbt/TagType$StaticSize net/minecraft/nbt/TagType$StaticSize +CL: net/minecraft/nbt/TagType$VariableSize net/minecraft/nbt/TagType$VariableSize +CL: net/minecraft/nbt/TagTypes net/minecraft/nbt/TagTypes +CL: net/minecraft/nbt/TagVisitor net/minecraft/nbt/TagVisitor +CL: net/minecraft/nbt/TextComponentTagVisitor net/minecraft/nbt/TextComponentTagVisitor +CL: net/minecraft/nbt/package-info net/minecraft/nbt/package-info +CL: net/minecraft/nbt/visitors/CollectFields net/minecraft/nbt/visitors/CollectFields +CL: net/minecraft/nbt/visitors/CollectToTag net/minecraft/nbt/visitors/CollectToTag +CL: net/minecraft/nbt/visitors/FieldSelector net/minecraft/nbt/visitors/FieldSelector +CL: net/minecraft/nbt/visitors/FieldTree net/minecraft/nbt/visitors/FieldTree +CL: net/minecraft/nbt/visitors/SkipAll net/minecraft/nbt/visitors/SkipAll +CL: net/minecraft/nbt/visitors/SkipAll$1 net/minecraft/nbt/visitors/SkipAll$1 +CL: net/minecraft/nbt/visitors/SkipFields net/minecraft/nbt/visitors/SkipFields +CL: net/minecraft/nbt/visitors/package-info net/minecraft/nbt/visitors/package-info +CL: net/minecraft/network/CipherBase net/minecraft/network/CipherBase +CL: net/minecraft/network/CipherDecoder net/minecraft/network/CipherDecoder +CL: net/minecraft/network/CipherEncoder net/minecraft/network/CipherEncoder +CL: net/minecraft/network/CompressionDecoder net/minecraft/network/CompressionDecoder +CL: net/minecraft/network/CompressionEncoder net/minecraft/network/CompressionEncoder +CL: net/minecraft/network/Connection net/minecraft/network/Connection +CL: net/minecraft/network/Connection$1 net/minecraft/network/Connection$1 +CL: net/minecraft/network/Connection$2 net/minecraft/network/Connection$2 +CL: net/minecraft/network/Connection$PacketHolder net/minecraft/network/Connection$PacketHolder +CL: net/minecraft/network/ConnectionProtocol net/minecraft/network/ConnectionProtocol +CL: net/minecraft/network/ConnectionProtocol$PacketSet net/minecraft/network/ConnectionProtocol$PacketSet +CL: net/minecraft/network/ConnectionProtocol$ProtocolBuilder net/minecraft/network/ConnectionProtocol$ProtocolBuilder +CL: net/minecraft/network/FriendlyByteBuf net/minecraft/network/FriendlyByteBuf +CL: net/minecraft/network/FriendlyByteBuf$1 net/minecraft/network/FriendlyByteBuf$1 +CL: net/minecraft/network/FriendlyByteBuf$Reader net/minecraft/network/FriendlyByteBuf$Reader +CL: net/minecraft/network/FriendlyByteBuf$Writer net/minecraft/network/FriendlyByteBuf$Writer +CL: net/minecraft/network/PacketBundlePacker net/minecraft/network/PacketBundlePacker +CL: net/minecraft/network/PacketBundleUnpacker net/minecraft/network/PacketBundleUnpacker +CL: net/minecraft/network/PacketDecoder net/minecraft/network/PacketDecoder +CL: net/minecraft/network/PacketEncoder net/minecraft/network/PacketEncoder +CL: net/minecraft/network/PacketListener net/minecraft/network/PacketListener +CL: net/minecraft/network/PacketSendListener net/minecraft/network/PacketSendListener +CL: net/minecraft/network/PacketSendListener$1 net/minecraft/network/PacketSendListener$1 +CL: net/minecraft/network/PacketSendListener$2 net/minecraft/network/PacketSendListener$2 +CL: net/minecraft/network/RateKickingConnection net/minecraft/network/RateKickingConnection +CL: net/minecraft/network/SkipPacketException net/minecraft/network/SkipPacketException +CL: net/minecraft/network/TickablePacketListener net/minecraft/network/TickablePacketListener +CL: net/minecraft/network/Varint21FrameDecoder net/minecraft/network/Varint21FrameDecoder +CL: net/minecraft/network/Varint21LengthFieldPrepender net/minecraft/network/Varint21LengthFieldPrepender +CL: net/minecraft/network/chat/ChatDecorator net/minecraft/network/chat/ChatDecorator +CL: net/minecraft/network/chat/ChatType net/minecraft/network/chat/ChatType +CL: net/minecraft/network/chat/ChatType$Bound net/minecraft/network/chat/ChatType$Bound +CL: net/minecraft/network/chat/ChatType$BoundNetwork net/minecraft/network/chat/ChatType$BoundNetwork +CL: net/minecraft/network/chat/ChatTypeDecoration net/minecraft/network/chat/ChatTypeDecoration +CL: net/minecraft/network/chat/ChatTypeDecoration$Parameter net/minecraft/network/chat/ChatTypeDecoration$Parameter +CL: net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector +CL: net/minecraft/network/chat/ClickEvent net/minecraft/network/chat/ClickEvent +CL: net/minecraft/network/chat/ClickEvent$Action net/minecraft/network/chat/ClickEvent$Action +CL: net/minecraft/network/chat/CommonComponents net/minecraft/network/chat/CommonComponents +CL: net/minecraft/network/chat/Component net/minecraft/network/chat/Component +CL: net/minecraft/network/chat/Component$Serializer net/minecraft/network/chat/Component$Serializer +CL: net/minecraft/network/chat/ComponentContents net/minecraft/network/chat/ComponentContents +CL: net/minecraft/network/chat/ComponentContents$1 net/minecraft/network/chat/ComponentContents$1 +CL: net/minecraft/network/chat/ComponentUtils net/minecraft/network/chat/ComponentUtils +CL: net/minecraft/network/chat/FilterMask net/minecraft/network/chat/FilterMask +CL: net/minecraft/network/chat/FilterMask$1 net/minecraft/network/chat/FilterMask$1 +CL: net/minecraft/network/chat/FilterMask$Type net/minecraft/network/chat/FilterMask$Type +CL: net/minecraft/network/chat/FormattedText net/minecraft/network/chat/FormattedText +CL: net/minecraft/network/chat/FormattedText$1 net/minecraft/network/chat/FormattedText$1 +CL: net/minecraft/network/chat/FormattedText$2 net/minecraft/network/chat/FormattedText$2 +CL: net/minecraft/network/chat/FormattedText$3 net/minecraft/network/chat/FormattedText$3 +CL: net/minecraft/network/chat/FormattedText$4 net/minecraft/network/chat/FormattedText$4 +CL: net/minecraft/network/chat/FormattedText$ContentConsumer net/minecraft/network/chat/FormattedText$ContentConsumer +CL: net/minecraft/network/chat/FormattedText$StyledContentConsumer net/minecraft/network/chat/FormattedText$StyledContentConsumer +CL: net/minecraft/network/chat/HoverEvent net/minecraft/network/chat/HoverEvent +CL: net/minecraft/network/chat/HoverEvent$Action net/minecraft/network/chat/HoverEvent$Action +CL: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo net/minecraft/network/chat/HoverEvent$EntityTooltipInfo +CL: net/minecraft/network/chat/HoverEvent$ItemStackInfo net/minecraft/network/chat/HoverEvent$ItemStackInfo +CL: net/minecraft/network/chat/LastSeenMessages net/minecraft/network/chat/LastSeenMessages +CL: net/minecraft/network/chat/LastSeenMessages$Packed net/minecraft/network/chat/LastSeenMessages$Packed +CL: net/minecraft/network/chat/LastSeenMessages$Update net/minecraft/network/chat/LastSeenMessages$Update +CL: net/minecraft/network/chat/LastSeenMessagesTracker net/minecraft/network/chat/LastSeenMessagesTracker +CL: net/minecraft/network/chat/LastSeenMessagesTracker$Update net/minecraft/network/chat/LastSeenMessagesTracker$Update +CL: net/minecraft/network/chat/LastSeenMessagesValidator net/minecraft/network/chat/LastSeenMessagesValidator +CL: net/minecraft/network/chat/LastSeenTrackedEntry net/minecraft/network/chat/LastSeenTrackedEntry +CL: net/minecraft/network/chat/LocalChatSession net/minecraft/network/chat/LocalChatSession +CL: net/minecraft/network/chat/MessageSignature net/minecraft/network/chat/MessageSignature +CL: net/minecraft/network/chat/MessageSignature$Packed net/minecraft/network/chat/MessageSignature$Packed +CL: net/minecraft/network/chat/MessageSignatureCache net/minecraft/network/chat/MessageSignatureCache +CL: net/minecraft/network/chat/MutableComponent net/minecraft/network/chat/MutableComponent +CL: net/minecraft/network/chat/OutgoingChatMessage net/minecraft/network/chat/OutgoingChatMessage +CL: net/minecraft/network/chat/OutgoingChatMessage$Disguised net/minecraft/network/chat/OutgoingChatMessage$Disguised +CL: net/minecraft/network/chat/OutgoingChatMessage$Player net/minecraft/network/chat/OutgoingChatMessage$Player +CL: net/minecraft/network/chat/PlayerChatMessage net/minecraft/network/chat/PlayerChatMessage +CL: net/minecraft/network/chat/RemoteChatSession net/minecraft/network/chat/RemoteChatSession +CL: net/minecraft/network/chat/RemoteChatSession$Data net/minecraft/network/chat/RemoteChatSession$Data +CL: net/minecraft/network/chat/SignableCommand net/minecraft/network/chat/SignableCommand +CL: net/minecraft/network/chat/SignableCommand$Argument net/minecraft/network/chat/SignableCommand$Argument +CL: net/minecraft/network/chat/SignedMessageBody net/minecraft/network/chat/SignedMessageBody +CL: net/minecraft/network/chat/SignedMessageBody$Packed net/minecraft/network/chat/SignedMessageBody$Packed +CL: net/minecraft/network/chat/SignedMessageChain net/minecraft/network/chat/SignedMessageChain +CL: net/minecraft/network/chat/SignedMessageChain$DecodeException net/minecraft/network/chat/SignedMessageChain$DecodeException +CL: net/minecraft/network/chat/SignedMessageChain$Decoder net/minecraft/network/chat/SignedMessageChain$Decoder +CL: net/minecraft/network/chat/SignedMessageChain$Encoder net/minecraft/network/chat/SignedMessageChain$Encoder +CL: net/minecraft/network/chat/SignedMessageLink net/minecraft/network/chat/SignedMessageLink +CL: net/minecraft/network/chat/SignedMessageValidator net/minecraft/network/chat/SignedMessageValidator +CL: net/minecraft/network/chat/SignedMessageValidator$KeyBased net/minecraft/network/chat/SignedMessageValidator$KeyBased +CL: net/minecraft/network/chat/Style net/minecraft/network/chat/Style +CL: net/minecraft/network/chat/Style$1 net/minecraft/network/chat/Style$1 +CL: net/minecraft/network/chat/Style$1Collector net/minecraft/network/chat/Style$1Collector +CL: net/minecraft/network/chat/Style$Serializer net/minecraft/network/chat/Style$Serializer +CL: net/minecraft/network/chat/SubStringSource net/minecraft/network/chat/SubStringSource +CL: net/minecraft/network/chat/TextColor net/minecraft/network/chat/TextColor +CL: net/minecraft/network/chat/ThrowingComponent net/minecraft/network/chat/ThrowingComponent +CL: net/minecraft/network/chat/contents/BlockDataSource net/minecraft/network/chat/contents/BlockDataSource +CL: net/minecraft/network/chat/contents/DataSource net/minecraft/network/chat/contents/DataSource +CL: net/minecraft/network/chat/contents/EntityDataSource net/minecraft/network/chat/contents/EntityDataSource +CL: net/minecraft/network/chat/contents/KeybindContents net/minecraft/network/chat/contents/KeybindContents +CL: net/minecraft/network/chat/contents/KeybindResolver net/minecraft/network/chat/contents/KeybindResolver +CL: net/minecraft/network/chat/contents/LiteralContents net/minecraft/network/chat/contents/LiteralContents +CL: net/minecraft/network/chat/contents/NbtContents net/minecraft/network/chat/contents/NbtContents +CL: net/minecraft/network/chat/contents/ScoreContents net/minecraft/network/chat/contents/ScoreContents +CL: net/minecraft/network/chat/contents/SelectorContents net/minecraft/network/chat/contents/SelectorContents +CL: net/minecraft/network/chat/contents/StorageDataSource net/minecraft/network/chat/contents/StorageDataSource +CL: net/minecraft/network/chat/contents/TranslatableContents net/minecraft/network/chat/contents/TranslatableContents +CL: net/minecraft/network/chat/contents/TranslatableFormatException net/minecraft/network/chat/contents/TranslatableFormatException +CL: net/minecraft/network/chat/contents/package-info net/minecraft/network/chat/contents/package-info +CL: net/minecraft/network/chat/package-info net/minecraft/network/chat/package-info +CL: net/minecraft/network/package-info net/minecraft/network/package-info +CL: net/minecraft/network/protocol/BundleDelimiterPacket net/minecraft/network/protocol/BundleDelimiterPacket +CL: net/minecraft/network/protocol/BundlePacket net/minecraft/network/protocol/BundlePacket +CL: net/minecraft/network/protocol/BundlerInfo net/minecraft/network/protocol/BundlerInfo +CL: net/minecraft/network/protocol/BundlerInfo$1 net/minecraft/network/protocol/BundlerInfo$1 +CL: net/minecraft/network/protocol/BundlerInfo$2 net/minecraft/network/protocol/BundlerInfo$2 +CL: net/minecraft/network/protocol/BundlerInfo$2$1 net/minecraft/network/protocol/BundlerInfo$2$1 +CL: net/minecraft/network/protocol/BundlerInfo$Bundler net/minecraft/network/protocol/BundlerInfo$Bundler +CL: net/minecraft/network/protocol/BundlerInfo$Provider net/minecraft/network/protocol/BundlerInfo$Provider +CL: net/minecraft/network/protocol/Packet net/minecraft/network/protocol/Packet +CL: net/minecraft/network/protocol/PacketFlow net/minecraft/network/protocol/PacketFlow +CL: net/minecraft/network/protocol/PacketUtils net/minecraft/network/protocol/PacketUtils +CL: net/minecraft/network/protocol/game/ClientGamePacketListener net/minecraft/network/protocol/game/ClientGamePacketListener +CL: net/minecraft/network/protocol/game/ClientboundAddEntityPacket net/minecraft/network/protocol/game/ClientboundAddEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket +CL: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket net/minecraft/network/protocol/game/ClientboundAddPlayerPacket +CL: net/minecraft/network/protocol/game/ClientboundAnimatePacket net/minecraft/network/protocol/game/ClientboundAnimatePacket +CL: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket net/minecraft/network/protocol/game/ClientboundAwardStatsPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockEventPacket net/minecraft/network/protocol/game/ClientboundBlockEventPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket net/minecraft/network/protocol/game/ClientboundBossEventPacket +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1 net/minecraft/network/protocol/game/ClientboundBossEventPacket$1 +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation +CL: net/minecraft/network/protocol/game/ClientboundBundlePacket net/minecraft/network/protocol/game/ClientboundBundlePacket +CL: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket +CL: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket +CL: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData +CL: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket net/minecraft/network/protocol/game/ClientboundClearTitlesPacket +CL: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket net/minecraft/network/protocol/game/ClientboundCommandsPacket +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub +CL: net/minecraft/network/protocol/game/ClientboundContainerClosePacket net/minecraft/network/protocol/game/ClientboundContainerClosePacket +CL: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket +CL: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket +CL: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket +CL: net/minecraft/network/protocol/game/ClientboundCooldownPacket net/minecraft/network/protocol/game/ClientboundCooldownPacket +CL: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket +CL: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action +CL: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket +CL: net/minecraft/network/protocol/game/ClientboundDamageEventPacket net/minecraft/network/protocol/game/ClientboundDamageEventPacket +CL: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket net/minecraft/network/protocol/game/ClientboundDeleteChatPacket +CL: net/minecraft/network/protocol/game/ClientboundDisconnectPacket net/minecraft/network/protocol/game/ClientboundDisconnectPacket +CL: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket +CL: net/minecraft/network/protocol/game/ClientboundEntityEventPacket net/minecraft/network/protocol/game/ClientboundEntityEventPacket +CL: net/minecraft/network/protocol/game/ClientboundExplodePacket net/minecraft/network/protocol/game/ClientboundExplodePacket +CL: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket +CL: net/minecraft/network/protocol/game/ClientboundGameEventPacket net/minecraft/network/protocol/game/ClientboundGameEventPacket +CL: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type +CL: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket +CL: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket +CL: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket +CL: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket net/minecraft/network/protocol/game/ClientboundKeepAlivePacket +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket +CL: net/minecraft/network/protocol/game/ClientboundLevelEventPacket net/minecraft/network/protocol/game/ClientboundLevelEventPacket +CL: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket +CL: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket net/minecraft/network/protocol/game/ClientboundLightUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData +CL: net/minecraft/network/protocol/game/ClientboundLoginPacket net/minecraft/network/protocol/game/ClientboundLoginPacket +CL: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket net/minecraft/network/protocol/game/ClientboundMapItemDataPacket +CL: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket net/minecraft/network/protocol/game/ClientboundMoveEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot +CL: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket +CL: net/minecraft/network/protocol/game/ClientboundOpenBookPacket net/minecraft/network/protocol/game/ClientboundOpenBookPacket +CL: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket net/minecraft/network/protocol/game/ClientboundOpenScreenPacket +CL: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket +CL: net/minecraft/network/protocol/game/ClientboundPingPacket net/minecraft/network/protocol/game/ClientboundPingPacket +CL: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket net/minecraft/network/protocol/game/ClientboundPlayerChatPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder +CL: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket +CL: net/minecraft/network/protocol/game/ClientboundRecipePacket net/minecraft/network/protocol/game/ClientboundRecipePacket +CL: net/minecraft/network/protocol/game/ClientboundRecipePacket$State net/minecraft/network/protocol/game/ClientboundRecipePacket$State +CL: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket +CL: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket +CL: net/minecraft/network/protocol/game/ClientboundResourcePackPacket net/minecraft/network/protocol/game/ClientboundResourcePackPacket +CL: net/minecraft/network/protocol/game/ClientboundRespawnPacket net/minecraft/network/protocol/game/ClientboundRespawnPacket +CL: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket net/minecraft/network/protocol/game/ClientboundRotateHeadPacket +CL: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket +CL: net/minecraft/network/protocol/game/ClientboundServerDataPacket net/minecraft/network/protocol/game/ClientboundServerDataPacket +CL: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket +CL: net/minecraft/network/protocol/game/ClientboundSetCameraPacket net/minecraft/network/protocol/game/ClientboundSetCameraPacket +CL: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket +CL: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket +CL: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket +CL: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket +CL: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket +CL: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket +CL: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket +CL: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket +CL: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket +CL: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket net/minecraft/network/protocol/game/ClientboundSetExperiencePacket +CL: net/minecraft/network/protocol/game/ClientboundSetHealthPacket net/minecraft/network/protocol/game/ClientboundSetHealthPacket +CL: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket net/minecraft/network/protocol/game/ClientboundSetObjectivePacket +CL: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket net/minecraft/network/protocol/game/ClientboundSetPassengersPacket +CL: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket +CL: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action +CL: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters +CL: net/minecraft/network/protocol/game/ClientboundSetScorePacket net/minecraft/network/protocol/game/ClientboundSetScorePacket +CL: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket +CL: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket +CL: net/minecraft/network/protocol/game/ClientboundSetTimePacket net/minecraft/network/protocol/game/ClientboundSetTimePacket +CL: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket +CL: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket +CL: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket net/minecraft/network/protocol/game/ClientboundSoundEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundSoundPacket net/minecraft/network/protocol/game/ClientboundSoundPacket +CL: net/minecraft/network/protocol/game/ClientboundStopSoundPacket net/minecraft/network/protocol/game/ClientboundStopSoundPacket +CL: net/minecraft/network/protocol/game/ClientboundSystemChatPacket net/minecraft/network/protocol/game/ClientboundSystemChatPacket +CL: net/minecraft/network/protocol/game/ClientboundTabListPacket net/minecraft/network/protocol/game/ClientboundTabListPacket +CL: net/minecraft/network/protocol/game/ClientboundTagQueryPacket net/minecraft/network/protocol/game/ClientboundTagQueryPacket +CL: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot +CL: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket +CL: net/minecraft/network/protocol/game/DebugEntityNameGenerator net/minecraft/network/protocol/game/DebugEntityNameGenerator +CL: net/minecraft/network/protocol/game/DebugPackets net/minecraft/network/protocol/game/DebugPackets +CL: net/minecraft/network/protocol/game/ServerGamePacketListener net/minecraft/network/protocol/game/ServerGamePacketListener +CL: net/minecraft/network/protocol/game/ServerPacketListener net/minecraft/network/protocol/game/ServerPacketListener +CL: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket +CL: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery +CL: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket +CL: net/minecraft/network/protocol/game/ServerboundChatAckPacket net/minecraft/network/protocol/game/ServerboundChatAckPacket +CL: net/minecraft/network/protocol/game/ServerboundChatCommandPacket net/minecraft/network/protocol/game/ServerboundChatCommandPacket +CL: net/minecraft/network/protocol/game/ServerboundChatPacket net/minecraft/network/protocol/game/ServerboundChatPacket +CL: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket +CL: net/minecraft/network/protocol/game/ServerboundClientCommandPacket net/minecraft/network/protocol/game/ServerboundClientCommandPacket +CL: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundClientInformationPacket net/minecraft/network/protocol/game/ServerboundClientInformationPacket +CL: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket +CL: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket +CL: net/minecraft/network/protocol/game/ServerboundContainerClickPacket net/minecraft/network/protocol/game/ServerboundContainerClickPacket +CL: net/minecraft/network/protocol/game/ServerboundContainerClosePacket net/minecraft/network/protocol/game/ServerboundContainerClosePacket +CL: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket +CL: net/minecraft/network/protocol/game/ServerboundEditBookPacket net/minecraft/network/protocol/game/ServerboundEditBookPacket +CL: net/minecraft/network/protocol/game/ServerboundEntityTagQuery net/minecraft/network/protocol/game/ServerboundEntityTagQuery +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket net/minecraft/network/protocol/game/ServerboundInteractPacket +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$1 net/minecraft/network/protocol/game/ServerboundInteractPacket$1 +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action net/minecraft/network/protocol/game/ServerboundInteractPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction +CL: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket +CL: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket net/minecraft/network/protocol/game/ServerboundKeepAlivePacket +CL: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket net/minecraft/network/protocol/game/ServerboundMovePlayerPacket +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly +CL: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket +CL: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket +CL: net/minecraft/network/protocol/game/ServerboundPickItemPacket net/minecraft/network/protocol/game/ServerboundPickItemPacket +CL: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket net/minecraft/network/protocol/game/ServerboundPlayerActionPacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket net/minecraft/network/protocol/game/ServerboundPlayerInputPacket +CL: net/minecraft/network/protocol/game/ServerboundPongPacket net/minecraft/network/protocol/game/ServerboundPongPacket +CL: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket +CL: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket +CL: net/minecraft/network/protocol/game/ServerboundRenameItemPacket net/minecraft/network/protocol/game/ServerboundRenameItemPacket +CL: net/minecraft/network/protocol/game/ServerboundResourcePackPacket net/minecraft/network/protocol/game/ServerboundResourcePackPacket +CL: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket +CL: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundSelectTradePacket net/minecraft/network/protocol/game/ServerboundSelectTradePacket +CL: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket net/minecraft/network/protocol/game/ServerboundSetBeaconPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket +CL: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket +CL: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket +CL: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket net/minecraft/network/protocol/game/ServerboundSignUpdatePacket +CL: net/minecraft/network/protocol/game/ServerboundSwingPacket net/minecraft/network/protocol/game/ServerboundSwingPacket +CL: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket +CL: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket net/minecraft/network/protocol/game/ServerboundUseItemOnPacket +CL: net/minecraft/network/protocol/game/ServerboundUseItemPacket net/minecraft/network/protocol/game/ServerboundUseItemPacket +CL: net/minecraft/network/protocol/game/VecDeltaCodec net/minecraft/network/protocol/game/VecDeltaCodec +CL: net/minecraft/network/protocol/game/package-info net/minecraft/network/protocol/game/package-info +CL: net/minecraft/network/protocol/handshake/ClientIntentionPacket net/minecraft/network/protocol/handshake/ClientIntentionPacket +CL: net/minecraft/network/protocol/handshake/ServerHandshakePacketListener net/minecraft/network/protocol/handshake/ServerHandshakePacketListener +CL: net/minecraft/network/protocol/handshake/package-info net/minecraft/network/protocol/handshake/package-info +CL: net/minecraft/network/protocol/login/ClientLoginPacketListener net/minecraft/network/protocol/login/ClientLoginPacketListener +CL: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket net/minecraft/network/protocol/login/ClientboundCustomQueryPacket +CL: net/minecraft/network/protocol/login/ClientboundGameProfilePacket net/minecraft/network/protocol/login/ClientboundGameProfilePacket +CL: net/minecraft/network/protocol/login/ClientboundHelloPacket net/minecraft/network/protocol/login/ClientboundHelloPacket +CL: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket +CL: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket +CL: net/minecraft/network/protocol/login/ServerLoginPacketListener net/minecraft/network/protocol/login/ServerLoginPacketListener +CL: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket net/minecraft/network/protocol/login/ServerboundCustomQueryPacket +CL: net/minecraft/network/protocol/login/ServerboundHelloPacket net/minecraft/network/protocol/login/ServerboundHelloPacket +CL: net/minecraft/network/protocol/login/ServerboundKeyPacket net/minecraft/network/protocol/login/ServerboundKeyPacket +CL: net/minecraft/network/protocol/login/package-info net/minecraft/network/protocol/login/package-info +CL: net/minecraft/network/protocol/package-info net/minecraft/network/protocol/package-info +CL: net/minecraft/network/protocol/status/ClientStatusPacketListener net/minecraft/network/protocol/status/ClientStatusPacketListener +CL: net/minecraft/network/protocol/status/ClientboundPongResponsePacket net/minecraft/network/protocol/status/ClientboundPongResponsePacket +CL: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket net/minecraft/network/protocol/status/ClientboundStatusResponsePacket +CL: net/minecraft/network/protocol/status/ServerStatus net/minecraft/network/protocol/status/ServerStatus +CL: net/minecraft/network/protocol/status/ServerStatus$Favicon net/minecraft/network/protocol/status/ServerStatus$Favicon +CL: net/minecraft/network/protocol/status/ServerStatus$Players net/minecraft/network/protocol/status/ServerStatus$Players +CL: net/minecraft/network/protocol/status/ServerStatus$Version net/minecraft/network/protocol/status/ServerStatus$Version +CL: net/minecraft/network/protocol/status/ServerStatusPacketListener net/minecraft/network/protocol/status/ServerStatusPacketListener +CL: net/minecraft/network/protocol/status/ServerboundPingRequestPacket net/minecraft/network/protocol/status/ServerboundPingRequestPacket +CL: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket net/minecraft/network/protocol/status/ServerboundStatusRequestPacket +CL: net/minecraft/network/protocol/status/package-info net/minecraft/network/protocol/status/package-info +CL: net/minecraft/network/syncher/EntityDataAccessor net/minecraft/network/syncher/EntityDataAccessor +CL: net/minecraft/network/syncher/EntityDataSerializer net/minecraft/network/syncher/EntityDataSerializer +CL: net/minecraft/network/syncher/EntityDataSerializer$1 net/minecraft/network/syncher/EntityDataSerializer$1 +CL: net/minecraft/network/syncher/EntityDataSerializer$ForValueType net/minecraft/network/syncher/EntityDataSerializer$ForValueType +CL: net/minecraft/network/syncher/EntityDataSerializers net/minecraft/network/syncher/EntityDataSerializers +CL: net/minecraft/network/syncher/EntityDataSerializers$1 net/minecraft/network/syncher/EntityDataSerializers$1 +CL: net/minecraft/network/syncher/EntityDataSerializers$2 net/minecraft/network/syncher/EntityDataSerializers$2 +CL: net/minecraft/network/syncher/EntityDataSerializers$3 net/minecraft/network/syncher/EntityDataSerializers$3 +CL: net/minecraft/network/syncher/EntityDataSerializers$4 net/minecraft/network/syncher/EntityDataSerializers$4 +CL: net/minecraft/network/syncher/EntityDataSerializers$5 net/minecraft/network/syncher/EntityDataSerializers$5 +CL: net/minecraft/network/syncher/EntityDataSerializers$6 net/minecraft/network/syncher/EntityDataSerializers$6 +CL: net/minecraft/network/syncher/EntityDataSerializers$7 net/minecraft/network/syncher/EntityDataSerializers$7 +CL: net/minecraft/network/syncher/SynchedEntityData net/minecraft/network/syncher/SynchedEntityData +CL: net/minecraft/network/syncher/SynchedEntityData$DataItem net/minecraft/network/syncher/SynchedEntityData$DataItem +CL: net/minecraft/network/syncher/SynchedEntityData$DataValue net/minecraft/network/syncher/SynchedEntityData$DataValue +CL: net/minecraft/network/syncher/package-info net/minecraft/network/syncher/package-info +CL: net/minecraft/obfuscate/DontObfuscate net/minecraft/obfuscate/DontObfuscate +CL: net/minecraft/obfuscate/package-info net/minecraft/obfuscate/package-info +CL: net/minecraft/package-info net/minecraft/package-info +CL: net/minecraft/realms/DisconnectedRealmsScreen net/minecraft/realms/DisconnectedRealmsScreen +CL: net/minecraft/realms/RealmsConnect net/minecraft/realms/RealmsConnect +CL: net/minecraft/realms/RealmsConnect$1 net/minecraft/realms/RealmsConnect$1 +CL: net/minecraft/realms/RealmsLabel net/minecraft/realms/RealmsLabel +CL: net/minecraft/realms/RealmsObjectSelectionList net/minecraft/realms/RealmsObjectSelectionList +CL: net/minecraft/realms/RealmsScreen net/minecraft/realms/RealmsScreen +CL: net/minecraft/realms/RepeatedNarrator net/minecraft/realms/RepeatedNarrator +CL: net/minecraft/realms/RepeatedNarrator$Params net/minecraft/realms/RepeatedNarrator$Params +CL: net/minecraft/realms/package-info net/minecraft/realms/package-info +CL: net/minecraft/recipebook/PlaceRecipe net/minecraft/recipebook/PlaceRecipe +CL: net/minecraft/recipebook/ServerPlaceRecipe net/minecraft/recipebook/ServerPlaceRecipe +CL: net/minecraft/recipebook/package-info net/minecraft/recipebook/package-info +CL: net/minecraft/resources/DelegatingOps net/minecraft/resources/DelegatingOps +CL: net/minecraft/resources/FileToIdConverter net/minecraft/resources/FileToIdConverter +CL: net/minecraft/resources/HolderSetCodec net/minecraft/resources/HolderSetCodec +CL: net/minecraft/resources/RegistryDataLoader net/minecraft/resources/RegistryDataLoader +CL: net/minecraft/resources/RegistryDataLoader$1 net/minecraft/resources/RegistryDataLoader$1 +CL: net/minecraft/resources/RegistryDataLoader$Loader net/minecraft/resources/RegistryDataLoader$Loader +CL: net/minecraft/resources/RegistryDataLoader$RegistryData net/minecraft/resources/RegistryDataLoader$RegistryData +CL: net/minecraft/resources/RegistryFileCodec net/minecraft/resources/RegistryFileCodec +CL: net/minecraft/resources/RegistryFixedCodec net/minecraft/resources/RegistryFixedCodec +CL: net/minecraft/resources/RegistryOps net/minecraft/resources/RegistryOps +CL: net/minecraft/resources/RegistryOps$1 net/minecraft/resources/RegistryOps$1 +CL: net/minecraft/resources/RegistryOps$2 net/minecraft/resources/RegistryOps$2 +CL: net/minecraft/resources/RegistryOps$RegistryInfo net/minecraft/resources/RegistryOps$RegistryInfo +CL: net/minecraft/resources/RegistryOps$RegistryInfoLookup net/minecraft/resources/RegistryOps$RegistryInfoLookup +CL: net/minecraft/resources/ResourceKey net/minecraft/resources/ResourceKey +CL: net/minecraft/resources/ResourceKey$InternKey net/minecraft/resources/ResourceKey$InternKey +CL: net/minecraft/resources/ResourceLocation net/minecraft/resources/ResourceLocation +CL: net/minecraft/resources/ResourceLocation$Dummy net/minecraft/resources/ResourceLocation$Dummy +CL: net/minecraft/resources/ResourceLocation$Serializer net/minecraft/resources/ResourceLocation$Serializer +CL: net/minecraft/resources/package-info net/minecraft/resources/package-info +CL: net/minecraft/server/Bootstrap net/minecraft/server/Bootstrap +CL: net/minecraft/server/Bootstrap$1 net/minecraft/server/Bootstrap$1 +CL: net/minecraft/server/ChainedJsonException net/minecraft/server/ChainedJsonException +CL: net/minecraft/server/ChainedJsonException$Entry net/minecraft/server/ChainedJsonException$Entry +CL: net/minecraft/server/ConsoleInput net/minecraft/server/ConsoleInput +CL: net/minecraft/server/DebugLoggedPrintStream net/minecraft/server/DebugLoggedPrintStream +CL: net/minecraft/server/Eula net/minecraft/server/Eula +CL: net/minecraft/server/LoggedPrintStream net/minecraft/server/LoggedPrintStream +CL: net/minecraft/server/Main net/minecraft/server/Main +CL: net/minecraft/server/Main$1 net/minecraft/server/Main$1 +CL: net/minecraft/server/MinecraftServer net/minecraft/server/MinecraftServer +CL: net/minecraft/server/MinecraftServer$1 net/minecraft/server/MinecraftServer$1 +CL: net/minecraft/server/MinecraftServer$ReloadableResources net/minecraft/server/MinecraftServer$ReloadableResources +CL: net/minecraft/server/MinecraftServer$ServerResourcePackInfo net/minecraft/server/MinecraftServer$ServerResourcePackInfo +CL: net/minecraft/server/MinecraftServer$TimeProfiler net/minecraft/server/MinecraftServer$TimeProfiler +CL: net/minecraft/server/MinecraftServer$TimeProfiler$1 net/minecraft/server/MinecraftServer$TimeProfiler$1 +CL: net/minecraft/server/PlayerAdvancements net/minecraft/server/PlayerAdvancements +CL: net/minecraft/server/PlayerAdvancements$1 net/minecraft/server/PlayerAdvancements$1 +CL: net/minecraft/server/RegistryLayer net/minecraft/server/RegistryLayer +CL: net/minecraft/server/ReloadableServerResources net/minecraft/server/ReloadableServerResources +CL: net/minecraft/server/RunningOnDifferentThreadException net/minecraft/server/RunningOnDifferentThreadException +CL: net/minecraft/server/ServerAdvancementManager net/minecraft/server/ServerAdvancementManager +CL: net/minecraft/server/ServerFunctionLibrary net/minecraft/server/ServerFunctionLibrary +CL: net/minecraft/server/ServerFunctionManager net/minecraft/server/ServerFunctionManager +CL: net/minecraft/server/ServerFunctionManager$ExecutionContext net/minecraft/server/ServerFunctionManager$ExecutionContext +CL: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer +CL: net/minecraft/server/ServerFunctionManager$QueuedCommand net/minecraft/server/ServerFunctionManager$QueuedCommand +CL: net/minecraft/server/ServerFunctionManager$TraceCallbacks net/minecraft/server/ServerFunctionManager$TraceCallbacks +CL: net/minecraft/server/ServerInterface net/minecraft/server/ServerInterface +CL: net/minecraft/server/ServerScoreboard net/minecraft/server/ServerScoreboard +CL: net/minecraft/server/ServerScoreboard$Method net/minecraft/server/ServerScoreboard$Method +CL: net/minecraft/server/Services net/minecraft/server/Services +CL: net/minecraft/server/TickTask net/minecraft/server/TickTask +CL: net/minecraft/server/WorldLoader net/minecraft/server/WorldLoader +CL: net/minecraft/server/WorldLoader$DataLoadContext net/minecraft/server/WorldLoader$DataLoadContext +CL: net/minecraft/server/WorldLoader$DataLoadOutput net/minecraft/server/WorldLoader$DataLoadOutput +CL: net/minecraft/server/WorldLoader$InitConfig net/minecraft/server/WorldLoader$InitConfig +CL: net/minecraft/server/WorldLoader$PackConfig net/minecraft/server/WorldLoader$PackConfig +CL: net/minecraft/server/WorldLoader$ResultFactory net/minecraft/server/WorldLoader$ResultFactory +CL: net/minecraft/server/WorldLoader$WorldDataSupplier net/minecraft/server/WorldLoader$WorldDataSupplier +CL: net/minecraft/server/WorldStem net/minecraft/server/WorldStem +CL: net/minecraft/server/advancements/AdvancementVisibilityEvaluator net/minecraft/server/advancements/AdvancementVisibilityEvaluator +CL: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output +CL: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule +CL: net/minecraft/server/advancements/package-info net/minecraft/server/advancements/package-info +CL: net/minecraft/server/bossevents/CustomBossEvent net/minecraft/server/bossevents/CustomBossEvent +CL: net/minecraft/server/bossevents/CustomBossEvents net/minecraft/server/bossevents/CustomBossEvents +CL: net/minecraft/server/bossevents/package-info net/minecraft/server/bossevents/package-info +CL: net/minecraft/server/chase/ChaseClient net/minecraft/server/chase/ChaseClient +CL: net/minecraft/server/chase/ChaseClient$TeleportTarget net/minecraft/server/chase/ChaseClient$TeleportTarget +CL: net/minecraft/server/chase/ChaseServer net/minecraft/server/chase/ChaseServer +CL: net/minecraft/server/chase/ChaseServer$PlayerPosition net/minecraft/server/chase/ChaseServer$PlayerPosition +CL: net/minecraft/server/chase/package-info net/minecraft/server/chase/package-info +CL: net/minecraft/server/commands/AdvancementCommands net/minecraft/server/commands/AdvancementCommands +CL: net/minecraft/server/commands/AdvancementCommands$Action net/minecraft/server/commands/AdvancementCommands$Action +CL: net/minecraft/server/commands/AdvancementCommands$Action$1 net/minecraft/server/commands/AdvancementCommands$Action$1 +CL: net/minecraft/server/commands/AdvancementCommands$Action$2 net/minecraft/server/commands/AdvancementCommands$Action$2 +CL: net/minecraft/server/commands/AdvancementCommands$Mode net/minecraft/server/commands/AdvancementCommands$Mode +CL: net/minecraft/server/commands/AttributeCommand net/minecraft/server/commands/AttributeCommand +CL: net/minecraft/server/commands/BanIpCommands net/minecraft/server/commands/BanIpCommands +CL: net/minecraft/server/commands/BanListCommands net/minecraft/server/commands/BanListCommands +CL: net/minecraft/server/commands/BanPlayerCommands net/minecraft/server/commands/BanPlayerCommands +CL: net/minecraft/server/commands/BossBarCommands net/minecraft/server/commands/BossBarCommands +CL: net/minecraft/server/commands/ChaseCommand net/minecraft/server/commands/ChaseCommand +CL: net/minecraft/server/commands/ClearInventoryCommands net/minecraft/server/commands/ClearInventoryCommands +CL: net/minecraft/server/commands/CloneCommands net/minecraft/server/commands/CloneCommands +CL: net/minecraft/server/commands/CloneCommands$CloneBlockInfo net/minecraft/server/commands/CloneCommands$CloneBlockInfo +CL: net/minecraft/server/commands/CloneCommands$CommandFunction net/minecraft/server/commands/CloneCommands$CommandFunction +CL: net/minecraft/server/commands/CloneCommands$DimensionAndPosition net/minecraft/server/commands/CloneCommands$DimensionAndPosition +CL: net/minecraft/server/commands/CloneCommands$Mode net/minecraft/server/commands/CloneCommands$Mode +CL: net/minecraft/server/commands/DamageCommand net/minecraft/server/commands/DamageCommand +CL: net/minecraft/server/commands/DataPackCommand net/minecraft/server/commands/DataPackCommand +CL: net/minecraft/server/commands/DataPackCommand$Inserter net/minecraft/server/commands/DataPackCommand$Inserter +CL: net/minecraft/server/commands/DeOpCommands net/minecraft/server/commands/DeOpCommands +CL: net/minecraft/server/commands/DebugCommand net/minecraft/server/commands/DebugCommand +CL: net/minecraft/server/commands/DebugCommand$Tracer net/minecraft/server/commands/DebugCommand$Tracer +CL: net/minecraft/server/commands/DebugMobSpawningCommand net/minecraft/server/commands/DebugMobSpawningCommand +CL: net/minecraft/server/commands/DebugPathCommand net/minecraft/server/commands/DebugPathCommand +CL: net/minecraft/server/commands/DefaultGameModeCommands net/minecraft/server/commands/DefaultGameModeCommands +CL: net/minecraft/server/commands/DifficultyCommand net/minecraft/server/commands/DifficultyCommand +CL: net/minecraft/server/commands/EffectCommands net/minecraft/server/commands/EffectCommands +CL: net/minecraft/server/commands/EmoteCommands net/minecraft/server/commands/EmoteCommands +CL: net/minecraft/server/commands/EnchantCommand net/minecraft/server/commands/EnchantCommand +CL: net/minecraft/server/commands/ExecuteCommand net/minecraft/server/commands/ExecuteCommand +CL: net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate +CL: net/minecraft/server/commands/ExecuteCommand$CommandPredicate net/minecraft/server/commands/ExecuteCommand$CommandPredicate +CL: net/minecraft/server/commands/ExperienceCommand net/minecraft/server/commands/ExperienceCommand +CL: net/minecraft/server/commands/ExperienceCommand$Type net/minecraft/server/commands/ExperienceCommand$Type +CL: net/minecraft/server/commands/FillBiomeCommand net/minecraft/server/commands/FillBiomeCommand +CL: net/minecraft/server/commands/FillCommand net/minecraft/server/commands/FillCommand +CL: net/minecraft/server/commands/FillCommand$Mode net/minecraft/server/commands/FillCommand$Mode +CL: net/minecraft/server/commands/ForceLoadCommand net/minecraft/server/commands/ForceLoadCommand +CL: net/minecraft/server/commands/FunctionCommand net/minecraft/server/commands/FunctionCommand +CL: net/minecraft/server/commands/GameModeCommand net/minecraft/server/commands/GameModeCommand +CL: net/minecraft/server/commands/GameRuleCommand net/minecraft/server/commands/GameRuleCommand +CL: net/minecraft/server/commands/GameRuleCommand$1 net/minecraft/server/commands/GameRuleCommand$1 +CL: net/minecraft/server/commands/GiveCommand net/minecraft/server/commands/GiveCommand +CL: net/minecraft/server/commands/HelpCommand net/minecraft/server/commands/HelpCommand +CL: net/minecraft/server/commands/ItemCommands net/minecraft/server/commands/ItemCommands +CL: net/minecraft/server/commands/JfrCommand net/minecraft/server/commands/JfrCommand +CL: net/minecraft/server/commands/KickCommand net/minecraft/server/commands/KickCommand +CL: net/minecraft/server/commands/KillCommand net/minecraft/server/commands/KillCommand +CL: net/minecraft/server/commands/ListPlayersCommand net/minecraft/server/commands/ListPlayersCommand +CL: net/minecraft/server/commands/LocateCommand net/minecraft/server/commands/LocateCommand +CL: net/minecraft/server/commands/LootCommand net/minecraft/server/commands/LootCommand +CL: net/minecraft/server/commands/LootCommand$Callback net/minecraft/server/commands/LootCommand$Callback +CL: net/minecraft/server/commands/LootCommand$DropConsumer net/minecraft/server/commands/LootCommand$DropConsumer +CL: net/minecraft/server/commands/LootCommand$TailProvider net/minecraft/server/commands/LootCommand$TailProvider +CL: net/minecraft/server/commands/MsgCommand net/minecraft/server/commands/MsgCommand +CL: net/minecraft/server/commands/OpCommand net/minecraft/server/commands/OpCommand +CL: net/minecraft/server/commands/PardonCommand net/minecraft/server/commands/PardonCommand +CL: net/minecraft/server/commands/PardonIpCommand net/minecraft/server/commands/PardonIpCommand +CL: net/minecraft/server/commands/ParticleCommand net/minecraft/server/commands/ParticleCommand +CL: net/minecraft/server/commands/PerfCommand net/minecraft/server/commands/PerfCommand +CL: net/minecraft/server/commands/PlaceCommand net/minecraft/server/commands/PlaceCommand +CL: net/minecraft/server/commands/PlaySoundCommand net/minecraft/server/commands/PlaySoundCommand +CL: net/minecraft/server/commands/PublishCommand net/minecraft/server/commands/PublishCommand +CL: net/minecraft/server/commands/RaidCommand net/minecraft/server/commands/RaidCommand +CL: net/minecraft/server/commands/RecipeCommand net/minecraft/server/commands/RecipeCommand +CL: net/minecraft/server/commands/ReloadCommand net/minecraft/server/commands/ReloadCommand +CL: net/minecraft/server/commands/ResetChunksCommand net/minecraft/server/commands/ResetChunksCommand +CL: net/minecraft/server/commands/ReturnCommand net/minecraft/server/commands/ReturnCommand +CL: net/minecraft/server/commands/RideCommand net/minecraft/server/commands/RideCommand +CL: net/minecraft/server/commands/SaveAllCommand net/minecraft/server/commands/SaveAllCommand +CL: net/minecraft/server/commands/SaveOffCommand net/minecraft/server/commands/SaveOffCommand +CL: net/minecraft/server/commands/SaveOnCommand net/minecraft/server/commands/SaveOnCommand +CL: net/minecraft/server/commands/SayCommand net/minecraft/server/commands/SayCommand +CL: net/minecraft/server/commands/ScheduleCommand net/minecraft/server/commands/ScheduleCommand +CL: net/minecraft/server/commands/ScoreboardCommand net/minecraft/server/commands/ScoreboardCommand +CL: net/minecraft/server/commands/SeedCommand net/minecraft/server/commands/SeedCommand +CL: net/minecraft/server/commands/SetBlockCommand net/minecraft/server/commands/SetBlockCommand +CL: net/minecraft/server/commands/SetBlockCommand$Filter net/minecraft/server/commands/SetBlockCommand$Filter +CL: net/minecraft/server/commands/SetBlockCommand$Mode net/minecraft/server/commands/SetBlockCommand$Mode +CL: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand net/minecraft/server/commands/SetPlayerIdleTimeoutCommand +CL: net/minecraft/server/commands/SetSpawnCommand net/minecraft/server/commands/SetSpawnCommand +CL: net/minecraft/server/commands/SetWorldSpawnCommand net/minecraft/server/commands/SetWorldSpawnCommand +CL: net/minecraft/server/commands/SpawnArmorTrimsCommand net/minecraft/server/commands/SpawnArmorTrimsCommand +CL: net/minecraft/server/commands/SpectateCommand net/minecraft/server/commands/SpectateCommand +CL: net/minecraft/server/commands/SpreadPlayersCommand net/minecraft/server/commands/SpreadPlayersCommand +CL: net/minecraft/server/commands/SpreadPlayersCommand$Position net/minecraft/server/commands/SpreadPlayersCommand$Position +CL: net/minecraft/server/commands/StopCommand net/minecraft/server/commands/StopCommand +CL: net/minecraft/server/commands/StopSoundCommand net/minecraft/server/commands/StopSoundCommand +CL: net/minecraft/server/commands/SummonCommand net/minecraft/server/commands/SummonCommand +CL: net/minecraft/server/commands/TagCommand net/minecraft/server/commands/TagCommand +CL: net/minecraft/server/commands/TeamCommand net/minecraft/server/commands/TeamCommand +CL: net/minecraft/server/commands/TeamMsgCommand net/minecraft/server/commands/TeamMsgCommand +CL: net/minecraft/server/commands/TeleportCommand net/minecraft/server/commands/TeleportCommand +CL: net/minecraft/server/commands/TeleportCommand$LookAt net/minecraft/server/commands/TeleportCommand$LookAt +CL: net/minecraft/server/commands/TellRawCommand net/minecraft/server/commands/TellRawCommand +CL: net/minecraft/server/commands/TimeCommand net/minecraft/server/commands/TimeCommand +CL: net/minecraft/server/commands/TitleCommand net/minecraft/server/commands/TitleCommand +CL: net/minecraft/server/commands/TriggerCommand net/minecraft/server/commands/TriggerCommand +CL: net/minecraft/server/commands/WardenSpawnTrackerCommand net/minecraft/server/commands/WardenSpawnTrackerCommand +CL: net/minecraft/server/commands/WeatherCommand net/minecraft/server/commands/WeatherCommand +CL: net/minecraft/server/commands/WhitelistCommand net/minecraft/server/commands/WhitelistCommand +CL: net/minecraft/server/commands/WorldBorderCommand net/minecraft/server/commands/WorldBorderCommand +CL: net/minecraft/server/commands/data/BlockDataAccessor net/minecraft/server/commands/data/BlockDataAccessor +CL: net/minecraft/server/commands/data/BlockDataAccessor$1 net/minecraft/server/commands/data/BlockDataAccessor$1 +CL: net/minecraft/server/commands/data/DataAccessor net/minecraft/server/commands/data/DataAccessor +CL: net/minecraft/server/commands/data/DataCommands net/minecraft/server/commands/data/DataCommands +CL: net/minecraft/server/commands/data/DataCommands$DataManipulator net/minecraft/server/commands/data/DataCommands$DataManipulator +CL: net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator +CL: net/minecraft/server/commands/data/DataCommands$DataProvider net/minecraft/server/commands/data/DataCommands$DataProvider +CL: net/minecraft/server/commands/data/DataCommands$StringProcessor net/minecraft/server/commands/data/DataCommands$StringProcessor +CL: net/minecraft/server/commands/data/EntityDataAccessor net/minecraft/server/commands/data/EntityDataAccessor +CL: net/minecraft/server/commands/data/EntityDataAccessor$1 net/minecraft/server/commands/data/EntityDataAccessor$1 +CL: net/minecraft/server/commands/data/StorageDataAccessor net/minecraft/server/commands/data/StorageDataAccessor +CL: net/minecraft/server/commands/data/StorageDataAccessor$1 net/minecraft/server/commands/data/StorageDataAccessor$1 +CL: net/minecraft/server/commands/data/package-info net/minecraft/server/commands/data/package-info +CL: net/minecraft/server/commands/package-info net/minecraft/server/commands/package-info +CL: net/minecraft/server/dedicated/DedicatedPlayerList net/minecraft/server/dedicated/DedicatedPlayerList +CL: net/minecraft/server/dedicated/DedicatedServer net/minecraft/server/dedicated/DedicatedServer +CL: net/minecraft/server/dedicated/DedicatedServer$1 net/minecraft/server/dedicated/DedicatedServer$1 +CL: net/minecraft/server/dedicated/DedicatedServerProperties net/minecraft/server/dedicated/DedicatedServerProperties +CL: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData +CL: net/minecraft/server/dedicated/DedicatedServerSettings net/minecraft/server/dedicated/DedicatedServerSettings +CL: net/minecraft/server/dedicated/ServerWatchdog net/minecraft/server/dedicated/ServerWatchdog +CL: net/minecraft/server/dedicated/ServerWatchdog$1 net/minecraft/server/dedicated/ServerWatchdog$1 +CL: net/minecraft/server/dedicated/Settings net/minecraft/server/dedicated/Settings +CL: net/minecraft/server/dedicated/Settings$MutableValue net/minecraft/server/dedicated/Settings$MutableValue +CL: net/minecraft/server/dedicated/package-info net/minecraft/server/dedicated/package-info +CL: net/minecraft/server/gui/MinecraftServerGui net/minecraft/server/gui/MinecraftServerGui +CL: net/minecraft/server/gui/MinecraftServerGui$1 net/minecraft/server/gui/MinecraftServerGui$1 +CL: net/minecraft/server/gui/MinecraftServerGui$2 net/minecraft/server/gui/MinecraftServerGui$2 +CL: net/minecraft/server/gui/PlayerListComponent net/minecraft/server/gui/PlayerListComponent +CL: net/minecraft/server/gui/StatsComponent net/minecraft/server/gui/StatsComponent +CL: net/minecraft/server/gui/package-info net/minecraft/server/gui/package-info +CL: net/minecraft/server/level/BlockDestructionProgress net/minecraft/server/level/BlockDestructionProgress +CL: net/minecraft/server/level/ChunkHolder net/minecraft/server/level/ChunkHolder +CL: net/minecraft/server/level/ChunkHolder$1 net/minecraft/server/level/ChunkHolder$1 +CL: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure +CL: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1 net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1 +CL: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug net/minecraft/server/level/ChunkHolder$ChunkSaveDebug +CL: net/minecraft/server/level/ChunkHolder$LevelChangeListener net/minecraft/server/level/ChunkHolder$LevelChangeListener +CL: net/minecraft/server/level/ChunkHolder$PlayerProvider net/minecraft/server/level/ChunkHolder$PlayerProvider +CL: net/minecraft/server/level/ChunkLevel net/minecraft/server/level/ChunkLevel +CL: net/minecraft/server/level/ChunkLevel$1 net/minecraft/server/level/ChunkLevel$1 +CL: net/minecraft/server/level/ChunkMap net/minecraft/server/level/ChunkMap +CL: net/minecraft/server/level/ChunkMap$1 net/minecraft/server/level/ChunkMap$1 +CL: net/minecraft/server/level/ChunkMap$2 net/minecraft/server/level/ChunkMap$2 +CL: net/minecraft/server/level/ChunkMap$DistanceManager net/minecraft/server/level/ChunkMap$DistanceManager +CL: net/minecraft/server/level/ChunkMap$TrackedEntity net/minecraft/server/level/ChunkMap$TrackedEntity +CL: net/minecraft/server/level/ChunkTaskPriorityQueue net/minecraft/server/level/ChunkTaskPriorityQueue +CL: net/minecraft/server/level/ChunkTaskPriorityQueueSorter net/minecraft/server/level/ChunkTaskPriorityQueueSorter +CL: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message +CL: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release +CL: net/minecraft/server/level/ChunkTracker net/minecraft/server/level/ChunkTracker +CL: net/minecraft/server/level/ColumnPos net/minecraft/server/level/ColumnPos +CL: net/minecraft/server/level/DemoMode net/minecraft/server/level/DemoMode +CL: net/minecraft/server/level/DistanceManager net/minecraft/server/level/DistanceManager +CL: net/minecraft/server/level/DistanceManager$ChunkTicketTracker net/minecraft/server/level/DistanceManager$ChunkTicketTracker +CL: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker +CL: net/minecraft/server/level/DistanceManager$PlayerTicketTracker net/minecraft/server/level/DistanceManager$PlayerTicketTracker +CL: net/minecraft/server/level/FullChunkStatus net/minecraft/server/level/FullChunkStatus +CL: net/minecraft/server/level/PlayerMap net/minecraft/server/level/PlayerMap +CL: net/minecraft/server/level/PlayerRespawnLogic net/minecraft/server/level/PlayerRespawnLogic +CL: net/minecraft/server/level/SectionTracker net/minecraft/server/level/SectionTracker +CL: net/minecraft/server/level/ServerBossEvent net/minecraft/server/level/ServerBossEvent +CL: net/minecraft/server/level/ServerChunkCache net/minecraft/server/level/ServerChunkCache +CL: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder net/minecraft/server/level/ServerChunkCache$ChunkAndHolder +CL: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor net/minecraft/server/level/ServerChunkCache$MainThreadExecutor +CL: net/minecraft/server/level/ServerEntity net/minecraft/server/level/ServerEntity +CL: net/minecraft/server/level/ServerLevel net/minecraft/server/level/ServerLevel +CL: net/minecraft/server/level/ServerLevel$EntityCallbacks net/minecraft/server/level/ServerLevel$EntityCallbacks +CL: net/minecraft/server/level/ServerPlayer net/minecraft/server/level/ServerPlayer +CL: net/minecraft/server/level/ServerPlayer$1 net/minecraft/server/level/ServerPlayer$1 +CL: net/minecraft/server/level/ServerPlayer$2 net/minecraft/server/level/ServerPlayer$2 +CL: net/minecraft/server/level/ServerPlayerGameMode net/minecraft/server/level/ServerPlayerGameMode +CL: net/minecraft/server/level/ThreadedLevelLightEngine net/minecraft/server/level/ThreadedLevelLightEngine +CL: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType net/minecraft/server/level/ThreadedLevelLightEngine$TaskType +CL: net/minecraft/server/level/Ticket net/minecraft/server/level/Ticket +CL: net/minecraft/server/level/TicketType net/minecraft/server/level/TicketType +CL: net/minecraft/server/level/TickingTracker net/minecraft/server/level/TickingTracker +CL: net/minecraft/server/level/WorldGenRegion net/minecraft/server/level/WorldGenRegion +CL: net/minecraft/server/level/package-info net/minecraft/server/level/package-info +CL: net/minecraft/server/level/progress/ChunkProgressListener net/minecraft/server/level/progress/ChunkProgressListener +CL: net/minecraft/server/level/progress/ChunkProgressListenerFactory net/minecraft/server/level/progress/ChunkProgressListenerFactory +CL: net/minecraft/server/level/progress/LoggerChunkProgressListener net/minecraft/server/level/progress/LoggerChunkProgressListener +CL: net/minecraft/server/level/progress/ProcessorChunkProgressListener net/minecraft/server/level/progress/ProcessorChunkProgressListener +CL: net/minecraft/server/level/progress/StoringChunkProgressListener net/minecraft/server/level/progress/StoringChunkProgressListener +CL: net/minecraft/server/level/progress/package-info net/minecraft/server/level/progress/package-info +CL: net/minecraft/server/network/FilteredText net/minecraft/server/network/FilteredText +CL: net/minecraft/server/network/LegacyQueryHandler net/minecraft/server/network/LegacyQueryHandler +CL: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl +CL: net/minecraft/server/network/ServerConnectionListener net/minecraft/server/network/ServerConnectionListener +CL: net/minecraft/server/network/ServerConnectionListener$1 net/minecraft/server/network/ServerConnectionListener$1 +CL: net/minecraft/server/network/ServerConnectionListener$2 net/minecraft/server/network/ServerConnectionListener$2 +CL: net/minecraft/server/network/ServerConnectionListener$LatencySimulator net/minecraft/server/network/ServerConnectionListener$LatencySimulator +CL: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage +CL: net/minecraft/server/network/ServerGamePacketListenerImpl net/minecraft/server/network/ServerGamePacketListenerImpl +CL: net/minecraft/server/network/ServerGamePacketListenerImpl$1 net/minecraft/server/network/ServerGamePacketListenerImpl$1 +CL: net/minecraft/server/network/ServerGamePacketListenerImpl$2 net/minecraft/server/network/ServerGamePacketListenerImpl$2 +CL: net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction +CL: net/minecraft/server/network/ServerHandshakePacketListenerImpl net/minecraft/server/network/ServerHandshakePacketListenerImpl +CL: net/minecraft/server/network/ServerHandshakePacketListenerImpl$1 net/minecraft/server/network/ServerHandshakePacketListenerImpl$1 +CL: net/minecraft/server/network/ServerLoginPacketListenerImpl net/minecraft/server/network/ServerLoginPacketListenerImpl +CL: net/minecraft/server/network/ServerLoginPacketListenerImpl$1 net/minecraft/server/network/ServerLoginPacketListenerImpl$1 +CL: net/minecraft/server/network/ServerLoginPacketListenerImpl$State net/minecraft/server/network/ServerLoginPacketListenerImpl$State +CL: net/minecraft/server/network/ServerPlayerConnection net/minecraft/server/network/ServerPlayerConnection +CL: net/minecraft/server/network/ServerStatusPacketListenerImpl net/minecraft/server/network/ServerStatusPacketListenerImpl +CL: net/minecraft/server/network/TextFilter net/minecraft/server/network/TextFilter +CL: net/minecraft/server/network/TextFilter$1 net/minecraft/server/network/TextFilter$1 +CL: net/minecraft/server/network/TextFilterClient net/minecraft/server/network/TextFilterClient +CL: net/minecraft/server/network/TextFilterClient$IgnoreStrategy net/minecraft/server/network/TextFilterClient$IgnoreStrategy +CL: net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder +CL: net/minecraft/server/network/TextFilterClient$MessageEncoder net/minecraft/server/network/TextFilterClient$MessageEncoder +CL: net/minecraft/server/network/TextFilterClient$PlayerContext net/minecraft/server/network/TextFilterClient$PlayerContext +CL: net/minecraft/server/network/TextFilterClient$RequestFailedException net/minecraft/server/network/TextFilterClient$RequestFailedException +CL: net/minecraft/server/network/package-info net/minecraft/server/network/package-info +CL: net/minecraft/server/package-info net/minecraft/server/package-info +CL: net/minecraft/server/packs/AbstractPackResources net/minecraft/server/packs/AbstractPackResources +CL: net/minecraft/server/packs/BuiltInMetadata net/minecraft/server/packs/BuiltInMetadata +CL: net/minecraft/server/packs/FeatureFlagsMetadataSection net/minecraft/server/packs/FeatureFlagsMetadataSection +CL: net/minecraft/server/packs/FilePackResources net/minecraft/server/packs/FilePackResources +CL: net/minecraft/server/packs/PackResources net/minecraft/server/packs/PackResources +CL: net/minecraft/server/packs/PackResources$ResourceOutput net/minecraft/server/packs/PackResources$ResourceOutput +CL: net/minecraft/server/packs/PackType net/minecraft/server/packs/PackType +CL: net/minecraft/server/packs/PathPackResources net/minecraft/server/packs/PathPackResources +CL: net/minecraft/server/packs/VanillaPackResources net/minecraft/server/packs/VanillaPackResources +CL: net/minecraft/server/packs/VanillaPackResourcesBuilder net/minecraft/server/packs/VanillaPackResourcesBuilder +CL: net/minecraft/server/packs/linkfs/DummyFileAttributes net/minecraft/server/packs/linkfs/DummyFileAttributes +CL: net/minecraft/server/packs/linkfs/LinkFSFileStore net/minecraft/server/packs/linkfs/LinkFSFileStore +CL: net/minecraft/server/packs/linkfs/LinkFSPath net/minecraft/server/packs/linkfs/LinkFSPath +CL: net/minecraft/server/packs/linkfs/LinkFSPath$1 net/minecraft/server/packs/linkfs/LinkFSPath$1 +CL: net/minecraft/server/packs/linkfs/LinkFSPath$2 net/minecraft/server/packs/linkfs/LinkFSPath$2 +CL: net/minecraft/server/packs/linkfs/LinkFSPath$3 net/minecraft/server/packs/linkfs/LinkFSPath$3 +CL: net/minecraft/server/packs/linkfs/LinkFSProvider net/minecraft/server/packs/linkfs/LinkFSProvider +CL: net/minecraft/server/packs/linkfs/LinkFSProvider$1 net/minecraft/server/packs/linkfs/LinkFSProvider$1 +CL: net/minecraft/server/packs/linkfs/LinkFSProvider$2 net/minecraft/server/packs/linkfs/LinkFSProvider$2 +CL: net/minecraft/server/packs/linkfs/LinkFileSystem net/minecraft/server/packs/linkfs/LinkFileSystem +CL: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder net/minecraft/server/packs/linkfs/LinkFileSystem$Builder +CL: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry +CL: net/minecraft/server/packs/linkfs/PathContents net/minecraft/server/packs/linkfs/PathContents +CL: net/minecraft/server/packs/linkfs/PathContents$1 net/minecraft/server/packs/linkfs/PathContents$1 +CL: net/minecraft/server/packs/linkfs/PathContents$2 net/minecraft/server/packs/linkfs/PathContents$2 +CL: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents net/minecraft/server/packs/linkfs/PathContents$DirectoryContents +CL: net/minecraft/server/packs/linkfs/PathContents$FileContents net/minecraft/server/packs/linkfs/PathContents$FileContents +CL: net/minecraft/server/packs/linkfs/package-info net/minecraft/server/packs/linkfs/package-info +CL: net/minecraft/server/packs/metadata/MetadataSectionSerializer net/minecraft/server/packs/metadata/MetadataSectionSerializer +CL: net/minecraft/server/packs/metadata/MetadataSectionType net/minecraft/server/packs/metadata/MetadataSectionType +CL: net/minecraft/server/packs/metadata/MetadataSectionType$1 net/minecraft/server/packs/metadata/MetadataSectionType$1 +CL: net/minecraft/server/packs/metadata/pack/PackMetadataSection net/minecraft/server/packs/metadata/pack/PackMetadataSection +CL: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer +CL: net/minecraft/server/packs/metadata/pack/package-info net/minecraft/server/packs/metadata/pack/package-info +CL: net/minecraft/server/packs/metadata/package-info net/minecraft/server/packs/metadata/package-info +CL: net/minecraft/server/packs/package-info net/minecraft/server/packs/package-info +CL: net/minecraft/server/packs/repository/BuiltInPackSource net/minecraft/server/packs/repository/BuiltInPackSource +CL: net/minecraft/server/packs/repository/FolderRepositorySource net/minecraft/server/packs/repository/FolderRepositorySource +CL: net/minecraft/server/packs/repository/Pack net/minecraft/server/packs/repository/Pack +CL: net/minecraft/server/packs/repository/Pack$Info net/minecraft/server/packs/repository/Pack$Info +CL: net/minecraft/server/packs/repository/Pack$Position net/minecraft/server/packs/repository/Pack$Position +CL: net/minecraft/server/packs/repository/Pack$ResourcesSupplier net/minecraft/server/packs/repository/Pack$ResourcesSupplier +CL: net/minecraft/server/packs/repository/PackCompatibility net/minecraft/server/packs/repository/PackCompatibility +CL: net/minecraft/server/packs/repository/PackRepository net/minecraft/server/packs/repository/PackRepository +CL: net/minecraft/server/packs/repository/PackSource net/minecraft/server/packs/repository/PackSource +CL: net/minecraft/server/packs/repository/PackSource$1 net/minecraft/server/packs/repository/PackSource$1 +CL: net/minecraft/server/packs/repository/RepositorySource net/minecraft/server/packs/repository/RepositorySource +CL: net/minecraft/server/packs/repository/ServerPacksSource net/minecraft/server/packs/repository/ServerPacksSource +CL: net/minecraft/server/packs/repository/package-info net/minecraft/server/packs/repository/package-info +CL: net/minecraft/server/packs/resources/CloseableResourceManager net/minecraft/server/packs/resources/CloseableResourceManager +CL: net/minecraft/server/packs/resources/FallbackResourceManager net/minecraft/server/packs/resources/FallbackResourceManager +CL: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex +CL: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack +CL: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream +CL: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry +CL: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource +CL: net/minecraft/server/packs/resources/IoSupplier net/minecraft/server/packs/resources/IoSupplier +CL: net/minecraft/server/packs/resources/MultiPackResourceManager net/minecraft/server/packs/resources/MultiPackResourceManager +CL: net/minecraft/server/packs/resources/PreparableReloadListener net/minecraft/server/packs/resources/PreparableReloadListener +CL: net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier +CL: net/minecraft/server/packs/resources/ProfiledReloadInstance net/minecraft/server/packs/resources/ProfiledReloadInstance +CL: net/minecraft/server/packs/resources/ProfiledReloadInstance$State net/minecraft/server/packs/resources/ProfiledReloadInstance$State +CL: net/minecraft/server/packs/resources/ReloadInstance net/minecraft/server/packs/resources/ReloadInstance +CL: net/minecraft/server/packs/resources/ReloadableResourceManager net/minecraft/server/packs/resources/ReloadableResourceManager +CL: net/minecraft/server/packs/resources/Resource net/minecraft/server/packs/resources/Resource +CL: net/minecraft/server/packs/resources/ResourceFilterSection net/minecraft/server/packs/resources/ResourceFilterSection +CL: net/minecraft/server/packs/resources/ResourceManager net/minecraft/server/packs/resources/ResourceManager +CL: net/minecraft/server/packs/resources/ResourceManager$Empty net/minecraft/server/packs/resources/ResourceManager$Empty +CL: net/minecraft/server/packs/resources/ResourceManagerReloadListener net/minecraft/server/packs/resources/ResourceManagerReloadListener +CL: net/minecraft/server/packs/resources/ResourceMetadata net/minecraft/server/packs/resources/ResourceMetadata +CL: net/minecraft/server/packs/resources/ResourceMetadata$1 net/minecraft/server/packs/resources/ResourceMetadata$1 +CL: net/minecraft/server/packs/resources/ResourceMetadata$2 net/minecraft/server/packs/resources/ResourceMetadata$2 +CL: net/minecraft/server/packs/resources/ResourceProvider net/minecraft/server/packs/resources/ResourceProvider +CL: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener +CL: net/minecraft/server/packs/resources/SimplePreparableReloadListener net/minecraft/server/packs/resources/SimplePreparableReloadListener +CL: net/minecraft/server/packs/resources/SimpleReloadInstance net/minecraft/server/packs/resources/SimpleReloadInstance +CL: net/minecraft/server/packs/resources/SimpleReloadInstance$1 net/minecraft/server/packs/resources/SimpleReloadInstance$1 +CL: net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory +CL: net/minecraft/server/packs/resources/package-info net/minecraft/server/packs/resources/package-info +CL: net/minecraft/server/players/BanListEntry net/minecraft/server/players/BanListEntry +CL: net/minecraft/server/players/GameProfileCache net/minecraft/server/players/GameProfileCache +CL: net/minecraft/server/players/GameProfileCache$1 net/minecraft/server/players/GameProfileCache$1 +CL: net/minecraft/server/players/GameProfileCache$GameProfileInfo net/minecraft/server/players/GameProfileCache$GameProfileInfo +CL: net/minecraft/server/players/IpBanList net/minecraft/server/players/IpBanList +CL: net/minecraft/server/players/IpBanListEntry net/minecraft/server/players/IpBanListEntry +CL: net/minecraft/server/players/OldUsersConverter net/minecraft/server/players/OldUsersConverter +CL: net/minecraft/server/players/OldUsersConverter$1 net/minecraft/server/players/OldUsersConverter$1 +CL: net/minecraft/server/players/OldUsersConverter$2 net/minecraft/server/players/OldUsersConverter$2 +CL: net/minecraft/server/players/OldUsersConverter$3 net/minecraft/server/players/OldUsersConverter$3 +CL: net/minecraft/server/players/OldUsersConverter$4 net/minecraft/server/players/OldUsersConverter$4 +CL: net/minecraft/server/players/OldUsersConverter$5 net/minecraft/server/players/OldUsersConverter$5 +CL: net/minecraft/server/players/OldUsersConverter$ConversionError net/minecraft/server/players/OldUsersConverter$ConversionError +CL: net/minecraft/server/players/PlayerList net/minecraft/server/players/PlayerList +CL: net/minecraft/server/players/PlayerList$1 net/minecraft/server/players/PlayerList$1 +CL: net/minecraft/server/players/ServerOpList net/minecraft/server/players/ServerOpList +CL: net/minecraft/server/players/ServerOpListEntry net/minecraft/server/players/ServerOpListEntry +CL: net/minecraft/server/players/SleepStatus net/minecraft/server/players/SleepStatus +CL: net/minecraft/server/players/StoredUserEntry net/minecraft/server/players/StoredUserEntry +CL: net/minecraft/server/players/StoredUserList net/minecraft/server/players/StoredUserList +CL: net/minecraft/server/players/UserBanList net/minecraft/server/players/UserBanList +CL: net/minecraft/server/players/UserBanListEntry net/minecraft/server/players/UserBanListEntry +CL: net/minecraft/server/players/UserWhiteList net/minecraft/server/players/UserWhiteList +CL: net/minecraft/server/players/UserWhiteListEntry net/minecraft/server/players/UserWhiteListEntry +CL: net/minecraft/server/players/package-info net/minecraft/server/players/package-info +CL: net/minecraft/server/rcon/NetworkDataOutputStream net/minecraft/server/rcon/NetworkDataOutputStream +CL: net/minecraft/server/rcon/PktUtils net/minecraft/server/rcon/PktUtils +CL: net/minecraft/server/rcon/RconConsoleSource net/minecraft/server/rcon/RconConsoleSource +CL: net/minecraft/server/rcon/package-info net/minecraft/server/rcon/package-info +CL: net/minecraft/server/rcon/thread/GenericThread net/minecraft/server/rcon/thread/GenericThread +CL: net/minecraft/server/rcon/thread/QueryThreadGs4 net/minecraft/server/rcon/thread/QueryThreadGs4 +CL: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge +CL: net/minecraft/server/rcon/thread/RconClient net/minecraft/server/rcon/thread/RconClient +CL: net/minecraft/server/rcon/thread/RconThread net/minecraft/server/rcon/thread/RconThread +CL: net/minecraft/server/rcon/thread/package-info net/minecraft/server/rcon/thread/package-info +CL: net/minecraft/sounds/Music net/minecraft/sounds/Music +CL: net/minecraft/sounds/Musics net/minecraft/sounds/Musics +CL: net/minecraft/sounds/SoundEvent net/minecraft/sounds/SoundEvent +CL: net/minecraft/sounds/SoundEvents net/minecraft/sounds/SoundEvents +CL: net/minecraft/sounds/SoundSource net/minecraft/sounds/SoundSource +CL: net/minecraft/sounds/package-info net/minecraft/sounds/package-info +CL: net/minecraft/stats/RecipeBook net/minecraft/stats/RecipeBook +CL: net/minecraft/stats/RecipeBookSettings net/minecraft/stats/RecipeBookSettings +CL: net/minecraft/stats/RecipeBookSettings$TypeSettings net/minecraft/stats/RecipeBookSettings$TypeSettings +CL: net/minecraft/stats/ServerRecipeBook net/minecraft/stats/ServerRecipeBook +CL: net/minecraft/stats/ServerStatsCounter net/minecraft/stats/ServerStatsCounter +CL: net/minecraft/stats/Stat net/minecraft/stats/Stat +CL: net/minecraft/stats/StatFormatter net/minecraft/stats/StatFormatter +CL: net/minecraft/stats/StatType net/minecraft/stats/StatType +CL: net/minecraft/stats/Stats net/minecraft/stats/Stats +CL: net/minecraft/stats/StatsCounter net/minecraft/stats/StatsCounter +CL: net/minecraft/stats/package-info net/minecraft/stats/package-info +CL: net/minecraft/tags/BannerPatternTags net/minecraft/tags/BannerPatternTags +CL: net/minecraft/tags/BiomeTags net/minecraft/tags/BiomeTags +CL: net/minecraft/tags/BlockTags net/minecraft/tags/BlockTags +CL: net/minecraft/tags/CatVariantTags net/minecraft/tags/CatVariantTags +CL: net/minecraft/tags/DamageTypeTags net/minecraft/tags/DamageTypeTags +CL: net/minecraft/tags/EntityTypeTags net/minecraft/tags/EntityTypeTags +CL: net/minecraft/tags/FlatLevelGeneratorPresetTags net/minecraft/tags/FlatLevelGeneratorPresetTags +CL: net/minecraft/tags/FluidTags net/minecraft/tags/FluidTags +CL: net/minecraft/tags/GameEventTags net/minecraft/tags/GameEventTags +CL: net/minecraft/tags/InstrumentTags net/minecraft/tags/InstrumentTags +CL: net/minecraft/tags/ItemTags net/minecraft/tags/ItemTags +CL: net/minecraft/tags/PaintingVariantTags net/minecraft/tags/PaintingVariantTags +CL: net/minecraft/tags/PoiTypeTags net/minecraft/tags/PoiTypeTags +CL: net/minecraft/tags/StructureTags net/minecraft/tags/StructureTags +CL: net/minecraft/tags/TagBuilder net/minecraft/tags/TagBuilder +CL: net/minecraft/tags/TagEntry net/minecraft/tags/TagEntry +CL: net/minecraft/tags/TagEntry$Lookup net/minecraft/tags/TagEntry$Lookup +CL: net/minecraft/tags/TagFile net/minecraft/tags/TagFile +CL: net/minecraft/tags/TagKey net/minecraft/tags/TagKey +CL: net/minecraft/tags/TagLoader net/minecraft/tags/TagLoader +CL: net/minecraft/tags/TagLoader$1 net/minecraft/tags/TagLoader$1 +CL: net/minecraft/tags/TagLoader$EntryWithSource net/minecraft/tags/TagLoader$EntryWithSource +CL: net/minecraft/tags/TagLoader$SortingEntry net/minecraft/tags/TagLoader$SortingEntry +CL: net/minecraft/tags/TagManager net/minecraft/tags/TagManager +CL: net/minecraft/tags/TagManager$LoadResult net/minecraft/tags/TagManager$LoadResult +CL: net/minecraft/tags/TagNetworkSerialization net/minecraft/tags/TagNetworkSerialization +CL: net/minecraft/tags/TagNetworkSerialization$NetworkPayload net/minecraft/tags/TagNetworkSerialization$NetworkPayload +CL: net/minecraft/tags/TagNetworkSerialization$TagOutput net/minecraft/tags/TagNetworkSerialization$TagOutput +CL: net/minecraft/tags/WorldPresetTags net/minecraft/tags/WorldPresetTags +CL: net/minecraft/tags/package-info net/minecraft/tags/package-info +CL: net/minecraft/util/AbortableIterationConsumer net/minecraft/util/AbortableIterationConsumer +CL: net/minecraft/util/AbortableIterationConsumer$Continuation net/minecraft/util/AbortableIterationConsumer$Continuation +CL: net/minecraft/util/BitStorage net/minecraft/util/BitStorage +CL: net/minecraft/util/Brightness net/minecraft/util/Brightness +CL: net/minecraft/util/ByIdMap net/minecraft/util/ByIdMap +CL: net/minecraft/util/ByIdMap$1 net/minecraft/util/ByIdMap$1 +CL: net/minecraft/util/ByIdMap$OutOfBoundsStrategy net/minecraft/util/ByIdMap$OutOfBoundsStrategy +CL: net/minecraft/util/ClassInstanceMultiMap net/minecraft/util/ClassInstanceMultiMap +CL: net/minecraft/util/CommonColors net/minecraft/util/CommonColors +CL: net/minecraft/util/CommonLinks net/minecraft/util/CommonLinks +CL: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap +CL: net/minecraft/util/Crypt net/minecraft/util/Crypt +CL: net/minecraft/util/Crypt$ByteArrayToKeyFunction net/minecraft/util/Crypt$ByteArrayToKeyFunction +CL: net/minecraft/util/Crypt$SaltSignaturePair net/minecraft/util/Crypt$SaltSignaturePair +CL: net/minecraft/util/Crypt$SaltSupplier net/minecraft/util/Crypt$SaltSupplier +CL: net/minecraft/util/CryptException net/minecraft/util/CryptException +CL: net/minecraft/util/CsvOutput net/minecraft/util/CsvOutput +CL: net/minecraft/util/CsvOutput$Builder net/minecraft/util/CsvOutput$Builder +CL: net/minecraft/util/CubicSampler net/minecraft/util/CubicSampler +CL: net/minecraft/util/CubicSampler$Vec3Fetcher net/minecraft/util/CubicSampler$Vec3Fetcher +CL: net/minecraft/util/CubicSpline net/minecraft/util/CubicSpline +CL: net/minecraft/util/CubicSpline$1Point net/minecraft/util/CubicSpline$1Point +CL: net/minecraft/util/CubicSpline$Builder net/minecraft/util/CubicSpline$Builder +CL: net/minecraft/util/CubicSpline$Constant net/minecraft/util/CubicSpline$Constant +CL: net/minecraft/util/CubicSpline$CoordinateVisitor net/minecraft/util/CubicSpline$CoordinateVisitor +CL: net/minecraft/util/CubicSpline$Multipoint net/minecraft/util/CubicSpline$Multipoint +CL: net/minecraft/util/DebugBuffer net/minecraft/util/DebugBuffer +CL: net/minecraft/util/DependencySorter net/minecraft/util/DependencySorter +CL: net/minecraft/util/DependencySorter$Entry net/minecraft/util/DependencySorter$Entry +CL: net/minecraft/util/DirectoryLock net/minecraft/util/DirectoryLock +CL: net/minecraft/util/DirectoryLock$LockException net/minecraft/util/DirectoryLock$LockException +CL: net/minecraft/util/ExceptionCollector net/minecraft/util/ExceptionCollector +CL: net/minecraft/util/ExtraCodecs net/minecraft/util/ExtraCodecs +CL: net/minecraft/util/ExtraCodecs$1 net/minecraft/util/ExtraCodecs$1 +CL: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec +CL: net/minecraft/util/ExtraCodecs$2 net/minecraft/util/ExtraCodecs$2 +CL: net/minecraft/util/ExtraCodecs$3 net/minecraft/util/ExtraCodecs$3 +CL: net/minecraft/util/ExtraCodecs$4 net/minecraft/util/ExtraCodecs$4 +CL: net/minecraft/util/ExtraCodecs$EitherCodec net/minecraft/util/ExtraCodecs$EitherCodec +CL: net/minecraft/util/ExtraCodecs$LazyInitializedCodec net/minecraft/util/ExtraCodecs$LazyInitializedCodec +CL: net/minecraft/util/ExtraCodecs$TagOrElementLocation net/minecraft/util/ExtraCodecs$TagOrElementLocation +CL: net/minecraft/util/ExtraCodecs$XorCodec net/minecraft/util/ExtraCodecs$XorCodec +CL: net/minecraft/util/FastBufferedInputStream net/minecraft/util/FastBufferedInputStream +CL: net/minecraft/util/FastColor net/minecraft/util/FastColor +CL: net/minecraft/util/FastColor$ABGR32 net/minecraft/util/FastColor$ABGR32 +CL: net/minecraft/util/FastColor$ARGB32 net/minecraft/util/FastColor$ARGB32 +CL: net/minecraft/util/FileZipper net/minecraft/util/FileZipper +CL: net/minecraft/util/FormattedCharSequence net/minecraft/util/FormattedCharSequence +CL: net/minecraft/util/FormattedCharSink net/minecraft/util/FormattedCharSink +CL: net/minecraft/util/FrameTimer net/minecraft/util/FrameTimer +CL: net/minecraft/util/FutureChain net/minecraft/util/FutureChain +CL: net/minecraft/util/Graph net/minecraft/util/Graph +CL: net/minecraft/util/GsonHelper net/minecraft/util/GsonHelper +CL: net/minecraft/util/HttpUtil net/minecraft/util/HttpUtil +CL: net/minecraft/util/InclusiveRange net/minecraft/util/InclusiveRange +CL: net/minecraft/util/KeyDispatchDataCodec net/minecraft/util/KeyDispatchDataCodec +CL: net/minecraft/util/LazyLoadedValue net/minecraft/util/LazyLoadedValue +CL: net/minecraft/util/LinearCongruentialGenerator net/minecraft/util/LinearCongruentialGenerator +CL: net/minecraft/util/LowerCaseEnumTypeAdapterFactory net/minecraft/util/LowerCaseEnumTypeAdapterFactory +CL: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1 net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1 +CL: net/minecraft/util/MemoryReserve net/minecraft/util/MemoryReserve +CL: net/minecraft/util/ModCheck net/minecraft/util/ModCheck +CL: net/minecraft/util/ModCheck$Confidence net/minecraft/util/ModCheck$Confidence +CL: net/minecraft/util/Mth net/minecraft/util/Mth +CL: net/minecraft/util/NativeModuleLister net/minecraft/util/NativeModuleLister +CL: net/minecraft/util/NativeModuleLister$NativeModuleInfo net/minecraft/util/NativeModuleLister$NativeModuleInfo +CL: net/minecraft/util/NativeModuleLister$NativeModuleVersion net/minecraft/util/NativeModuleLister$NativeModuleVersion +CL: net/minecraft/util/OptionEnum net/minecraft/util/OptionEnum +CL: net/minecraft/util/ParticleUtils net/minecraft/util/ParticleUtils +CL: net/minecraft/util/ProgressListener net/minecraft/util/ProgressListener +CL: net/minecraft/util/RandomSource net/minecraft/util/RandomSource +CL: net/minecraft/util/ResourceLocationPattern net/minecraft/util/ResourceLocationPattern +CL: net/minecraft/util/SegmentedAnglePrecision net/minecraft/util/SegmentedAnglePrecision +CL: net/minecraft/util/SignatureUpdater net/minecraft/util/SignatureUpdater +CL: net/minecraft/util/SignatureUpdater$Output net/minecraft/util/SignatureUpdater$Output +CL: net/minecraft/util/SignatureValidator net/minecraft/util/SignatureValidator +CL: net/minecraft/util/Signer net/minecraft/util/Signer +CL: net/minecraft/util/SimpleBitStorage net/minecraft/util/SimpleBitStorage +CL: net/minecraft/util/SimpleBitStorage$InitializationException net/minecraft/util/SimpleBitStorage$InitializationException +CL: net/minecraft/util/SingleKeyCache net/minecraft/util/SingleKeyCache +CL: net/minecraft/util/SmoothDouble net/minecraft/util/SmoothDouble +CL: net/minecraft/util/SortedArraySet net/minecraft/util/SortedArraySet +CL: net/minecraft/util/SortedArraySet$ArrayIterator net/minecraft/util/SortedArraySet$ArrayIterator +CL: net/minecraft/util/SpawnUtil net/minecraft/util/SpawnUtil +CL: net/minecraft/util/SpawnUtil$Strategy net/minecraft/util/SpawnUtil$Strategy +CL: net/minecraft/util/StringDecomposer net/minecraft/util/StringDecomposer +CL: net/minecraft/util/StringRepresentable net/minecraft/util/StringRepresentable +CL: net/minecraft/util/StringRepresentable$1 net/minecraft/util/StringRepresentable$1 +CL: net/minecraft/util/StringRepresentable$EnumCodec net/minecraft/util/StringRepresentable$EnumCodec +CL: net/minecraft/util/StringUtil net/minecraft/util/StringUtil +CL: net/minecraft/util/TaskChainer net/minecraft/util/TaskChainer +CL: net/minecraft/util/TaskChainer$DelayedTask net/minecraft/util/TaskChainer$DelayedTask +CL: net/minecraft/util/ThreadingDetector net/minecraft/util/ThreadingDetector +CL: net/minecraft/util/TimeSource net/minecraft/util/TimeSource +CL: net/minecraft/util/TimeSource$NanoTimeSource net/minecraft/util/TimeSource$NanoTimeSource +CL: net/minecraft/util/TimeUtil net/minecraft/util/TimeUtil +CL: net/minecraft/util/ToFloatFunction net/minecraft/util/ToFloatFunction +CL: net/minecraft/util/ToFloatFunction$1 net/minecraft/util/ToFloatFunction$1 +CL: net/minecraft/util/ToFloatFunction$2 net/minecraft/util/ToFloatFunction$2 +CL: net/minecraft/util/Tuple net/minecraft/util/Tuple +CL: net/minecraft/util/Unit net/minecraft/util/Unit +CL: net/minecraft/util/VisibleForDebug net/minecraft/util/VisibleForDebug +CL: net/minecraft/util/ZeroBitStorage net/minecraft/util/ZeroBitStorage +CL: net/minecraft/util/datafix/DataFixTypes net/minecraft/util/datafix/DataFixTypes +CL: net/minecraft/util/datafix/DataFixers net/minecraft/util/datafix/DataFixers +CL: net/minecraft/util/datafix/DataFixers$1 net/minecraft/util/datafix/DataFixers$1 +CL: net/minecraft/util/datafix/DataFixers$2 net/minecraft/util/datafix/DataFixers$2 +CL: net/minecraft/util/datafix/PackedBitStorage net/minecraft/util/datafix/PackedBitStorage +CL: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix net/minecraft/util/datafix/fixes/AbstractArrowPickupFix +CL: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix net/minecraft/util/datafix/fixes/AbstractPoiSectionFix +CL: net/minecraft/util/datafix/fixes/AbstractUUIDFix net/minecraft/util/datafix/fixes/AbstractUUIDFix +CL: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix +CL: net/minecraft/util/datafix/fixes/AddNewChoices net/minecraft/util/datafix/fixes/AddNewChoices +CL: net/minecraft/util/datafix/fixes/AdvancementsFix net/minecraft/util/datafix/fixes/AdvancementsFix +CL: net/minecraft/util/datafix/fixes/AdvancementsRenameFix net/minecraft/util/datafix/fixes/AdvancementsRenameFix +CL: net/minecraft/util/datafix/fixes/AttributesRename net/minecraft/util/datafix/fixes/AttributesRename +CL: net/minecraft/util/datafix/fixes/BedItemColorFix net/minecraft/util/datafix/fixes/BedItemColorFix +CL: net/minecraft/util/datafix/fixes/BiomeFix net/minecraft/util/datafix/fixes/BiomeFix +CL: net/minecraft/util/datafix/fixes/BitStorageAlignFix net/minecraft/util/datafix/fixes/BitStorageAlignFix +CL: net/minecraft/util/datafix/fixes/BlendingDataFix net/minecraft/util/datafix/fixes/BlendingDataFix +CL: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix +CL: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix +CL: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix +CL: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix +CL: net/minecraft/util/datafix/fixes/BlockEntityIdFix net/minecraft/util/datafix/fixes/BlockEntityIdFix +CL: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix +CL: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked net/minecraft/util/datafix/fixes/BlockEntityKeepPacked +CL: net/minecraft/util/datafix/fixes/BlockEntityRenameFix net/minecraft/util/datafix/fixes/BlockEntityRenameFix +CL: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix +CL: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix +CL: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix +CL: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1 net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1 +CL: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix net/minecraft/util/datafix/fixes/BlockEntityUUIDFix +CL: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix net/minecraft/util/datafix/fixes/BlockNameFlatteningFix +CL: net/minecraft/util/datafix/fixes/BlockRenameFix net/minecraft/util/datafix/fixes/BlockRenameFix +CL: net/minecraft/util/datafix/fixes/BlockRenameFix$1 net/minecraft/util/datafix/fixes/BlockRenameFix$1 +CL: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw +CL: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1 net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1 +CL: net/minecraft/util/datafix/fixes/BlockStateData net/minecraft/util/datafix/fixes/BlockStateData +CL: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix +CL: net/minecraft/util/datafix/fixes/CatTypeFix net/minecraft/util/datafix/fixes/CatTypeFix +CL: net/minecraft/util/datafix/fixes/CauldronRenameFix net/minecraft/util/datafix/fixes/CauldronRenameFix +CL: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames net/minecraft/util/datafix/fixes/CavesAndCliffsRenames +CL: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix +CL: net/minecraft/util/datafix/fixes/ChunkBiomeFix net/minecraft/util/datafix/fixes/ChunkBiomeFix +CL: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix +CL: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix net/minecraft/util/datafix/fixes/ChunkDeleteLightFix +CL: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix +CL: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix net/minecraft/util/datafix/fixes/ChunkLightRemoveFix +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1 net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1 +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk +CL: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix net/minecraft/util/datafix/fixes/ChunkProtoTickListFix +CL: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer +CL: net/minecraft/util/datafix/fixes/ChunkRenamesFix net/minecraft/util/datafix/fixes/ChunkRenamesFix +CL: net/minecraft/util/datafix/fixes/ChunkStatusFix net/minecraft/util/datafix/fixes/ChunkStatusFix +CL: net/minecraft/util/datafix/fixes/ChunkStatusFix2 net/minecraft/util/datafix/fixes/ChunkStatusFix2 +CL: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix +CL: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix net/minecraft/util/datafix/fixes/ChunkToProtochunkFix +CL: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix +CL: net/minecraft/util/datafix/fixes/CriteriaRenameFix net/minecraft/util/datafix/fixes/CriteriaRenameFix +CL: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix +CL: net/minecraft/util/datafix/fixes/DyeItemRenameFix net/minecraft/util/datafix/fixes/DyeItemRenameFix +CL: net/minecraft/util/datafix/fixes/EffectDurationFix net/minecraft/util/datafix/fixes/EffectDurationFix +CL: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix +CL: net/minecraft/util/datafix/fixes/EntityBlockStateFix net/minecraft/util/datafix/fixes/EntityBlockStateFix +CL: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix +CL: net/minecraft/util/datafix/fixes/EntityCatSplitFix net/minecraft/util/datafix/fixes/EntityCatSplitFix +CL: net/minecraft/util/datafix/fixes/EntityCodSalmonFix net/minecraft/util/datafix/fixes/EntityCodSalmonFix +CL: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix +CL: net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix +CL: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix +CL: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix +CL: net/minecraft/util/datafix/fixes/EntityHealthFix net/minecraft/util/datafix/fixes/EntityHealthFix +CL: net/minecraft/util/datafix/fixes/EntityHorseSaddleFix net/minecraft/util/datafix/fixes/EntityHorseSaddleFix +CL: net/minecraft/util/datafix/fixes/EntityHorseSplitFix net/minecraft/util/datafix/fixes/EntityHorseSplitFix +CL: net/minecraft/util/datafix/fixes/EntityIdFix net/minecraft/util/datafix/fixes/EntityIdFix +CL: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix +CL: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix +CL: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix +CL: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix +CL: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix +CL: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix +CL: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix +CL: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix net/minecraft/util/datafix/fixes/EntityRavagerRenameFix +CL: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix +CL: net/minecraft/util/datafix/fixes/EntityRenameFix net/minecraft/util/datafix/fixes/EntityRenameFix +CL: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix +CL: net/minecraft/util/datafix/fixes/EntityShulkerColorFix net/minecraft/util/datafix/fixes/EntityShulkerColorFix +CL: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix net/minecraft/util/datafix/fixes/EntityShulkerRotationFix +CL: net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix +CL: net/minecraft/util/datafix/fixes/EntityStringUuidFix net/minecraft/util/datafix/fixes/EntityStringUuidFix +CL: net/minecraft/util/datafix/fixes/EntityTheRenameningFix net/minecraft/util/datafix/fixes/EntityTheRenameningFix +CL: net/minecraft/util/datafix/fixes/EntityTippedArrowFix net/minecraft/util/datafix/fixes/EntityTippedArrowFix +CL: net/minecraft/util/datafix/fixes/EntityUUIDFix net/minecraft/util/datafix/fixes/EntityUUIDFix +CL: net/minecraft/util/datafix/fixes/EntityVariantFix net/minecraft/util/datafix/fixes/EntityVariantFix +CL: net/minecraft/util/datafix/fixes/EntityWolfColorFix net/minecraft/util/datafix/fixes/EntityWolfColorFix +CL: net/minecraft/util/datafix/fixes/EntityZombieSplitFix net/minecraft/util/datafix/fixes/EntityZombieSplitFix +CL: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix +CL: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix +CL: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix +CL: net/minecraft/util/datafix/fixes/FilteredBooksFix net/minecraft/util/datafix/fixes/FilteredBooksFix +CL: net/minecraft/util/datafix/fixes/FilteredSignsFix net/minecraft/util/datafix/fixes/FilteredSignsFix +CL: net/minecraft/util/datafix/fixes/ForcePoiRebuild net/minecraft/util/datafix/fixes/ForcePoiRebuild +CL: net/minecraft/util/datafix/fixes/FurnaceRecipeFix net/minecraft/util/datafix/fixes/FurnaceRecipeFix +CL: net/minecraft/util/datafix/fixes/GoatHornIdFix net/minecraft/util/datafix/fixes/GoatHornIdFix +CL: net/minecraft/util/datafix/fixes/GossipUUIDFix net/minecraft/util/datafix/fixes/GossipUUIDFix +CL: net/minecraft/util/datafix/fixes/HeightmapRenamingFix net/minecraft/util/datafix/fixes/HeightmapRenamingFix +CL: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix +CL: net/minecraft/util/datafix/fixes/ItemBannerColorFix net/minecraft/util/datafix/fixes/ItemBannerColorFix +CL: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix +CL: net/minecraft/util/datafix/fixes/ItemIdFix net/minecraft/util/datafix/fixes/ItemIdFix +CL: net/minecraft/util/datafix/fixes/ItemLoreFix net/minecraft/util/datafix/fixes/ItemLoreFix +CL: net/minecraft/util/datafix/fixes/ItemPotionFix net/minecraft/util/datafix/fixes/ItemPotionFix +CL: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix +CL: net/minecraft/util/datafix/fixes/ItemRenameFix net/minecraft/util/datafix/fixes/ItemRenameFix +CL: net/minecraft/util/datafix/fixes/ItemRenameFix$1 net/minecraft/util/datafix/fixes/ItemRenameFix$1 +CL: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix +CL: net/minecraft/util/datafix/fixes/ItemSpawnEggFix net/minecraft/util/datafix/fixes/ItemSpawnEggFix +CL: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix +CL: net/minecraft/util/datafix/fixes/ItemStackMapIdFix net/minecraft/util/datafix/fixes/ItemStackMapIdFix +CL: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix +CL: net/minecraft/util/datafix/fixes/ItemStackTagFix net/minecraft/util/datafix/fixes/ItemStackTagFix +CL: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix +CL: net/minecraft/util/datafix/fixes/ItemStackUUIDFix net/minecraft/util/datafix/fixes/ItemStackUUIDFix +CL: net/minecraft/util/datafix/fixes/ItemWaterPotionFix net/minecraft/util/datafix/fixes/ItemWaterPotionFix +CL: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix +CL: net/minecraft/util/datafix/fixes/JigsawPropertiesFix net/minecraft/util/datafix/fixes/JigsawPropertiesFix +CL: net/minecraft/util/datafix/fixes/JigsawRotationFix net/minecraft/util/datafix/fixes/JigsawRotationFix +CL: net/minecraft/util/datafix/fixes/LeavesFix net/minecraft/util/datafix/fixes/LeavesFix +CL: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection +CL: net/minecraft/util/datafix/fixes/LeavesFix$Section net/minecraft/util/datafix/fixes/LeavesFix$Section +CL: net/minecraft/util/datafix/fixes/LegacyDragonFightFix net/minecraft/util/datafix/fixes/LegacyDragonFightFix +CL: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix +CL: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix +CL: net/minecraft/util/datafix/fixes/LevelUUIDFix net/minecraft/util/datafix/fixes/LevelUUIDFix +CL: net/minecraft/util/datafix/fixes/MapIdFix net/minecraft/util/datafix/fixes/MapIdFix +CL: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix net/minecraft/util/datafix/fixes/MemoryExpiryDataFix +CL: net/minecraft/util/datafix/fixes/MissingDimensionFix net/minecraft/util/datafix/fixes/MissingDimensionFix +CL: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix +CL: net/minecraft/util/datafix/fixes/NamedEntityFix net/minecraft/util/datafix/fixes/NamedEntityFix +CL: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix +CL: net/minecraft/util/datafix/fixes/NewVillageFix net/minecraft/util/datafix/fixes/NewVillageFix +CL: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix +CL: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix +CL: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix +CL: net/minecraft/util/datafix/fixes/OminousBannerRenameFix net/minecraft/util/datafix/fixes/OminousBannerRenameFix +CL: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix +CL: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix +CL: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix +CL: net/minecraft/util/datafix/fixes/OptionsForceVBOFix net/minecraft/util/datafix/fixes/OptionsForceVBOFix +CL: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix +CL: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix +CL: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix +CL: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix +CL: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix net/minecraft/util/datafix/fixes/OptionsRenameFieldFix +CL: net/minecraft/util/datafix/fixes/OverreachingTickFix net/minecraft/util/datafix/fixes/OverreachingTickFix +CL: net/minecraft/util/datafix/fixes/PlayerUUIDFix net/minecraft/util/datafix/fixes/PlayerUUIDFix +CL: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix net/minecraft/util/datafix/fixes/PoiTypeRemoveFix +CL: net/minecraft/util/datafix/fixes/PoiTypeRenameFix net/minecraft/util/datafix/fixes/PoiTypeRenameFix +CL: net/minecraft/util/datafix/fixes/RecipesFix net/minecraft/util/datafix/fixes/RecipesFix +CL: net/minecraft/util/datafix/fixes/RecipesRenameningFix net/minecraft/util/datafix/fixes/RecipesRenameningFix +CL: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix +CL: net/minecraft/util/datafix/fixes/References net/minecraft/util/datafix/fixes/References +CL: net/minecraft/util/datafix/fixes/RemapChunkStatusFix net/minecraft/util/datafix/fixes/RemapChunkStatusFix +CL: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix net/minecraft/util/datafix/fixes/RemoveGolemGossipFix +CL: net/minecraft/util/datafix/fixes/RenamedCoralFansFix net/minecraft/util/datafix/fixes/RenamedCoralFansFix +CL: net/minecraft/util/datafix/fixes/RenamedCoralFix net/minecraft/util/datafix/fixes/RenamedCoralFix +CL: net/minecraft/util/datafix/fixes/ReorganizePoi net/minecraft/util/datafix/fixes/ReorganizePoi +CL: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix +CL: net/minecraft/util/datafix/fixes/SavedDataUUIDFix net/minecraft/util/datafix/fixes/SavedDataUUIDFix +CL: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix net/minecraft/util/datafix/fixes/SimpleEntityRenameFix +CL: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix net/minecraft/util/datafix/fixes/SimplestEntityRenameFix +CL: net/minecraft/util/datafix/fixes/SpawnerDataFix net/minecraft/util/datafix/fixes/SpawnerDataFix +CL: net/minecraft/util/datafix/fixes/StatsCounterFix net/minecraft/util/datafix/fixes/StatsCounterFix +CL: net/minecraft/util/datafix/fixes/StatsRenameFix net/minecraft/util/datafix/fixes/StatsRenameFix +CL: net/minecraft/util/datafix/fixes/StriderGravityFix net/minecraft/util/datafix/fixes/StriderGravityFix +CL: net/minecraft/util/datafix/fixes/StructureReferenceCountFix net/minecraft/util/datafix/fixes/StructureReferenceCountFix +CL: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix +CL: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix +CL: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion +CL: net/minecraft/util/datafix/fixes/TeamDisplayNameFix net/minecraft/util/datafix/fixes/TeamDisplayNameFix +CL: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix +CL: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection +CL: net/minecraft/util/datafix/fixes/VariantRenameFix net/minecraft/util/datafix/fixes/VariantRenameFix +CL: net/minecraft/util/datafix/fixes/VillagerDataFix net/minecraft/util/datafix/fixes/VillagerDataFix +CL: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix net/minecraft/util/datafix/fixes/VillagerFollowRangeFix +CL: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix +CL: net/minecraft/util/datafix/fixes/VillagerTradeFix net/minecraft/util/datafix/fixes/VillagerTradeFix +CL: net/minecraft/util/datafix/fixes/WallPropertyFix net/minecraft/util/datafix/fixes/WallPropertyFix +CL: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsFix net/minecraft/util/datafix/fixes/WorldGenSettingsFix +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix +CL: net/minecraft/util/datafix/fixes/WriteAndReadFix net/minecraft/util/datafix/fixes/WriteAndReadFix +CL: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix +CL: net/minecraft/util/datafix/fixes/package-info net/minecraft/util/datafix/fixes/package-info +CL: net/minecraft/util/datafix/package-info net/minecraft/util/datafix/package-info +CL: net/minecraft/util/datafix/schemas/NamespacedSchema net/minecraft/util/datafix/schemas/NamespacedSchema +CL: net/minecraft/util/datafix/schemas/NamespacedSchema$1 net/minecraft/util/datafix/schemas/NamespacedSchema$1 +CL: net/minecraft/util/datafix/schemas/V100 net/minecraft/util/datafix/schemas/V100 +CL: net/minecraft/util/datafix/schemas/V102 net/minecraft/util/datafix/schemas/V102 +CL: net/minecraft/util/datafix/schemas/V1022 net/minecraft/util/datafix/schemas/V1022 +CL: net/minecraft/util/datafix/schemas/V106 net/minecraft/util/datafix/schemas/V106 +CL: net/minecraft/util/datafix/schemas/V107 net/minecraft/util/datafix/schemas/V107 +CL: net/minecraft/util/datafix/schemas/V1125 net/minecraft/util/datafix/schemas/V1125 +CL: net/minecraft/util/datafix/schemas/V135 net/minecraft/util/datafix/schemas/V135 +CL: net/minecraft/util/datafix/schemas/V143 net/minecraft/util/datafix/schemas/V143 +CL: net/minecraft/util/datafix/schemas/V1451 net/minecraft/util/datafix/schemas/V1451 +CL: net/minecraft/util/datafix/schemas/V1451_1 net/minecraft/util/datafix/schemas/V1451_1 +CL: net/minecraft/util/datafix/schemas/V1451_2 net/minecraft/util/datafix/schemas/V1451_2 +CL: net/minecraft/util/datafix/schemas/V1451_3 net/minecraft/util/datafix/schemas/V1451_3 +CL: net/minecraft/util/datafix/schemas/V1451_4 net/minecraft/util/datafix/schemas/V1451_4 +CL: net/minecraft/util/datafix/schemas/V1451_5 net/minecraft/util/datafix/schemas/V1451_5 +CL: net/minecraft/util/datafix/schemas/V1451_6 net/minecraft/util/datafix/schemas/V1451_6 +CL: net/minecraft/util/datafix/schemas/V1451_6$1 net/minecraft/util/datafix/schemas/V1451_6$1 +CL: net/minecraft/util/datafix/schemas/V1451_6$2 net/minecraft/util/datafix/schemas/V1451_6$2 +CL: net/minecraft/util/datafix/schemas/V1460 net/minecraft/util/datafix/schemas/V1460 +CL: net/minecraft/util/datafix/schemas/V1466 net/minecraft/util/datafix/schemas/V1466 +CL: net/minecraft/util/datafix/schemas/V1470 net/minecraft/util/datafix/schemas/V1470 +CL: net/minecraft/util/datafix/schemas/V1481 net/minecraft/util/datafix/schemas/V1481 +CL: net/minecraft/util/datafix/schemas/V1483 net/minecraft/util/datafix/schemas/V1483 +CL: net/minecraft/util/datafix/schemas/V1486 net/minecraft/util/datafix/schemas/V1486 +CL: net/minecraft/util/datafix/schemas/V1510 net/minecraft/util/datafix/schemas/V1510 +CL: net/minecraft/util/datafix/schemas/V1800 net/minecraft/util/datafix/schemas/V1800 +CL: net/minecraft/util/datafix/schemas/V1801 net/minecraft/util/datafix/schemas/V1801 +CL: net/minecraft/util/datafix/schemas/V1904 net/minecraft/util/datafix/schemas/V1904 +CL: net/minecraft/util/datafix/schemas/V1906 net/minecraft/util/datafix/schemas/V1906 +CL: net/minecraft/util/datafix/schemas/V1909 net/minecraft/util/datafix/schemas/V1909 +CL: net/minecraft/util/datafix/schemas/V1920 net/minecraft/util/datafix/schemas/V1920 +CL: net/minecraft/util/datafix/schemas/V1928 net/minecraft/util/datafix/schemas/V1928 +CL: net/minecraft/util/datafix/schemas/V1929 net/minecraft/util/datafix/schemas/V1929 +CL: net/minecraft/util/datafix/schemas/V1931 net/minecraft/util/datafix/schemas/V1931 +CL: net/minecraft/util/datafix/schemas/V2100 net/minecraft/util/datafix/schemas/V2100 +CL: net/minecraft/util/datafix/schemas/V2501 net/minecraft/util/datafix/schemas/V2501 +CL: net/minecraft/util/datafix/schemas/V2502 net/minecraft/util/datafix/schemas/V2502 +CL: net/minecraft/util/datafix/schemas/V2505 net/minecraft/util/datafix/schemas/V2505 +CL: net/minecraft/util/datafix/schemas/V2509 net/minecraft/util/datafix/schemas/V2509 +CL: net/minecraft/util/datafix/schemas/V2519 net/minecraft/util/datafix/schemas/V2519 +CL: net/minecraft/util/datafix/schemas/V2522 net/minecraft/util/datafix/schemas/V2522 +CL: net/minecraft/util/datafix/schemas/V2551 net/minecraft/util/datafix/schemas/V2551 +CL: net/minecraft/util/datafix/schemas/V2568 net/minecraft/util/datafix/schemas/V2568 +CL: net/minecraft/util/datafix/schemas/V2571 net/minecraft/util/datafix/schemas/V2571 +CL: net/minecraft/util/datafix/schemas/V2684 net/minecraft/util/datafix/schemas/V2684 +CL: net/minecraft/util/datafix/schemas/V2686 net/minecraft/util/datafix/schemas/V2686 +CL: net/minecraft/util/datafix/schemas/V2688 net/minecraft/util/datafix/schemas/V2688 +CL: net/minecraft/util/datafix/schemas/V2704 net/minecraft/util/datafix/schemas/V2704 +CL: net/minecraft/util/datafix/schemas/V2707 net/minecraft/util/datafix/schemas/V2707 +CL: net/minecraft/util/datafix/schemas/V2831 net/minecraft/util/datafix/schemas/V2831 +CL: net/minecraft/util/datafix/schemas/V2832 net/minecraft/util/datafix/schemas/V2832 +CL: net/minecraft/util/datafix/schemas/V2842 net/minecraft/util/datafix/schemas/V2842 +CL: net/minecraft/util/datafix/schemas/V3076 net/minecraft/util/datafix/schemas/V3076 +CL: net/minecraft/util/datafix/schemas/V3078 net/minecraft/util/datafix/schemas/V3078 +CL: net/minecraft/util/datafix/schemas/V3081 net/minecraft/util/datafix/schemas/V3081 +CL: net/minecraft/util/datafix/schemas/V3082 net/minecraft/util/datafix/schemas/V3082 +CL: net/minecraft/util/datafix/schemas/V3083 net/minecraft/util/datafix/schemas/V3083 +CL: net/minecraft/util/datafix/schemas/V3202 net/minecraft/util/datafix/schemas/V3202 +CL: net/minecraft/util/datafix/schemas/V3203 net/minecraft/util/datafix/schemas/V3203 +CL: net/minecraft/util/datafix/schemas/V3204 net/minecraft/util/datafix/schemas/V3204 +CL: net/minecraft/util/datafix/schemas/V3325 net/minecraft/util/datafix/schemas/V3325 +CL: net/minecraft/util/datafix/schemas/V3326 net/minecraft/util/datafix/schemas/V3326 +CL: net/minecraft/util/datafix/schemas/V3327 net/minecraft/util/datafix/schemas/V3327 +CL: net/minecraft/util/datafix/schemas/V3328 net/minecraft/util/datafix/schemas/V3328 +CL: net/minecraft/util/datafix/schemas/V3438 net/minecraft/util/datafix/schemas/V3438 +CL: net/minecraft/util/datafix/schemas/V3448 net/minecraft/util/datafix/schemas/V3448 +CL: net/minecraft/util/datafix/schemas/V501 net/minecraft/util/datafix/schemas/V501 +CL: net/minecraft/util/datafix/schemas/V700 net/minecraft/util/datafix/schemas/V700 +CL: net/minecraft/util/datafix/schemas/V701 net/minecraft/util/datafix/schemas/V701 +CL: net/minecraft/util/datafix/schemas/V702 net/minecraft/util/datafix/schemas/V702 +CL: net/minecraft/util/datafix/schemas/V703 net/minecraft/util/datafix/schemas/V703 +CL: net/minecraft/util/datafix/schemas/V704 net/minecraft/util/datafix/schemas/V704 +CL: net/minecraft/util/datafix/schemas/V704$1 net/minecraft/util/datafix/schemas/V704$1 +CL: net/minecraft/util/datafix/schemas/V705 net/minecraft/util/datafix/schemas/V705 +CL: net/minecraft/util/datafix/schemas/V705$1 net/minecraft/util/datafix/schemas/V705$1 +CL: net/minecraft/util/datafix/schemas/V808 net/minecraft/util/datafix/schemas/V808 +CL: net/minecraft/util/datafix/schemas/V99 net/minecraft/util/datafix/schemas/V99 +CL: net/minecraft/util/datafix/schemas/V99$1 net/minecraft/util/datafix/schemas/V99$1 +CL: net/minecraft/util/datafix/schemas/package-info net/minecraft/util/datafix/schemas/package-info +CL: net/minecraft/util/eventlog/EventLogDirectory net/minecraft/util/eventlog/EventLogDirectory +CL: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile net/minecraft/util/eventlog/EventLogDirectory$CompressedFile +CL: net/minecraft/util/eventlog/EventLogDirectory$File net/minecraft/util/eventlog/EventLogDirectory$File +CL: net/minecraft/util/eventlog/EventLogDirectory$FileId net/minecraft/util/eventlog/EventLogDirectory$FileId +CL: net/minecraft/util/eventlog/EventLogDirectory$FileList net/minecraft/util/eventlog/EventLogDirectory$FileList +CL: net/minecraft/util/eventlog/EventLogDirectory$RawFile net/minecraft/util/eventlog/EventLogDirectory$RawFile +CL: net/minecraft/util/eventlog/JsonEventLog net/minecraft/util/eventlog/JsonEventLog +CL: net/minecraft/util/eventlog/JsonEventLog$1 net/minecraft/util/eventlog/JsonEventLog$1 +CL: net/minecraft/util/eventlog/JsonEventLogReader net/minecraft/util/eventlog/JsonEventLogReader +CL: net/minecraft/util/eventlog/JsonEventLogReader$1 net/minecraft/util/eventlog/JsonEventLogReader$1 +CL: net/minecraft/util/eventlog/package-info net/minecraft/util/eventlog/package-info +CL: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics net/minecraft/util/monitoring/jmx/MinecraftServerStatistics +CL: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription +CL: net/minecraft/util/monitoring/jmx/package-info net/minecraft/util/monitoring/jmx/package-info +CL: net/minecraft/util/package-info net/minecraft/util/package-info +CL: net/minecraft/util/profiling/ActiveProfiler net/minecraft/util/profiling/ActiveProfiler +CL: net/minecraft/util/profiling/ActiveProfiler$PathEntry net/minecraft/util/profiling/ActiveProfiler$PathEntry +CL: net/minecraft/util/profiling/ContinuousProfiler net/minecraft/util/profiling/ContinuousProfiler +CL: net/minecraft/util/profiling/EmptyProfileResults net/minecraft/util/profiling/EmptyProfileResults +CL: net/minecraft/util/profiling/FilledProfileResults net/minecraft/util/profiling/FilledProfileResults +CL: net/minecraft/util/profiling/FilledProfileResults$1 net/minecraft/util/profiling/FilledProfileResults$1 +CL: net/minecraft/util/profiling/FilledProfileResults$CounterCollector net/minecraft/util/profiling/FilledProfileResults$CounterCollector +CL: net/minecraft/util/profiling/InactiveProfiler net/minecraft/util/profiling/InactiveProfiler +CL: net/minecraft/util/profiling/ProfileCollector net/minecraft/util/profiling/ProfileCollector +CL: net/minecraft/util/profiling/ProfileResults net/minecraft/util/profiling/ProfileResults +CL: net/minecraft/util/profiling/ProfilerFiller net/minecraft/util/profiling/ProfilerFiller +CL: net/minecraft/util/profiling/ProfilerFiller$1 net/minecraft/util/profiling/ProfilerFiller$1 +CL: net/minecraft/util/profiling/ProfilerPathEntry net/minecraft/util/profiling/ProfilerPathEntry +CL: net/minecraft/util/profiling/ResultField net/minecraft/util/profiling/ResultField +CL: net/minecraft/util/profiling/SingleTickProfiler net/minecraft/util/profiling/SingleTickProfiler +CL: net/minecraft/util/profiling/jfr/Environment net/minecraft/util/profiling/jfr/Environment +CL: net/minecraft/util/profiling/jfr/JfrProfiler net/minecraft/util/profiling/jfr/JfrProfiler +CL: net/minecraft/util/profiling/jfr/JfrProfiler$1 net/minecraft/util/profiling/jfr/JfrProfiler$1 +CL: net/minecraft/util/profiling/jfr/JvmProfiler net/minecraft/util/profiling/jfr/JvmProfiler +CL: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler +CL: net/minecraft/util/profiling/jfr/Percentiles net/minecraft/util/profiling/jfr/Percentiles +CL: net/minecraft/util/profiling/jfr/SummaryReporter net/minecraft/util/profiling/jfr/SummaryReporter +CL: net/minecraft/util/profiling/jfr/callback/ProfiledDuration net/minecraft/util/profiling/jfr/callback/ProfiledDuration +CL: net/minecraft/util/profiling/jfr/callback/package-info net/minecraft/util/profiling/jfr/callback/package-info +CL: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent +CL: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent +CL: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation +CL: net/minecraft/util/profiling/jfr/event/PacketEvent net/minecraft/util/profiling/jfr/event/PacketEvent +CL: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields net/minecraft/util/profiling/jfr/event/PacketEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent net/minecraft/util/profiling/jfr/event/PacketReceivedEvent +CL: net/minecraft/util/profiling/jfr/event/PacketSentEvent net/minecraft/util/profiling/jfr/event/PacketSentEvent +CL: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent +CL: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent +CL: net/minecraft/util/profiling/jfr/event/package-info net/minecraft/util/profiling/jfr/event/package-info +CL: net/minecraft/util/profiling/jfr/package-info net/minecraft/util/profiling/jfr/package-info +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsParser net/minecraft/util/profiling/jfr/parse/JfrStatsParser +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1 net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1 +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsResult net/minecraft/util/profiling/jfr/parse/JfrStatsResult +CL: net/minecraft/util/profiling/jfr/parse/package-info net/minecraft/util/profiling/jfr/parse/package-info +CL: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer +CL: net/minecraft/util/profiling/jfr/serialize/package-info net/minecraft/util/profiling/jfr/serialize/package-info +CL: net/minecraft/util/profiling/jfr/stats/ChunkGenStat net/minecraft/util/profiling/jfr/stats/ChunkGenStat +CL: net/minecraft/util/profiling/jfr/stats/CpuLoadStat net/minecraft/util/profiling/jfr/stats/CpuLoadStat +CL: net/minecraft/util/profiling/jfr/stats/FileIOStat net/minecraft/util/profiling/jfr/stats/FileIOStat +CL: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary +CL: net/minecraft/util/profiling/jfr/stats/GcHeapStat net/minecraft/util/profiling/jfr/stats/GcHeapStat +CL: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary +CL: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing +CL: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary +CL: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize +CL: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification +CL: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat +CL: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary +CL: net/minecraft/util/profiling/jfr/stats/TickTimeStat net/minecraft/util/profiling/jfr/stats/TickTimeStat +CL: net/minecraft/util/profiling/jfr/stats/TimeStamped net/minecraft/util/profiling/jfr/stats/TimeStamped +CL: net/minecraft/util/profiling/jfr/stats/TimedStat net/minecraft/util/profiling/jfr/stats/TimedStat +CL: net/minecraft/util/profiling/jfr/stats/TimedStatSummary net/minecraft/util/profiling/jfr/stats/TimedStatSummary +CL: net/minecraft/util/profiling/jfr/stats/package-info net/minecraft/util/profiling/jfr/stats/package-info +CL: net/minecraft/util/profiling/metrics/MetricCategory net/minecraft/util/profiling/metrics/MetricCategory +CL: net/minecraft/util/profiling/metrics/MetricSampler net/minecraft/util/profiling/metrics/MetricSampler +CL: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder +CL: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult +CL: net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest +CL: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage +CL: net/minecraft/util/profiling/metrics/MetricsRegistry net/minecraft/util/profiling/metrics/MetricsRegistry +CL: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler +CL: net/minecraft/util/profiling/metrics/MetricsSamplerProvider net/minecraft/util/profiling/metrics/MetricsSamplerProvider +CL: net/minecraft/util/profiling/metrics/ProfilerMeasured net/minecraft/util/profiling/metrics/ProfilerMeasured +CL: net/minecraft/util/profiling/metrics/package-info net/minecraft/util/profiling/metrics/package-info +CL: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder +CL: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder +CL: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder net/minecraft/util/profiling/metrics/profiling/MetricsRecorder +CL: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter +CL: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider +CL: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1 net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1 +CL: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats +CL: net/minecraft/util/profiling/metrics/profiling/package-info net/minecraft/util/profiling/metrics/profiling/package-info +CL: net/minecraft/util/profiling/metrics/storage/MetricsPersister net/minecraft/util/profiling/metrics/storage/MetricsPersister +CL: net/minecraft/util/profiling/metrics/storage/RecordedDeviation net/minecraft/util/profiling/metrics/storage/RecordedDeviation +CL: net/minecraft/util/profiling/metrics/storage/package-info net/minecraft/util/profiling/metrics/storage/package-info +CL: net/minecraft/util/profiling/package-info net/minecraft/util/profiling/package-info +CL: net/minecraft/util/random/SimpleWeightedRandomList net/minecraft/util/random/SimpleWeightedRandomList +CL: net/minecraft/util/random/SimpleWeightedRandomList$Builder net/minecraft/util/random/SimpleWeightedRandomList$Builder +CL: net/minecraft/util/random/Weight net/minecraft/util/random/Weight +CL: net/minecraft/util/random/WeightedEntry net/minecraft/util/random/WeightedEntry +CL: net/minecraft/util/random/WeightedEntry$IntrusiveBase net/minecraft/util/random/WeightedEntry$IntrusiveBase +CL: net/minecraft/util/random/WeightedEntry$Wrapper net/minecraft/util/random/WeightedEntry$Wrapper +CL: net/minecraft/util/random/WeightedRandom net/minecraft/util/random/WeightedRandom +CL: net/minecraft/util/random/WeightedRandomList net/minecraft/util/random/WeightedRandomList +CL: net/minecraft/util/random/package-info net/minecraft/util/random/package-info +CL: net/minecraft/util/thread/BlockableEventLoop net/minecraft/util/thread/BlockableEventLoop +CL: net/minecraft/util/thread/NamedThreadFactory net/minecraft/util/thread/NamedThreadFactory +CL: net/minecraft/util/thread/ProcessorHandle net/minecraft/util/thread/ProcessorHandle +CL: net/minecraft/util/thread/ProcessorHandle$1 net/minecraft/util/thread/ProcessorHandle$1 +CL: net/minecraft/util/thread/ProcessorMailbox net/minecraft/util/thread/ProcessorMailbox +CL: net/minecraft/util/thread/ReentrantBlockableEventLoop net/minecraft/util/thread/ReentrantBlockableEventLoop +CL: net/minecraft/util/thread/StrictQueue net/minecraft/util/thread/StrictQueue +CL: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue net/minecraft/util/thread/StrictQueue$FixedPriorityQueue +CL: net/minecraft/util/thread/StrictQueue$IntRunnable net/minecraft/util/thread/StrictQueue$IntRunnable +CL: net/minecraft/util/thread/StrictQueue$QueueStrictQueue net/minecraft/util/thread/StrictQueue$QueueStrictQueue +CL: net/minecraft/util/thread/package-info net/minecraft/util/thread/package-info +CL: net/minecraft/util/valueproviders/BiasedToBottomInt net/minecraft/util/valueproviders/BiasedToBottomInt +CL: net/minecraft/util/valueproviders/ClampedInt net/minecraft/util/valueproviders/ClampedInt +CL: net/minecraft/util/valueproviders/ClampedNormalFloat net/minecraft/util/valueproviders/ClampedNormalFloat +CL: net/minecraft/util/valueproviders/ClampedNormalInt net/minecraft/util/valueproviders/ClampedNormalInt +CL: net/minecraft/util/valueproviders/ConstantFloat net/minecraft/util/valueproviders/ConstantFloat +CL: net/minecraft/util/valueproviders/ConstantInt net/minecraft/util/valueproviders/ConstantInt +CL: net/minecraft/util/valueproviders/FloatProvider net/minecraft/util/valueproviders/FloatProvider +CL: net/minecraft/util/valueproviders/FloatProviderType net/minecraft/util/valueproviders/FloatProviderType +CL: net/minecraft/util/valueproviders/IntProvider net/minecraft/util/valueproviders/IntProvider +CL: net/minecraft/util/valueproviders/IntProviderType net/minecraft/util/valueproviders/IntProviderType +CL: net/minecraft/util/valueproviders/MultipliedFloats net/minecraft/util/valueproviders/MultipliedFloats +CL: net/minecraft/util/valueproviders/SampledFloat net/minecraft/util/valueproviders/SampledFloat +CL: net/minecraft/util/valueproviders/TrapezoidFloat net/minecraft/util/valueproviders/TrapezoidFloat +CL: net/minecraft/util/valueproviders/UniformFloat net/minecraft/util/valueproviders/UniformFloat +CL: net/minecraft/util/valueproviders/UniformInt net/minecraft/util/valueproviders/UniformInt +CL: net/minecraft/util/valueproviders/WeightedListInt net/minecraft/util/valueproviders/WeightedListInt +CL: net/minecraft/util/valueproviders/package-info net/minecraft/util/valueproviders/package-info +CL: net/minecraft/util/worldupdate/WorldUpgrader net/minecraft/util/worldupdate/WorldUpgrader +CL: net/minecraft/util/worldupdate/package-info net/minecraft/util/worldupdate/package-info +CL: net/minecraft/world/BossEvent net/minecraft/world/BossEvent +CL: net/minecraft/world/BossEvent$BossBarColor net/minecraft/world/BossEvent$BossBarColor +CL: net/minecraft/world/BossEvent$BossBarOverlay net/minecraft/world/BossEvent$BossBarOverlay +CL: net/minecraft/world/Clearable net/minecraft/world/Clearable +CL: net/minecraft/world/CompoundContainer net/minecraft/world/CompoundContainer +CL: net/minecraft/world/Container net/minecraft/world/Container +CL: net/minecraft/world/ContainerHelper net/minecraft/world/ContainerHelper +CL: net/minecraft/world/ContainerListener net/minecraft/world/ContainerListener +CL: net/minecraft/world/Containers net/minecraft/world/Containers +CL: net/minecraft/world/Difficulty net/minecraft/world/Difficulty +CL: net/minecraft/world/DifficultyInstance net/minecraft/world/DifficultyInstance +CL: net/minecraft/world/InteractionHand net/minecraft/world/InteractionHand +CL: net/minecraft/world/InteractionResult net/minecraft/world/InteractionResult +CL: net/minecraft/world/InteractionResultHolder net/minecraft/world/InteractionResultHolder +CL: net/minecraft/world/LockCode net/minecraft/world/LockCode +CL: net/minecraft/world/MenuProvider net/minecraft/world/MenuProvider +CL: net/minecraft/world/Nameable net/minecraft/world/Nameable +CL: net/minecraft/world/RandomSequence net/minecraft/world/RandomSequence +CL: net/minecraft/world/RandomSequences net/minecraft/world/RandomSequences +CL: net/minecraft/world/RandomSequences$1 net/minecraft/world/RandomSequences$1 +CL: net/minecraft/world/SimpleContainer net/minecraft/world/SimpleContainer +CL: net/minecraft/world/SimpleMenuProvider net/minecraft/world/SimpleMenuProvider +CL: net/minecraft/world/WorldlyContainer net/minecraft/world/WorldlyContainer +CL: net/minecraft/world/WorldlyContainerHolder net/minecraft/world/WorldlyContainerHolder +CL: net/minecraft/world/damagesource/CombatEntry net/minecraft/world/damagesource/CombatEntry +CL: net/minecraft/world/damagesource/CombatRules net/minecraft/world/damagesource/CombatRules +CL: net/minecraft/world/damagesource/CombatTracker net/minecraft/world/damagesource/CombatTracker +CL: net/minecraft/world/damagesource/DamageEffects net/minecraft/world/damagesource/DamageEffects +CL: net/minecraft/world/damagesource/DamageScaling net/minecraft/world/damagesource/DamageScaling +CL: net/minecraft/world/damagesource/DamageSource net/minecraft/world/damagesource/DamageSource +CL: net/minecraft/world/damagesource/DamageSource$1 net/minecraft/world/damagesource/DamageSource$1 +CL: net/minecraft/world/damagesource/DamageSources net/minecraft/world/damagesource/DamageSources +CL: net/minecraft/world/damagesource/DamageType net/minecraft/world/damagesource/DamageType +CL: net/minecraft/world/damagesource/DamageTypes net/minecraft/world/damagesource/DamageTypes +CL: net/minecraft/world/damagesource/DeathMessageType net/minecraft/world/damagesource/DeathMessageType +CL: net/minecraft/world/damagesource/FallLocation net/minecraft/world/damagesource/FallLocation +CL: net/minecraft/world/damagesource/package-info net/minecraft/world/damagesource/package-info +CL: net/minecraft/world/effect/AbsoptionMobEffect net/minecraft/world/effect/AbsoptionMobEffect +CL: net/minecraft/world/effect/AttackDamageMobEffect net/minecraft/world/effect/AttackDamageMobEffect +CL: net/minecraft/world/effect/HealthBoostMobEffect net/minecraft/world/effect/HealthBoostMobEffect +CL: net/minecraft/world/effect/InstantenousMobEffect net/minecraft/world/effect/InstantenousMobEffect +CL: net/minecraft/world/effect/MobEffect net/minecraft/world/effect/MobEffect +CL: net/minecraft/world/effect/MobEffectCategory net/minecraft/world/effect/MobEffectCategory +CL: net/minecraft/world/effect/MobEffectInstance net/minecraft/world/effect/MobEffectInstance +CL: net/minecraft/world/effect/MobEffectInstance$FactorData net/minecraft/world/effect/MobEffectInstance$FactorData +CL: net/minecraft/world/effect/MobEffectUtil net/minecraft/world/effect/MobEffectUtil +CL: net/minecraft/world/effect/MobEffects net/minecraft/world/effect/MobEffects +CL: net/minecraft/world/effect/MobEffects$1 net/minecraft/world/effect/MobEffects$1 +CL: net/minecraft/world/effect/package-info net/minecraft/world/effect/package-info +CL: net/minecraft/world/entity/AgeableMob net/minecraft/world/entity/AgeableMob +CL: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData net/minecraft/world/entity/AgeableMob$AgeableMobGroupData +CL: net/minecraft/world/entity/AnimationState net/minecraft/world/entity/AnimationState +CL: net/minecraft/world/entity/AreaEffectCloud net/minecraft/world/entity/AreaEffectCloud +CL: net/minecraft/world/entity/Attackable net/minecraft/world/entity/Attackable +CL: net/minecraft/world/entity/Display net/minecraft/world/entity/Display +CL: net/minecraft/world/entity/Display$1 net/minecraft/world/entity/Display$1 +CL: net/minecraft/world/entity/Display$BillboardConstraints net/minecraft/world/entity/Display$BillboardConstraints +CL: net/minecraft/world/entity/Display$BlockDisplay net/minecraft/world/entity/Display$BlockDisplay +CL: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState +CL: net/minecraft/world/entity/Display$ColorInterpolator net/minecraft/world/entity/Display$ColorInterpolator +CL: net/minecraft/world/entity/Display$FloatInterpolator net/minecraft/world/entity/Display$FloatInterpolator +CL: net/minecraft/world/entity/Display$GenericInterpolator net/minecraft/world/entity/Display$GenericInterpolator +CL: net/minecraft/world/entity/Display$IntInterpolator net/minecraft/world/entity/Display$IntInterpolator +CL: net/minecraft/world/entity/Display$ItemDisplay net/minecraft/world/entity/Display$ItemDisplay +CL: net/minecraft/world/entity/Display$ItemDisplay$1 net/minecraft/world/entity/Display$ItemDisplay$1 +CL: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState +CL: net/minecraft/world/entity/Display$LinearFloatInterpolator net/minecraft/world/entity/Display$LinearFloatInterpolator +CL: net/minecraft/world/entity/Display$LinearIntInterpolator net/minecraft/world/entity/Display$LinearIntInterpolator +CL: net/minecraft/world/entity/Display$RenderState net/minecraft/world/entity/Display$RenderState +CL: net/minecraft/world/entity/Display$TextDisplay net/minecraft/world/entity/Display$TextDisplay +CL: net/minecraft/world/entity/Display$TextDisplay$Align net/minecraft/world/entity/Display$TextDisplay$Align +CL: net/minecraft/world/entity/Display$TextDisplay$CachedInfo net/minecraft/world/entity/Display$TextDisplay$CachedInfo +CL: net/minecraft/world/entity/Display$TextDisplay$CachedLine net/minecraft/world/entity/Display$TextDisplay$CachedLine +CL: net/minecraft/world/entity/Display$TextDisplay$LineSplitter net/minecraft/world/entity/Display$TextDisplay$LineSplitter +CL: net/minecraft/world/entity/Display$TextDisplay$TextRenderState net/minecraft/world/entity/Display$TextDisplay$TextRenderState +CL: net/minecraft/world/entity/Display$TransformationInterpolator net/minecraft/world/entity/Display$TransformationInterpolator +CL: net/minecraft/world/entity/Entity net/minecraft/world/entity/Entity +CL: net/minecraft/world/entity/Entity$1 net/minecraft/world/entity/Entity$1 +CL: net/minecraft/world/entity/Entity$MoveFunction net/minecraft/world/entity/Entity$MoveFunction +CL: net/minecraft/world/entity/Entity$MovementEmission net/minecraft/world/entity/Entity$MovementEmission +CL: net/minecraft/world/entity/Entity$RemovalReason net/minecraft/world/entity/Entity$RemovalReason +CL: net/minecraft/world/entity/EntityDimensions net/minecraft/world/entity/EntityDimensions +CL: net/minecraft/world/entity/EntityEvent net/minecraft/world/entity/EntityEvent +CL: net/minecraft/world/entity/EntitySelector net/minecraft/world/entity/EntitySelector +CL: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector +CL: net/minecraft/world/entity/EntityType net/minecraft/world/entity/EntityType +CL: net/minecraft/world/entity/EntityType$1 net/minecraft/world/entity/EntityType$1 +CL: net/minecraft/world/entity/EntityType$Builder net/minecraft/world/entity/EntityType$Builder +CL: net/minecraft/world/entity/EntityType$EntityFactory net/minecraft/world/entity/EntityType$EntityFactory +CL: net/minecraft/world/entity/EquipmentSlot net/minecraft/world/entity/EquipmentSlot +CL: net/minecraft/world/entity/EquipmentSlot$Type net/minecraft/world/entity/EquipmentSlot$Type +CL: net/minecraft/world/entity/ExperienceOrb net/minecraft/world/entity/ExperienceOrb +CL: net/minecraft/world/entity/FlyingMob net/minecraft/world/entity/FlyingMob +CL: net/minecraft/world/entity/GlowSquid net/minecraft/world/entity/GlowSquid +CL: net/minecraft/world/entity/HasCustomInventoryScreen net/minecraft/world/entity/HasCustomInventoryScreen +CL: net/minecraft/world/entity/HumanoidArm net/minecraft/world/entity/HumanoidArm +CL: net/minecraft/world/entity/Interaction net/minecraft/world/entity/Interaction +CL: net/minecraft/world/entity/Interaction$PlayerAction net/minecraft/world/entity/Interaction$PlayerAction +CL: net/minecraft/world/entity/ItemBasedSteering net/minecraft/world/entity/ItemBasedSteering +CL: net/minecraft/world/entity/ItemSteerable net/minecraft/world/entity/ItemSteerable +CL: net/minecraft/world/entity/LerpingModel net/minecraft/world/entity/LerpingModel +CL: net/minecraft/world/entity/LightningBolt net/minecraft/world/entity/LightningBolt +CL: net/minecraft/world/entity/LivingEntity net/minecraft/world/entity/LivingEntity +CL: net/minecraft/world/entity/LivingEntity$1 net/minecraft/world/entity/LivingEntity$1 +CL: net/minecraft/world/entity/LivingEntity$Fallsounds net/minecraft/world/entity/LivingEntity$Fallsounds +CL: net/minecraft/world/entity/Marker net/minecraft/world/entity/Marker +CL: net/minecraft/world/entity/Mob net/minecraft/world/entity/Mob +CL: net/minecraft/world/entity/Mob$1 net/minecraft/world/entity/Mob$1 +CL: net/minecraft/world/entity/MobCategory net/minecraft/world/entity/MobCategory +CL: net/minecraft/world/entity/MobSpawnType net/minecraft/world/entity/MobSpawnType +CL: net/minecraft/world/entity/MobType net/minecraft/world/entity/MobType +CL: net/minecraft/world/entity/MoverType net/minecraft/world/entity/MoverType +CL: net/minecraft/world/entity/NeutralMob net/minecraft/world/entity/NeutralMob +CL: net/minecraft/world/entity/OwnableEntity net/minecraft/world/entity/OwnableEntity +CL: net/minecraft/world/entity/PathfinderMob net/minecraft/world/entity/PathfinderMob +CL: net/minecraft/world/entity/PlayerRideable net/minecraft/world/entity/PlayerRideable +CL: net/minecraft/world/entity/PlayerRideableJumping net/minecraft/world/entity/PlayerRideableJumping +CL: net/minecraft/world/entity/Pose net/minecraft/world/entity/Pose +CL: net/minecraft/world/entity/PowerableMob net/minecraft/world/entity/PowerableMob +CL: net/minecraft/world/entity/RelativeMovement net/minecraft/world/entity/RelativeMovement +CL: net/minecraft/world/entity/ReputationEventHandler net/minecraft/world/entity/ReputationEventHandler +CL: net/minecraft/world/entity/RiderShieldingMount net/minecraft/world/entity/RiderShieldingMount +CL: net/minecraft/world/entity/Saddleable net/minecraft/world/entity/Saddleable +CL: net/minecraft/world/entity/Shearable net/minecraft/world/entity/Shearable +CL: net/minecraft/world/entity/SlotAccess net/minecraft/world/entity/SlotAccess +CL: net/minecraft/world/entity/SlotAccess$1 net/minecraft/world/entity/SlotAccess$1 +CL: net/minecraft/world/entity/SlotAccess$2 net/minecraft/world/entity/SlotAccess$2 +CL: net/minecraft/world/entity/SlotAccess$3 net/minecraft/world/entity/SlotAccess$3 +CL: net/minecraft/world/entity/SpawnGroupData net/minecraft/world/entity/SpawnGroupData +CL: net/minecraft/world/entity/SpawnPlacements net/minecraft/world/entity/SpawnPlacements +CL: net/minecraft/world/entity/SpawnPlacements$Data net/minecraft/world/entity/SpawnPlacements$Data +CL: net/minecraft/world/entity/SpawnPlacements$SpawnPredicate net/minecraft/world/entity/SpawnPlacements$SpawnPredicate +CL: net/minecraft/world/entity/SpawnPlacements$Type net/minecraft/world/entity/SpawnPlacements$Type +CL: net/minecraft/world/entity/TamableAnimal net/minecraft/world/entity/TamableAnimal +CL: net/minecraft/world/entity/Targeting net/minecraft/world/entity/Targeting +CL: net/minecraft/world/entity/TraceableEntity net/minecraft/world/entity/TraceableEntity +CL: net/minecraft/world/entity/VariantHolder net/minecraft/world/entity/VariantHolder +CL: net/minecraft/world/entity/WalkAnimationState net/minecraft/world/entity/WalkAnimationState +CL: net/minecraft/world/entity/ai/Brain net/minecraft/world/entity/ai/Brain +CL: net/minecraft/world/entity/ai/Brain$1 net/minecraft/world/entity/ai/Brain$1 +CL: net/minecraft/world/entity/ai/Brain$MemoryValue net/minecraft/world/entity/ai/Brain$MemoryValue +CL: net/minecraft/world/entity/ai/Brain$Provider net/minecraft/world/entity/ai/Brain$Provider +CL: net/minecraft/world/entity/ai/attributes/Attribute net/minecraft/world/entity/ai/attributes/Attribute +CL: net/minecraft/world/entity/ai/attributes/AttributeInstance net/minecraft/world/entity/ai/attributes/AttributeInstance +CL: net/minecraft/world/entity/ai/attributes/AttributeMap net/minecraft/world/entity/ai/attributes/AttributeMap +CL: net/minecraft/world/entity/ai/attributes/AttributeModifier net/minecraft/world/entity/ai/attributes/AttributeModifier +CL: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation +CL: net/minecraft/world/entity/ai/attributes/AttributeSupplier net/minecraft/world/entity/ai/attributes/AttributeSupplier +CL: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder +CL: net/minecraft/world/entity/ai/attributes/Attributes net/minecraft/world/entity/ai/attributes/Attributes +CL: net/minecraft/world/entity/ai/attributes/DefaultAttributes net/minecraft/world/entity/ai/attributes/DefaultAttributes +CL: net/minecraft/world/entity/ai/attributes/RangedAttribute net/minecraft/world/entity/ai/attributes/RangedAttribute +CL: net/minecraft/world/entity/ai/attributes/package-info net/minecraft/world/entity/ai/attributes/package-info +CL: net/minecraft/world/entity/ai/behavior/AcquirePoi net/minecraft/world/entity/ai/behavior/AcquirePoi +CL: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry +CL: net/minecraft/world/entity/ai/behavior/AnimalMakeLove net/minecraft/world/entity/ai/behavior/AnimalMakeLove +CL: net/minecraft/world/entity/ai/behavior/AnimalPanic net/minecraft/world/entity/ai/behavior/AnimalPanic +CL: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite +CL: net/minecraft/world/entity/ai/behavior/BabyFollowAdult net/minecraft/world/entity/ai/behavior/BabyFollowAdult +CL: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose net/minecraft/world/entity/ai/behavior/BackUpIfTooClose +CL: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent +CL: net/minecraft/world/entity/ai/behavior/Behavior net/minecraft/world/entity/ai/behavior/Behavior +CL: net/minecraft/world/entity/ai/behavior/Behavior$Status net/minecraft/world/entity/ai/behavior/Behavior$Status +CL: net/minecraft/world/entity/ai/behavior/BehaviorControl net/minecraft/world/entity/ai/behavior/BehaviorControl +CL: net/minecraft/world/entity/ai/behavior/BehaviorUtils net/minecraft/world/entity/ai/behavior/BehaviorUtils +CL: net/minecraft/world/entity/ai/behavior/BlockPosTracker net/minecraft/world/entity/ai/behavior/BlockPosTracker +CL: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid +CL: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry +CL: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks +CL: net/minecraft/world/entity/ai/behavior/Croak net/minecraft/world/entity/ai/behavior/Croak +CL: net/minecraft/world/entity/ai/behavior/CrossbowAttack net/minecraft/world/entity/ai/behavior/CrossbowAttack +CL: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState +CL: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting +CL: net/minecraft/world/entity/ai/behavior/DoNothing net/minecraft/world/entity/ai/behavior/DoNothing +CL: net/minecraft/world/entity/ai/behavior/EntityTracker net/minecraft/world/entity/ai/behavior/EntityTracker +CL: net/minecraft/world/entity/ai/behavior/EraseMemoryIf net/minecraft/world/entity/ai/behavior/EraseMemoryIf +CL: net/minecraft/world/entity/ai/behavior/FollowTemptation net/minecraft/world/entity/ai/behavior/FollowTemptation +CL: net/minecraft/world/entity/ai/behavior/GateBehavior net/minecraft/world/entity/ai/behavior/GateBehavior +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1 net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1 +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2 net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2 +CL: net/minecraft/world/entity/ai/behavior/GiveGiftToHero net/minecraft/world/entity/ai/behavior/GiveGiftToHero +CL: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget +CL: net/minecraft/world/entity/ai/behavior/GoToClosestVillage net/minecraft/world/entity/ai/behavior/GoToClosestVillage +CL: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite +CL: net/minecraft/world/entity/ai/behavior/GoToTargetLocation net/minecraft/world/entity/ai/behavior/GoToTargetLocation +CL: net/minecraft/world/entity/ai/behavior/GoToWantedItem net/minecraft/world/entity/ai/behavior/GoToWantedItem +CL: net/minecraft/world/entity/ai/behavior/HarvestFarmland net/minecraft/world/entity/ai/behavior/HarvestFarmland +CL: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk net/minecraft/world/entity/ai/behavior/InsideBrownianWalk +CL: net/minecraft/world/entity/ai/behavior/InteractWith net/minecraft/world/entity/ai/behavior/InteractWith +CL: net/minecraft/world/entity/ai/behavior/InteractWithDoor net/minecraft/world/entity/ai/behavior/InteractWithDoor +CL: net/minecraft/world/entity/ai/behavior/JumpOnBed net/minecraft/world/entity/ai/behavior/JumpOnBed +CL: net/minecraft/world/entity/ai/behavior/LocateHidingPlace net/minecraft/world/entity/ai/behavior/LocateHidingPlace +CL: net/minecraft/world/entity/ai/behavior/LongJumpMidJump net/minecraft/world/entity/ai/behavior/LongJumpMidJump +CL: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock +CL: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos +CL: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump +CL: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink +CL: net/minecraft/world/entity/ai/behavior/LookAtTargetSink net/minecraft/world/entity/ai/behavior/LookAtTargetSink +CL: net/minecraft/world/entity/ai/behavior/MeleeAttack net/minecraft/world/entity/ai/behavior/MeleeAttack +CL: net/minecraft/world/entity/ai/behavior/Mount net/minecraft/world/entity/ai/behavior/Mount +CL: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot +CL: net/minecraft/world/entity/ai/behavior/MoveToTargetSink net/minecraft/world/entity/ai/behavior/MoveToTargetSink +CL: net/minecraft/world/entity/ai/behavior/OneShot net/minecraft/world/entity/ai/behavior/OneShot +CL: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids +CL: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan net/minecraft/world/entity/ai/behavior/PoiCompetitorScan +CL: net/minecraft/world/entity/ai/behavior/PositionTracker net/minecraft/world/entity/ai/behavior/PositionTracker +CL: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget +CL: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate +CL: net/minecraft/world/entity/ai/behavior/RamTarget net/minecraft/world/entity/ai/behavior/RamTarget +CL: net/minecraft/world/entity/ai/behavior/RandomLookAround net/minecraft/world/entity/ai/behavior/RandomLookAround +CL: net/minecraft/world/entity/ai/behavior/RandomStroll net/minecraft/world/entity/ai/behavior/RandomStroll +CL: net/minecraft/world/entity/ai/behavior/ReactToBell net/minecraft/world/entity/ai/behavior/ReactToBell +CL: net/minecraft/world/entity/ai/behavior/ResetProfession net/minecraft/world/entity/ai/behavior/ResetProfession +CL: net/minecraft/world/entity/ai/behavior/ResetRaidStatus net/minecraft/world/entity/ai/behavior/ResetRaidStatus +CL: net/minecraft/world/entity/ai/behavior/RingBell net/minecraft/world/entity/ai/behavior/RingBell +CL: net/minecraft/world/entity/ai/behavior/RunOne net/minecraft/world/entity/ai/behavior/RunOne +CL: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget +CL: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget net/minecraft/world/entity/ai/behavior/SetEntityLookTarget +CL: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes +CL: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker +CL: net/minecraft/world/entity/ai/behavior/SetHiddenState net/minecraft/world/entity/ai/behavior/SetHiddenState +CL: net/minecraft/world/entity/ai/behavior/SetLookAndInteract net/minecraft/world/entity/ai/behavior/SetLookAndInteract +CL: net/minecraft/world/entity/ai/behavior/SetRaidStatus net/minecraft/world/entity/ai/behavior/SetRaidStatus +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget +CL: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer +CL: net/minecraft/world/entity/ai/behavior/ShufflingList net/minecraft/world/entity/ai/behavior/ShufflingList +CL: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry +CL: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1 net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1 +CL: net/minecraft/world/entity/ai/behavior/SleepInBed net/minecraft/world/entity/ai/behavior/SleepInBed +CL: net/minecraft/world/entity/ai/behavior/SocializeAtBell net/minecraft/world/entity/ai/behavior/SocializeAtBell +CL: net/minecraft/world/entity/ai/behavior/StartAttacking net/minecraft/world/entity/ai/behavior/StartAttacking +CL: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead +CL: net/minecraft/world/entity/ai/behavior/StayCloseToTarget net/minecraft/world/entity/ai/behavior/StayCloseToTarget +CL: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid +CL: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead +CL: net/minecraft/world/entity/ai/behavior/StrollAroundPoi net/minecraft/world/entity/ai/behavior/StrollAroundPoi +CL: net/minecraft/world/entity/ai/behavior/StrollToPoi net/minecraft/world/entity/ai/behavior/StrollToPoi +CL: net/minecraft/world/entity/ai/behavior/StrollToPoiList net/minecraft/world/entity/ai/behavior/StrollToPoiList +CL: net/minecraft/world/entity/ai/behavior/Swim net/minecraft/world/entity/ai/behavior/Swim +CL: net/minecraft/world/entity/ai/behavior/TradeWithVillager net/minecraft/world/entity/ai/behavior/TradeWithVillager +CL: net/minecraft/world/entity/ai/behavior/TriggerGate net/minecraft/world/entity/ai/behavior/TriggerGate +CL: net/minecraft/world/entity/ai/behavior/TryFindLand net/minecraft/world/entity/ai/behavior/TryFindLand +CL: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater net/minecraft/world/entity/ai/behavior/TryFindLandNearWater +CL: net/minecraft/world/entity/ai/behavior/TryFindWater net/minecraft/world/entity/ai/behavior/TryFindWater +CL: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand +CL: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule +CL: net/minecraft/world/entity/ai/behavior/UseBonemeal net/minecraft/world/entity/ai/behavior/UseBonemeal +CL: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi +CL: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll +CL: net/minecraft/world/entity/ai/behavior/VillagerCalmDown net/minecraft/world/entity/ai/behavior/VillagerCalmDown +CL: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages net/minecraft/world/entity/ai/behavior/VillagerGoalPackages +CL: net/minecraft/world/entity/ai/behavior/VillagerMakeLove net/minecraft/world/entity/ai/behavior/VillagerMakeLove +CL: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger +CL: net/minecraft/world/entity/ai/behavior/WakeUp net/minecraft/world/entity/ai/behavior/WakeUp +CL: net/minecraft/world/entity/ai/behavior/WorkAtComposter net/minecraft/world/entity/ai/behavior/WorkAtComposter +CL: net/minecraft/world/entity/ai/behavior/WorkAtPoi net/minecraft/world/entity/ai/behavior/WorkAtPoi +CL: net/minecraft/world/entity/ai/behavior/YieldJobSite net/minecraft/world/entity/ai/behavior/YieldJobSite +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered +CL: net/minecraft/world/entity/ai/behavior/declarative/Trigger net/minecraft/world/entity/ai/behavior/declarative/Trigger +CL: net/minecraft/world/entity/ai/behavior/declarative/package-info net/minecraft/world/entity/ai/behavior/declarative/package-info +CL: net/minecraft/world/entity/ai/behavior/package-info net/minecraft/world/entity/ai/behavior/package-info +CL: net/minecraft/world/entity/ai/behavior/warden/Digging net/minecraft/world/entity/ai/behavior/warden/Digging +CL: net/minecraft/world/entity/ai/behavior/warden/Emerging net/minecraft/world/entity/ai/behavior/warden/Emerging +CL: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount net/minecraft/world/entity/ai/behavior/warden/ForceUnmount +CL: net/minecraft/world/entity/ai/behavior/warden/Roar net/minecraft/world/entity/ai/behavior/warden/Roar +CL: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget +CL: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget +CL: net/minecraft/world/entity/ai/behavior/warden/Sniffing net/minecraft/world/entity/ai/behavior/warden/Sniffing +CL: net/minecraft/world/entity/ai/behavior/warden/SonicBoom net/minecraft/world/entity/ai/behavior/warden/SonicBoom +CL: net/minecraft/world/entity/ai/behavior/warden/TryToSniff net/minecraft/world/entity/ai/behavior/warden/TryToSniff +CL: net/minecraft/world/entity/ai/behavior/warden/package-info net/minecraft/world/entity/ai/behavior/warden/package-info +CL: net/minecraft/world/entity/ai/control/BodyRotationControl net/minecraft/world/entity/ai/control/BodyRotationControl +CL: net/minecraft/world/entity/ai/control/Control net/minecraft/world/entity/ai/control/Control +CL: net/minecraft/world/entity/ai/control/FlyingMoveControl net/minecraft/world/entity/ai/control/FlyingMoveControl +CL: net/minecraft/world/entity/ai/control/JumpControl net/minecraft/world/entity/ai/control/JumpControl +CL: net/minecraft/world/entity/ai/control/LookControl net/minecraft/world/entity/ai/control/LookControl +CL: net/minecraft/world/entity/ai/control/MoveControl net/minecraft/world/entity/ai/control/MoveControl +CL: net/minecraft/world/entity/ai/control/MoveControl$Operation net/minecraft/world/entity/ai/control/MoveControl$Operation +CL: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl +CL: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl +CL: net/minecraft/world/entity/ai/control/package-info net/minecraft/world/entity/ai/control/package-info +CL: net/minecraft/world/entity/ai/goal/AvoidEntityGoal net/minecraft/world/entity/ai/goal/AvoidEntityGoal +CL: net/minecraft/world/entity/ai/goal/BegGoal net/minecraft/world/entity/ai/goal/BegGoal +CL: net/minecraft/world/entity/ai/goal/BoatGoals net/minecraft/world/entity/ai/goal/BoatGoals +CL: net/minecraft/world/entity/ai/goal/BreakDoorGoal net/minecraft/world/entity/ai/goal/BreakDoorGoal +CL: net/minecraft/world/entity/ai/goal/BreathAirGoal net/minecraft/world/entity/ai/goal/BreathAirGoal +CL: net/minecraft/world/entity/ai/goal/BreedGoal net/minecraft/world/entity/ai/goal/BreedGoal +CL: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal net/minecraft/world/entity/ai/goal/CatLieOnBedGoal +CL: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal +CL: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal +CL: net/minecraft/world/entity/ai/goal/DolphinJumpGoal net/minecraft/world/entity/ai/goal/DolphinJumpGoal +CL: net/minecraft/world/entity/ai/goal/DoorInteractGoal net/minecraft/world/entity/ai/goal/DoorInteractGoal +CL: net/minecraft/world/entity/ai/goal/EatBlockGoal net/minecraft/world/entity/ai/goal/EatBlockGoal +CL: net/minecraft/world/entity/ai/goal/FleeSunGoal net/minecraft/world/entity/ai/goal/FleeSunGoal +CL: net/minecraft/world/entity/ai/goal/FloatGoal net/minecraft/world/entity/ai/goal/FloatGoal +CL: net/minecraft/world/entity/ai/goal/FollowBoatGoal net/minecraft/world/entity/ai/goal/FollowBoatGoal +CL: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal +CL: net/minecraft/world/entity/ai/goal/FollowMobGoal net/minecraft/world/entity/ai/goal/FollowMobGoal +CL: net/minecraft/world/entity/ai/goal/FollowOwnerGoal net/minecraft/world/entity/ai/goal/FollowOwnerGoal +CL: net/minecraft/world/entity/ai/goal/FollowParentGoal net/minecraft/world/entity/ai/goal/FollowParentGoal +CL: net/minecraft/world/entity/ai/goal/Goal net/minecraft/world/entity/ai/goal/Goal +CL: net/minecraft/world/entity/ai/goal/Goal$Flag net/minecraft/world/entity/ai/goal/Goal$Flag +CL: net/minecraft/world/entity/ai/goal/GoalSelector net/minecraft/world/entity/ai/goal/GoalSelector +CL: net/minecraft/world/entity/ai/goal/GoalSelector$1 net/minecraft/world/entity/ai/goal/GoalSelector$1 +CL: net/minecraft/world/entity/ai/goal/GoalSelector$2 net/minecraft/world/entity/ai/goal/GoalSelector$2 +CL: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal +CL: net/minecraft/world/entity/ai/goal/InteractGoal net/minecraft/world/entity/ai/goal/InteractGoal +CL: net/minecraft/world/entity/ai/goal/JumpGoal net/minecraft/world/entity/ai/goal/JumpGoal +CL: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal +CL: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal net/minecraft/world/entity/ai/goal/LeapAtTargetGoal +CL: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal +CL: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal net/minecraft/world/entity/ai/goal/LookAtPlayerGoal +CL: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal +CL: net/minecraft/world/entity/ai/goal/MeleeAttackGoal net/minecraft/world/entity/ai/goal/MeleeAttackGoal +CL: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal +CL: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal +CL: net/minecraft/world/entity/ai/goal/MoveToBlockGoal net/minecraft/world/entity/ai/goal/MoveToBlockGoal +CL: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal +CL: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal +CL: net/minecraft/world/entity/ai/goal/OcelotAttackGoal net/minecraft/world/entity/ai/goal/OcelotAttackGoal +CL: net/minecraft/world/entity/ai/goal/OfferFlowerGoal net/minecraft/world/entity/ai/goal/OfferFlowerGoal +CL: net/minecraft/world/entity/ai/goal/OpenDoorGoal net/minecraft/world/entity/ai/goal/OpenDoorGoal +CL: net/minecraft/world/entity/ai/goal/PanicGoal net/minecraft/world/entity/ai/goal/PanicGoal +CL: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal net/minecraft/world/entity/ai/goal/PathfindToRaidGoal +CL: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal net/minecraft/world/entity/ai/goal/RandomLookAroundGoal +CL: net/minecraft/world/entity/ai/goal/RandomStandGoal net/minecraft/world/entity/ai/goal/RandomStandGoal +CL: net/minecraft/world/entity/ai/goal/RandomStrollGoal net/minecraft/world/entity/ai/goal/RandomStrollGoal +CL: net/minecraft/world/entity/ai/goal/RandomSwimmingGoal net/minecraft/world/entity/ai/goal/RandomSwimmingGoal +CL: net/minecraft/world/entity/ai/goal/RangedAttackGoal net/minecraft/world/entity/ai/goal/RangedAttackGoal +CL: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal net/minecraft/world/entity/ai/goal/RangedBowAttackGoal +CL: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal +CL: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState +CL: net/minecraft/world/entity/ai/goal/RemoveBlockGoal net/minecraft/world/entity/ai/goal/RemoveBlockGoal +CL: net/minecraft/world/entity/ai/goal/RestrictSunGoal net/minecraft/world/entity/ai/goal/RestrictSunGoal +CL: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal +CL: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal +CL: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal +CL: net/minecraft/world/entity/ai/goal/SwellGoal net/minecraft/world/entity/ai/goal/SwellGoal +CL: net/minecraft/world/entity/ai/goal/TemptGoal net/minecraft/world/entity/ai/goal/TemptGoal +CL: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal +CL: net/minecraft/world/entity/ai/goal/TryFindWaterGoal net/minecraft/world/entity/ai/goal/TryFindWaterGoal +CL: net/minecraft/world/entity/ai/goal/UseItemGoal net/minecraft/world/entity/ai/goal/UseItemGoal +CL: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal +CL: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal +CL: net/minecraft/world/entity/ai/goal/WrappedGoal net/minecraft/world/entity/ai/goal/WrappedGoal +CL: net/minecraft/world/entity/ai/goal/ZombieAttackGoal net/minecraft/world/entity/ai/goal/ZombieAttackGoal +CL: net/minecraft/world/entity/ai/goal/package-info net/minecraft/world/entity/ai/goal/package-info +CL: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/TargetGoal net/minecraft/world/entity/ai/goal/target/TargetGoal +CL: net/minecraft/world/entity/ai/goal/target/package-info net/minecraft/world/entity/ai/goal/target/package-info +CL: net/minecraft/world/entity/ai/gossip/GossipContainer net/minecraft/world/entity/ai/gossip/GossipContainer +CL: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips +CL: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry +CL: net/minecraft/world/entity/ai/gossip/GossipType net/minecraft/world/entity/ai/gossip/GossipType +CL: net/minecraft/world/entity/ai/gossip/package-info net/minecraft/world/entity/ai/gossip/package-info +CL: net/minecraft/world/entity/ai/memory/ExpirableValue net/minecraft/world/entity/ai/memory/ExpirableValue +CL: net/minecraft/world/entity/ai/memory/MemoryModuleType net/minecraft/world/entity/ai/memory/MemoryModuleType +CL: net/minecraft/world/entity/ai/memory/MemoryStatus net/minecraft/world/entity/ai/memory/MemoryStatus +CL: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities +CL: net/minecraft/world/entity/ai/memory/WalkTarget net/minecraft/world/entity/ai/memory/WalkTarget +CL: net/minecraft/world/entity/ai/memory/package-info net/minecraft/world/entity/ai/memory/package-info +CL: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation +CL: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation net/minecraft/world/entity/ai/navigation/FlyingPathNavigation +CL: net/minecraft/world/entity/ai/navigation/GroundPathNavigation net/minecraft/world/entity/ai/navigation/GroundPathNavigation +CL: net/minecraft/world/entity/ai/navigation/PathNavigation net/minecraft/world/entity/ai/navigation/PathNavigation +CL: net/minecraft/world/entity/ai/navigation/WallClimberNavigation net/minecraft/world/entity/ai/navigation/WallClimberNavigation +CL: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation +CL: net/minecraft/world/entity/ai/navigation/package-info net/minecraft/world/entity/ai/navigation/package-info +CL: net/minecraft/world/entity/ai/package-info net/minecraft/world/entity/ai/package-info +CL: net/minecraft/world/entity/ai/sensing/AdultSensor net/minecraft/world/entity/ai/sensing/AdultSensor +CL: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor +CL: net/minecraft/world/entity/ai/sensing/DummySensor net/minecraft/world/entity/ai/sensing/DummySensor +CL: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor +CL: net/minecraft/world/entity/ai/sensing/GolemSensor net/minecraft/world/entity/ai/sensing/GolemSensor +CL: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor +CL: net/minecraft/world/entity/ai/sensing/HurtBySensor net/minecraft/world/entity/ai/sensing/HurtBySensor +CL: net/minecraft/world/entity/ai/sensing/IsInWaterSensor net/minecraft/world/entity/ai/sensing/IsInWaterSensor +CL: net/minecraft/world/entity/ai/sensing/NearestBedSensor net/minecraft/world/entity/ai/sensing/NearestBedSensor +CL: net/minecraft/world/entity/ai/sensing/NearestItemSensor net/minecraft/world/entity/ai/sensing/NearestItemSensor +CL: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor +CL: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor +CL: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor +CL: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor +CL: net/minecraft/world/entity/ai/sensing/PlayerSensor net/minecraft/world/entity/ai/sensing/PlayerSensor +CL: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor +CL: net/minecraft/world/entity/ai/sensing/Sensing net/minecraft/world/entity/ai/sensing/Sensing +CL: net/minecraft/world/entity/ai/sensing/Sensor net/minecraft/world/entity/ai/sensing/Sensor +CL: net/minecraft/world/entity/ai/sensing/SensorType net/minecraft/world/entity/ai/sensing/SensorType +CL: net/minecraft/world/entity/ai/sensing/TemptingSensor net/minecraft/world/entity/ai/sensing/TemptingSensor +CL: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor +CL: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor +CL: net/minecraft/world/entity/ai/sensing/WardenEntitySensor net/minecraft/world/entity/ai/sensing/WardenEntitySensor +CL: net/minecraft/world/entity/ai/sensing/package-info net/minecraft/world/entity/ai/sensing/package-info +CL: net/minecraft/world/entity/ai/targeting/TargetingConditions net/minecraft/world/entity/ai/targeting/TargetingConditions +CL: net/minecraft/world/entity/ai/targeting/package-info net/minecraft/world/entity/ai/targeting/package-info +CL: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos net/minecraft/world/entity/ai/util/AirAndWaterRandomPos +CL: net/minecraft/world/entity/ai/util/AirRandomPos net/minecraft/world/entity/ai/util/AirRandomPos +CL: net/minecraft/world/entity/ai/util/DefaultRandomPos net/minecraft/world/entity/ai/util/DefaultRandomPos +CL: net/minecraft/world/entity/ai/util/GoalUtils net/minecraft/world/entity/ai/util/GoalUtils +CL: net/minecraft/world/entity/ai/util/HoverRandomPos net/minecraft/world/entity/ai/util/HoverRandomPos +CL: net/minecraft/world/entity/ai/util/LandRandomPos net/minecraft/world/entity/ai/util/LandRandomPos +CL: net/minecraft/world/entity/ai/util/RandomPos net/minecraft/world/entity/ai/util/RandomPos +CL: net/minecraft/world/entity/ai/util/package-info net/minecraft/world/entity/ai/util/package-info +CL: net/minecraft/world/entity/ai/village/ReputationEventType net/minecraft/world/entity/ai/village/ReputationEventType +CL: net/minecraft/world/entity/ai/village/ReputationEventType$1 net/minecraft/world/entity/ai/village/ReputationEventType$1 +CL: net/minecraft/world/entity/ai/village/VillageSiege net/minecraft/world/entity/ai/village/VillageSiege +CL: net/minecraft/world/entity/ai/village/VillageSiege$State net/minecraft/world/entity/ai/village/VillageSiege$State +CL: net/minecraft/world/entity/ai/village/package-info net/minecraft/world/entity/ai/village/package-info +CL: net/minecraft/world/entity/ai/village/poi/PoiManager net/minecraft/world/entity/ai/village/poi/PoiManager +CL: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker +CL: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy +CL: net/minecraft/world/entity/ai/village/poi/PoiRecord net/minecraft/world/entity/ai/village/poi/PoiRecord +CL: net/minecraft/world/entity/ai/village/poi/PoiSection net/minecraft/world/entity/ai/village/poi/PoiSection +CL: net/minecraft/world/entity/ai/village/poi/PoiType net/minecraft/world/entity/ai/village/poi/PoiType +CL: net/minecraft/world/entity/ai/village/poi/PoiTypes net/minecraft/world/entity/ai/village/poi/PoiTypes +CL: net/minecraft/world/entity/ai/village/poi/package-info net/minecraft/world/entity/ai/village/poi/package-info +CL: net/minecraft/world/entity/ambient/AmbientCreature net/minecraft/world/entity/ambient/AmbientCreature +CL: net/minecraft/world/entity/ambient/Bat net/minecraft/world/entity/ambient/Bat +CL: net/minecraft/world/entity/ambient/package-info net/minecraft/world/entity/ambient/package-info +CL: net/minecraft/world/entity/animal/AbstractFish net/minecraft/world/entity/animal/AbstractFish +CL: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl net/minecraft/world/entity/animal/AbstractFish$FishMoveControl +CL: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal +CL: net/minecraft/world/entity/animal/AbstractGolem net/minecraft/world/entity/animal/AbstractGolem +CL: net/minecraft/world/entity/animal/AbstractSchoolingFish net/minecraft/world/entity/animal/AbstractSchoolingFish +CL: net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData +CL: net/minecraft/world/entity/animal/Animal net/minecraft/world/entity/animal/Animal +CL: net/minecraft/world/entity/animal/Bee net/minecraft/world/entity/animal/Bee +CL: net/minecraft/world/entity/animal/Bee$1 net/minecraft/world/entity/animal/Bee$1 +CL: net/minecraft/world/entity/animal/Bee$BaseBeeGoal net/minecraft/world/entity/animal/Bee$BaseBeeGoal +CL: net/minecraft/world/entity/animal/Bee$BeeAttackGoal net/minecraft/world/entity/animal/Bee$BeeAttackGoal +CL: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal +CL: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal +CL: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal +CL: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal +CL: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal +CL: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal +CL: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal +CL: net/minecraft/world/entity/animal/Bee$BeeLookControl net/minecraft/world/entity/animal/Bee$BeeLookControl +CL: net/minecraft/world/entity/animal/Bee$BeePollinateGoal net/minecraft/world/entity/animal/Bee$BeePollinateGoal +CL: net/minecraft/world/entity/animal/Bee$BeeWanderGoal net/minecraft/world/entity/animal/Bee$BeeWanderGoal +CL: net/minecraft/world/entity/animal/Bucketable net/minecraft/world/entity/animal/Bucketable +CL: net/minecraft/world/entity/animal/Cat net/minecraft/world/entity/animal/Cat +CL: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal +CL: net/minecraft/world/entity/animal/Cat$CatTemptGoal net/minecraft/world/entity/animal/Cat$CatTemptGoal +CL: net/minecraft/world/entity/animal/CatVariant net/minecraft/world/entity/animal/CatVariant +CL: net/minecraft/world/entity/animal/Chicken net/minecraft/world/entity/animal/Chicken +CL: net/minecraft/world/entity/animal/Cod net/minecraft/world/entity/animal/Cod +CL: net/minecraft/world/entity/animal/Cow net/minecraft/world/entity/animal/Cow +CL: net/minecraft/world/entity/animal/Dolphin net/minecraft/world/entity/animal/Dolphin +CL: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal +CL: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal +CL: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal +CL: net/minecraft/world/entity/animal/FlyingAnimal net/minecraft/world/entity/animal/FlyingAnimal +CL: net/minecraft/world/entity/animal/Fox net/minecraft/world/entity/animal/Fox +CL: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal +CL: net/minecraft/world/entity/animal/Fox$FaceplantGoal net/minecraft/world/entity/animal/Fox$FaceplantGoal +CL: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector +CL: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal +CL: net/minecraft/world/entity/animal/Fox$FoxBreedGoal net/minecraft/world/entity/animal/Fox$FoxBreedGoal +CL: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal +CL: net/minecraft/world/entity/animal/Fox$FoxFloatGoal net/minecraft/world/entity/animal/Fox$FoxFloatGoal +CL: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal +CL: net/minecraft/world/entity/animal/Fox$FoxGroupData net/minecraft/world/entity/animal/Fox$FoxGroupData +CL: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal +CL: net/minecraft/world/entity/animal/Fox$FoxLookControl net/minecraft/world/entity/animal/Fox$FoxLookControl +CL: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal +CL: net/minecraft/world/entity/animal/Fox$FoxMoveControl net/minecraft/world/entity/animal/Fox$FoxMoveControl +CL: net/minecraft/world/entity/animal/Fox$FoxPanicGoal net/minecraft/world/entity/animal/Fox$FoxPanicGoal +CL: net/minecraft/world/entity/animal/Fox$FoxPounceGoal net/minecraft/world/entity/animal/Fox$FoxPounceGoal +CL: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal +CL: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal +CL: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal +CL: net/minecraft/world/entity/animal/Fox$SeekShelterGoal net/minecraft/world/entity/animal/Fox$SeekShelterGoal +CL: net/minecraft/world/entity/animal/Fox$SleepGoal net/minecraft/world/entity/animal/Fox$SleepGoal +CL: net/minecraft/world/entity/animal/Fox$StalkPreyGoal net/minecraft/world/entity/animal/Fox$StalkPreyGoal +CL: net/minecraft/world/entity/animal/Fox$Type net/minecraft/world/entity/animal/Fox$Type +CL: net/minecraft/world/entity/animal/FrogVariant net/minecraft/world/entity/animal/FrogVariant +CL: net/minecraft/world/entity/animal/IronGolem net/minecraft/world/entity/animal/IronGolem +CL: net/minecraft/world/entity/animal/IronGolem$Crackiness net/minecraft/world/entity/animal/IronGolem$Crackiness +CL: net/minecraft/world/entity/animal/MushroomCow net/minecraft/world/entity/animal/MushroomCow +CL: net/minecraft/world/entity/animal/MushroomCow$MushroomType net/minecraft/world/entity/animal/MushroomCow$MushroomType +CL: net/minecraft/world/entity/animal/Ocelot net/minecraft/world/entity/animal/Ocelot +CL: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal +CL: net/minecraft/world/entity/animal/Panda net/minecraft/world/entity/animal/Panda +CL: net/minecraft/world/entity/animal/Panda$Gene net/minecraft/world/entity/animal/Panda$Gene +CL: net/minecraft/world/entity/animal/Panda$PandaAttackGoal net/minecraft/world/entity/animal/Panda$PandaAttackGoal +CL: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal net/minecraft/world/entity/animal/Panda$PandaAvoidGoal +CL: net/minecraft/world/entity/animal/Panda$PandaBreedGoal net/minecraft/world/entity/animal/Panda$PandaBreedGoal +CL: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal +CL: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal +CL: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal +CL: net/minecraft/world/entity/animal/Panda$PandaMoveControl net/minecraft/world/entity/animal/Panda$PandaMoveControl +CL: net/minecraft/world/entity/animal/Panda$PandaPanicGoal net/minecraft/world/entity/animal/Panda$PandaPanicGoal +CL: net/minecraft/world/entity/animal/Panda$PandaRollGoal net/minecraft/world/entity/animal/Panda$PandaRollGoal +CL: net/minecraft/world/entity/animal/Panda$PandaSitGoal net/minecraft/world/entity/animal/Panda$PandaSitGoal +CL: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal net/minecraft/world/entity/animal/Panda$PandaSneezeGoal +CL: net/minecraft/world/entity/animal/Parrot net/minecraft/world/entity/animal/Parrot +CL: net/minecraft/world/entity/animal/Parrot$1 net/minecraft/world/entity/animal/Parrot$1 +CL: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal +CL: net/minecraft/world/entity/animal/Parrot$Variant net/minecraft/world/entity/animal/Parrot$Variant +CL: net/minecraft/world/entity/animal/Pig net/minecraft/world/entity/animal/Pig +CL: net/minecraft/world/entity/animal/PolarBear net/minecraft/world/entity/animal/PolarBear +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal +CL: net/minecraft/world/entity/animal/Pufferfish net/minecraft/world/entity/animal/Pufferfish +CL: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal +CL: net/minecraft/world/entity/animal/Rabbit net/minecraft/world/entity/animal/Rabbit +CL: net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal +CL: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Rabbit$RabbitGroupData net/minecraft/world/entity/animal/Rabbit$RabbitGroupData +CL: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl +CL: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl +CL: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal +CL: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal +CL: net/minecraft/world/entity/animal/Rabbit$Variant net/minecraft/world/entity/animal/Rabbit$Variant +CL: net/minecraft/world/entity/animal/Salmon net/minecraft/world/entity/animal/Salmon +CL: net/minecraft/world/entity/animal/Sheep net/minecraft/world/entity/animal/Sheep +CL: net/minecraft/world/entity/animal/Sheep$1 net/minecraft/world/entity/animal/Sheep$1 +CL: net/minecraft/world/entity/animal/Sheep$2 net/minecraft/world/entity/animal/Sheep$2 +CL: net/minecraft/world/entity/animal/ShoulderRidingEntity net/minecraft/world/entity/animal/ShoulderRidingEntity +CL: net/minecraft/world/entity/animal/SnowGolem net/minecraft/world/entity/animal/SnowGolem +CL: net/minecraft/world/entity/animal/Squid net/minecraft/world/entity/animal/Squid +CL: net/minecraft/world/entity/animal/Squid$SquidFleeGoal net/minecraft/world/entity/animal/Squid$SquidFleeGoal +CL: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal +CL: net/minecraft/world/entity/animal/TropicalFish net/minecraft/world/entity/animal/TropicalFish +CL: net/minecraft/world/entity/animal/TropicalFish$Base net/minecraft/world/entity/animal/TropicalFish$Base +CL: net/minecraft/world/entity/animal/TropicalFish$Pattern net/minecraft/world/entity/animal/TropicalFish$Pattern +CL: net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData +CL: net/minecraft/world/entity/animal/TropicalFish$Variant net/minecraft/world/entity/animal/TropicalFish$Variant +CL: net/minecraft/world/entity/animal/Turtle net/minecraft/world/entity/animal/Turtle +CL: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl net/minecraft/world/entity/animal/Turtle$TurtleMoveControl +CL: net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation +CL: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal +CL: net/minecraft/world/entity/animal/WaterAnimal net/minecraft/world/entity/animal/WaterAnimal +CL: net/minecraft/world/entity/animal/Wolf net/minecraft/world/entity/animal/Wolf +CL: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal net/minecraft/world/entity/animal/Wolf$WolfPanicGoal +CL: net/minecraft/world/entity/animal/allay/Allay net/minecraft/world/entity/animal/allay/Allay +CL: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener net/minecraft/world/entity/animal/allay/Allay$JukeboxListener +CL: net/minecraft/world/entity/animal/allay/Allay$VibrationUser net/minecraft/world/entity/animal/allay/Allay$VibrationUser +CL: net/minecraft/world/entity/animal/allay/AllayAi net/minecraft/world/entity/animal/allay/AllayAi +CL: net/minecraft/world/entity/animal/allay/package-info net/minecraft/world/entity/animal/allay/package-info +CL: net/minecraft/world/entity/animal/axolotl/Axolotl net/minecraft/world/entity/animal/axolotl/Axolotl +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant net/minecraft/world/entity/animal/axolotl/Axolotl$Variant +CL: net/minecraft/world/entity/animal/axolotl/AxolotlAi net/minecraft/world/entity/animal/axolotl/AxolotlAi +CL: net/minecraft/world/entity/animal/axolotl/PlayDead net/minecraft/world/entity/animal/axolotl/PlayDead +CL: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead net/minecraft/world/entity/animal/axolotl/ValidatePlayDead +CL: net/minecraft/world/entity/animal/axolotl/package-info net/minecraft/world/entity/animal/axolotl/package-info +CL: net/minecraft/world/entity/animal/camel/Camel net/minecraft/world/entity/animal/camel/Camel +CL: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl +CL: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl +CL: net/minecraft/world/entity/animal/camel/CamelAi net/minecraft/world/entity/animal/camel/CamelAi +CL: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic +CL: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting +CL: net/minecraft/world/entity/animal/camel/package-info net/minecraft/world/entity/animal/camel/package-info +CL: net/minecraft/world/entity/animal/frog/Frog net/minecraft/world/entity/animal/frog/Frog +CL: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl net/minecraft/world/entity/animal/frog/Frog$FrogLookControl +CL: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator +CL: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation +CL: net/minecraft/world/entity/animal/frog/FrogAi net/minecraft/world/entity/animal/frog/FrogAi +CL: net/minecraft/world/entity/animal/frog/ShootTongue net/minecraft/world/entity/animal/frog/ShootTongue +CL: net/minecraft/world/entity/animal/frog/ShootTongue$1 net/minecraft/world/entity/animal/frog/ShootTongue$1 +CL: net/minecraft/world/entity/animal/frog/ShootTongue$State net/minecraft/world/entity/animal/frog/ShootTongue$State +CL: net/minecraft/world/entity/animal/frog/Tadpole net/minecraft/world/entity/animal/frog/Tadpole +CL: net/minecraft/world/entity/animal/frog/TadpoleAi net/minecraft/world/entity/animal/frog/TadpoleAi +CL: net/minecraft/world/entity/animal/frog/package-info net/minecraft/world/entity/animal/frog/package-info +CL: net/minecraft/world/entity/animal/goat/Goat net/minecraft/world/entity/animal/goat/Goat +CL: net/minecraft/world/entity/animal/goat/GoatAi net/minecraft/world/entity/animal/goat/GoatAi +CL: net/minecraft/world/entity/animal/goat/package-info net/minecraft/world/entity/animal/goat/package-info +CL: net/minecraft/world/entity/animal/horse/AbstractChestedHorse net/minecraft/world/entity/animal/horse/AbstractChestedHorse +CL: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1 net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1 +CL: net/minecraft/world/entity/animal/horse/AbstractHorse net/minecraft/world/entity/animal/horse/AbstractHorse +CL: net/minecraft/world/entity/animal/horse/AbstractHorse$1 net/minecraft/world/entity/animal/horse/AbstractHorse$1 +CL: net/minecraft/world/entity/animal/horse/Donkey net/minecraft/world/entity/animal/horse/Donkey +CL: net/minecraft/world/entity/animal/horse/Horse net/minecraft/world/entity/animal/horse/Horse +CL: net/minecraft/world/entity/animal/horse/Horse$HorseGroupData net/minecraft/world/entity/animal/horse/Horse$HorseGroupData +CL: net/minecraft/world/entity/animal/horse/Llama net/minecraft/world/entity/animal/horse/Llama +CL: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal +CL: net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData +CL: net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal +CL: net/minecraft/world/entity/animal/horse/Llama$Variant net/minecraft/world/entity/animal/horse/Llama$Variant +CL: net/minecraft/world/entity/animal/horse/Markings net/minecraft/world/entity/animal/horse/Markings +CL: net/minecraft/world/entity/animal/horse/Mule net/minecraft/world/entity/animal/horse/Mule +CL: net/minecraft/world/entity/animal/horse/SkeletonHorse net/minecraft/world/entity/animal/horse/SkeletonHorse +CL: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal net/minecraft/world/entity/animal/horse/SkeletonTrapGoal +CL: net/minecraft/world/entity/animal/horse/TraderLlama net/minecraft/world/entity/animal/horse/TraderLlama +CL: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal +CL: net/minecraft/world/entity/animal/horse/Variant net/minecraft/world/entity/animal/horse/Variant +CL: net/minecraft/world/entity/animal/horse/ZombieHorse net/minecraft/world/entity/animal/horse/ZombieHorse +CL: net/minecraft/world/entity/animal/horse/package-info net/minecraft/world/entity/animal/horse/package-info +CL: net/minecraft/world/entity/animal/package-info net/minecraft/world/entity/animal/package-info +CL: net/minecraft/world/entity/animal/sniffer/Sniffer net/minecraft/world/entity/animal/sniffer/Sniffer +CL: net/minecraft/world/entity/animal/sniffer/Sniffer$1 net/minecraft/world/entity/animal/sniffer/Sniffer$1 +CL: net/minecraft/world/entity/animal/sniffer/Sniffer$State net/minecraft/world/entity/animal/sniffer/Sniffer$State +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi net/minecraft/world/entity/animal/sniffer/SnifferAi +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$1 net/minecraft/world/entity/animal/sniffer/SnifferAi$1 +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$2 net/minecraft/world/entity/animal/sniffer/SnifferAi$2 +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$3 net/minecraft/world/entity/animal/sniffer/SnifferAi$3 +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing +CL: net/minecraft/world/entity/boss/EnderDragonPart net/minecraft/world/entity/boss/EnderDragonPart +CL: net/minecraft/world/entity/boss/enderdragon/EndCrystal net/minecraft/world/entity/boss/enderdragon/EndCrystal +CL: net/minecraft/world/entity/boss/enderdragon/EnderDragon net/minecraft/world/entity/boss/enderdragon/EnderDragon +CL: net/minecraft/world/entity/boss/enderdragon/package-info net/minecraft/world/entity/boss/enderdragon/package-info +CL: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance +CL: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager +CL: net/minecraft/world/entity/boss/enderdragon/phases/package-info net/minecraft/world/entity/boss/enderdragon/phases/package-info +CL: net/minecraft/world/entity/boss/package-info net/minecraft/world/entity/boss/package-info +CL: net/minecraft/world/entity/boss/wither/WitherBoss net/minecraft/world/entity/boss/wither/WitherBoss +CL: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal +CL: net/minecraft/world/entity/boss/wither/package-info net/minecraft/world/entity/boss/wither/package-info +CL: net/minecraft/world/entity/decoration/ArmorStand net/minecraft/world/entity/decoration/ArmorStand +CL: net/minecraft/world/entity/decoration/ArmorStand$1 net/minecraft/world/entity/decoration/ArmorStand$1 +CL: net/minecraft/world/entity/decoration/GlowItemFrame net/minecraft/world/entity/decoration/GlowItemFrame +CL: net/minecraft/world/entity/decoration/HangingEntity net/minecraft/world/entity/decoration/HangingEntity +CL: net/minecraft/world/entity/decoration/HangingEntity$1 net/minecraft/world/entity/decoration/HangingEntity$1 +CL: net/minecraft/world/entity/decoration/ItemFrame net/minecraft/world/entity/decoration/ItemFrame +CL: net/minecraft/world/entity/decoration/ItemFrame$1 net/minecraft/world/entity/decoration/ItemFrame$1 +CL: net/minecraft/world/entity/decoration/ItemFrame$2 net/minecraft/world/entity/decoration/ItemFrame$2 +CL: net/minecraft/world/entity/decoration/LeashFenceKnotEntity net/minecraft/world/entity/decoration/LeashFenceKnotEntity +CL: net/minecraft/world/entity/decoration/Painting net/minecraft/world/entity/decoration/Painting +CL: net/minecraft/world/entity/decoration/PaintingVariant net/minecraft/world/entity/decoration/PaintingVariant +CL: net/minecraft/world/entity/decoration/PaintingVariants net/minecraft/world/entity/decoration/PaintingVariants +CL: net/minecraft/world/entity/decoration/package-info net/minecraft/world/entity/decoration/package-info +CL: net/minecraft/world/entity/item/FallingBlockEntity net/minecraft/world/entity/item/FallingBlockEntity +CL: net/minecraft/world/entity/item/ItemEntity net/minecraft/world/entity/item/ItemEntity +CL: net/minecraft/world/entity/item/PrimedTnt net/minecraft/world/entity/item/PrimedTnt +CL: net/minecraft/world/entity/item/package-info net/minecraft/world/entity/item/package-info +CL: net/minecraft/world/entity/monster/AbstractIllager net/minecraft/world/entity/monster/AbstractIllager +CL: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose +CL: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal +CL: net/minecraft/world/entity/monster/AbstractSkeleton net/minecraft/world/entity/monster/AbstractSkeleton +CL: net/minecraft/world/entity/monster/AbstractSkeleton$1 net/minecraft/world/entity/monster/AbstractSkeleton$1 +CL: net/minecraft/world/entity/monster/Blaze net/minecraft/world/entity/monster/Blaze +CL: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal +CL: net/minecraft/world/entity/monster/CaveSpider net/minecraft/world/entity/monster/CaveSpider +CL: net/minecraft/world/entity/monster/Creeper net/minecraft/world/entity/monster/Creeper +CL: net/minecraft/world/entity/monster/CrossbowAttackMob net/minecraft/world/entity/monster/CrossbowAttackMob +CL: net/minecraft/world/entity/monster/Drowned net/minecraft/world/entity/monster/Drowned +CL: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl net/minecraft/world/entity/monster/Drowned$DrownedMoveControl +CL: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal +CL: net/minecraft/world/entity/monster/ElderGuardian net/minecraft/world/entity/monster/ElderGuardian +CL: net/minecraft/world/entity/monster/EnderMan net/minecraft/world/entity/monster/EnderMan +CL: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt +CL: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal +CL: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal +CL: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal +CL: net/minecraft/world/entity/monster/Endermite net/minecraft/world/entity/monster/Endermite +CL: net/minecraft/world/entity/monster/Enemy net/minecraft/world/entity/monster/Enemy +CL: net/minecraft/world/entity/monster/Evoker net/minecraft/world/entity/monster/Evoker +CL: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal +CL: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal +CL: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal +CL: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal +CL: net/minecraft/world/entity/monster/Ghast net/minecraft/world/entity/monster/Ghast +CL: net/minecraft/world/entity/monster/Ghast$GhastLookGoal net/minecraft/world/entity/monster/Ghast$GhastLookGoal +CL: net/minecraft/world/entity/monster/Ghast$GhastMoveControl net/minecraft/world/entity/monster/Ghast$GhastMoveControl +CL: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal +CL: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal +CL: net/minecraft/world/entity/monster/Giant net/minecraft/world/entity/monster/Giant +CL: net/minecraft/world/entity/monster/Guardian net/minecraft/world/entity/monster/Guardian +CL: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal +CL: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector +CL: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl net/minecraft/world/entity/monster/Guardian$GuardianMoveControl +CL: net/minecraft/world/entity/monster/Husk net/minecraft/world/entity/monster/Husk +CL: net/minecraft/world/entity/monster/Illusioner net/minecraft/world/entity/monster/Illusioner +CL: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal +CL: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal +CL: net/minecraft/world/entity/monster/MagmaCube net/minecraft/world/entity/monster/MagmaCube +CL: net/minecraft/world/entity/monster/Monster net/minecraft/world/entity/monster/Monster +CL: net/minecraft/world/entity/monster/PatrollingMonster net/minecraft/world/entity/monster/PatrollingMonster +CL: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal +CL: net/minecraft/world/entity/monster/Phantom net/minecraft/world/entity/monster/Phantom +CL: net/minecraft/world/entity/monster/Phantom$AttackPhase net/minecraft/world/entity/monster/Phantom$AttackPhase +CL: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl +CL: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomLookControl net/minecraft/world/entity/monster/Phantom$PhantomLookControl +CL: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl net/minecraft/world/entity/monster/Phantom$PhantomMoveControl +CL: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal +CL: net/minecraft/world/entity/monster/Pillager net/minecraft/world/entity/monster/Pillager +CL: net/minecraft/world/entity/monster/RangedAttackMob net/minecraft/world/entity/monster/RangedAttackMob +CL: net/minecraft/world/entity/monster/Ravager net/minecraft/world/entity/monster/Ravager +CL: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal +CL: net/minecraft/world/entity/monster/Shulker net/minecraft/world/entity/monster/Shulker +CL: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal +CL: net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl +CL: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal +CL: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl net/minecraft/world/entity/monster/Shulker$ShulkerLookControl +CL: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal +CL: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal +CL: net/minecraft/world/entity/monster/Silverfish net/minecraft/world/entity/monster/Silverfish +CL: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal +CL: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal +CL: net/minecraft/world/entity/monster/Skeleton net/minecraft/world/entity/monster/Skeleton +CL: net/minecraft/world/entity/monster/Slime net/minecraft/world/entity/monster/Slime +CL: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal net/minecraft/world/entity/monster/Slime$SlimeAttackGoal +CL: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal net/minecraft/world/entity/monster/Slime$SlimeFloatGoal +CL: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal +CL: net/minecraft/world/entity/monster/Slime$SlimeMoveControl net/minecraft/world/entity/monster/Slime$SlimeMoveControl +CL: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal +CL: net/minecraft/world/entity/monster/SpellcasterIllager net/minecraft/world/entity/monster/SpellcasterIllager +CL: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell +CL: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal +CL: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal +CL: net/minecraft/world/entity/monster/Spider net/minecraft/world/entity/monster/Spider +CL: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal net/minecraft/world/entity/monster/Spider$SpiderAttackGoal +CL: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData +CL: net/minecraft/world/entity/monster/Spider$SpiderTargetGoal net/minecraft/world/entity/monster/Spider$SpiderTargetGoal +CL: net/minecraft/world/entity/monster/Stray net/minecraft/world/entity/monster/Stray +CL: net/minecraft/world/entity/monster/Strider net/minecraft/world/entity/monster/Strider +CL: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal +CL: net/minecraft/world/entity/monster/Strider$StriderPathNavigation net/minecraft/world/entity/monster/Strider$StriderPathNavigation +CL: net/minecraft/world/entity/monster/Vex net/minecraft/world/entity/monster/Vex +CL: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal +CL: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal +CL: net/minecraft/world/entity/monster/Vex$VexMoveControl net/minecraft/world/entity/monster/Vex$VexMoveControl +CL: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal +CL: net/minecraft/world/entity/monster/Vindicator net/minecraft/world/entity/monster/Vindicator +CL: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal +CL: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal +CL: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal +CL: net/minecraft/world/entity/monster/Witch net/minecraft/world/entity/monster/Witch +CL: net/minecraft/world/entity/monster/WitherSkeleton net/minecraft/world/entity/monster/WitherSkeleton +CL: net/minecraft/world/entity/monster/Zoglin net/minecraft/world/entity/monster/Zoglin +CL: net/minecraft/world/entity/monster/Zombie net/minecraft/world/entity/monster/Zombie +CL: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal +CL: net/minecraft/world/entity/monster/Zombie$ZombieGroupData net/minecraft/world/entity/monster/Zombie$ZombieGroupData +CL: net/minecraft/world/entity/monster/ZombieVillager net/minecraft/world/entity/monster/ZombieVillager +CL: net/minecraft/world/entity/monster/ZombifiedPiglin net/minecraft/world/entity/monster/ZombifiedPiglin +CL: net/minecraft/world/entity/monster/hoglin/Hoglin net/minecraft/world/entity/monster/hoglin/Hoglin +CL: net/minecraft/world/entity/monster/hoglin/HoglinAi net/minecraft/world/entity/monster/hoglin/HoglinAi +CL: net/minecraft/world/entity/monster/hoglin/HoglinBase net/minecraft/world/entity/monster/hoglin/HoglinBase +CL: net/minecraft/world/entity/monster/hoglin/package-info net/minecraft/world/entity/monster/hoglin/package-info +CL: net/minecraft/world/entity/monster/package-info net/minecraft/world/entity/monster/package-info +CL: net/minecraft/world/entity/monster/piglin/AbstractPiglin net/minecraft/world/entity/monster/piglin/AbstractPiglin +CL: net/minecraft/world/entity/monster/piglin/Piglin net/minecraft/world/entity/monster/piglin/Piglin +CL: net/minecraft/world/entity/monster/piglin/PiglinAi net/minecraft/world/entity/monster/piglin/PiglinAi +CL: net/minecraft/world/entity/monster/piglin/PiglinArmPose net/minecraft/world/entity/monster/piglin/PiglinArmPose +CL: net/minecraft/world/entity/monster/piglin/PiglinBrute net/minecraft/world/entity/monster/piglin/PiglinBrute +CL: net/minecraft/world/entity/monster/piglin/PiglinBruteAi net/minecraft/world/entity/monster/piglin/PiglinBruteAi +CL: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled +CL: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen +CL: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin net/minecraft/world/entity/monster/piglin/StartHuntingHoglin +CL: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway +CL: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem +CL: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring +CL: net/minecraft/world/entity/monster/piglin/package-info net/minecraft/world/entity/monster/piglin/package-info +CL: net/minecraft/world/entity/monster/warden/AngerLevel net/minecraft/world/entity/monster/warden/AngerLevel +CL: net/minecraft/world/entity/monster/warden/AngerManagement net/minecraft/world/entity/monster/warden/AngerManagement +CL: net/minecraft/world/entity/monster/warden/AngerManagement$1 net/minecraft/world/entity/monster/warden/AngerManagement$1 +CL: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter net/minecraft/world/entity/monster/warden/AngerManagement$Sorter +CL: net/minecraft/world/entity/monster/warden/Warden net/minecraft/world/entity/monster/warden/Warden +CL: net/minecraft/world/entity/monster/warden/Warden$1 net/minecraft/world/entity/monster/warden/Warden$1 +CL: net/minecraft/world/entity/monster/warden/Warden$1$1 net/minecraft/world/entity/monster/warden/Warden$1$1 +CL: net/minecraft/world/entity/monster/warden/Warden$2 net/minecraft/world/entity/monster/warden/Warden$2 +CL: net/minecraft/world/entity/monster/warden/Warden$VibrationUser net/minecraft/world/entity/monster/warden/Warden$VibrationUser +CL: net/minecraft/world/entity/monster/warden/WardenAi net/minecraft/world/entity/monster/warden/WardenAi +CL: net/minecraft/world/entity/monster/warden/WardenSpawnTracker net/minecraft/world/entity/monster/warden/WardenSpawnTracker +CL: net/minecraft/world/entity/monster/warden/package-info net/minecraft/world/entity/monster/warden/package-info +CL: net/minecraft/world/entity/npc/AbstractVillager net/minecraft/world/entity/npc/AbstractVillager +CL: net/minecraft/world/entity/npc/CatSpawner net/minecraft/world/entity/npc/CatSpawner +CL: net/minecraft/world/entity/npc/ClientSideMerchant net/minecraft/world/entity/npc/ClientSideMerchant +CL: net/minecraft/world/entity/npc/InventoryCarrier net/minecraft/world/entity/npc/InventoryCarrier +CL: net/minecraft/world/entity/npc/Npc net/minecraft/world/entity/npc/Npc +CL: net/minecraft/world/entity/npc/Villager net/minecraft/world/entity/npc/Villager +CL: net/minecraft/world/entity/npc/VillagerData net/minecraft/world/entity/npc/VillagerData +CL: net/minecraft/world/entity/npc/VillagerDataHolder net/minecraft/world/entity/npc/VillagerDataHolder +CL: net/minecraft/world/entity/npc/VillagerProfession net/minecraft/world/entity/npc/VillagerProfession +CL: net/minecraft/world/entity/npc/VillagerTrades net/minecraft/world/entity/npc/VillagerTrades +CL: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems +CL: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem +CL: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$ItemListing net/minecraft/world/entity/npc/VillagerTrades$ItemListing +CL: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems +CL: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald +CL: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds +CL: net/minecraft/world/entity/npc/VillagerType net/minecraft/world/entity/npc/VillagerType +CL: net/minecraft/world/entity/npc/WanderingTrader net/minecraft/world/entity/npc/WanderingTrader +CL: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal +CL: net/minecraft/world/entity/npc/WanderingTraderSpawner net/minecraft/world/entity/npc/WanderingTraderSpawner +CL: net/minecraft/world/entity/npc/package-info net/minecraft/world/entity/npc/package-info +CL: net/minecraft/world/entity/package-info net/minecraft/world/entity/package-info +CL: net/minecraft/world/entity/player/Abilities net/minecraft/world/entity/player/Abilities +CL: net/minecraft/world/entity/player/ChatVisiblity net/minecraft/world/entity/player/ChatVisiblity +CL: net/minecraft/world/entity/player/Inventory net/minecraft/world/entity/player/Inventory +CL: net/minecraft/world/entity/player/Player net/minecraft/world/entity/player/Player +CL: net/minecraft/world/entity/player/Player$1 net/minecraft/world/entity/player/Player$1 +CL: net/minecraft/world/entity/player/Player$BedSleepingProblem net/minecraft/world/entity/player/Player$BedSleepingProblem +CL: net/minecraft/world/entity/player/PlayerModelPart net/minecraft/world/entity/player/PlayerModelPart +CL: net/minecraft/world/entity/player/ProfileKeyPair net/minecraft/world/entity/player/ProfileKeyPair +CL: net/minecraft/world/entity/player/ProfilePublicKey net/minecraft/world/entity/player/ProfilePublicKey +CL: net/minecraft/world/entity/player/ProfilePublicKey$Data net/minecraft/world/entity/player/ProfilePublicKey$Data +CL: net/minecraft/world/entity/player/ProfilePublicKey$ValidationException net/minecraft/world/entity/player/ProfilePublicKey$ValidationException +CL: net/minecraft/world/entity/player/StackedContents net/minecraft/world/entity/player/StackedContents +CL: net/minecraft/world/entity/player/StackedContents$RecipePicker net/minecraft/world/entity/player/StackedContents$RecipePicker +CL: net/minecraft/world/entity/player/package-info net/minecraft/world/entity/player/package-info +CL: net/minecraft/world/entity/projectile/AbstractArrow net/minecraft/world/entity/projectile/AbstractArrow +CL: net/minecraft/world/entity/projectile/AbstractArrow$1 net/minecraft/world/entity/projectile/AbstractArrow$1 +CL: net/minecraft/world/entity/projectile/AbstractArrow$Pickup net/minecraft/world/entity/projectile/AbstractArrow$Pickup +CL: net/minecraft/world/entity/projectile/AbstractHurtingProjectile net/minecraft/world/entity/projectile/AbstractHurtingProjectile +CL: net/minecraft/world/entity/projectile/Arrow net/minecraft/world/entity/projectile/Arrow +CL: net/minecraft/world/entity/projectile/DragonFireball net/minecraft/world/entity/projectile/DragonFireball +CL: net/minecraft/world/entity/projectile/EvokerFangs net/minecraft/world/entity/projectile/EvokerFangs +CL: net/minecraft/world/entity/projectile/EyeOfEnder net/minecraft/world/entity/projectile/EyeOfEnder +CL: net/minecraft/world/entity/projectile/Fireball net/minecraft/world/entity/projectile/Fireball +CL: net/minecraft/world/entity/projectile/FireworkRocketEntity net/minecraft/world/entity/projectile/FireworkRocketEntity +CL: net/minecraft/world/entity/projectile/FishingHook net/minecraft/world/entity/projectile/FishingHook +CL: net/minecraft/world/entity/projectile/FishingHook$1 net/minecraft/world/entity/projectile/FishingHook$1 +CL: net/minecraft/world/entity/projectile/FishingHook$FishHookState net/minecraft/world/entity/projectile/FishingHook$FishHookState +CL: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType net/minecraft/world/entity/projectile/FishingHook$OpenWaterType +CL: net/minecraft/world/entity/projectile/ItemSupplier net/minecraft/world/entity/projectile/ItemSupplier +CL: net/minecraft/world/entity/projectile/LargeFireball net/minecraft/world/entity/projectile/LargeFireball +CL: net/minecraft/world/entity/projectile/LlamaSpit net/minecraft/world/entity/projectile/LlamaSpit +CL: net/minecraft/world/entity/projectile/Projectile net/minecraft/world/entity/projectile/Projectile +CL: net/minecraft/world/entity/projectile/ProjectileUtil net/minecraft/world/entity/projectile/ProjectileUtil +CL: net/minecraft/world/entity/projectile/ShulkerBullet net/minecraft/world/entity/projectile/ShulkerBullet +CL: net/minecraft/world/entity/projectile/SmallFireball net/minecraft/world/entity/projectile/SmallFireball +CL: net/minecraft/world/entity/projectile/Snowball net/minecraft/world/entity/projectile/Snowball +CL: net/minecraft/world/entity/projectile/SpectralArrow net/minecraft/world/entity/projectile/SpectralArrow +CL: net/minecraft/world/entity/projectile/ThrowableItemProjectile net/minecraft/world/entity/projectile/ThrowableItemProjectile +CL: net/minecraft/world/entity/projectile/ThrowableProjectile net/minecraft/world/entity/projectile/ThrowableProjectile +CL: net/minecraft/world/entity/projectile/ThrownEgg net/minecraft/world/entity/projectile/ThrownEgg +CL: net/minecraft/world/entity/projectile/ThrownEnderpearl net/minecraft/world/entity/projectile/ThrownEnderpearl +CL: net/minecraft/world/entity/projectile/ThrownExperienceBottle net/minecraft/world/entity/projectile/ThrownExperienceBottle +CL: net/minecraft/world/entity/projectile/ThrownPotion net/minecraft/world/entity/projectile/ThrownPotion +CL: net/minecraft/world/entity/projectile/ThrownTrident net/minecraft/world/entity/projectile/ThrownTrident +CL: net/minecraft/world/entity/projectile/WitherSkull net/minecraft/world/entity/projectile/WitherSkull +CL: net/minecraft/world/entity/projectile/package-info net/minecraft/world/entity/projectile/package-info +CL: net/minecraft/world/entity/raid/Raid net/minecraft/world/entity/raid/Raid +CL: net/minecraft/world/entity/raid/Raid$1 net/minecraft/world/entity/raid/Raid$1 +CL: net/minecraft/world/entity/raid/Raid$RaidStatus net/minecraft/world/entity/raid/Raid$RaidStatus +CL: net/minecraft/world/entity/raid/Raid$RaiderType net/minecraft/world/entity/raid/Raid$RaiderType +CL: net/minecraft/world/entity/raid/Raider net/minecraft/world/entity/raid/Raider +CL: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal +CL: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal +CL: net/minecraft/world/entity/raid/Raider$RaiderCelebration net/minecraft/world/entity/raid/Raider$RaiderCelebration +CL: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal +CL: net/minecraft/world/entity/raid/Raids net/minecraft/world/entity/raid/Raids +CL: net/minecraft/world/entity/raid/package-info net/minecraft/world/entity/raid/package-info +CL: net/minecraft/world/entity/schedule/Activity net/minecraft/world/entity/schedule/Activity +CL: net/minecraft/world/entity/schedule/Keyframe net/minecraft/world/entity/schedule/Keyframe +CL: net/minecraft/world/entity/schedule/Schedule net/minecraft/world/entity/schedule/Schedule +CL: net/minecraft/world/entity/schedule/ScheduleBuilder net/minecraft/world/entity/schedule/ScheduleBuilder +CL: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition +CL: net/minecraft/world/entity/schedule/Timeline net/minecraft/world/entity/schedule/Timeline +CL: net/minecraft/world/entity/schedule/package-info net/minecraft/world/entity/schedule/package-info +CL: net/minecraft/world/entity/vehicle/AbstractMinecart net/minecraft/world/entity/vehicle/AbstractMinecart +CL: net/minecraft/world/entity/vehicle/AbstractMinecart$1 net/minecraft/world/entity/vehicle/AbstractMinecart$1 +CL: net/minecraft/world/entity/vehicle/AbstractMinecart$Type net/minecraft/world/entity/vehicle/AbstractMinecart$Type +CL: net/minecraft/world/entity/vehicle/AbstractMinecartContainer net/minecraft/world/entity/vehicle/AbstractMinecartContainer +CL: net/minecraft/world/entity/vehicle/Boat net/minecraft/world/entity/vehicle/Boat +CL: net/minecraft/world/entity/vehicle/Boat$1 net/minecraft/world/entity/vehicle/Boat$1 +CL: net/minecraft/world/entity/vehicle/Boat$Status net/minecraft/world/entity/vehicle/Boat$Status +CL: net/minecraft/world/entity/vehicle/Boat$Type net/minecraft/world/entity/vehicle/Boat$Type +CL: net/minecraft/world/entity/vehicle/ChestBoat net/minecraft/world/entity/vehicle/ChestBoat +CL: net/minecraft/world/entity/vehicle/ChestBoat$1 net/minecraft/world/entity/vehicle/ChestBoat$1 +CL: net/minecraft/world/entity/vehicle/ContainerEntity net/minecraft/world/entity/vehicle/ContainerEntity +CL: net/minecraft/world/entity/vehicle/ContainerEntity$1 net/minecraft/world/entity/vehicle/ContainerEntity$1 +CL: net/minecraft/world/entity/vehicle/DismountHelper net/minecraft/world/entity/vehicle/DismountHelper +CL: net/minecraft/world/entity/vehicle/Minecart net/minecraft/world/entity/vehicle/Minecart +CL: net/minecraft/world/entity/vehicle/MinecartChest net/minecraft/world/entity/vehicle/MinecartChest +CL: net/minecraft/world/entity/vehicle/MinecartCommandBlock net/minecraft/world/entity/vehicle/MinecartCommandBlock +CL: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase +CL: net/minecraft/world/entity/vehicle/MinecartFurnace net/minecraft/world/entity/vehicle/MinecartFurnace +CL: net/minecraft/world/entity/vehicle/MinecartHopper net/minecraft/world/entity/vehicle/MinecartHopper +CL: net/minecraft/world/entity/vehicle/MinecartSpawner net/minecraft/world/entity/vehicle/MinecartSpawner +CL: net/minecraft/world/entity/vehicle/MinecartSpawner$1 net/minecraft/world/entity/vehicle/MinecartSpawner$1 +CL: net/minecraft/world/entity/vehicle/MinecartTNT net/minecraft/world/entity/vehicle/MinecartTNT +CL: net/minecraft/world/entity/vehicle/package-info net/minecraft/world/entity/vehicle/package-info +CL: net/minecraft/world/flag/FeatureElement net/minecraft/world/flag/FeatureElement +CL: net/minecraft/world/flag/FeatureFlag net/minecraft/world/flag/FeatureFlag +CL: net/minecraft/world/flag/FeatureFlagRegistry net/minecraft/world/flag/FeatureFlagRegistry +CL: net/minecraft/world/flag/FeatureFlagRegistry$Builder net/minecraft/world/flag/FeatureFlagRegistry$Builder +CL: net/minecraft/world/flag/FeatureFlagSet net/minecraft/world/flag/FeatureFlagSet +CL: net/minecraft/world/flag/FeatureFlagUniverse net/minecraft/world/flag/FeatureFlagUniverse +CL: net/minecraft/world/flag/FeatureFlags net/minecraft/world/flag/FeatureFlags +CL: net/minecraft/world/flag/package-info net/minecraft/world/flag/package-info +CL: net/minecraft/world/food/FoodConstants net/minecraft/world/food/FoodConstants +CL: net/minecraft/world/food/FoodData net/minecraft/world/food/FoodData +CL: net/minecraft/world/food/FoodProperties net/minecraft/world/food/FoodProperties +CL: net/minecraft/world/food/FoodProperties$Builder net/minecraft/world/food/FoodProperties$Builder +CL: net/minecraft/world/food/Foods net/minecraft/world/food/Foods +CL: net/minecraft/world/food/package-info net/minecraft/world/food/package-info +CL: net/minecraft/world/inventory/AbstractContainerMenu net/minecraft/world/inventory/AbstractContainerMenu +CL: net/minecraft/world/inventory/AbstractContainerMenu$1 net/minecraft/world/inventory/AbstractContainerMenu$1 +CL: net/minecraft/world/inventory/AbstractFurnaceMenu net/minecraft/world/inventory/AbstractFurnaceMenu +CL: net/minecraft/world/inventory/AnvilMenu net/minecraft/world/inventory/AnvilMenu +CL: net/minecraft/world/inventory/AnvilMenu$1 net/minecraft/world/inventory/AnvilMenu$1 +CL: net/minecraft/world/inventory/BeaconMenu net/minecraft/world/inventory/BeaconMenu +CL: net/minecraft/world/inventory/BeaconMenu$1 net/minecraft/world/inventory/BeaconMenu$1 +CL: net/minecraft/world/inventory/BeaconMenu$PaymentSlot net/minecraft/world/inventory/BeaconMenu$PaymentSlot +CL: net/minecraft/world/inventory/BlastFurnaceMenu net/minecraft/world/inventory/BlastFurnaceMenu +CL: net/minecraft/world/inventory/BrewingStandMenu net/minecraft/world/inventory/BrewingStandMenu +CL: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot net/minecraft/world/inventory/BrewingStandMenu$FuelSlot +CL: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot +CL: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot net/minecraft/world/inventory/BrewingStandMenu$PotionSlot +CL: net/minecraft/world/inventory/CartographyTableMenu net/minecraft/world/inventory/CartographyTableMenu +CL: net/minecraft/world/inventory/CartographyTableMenu$1 net/minecraft/world/inventory/CartographyTableMenu$1 +CL: net/minecraft/world/inventory/CartographyTableMenu$2 net/minecraft/world/inventory/CartographyTableMenu$2 +CL: net/minecraft/world/inventory/CartographyTableMenu$3 net/minecraft/world/inventory/CartographyTableMenu$3 +CL: net/minecraft/world/inventory/CartographyTableMenu$4 net/minecraft/world/inventory/CartographyTableMenu$4 +CL: net/minecraft/world/inventory/CartographyTableMenu$5 net/minecraft/world/inventory/CartographyTableMenu$5 +CL: net/minecraft/world/inventory/ChestMenu net/minecraft/world/inventory/ChestMenu +CL: net/minecraft/world/inventory/ClickAction net/minecraft/world/inventory/ClickAction +CL: net/minecraft/world/inventory/ClickType net/minecraft/world/inventory/ClickType +CL: net/minecraft/world/inventory/ContainerData net/minecraft/world/inventory/ContainerData +CL: net/minecraft/world/inventory/ContainerLevelAccess net/minecraft/world/inventory/ContainerLevelAccess +CL: net/minecraft/world/inventory/ContainerLevelAccess$1 net/minecraft/world/inventory/ContainerLevelAccess$1 +CL: net/minecraft/world/inventory/ContainerLevelAccess$2 net/minecraft/world/inventory/ContainerLevelAccess$2 +CL: net/minecraft/world/inventory/ContainerListener net/minecraft/world/inventory/ContainerListener +CL: net/minecraft/world/inventory/ContainerSynchronizer net/minecraft/world/inventory/ContainerSynchronizer +CL: net/minecraft/world/inventory/CraftingContainer net/minecraft/world/inventory/CraftingContainer +CL: net/minecraft/world/inventory/CraftingMenu net/minecraft/world/inventory/CraftingMenu +CL: net/minecraft/world/inventory/DataSlot net/minecraft/world/inventory/DataSlot +CL: net/minecraft/world/inventory/DataSlot$1 net/minecraft/world/inventory/DataSlot$1 +CL: net/minecraft/world/inventory/DataSlot$2 net/minecraft/world/inventory/DataSlot$2 +CL: net/minecraft/world/inventory/DataSlot$3 net/minecraft/world/inventory/DataSlot$3 +CL: net/minecraft/world/inventory/DispenserMenu net/minecraft/world/inventory/DispenserMenu +CL: net/minecraft/world/inventory/EnchantmentMenu net/minecraft/world/inventory/EnchantmentMenu +CL: net/minecraft/world/inventory/EnchantmentMenu$1 net/minecraft/world/inventory/EnchantmentMenu$1 +CL: net/minecraft/world/inventory/EnchantmentMenu$2 net/minecraft/world/inventory/EnchantmentMenu$2 +CL: net/minecraft/world/inventory/EnchantmentMenu$3 net/minecraft/world/inventory/EnchantmentMenu$3 +CL: net/minecraft/world/inventory/FurnaceFuelSlot net/minecraft/world/inventory/FurnaceFuelSlot +CL: net/minecraft/world/inventory/FurnaceMenu net/minecraft/world/inventory/FurnaceMenu +CL: net/minecraft/world/inventory/FurnaceResultSlot net/minecraft/world/inventory/FurnaceResultSlot +CL: net/minecraft/world/inventory/GrindstoneMenu net/minecraft/world/inventory/GrindstoneMenu +CL: net/minecraft/world/inventory/GrindstoneMenu$1 net/minecraft/world/inventory/GrindstoneMenu$1 +CL: net/minecraft/world/inventory/GrindstoneMenu$2 net/minecraft/world/inventory/GrindstoneMenu$2 +CL: net/minecraft/world/inventory/GrindstoneMenu$3 net/minecraft/world/inventory/GrindstoneMenu$3 +CL: net/minecraft/world/inventory/GrindstoneMenu$4 net/minecraft/world/inventory/GrindstoneMenu$4 +CL: net/minecraft/world/inventory/HopperMenu net/minecraft/world/inventory/HopperMenu +CL: net/minecraft/world/inventory/HorseInventoryMenu net/minecraft/world/inventory/HorseInventoryMenu +CL: net/minecraft/world/inventory/HorseInventoryMenu$1 net/minecraft/world/inventory/HorseInventoryMenu$1 +CL: net/minecraft/world/inventory/HorseInventoryMenu$2 net/minecraft/world/inventory/HorseInventoryMenu$2 +CL: net/minecraft/world/inventory/InventoryMenu net/minecraft/world/inventory/InventoryMenu +CL: net/minecraft/world/inventory/InventoryMenu$1 net/minecraft/world/inventory/InventoryMenu$1 +CL: net/minecraft/world/inventory/InventoryMenu$2 net/minecraft/world/inventory/InventoryMenu$2 +CL: net/minecraft/world/inventory/ItemCombinerMenu net/minecraft/world/inventory/ItemCombinerMenu +CL: net/minecraft/world/inventory/ItemCombinerMenu$1 net/minecraft/world/inventory/ItemCombinerMenu$1 +CL: net/minecraft/world/inventory/ItemCombinerMenu$2 net/minecraft/world/inventory/ItemCombinerMenu$2 +CL: net/minecraft/world/inventory/ItemCombinerMenu$3 net/minecraft/world/inventory/ItemCombinerMenu$3 +CL: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition +CL: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder +CL: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition +CL: net/minecraft/world/inventory/LecternMenu net/minecraft/world/inventory/LecternMenu +CL: net/minecraft/world/inventory/LecternMenu$1 net/minecraft/world/inventory/LecternMenu$1 +CL: net/minecraft/world/inventory/LoomMenu net/minecraft/world/inventory/LoomMenu +CL: net/minecraft/world/inventory/LoomMenu$1 net/minecraft/world/inventory/LoomMenu$1 +CL: net/minecraft/world/inventory/LoomMenu$2 net/minecraft/world/inventory/LoomMenu$2 +CL: net/minecraft/world/inventory/LoomMenu$3 net/minecraft/world/inventory/LoomMenu$3 +CL: net/minecraft/world/inventory/LoomMenu$4 net/minecraft/world/inventory/LoomMenu$4 +CL: net/minecraft/world/inventory/LoomMenu$5 net/minecraft/world/inventory/LoomMenu$5 +CL: net/minecraft/world/inventory/LoomMenu$6 net/minecraft/world/inventory/LoomMenu$6 +CL: net/minecraft/world/inventory/MenuConstructor net/minecraft/world/inventory/MenuConstructor +CL: net/minecraft/world/inventory/MenuType net/minecraft/world/inventory/MenuType +CL: net/minecraft/world/inventory/MenuType$MenuSupplier net/minecraft/world/inventory/MenuType$MenuSupplier +CL: net/minecraft/world/inventory/MerchantContainer net/minecraft/world/inventory/MerchantContainer +CL: net/minecraft/world/inventory/MerchantMenu net/minecraft/world/inventory/MerchantMenu +CL: net/minecraft/world/inventory/MerchantResultSlot net/minecraft/world/inventory/MerchantResultSlot +CL: net/minecraft/world/inventory/PlayerEnderChestContainer net/minecraft/world/inventory/PlayerEnderChestContainer +CL: net/minecraft/world/inventory/RecipeBookMenu net/minecraft/world/inventory/RecipeBookMenu +CL: net/minecraft/world/inventory/RecipeBookType net/minecraft/world/inventory/RecipeBookType +CL: net/minecraft/world/inventory/RecipeHolder net/minecraft/world/inventory/RecipeHolder +CL: net/minecraft/world/inventory/ResultContainer net/minecraft/world/inventory/ResultContainer +CL: net/minecraft/world/inventory/ResultSlot net/minecraft/world/inventory/ResultSlot +CL: net/minecraft/world/inventory/ShulkerBoxMenu net/minecraft/world/inventory/ShulkerBoxMenu +CL: net/minecraft/world/inventory/ShulkerBoxSlot net/minecraft/world/inventory/ShulkerBoxSlot +CL: net/minecraft/world/inventory/SimpleContainerData net/minecraft/world/inventory/SimpleContainerData +CL: net/minecraft/world/inventory/Slot net/minecraft/world/inventory/Slot +CL: net/minecraft/world/inventory/SmithingMenu net/minecraft/world/inventory/SmithingMenu +CL: net/minecraft/world/inventory/SmokerMenu net/minecraft/world/inventory/SmokerMenu +CL: net/minecraft/world/inventory/StackedContentsCompatible net/minecraft/world/inventory/StackedContentsCompatible +CL: net/minecraft/world/inventory/StonecutterMenu net/minecraft/world/inventory/StonecutterMenu +CL: net/minecraft/world/inventory/StonecutterMenu$1 net/minecraft/world/inventory/StonecutterMenu$1 +CL: net/minecraft/world/inventory/StonecutterMenu$2 net/minecraft/world/inventory/StonecutterMenu$2 +CL: net/minecraft/world/inventory/TransientCraftingContainer net/minecraft/world/inventory/TransientCraftingContainer +CL: net/minecraft/world/inventory/package-info net/minecraft/world/inventory/package-info +CL: net/minecraft/world/inventory/tooltip/BundleTooltip net/minecraft/world/inventory/tooltip/BundleTooltip +CL: net/minecraft/world/inventory/tooltip/TooltipComponent net/minecraft/world/inventory/tooltip/TooltipComponent +CL: net/minecraft/world/inventory/tooltip/package-info net/minecraft/world/inventory/tooltip/package-info +CL: net/minecraft/world/item/AdventureModeCheck net/minecraft/world/item/AdventureModeCheck +CL: net/minecraft/world/item/AirItem net/minecraft/world/item/AirItem +CL: net/minecraft/world/item/ArmorItem net/minecraft/world/item/ArmorItem +CL: net/minecraft/world/item/ArmorItem$1 net/minecraft/world/item/ArmorItem$1 +CL: net/minecraft/world/item/ArmorItem$Type net/minecraft/world/item/ArmorItem$Type +CL: net/minecraft/world/item/ArmorMaterial net/minecraft/world/item/ArmorMaterial +CL: net/minecraft/world/item/ArmorMaterials net/minecraft/world/item/ArmorMaterials +CL: net/minecraft/world/item/ArmorStandItem net/minecraft/world/item/ArmorStandItem +CL: net/minecraft/world/item/ArrowItem net/minecraft/world/item/ArrowItem +CL: net/minecraft/world/item/AxeItem net/minecraft/world/item/AxeItem +CL: net/minecraft/world/item/BannerItem net/minecraft/world/item/BannerItem +CL: net/minecraft/world/item/BannerPatternItem net/minecraft/world/item/BannerPatternItem +CL: net/minecraft/world/item/BedItem net/minecraft/world/item/BedItem +CL: net/minecraft/world/item/BlockItem net/minecraft/world/item/BlockItem +CL: net/minecraft/world/item/BoatItem net/minecraft/world/item/BoatItem +CL: net/minecraft/world/item/BoneMealItem net/minecraft/world/item/BoneMealItem +CL: net/minecraft/world/item/BookItem net/minecraft/world/item/BookItem +CL: net/minecraft/world/item/BottleItem net/minecraft/world/item/BottleItem +CL: net/minecraft/world/item/BowItem net/minecraft/world/item/BowItem +CL: net/minecraft/world/item/BowlFoodItem net/minecraft/world/item/BowlFoodItem +CL: net/minecraft/world/item/BrushItem net/minecraft/world/item/BrushItem +CL: net/minecraft/world/item/BrushItem$1 net/minecraft/world/item/BrushItem$1 +CL: net/minecraft/world/item/BrushItem$DustParticlesDelta net/minecraft/world/item/BrushItem$DustParticlesDelta +CL: net/minecraft/world/item/BucketItem net/minecraft/world/item/BucketItem +CL: net/minecraft/world/item/BundleItem net/minecraft/world/item/BundleItem +CL: net/minecraft/world/item/ChorusFruitItem net/minecraft/world/item/ChorusFruitItem +CL: net/minecraft/world/item/CompassItem net/minecraft/world/item/CompassItem +CL: net/minecraft/world/item/ComplexItem net/minecraft/world/item/ComplexItem +CL: net/minecraft/world/item/CreativeModeTab net/minecraft/world/item/CreativeModeTab +CL: net/minecraft/world/item/CreativeModeTab$1 net/minecraft/world/item/CreativeModeTab$1 +CL: net/minecraft/world/item/CreativeModeTab$Builder net/minecraft/world/item/CreativeModeTab$Builder +CL: net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator +CL: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder +CL: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters +CL: net/minecraft/world/item/CreativeModeTab$Output net/minecraft/world/item/CreativeModeTab$Output +CL: net/minecraft/world/item/CreativeModeTab$Row net/minecraft/world/item/CreativeModeTab$Row +CL: net/minecraft/world/item/CreativeModeTab$TabVisibility net/minecraft/world/item/CreativeModeTab$TabVisibility +CL: net/minecraft/world/item/CreativeModeTab$Type net/minecraft/world/item/CreativeModeTab$Type +CL: net/minecraft/world/item/CreativeModeTabs net/minecraft/world/item/CreativeModeTabs +CL: net/minecraft/world/item/CrossbowItem net/minecraft/world/item/CrossbowItem +CL: net/minecraft/world/item/DebugStickItem net/minecraft/world/item/DebugStickItem +CL: net/minecraft/world/item/DiggerItem net/minecraft/world/item/DiggerItem +CL: net/minecraft/world/item/DiscFragmentItem net/minecraft/world/item/DiscFragmentItem +CL: net/minecraft/world/item/DispensibleContainerItem net/minecraft/world/item/DispensibleContainerItem +CL: net/minecraft/world/item/DoubleHighBlockItem net/minecraft/world/item/DoubleHighBlockItem +CL: net/minecraft/world/item/DyeColor net/minecraft/world/item/DyeColor +CL: net/minecraft/world/item/DyeItem net/minecraft/world/item/DyeItem +CL: net/minecraft/world/item/DyeableArmorItem net/minecraft/world/item/DyeableArmorItem +CL: net/minecraft/world/item/DyeableHorseArmorItem net/minecraft/world/item/DyeableHorseArmorItem +CL: net/minecraft/world/item/DyeableLeatherItem net/minecraft/world/item/DyeableLeatherItem +CL: net/minecraft/world/item/EggItem net/minecraft/world/item/EggItem +CL: net/minecraft/world/item/ElytraItem net/minecraft/world/item/ElytraItem +CL: net/minecraft/world/item/EmptyMapItem net/minecraft/world/item/EmptyMapItem +CL: net/minecraft/world/item/EnchantedBookItem net/minecraft/world/item/EnchantedBookItem +CL: net/minecraft/world/item/EnchantedGoldenAppleItem net/minecraft/world/item/EnchantedGoldenAppleItem +CL: net/minecraft/world/item/EndCrystalItem net/minecraft/world/item/EndCrystalItem +CL: net/minecraft/world/item/EnderEyeItem net/minecraft/world/item/EnderEyeItem +CL: net/minecraft/world/item/EnderpearlItem net/minecraft/world/item/EnderpearlItem +CL: net/minecraft/world/item/Equipable net/minecraft/world/item/Equipable +CL: net/minecraft/world/item/ExperienceBottleItem net/minecraft/world/item/ExperienceBottleItem +CL: net/minecraft/world/item/FireChargeItem net/minecraft/world/item/FireChargeItem +CL: net/minecraft/world/item/FireworkRocketItem net/minecraft/world/item/FireworkRocketItem +CL: net/minecraft/world/item/FireworkRocketItem$Shape net/minecraft/world/item/FireworkRocketItem$Shape +CL: net/minecraft/world/item/FireworkStarItem net/minecraft/world/item/FireworkStarItem +CL: net/minecraft/world/item/FishingRodItem net/minecraft/world/item/FishingRodItem +CL: net/minecraft/world/item/FlintAndSteelItem net/minecraft/world/item/FlintAndSteelItem +CL: net/minecraft/world/item/FoodOnAStickItem net/minecraft/world/item/FoodOnAStickItem +CL: net/minecraft/world/item/GameMasterBlockItem net/minecraft/world/item/GameMasterBlockItem +CL: net/minecraft/world/item/GlowInkSacItem net/minecraft/world/item/GlowInkSacItem +CL: net/minecraft/world/item/HangingEntityItem net/minecraft/world/item/HangingEntityItem +CL: net/minecraft/world/item/HangingSignItem net/minecraft/world/item/HangingSignItem +CL: net/minecraft/world/item/HoeItem net/minecraft/world/item/HoeItem +CL: net/minecraft/world/item/HoneyBottleItem net/minecraft/world/item/HoneyBottleItem +CL: net/minecraft/world/item/HoneycombItem net/minecraft/world/item/HoneycombItem +CL: net/minecraft/world/item/HorseArmorItem net/minecraft/world/item/HorseArmorItem +CL: net/minecraft/world/item/InkSacItem net/minecraft/world/item/InkSacItem +CL: net/minecraft/world/item/Instrument net/minecraft/world/item/Instrument +CL: net/minecraft/world/item/InstrumentItem net/minecraft/world/item/InstrumentItem +CL: net/minecraft/world/item/Instruments net/minecraft/world/item/Instruments +CL: net/minecraft/world/item/Item net/minecraft/world/item/Item +CL: net/minecraft/world/item/Item$1 net/minecraft/world/item/Item$1 +CL: net/minecraft/world/item/Item$Properties net/minecraft/world/item/Item$Properties +CL: net/minecraft/world/item/ItemCooldowns net/minecraft/world/item/ItemCooldowns +CL: net/minecraft/world/item/ItemCooldowns$CooldownInstance net/minecraft/world/item/ItemCooldowns$CooldownInstance +CL: net/minecraft/world/item/ItemDisplayContext net/minecraft/world/item/ItemDisplayContext +CL: net/minecraft/world/item/ItemFrameItem net/minecraft/world/item/ItemFrameItem +CL: net/minecraft/world/item/ItemNameBlockItem net/minecraft/world/item/ItemNameBlockItem +CL: net/minecraft/world/item/ItemStack net/minecraft/world/item/ItemStack +CL: net/minecraft/world/item/ItemStack$TooltipPart net/minecraft/world/item/ItemStack$TooltipPart +CL: net/minecraft/world/item/ItemStackLinkedSet net/minecraft/world/item/ItemStackLinkedSet +CL: net/minecraft/world/item/ItemStackLinkedSet$1 net/minecraft/world/item/ItemStackLinkedSet$1 +CL: net/minecraft/world/item/ItemUtils net/minecraft/world/item/ItemUtils +CL: net/minecraft/world/item/Items net/minecraft/world/item/Items +CL: net/minecraft/world/item/KnowledgeBookItem net/minecraft/world/item/KnowledgeBookItem +CL: net/minecraft/world/item/LeadItem net/minecraft/world/item/LeadItem +CL: net/minecraft/world/item/LingeringPotionItem net/minecraft/world/item/LingeringPotionItem +CL: net/minecraft/world/item/MapItem net/minecraft/world/item/MapItem +CL: net/minecraft/world/item/MilkBucketItem net/minecraft/world/item/MilkBucketItem +CL: net/minecraft/world/item/MinecartItem net/minecraft/world/item/MinecartItem +CL: net/minecraft/world/item/MinecartItem$1 net/minecraft/world/item/MinecartItem$1 +CL: net/minecraft/world/item/MobBucketItem net/minecraft/world/item/MobBucketItem +CL: net/minecraft/world/item/NameTagItem net/minecraft/world/item/NameTagItem +CL: net/minecraft/world/item/PickaxeItem net/minecraft/world/item/PickaxeItem +CL: net/minecraft/world/item/PlaceOnWaterBlockItem net/minecraft/world/item/PlaceOnWaterBlockItem +CL: net/minecraft/world/item/PlayerHeadItem net/minecraft/world/item/PlayerHeadItem +CL: net/minecraft/world/item/PotionItem net/minecraft/world/item/PotionItem +CL: net/minecraft/world/item/ProjectileWeaponItem net/minecraft/world/item/ProjectileWeaponItem +CL: net/minecraft/world/item/Rarity net/minecraft/world/item/Rarity +CL: net/minecraft/world/item/RecordItem net/minecraft/world/item/RecordItem +CL: net/minecraft/world/item/SaddleItem net/minecraft/world/item/SaddleItem +CL: net/minecraft/world/item/ScaffoldingBlockItem net/minecraft/world/item/ScaffoldingBlockItem +CL: net/minecraft/world/item/ServerItemCooldowns net/minecraft/world/item/ServerItemCooldowns +CL: net/minecraft/world/item/ShearsItem net/minecraft/world/item/ShearsItem +CL: net/minecraft/world/item/ShieldItem net/minecraft/world/item/ShieldItem +CL: net/minecraft/world/item/ShovelItem net/minecraft/world/item/ShovelItem +CL: net/minecraft/world/item/SignApplicator net/minecraft/world/item/SignApplicator +CL: net/minecraft/world/item/SignItem net/minecraft/world/item/SignItem +CL: net/minecraft/world/item/SimpleFoiledItem net/minecraft/world/item/SimpleFoiledItem +CL: net/minecraft/world/item/SmithingTemplateItem net/minecraft/world/item/SmithingTemplateItem +CL: net/minecraft/world/item/SnowballItem net/minecraft/world/item/SnowballItem +CL: net/minecraft/world/item/SolidBucketItem net/minecraft/world/item/SolidBucketItem +CL: net/minecraft/world/item/SpawnEggItem net/minecraft/world/item/SpawnEggItem +CL: net/minecraft/world/item/SpectralArrowItem net/minecraft/world/item/SpectralArrowItem +CL: net/minecraft/world/item/SplashPotionItem net/minecraft/world/item/SplashPotionItem +CL: net/minecraft/world/item/SpyglassItem net/minecraft/world/item/SpyglassItem +CL: net/minecraft/world/item/StandingAndWallBlockItem net/minecraft/world/item/StandingAndWallBlockItem +CL: net/minecraft/world/item/SuspiciousStewItem net/minecraft/world/item/SuspiciousStewItem +CL: net/minecraft/world/item/SwordItem net/minecraft/world/item/SwordItem +CL: net/minecraft/world/item/ThrowablePotionItem net/minecraft/world/item/ThrowablePotionItem +CL: net/minecraft/world/item/Tier net/minecraft/world/item/Tier +CL: net/minecraft/world/item/TieredItem net/minecraft/world/item/TieredItem +CL: net/minecraft/world/item/Tiers net/minecraft/world/item/Tiers +CL: net/minecraft/world/item/TippedArrowItem net/minecraft/world/item/TippedArrowItem +CL: net/minecraft/world/item/TooltipFlag net/minecraft/world/item/TooltipFlag +CL: net/minecraft/world/item/TooltipFlag$Default net/minecraft/world/item/TooltipFlag$Default +CL: net/minecraft/world/item/TridentItem net/minecraft/world/item/TridentItem +CL: net/minecraft/world/item/UseAnim net/minecraft/world/item/UseAnim +CL: net/minecraft/world/item/Vanishable net/minecraft/world/item/Vanishable +CL: net/minecraft/world/item/WritableBookItem net/minecraft/world/item/WritableBookItem +CL: net/minecraft/world/item/WrittenBookItem net/minecraft/world/item/WrittenBookItem +CL: net/minecraft/world/item/alchemy/Potion net/minecraft/world/item/alchemy/Potion +CL: net/minecraft/world/item/alchemy/PotionBrewing net/minecraft/world/item/alchemy/PotionBrewing +CL: net/minecraft/world/item/alchemy/PotionBrewing$Mix net/minecraft/world/item/alchemy/PotionBrewing$Mix +CL: net/minecraft/world/item/alchemy/PotionUtils net/minecraft/world/item/alchemy/PotionUtils +CL: net/minecraft/world/item/alchemy/Potions net/minecraft/world/item/alchemy/Potions +CL: net/minecraft/world/item/alchemy/package-info net/minecraft/world/item/alchemy/package-info +CL: net/minecraft/world/item/armortrim/ArmorTrim net/minecraft/world/item/armortrim/ArmorTrim +CL: net/minecraft/world/item/armortrim/TrimMaterial net/minecraft/world/item/armortrim/TrimMaterial +CL: net/minecraft/world/item/armortrim/TrimMaterials net/minecraft/world/item/armortrim/TrimMaterials +CL: net/minecraft/world/item/armortrim/TrimPattern net/minecraft/world/item/armortrim/TrimPattern +CL: net/minecraft/world/item/armortrim/TrimPatterns net/minecraft/world/item/armortrim/TrimPatterns +CL: net/minecraft/world/item/armortrim/package-info net/minecraft/world/item/armortrim/package-info +CL: net/minecraft/world/item/context/BlockPlaceContext net/minecraft/world/item/context/BlockPlaceContext +CL: net/minecraft/world/item/context/DirectionalPlaceContext net/minecraft/world/item/context/DirectionalPlaceContext +CL: net/minecraft/world/item/context/DirectionalPlaceContext$1 net/minecraft/world/item/context/DirectionalPlaceContext$1 +CL: net/minecraft/world/item/context/UseOnContext net/minecraft/world/item/context/UseOnContext +CL: net/minecraft/world/item/context/package-info net/minecraft/world/item/context/package-info +CL: net/minecraft/world/item/crafting/AbstractCookingRecipe net/minecraft/world/item/crafting/AbstractCookingRecipe +CL: net/minecraft/world/item/crafting/ArmorDyeRecipe net/minecraft/world/item/crafting/ArmorDyeRecipe +CL: net/minecraft/world/item/crafting/BannerDuplicateRecipe net/minecraft/world/item/crafting/BannerDuplicateRecipe +CL: net/minecraft/world/item/crafting/BlastingRecipe net/minecraft/world/item/crafting/BlastingRecipe +CL: net/minecraft/world/item/crafting/BookCloningRecipe net/minecraft/world/item/crafting/BookCloningRecipe +CL: net/minecraft/world/item/crafting/CampfireCookingRecipe net/minecraft/world/item/crafting/CampfireCookingRecipe +CL: net/minecraft/world/item/crafting/CookingBookCategory net/minecraft/world/item/crafting/CookingBookCategory +CL: net/minecraft/world/item/crafting/CraftingBookCategory net/minecraft/world/item/crafting/CraftingBookCategory +CL: net/minecraft/world/item/crafting/CraftingRecipe net/minecraft/world/item/crafting/CraftingRecipe +CL: net/minecraft/world/item/crafting/CustomRecipe net/minecraft/world/item/crafting/CustomRecipe +CL: net/minecraft/world/item/crafting/DecoratedPotRecipe net/minecraft/world/item/crafting/DecoratedPotRecipe +CL: net/minecraft/world/item/crafting/FireworkRocketRecipe net/minecraft/world/item/crafting/FireworkRocketRecipe +CL: net/minecraft/world/item/crafting/FireworkStarFadeRecipe net/minecraft/world/item/crafting/FireworkStarFadeRecipe +CL: net/minecraft/world/item/crafting/FireworkStarRecipe net/minecraft/world/item/crafting/FireworkStarRecipe +CL: net/minecraft/world/item/crafting/Ingredient net/minecraft/world/item/crafting/Ingredient +CL: net/minecraft/world/item/crafting/Ingredient$ItemValue net/minecraft/world/item/crafting/Ingredient$ItemValue +CL: net/minecraft/world/item/crafting/Ingredient$TagValue net/minecraft/world/item/crafting/Ingredient$TagValue +CL: net/minecraft/world/item/crafting/Ingredient$Value net/minecraft/world/item/crafting/Ingredient$Value +CL: net/minecraft/world/item/crafting/MapCloningRecipe net/minecraft/world/item/crafting/MapCloningRecipe +CL: net/minecraft/world/item/crafting/MapExtendingRecipe net/minecraft/world/item/crafting/MapExtendingRecipe +CL: net/minecraft/world/item/crafting/Recipe net/minecraft/world/item/crafting/Recipe +CL: net/minecraft/world/item/crafting/RecipeManager net/minecraft/world/item/crafting/RecipeManager +CL: net/minecraft/world/item/crafting/RecipeManager$1 net/minecraft/world/item/crafting/RecipeManager$1 +CL: net/minecraft/world/item/crafting/RecipeManager$CachedCheck net/minecraft/world/item/crafting/RecipeManager$CachedCheck +CL: net/minecraft/world/item/crafting/RecipeSerializer net/minecraft/world/item/crafting/RecipeSerializer +CL: net/minecraft/world/item/crafting/RecipeType net/minecraft/world/item/crafting/RecipeType +CL: net/minecraft/world/item/crafting/RecipeType$1 net/minecraft/world/item/crafting/RecipeType$1 +CL: net/minecraft/world/item/crafting/RepairItemRecipe net/minecraft/world/item/crafting/RepairItemRecipe +CL: net/minecraft/world/item/crafting/ShapedRecipe net/minecraft/world/item/crafting/ShapedRecipe +CL: net/minecraft/world/item/crafting/ShapedRecipe$Serializer net/minecraft/world/item/crafting/ShapedRecipe$Serializer +CL: net/minecraft/world/item/crafting/ShapelessRecipe net/minecraft/world/item/crafting/ShapelessRecipe +CL: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer net/minecraft/world/item/crafting/ShapelessRecipe$Serializer +CL: net/minecraft/world/item/crafting/ShieldDecorationRecipe net/minecraft/world/item/crafting/ShieldDecorationRecipe +CL: net/minecraft/world/item/crafting/ShulkerBoxColoring net/minecraft/world/item/crafting/ShulkerBoxColoring +CL: net/minecraft/world/item/crafting/SimpleCookingSerializer net/minecraft/world/item/crafting/SimpleCookingSerializer +CL: net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker +CL: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer +CL: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory +CL: net/minecraft/world/item/crafting/SingleItemRecipe net/minecraft/world/item/crafting/SingleItemRecipe +CL: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer net/minecraft/world/item/crafting/SingleItemRecipe$Serializer +CL: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker +CL: net/minecraft/world/item/crafting/SmeltingRecipe net/minecraft/world/item/crafting/SmeltingRecipe +CL: net/minecraft/world/item/crafting/SmithingRecipe net/minecraft/world/item/crafting/SmithingRecipe +CL: net/minecraft/world/item/crafting/SmithingTransformRecipe net/minecraft/world/item/crafting/SmithingTransformRecipe +CL: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer +CL: net/minecraft/world/item/crafting/SmithingTrimRecipe net/minecraft/world/item/crafting/SmithingTrimRecipe +CL: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer +CL: net/minecraft/world/item/crafting/SmokingRecipe net/minecraft/world/item/crafting/SmokingRecipe +CL: net/minecraft/world/item/crafting/StonecutterRecipe net/minecraft/world/item/crafting/StonecutterRecipe +CL: net/minecraft/world/item/crafting/SuspiciousStewRecipe net/minecraft/world/item/crafting/SuspiciousStewRecipe +CL: net/minecraft/world/item/crafting/TippedArrowRecipe net/minecraft/world/item/crafting/TippedArrowRecipe +CL: net/minecraft/world/item/crafting/package-info net/minecraft/world/item/crafting/package-info +CL: net/minecraft/world/item/enchantment/ArrowDamageEnchantment net/minecraft/world/item/enchantment/ArrowDamageEnchantment +CL: net/minecraft/world/item/enchantment/ArrowFireEnchantment net/minecraft/world/item/enchantment/ArrowFireEnchantment +CL: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment +CL: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment +CL: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment net/minecraft/world/item/enchantment/ArrowPiercingEnchantment +CL: net/minecraft/world/item/enchantment/BindingCurseEnchantment net/minecraft/world/item/enchantment/BindingCurseEnchantment +CL: net/minecraft/world/item/enchantment/DamageEnchantment net/minecraft/world/item/enchantment/DamageEnchantment +CL: net/minecraft/world/item/enchantment/DigDurabilityEnchantment net/minecraft/world/item/enchantment/DigDurabilityEnchantment +CL: net/minecraft/world/item/enchantment/DiggingEnchantment net/minecraft/world/item/enchantment/DiggingEnchantment +CL: net/minecraft/world/item/enchantment/Enchantment net/minecraft/world/item/enchantment/Enchantment +CL: net/minecraft/world/item/enchantment/Enchantment$Rarity net/minecraft/world/item/enchantment/Enchantment$Rarity +CL: net/minecraft/world/item/enchantment/EnchantmentCategory net/minecraft/world/item/enchantment/EnchantmentCategory +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$1 net/minecraft/world/item/enchantment/EnchantmentCategory$1 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$10 net/minecraft/world/item/enchantment/EnchantmentCategory$10 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$11 net/minecraft/world/item/enchantment/EnchantmentCategory$11 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$12 net/minecraft/world/item/enchantment/EnchantmentCategory$12 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$13 net/minecraft/world/item/enchantment/EnchantmentCategory$13 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$14 net/minecraft/world/item/enchantment/EnchantmentCategory$14 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$2 net/minecraft/world/item/enchantment/EnchantmentCategory$2 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$3 net/minecraft/world/item/enchantment/EnchantmentCategory$3 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$4 net/minecraft/world/item/enchantment/EnchantmentCategory$4 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$5 net/minecraft/world/item/enchantment/EnchantmentCategory$5 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$6 net/minecraft/world/item/enchantment/EnchantmentCategory$6 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$7 net/minecraft/world/item/enchantment/EnchantmentCategory$7 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$8 net/minecraft/world/item/enchantment/EnchantmentCategory$8 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$9 net/minecraft/world/item/enchantment/EnchantmentCategory$9 +CL: net/minecraft/world/item/enchantment/EnchantmentHelper net/minecraft/world/item/enchantment/EnchantmentHelper +CL: net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor +CL: net/minecraft/world/item/enchantment/EnchantmentInstance net/minecraft/world/item/enchantment/EnchantmentInstance +CL: net/minecraft/world/item/enchantment/Enchantments net/minecraft/world/item/enchantment/Enchantments +CL: net/minecraft/world/item/enchantment/FireAspectEnchantment net/minecraft/world/item/enchantment/FireAspectEnchantment +CL: net/minecraft/world/item/enchantment/FishingSpeedEnchantment net/minecraft/world/item/enchantment/FishingSpeedEnchantment +CL: net/minecraft/world/item/enchantment/FrostWalkerEnchantment net/minecraft/world/item/enchantment/FrostWalkerEnchantment +CL: net/minecraft/world/item/enchantment/KnockbackEnchantment net/minecraft/world/item/enchantment/KnockbackEnchantment +CL: net/minecraft/world/item/enchantment/LootBonusEnchantment net/minecraft/world/item/enchantment/LootBonusEnchantment +CL: net/minecraft/world/item/enchantment/MendingEnchantment net/minecraft/world/item/enchantment/MendingEnchantment +CL: net/minecraft/world/item/enchantment/MultiShotEnchantment net/minecraft/world/item/enchantment/MultiShotEnchantment +CL: net/minecraft/world/item/enchantment/OxygenEnchantment net/minecraft/world/item/enchantment/OxygenEnchantment +CL: net/minecraft/world/item/enchantment/ProtectionEnchantment net/minecraft/world/item/enchantment/ProtectionEnchantment +CL: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type net/minecraft/world/item/enchantment/ProtectionEnchantment$Type +CL: net/minecraft/world/item/enchantment/QuickChargeEnchantment net/minecraft/world/item/enchantment/QuickChargeEnchantment +CL: net/minecraft/world/item/enchantment/SoulSpeedEnchantment net/minecraft/world/item/enchantment/SoulSpeedEnchantment +CL: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment net/minecraft/world/item/enchantment/SweepingEdgeEnchantment +CL: net/minecraft/world/item/enchantment/SwiftSneakEnchantment net/minecraft/world/item/enchantment/SwiftSneakEnchantment +CL: net/minecraft/world/item/enchantment/ThornsEnchantment net/minecraft/world/item/enchantment/ThornsEnchantment +CL: net/minecraft/world/item/enchantment/TridentChannelingEnchantment net/minecraft/world/item/enchantment/TridentChannelingEnchantment +CL: net/minecraft/world/item/enchantment/TridentImpalerEnchantment net/minecraft/world/item/enchantment/TridentImpalerEnchantment +CL: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment +CL: net/minecraft/world/item/enchantment/TridentRiptideEnchantment net/minecraft/world/item/enchantment/TridentRiptideEnchantment +CL: net/minecraft/world/item/enchantment/UntouchingEnchantment net/minecraft/world/item/enchantment/UntouchingEnchantment +CL: net/minecraft/world/item/enchantment/VanishingCurseEnchantment net/minecraft/world/item/enchantment/VanishingCurseEnchantment +CL: net/minecraft/world/item/enchantment/WaterWalkerEnchantment net/minecraft/world/item/enchantment/WaterWalkerEnchantment +CL: net/minecraft/world/item/enchantment/WaterWorkerEnchantment net/minecraft/world/item/enchantment/WaterWorkerEnchantment +CL: net/minecraft/world/item/enchantment/package-info net/minecraft/world/item/enchantment/package-info +CL: net/minecraft/world/item/package-info net/minecraft/world/item/package-info +CL: net/minecraft/world/item/trading/Merchant net/minecraft/world/item/trading/Merchant +CL: net/minecraft/world/item/trading/MerchantOffer net/minecraft/world/item/trading/MerchantOffer +CL: net/minecraft/world/item/trading/MerchantOffers net/minecraft/world/item/trading/MerchantOffers +CL: net/minecraft/world/item/trading/package-info net/minecraft/world/item/trading/package-info +CL: net/minecraft/world/level/BaseCommandBlock net/minecraft/world/level/BaseCommandBlock +CL: net/minecraft/world/level/BaseSpawner net/minecraft/world/level/BaseSpawner +CL: net/minecraft/world/level/BlockAndTintGetter net/minecraft/world/level/BlockAndTintGetter +CL: net/minecraft/world/level/BlockCollisions net/minecraft/world/level/BlockCollisions +CL: net/minecraft/world/level/BlockEventData net/minecraft/world/level/BlockEventData +CL: net/minecraft/world/level/BlockGetter net/minecraft/world/level/BlockGetter +CL: net/minecraft/world/level/ChunkPos net/minecraft/world/level/ChunkPos +CL: net/minecraft/world/level/ChunkPos$1 net/minecraft/world/level/ChunkPos$1 +CL: net/minecraft/world/level/ClipBlockStateContext net/minecraft/world/level/ClipBlockStateContext +CL: net/minecraft/world/level/ClipContext net/minecraft/world/level/ClipContext +CL: net/minecraft/world/level/ClipContext$Block net/minecraft/world/level/ClipContext$Block +CL: net/minecraft/world/level/ClipContext$Fluid net/minecraft/world/level/ClipContext$Fluid +CL: net/minecraft/world/level/ClipContext$ShapeGetter net/minecraft/world/level/ClipContext$ShapeGetter +CL: net/minecraft/world/level/CollisionGetter net/minecraft/world/level/CollisionGetter +CL: net/minecraft/world/level/ColorResolver net/minecraft/world/level/ColorResolver +CL: net/minecraft/world/level/CommonLevelAccessor net/minecraft/world/level/CommonLevelAccessor +CL: net/minecraft/world/level/CustomSpawner net/minecraft/world/level/CustomSpawner +CL: net/minecraft/world/level/DataPackConfig net/minecraft/world/level/DataPackConfig +CL: net/minecraft/world/level/EmptyBlockGetter net/minecraft/world/level/EmptyBlockGetter +CL: net/minecraft/world/level/EntityBasedExplosionDamageCalculator net/minecraft/world/level/EntityBasedExplosionDamageCalculator +CL: net/minecraft/world/level/EntityGetter net/minecraft/world/level/EntityGetter +CL: net/minecraft/world/level/Explosion net/minecraft/world/level/Explosion +CL: net/minecraft/world/level/Explosion$BlockInteraction net/minecraft/world/level/Explosion$BlockInteraction +CL: net/minecraft/world/level/ExplosionDamageCalculator net/minecraft/world/level/ExplosionDamageCalculator +CL: net/minecraft/world/level/FoliageColor net/minecraft/world/level/FoliageColor +CL: net/minecraft/world/level/ForcedChunksSavedData net/minecraft/world/level/ForcedChunksSavedData +CL: net/minecraft/world/level/GameRules net/minecraft/world/level/GameRules +CL: net/minecraft/world/level/GameRules$BooleanValue net/minecraft/world/level/GameRules$BooleanValue +CL: net/minecraft/world/level/GameRules$Category net/minecraft/world/level/GameRules$Category +CL: net/minecraft/world/level/GameRules$GameRuleTypeVisitor net/minecraft/world/level/GameRules$GameRuleTypeVisitor +CL: net/minecraft/world/level/GameRules$IntegerValue net/minecraft/world/level/GameRules$IntegerValue +CL: net/minecraft/world/level/GameRules$Key net/minecraft/world/level/GameRules$Key +CL: net/minecraft/world/level/GameRules$Type net/minecraft/world/level/GameRules$Type +CL: net/minecraft/world/level/GameRules$Value net/minecraft/world/level/GameRules$Value +CL: net/minecraft/world/level/GameRules$VisitorCaller net/minecraft/world/level/GameRules$VisitorCaller +CL: net/minecraft/world/level/GameType net/minecraft/world/level/GameType +CL: net/minecraft/world/level/GrassColor net/minecraft/world/level/GrassColor +CL: net/minecraft/world/level/ItemLike net/minecraft/world/level/ItemLike +CL: net/minecraft/world/level/Level net/minecraft/world/level/Level +CL: net/minecraft/world/level/Level$1 net/minecraft/world/level/Level$1 +CL: net/minecraft/world/level/Level$2 net/minecraft/world/level/Level$2 +CL: net/minecraft/world/level/Level$ExplosionInteraction net/minecraft/world/level/Level$ExplosionInteraction +CL: net/minecraft/world/level/LevelAccessor net/minecraft/world/level/LevelAccessor +CL: net/minecraft/world/level/LevelHeightAccessor net/minecraft/world/level/LevelHeightAccessor +CL: net/minecraft/world/level/LevelHeightAccessor$1 net/minecraft/world/level/LevelHeightAccessor$1 +CL: net/minecraft/world/level/LevelReader net/minecraft/world/level/LevelReader +CL: net/minecraft/world/level/LevelSettings net/minecraft/world/level/LevelSettings +CL: net/minecraft/world/level/LevelSimulatedRW net/minecraft/world/level/LevelSimulatedRW +CL: net/minecraft/world/level/LevelSimulatedReader net/minecraft/world/level/LevelSimulatedReader +CL: net/minecraft/world/level/LevelTimeAccess net/minecraft/world/level/LevelTimeAccess +CL: net/minecraft/world/level/LevelWriter net/minecraft/world/level/LevelWriter +CL: net/minecraft/world/level/LightLayer net/minecraft/world/level/LightLayer +CL: net/minecraft/world/level/LocalMobCapCalculator net/minecraft/world/level/LocalMobCapCalculator +CL: net/minecraft/world/level/LocalMobCapCalculator$MobCounts net/minecraft/world/level/LocalMobCapCalculator$MobCounts +CL: net/minecraft/world/level/NaturalSpawner net/minecraft/world/level/NaturalSpawner +CL: net/minecraft/world/level/NaturalSpawner$1 net/minecraft/world/level/NaturalSpawner$1 +CL: net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback +CL: net/minecraft/world/level/NaturalSpawner$ChunkGetter net/minecraft/world/level/NaturalSpawner$ChunkGetter +CL: net/minecraft/world/level/NaturalSpawner$SpawnPredicate net/minecraft/world/level/NaturalSpawner$SpawnPredicate +CL: net/minecraft/world/level/NaturalSpawner$SpawnState net/minecraft/world/level/NaturalSpawner$SpawnState +CL: net/minecraft/world/level/NoiseColumn net/minecraft/world/level/NoiseColumn +CL: net/minecraft/world/level/PathNavigationRegion net/minecraft/world/level/PathNavigationRegion +CL: net/minecraft/world/level/PotentialCalculator net/minecraft/world/level/PotentialCalculator +CL: net/minecraft/world/level/PotentialCalculator$PointCharge net/minecraft/world/level/PotentialCalculator$PointCharge +CL: net/minecraft/world/level/ServerLevelAccessor net/minecraft/world/level/ServerLevelAccessor +CL: net/minecraft/world/level/SignalGetter net/minecraft/world/level/SignalGetter +CL: net/minecraft/world/level/SpawnData net/minecraft/world/level/SpawnData +CL: net/minecraft/world/level/SpawnData$CustomSpawnRules net/minecraft/world/level/SpawnData$CustomSpawnRules +CL: net/minecraft/world/level/StructureManager net/minecraft/world/level/StructureManager +CL: net/minecraft/world/level/WorldDataConfiguration net/minecraft/world/level/WorldDataConfiguration +CL: net/minecraft/world/level/WorldGenLevel net/minecraft/world/level/WorldGenLevel +CL: net/minecraft/world/level/biome/AmbientAdditionsSettings net/minecraft/world/level/biome/AmbientAdditionsSettings +CL: net/minecraft/world/level/biome/AmbientMoodSettings net/minecraft/world/level/biome/AmbientMoodSettings +CL: net/minecraft/world/level/biome/AmbientParticleSettings net/minecraft/world/level/biome/AmbientParticleSettings +CL: net/minecraft/world/level/biome/Biome net/minecraft/world/level/biome/Biome +CL: net/minecraft/world/level/biome/Biome$1 net/minecraft/world/level/biome/Biome$1 +CL: net/minecraft/world/level/biome/Biome$BiomeBuilder net/minecraft/world/level/biome/Biome$BiomeBuilder +CL: net/minecraft/world/level/biome/Biome$ClimateSettings net/minecraft/world/level/biome/Biome$ClimateSettings +CL: net/minecraft/world/level/biome/Biome$Precipitation net/minecraft/world/level/biome/Biome$Precipitation +CL: net/minecraft/world/level/biome/Biome$TemperatureModifier net/minecraft/world/level/biome/Biome$TemperatureModifier +CL: net/minecraft/world/level/biome/Biome$TemperatureModifier$1 net/minecraft/world/level/biome/Biome$TemperatureModifier$1 +CL: net/minecraft/world/level/biome/Biome$TemperatureModifier$2 net/minecraft/world/level/biome/Biome$TemperatureModifier$2 +CL: net/minecraft/world/level/biome/BiomeGenerationSettings net/minecraft/world/level/biome/BiomeGenerationSettings +CL: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder net/minecraft/world/level/biome/BiomeGenerationSettings$Builder +CL: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder +CL: net/minecraft/world/level/biome/BiomeManager net/minecraft/world/level/biome/BiomeManager +CL: net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource +CL: net/minecraft/world/level/biome/BiomeResolver net/minecraft/world/level/biome/BiomeResolver +CL: net/minecraft/world/level/biome/BiomeSource net/minecraft/world/level/biome/BiomeSource +CL: net/minecraft/world/level/biome/BiomeSources net/minecraft/world/level/biome/BiomeSources +CL: net/minecraft/world/level/biome/BiomeSpecialEffects net/minecraft/world/level/biome/BiomeSpecialEffects +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder net/minecraft/world/level/biome/BiomeSpecialEffects$Builder +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1 +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2 +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3 +CL: net/minecraft/world/level/biome/Biomes net/minecraft/world/level/biome/Biomes +CL: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource net/minecraft/world/level/biome/CheckerboardColumnBiomeSource +CL: net/minecraft/world/level/biome/Climate net/minecraft/world/level/biome/Climate +CL: net/minecraft/world/level/biome/Climate$DistanceMetric net/minecraft/world/level/biome/Climate$DistanceMetric +CL: net/minecraft/world/level/biome/Climate$Parameter net/minecraft/world/level/biome/Climate$Parameter +CL: net/minecraft/world/level/biome/Climate$ParameterList net/minecraft/world/level/biome/Climate$ParameterList +CL: net/minecraft/world/level/biome/Climate$ParameterPoint net/minecraft/world/level/biome/Climate$ParameterPoint +CL: net/minecraft/world/level/biome/Climate$RTree net/minecraft/world/level/biome/Climate$RTree +CL: net/minecraft/world/level/biome/Climate$RTree$Leaf net/minecraft/world/level/biome/Climate$RTree$Leaf +CL: net/minecraft/world/level/biome/Climate$RTree$Node net/minecraft/world/level/biome/Climate$RTree$Node +CL: net/minecraft/world/level/biome/Climate$RTree$SubTree net/minecraft/world/level/biome/Climate$RTree$SubTree +CL: net/minecraft/world/level/biome/Climate$Sampler net/minecraft/world/level/biome/Climate$Sampler +CL: net/minecraft/world/level/biome/Climate$SpawnFinder net/minecraft/world/level/biome/Climate$SpawnFinder +CL: net/minecraft/world/level/biome/Climate$SpawnFinder$Result net/minecraft/world/level/biome/Climate$SpawnFinder$Result +CL: net/minecraft/world/level/biome/Climate$TargetPoint net/minecraft/world/level/biome/Climate$TargetPoint +CL: net/minecraft/world/level/biome/FeatureSorter net/minecraft/world/level/biome/FeatureSorter +CL: net/minecraft/world/level/biome/FeatureSorter$1FeatureData net/minecraft/world/level/biome/FeatureSorter$1FeatureData +CL: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData net/minecraft/world/level/biome/FeatureSorter$StepFeatureData +CL: net/minecraft/world/level/biome/FixedBiomeSource net/minecraft/world/level/biome/FixedBiomeSource +CL: net/minecraft/world/level/biome/MobSpawnSettings net/minecraft/world/level/biome/MobSpawnSettings +CL: net/minecraft/world/level/biome/MobSpawnSettings$Builder net/minecraft/world/level/biome/MobSpawnSettings$Builder +CL: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost +CL: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSource net/minecraft/world/level/biome/MultiNoiseBiomeSource +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1 net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1 +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2 net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2 +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists +CL: net/minecraft/world/level/biome/OverworldBiomeBuilder net/minecraft/world/level/biome/OverworldBiomeBuilder +CL: net/minecraft/world/level/biome/TheEndBiomeSource net/minecraft/world/level/biome/TheEndBiomeSource +CL: net/minecraft/world/level/biome/package-info net/minecraft/world/level/biome/package-info +CL: net/minecraft/world/level/block/AbstractBannerBlock net/minecraft/world/level/block/AbstractBannerBlock +CL: net/minecraft/world/level/block/AbstractCandleBlock net/minecraft/world/level/block/AbstractCandleBlock +CL: net/minecraft/world/level/block/AbstractCauldronBlock net/minecraft/world/level/block/AbstractCauldronBlock +CL: net/minecraft/world/level/block/AbstractChestBlock net/minecraft/world/level/block/AbstractChestBlock +CL: net/minecraft/world/level/block/AbstractFurnaceBlock net/minecraft/world/level/block/AbstractFurnaceBlock +CL: net/minecraft/world/level/block/AbstractGlassBlock net/minecraft/world/level/block/AbstractGlassBlock +CL: net/minecraft/world/level/block/AbstractSkullBlock net/minecraft/world/level/block/AbstractSkullBlock +CL: net/minecraft/world/level/block/AirBlock net/minecraft/world/level/block/AirBlock +CL: net/minecraft/world/level/block/AmethystBlock net/minecraft/world/level/block/AmethystBlock +CL: net/minecraft/world/level/block/AmethystClusterBlock net/minecraft/world/level/block/AmethystClusterBlock +CL: net/minecraft/world/level/block/AmethystClusterBlock$1 net/minecraft/world/level/block/AmethystClusterBlock$1 +CL: net/minecraft/world/level/block/AnvilBlock net/minecraft/world/level/block/AnvilBlock +CL: net/minecraft/world/level/block/AttachedStemBlock net/minecraft/world/level/block/AttachedStemBlock +CL: net/minecraft/world/level/block/AzaleaBlock net/minecraft/world/level/block/AzaleaBlock +CL: net/minecraft/world/level/block/BambooSaplingBlock net/minecraft/world/level/block/BambooSaplingBlock +CL: net/minecraft/world/level/block/BambooStalkBlock net/minecraft/world/level/block/BambooStalkBlock +CL: net/minecraft/world/level/block/BannerBlock net/minecraft/world/level/block/BannerBlock +CL: net/minecraft/world/level/block/BarrelBlock net/minecraft/world/level/block/BarrelBlock +CL: net/minecraft/world/level/block/BarrierBlock net/minecraft/world/level/block/BarrierBlock +CL: net/minecraft/world/level/block/BaseCoralFanBlock net/minecraft/world/level/block/BaseCoralFanBlock +CL: net/minecraft/world/level/block/BaseCoralPlantBlock net/minecraft/world/level/block/BaseCoralPlantBlock +CL: net/minecraft/world/level/block/BaseCoralPlantTypeBlock net/minecraft/world/level/block/BaseCoralPlantTypeBlock +CL: net/minecraft/world/level/block/BaseCoralWallFanBlock net/minecraft/world/level/block/BaseCoralWallFanBlock +CL: net/minecraft/world/level/block/BaseEntityBlock net/minecraft/world/level/block/BaseEntityBlock +CL: net/minecraft/world/level/block/BaseFireBlock net/minecraft/world/level/block/BaseFireBlock +CL: net/minecraft/world/level/block/BasePressurePlateBlock net/minecraft/world/level/block/BasePressurePlateBlock +CL: net/minecraft/world/level/block/BaseRailBlock net/minecraft/world/level/block/BaseRailBlock +CL: net/minecraft/world/level/block/BaseRailBlock$1 net/minecraft/world/level/block/BaseRailBlock$1 +CL: net/minecraft/world/level/block/BeaconBeamBlock net/minecraft/world/level/block/BeaconBeamBlock +CL: net/minecraft/world/level/block/BeaconBlock net/minecraft/world/level/block/BeaconBlock +CL: net/minecraft/world/level/block/BedBlock net/minecraft/world/level/block/BedBlock +CL: net/minecraft/world/level/block/BedBlock$1 net/minecraft/world/level/block/BedBlock$1 +CL: net/minecraft/world/level/block/BeehiveBlock net/minecraft/world/level/block/BeehiveBlock +CL: net/minecraft/world/level/block/BeetrootBlock net/minecraft/world/level/block/BeetrootBlock +CL: net/minecraft/world/level/block/BellBlock net/minecraft/world/level/block/BellBlock +CL: net/minecraft/world/level/block/BellBlock$1 net/minecraft/world/level/block/BellBlock$1 +CL: net/minecraft/world/level/block/BigDripleafBlock net/minecraft/world/level/block/BigDripleafBlock +CL: net/minecraft/world/level/block/BigDripleafStemBlock net/minecraft/world/level/block/BigDripleafStemBlock +CL: net/minecraft/world/level/block/BigDripleafStemBlock$1 net/minecraft/world/level/block/BigDripleafStemBlock$1 +CL: net/minecraft/world/level/block/BlastFurnaceBlock net/minecraft/world/level/block/BlastFurnaceBlock +CL: net/minecraft/world/level/block/Block net/minecraft/world/level/block/Block +CL: net/minecraft/world/level/block/Block$1 net/minecraft/world/level/block/Block$1 +CL: net/minecraft/world/level/block/Block$2 net/minecraft/world/level/block/Block$2 +CL: net/minecraft/world/level/block/Block$BlockStatePairKey net/minecraft/world/level/block/Block$BlockStatePairKey +CL: net/minecraft/world/level/block/Blocks net/minecraft/world/level/block/Blocks +CL: net/minecraft/world/level/block/BonemealableBlock net/minecraft/world/level/block/BonemealableBlock +CL: net/minecraft/world/level/block/BrewingStandBlock net/minecraft/world/level/block/BrewingStandBlock +CL: net/minecraft/world/level/block/BrushableBlock net/minecraft/world/level/block/BrushableBlock +CL: net/minecraft/world/level/block/BubbleColumnBlock net/minecraft/world/level/block/BubbleColumnBlock +CL: net/minecraft/world/level/block/BucketPickup net/minecraft/world/level/block/BucketPickup +CL: net/minecraft/world/level/block/BuddingAmethystBlock net/minecraft/world/level/block/BuddingAmethystBlock +CL: net/minecraft/world/level/block/BushBlock net/minecraft/world/level/block/BushBlock +CL: net/minecraft/world/level/block/ButtonBlock net/minecraft/world/level/block/ButtonBlock +CL: net/minecraft/world/level/block/ButtonBlock$1 net/minecraft/world/level/block/ButtonBlock$1 +CL: net/minecraft/world/level/block/CactusBlock net/minecraft/world/level/block/CactusBlock +CL: net/minecraft/world/level/block/CakeBlock net/minecraft/world/level/block/CakeBlock +CL: net/minecraft/world/level/block/CalibratedSculkSensorBlock net/minecraft/world/level/block/CalibratedSculkSensorBlock +CL: net/minecraft/world/level/block/CampfireBlock net/minecraft/world/level/block/CampfireBlock +CL: net/minecraft/world/level/block/CandleBlock net/minecraft/world/level/block/CandleBlock +CL: net/minecraft/world/level/block/CandleCakeBlock net/minecraft/world/level/block/CandleCakeBlock +CL: net/minecraft/world/level/block/CarpetBlock net/minecraft/world/level/block/CarpetBlock +CL: net/minecraft/world/level/block/CarrotBlock net/minecraft/world/level/block/CarrotBlock +CL: net/minecraft/world/level/block/CartographyTableBlock net/minecraft/world/level/block/CartographyTableBlock +CL: net/minecraft/world/level/block/CarvedPumpkinBlock net/minecraft/world/level/block/CarvedPumpkinBlock +CL: net/minecraft/world/level/block/CauldronBlock net/minecraft/world/level/block/CauldronBlock +CL: net/minecraft/world/level/block/CaveVines net/minecraft/world/level/block/CaveVines +CL: net/minecraft/world/level/block/CaveVinesBlock net/minecraft/world/level/block/CaveVinesBlock +CL: net/minecraft/world/level/block/CaveVinesPlantBlock net/minecraft/world/level/block/CaveVinesPlantBlock +CL: net/minecraft/world/level/block/CeilingHangingSignBlock net/minecraft/world/level/block/CeilingHangingSignBlock +CL: net/minecraft/world/level/block/ChainBlock net/minecraft/world/level/block/ChainBlock +CL: net/minecraft/world/level/block/ChainBlock$1 net/minecraft/world/level/block/ChainBlock$1 +CL: net/minecraft/world/level/block/ChangeOverTimeBlock net/minecraft/world/level/block/ChangeOverTimeBlock +CL: net/minecraft/world/level/block/CherryLeavesBlock net/minecraft/world/level/block/CherryLeavesBlock +CL: net/minecraft/world/level/block/ChestBlock net/minecraft/world/level/block/ChestBlock +CL: net/minecraft/world/level/block/ChestBlock$1 net/minecraft/world/level/block/ChestBlock$1 +CL: net/minecraft/world/level/block/ChestBlock$2 net/minecraft/world/level/block/ChestBlock$2 +CL: net/minecraft/world/level/block/ChestBlock$2$1 net/minecraft/world/level/block/ChestBlock$2$1 +CL: net/minecraft/world/level/block/ChestBlock$3 net/minecraft/world/level/block/ChestBlock$3 +CL: net/minecraft/world/level/block/ChestBlock$4 net/minecraft/world/level/block/ChestBlock$4 +CL: net/minecraft/world/level/block/ChiseledBookShelfBlock net/minecraft/world/level/block/ChiseledBookShelfBlock +CL: net/minecraft/world/level/block/ChiseledBookShelfBlock$1 net/minecraft/world/level/block/ChiseledBookShelfBlock$1 +CL: net/minecraft/world/level/block/ChorusFlowerBlock net/minecraft/world/level/block/ChorusFlowerBlock +CL: net/minecraft/world/level/block/ChorusPlantBlock net/minecraft/world/level/block/ChorusPlantBlock +CL: net/minecraft/world/level/block/CocoaBlock net/minecraft/world/level/block/CocoaBlock +CL: net/minecraft/world/level/block/CocoaBlock$1 net/minecraft/world/level/block/CocoaBlock$1 +CL: net/minecraft/world/level/block/CommandBlock net/minecraft/world/level/block/CommandBlock +CL: net/minecraft/world/level/block/ComparatorBlock net/minecraft/world/level/block/ComparatorBlock +CL: net/minecraft/world/level/block/ComposterBlock net/minecraft/world/level/block/ComposterBlock +CL: net/minecraft/world/level/block/ComposterBlock$EmptyContainer net/minecraft/world/level/block/ComposterBlock$EmptyContainer +CL: net/minecraft/world/level/block/ComposterBlock$InputContainer net/minecraft/world/level/block/ComposterBlock$InputContainer +CL: net/minecraft/world/level/block/ComposterBlock$OutputContainer net/minecraft/world/level/block/ComposterBlock$OutputContainer +CL: net/minecraft/world/level/block/ConcretePowderBlock net/minecraft/world/level/block/ConcretePowderBlock +CL: net/minecraft/world/level/block/ConduitBlock net/minecraft/world/level/block/ConduitBlock +CL: net/minecraft/world/level/block/CoralBlock net/minecraft/world/level/block/CoralBlock +CL: net/minecraft/world/level/block/CoralFanBlock net/minecraft/world/level/block/CoralFanBlock +CL: net/minecraft/world/level/block/CoralPlantBlock net/minecraft/world/level/block/CoralPlantBlock +CL: net/minecraft/world/level/block/CoralWallFanBlock net/minecraft/world/level/block/CoralWallFanBlock +CL: net/minecraft/world/level/block/CraftingTableBlock net/minecraft/world/level/block/CraftingTableBlock +CL: net/minecraft/world/level/block/CropBlock net/minecraft/world/level/block/CropBlock +CL: net/minecraft/world/level/block/CrossCollisionBlock net/minecraft/world/level/block/CrossCollisionBlock +CL: net/minecraft/world/level/block/CrossCollisionBlock$1 net/minecraft/world/level/block/CrossCollisionBlock$1 +CL: net/minecraft/world/level/block/CryingObsidianBlock net/minecraft/world/level/block/CryingObsidianBlock +CL: net/minecraft/world/level/block/DaylightDetectorBlock net/minecraft/world/level/block/DaylightDetectorBlock +CL: net/minecraft/world/level/block/DeadBushBlock net/minecraft/world/level/block/DeadBushBlock +CL: net/minecraft/world/level/block/DecoratedPotBlock net/minecraft/world/level/block/DecoratedPotBlock +CL: net/minecraft/world/level/block/DetectorRailBlock net/minecraft/world/level/block/DetectorRailBlock +CL: net/minecraft/world/level/block/DetectorRailBlock$1 net/minecraft/world/level/block/DetectorRailBlock$1 +CL: net/minecraft/world/level/block/DiodeBlock net/minecraft/world/level/block/DiodeBlock +CL: net/minecraft/world/level/block/DirectionalBlock net/minecraft/world/level/block/DirectionalBlock +CL: net/minecraft/world/level/block/DirtPathBlock net/minecraft/world/level/block/DirtPathBlock +CL: net/minecraft/world/level/block/DispenserBlock net/minecraft/world/level/block/DispenserBlock +CL: net/minecraft/world/level/block/DoorBlock net/minecraft/world/level/block/DoorBlock +CL: net/minecraft/world/level/block/DoorBlock$1 net/minecraft/world/level/block/DoorBlock$1 +CL: net/minecraft/world/level/block/DoubleBlockCombiner net/minecraft/world/level/block/DoubleBlockCombiner +CL: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType net/minecraft/world/level/block/DoubleBlockCombiner$BlockType +CL: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner net/minecraft/world/level/block/DoubleBlockCombiner$Combiner +CL: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult +CL: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double +CL: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single +CL: net/minecraft/world/level/block/DoublePlantBlock net/minecraft/world/level/block/DoublePlantBlock +CL: net/minecraft/world/level/block/DragonEggBlock net/minecraft/world/level/block/DragonEggBlock +CL: net/minecraft/world/level/block/DropExperienceBlock net/minecraft/world/level/block/DropExperienceBlock +CL: net/minecraft/world/level/block/DropperBlock net/minecraft/world/level/block/DropperBlock +CL: net/minecraft/world/level/block/EnchantmentTableBlock net/minecraft/world/level/block/EnchantmentTableBlock +CL: net/minecraft/world/level/block/EndGatewayBlock net/minecraft/world/level/block/EndGatewayBlock +CL: net/minecraft/world/level/block/EndPortalBlock net/minecraft/world/level/block/EndPortalBlock +CL: net/minecraft/world/level/block/EndPortalFrameBlock net/minecraft/world/level/block/EndPortalFrameBlock +CL: net/minecraft/world/level/block/EndRodBlock net/minecraft/world/level/block/EndRodBlock +CL: net/minecraft/world/level/block/EnderChestBlock net/minecraft/world/level/block/EnderChestBlock +CL: net/minecraft/world/level/block/EntityBlock net/minecraft/world/level/block/EntityBlock +CL: net/minecraft/world/level/block/EquipableCarvedPumpkinBlock net/minecraft/world/level/block/EquipableCarvedPumpkinBlock +CL: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock +CL: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1 net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1 +CL: net/minecraft/world/level/block/Fallable net/minecraft/world/level/block/Fallable +CL: net/minecraft/world/level/block/FallingBlock net/minecraft/world/level/block/FallingBlock +CL: net/minecraft/world/level/block/FarmBlock net/minecraft/world/level/block/FarmBlock +CL: net/minecraft/world/level/block/FenceBlock net/minecraft/world/level/block/FenceBlock +CL: net/minecraft/world/level/block/FenceGateBlock net/minecraft/world/level/block/FenceGateBlock +CL: net/minecraft/world/level/block/FenceGateBlock$1 net/minecraft/world/level/block/FenceGateBlock$1 +CL: net/minecraft/world/level/block/FireBlock net/minecraft/world/level/block/FireBlock +CL: net/minecraft/world/level/block/FletchingTableBlock net/minecraft/world/level/block/FletchingTableBlock +CL: net/minecraft/world/level/block/FlowerBlock net/minecraft/world/level/block/FlowerBlock +CL: net/minecraft/world/level/block/FlowerPotBlock net/minecraft/world/level/block/FlowerPotBlock +CL: net/minecraft/world/level/block/FrogspawnBlock net/minecraft/world/level/block/FrogspawnBlock +CL: net/minecraft/world/level/block/FrostedIceBlock net/minecraft/world/level/block/FrostedIceBlock +CL: net/minecraft/world/level/block/FungusBlock net/minecraft/world/level/block/FungusBlock +CL: net/minecraft/world/level/block/FurnaceBlock net/minecraft/world/level/block/FurnaceBlock +CL: net/minecraft/world/level/block/GameMasterBlock net/minecraft/world/level/block/GameMasterBlock +CL: net/minecraft/world/level/block/GlassBlock net/minecraft/world/level/block/GlassBlock +CL: net/minecraft/world/level/block/GlazedTerracottaBlock net/minecraft/world/level/block/GlazedTerracottaBlock +CL: net/minecraft/world/level/block/GlowLichenBlock net/minecraft/world/level/block/GlowLichenBlock +CL: net/minecraft/world/level/block/GrassBlock net/minecraft/world/level/block/GrassBlock +CL: net/minecraft/world/level/block/GravelBlock net/minecraft/world/level/block/GravelBlock +CL: net/minecraft/world/level/block/GrindstoneBlock net/minecraft/world/level/block/GrindstoneBlock +CL: net/minecraft/world/level/block/GrindstoneBlock$1 net/minecraft/world/level/block/GrindstoneBlock$1 +CL: net/minecraft/world/level/block/GrowingPlantBlock net/minecraft/world/level/block/GrowingPlantBlock +CL: net/minecraft/world/level/block/GrowingPlantBodyBlock net/minecraft/world/level/block/GrowingPlantBodyBlock +CL: net/minecraft/world/level/block/GrowingPlantHeadBlock net/minecraft/world/level/block/GrowingPlantHeadBlock +CL: net/minecraft/world/level/block/HalfTransparentBlock net/minecraft/world/level/block/HalfTransparentBlock +CL: net/minecraft/world/level/block/HangingRootsBlock net/minecraft/world/level/block/HangingRootsBlock +CL: net/minecraft/world/level/block/HayBlock net/minecraft/world/level/block/HayBlock +CL: net/minecraft/world/level/block/HoneyBlock net/minecraft/world/level/block/HoneyBlock +CL: net/minecraft/world/level/block/HopperBlock net/minecraft/world/level/block/HopperBlock +CL: net/minecraft/world/level/block/HopperBlock$1 net/minecraft/world/level/block/HopperBlock$1 +CL: net/minecraft/world/level/block/HorizontalDirectionalBlock net/minecraft/world/level/block/HorizontalDirectionalBlock +CL: net/minecraft/world/level/block/HugeMushroomBlock net/minecraft/world/level/block/HugeMushroomBlock +CL: net/minecraft/world/level/block/IceBlock net/minecraft/world/level/block/IceBlock +CL: net/minecraft/world/level/block/InfestedBlock net/minecraft/world/level/block/InfestedBlock +CL: net/minecraft/world/level/block/InfestedRotatedPillarBlock net/minecraft/world/level/block/InfestedRotatedPillarBlock +CL: net/minecraft/world/level/block/IronBarsBlock net/minecraft/world/level/block/IronBarsBlock +CL: net/minecraft/world/level/block/JigsawBlock net/minecraft/world/level/block/JigsawBlock +CL: net/minecraft/world/level/block/JukeboxBlock net/minecraft/world/level/block/JukeboxBlock +CL: net/minecraft/world/level/block/KelpBlock net/minecraft/world/level/block/KelpBlock +CL: net/minecraft/world/level/block/KelpPlantBlock net/minecraft/world/level/block/KelpPlantBlock +CL: net/minecraft/world/level/block/LadderBlock net/minecraft/world/level/block/LadderBlock +CL: net/minecraft/world/level/block/LadderBlock$1 net/minecraft/world/level/block/LadderBlock$1 +CL: net/minecraft/world/level/block/LanternBlock net/minecraft/world/level/block/LanternBlock +CL: net/minecraft/world/level/block/LavaCauldronBlock net/minecraft/world/level/block/LavaCauldronBlock +CL: net/minecraft/world/level/block/LayeredCauldronBlock net/minecraft/world/level/block/LayeredCauldronBlock +CL: net/minecraft/world/level/block/LeavesBlock net/minecraft/world/level/block/LeavesBlock +CL: net/minecraft/world/level/block/LecternBlock net/minecraft/world/level/block/LecternBlock +CL: net/minecraft/world/level/block/LecternBlock$1 net/minecraft/world/level/block/LecternBlock$1 +CL: net/minecraft/world/level/block/LevelEvent net/minecraft/world/level/block/LevelEvent +CL: net/minecraft/world/level/block/LeverBlock net/minecraft/world/level/block/LeverBlock +CL: net/minecraft/world/level/block/LeverBlock$1 net/minecraft/world/level/block/LeverBlock$1 +CL: net/minecraft/world/level/block/LightBlock net/minecraft/world/level/block/LightBlock +CL: net/minecraft/world/level/block/LightningRodBlock net/minecraft/world/level/block/LightningRodBlock +CL: net/minecraft/world/level/block/LiquidBlock net/minecraft/world/level/block/LiquidBlock +CL: net/minecraft/world/level/block/LiquidBlockContainer net/minecraft/world/level/block/LiquidBlockContainer +CL: net/minecraft/world/level/block/LoomBlock net/minecraft/world/level/block/LoomBlock +CL: net/minecraft/world/level/block/MagmaBlock net/minecraft/world/level/block/MagmaBlock +CL: net/minecraft/world/level/block/MangroveLeavesBlock net/minecraft/world/level/block/MangroveLeavesBlock +CL: net/minecraft/world/level/block/MangrovePropaguleBlock net/minecraft/world/level/block/MangrovePropaguleBlock +CL: net/minecraft/world/level/block/MangroveRootsBlock net/minecraft/world/level/block/MangroveRootsBlock +CL: net/minecraft/world/level/block/MelonBlock net/minecraft/world/level/block/MelonBlock +CL: net/minecraft/world/level/block/Mirror net/minecraft/world/level/block/Mirror +CL: net/minecraft/world/level/block/Mirror$1 net/minecraft/world/level/block/Mirror$1 +CL: net/minecraft/world/level/block/MossBlock net/minecraft/world/level/block/MossBlock +CL: net/minecraft/world/level/block/MudBlock net/minecraft/world/level/block/MudBlock +CL: net/minecraft/world/level/block/MultifaceBlock net/minecraft/world/level/block/MultifaceBlock +CL: net/minecraft/world/level/block/MultifaceSpreader net/minecraft/world/level/block/MultifaceSpreader +CL: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos net/minecraft/world/level/block/MultifaceSpreader$SpreadPos +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType net/minecraft/world/level/block/MultifaceSpreader$SpreadType +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1 +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2 +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3 +CL: net/minecraft/world/level/block/MushroomBlock net/minecraft/world/level/block/MushroomBlock +CL: net/minecraft/world/level/block/MyceliumBlock net/minecraft/world/level/block/MyceliumBlock +CL: net/minecraft/world/level/block/NetherPortalBlock net/minecraft/world/level/block/NetherPortalBlock +CL: net/minecraft/world/level/block/NetherPortalBlock$1 net/minecraft/world/level/block/NetherPortalBlock$1 +CL: net/minecraft/world/level/block/NetherSproutsBlock net/minecraft/world/level/block/NetherSproutsBlock +CL: net/minecraft/world/level/block/NetherVines net/minecraft/world/level/block/NetherVines +CL: net/minecraft/world/level/block/NetherWartBlock net/minecraft/world/level/block/NetherWartBlock +CL: net/minecraft/world/level/block/NetherrackBlock net/minecraft/world/level/block/NetherrackBlock +CL: net/minecraft/world/level/block/NoteBlock net/minecraft/world/level/block/NoteBlock +CL: net/minecraft/world/level/block/NyliumBlock net/minecraft/world/level/block/NyliumBlock +CL: net/minecraft/world/level/block/ObserverBlock net/minecraft/world/level/block/ObserverBlock +CL: net/minecraft/world/level/block/PiglinWallSkullBlock net/minecraft/world/level/block/PiglinWallSkullBlock +CL: net/minecraft/world/level/block/PinkPetalsBlock net/minecraft/world/level/block/PinkPetalsBlock +CL: net/minecraft/world/level/block/PipeBlock net/minecraft/world/level/block/PipeBlock +CL: net/minecraft/world/level/block/PitcherCropBlock net/minecraft/world/level/block/PitcherCropBlock +CL: net/minecraft/world/level/block/PitcherCropBlock$PosAndState net/minecraft/world/level/block/PitcherCropBlock$PosAndState +CL: net/minecraft/world/level/block/PlayerHeadBlock net/minecraft/world/level/block/PlayerHeadBlock +CL: net/minecraft/world/level/block/PlayerWallHeadBlock net/minecraft/world/level/block/PlayerWallHeadBlock +CL: net/minecraft/world/level/block/PointedDripstoneBlock net/minecraft/world/level/block/PointedDripstoneBlock +CL: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo +CL: net/minecraft/world/level/block/PotatoBlock net/minecraft/world/level/block/PotatoBlock +CL: net/minecraft/world/level/block/PowderSnowBlock net/minecraft/world/level/block/PowderSnowBlock +CL: net/minecraft/world/level/block/PowderSnowCauldronBlock net/minecraft/world/level/block/PowderSnowCauldronBlock +CL: net/minecraft/world/level/block/PoweredBlock net/minecraft/world/level/block/PoweredBlock +CL: net/minecraft/world/level/block/PoweredRailBlock net/minecraft/world/level/block/PoweredRailBlock +CL: net/minecraft/world/level/block/PoweredRailBlock$1 net/minecraft/world/level/block/PoweredRailBlock$1 +CL: net/minecraft/world/level/block/PressurePlateBlock net/minecraft/world/level/block/PressurePlateBlock +CL: net/minecraft/world/level/block/PressurePlateBlock$1 net/minecraft/world/level/block/PressurePlateBlock$1 +CL: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity net/minecraft/world/level/block/PressurePlateBlock$Sensitivity +CL: net/minecraft/world/level/block/PumpkinBlock net/minecraft/world/level/block/PumpkinBlock +CL: net/minecraft/world/level/block/RailBlock net/minecraft/world/level/block/RailBlock +CL: net/minecraft/world/level/block/RailBlock$1 net/minecraft/world/level/block/RailBlock$1 +CL: net/minecraft/world/level/block/RailState net/minecraft/world/level/block/RailState +CL: net/minecraft/world/level/block/RailState$1 net/minecraft/world/level/block/RailState$1 +CL: net/minecraft/world/level/block/RedStoneOreBlock net/minecraft/world/level/block/RedStoneOreBlock +CL: net/minecraft/world/level/block/RedStoneWireBlock net/minecraft/world/level/block/RedStoneWireBlock +CL: net/minecraft/world/level/block/RedStoneWireBlock$1 net/minecraft/world/level/block/RedStoneWireBlock$1 +CL: net/minecraft/world/level/block/RedstoneLampBlock net/minecraft/world/level/block/RedstoneLampBlock +CL: net/minecraft/world/level/block/RedstoneTorchBlock net/minecraft/world/level/block/RedstoneTorchBlock +CL: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle net/minecraft/world/level/block/RedstoneTorchBlock$Toggle +CL: net/minecraft/world/level/block/RedstoneWallTorchBlock net/minecraft/world/level/block/RedstoneWallTorchBlock +CL: net/minecraft/world/level/block/RenderShape net/minecraft/world/level/block/RenderShape +CL: net/minecraft/world/level/block/RepeaterBlock net/minecraft/world/level/block/RepeaterBlock +CL: net/minecraft/world/level/block/RespawnAnchorBlock net/minecraft/world/level/block/RespawnAnchorBlock +CL: net/minecraft/world/level/block/RespawnAnchorBlock$1 net/minecraft/world/level/block/RespawnAnchorBlock$1 +CL: net/minecraft/world/level/block/RodBlock net/minecraft/world/level/block/RodBlock +CL: net/minecraft/world/level/block/RodBlock$1 net/minecraft/world/level/block/RodBlock$1 +CL: net/minecraft/world/level/block/RootedDirtBlock net/minecraft/world/level/block/RootedDirtBlock +CL: net/minecraft/world/level/block/RootsBlock net/minecraft/world/level/block/RootsBlock +CL: net/minecraft/world/level/block/RotatedPillarBlock net/minecraft/world/level/block/RotatedPillarBlock +CL: net/minecraft/world/level/block/RotatedPillarBlock$1 net/minecraft/world/level/block/RotatedPillarBlock$1 +CL: net/minecraft/world/level/block/Rotation net/minecraft/world/level/block/Rotation +CL: net/minecraft/world/level/block/Rotation$1 net/minecraft/world/level/block/Rotation$1 +CL: net/minecraft/world/level/block/SandBlock net/minecraft/world/level/block/SandBlock +CL: net/minecraft/world/level/block/SaplingBlock net/minecraft/world/level/block/SaplingBlock +CL: net/minecraft/world/level/block/ScaffoldingBlock net/minecraft/world/level/block/ScaffoldingBlock +CL: net/minecraft/world/level/block/SculkBehaviour net/minecraft/world/level/block/SculkBehaviour +CL: net/minecraft/world/level/block/SculkBehaviour$1 net/minecraft/world/level/block/SculkBehaviour$1 +CL: net/minecraft/world/level/block/SculkBlock net/minecraft/world/level/block/SculkBlock +CL: net/minecraft/world/level/block/SculkCatalystBlock net/minecraft/world/level/block/SculkCatalystBlock +CL: net/minecraft/world/level/block/SculkSensorBlock net/minecraft/world/level/block/SculkSensorBlock +CL: net/minecraft/world/level/block/SculkShriekerBlock net/minecraft/world/level/block/SculkShriekerBlock +CL: net/minecraft/world/level/block/SculkSpreader net/minecraft/world/level/block/SculkSpreader +CL: net/minecraft/world/level/block/SculkSpreader$ChargeCursor net/minecraft/world/level/block/SculkSpreader$ChargeCursor +CL: net/minecraft/world/level/block/SculkVeinBlock net/minecraft/world/level/block/SculkVeinBlock +CL: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig +CL: net/minecraft/world/level/block/SeaPickleBlock net/minecraft/world/level/block/SeaPickleBlock +CL: net/minecraft/world/level/block/SeagrassBlock net/minecraft/world/level/block/SeagrassBlock +CL: net/minecraft/world/level/block/ShulkerBoxBlock net/minecraft/world/level/block/ShulkerBoxBlock +CL: net/minecraft/world/level/block/ShulkerBoxBlock$1 net/minecraft/world/level/block/ShulkerBoxBlock$1 +CL: net/minecraft/world/level/block/SignBlock net/minecraft/world/level/block/SignBlock +CL: net/minecraft/world/level/block/SimpleWaterloggedBlock net/minecraft/world/level/block/SimpleWaterloggedBlock +CL: net/minecraft/world/level/block/SkullBlock net/minecraft/world/level/block/SkullBlock +CL: net/minecraft/world/level/block/SkullBlock$Type net/minecraft/world/level/block/SkullBlock$Type +CL: net/minecraft/world/level/block/SkullBlock$Types net/minecraft/world/level/block/SkullBlock$Types +CL: net/minecraft/world/level/block/SlabBlock net/minecraft/world/level/block/SlabBlock +CL: net/minecraft/world/level/block/SlabBlock$1 net/minecraft/world/level/block/SlabBlock$1 +CL: net/minecraft/world/level/block/SlimeBlock net/minecraft/world/level/block/SlimeBlock +CL: net/minecraft/world/level/block/SmallDripleafBlock net/minecraft/world/level/block/SmallDripleafBlock +CL: net/minecraft/world/level/block/SmithingTableBlock net/minecraft/world/level/block/SmithingTableBlock +CL: net/minecraft/world/level/block/SmokerBlock net/minecraft/world/level/block/SmokerBlock +CL: net/minecraft/world/level/block/SnifferEggBlock net/minecraft/world/level/block/SnifferEggBlock +CL: net/minecraft/world/level/block/SnowLayerBlock net/minecraft/world/level/block/SnowLayerBlock +CL: net/minecraft/world/level/block/SnowLayerBlock$1 net/minecraft/world/level/block/SnowLayerBlock$1 +CL: net/minecraft/world/level/block/SnowyDirtBlock net/minecraft/world/level/block/SnowyDirtBlock +CL: net/minecraft/world/level/block/SoulFireBlock net/minecraft/world/level/block/SoulFireBlock +CL: net/minecraft/world/level/block/SoulSandBlock net/minecraft/world/level/block/SoulSandBlock +CL: net/minecraft/world/level/block/SoundType net/minecraft/world/level/block/SoundType +CL: net/minecraft/world/level/block/SpawnerBlock net/minecraft/world/level/block/SpawnerBlock +CL: net/minecraft/world/level/block/SpongeBlock net/minecraft/world/level/block/SpongeBlock +CL: net/minecraft/world/level/block/SporeBlossomBlock net/minecraft/world/level/block/SporeBlossomBlock +CL: net/minecraft/world/level/block/SpreadingSnowyDirtBlock net/minecraft/world/level/block/SpreadingSnowyDirtBlock +CL: net/minecraft/world/level/block/StainedGlassBlock net/minecraft/world/level/block/StainedGlassBlock +CL: net/minecraft/world/level/block/StainedGlassPaneBlock net/minecraft/world/level/block/StainedGlassPaneBlock +CL: net/minecraft/world/level/block/StairBlock net/minecraft/world/level/block/StairBlock +CL: net/minecraft/world/level/block/StairBlock$1 net/minecraft/world/level/block/StairBlock$1 +CL: net/minecraft/world/level/block/StandingSignBlock net/minecraft/world/level/block/StandingSignBlock +CL: net/minecraft/world/level/block/StemBlock net/minecraft/world/level/block/StemBlock +CL: net/minecraft/world/level/block/StemGrownBlock net/minecraft/world/level/block/StemGrownBlock +CL: net/minecraft/world/level/block/StonecutterBlock net/minecraft/world/level/block/StonecutterBlock +CL: net/minecraft/world/level/block/StructureBlock net/minecraft/world/level/block/StructureBlock +CL: net/minecraft/world/level/block/StructureBlock$1 net/minecraft/world/level/block/StructureBlock$1 +CL: net/minecraft/world/level/block/StructureVoidBlock net/minecraft/world/level/block/StructureVoidBlock +CL: net/minecraft/world/level/block/SugarCaneBlock net/minecraft/world/level/block/SugarCaneBlock +CL: net/minecraft/world/level/block/SupportType net/minecraft/world/level/block/SupportType +CL: net/minecraft/world/level/block/SupportType$1 net/minecraft/world/level/block/SupportType$1 +CL: net/minecraft/world/level/block/SupportType$2 net/minecraft/world/level/block/SupportType$2 +CL: net/minecraft/world/level/block/SupportType$3 net/minecraft/world/level/block/SupportType$3 +CL: net/minecraft/world/level/block/SuspiciousEffectHolder net/minecraft/world/level/block/SuspiciousEffectHolder +CL: net/minecraft/world/level/block/SweetBerryBushBlock net/minecraft/world/level/block/SweetBerryBushBlock +CL: net/minecraft/world/level/block/TallFlowerBlock net/minecraft/world/level/block/TallFlowerBlock +CL: net/minecraft/world/level/block/TallGrassBlock net/minecraft/world/level/block/TallGrassBlock +CL: net/minecraft/world/level/block/TallSeagrassBlock net/minecraft/world/level/block/TallSeagrassBlock +CL: net/minecraft/world/level/block/TargetBlock net/minecraft/world/level/block/TargetBlock +CL: net/minecraft/world/level/block/TintedGlassBlock net/minecraft/world/level/block/TintedGlassBlock +CL: net/minecraft/world/level/block/TntBlock net/minecraft/world/level/block/TntBlock +CL: net/minecraft/world/level/block/TorchBlock net/minecraft/world/level/block/TorchBlock +CL: net/minecraft/world/level/block/TorchflowerCropBlock net/minecraft/world/level/block/TorchflowerCropBlock +CL: net/minecraft/world/level/block/TrapDoorBlock net/minecraft/world/level/block/TrapDoorBlock +CL: net/minecraft/world/level/block/TrapDoorBlock$1 net/minecraft/world/level/block/TrapDoorBlock$1 +CL: net/minecraft/world/level/block/TrappedChestBlock net/minecraft/world/level/block/TrappedChestBlock +CL: net/minecraft/world/level/block/TripWireBlock net/minecraft/world/level/block/TripWireBlock +CL: net/minecraft/world/level/block/TripWireBlock$1 net/minecraft/world/level/block/TripWireBlock$1 +CL: net/minecraft/world/level/block/TripWireHookBlock net/minecraft/world/level/block/TripWireHookBlock +CL: net/minecraft/world/level/block/TripWireHookBlock$1 net/minecraft/world/level/block/TripWireHookBlock$1 +CL: net/minecraft/world/level/block/TurtleEggBlock net/minecraft/world/level/block/TurtleEggBlock +CL: net/minecraft/world/level/block/TwistingVinesBlock net/minecraft/world/level/block/TwistingVinesBlock +CL: net/minecraft/world/level/block/TwistingVinesPlantBlock net/minecraft/world/level/block/TwistingVinesPlantBlock +CL: net/minecraft/world/level/block/VineBlock net/minecraft/world/level/block/VineBlock +CL: net/minecraft/world/level/block/VineBlock$1 net/minecraft/world/level/block/VineBlock$1 +CL: net/minecraft/world/level/block/WallBannerBlock net/minecraft/world/level/block/WallBannerBlock +CL: net/minecraft/world/level/block/WallBlock net/minecraft/world/level/block/WallBlock +CL: net/minecraft/world/level/block/WallBlock$1 net/minecraft/world/level/block/WallBlock$1 +CL: net/minecraft/world/level/block/WallHangingSignBlock net/minecraft/world/level/block/WallHangingSignBlock +CL: net/minecraft/world/level/block/WallHangingSignBlock$1 net/minecraft/world/level/block/WallHangingSignBlock$1 +CL: net/minecraft/world/level/block/WallSignBlock net/minecraft/world/level/block/WallSignBlock +CL: net/minecraft/world/level/block/WallSkullBlock net/minecraft/world/level/block/WallSkullBlock +CL: net/minecraft/world/level/block/WallTorchBlock net/minecraft/world/level/block/WallTorchBlock +CL: net/minecraft/world/level/block/WaterlilyBlock net/minecraft/world/level/block/WaterlilyBlock +CL: net/minecraft/world/level/block/WeatheringCopper net/minecraft/world/level/block/WeatheringCopper +CL: net/minecraft/world/level/block/WeatheringCopper$WeatherState net/minecraft/world/level/block/WeatheringCopper$WeatherState +CL: net/minecraft/world/level/block/WeatheringCopperFullBlock net/minecraft/world/level/block/WeatheringCopperFullBlock +CL: net/minecraft/world/level/block/WeatheringCopperSlabBlock net/minecraft/world/level/block/WeatheringCopperSlabBlock +CL: net/minecraft/world/level/block/WeatheringCopperStairBlock net/minecraft/world/level/block/WeatheringCopperStairBlock +CL: net/minecraft/world/level/block/WebBlock net/minecraft/world/level/block/WebBlock +CL: net/minecraft/world/level/block/WeepingVinesBlock net/minecraft/world/level/block/WeepingVinesBlock +CL: net/minecraft/world/level/block/WeepingVinesPlantBlock net/minecraft/world/level/block/WeepingVinesPlantBlock +CL: net/minecraft/world/level/block/WeightedPressurePlateBlock net/minecraft/world/level/block/WeightedPressurePlateBlock +CL: net/minecraft/world/level/block/WetSpongeBlock net/minecraft/world/level/block/WetSpongeBlock +CL: net/minecraft/world/level/block/WitherRoseBlock net/minecraft/world/level/block/WitherRoseBlock +CL: net/minecraft/world/level/block/WitherSkullBlock net/minecraft/world/level/block/WitherSkullBlock +CL: net/minecraft/world/level/block/WitherWallSkullBlock net/minecraft/world/level/block/WitherWallSkullBlock +CL: net/minecraft/world/level/block/WoolCarpetBlock net/minecraft/world/level/block/WoolCarpetBlock +CL: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity +CL: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1 net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BannerBlockEntity net/minecraft/world/level/block/entity/BannerBlockEntity +CL: net/minecraft/world/level/block/entity/BannerPattern net/minecraft/world/level/block/entity/BannerPattern +CL: net/minecraft/world/level/block/entity/BannerPattern$Builder net/minecraft/world/level/block/entity/BannerPattern$Builder +CL: net/minecraft/world/level/block/entity/BannerPatterns net/minecraft/world/level/block/entity/BannerPatterns +CL: net/minecraft/world/level/block/entity/BarrelBlockEntity net/minecraft/world/level/block/entity/BarrelBlockEntity +CL: net/minecraft/world/level/block/entity/BarrelBlockEntity$1 net/minecraft/world/level/block/entity/BarrelBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BaseContainerBlockEntity net/minecraft/world/level/block/entity/BaseContainerBlockEntity +CL: net/minecraft/world/level/block/entity/BeaconBlockEntity net/minecraft/world/level/block/entity/BeaconBlockEntity +CL: net/minecraft/world/level/block/entity/BeaconBlockEntity$1 net/minecraft/world/level/block/entity/BeaconBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection +CL: net/minecraft/world/level/block/entity/BedBlockEntity net/minecraft/world/level/block/entity/BedBlockEntity +CL: net/minecraft/world/level/block/entity/BeehiveBlockEntity net/minecraft/world/level/block/entity/BeehiveBlockEntity +CL: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData +CL: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus +CL: net/minecraft/world/level/block/entity/BellBlockEntity net/minecraft/world/level/block/entity/BellBlockEntity +CL: net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction +CL: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity +CL: net/minecraft/world/level/block/entity/BlockEntity net/minecraft/world/level/block/entity/BlockEntity +CL: net/minecraft/world/level/block/entity/BlockEntityTicker net/minecraft/world/level/block/entity/BlockEntityTicker +CL: net/minecraft/world/level/block/entity/BlockEntityType net/minecraft/world/level/block/entity/BlockEntityType +CL: net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier +CL: net/minecraft/world/level/block/entity/BlockEntityType$Builder net/minecraft/world/level/block/entity/BlockEntityType$Builder +CL: net/minecraft/world/level/block/entity/BrewingStandBlockEntity net/minecraft/world/level/block/entity/BrewingStandBlockEntity +CL: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1 net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BrushableBlockEntity net/minecraft/world/level/block/entity/BrushableBlockEntity +CL: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity +CL: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser +CL: net/minecraft/world/level/block/entity/CampfireBlockEntity net/minecraft/world/level/block/entity/CampfireBlockEntity +CL: net/minecraft/world/level/block/entity/ChestBlockEntity net/minecraft/world/level/block/entity/ChestBlockEntity +CL: net/minecraft/world/level/block/entity/ChestBlockEntity$1 net/minecraft/world/level/block/entity/ChestBlockEntity$1 +CL: net/minecraft/world/level/block/entity/ChestLidController net/minecraft/world/level/block/entity/ChestLidController +CL: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity +CL: net/minecraft/world/level/block/entity/CommandBlockEntity net/minecraft/world/level/block/entity/CommandBlockEntity +CL: net/minecraft/world/level/block/entity/CommandBlockEntity$1 net/minecraft/world/level/block/entity/CommandBlockEntity$1 +CL: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode net/minecraft/world/level/block/entity/CommandBlockEntity$Mode +CL: net/minecraft/world/level/block/entity/ComparatorBlockEntity net/minecraft/world/level/block/entity/ComparatorBlockEntity +CL: net/minecraft/world/level/block/entity/ConduitBlockEntity net/minecraft/world/level/block/entity/ConduitBlockEntity +CL: net/minecraft/world/level/block/entity/ContainerOpenersCounter net/minecraft/world/level/block/entity/ContainerOpenersCounter +CL: net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity +CL: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity net/minecraft/world/level/block/entity/DecoratedPotBlockEntity +CL: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations +CL: net/minecraft/world/level/block/entity/DecoratedPotPatterns net/minecraft/world/level/block/entity/DecoratedPotPatterns +CL: net/minecraft/world/level/block/entity/DispenserBlockEntity net/minecraft/world/level/block/entity/DispenserBlockEntity +CL: net/minecraft/world/level/block/entity/DropperBlockEntity net/minecraft/world/level/block/entity/DropperBlockEntity +CL: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity +CL: net/minecraft/world/level/block/entity/EnderChestBlockEntity net/minecraft/world/level/block/entity/EnderChestBlockEntity +CL: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1 net/minecraft/world/level/block/entity/EnderChestBlockEntity$1 +CL: net/minecraft/world/level/block/entity/FurnaceBlockEntity net/minecraft/world/level/block/entity/FurnaceBlockEntity +CL: net/minecraft/world/level/block/entity/HangingSignBlockEntity net/minecraft/world/level/block/entity/HangingSignBlockEntity +CL: net/minecraft/world/level/block/entity/Hopper net/minecraft/world/level/block/entity/Hopper +CL: net/minecraft/world/level/block/entity/HopperBlockEntity net/minecraft/world/level/block/entity/HopperBlockEntity +CL: net/minecraft/world/level/block/entity/JigsawBlockEntity net/minecraft/world/level/block/entity/JigsawBlockEntity +CL: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType +CL: net/minecraft/world/level/block/entity/JukeboxBlockEntity net/minecraft/world/level/block/entity/JukeboxBlockEntity +CL: net/minecraft/world/level/block/entity/LecternBlockEntity net/minecraft/world/level/block/entity/LecternBlockEntity +CL: net/minecraft/world/level/block/entity/LecternBlockEntity$1 net/minecraft/world/level/block/entity/LecternBlockEntity$1 +CL: net/minecraft/world/level/block/entity/LecternBlockEntity$2 net/minecraft/world/level/block/entity/LecternBlockEntity$2 +CL: net/minecraft/world/level/block/entity/LidBlockEntity net/minecraft/world/level/block/entity/LidBlockEntity +CL: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity +CL: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity net/minecraft/world/level/block/entity/SculkCatalystBlockEntity +CL: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener +CL: net/minecraft/world/level/block/entity/SculkSensorBlockEntity net/minecraft/world/level/block/entity/SculkSensorBlockEntity +CL: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser +CL: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity net/minecraft/world/level/block/entity/SculkShriekerBlockEntity +CL: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser +CL: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity +CL: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1 net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1 +CL: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus +CL: net/minecraft/world/level/block/entity/SignBlockEntity net/minecraft/world/level/block/entity/SignBlockEntity +CL: net/minecraft/world/level/block/entity/SignText net/minecraft/world/level/block/entity/SignText +CL: net/minecraft/world/level/block/entity/SkullBlockEntity net/minecraft/world/level/block/entity/SkullBlockEntity +CL: net/minecraft/world/level/block/entity/SmokerBlockEntity net/minecraft/world/level/block/entity/SmokerBlockEntity +CL: net/minecraft/world/level/block/entity/SpawnerBlockEntity net/minecraft/world/level/block/entity/SpawnerBlockEntity +CL: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1 net/minecraft/world/level/block/entity/SpawnerBlockEntity$1 +CL: net/minecraft/world/level/block/entity/StructureBlockEntity net/minecraft/world/level/block/entity/StructureBlockEntity +CL: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType +CL: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity +CL: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity net/minecraft/world/level/block/entity/TheEndPortalBlockEntity +CL: net/minecraft/world/level/block/entity/TickingBlockEntity net/minecraft/world/level/block/entity/TickingBlockEntity +CL: net/minecraft/world/level/block/entity/TrappedChestBlockEntity net/minecraft/world/level/block/entity/TrappedChestBlockEntity +CL: net/minecraft/world/level/block/entity/package-info net/minecraft/world/level/block/entity/package-info +CL: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower net/minecraft/world/level/block/grower/AbstractMegaTreeGrower +CL: net/minecraft/world/level/block/grower/AbstractTreeGrower net/minecraft/world/level/block/grower/AbstractTreeGrower +CL: net/minecraft/world/level/block/grower/AcaciaTreeGrower net/minecraft/world/level/block/grower/AcaciaTreeGrower +CL: net/minecraft/world/level/block/grower/AzaleaTreeGrower net/minecraft/world/level/block/grower/AzaleaTreeGrower +CL: net/minecraft/world/level/block/grower/BirchTreeGrower net/minecraft/world/level/block/grower/BirchTreeGrower +CL: net/minecraft/world/level/block/grower/CherryTreeGrower net/minecraft/world/level/block/grower/CherryTreeGrower +CL: net/minecraft/world/level/block/grower/DarkOakTreeGrower net/minecraft/world/level/block/grower/DarkOakTreeGrower +CL: net/minecraft/world/level/block/grower/JungleTreeGrower net/minecraft/world/level/block/grower/JungleTreeGrower +CL: net/minecraft/world/level/block/grower/MangroveTreeGrower net/minecraft/world/level/block/grower/MangroveTreeGrower +CL: net/minecraft/world/level/block/grower/OakTreeGrower net/minecraft/world/level/block/grower/OakTreeGrower +CL: net/minecraft/world/level/block/grower/SpruceTreeGrower net/minecraft/world/level/block/grower/SpruceTreeGrower +CL: net/minecraft/world/level/block/grower/package-info net/minecraft/world/level/block/grower/package-info +CL: net/minecraft/world/level/block/package-info net/minecraft/world/level/block/package-info +CL: net/minecraft/world/level/block/piston/MovingPistonBlock net/minecraft/world/level/block/piston/MovingPistonBlock +CL: net/minecraft/world/level/block/piston/PistonBaseBlock net/minecraft/world/level/block/piston/PistonBaseBlock +CL: net/minecraft/world/level/block/piston/PistonBaseBlock$1 net/minecraft/world/level/block/piston/PistonBaseBlock$1 +CL: net/minecraft/world/level/block/piston/PistonHeadBlock net/minecraft/world/level/block/piston/PistonHeadBlock +CL: net/minecraft/world/level/block/piston/PistonHeadBlock$1 net/minecraft/world/level/block/piston/PistonHeadBlock$1 +CL: net/minecraft/world/level/block/piston/PistonMath net/minecraft/world/level/block/piston/PistonMath +CL: net/minecraft/world/level/block/piston/PistonMath$1 net/minecraft/world/level/block/piston/PistonMath$1 +CL: net/minecraft/world/level/block/piston/PistonMovingBlockEntity net/minecraft/world/level/block/piston/PistonMovingBlockEntity +CL: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1 net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1 +CL: net/minecraft/world/level/block/piston/PistonStructureResolver net/minecraft/world/level/block/piston/PistonStructureResolver +CL: net/minecraft/world/level/block/piston/package-info net/minecraft/world/level/block/piston/package-info +CL: net/minecraft/world/level/block/state/BlockBehaviour net/minecraft/world/level/block/state/BlockBehaviour +CL: net/minecraft/world/level/block/state/BlockBehaviour$1 net/minecraft/world/level/block/state/BlockBehaviour$1 +CL: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase +CL: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache +CL: net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction +CL: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType net/minecraft/world/level/block/state/BlockBehaviour$OffsetType +CL: net/minecraft/world/level/block/state/BlockBehaviour$Properties net/minecraft/world/level/block/state/BlockBehaviour$Properties +CL: net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate +CL: net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate +CL: net/minecraft/world/level/block/state/BlockState net/minecraft/world/level/block/state/BlockState +CL: net/minecraft/world/level/block/state/StateDefinition net/minecraft/world/level/block/state/StateDefinition +CL: net/minecraft/world/level/block/state/StateDefinition$Builder net/minecraft/world/level/block/state/StateDefinition$Builder +CL: net/minecraft/world/level/block/state/StateDefinition$Factory net/minecraft/world/level/block/state/StateDefinition$Factory +CL: net/minecraft/world/level/block/state/StateHolder net/minecraft/world/level/block/state/StateHolder +CL: net/minecraft/world/level/block/state/StateHolder$1 net/minecraft/world/level/block/state/StateHolder$1 +CL: net/minecraft/world/level/block/state/package-info net/minecraft/world/level/block/state/package-info +CL: net/minecraft/world/level/block/state/pattern/BlockInWorld net/minecraft/world/level/block/state/pattern/BlockInWorld +CL: net/minecraft/world/level/block/state/pattern/BlockPattern net/minecraft/world/level/block/state/pattern/BlockPattern +CL: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader +CL: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch +CL: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder net/minecraft/world/level/block/state/pattern/BlockPatternBuilder +CL: net/minecraft/world/level/block/state/pattern/package-info net/minecraft/world/level/block/state/pattern/package-info +CL: net/minecraft/world/level/block/state/predicate/BlockPredicate net/minecraft/world/level/block/state/predicate/BlockPredicate +CL: net/minecraft/world/level/block/state/predicate/BlockStatePredicate net/minecraft/world/level/block/state/predicate/BlockStatePredicate +CL: net/minecraft/world/level/block/state/predicate/package-info net/minecraft/world/level/block/state/predicate/package-info +CL: net/minecraft/world/level/block/state/properties/AttachFace net/minecraft/world/level/block/state/properties/AttachFace +CL: net/minecraft/world/level/block/state/properties/BambooLeaves net/minecraft/world/level/block/state/properties/BambooLeaves +CL: net/minecraft/world/level/block/state/properties/BedPart net/minecraft/world/level/block/state/properties/BedPart +CL: net/minecraft/world/level/block/state/properties/BellAttachType net/minecraft/world/level/block/state/properties/BellAttachType +CL: net/minecraft/world/level/block/state/properties/BlockSetType net/minecraft/world/level/block/state/properties/BlockSetType +CL: net/minecraft/world/level/block/state/properties/BlockStateProperties net/minecraft/world/level/block/state/properties/BlockStateProperties +CL: net/minecraft/world/level/block/state/properties/BooleanProperty net/minecraft/world/level/block/state/properties/BooleanProperty +CL: net/minecraft/world/level/block/state/properties/ChestType net/minecraft/world/level/block/state/properties/ChestType +CL: net/minecraft/world/level/block/state/properties/ChestType$1 net/minecraft/world/level/block/state/properties/ChestType$1 +CL: net/minecraft/world/level/block/state/properties/ComparatorMode net/minecraft/world/level/block/state/properties/ComparatorMode +CL: net/minecraft/world/level/block/state/properties/DirectionProperty net/minecraft/world/level/block/state/properties/DirectionProperty +CL: net/minecraft/world/level/block/state/properties/DoorHingeSide net/minecraft/world/level/block/state/properties/DoorHingeSide +CL: net/minecraft/world/level/block/state/properties/DoubleBlockHalf net/minecraft/world/level/block/state/properties/DoubleBlockHalf +CL: net/minecraft/world/level/block/state/properties/DripstoneThickness net/minecraft/world/level/block/state/properties/DripstoneThickness +CL: net/minecraft/world/level/block/state/properties/EnumProperty net/minecraft/world/level/block/state/properties/EnumProperty +CL: net/minecraft/world/level/block/state/properties/Half net/minecraft/world/level/block/state/properties/Half +CL: net/minecraft/world/level/block/state/properties/IntegerProperty net/minecraft/world/level/block/state/properties/IntegerProperty +CL: net/minecraft/world/level/block/state/properties/NoteBlockInstrument net/minecraft/world/level/block/state/properties/NoteBlockInstrument +CL: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type +CL: net/minecraft/world/level/block/state/properties/PistonType net/minecraft/world/level/block/state/properties/PistonType +CL: net/minecraft/world/level/block/state/properties/Property net/minecraft/world/level/block/state/properties/Property +CL: net/minecraft/world/level/block/state/properties/Property$Value net/minecraft/world/level/block/state/properties/Property$Value +CL: net/minecraft/world/level/block/state/properties/RailShape net/minecraft/world/level/block/state/properties/RailShape +CL: net/minecraft/world/level/block/state/properties/RedstoneSide net/minecraft/world/level/block/state/properties/RedstoneSide +CL: net/minecraft/world/level/block/state/properties/RotationSegment net/minecraft/world/level/block/state/properties/RotationSegment +CL: net/minecraft/world/level/block/state/properties/SculkSensorPhase net/minecraft/world/level/block/state/properties/SculkSensorPhase +CL: net/minecraft/world/level/block/state/properties/SlabType net/minecraft/world/level/block/state/properties/SlabType +CL: net/minecraft/world/level/block/state/properties/StairsShape net/minecraft/world/level/block/state/properties/StairsShape +CL: net/minecraft/world/level/block/state/properties/StructureMode net/minecraft/world/level/block/state/properties/StructureMode +CL: net/minecraft/world/level/block/state/properties/Tilt net/minecraft/world/level/block/state/properties/Tilt +CL: net/minecraft/world/level/block/state/properties/WallSide net/minecraft/world/level/block/state/properties/WallSide +CL: net/minecraft/world/level/block/state/properties/WoodType net/minecraft/world/level/block/state/properties/WoodType +CL: net/minecraft/world/level/block/state/properties/package-info net/minecraft/world/level/block/state/properties/package-info +CL: net/minecraft/world/level/border/BorderChangeListener net/minecraft/world/level/border/BorderChangeListener +CL: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener +CL: net/minecraft/world/level/border/BorderStatus net/minecraft/world/level/border/BorderStatus +CL: net/minecraft/world/level/border/WorldBorder net/minecraft/world/level/border/WorldBorder +CL: net/minecraft/world/level/border/WorldBorder$BorderExtent net/minecraft/world/level/border/WorldBorder$BorderExtent +CL: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent net/minecraft/world/level/border/WorldBorder$MovingBorderExtent +CL: net/minecraft/world/level/border/WorldBorder$Settings net/minecraft/world/level/border/WorldBorder$Settings +CL: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent net/minecraft/world/level/border/WorldBorder$StaticBorderExtent +CL: net/minecraft/world/level/border/package-info net/minecraft/world/level/border/package-info +CL: net/minecraft/world/level/chunk/BlockColumn net/minecraft/world/level/chunk/BlockColumn +CL: net/minecraft/world/level/chunk/BulkSectionAccess net/minecraft/world/level/chunk/BulkSectionAccess +CL: net/minecraft/world/level/chunk/CarvingMask net/minecraft/world/level/chunk/CarvingMask +CL: net/minecraft/world/level/chunk/CarvingMask$Mask net/minecraft/world/level/chunk/CarvingMask$Mask +CL: net/minecraft/world/level/chunk/ChunkAccess net/minecraft/world/level/chunk/ChunkAccess +CL: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave net/minecraft/world/level/chunk/ChunkAccess$TicksToSave +CL: net/minecraft/world/level/chunk/ChunkGenerator net/minecraft/world/level/chunk/ChunkGenerator +CL: net/minecraft/world/level/chunk/ChunkGeneratorStructureState net/minecraft/world/level/chunk/ChunkGeneratorStructureState +CL: net/minecraft/world/level/chunk/ChunkGenerators net/minecraft/world/level/chunk/ChunkGenerators +CL: net/minecraft/world/level/chunk/ChunkSource net/minecraft/world/level/chunk/ChunkSource +CL: net/minecraft/world/level/chunk/ChunkStatus net/minecraft/world/level/chunk/ChunkStatus +CL: net/minecraft/world/level/chunk/ChunkStatus$ChunkType net/minecraft/world/level/chunk/ChunkStatus$ChunkType +CL: net/minecraft/world/level/chunk/ChunkStatus$GenerationTask net/minecraft/world/level/chunk/ChunkStatus$GenerationTask +CL: net/minecraft/world/level/chunk/ChunkStatus$LoadingTask net/minecraft/world/level/chunk/ChunkStatus$LoadingTask +CL: net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask +CL: net/minecraft/world/level/chunk/DataLayer net/minecraft/world/level/chunk/DataLayer +CL: net/minecraft/world/level/chunk/EmptyLevelChunk net/minecraft/world/level/chunk/EmptyLevelChunk +CL: net/minecraft/world/level/chunk/GlobalPalette net/minecraft/world/level/chunk/GlobalPalette +CL: net/minecraft/world/level/chunk/HashMapPalette net/minecraft/world/level/chunk/HashMapPalette +CL: net/minecraft/world/level/chunk/ImposterProtoChunk net/minecraft/world/level/chunk/ImposterProtoChunk +CL: net/minecraft/world/level/chunk/LevelChunk net/minecraft/world/level/chunk/LevelChunk +CL: net/minecraft/world/level/chunk/LevelChunk$1 net/minecraft/world/level/chunk/LevelChunk$1 +CL: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity +CL: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType net/minecraft/world/level/chunk/LevelChunk$EntityCreationType +CL: net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor +CL: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper +CL: net/minecraft/world/level/chunk/LevelChunkSection net/minecraft/world/level/chunk/LevelChunkSection +CL: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter +CL: net/minecraft/world/level/chunk/LightChunk net/minecraft/world/level/chunk/LightChunk +CL: net/minecraft/world/level/chunk/LightChunkGetter net/minecraft/world/level/chunk/LightChunkGetter +CL: net/minecraft/world/level/chunk/LinearPalette net/minecraft/world/level/chunk/LinearPalette +CL: net/minecraft/world/level/chunk/MissingPaletteEntryException net/minecraft/world/level/chunk/MissingPaletteEntryException +CL: net/minecraft/world/level/chunk/Palette net/minecraft/world/level/chunk/Palette +CL: net/minecraft/world/level/chunk/Palette$Factory net/minecraft/world/level/chunk/Palette$Factory +CL: net/minecraft/world/level/chunk/PaletteResize net/minecraft/world/level/chunk/PaletteResize +CL: net/minecraft/world/level/chunk/PalettedContainer net/minecraft/world/level/chunk/PalettedContainer +CL: net/minecraft/world/level/chunk/PalettedContainer$Configuration net/minecraft/world/level/chunk/PalettedContainer$Configuration +CL: net/minecraft/world/level/chunk/PalettedContainer$CountConsumer net/minecraft/world/level/chunk/PalettedContainer$CountConsumer +CL: net/minecraft/world/level/chunk/PalettedContainer$Data net/minecraft/world/level/chunk/PalettedContainer$Data +CL: net/minecraft/world/level/chunk/PalettedContainer$Strategy net/minecraft/world/level/chunk/PalettedContainer$Strategy +CL: net/minecraft/world/level/chunk/PalettedContainer$Strategy$1 net/minecraft/world/level/chunk/PalettedContainer$Strategy$1 +CL: net/minecraft/world/level/chunk/PalettedContainer$Strategy$2 net/minecraft/world/level/chunk/PalettedContainer$Strategy$2 +CL: net/minecraft/world/level/chunk/PalettedContainerRO net/minecraft/world/level/chunk/PalettedContainerRO +CL: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData net/minecraft/world/level/chunk/PalettedContainerRO$PackedData +CL: net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker +CL: net/minecraft/world/level/chunk/ProtoChunk net/minecraft/world/level/chunk/ProtoChunk +CL: net/minecraft/world/level/chunk/SingleValuePalette net/minecraft/world/level/chunk/SingleValuePalette +CL: net/minecraft/world/level/chunk/StructureAccess net/minecraft/world/level/chunk/StructureAccess +CL: net/minecraft/world/level/chunk/UpgradeData net/minecraft/world/level/chunk/UpgradeData +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixer net/minecraft/world/level/chunk/UpgradeData$BlockFixer +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers net/minecraft/world/level/chunk/UpgradeData$BlockFixers +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5 +CL: net/minecraft/world/level/chunk/package-info net/minecraft/world/level/chunk/package-info +CL: net/minecraft/world/level/chunk/storage/ChunkScanAccess net/minecraft/world/level/chunk/storage/ChunkScanAccess +CL: net/minecraft/world/level/chunk/storage/ChunkSerializer net/minecraft/world/level/chunk/storage/ChunkSerializer +CL: net/minecraft/world/level/chunk/storage/ChunkStorage net/minecraft/world/level/chunk/storage/ChunkStorage +CL: net/minecraft/world/level/chunk/storage/EntityStorage net/minecraft/world/level/chunk/storage/EntityStorage +CL: net/minecraft/world/level/chunk/storage/IOWorker net/minecraft/world/level/chunk/storage/IOWorker +CL: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore net/minecraft/world/level/chunk/storage/IOWorker$PendingStore +CL: net/minecraft/world/level/chunk/storage/IOWorker$Priority net/minecraft/world/level/chunk/storage/IOWorker$Priority +CL: net/minecraft/world/level/chunk/storage/RegionBitmap net/minecraft/world/level/chunk/storage/RegionBitmap +CL: net/minecraft/world/level/chunk/storage/RegionFile net/minecraft/world/level/chunk/storage/RegionFile +CL: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer +CL: net/minecraft/world/level/chunk/storage/RegionFile$CommitOp net/minecraft/world/level/chunk/storage/RegionFile$CommitOp +CL: net/minecraft/world/level/chunk/storage/RegionFileStorage net/minecraft/world/level/chunk/storage/RegionFileStorage +CL: net/minecraft/world/level/chunk/storage/RegionFileVersion net/minecraft/world/level/chunk/storage/RegionFileVersion +CL: net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper +CL: net/minecraft/world/level/chunk/storage/SectionStorage net/minecraft/world/level/chunk/storage/SectionStorage +CL: net/minecraft/world/level/chunk/storage/package-info net/minecraft/world/level/chunk/storage/package-info +CL: net/minecraft/world/level/dimension/BuiltinDimensionTypes net/minecraft/world/level/dimension/BuiltinDimensionTypes +CL: net/minecraft/world/level/dimension/DimensionDefaults net/minecraft/world/level/dimension/DimensionDefaults +CL: net/minecraft/world/level/dimension/DimensionType net/minecraft/world/level/dimension/DimensionType +CL: net/minecraft/world/level/dimension/DimensionType$MonsterSettings net/minecraft/world/level/dimension/DimensionType$MonsterSettings +CL: net/minecraft/world/level/dimension/LevelStem net/minecraft/world/level/dimension/LevelStem +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation net/minecraft/world/level/dimension/end/DragonRespawnAnimation +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5 +CL: net/minecraft/world/level/dimension/end/EndDragonFight net/minecraft/world/level/dimension/end/EndDragonFight +CL: net/minecraft/world/level/dimension/end/EndDragonFight$Data net/minecraft/world/level/dimension/end/EndDragonFight$Data +CL: net/minecraft/world/level/dimension/end/package-info net/minecraft/world/level/dimension/end/package-info +CL: net/minecraft/world/level/dimension/package-info net/minecraft/world/level/dimension/package-info +CL: net/minecraft/world/level/entity/ChunkEntities net/minecraft/world/level/entity/ChunkEntities +CL: net/minecraft/world/level/entity/ChunkStatusUpdateListener net/minecraft/world/level/entity/ChunkStatusUpdateListener +CL: net/minecraft/world/level/entity/EntityAccess net/minecraft/world/level/entity/EntityAccess +CL: net/minecraft/world/level/entity/EntityInLevelCallback net/minecraft/world/level/entity/EntityInLevelCallback +CL: net/minecraft/world/level/entity/EntityInLevelCallback$1 net/minecraft/world/level/entity/EntityInLevelCallback$1 +CL: net/minecraft/world/level/entity/EntityLookup net/minecraft/world/level/entity/EntityLookup +CL: net/minecraft/world/level/entity/EntityPersistentStorage net/minecraft/world/level/entity/EntityPersistentStorage +CL: net/minecraft/world/level/entity/EntitySection net/minecraft/world/level/entity/EntitySection +CL: net/minecraft/world/level/entity/EntitySectionStorage net/minecraft/world/level/entity/EntitySectionStorage +CL: net/minecraft/world/level/entity/EntityTickList net/minecraft/world/level/entity/EntityTickList +CL: net/minecraft/world/level/entity/EntityTypeTest net/minecraft/world/level/entity/EntityTypeTest +CL: net/minecraft/world/level/entity/EntityTypeTest$1 net/minecraft/world/level/entity/EntityTypeTest$1 +CL: net/minecraft/world/level/entity/LevelCallback net/minecraft/world/level/entity/LevelCallback +CL: net/minecraft/world/level/entity/LevelEntityGetter net/minecraft/world/level/entity/LevelEntityGetter +CL: net/minecraft/world/level/entity/LevelEntityGetterAdapter net/minecraft/world/level/entity/LevelEntityGetterAdapter +CL: net/minecraft/world/level/entity/PersistentEntitySectionManager net/minecraft/world/level/entity/PersistentEntitySectionManager +CL: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback +CL: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus +CL: net/minecraft/world/level/entity/TransientEntitySectionManager net/minecraft/world/level/entity/TransientEntitySectionManager +CL: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback net/minecraft/world/level/entity/TransientEntitySectionManager$Callback +CL: net/minecraft/world/level/entity/Visibility net/minecraft/world/level/entity/Visibility +CL: net/minecraft/world/level/entity/package-info net/minecraft/world/level/entity/package-info +CL: net/minecraft/world/level/gameevent/BlockPositionSource net/minecraft/world/level/gameevent/BlockPositionSource +CL: net/minecraft/world/level/gameevent/BlockPositionSource$Type net/minecraft/world/level/gameevent/BlockPositionSource$Type +CL: net/minecraft/world/level/gameevent/DynamicGameEventListener net/minecraft/world/level/gameevent/DynamicGameEventListener +CL: net/minecraft/world/level/gameevent/EntityPositionSource net/minecraft/world/level/gameevent/EntityPositionSource +CL: net/minecraft/world/level/gameevent/EntityPositionSource$Type net/minecraft/world/level/gameevent/EntityPositionSource$Type +CL: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry +CL: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction +CL: net/minecraft/world/level/gameevent/GameEvent net/minecraft/world/level/gameevent/GameEvent +CL: net/minecraft/world/level/gameevent/GameEvent$Context net/minecraft/world/level/gameevent/GameEvent$Context +CL: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo net/minecraft/world/level/gameevent/GameEvent$ListenerInfo +CL: net/minecraft/world/level/gameevent/GameEventDispatcher net/minecraft/world/level/gameevent/GameEventDispatcher +CL: net/minecraft/world/level/gameevent/GameEventListener net/minecraft/world/level/gameevent/GameEventListener +CL: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode +CL: net/minecraft/world/level/gameevent/GameEventListener$Holder net/minecraft/world/level/gameevent/GameEventListener$Holder +CL: net/minecraft/world/level/gameevent/GameEventListenerRegistry net/minecraft/world/level/gameevent/GameEventListenerRegistry +CL: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1 net/minecraft/world/level/gameevent/GameEventListenerRegistry$1 +CL: net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor +CL: net/minecraft/world/level/gameevent/PositionSource net/minecraft/world/level/gameevent/PositionSource +CL: net/minecraft/world/level/gameevent/PositionSourceType net/minecraft/world/level/gameevent/PositionSourceType +CL: net/minecraft/world/level/gameevent/package-info net/minecraft/world/level/gameevent/package-info +CL: net/minecraft/world/level/gameevent/vibrations/VibrationInfo net/minecraft/world/level/gameevent/vibrations/VibrationInfo +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSelector net/minecraft/world/level/gameevent/vibrations/VibrationSelector +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem net/minecraft/world/level/gameevent/vibrations/VibrationSystem +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User +CL: net/minecraft/world/level/gameevent/vibrations/package-info net/minecraft/world/level/gameevent/vibrations/package-info +CL: net/minecraft/world/level/levelgen/Aquifer net/minecraft/world/level/levelgen/Aquifer +CL: net/minecraft/world/level/levelgen/Aquifer$1 net/minecraft/world/level/levelgen/Aquifer$1 +CL: net/minecraft/world/level/levelgen/Aquifer$FluidPicker net/minecraft/world/level/levelgen/Aquifer$FluidPicker +CL: net/minecraft/world/level/levelgen/Aquifer$FluidStatus net/minecraft/world/level/levelgen/Aquifer$FluidStatus +CL: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer +CL: net/minecraft/world/level/levelgen/Beardifier net/minecraft/world/level/levelgen/Beardifier +CL: net/minecraft/world/level/levelgen/Beardifier$1 net/minecraft/world/level/levelgen/Beardifier$1 +CL: net/minecraft/world/level/levelgen/Beardifier$Rigid net/minecraft/world/level/levelgen/Beardifier$Rigid +CL: net/minecraft/world/level/levelgen/BelowZeroRetrogen net/minecraft/world/level/levelgen/BelowZeroRetrogen +CL: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1 net/minecraft/world/level/levelgen/BelowZeroRetrogen$1 +CL: net/minecraft/world/level/levelgen/BitRandomSource net/minecraft/world/level/levelgen/BitRandomSource +CL: net/minecraft/world/level/levelgen/Column net/minecraft/world/level/levelgen/Column +CL: net/minecraft/world/level/levelgen/Column$Line net/minecraft/world/level/levelgen/Column$Line +CL: net/minecraft/world/level/levelgen/Column$Range net/minecraft/world/level/levelgen/Column$Range +CL: net/minecraft/world/level/levelgen/Column$Ray net/minecraft/world/level/levelgen/Column$Ray +CL: net/minecraft/world/level/levelgen/DebugLevelSource net/minecraft/world/level/levelgen/DebugLevelSource +CL: net/minecraft/world/level/levelgen/Density net/minecraft/world/level/levelgen/Density +CL: net/minecraft/world/level/levelgen/DensityFunction net/minecraft/world/level/levelgen/DensityFunction +CL: net/minecraft/world/level/levelgen/DensityFunction$ContextProvider net/minecraft/world/level/levelgen/DensityFunction$ContextProvider +CL: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext net/minecraft/world/level/levelgen/DensityFunction$FunctionContext +CL: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder +CL: net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction +CL: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext +CL: net/minecraft/world/level/levelgen/DensityFunction$Visitor net/minecraft/world/level/levelgen/DensityFunction$Visitor +CL: net/minecraft/world/level/levelgen/DensityFunctions net/minecraft/world/level/levelgen/DensityFunctions +CL: net/minecraft/world/level/levelgen/DensityFunctions$1 net/minecraft/world/level/levelgen/DensityFunctions$1 +CL: net/minecraft/world/level/levelgen/DensityFunctions$Ap2 net/minecraft/world/level/levelgen/DensityFunctions$Ap2 +CL: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker +CL: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker +CL: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha +CL: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity +CL: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset +CL: net/minecraft/world/level/levelgen/DensityFunctions$Clamp net/minecraft/world/level/levelgen/DensityFunctions$Clamp +CL: net/minecraft/world/level/levelgen/DensityFunctions$Constant net/minecraft/world/level/levelgen/DensityFunctions$Constant +CL: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction +CL: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder +CL: net/minecraft/world/level/levelgen/DensityFunctions$Mapped net/minecraft/world/level/levelgen/DensityFunctions$Mapped +CL: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$Marker net/minecraft/world/level/levelgen/DensityFunctions$Marker +CL: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked +CL: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd +CL: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$Noise net/minecraft/world/level/levelgen/DensityFunctions$Noise +CL: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer +CL: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice +CL: net/minecraft/world/level/levelgen/DensityFunctions$Shift net/minecraft/world/level/levelgen/DensityFunctions$Shift +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA net/minecraft/world/level/levelgen/DensityFunctions$ShiftA +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB net/minecraft/world/level/levelgen/DensityFunctions$ShiftB +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise +CL: net/minecraft/world/level/levelgen/DensityFunctions$Spline net/minecraft/world/level/levelgen/DensityFunctions$Spline +CL: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate +CL: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point +CL: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext +CL: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction +CL: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler +CL: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper +CL: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient +CL: net/minecraft/world/level/levelgen/FlatLevelSource net/minecraft/world/level/levelgen/FlatLevelSource +CL: net/minecraft/world/level/levelgen/GenerationStep net/minecraft/world/level/levelgen/GenerationStep +CL: net/minecraft/world/level/levelgen/GenerationStep$Carving net/minecraft/world/level/levelgen/GenerationStep$Carving +CL: net/minecraft/world/level/levelgen/GenerationStep$Decoration net/minecraft/world/level/levelgen/GenerationStep$Decoration +CL: net/minecraft/world/level/levelgen/GeodeBlockSettings net/minecraft/world/level/levelgen/GeodeBlockSettings +CL: net/minecraft/world/level/levelgen/GeodeCrackSettings net/minecraft/world/level/levelgen/GeodeCrackSettings +CL: net/minecraft/world/level/levelgen/GeodeLayerSettings net/minecraft/world/level/levelgen/GeodeLayerSettings +CL: net/minecraft/world/level/levelgen/Heightmap net/minecraft/world/level/levelgen/Heightmap +CL: net/minecraft/world/level/levelgen/Heightmap$Types net/minecraft/world/level/levelgen/Heightmap$Types +CL: net/minecraft/world/level/levelgen/Heightmap$Usage net/minecraft/world/level/levelgen/Heightmap$Usage +CL: net/minecraft/world/level/levelgen/LegacyRandomSource net/minecraft/world/level/levelgen/LegacyRandomSource +CL: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory +CL: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian net/minecraft/world/level/levelgen/MarsagliaPolarGaussian +CL: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator +CL: net/minecraft/world/level/levelgen/NoiseChunk net/minecraft/world/level/levelgen/NoiseChunk +CL: net/minecraft/world/level/levelgen/NoiseChunk$1 net/minecraft/world/level/levelgen/NoiseChunk$1 +CL: net/minecraft/world/level/levelgen/NoiseChunk$2 net/minecraft/world/level/levelgen/NoiseChunk$2 +CL: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha +CL: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset +CL: net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller +CL: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D net/minecraft/world/level/levelgen/NoiseChunk$Cache2D +CL: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell +CL: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce +CL: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache net/minecraft/world/level/levelgen/NoiseChunk$FlatCache +CL: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction +CL: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator +CL: net/minecraft/world/level/levelgen/NoiseGeneratorSettings net/minecraft/world/level/levelgen/NoiseGeneratorSettings +CL: net/minecraft/world/level/levelgen/NoiseRouter net/minecraft/world/level/levelgen/NoiseRouter +CL: net/minecraft/world/level/levelgen/NoiseRouterData net/minecraft/world/level/levelgen/NoiseRouterData +CL: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity +CL: net/minecraft/world/level/levelgen/NoiseSettings net/minecraft/world/level/levelgen/NoiseSettings +CL: net/minecraft/world/level/levelgen/Noises net/minecraft/world/level/levelgen/Noises +CL: net/minecraft/world/level/levelgen/OreVeinifier net/minecraft/world/level/levelgen/OreVeinifier +CL: net/minecraft/world/level/levelgen/OreVeinifier$VeinType net/minecraft/world/level/levelgen/OreVeinifier$VeinType +CL: net/minecraft/world/level/levelgen/PatrolSpawner net/minecraft/world/level/levelgen/PatrolSpawner +CL: net/minecraft/world/level/levelgen/PhantomSpawner net/minecraft/world/level/levelgen/PhantomSpawner +CL: net/minecraft/world/level/levelgen/PositionalRandomFactory net/minecraft/world/level/levelgen/PositionalRandomFactory +CL: net/minecraft/world/level/levelgen/RandomState net/minecraft/world/level/levelgen/RandomState +CL: net/minecraft/world/level/levelgen/RandomState$1 net/minecraft/world/level/levelgen/RandomState$1 +CL: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper +CL: net/minecraft/world/level/levelgen/RandomSupport net/minecraft/world/level/levelgen/RandomSupport +CL: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit net/minecraft/world/level/levelgen/RandomSupport$Seed128bit +CL: net/minecraft/world/level/levelgen/SingleThreadedRandomSource net/minecraft/world/level/levelgen/SingleThreadedRandomSource +CL: net/minecraft/world/level/levelgen/SurfaceRules net/minecraft/world/level/levelgen/SurfaceRules +CL: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface +CL: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands net/minecraft/world/level/levelgen/SurfaceRules$Bandlands +CL: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$Condition net/minecraft/world/level/levelgen/SurfaceRules$Condition +CL: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context net/minecraft/world/level/levelgen/SurfaceRules$Context +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Hole net/minecraft/world/level/levelgen/SurfaceRules$Hole +CL: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition net/minecraft/world/level/levelgen/SurfaceRules$NotCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource net/minecraft/world/level/levelgen/SurfaceRules$RuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$StateRule net/minecraft/world/level/levelgen/SurfaceRules$StateRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$Steep net/minecraft/world/level/levelgen/SurfaceRules$Steep +CL: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck +CL: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$Temperature net/minecraft/world/level/levelgen/SurfaceRules$Temperature +CL: net/minecraft/world/level/levelgen/SurfaceRules$TestRule net/minecraft/world/level/levelgen/SurfaceRules$TestRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition +CL: net/minecraft/world/level/levelgen/SurfaceSystem net/minecraft/world/level/levelgen/SurfaceSystem +CL: net/minecraft/world/level/levelgen/SurfaceSystem$1 net/minecraft/world/level/levelgen/SurfaceSystem$1 +CL: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource +CL: net/minecraft/world/level/levelgen/VerticalAnchor net/minecraft/world/level/levelgen/VerticalAnchor +CL: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom +CL: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute net/minecraft/world/level/levelgen/VerticalAnchor$Absolute +CL: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop +CL: net/minecraft/world/level/levelgen/WorldDimensions net/minecraft/world/level/levelgen/WorldDimensions +CL: net/minecraft/world/level/levelgen/WorldDimensions$1Entry net/minecraft/world/level/levelgen/WorldDimensions$1Entry +CL: net/minecraft/world/level/levelgen/WorldDimensions$Complete net/minecraft/world/level/levelgen/WorldDimensions$Complete +CL: net/minecraft/world/level/levelgen/WorldGenSettings net/minecraft/world/level/levelgen/WorldGenSettings +CL: net/minecraft/world/level/levelgen/WorldGenerationContext net/minecraft/world/level/levelgen/WorldGenerationContext +CL: net/minecraft/world/level/levelgen/WorldOptions net/minecraft/world/level/levelgen/WorldOptions +CL: net/minecraft/world/level/levelgen/WorldgenRandom net/minecraft/world/level/levelgen/WorldgenRandom +CL: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm +CL: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus +CL: net/minecraft/world/level/levelgen/XoroshiroRandomSource net/minecraft/world/level/levelgen/XoroshiroRandomSource +CL: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory +CL: net/minecraft/world/level/levelgen/blending/Blender net/minecraft/world/level/levelgen/blending/Blender +CL: net/minecraft/world/level/levelgen/blending/Blender$1 net/minecraft/world/level/levelgen/blending/Blender$1 +CL: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput +CL: net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter +CL: net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter +CL: net/minecraft/world/level/levelgen/blending/BlendingData net/minecraft/world/level/levelgen/blending/BlendingData +CL: net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer +CL: net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer +CL: net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer +CL: net/minecraft/world/level/levelgen/blending/package-info net/minecraft/world/level/levelgen/blending/package-info +CL: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType +CL: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate net/minecraft/world/level/levelgen/blockpredicates/NotPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/package-info net/minecraft/world/level/levelgen/blockpredicates/package-info +CL: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration +CL: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration +CL: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver net/minecraft/world/level/levelgen/carver/CanyonWorldCarver +CL: net/minecraft/world/level/levelgen/carver/CarverConfiguration net/minecraft/world/level/levelgen/carver/CarverConfiguration +CL: net/minecraft/world/level/levelgen/carver/CarverDebugSettings net/minecraft/world/level/levelgen/carver/CarverDebugSettings +CL: net/minecraft/world/level/levelgen/carver/CarvingContext net/minecraft/world/level/levelgen/carver/CarvingContext +CL: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration +CL: net/minecraft/world/level/levelgen/carver/CaveWorldCarver net/minecraft/world/level/levelgen/carver/CaveWorldCarver +CL: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver +CL: net/minecraft/world/level/levelgen/carver/NetherWorldCarver net/minecraft/world/level/levelgen/carver/NetherWorldCarver +CL: net/minecraft/world/level/levelgen/carver/WorldCarver net/minecraft/world/level/levelgen/carver/WorldCarver +CL: net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker +CL: net/minecraft/world/level/levelgen/carver/package-info net/minecraft/world/level/levelgen/carver/package-info +CL: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/BambooFeature net/minecraft/world/level/levelgen/feature/BambooFeature +CL: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature +CL: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature net/minecraft/world/level/levelgen/feature/BasaltPillarFeature +CL: net/minecraft/world/level/levelgen/feature/BlockBlobFeature net/minecraft/world/level/levelgen/feature/BlockBlobFeature +CL: net/minecraft/world/level/levelgen/feature/BlockColumnFeature net/minecraft/world/level/levelgen/feature/BlockColumnFeature +CL: net/minecraft/world/level/levelgen/feature/BlockPileFeature net/minecraft/world/level/levelgen/feature/BlockPileFeature +CL: net/minecraft/world/level/levelgen/feature/BlueIceFeature net/minecraft/world/level/levelgen/feature/BlueIceFeature +CL: net/minecraft/world/level/levelgen/feature/BonusChestFeature net/minecraft/world/level/levelgen/feature/BonusChestFeature +CL: net/minecraft/world/level/levelgen/feature/ChorusPlantFeature net/minecraft/world/level/levelgen/feature/ChorusPlantFeature +CL: net/minecraft/world/level/levelgen/feature/ConfiguredFeature net/minecraft/world/level/levelgen/feature/ConfiguredFeature +CL: net/minecraft/world/level/levelgen/feature/CoralClawFeature net/minecraft/world/level/levelgen/feature/CoralClawFeature +CL: net/minecraft/world/level/levelgen/feature/CoralFeature net/minecraft/world/level/levelgen/feature/CoralFeature +CL: net/minecraft/world/level/levelgen/feature/CoralMushroomFeature net/minecraft/world/level/levelgen/feature/CoralMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/CoralTreeFeature net/minecraft/world/level/levelgen/feature/CoralTreeFeature +CL: net/minecraft/world/level/levelgen/feature/DeltaFeature net/minecraft/world/level/levelgen/feature/DeltaFeature +CL: net/minecraft/world/level/levelgen/feature/DesertWellFeature net/minecraft/world/level/levelgen/feature/DesertWellFeature +CL: net/minecraft/world/level/levelgen/feature/DiskFeature net/minecraft/world/level/levelgen/feature/DiskFeature +CL: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature +CL: net/minecraft/world/level/levelgen/feature/DripstoneUtils net/minecraft/world/level/levelgen/feature/DripstoneUtils +CL: net/minecraft/world/level/levelgen/feature/EndGatewayFeature net/minecraft/world/level/levelgen/feature/EndGatewayFeature +CL: net/minecraft/world/level/levelgen/feature/EndIslandFeature net/minecraft/world/level/levelgen/feature/EndIslandFeature +CL: net/minecraft/world/level/levelgen/feature/EndPodiumFeature net/minecraft/world/level/levelgen/feature/EndPodiumFeature +CL: net/minecraft/world/level/levelgen/feature/Feature net/minecraft/world/level/levelgen/feature/Feature +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker net/minecraft/world/level/levelgen/feature/FeatureCountTracker +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1 net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1 +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData +CL: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext net/minecraft/world/level/levelgen/feature/FeaturePlaceContext +CL: net/minecraft/world/level/levelgen/feature/FillLayerFeature net/minecraft/world/level/levelgen/feature/FillLayerFeature +CL: net/minecraft/world/level/levelgen/feature/FossilFeature net/minecraft/world/level/levelgen/feature/FossilFeature +CL: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/GeodeFeature net/minecraft/world/level/levelgen/feature/GeodeFeature +CL: net/minecraft/world/level/levelgen/feature/GlowstoneFeature net/minecraft/world/level/levelgen/feature/GlowstoneFeature +CL: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration +CL: net/minecraft/world/level/levelgen/feature/HugeFungusFeature net/minecraft/world/level/levelgen/feature/HugeFungusFeature +CL: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/IceSpikeFeature net/minecraft/world/level/levelgen/feature/IceSpikeFeature +CL: net/minecraft/world/level/levelgen/feature/IcebergFeature net/minecraft/world/level/levelgen/feature/IcebergFeature +CL: net/minecraft/world/level/levelgen/feature/KelpFeature net/minecraft/world/level/levelgen/feature/KelpFeature +CL: net/minecraft/world/level/levelgen/feature/LakeFeature net/minecraft/world/level/levelgen/feature/LakeFeature +CL: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration +CL: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature +CL: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone +CL: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter +CL: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature net/minecraft/world/level/levelgen/feature/MonsterRoomFeature +CL: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature +CL: net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature +CL: net/minecraft/world/level/levelgen/feature/NoOpFeature net/minecraft/world/level/levelgen/feature/NoOpFeature +CL: net/minecraft/world/level/levelgen/feature/OreFeature net/minecraft/world/level/levelgen/feature/OreFeature +CL: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature +CL: net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature +CL: net/minecraft/world/level/levelgen/feature/RandomPatchFeature net/minecraft/world/level/levelgen/feature/RandomPatchFeature +CL: net/minecraft/world/level/levelgen/feature/RandomSelectorFeature net/minecraft/world/level/levelgen/feature/RandomSelectorFeature +CL: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature +CL: net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature +CL: net/minecraft/world/level/levelgen/feature/RootSystemFeature net/minecraft/world/level/levelgen/feature/RootSystemFeature +CL: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature net/minecraft/world/level/levelgen/feature/ScatteredOreFeature +CL: net/minecraft/world/level/levelgen/feature/SculkPatchFeature net/minecraft/world/level/levelgen/feature/SculkPatchFeature +CL: net/minecraft/world/level/levelgen/feature/SeaPickleFeature net/minecraft/world/level/levelgen/feature/SeaPickleFeature +CL: net/minecraft/world/level/levelgen/feature/SeagrassFeature net/minecraft/world/level/levelgen/feature/SeagrassFeature +CL: net/minecraft/world/level/levelgen/feature/SimpleBlockFeature net/minecraft/world/level/levelgen/feature/SimpleBlockFeature +CL: net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature +CL: net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature +CL: net/minecraft/world/level/levelgen/feature/SpikeFeature net/minecraft/world/level/levelgen/feature/SpikeFeature +CL: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike +CL: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader +CL: net/minecraft/world/level/levelgen/feature/SpringFeature net/minecraft/world/level/levelgen/feature/SpringFeature +CL: net/minecraft/world/level/levelgen/feature/TreeFeature net/minecraft/world/level/levelgen/feature/TreeFeature +CL: net/minecraft/world/level/levelgen/feature/TreeFeature$1 net/minecraft/world/level/levelgen/feature/TreeFeature$1 +CL: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature net/minecraft/world/level/levelgen/feature/TwistingVinesFeature +CL: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature +CL: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature net/minecraft/world/level/levelgen/feature/VegetationPatchFeature +CL: net/minecraft/world/level/levelgen/feature/VinesFeature net/minecraft/world/level/levelgen/feature/VinesFeature +CL: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature +CL: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature +CL: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature net/minecraft/world/level/levelgen/feature/WeepingVinesFeature +CL: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig +CL: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState +CL: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder +CL: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig +CL: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/package-info net/minecraft/world/level/levelgen/feature/configurations/package-info +CL: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize +CL: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType +CL: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize +CL: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize +CL: net/minecraft/world/level/levelgen/feature/featuresize/package-info net/minecraft/world/level/levelgen/feature/featuresize/package-info +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/package-info net/minecraft/world/level/levelgen/feature/foliageplacers/package-info +CL: net/minecraft/world/level/levelgen/feature/package-info net/minecraft/world/level/levelgen/feature/package-info +CL: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement +CL: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement +CL: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer +CL: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer +CL: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType +CL: net/minecraft/world/level/levelgen/feature/rootplacers/package-info net/minecraft/world/level/levelgen/feature/rootplacers/package-info +CL: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType +CL: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule +CL: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/package-info net/minecraft/world/level/levelgen/feature/stateproviders/package-info +CL: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/package-info net/minecraft/world/level/levelgen/feature/treedecorators/package-info +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/package-info net/minecraft/world/level/levelgen/feature/trunkplacers/package-info +CL: net/minecraft/world/level/levelgen/flat/FlatLayerInfo net/minecraft/world/level/levelgen/flat/FlatLayerInfo +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings +CL: net/minecraft/world/level/levelgen/flat/package-info net/minecraft/world/level/levelgen/flat/package-info +CL: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight +CL: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight net/minecraft/world/level/levelgen/heightproviders/ConstantHeight +CL: net/minecraft/world/level/levelgen/heightproviders/HeightProvider net/minecraft/world/level/levelgen/heightproviders/HeightProvider +CL: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType net/minecraft/world/level/levelgen/heightproviders/HeightProviderType +CL: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight +CL: net/minecraft/world/level/levelgen/heightproviders/UniformHeight net/minecraft/world/level/levelgen/heightproviders/UniformHeight +CL: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight +CL: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight +CL: net/minecraft/world/level/levelgen/heightproviders/package-info net/minecraft/world/level/levelgen/heightproviders/package-info +CL: net/minecraft/world/level/levelgen/material/MaterialRuleList net/minecraft/world/level/levelgen/material/MaterialRuleList +CL: net/minecraft/world/level/levelgen/material/WorldGenMaterialRule net/minecraft/world/level/levelgen/material/WorldGenMaterialRule +CL: net/minecraft/world/level/levelgen/material/package-info net/minecraft/world/level/levelgen/material/package-info +CL: net/minecraft/world/level/levelgen/package-info net/minecraft/world/level/levelgen/package-info +CL: net/minecraft/world/level/levelgen/placement/BiomeFilter net/minecraft/world/level/levelgen/placement/BiomeFilter +CL: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter net/minecraft/world/level/levelgen/placement/BlockPredicateFilter +CL: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement +CL: net/minecraft/world/level/levelgen/placement/CaveSurface net/minecraft/world/level/levelgen/placement/CaveSurface +CL: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement +CL: net/minecraft/world/level/levelgen/placement/CountPlacement net/minecraft/world/level/levelgen/placement/CountPlacement +CL: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement +CL: net/minecraft/world/level/levelgen/placement/HeightRangePlacement net/minecraft/world/level/levelgen/placement/HeightRangePlacement +CL: net/minecraft/world/level/levelgen/placement/HeightmapPlacement net/minecraft/world/level/levelgen/placement/HeightmapPlacement +CL: net/minecraft/world/level/levelgen/placement/InSquarePlacement net/minecraft/world/level/levelgen/placement/InSquarePlacement +CL: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement +CL: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement +CL: net/minecraft/world/level/levelgen/placement/PlacedFeature net/minecraft/world/level/levelgen/placement/PlacedFeature +CL: net/minecraft/world/level/levelgen/placement/PlacementContext net/minecraft/world/level/levelgen/placement/PlacementContext +CL: net/minecraft/world/level/levelgen/placement/PlacementFilter net/minecraft/world/level/levelgen/placement/PlacementFilter +CL: net/minecraft/world/level/levelgen/placement/PlacementModifier net/minecraft/world/level/levelgen/placement/PlacementModifier +CL: net/minecraft/world/level/levelgen/placement/PlacementModifierType net/minecraft/world/level/levelgen/placement/PlacementModifierType +CL: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement +CL: net/minecraft/world/level/levelgen/placement/RarityFilter net/minecraft/world/level/levelgen/placement/RarityFilter +CL: net/minecraft/world/level/levelgen/placement/RepeatingPlacement net/minecraft/world/level/levelgen/placement/RepeatingPlacement +CL: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter +CL: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter +CL: net/minecraft/world/level/levelgen/placement/package-info net/minecraft/world/level/levelgen/placement/package-info +CL: net/minecraft/world/level/levelgen/presets/WorldPreset net/minecraft/world/level/levelgen/presets/WorldPreset +CL: net/minecraft/world/level/levelgen/presets/WorldPresets net/minecraft/world/level/levelgen/presets/WorldPresets +CL: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap +CL: net/minecraft/world/level/levelgen/presets/package-info net/minecraft/world/level/levelgen/presets/package-info +CL: net/minecraft/world/level/levelgen/structure/BoundingBox net/minecraft/world/level/levelgen/structure/BoundingBox +CL: net/minecraft/world/level/levelgen/structure/BoundingBox$1 net/minecraft/world/level/levelgen/structure/BoundingBox$1 +CL: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets net/minecraft/world/level/levelgen/structure/BuiltinStructureSets +CL: net/minecraft/world/level/levelgen/structure/BuiltinStructures net/minecraft/world/level/levelgen/structure/BuiltinStructures +CL: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler +CL: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece +CL: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor net/minecraft/world/level/levelgen/structure/PostPlacementProcessor +CL: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece +CL: net/minecraft/world/level/levelgen/structure/SinglePieceStructure net/minecraft/world/level/levelgen/structure/SinglePieceStructure +CL: net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor +CL: net/minecraft/world/level/levelgen/structure/Structure net/minecraft/world/level/levelgen/structure/Structure +CL: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext net/minecraft/world/level/levelgen/structure/Structure$GenerationContext +CL: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub net/minecraft/world/level/levelgen/structure/Structure$GenerationStub +CL: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings net/minecraft/world/level/levelgen/structure/Structure$StructureSettings +CL: net/minecraft/world/level/levelgen/structure/StructureCheck net/minecraft/world/level/levelgen/structure/StructureCheck +CL: net/minecraft/world/level/levelgen/structure/StructureCheckResult net/minecraft/world/level/levelgen/structure/StructureCheckResult +CL: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData +CL: net/minecraft/world/level/levelgen/structure/StructurePiece net/minecraft/world/level/levelgen/structure/StructurePiece +CL: net/minecraft/world/level/levelgen/structure/StructurePiece$1 net/minecraft/world/level/levelgen/structure/StructurePiece$1 +CL: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector +CL: net/minecraft/world/level/levelgen/structure/StructurePieceAccessor net/minecraft/world/level/levelgen/structure/StructurePieceAccessor +CL: net/minecraft/world/level/levelgen/structure/StructureSet net/minecraft/world/level/levelgen/structure/StructureSet +CL: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry +CL: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride net/minecraft/world/level/levelgen/structure/StructureSpawnOverride +CL: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType +CL: net/minecraft/world/level/levelgen/structure/StructureStart net/minecraft/world/level/levelgen/structure/StructureStart +CL: net/minecraft/world/level/levelgen/structure/StructureType net/minecraft/world/level/levelgen/structure/StructureType +CL: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece net/minecraft/world/level/levelgen/structure/TemplateStructurePiece +CL: net/minecraft/world/level/levelgen/structure/TerrainAdjustment net/minecraft/world/level/levelgen/structure/TerrainAdjustment +CL: net/minecraft/world/level/levelgen/structure/package-info net/minecraft/world/level/levelgen/structure/package-info +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context +CL: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder +CL: net/minecraft/world/level/levelgen/structure/pieces/package-info net/minecraft/world/level/levelgen/structure/pieces/package-info +CL: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement +CL: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement +CL: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType +CL: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1 net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1 +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement net/minecraft/world/level/levelgen/structure/placement/StructurePlacement +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType +CL: net/minecraft/world/level/levelgen/structure/placement/package-info net/minecraft/world/level/levelgen/structure/placement/package-info +CL: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction net/minecraft/world/level/levelgen/structure/pools/JigsawJunction +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer +CL: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement net/minecraft/world/level/levelgen/structure/pools/ListPoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType +CL: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool +CL: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection +CL: net/minecraft/world/level/levelgen/structure/pools/package-info net/minecraft/world/level/levelgen/structure/pools/package-info +CL: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces +CL: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece +CL: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure +CL: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece +CL: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces net/minecraft/world/level/levelgen/structure/structures/EndCityPieces +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure net/minecraft/world/level/levelgen/structure/structures/EndCityStructure +CL: net/minecraft/world/level/levelgen/structure/structures/IglooPieces net/minecraft/world/level/levelgen/structure/structures/IglooPieces +CL: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece +CL: net/minecraft/world/level/levelgen/structure/structures/IglooStructure net/minecraft/world/level/levelgen/structure/structures/IglooStructure +CL: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure net/minecraft/world/level/levelgen/structure/structures/JigsawStructure +CL: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1 net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1 +CL: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece +CL: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector +CL: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1 net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1 net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1 net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1 net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup +CL: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces +CL: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece +CL: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2 +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3 +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure +CL: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece +CL: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure +CL: net/minecraft/world/level/levelgen/structure/structures/package-info net/minecraft/world/level/levelgen/structure/structures/package-info +CL: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule +CL: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1 net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1 +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source +CL: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/package-info net/minecraft/world/level/levelgen/structure/templatesystem/package-info +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info +CL: net/minecraft/world/level/levelgen/synth/BlendedNoise net/minecraft/world/level/levelgen/synth/BlendedNoise +CL: net/minecraft/world/level/levelgen/synth/ImprovedNoise net/minecraft/world/level/levelgen/synth/ImprovedNoise +CL: net/minecraft/world/level/levelgen/synth/NoiseUtils net/minecraft/world/level/levelgen/synth/NoiseUtils +CL: net/minecraft/world/level/levelgen/synth/NormalNoise net/minecraft/world/level/levelgen/synth/NormalNoise +CL: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters +CL: net/minecraft/world/level/levelgen/synth/PerlinNoise net/minecraft/world/level/levelgen/synth/PerlinNoise +CL: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise +CL: net/minecraft/world/level/levelgen/synth/SimplexNoise net/minecraft/world/level/levelgen/synth/SimplexNoise +CL: net/minecraft/world/level/levelgen/synth/package-info net/minecraft/world/level/levelgen/synth/package-info +CL: net/minecraft/world/level/lighting/BlockLightEngine net/minecraft/world/level/lighting/BlockLightEngine +CL: net/minecraft/world/level/lighting/BlockLightSectionStorage net/minecraft/world/level/lighting/BlockLightSectionStorage +CL: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap +CL: net/minecraft/world/level/lighting/ChunkSkyLightSources net/minecraft/world/level/lighting/ChunkSkyLightSources +CL: net/minecraft/world/level/lighting/DataLayerStorageMap net/minecraft/world/level/lighting/DataLayerStorageMap +CL: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint +CL: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1 net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1 +CL: net/minecraft/world/level/lighting/LayerLightEventListener net/minecraft/world/level/lighting/LayerLightEventListener +CL: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener +CL: net/minecraft/world/level/lighting/LayerLightSectionStorage net/minecraft/world/level/lighting/LayerLightSectionStorage +CL: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState +CL: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType +CL: net/minecraft/world/level/lighting/LevelLightEngine net/minecraft/world/level/lighting/LevelLightEngine +CL: net/minecraft/world/level/lighting/LeveledPriorityQueue net/minecraft/world/level/lighting/LeveledPriorityQueue +CL: net/minecraft/world/level/lighting/LeveledPriorityQueue$1 net/minecraft/world/level/lighting/LeveledPriorityQueue$1 +CL: net/minecraft/world/level/lighting/LightEngine net/minecraft/world/level/lighting/LightEngine +CL: net/minecraft/world/level/lighting/LightEngine$QueueEntry net/minecraft/world/level/lighting/LightEngine$QueueEntry +CL: net/minecraft/world/level/lighting/LightEventListener net/minecraft/world/level/lighting/LightEventListener +CL: net/minecraft/world/level/lighting/SkyLightEngine net/minecraft/world/level/lighting/SkyLightEngine +CL: net/minecraft/world/level/lighting/SkyLightEngine$1 net/minecraft/world/level/lighting/SkyLightEngine$1 +CL: net/minecraft/world/level/lighting/SkyLightSectionStorage net/minecraft/world/level/lighting/SkyLightSectionStorage +CL: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap +CL: net/minecraft/world/level/lighting/SpatialLongSet net/minecraft/world/level/lighting/SpatialLongSet +CL: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap net/minecraft/world/level/lighting/SpatialLongSet$InternalMap +CL: net/minecraft/world/level/lighting/package-info net/minecraft/world/level/lighting/package-info +CL: net/minecraft/world/level/material/EmptyFluid net/minecraft/world/level/material/EmptyFluid +CL: net/minecraft/world/level/material/FlowingFluid net/minecraft/world/level/material/FlowingFluid +CL: net/minecraft/world/level/material/FlowingFluid$1 net/minecraft/world/level/material/FlowingFluid$1 +CL: net/minecraft/world/level/material/Fluid net/minecraft/world/level/material/Fluid +CL: net/minecraft/world/level/material/FluidState net/minecraft/world/level/material/FluidState +CL: net/minecraft/world/level/material/Fluids net/minecraft/world/level/material/Fluids +CL: net/minecraft/world/level/material/FogType net/minecraft/world/level/material/FogType +CL: net/minecraft/world/level/material/LavaFluid net/minecraft/world/level/material/LavaFluid +CL: net/minecraft/world/level/material/LavaFluid$Flowing net/minecraft/world/level/material/LavaFluid$Flowing +CL: net/minecraft/world/level/material/LavaFluid$Source net/minecraft/world/level/material/LavaFluid$Source +CL: net/minecraft/world/level/material/MapColor net/minecraft/world/level/material/MapColor +CL: net/minecraft/world/level/material/MapColor$Brightness net/minecraft/world/level/material/MapColor$Brightness +CL: net/minecraft/world/level/material/PushReaction net/minecraft/world/level/material/PushReaction +CL: net/minecraft/world/level/material/WaterFluid net/minecraft/world/level/material/WaterFluid +CL: net/minecraft/world/level/material/WaterFluid$Flowing net/minecraft/world/level/material/WaterFluid$Flowing +CL: net/minecraft/world/level/material/WaterFluid$Source net/minecraft/world/level/material/WaterFluid$Source +CL: net/minecraft/world/level/material/package-info net/minecraft/world/level/material/package-info +CL: net/minecraft/world/level/package-info net/minecraft/world/level/package-info +CL: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator +CL: net/minecraft/world/level/pathfinder/BinaryHeap net/minecraft/world/level/pathfinder/BinaryHeap +CL: net/minecraft/world/level/pathfinder/BlockPathTypes net/minecraft/world/level/pathfinder/BlockPathTypes +CL: net/minecraft/world/level/pathfinder/FlyNodeEvaluator net/minecraft/world/level/pathfinder/FlyNodeEvaluator +CL: net/minecraft/world/level/pathfinder/Node net/minecraft/world/level/pathfinder/Node +CL: net/minecraft/world/level/pathfinder/NodeEvaluator net/minecraft/world/level/pathfinder/NodeEvaluator +CL: net/minecraft/world/level/pathfinder/Path net/minecraft/world/level/pathfinder/Path +CL: net/minecraft/world/level/pathfinder/PathComputationType net/minecraft/world/level/pathfinder/PathComputationType +CL: net/minecraft/world/level/pathfinder/PathFinder net/minecraft/world/level/pathfinder/PathFinder +CL: net/minecraft/world/level/pathfinder/SwimNodeEvaluator net/minecraft/world/level/pathfinder/SwimNodeEvaluator +CL: net/minecraft/world/level/pathfinder/Target net/minecraft/world/level/pathfinder/Target +CL: net/minecraft/world/level/pathfinder/WalkNodeEvaluator net/minecraft/world/level/pathfinder/WalkNodeEvaluator +CL: net/minecraft/world/level/pathfinder/package-info net/minecraft/world/level/pathfinder/package-info +CL: net/minecraft/world/level/portal/PortalForcer net/minecraft/world/level/portal/PortalForcer +CL: net/minecraft/world/level/portal/PortalInfo net/minecraft/world/level/portal/PortalInfo +CL: net/minecraft/world/level/portal/PortalShape net/minecraft/world/level/portal/PortalShape +CL: net/minecraft/world/level/portal/package-info net/minecraft/world/level/portal/package-info +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater net/minecraft/world/level/redstone/CollectingNeighborUpdater +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate +CL: net/minecraft/world/level/redstone/InstantNeighborUpdater net/minecraft/world/level/redstone/InstantNeighborUpdater +CL: net/minecraft/world/level/redstone/NeighborUpdater net/minecraft/world/level/redstone/NeighborUpdater +CL: net/minecraft/world/level/redstone/Redstone net/minecraft/world/level/redstone/Redstone +CL: net/minecraft/world/level/redstone/package-info net/minecraft/world/level/redstone/package-info +CL: net/minecraft/world/level/saveddata/SavedData net/minecraft/world/level/saveddata/SavedData +CL: net/minecraft/world/level/saveddata/maps/MapBanner net/minecraft/world/level/saveddata/maps/MapBanner +CL: net/minecraft/world/level/saveddata/maps/MapBanner$1 net/minecraft/world/level/saveddata/maps/MapBanner$1 +CL: net/minecraft/world/level/saveddata/maps/MapDecoration net/minecraft/world/level/saveddata/maps/MapDecoration +CL: net/minecraft/world/level/saveddata/maps/MapDecoration$Type net/minecraft/world/level/saveddata/maps/MapDecoration$Type +CL: net/minecraft/world/level/saveddata/maps/MapFrame net/minecraft/world/level/saveddata/maps/MapFrame +CL: net/minecraft/world/level/saveddata/maps/MapIndex net/minecraft/world/level/saveddata/maps/MapIndex +CL: net/minecraft/world/level/saveddata/maps/MapItemSavedData net/minecraft/world/level/saveddata/maps/MapItemSavedData +CL: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer +CL: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch +CL: net/minecraft/world/level/saveddata/maps/package-info net/minecraft/world/level/saveddata/maps/package-info +CL: net/minecraft/world/level/saveddata/package-info net/minecraft/world/level/saveddata/package-info +CL: net/minecraft/world/level/storage/CommandStorage net/minecraft/world/level/storage/CommandStorage +CL: net/minecraft/world/level/storage/CommandStorage$Container net/minecraft/world/level/storage/CommandStorage$Container +CL: net/minecraft/world/level/storage/DataVersion net/minecraft/world/level/storage/DataVersion +CL: net/minecraft/world/level/storage/DerivedLevelData net/minecraft/world/level/storage/DerivedLevelData +CL: net/minecraft/world/level/storage/DimensionDataStorage net/minecraft/world/level/storage/DimensionDataStorage +CL: net/minecraft/world/level/storage/LevelData net/minecraft/world/level/storage/LevelData +CL: net/minecraft/world/level/storage/LevelResource net/minecraft/world/level/storage/LevelResource +CL: net/minecraft/world/level/storage/LevelStorageException net/minecraft/world/level/storage/LevelStorageException +CL: net/minecraft/world/level/storage/LevelStorageSource net/minecraft/world/level/storage/LevelStorageSource +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1 net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1 +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2 net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2 +CL: net/minecraft/world/level/storage/LevelSummary net/minecraft/world/level/storage/LevelSummary +CL: net/minecraft/world/level/storage/LevelSummary$BackupStatus net/minecraft/world/level/storage/LevelSummary$BackupStatus +CL: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary +CL: net/minecraft/world/level/storage/LevelVersion net/minecraft/world/level/storage/LevelVersion +CL: net/minecraft/world/level/storage/PlayerDataStorage net/minecraft/world/level/storage/PlayerDataStorage +CL: net/minecraft/world/level/storage/PrimaryLevelData net/minecraft/world/level/storage/PrimaryLevelData +CL: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty +CL: net/minecraft/world/level/storage/ServerLevelData net/minecraft/world/level/storage/ServerLevelData +CL: net/minecraft/world/level/storage/WorldData net/minecraft/world/level/storage/WorldData +CL: net/minecraft/world/level/storage/WritableLevelData net/minecraft/world/level/storage/WritableLevelData +CL: net/minecraft/world/level/storage/loot/BuiltInLootTables net/minecraft/world/level/storage/loot/BuiltInLootTables +CL: net/minecraft/world/level/storage/loot/Deserializers net/minecraft/world/level/storage/loot/Deserializers +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory net/minecraft/world/level/storage/loot/GsonAdapterFactory +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter +CL: net/minecraft/world/level/storage/loot/IntRange net/minecraft/world/level/storage/loot/IntRange +CL: net/minecraft/world/level/storage/loot/IntRange$IntChecker net/minecraft/world/level/storage/loot/IntRange$IntChecker +CL: net/minecraft/world/level/storage/loot/IntRange$IntLimiter net/minecraft/world/level/storage/loot/IntRange$IntLimiter +CL: net/minecraft/world/level/storage/loot/IntRange$Serializer net/minecraft/world/level/storage/loot/IntRange$Serializer +CL: net/minecraft/world/level/storage/loot/LootContext net/minecraft/world/level/storage/loot/LootContext +CL: net/minecraft/world/level/storage/loot/LootContext$Builder net/minecraft/world/level/storage/loot/LootContext$Builder +CL: net/minecraft/world/level/storage/loot/LootContext$EntityTarget net/minecraft/world/level/storage/loot/LootContext$EntityTarget +CL: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer +CL: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry net/minecraft/world/level/storage/loot/LootContext$VisitedEntry +CL: net/minecraft/world/level/storage/loot/LootContextUser net/minecraft/world/level/storage/loot/LootContextUser +CL: net/minecraft/world/level/storage/loot/LootDataId net/minecraft/world/level/storage/loot/LootDataId +CL: net/minecraft/world/level/storage/loot/LootDataManager net/minecraft/world/level/storage/loot/LootDataManager +CL: net/minecraft/world/level/storage/loot/LootDataManager$1 net/minecraft/world/level/storage/loot/LootDataManager$1 +CL: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate +CL: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence +CL: net/minecraft/world/level/storage/loot/LootDataResolver net/minecraft/world/level/storage/loot/LootDataResolver +CL: net/minecraft/world/level/storage/loot/LootDataType net/minecraft/world/level/storage/loot/LootDataType +CL: net/minecraft/world/level/storage/loot/LootDataType$Validator net/minecraft/world/level/storage/loot/LootDataType$Validator +CL: net/minecraft/world/level/storage/loot/LootParams net/minecraft/world/level/storage/loot/LootParams +CL: net/minecraft/world/level/storage/loot/LootParams$Builder net/minecraft/world/level/storage/loot/LootParams$Builder +CL: net/minecraft/world/level/storage/loot/LootParams$DynamicDrop net/minecraft/world/level/storage/loot/LootParams$DynamicDrop +CL: net/minecraft/world/level/storage/loot/LootPool net/minecraft/world/level/storage/loot/LootPool +CL: net/minecraft/world/level/storage/loot/LootPool$Builder net/minecraft/world/level/storage/loot/LootPool$Builder +CL: net/minecraft/world/level/storage/loot/LootPool$Serializer net/minecraft/world/level/storage/loot/LootPool$Serializer +CL: net/minecraft/world/level/storage/loot/LootTable net/minecraft/world/level/storage/loot/LootTable +CL: net/minecraft/world/level/storage/loot/LootTable$Builder net/minecraft/world/level/storage/loot/LootTable$Builder +CL: net/minecraft/world/level/storage/loot/LootTable$Serializer net/minecraft/world/level/storage/loot/LootTable$Serializer +CL: net/minecraft/world/level/storage/loot/Serializer net/minecraft/world/level/storage/loot/Serializer +CL: net/minecraft/world/level/storage/loot/SerializerType net/minecraft/world/level/storage/loot/SerializerType +CL: net/minecraft/world/level/storage/loot/ValidationContext net/minecraft/world/level/storage/loot/ValidationContext +CL: net/minecraft/world/level/storage/loot/entries/AlternativesEntry net/minecraft/world/level/storage/loot/entries/AlternativesEntry +CL: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder +CL: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer +CL: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase net/minecraft/world/level/storage/loot/entries/CompositeEntryBase +CL: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1 net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1 +CL: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor +CL: net/minecraft/world/level/storage/loot/entries/DynamicLoot net/minecraft/world/level/storage/loot/entries/DynamicLoot +CL: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer +CL: net/minecraft/world/level/storage/loot/entries/EmptyLootItem net/minecraft/world/level/storage/loot/entries/EmptyLootItem +CL: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer +CL: net/minecraft/world/level/storage/loot/entries/EntryGroup net/minecraft/world/level/storage/loot/entries/EntryGroup +CL: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder +CL: net/minecraft/world/level/storage/loot/entries/LootItem net/minecraft/world/level/storage/loot/entries/LootItem +CL: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer net/minecraft/world/level/storage/loot/entries/LootItem$Serializer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntries net/minecraft/world/level/storage/loot/entries/LootPoolEntries +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntry net/minecraft/world/level/storage/loot/entries/LootPoolEntry +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryType net/minecraft/world/level/storage/loot/entries/LootPoolEntryType +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1 net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1 +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer +CL: net/minecraft/world/level/storage/loot/entries/LootTableReference net/minecraft/world/level/storage/loot/entries/LootTableReference +CL: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer +CL: net/minecraft/world/level/storage/loot/entries/SequentialEntry net/minecraft/world/level/storage/loot/entries/SequentialEntry +CL: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder +CL: net/minecraft/world/level/storage/loot/entries/TagEntry net/minecraft/world/level/storage/loot/entries/TagEntry +CL: net/minecraft/world/level/storage/loot/entries/TagEntry$1 net/minecraft/world/level/storage/loot/entries/TagEntry$1 +CL: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer +CL: net/minecraft/world/level/storage/loot/entries/package-info net/minecraft/world/level/storage/loot/entries/package-info +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount net/minecraft/world/level/storage/loot/functions/ApplyBonusCount +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount +CL: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay +CL: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer +CL: net/minecraft/world/level/storage/loot/functions/CopyBlockState net/minecraft/world/level/storage/loot/functions/CopyBlockState +CL: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder +CL: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer +CL: net/minecraft/world/level/storage/loot/functions/CopyNameFunction net/minecraft/world/level/storage/loot/functions/CopyNameFunction +CL: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource +CL: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction net/minecraft/world/level/storage/loot/functions/CopyNbtFunction +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1 +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2 +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3 +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction +CL: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction +CL: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction +CL: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/FillPlayerHead net/minecraft/world/level/storage/loot/functions/FillPlayerHead +CL: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer +CL: net/minecraft/world/level/storage/loot/functions/FunctionReference net/minecraft/world/level/storage/loot/functions/FunctionReference +CL: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer +CL: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder +CL: net/minecraft/world/level/storage/loot/functions/LimitCount net/minecraft/world/level/storage/loot/functions/LimitCount +CL: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunction net/minecraft/world/level/storage/loot/functions/LootItemFunction +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunctionType net/minecraft/world/level/storage/loot/functions/LootItemFunctionType +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunctions net/minecraft/world/level/storage/loot/functions/LootItemFunctions +CL: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction +CL: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction net/minecraft/world/level/storage/loot/functions/SetAttributesFunction +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1 net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1 +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction +CL: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetContainerContents net/minecraft/world/level/storage/loot/functions/SetContainerContents +CL: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable net/minecraft/world/level/storage/loot/functions/SetContainerLootTable +CL: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction +CL: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction +CL: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction net/minecraft/world/level/storage/loot/functions/SetItemCountFunction +CL: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction +CL: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetLoreFunction net/minecraft/world/level/storage/loot/functions/SetLoreFunction +CL: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetNameFunction net/minecraft/world/level/storage/loot/functions/SetNameFunction +CL: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetNbtFunction net/minecraft/world/level/storage/loot/functions/SetNbtFunction +CL: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetPotionFunction net/minecraft/world/level/storage/loot/functions/SetPotionFunction +CL: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction +CL: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction net/minecraft/world/level/storage/loot/functions/SmeltItemFunction +CL: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/package-info net/minecraft/world/level/storage/loot/functions/package-info +CL: net/minecraft/world/level/storage/loot/package-info net/minecraft/world/level/storage/loot/package-info +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParam net/minecraft/world/level/storage/loot/parameters/LootContextParam +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet net/minecraft/world/level/storage/loot/parameters/LootContextParamSet +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets net/minecraft/world/level/storage/loot/parameters/LootContextParamSets +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParams net/minecraft/world/level/storage/loot/parameters/LootContextParams +CL: net/minecraft/world/level/storage/loot/parameters/package-info net/minecraft/world/level/storage/loot/parameters/package-info +CL: net/minecraft/world/level/storage/loot/predicates/AllOfCondition net/minecraft/world/level/storage/loot/predicates/AllOfCondition +CL: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition net/minecraft/world/level/storage/loot/predicates/AnyOfCondition +CL: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition +CL: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition +CL: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ConditionReference net/minecraft/world/level/storage/loot/predicates/ConditionReference +CL: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder +CL: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition +CL: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition +CL: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition net/minecraft/world/level/storage/loot/predicates/ExplosionCondition +CL: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition +CL: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LocationCheck net/minecraft/world/level/storage/loot/predicates/LocationCheck +CL: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemCondition net/minecraft/world/level/storage/loot/predicates/LootItemCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/LootItemConditionType net/minecraft/world/level/storage/loot/predicates/LootItemConditionType +CL: net/minecraft/world/level/storage/loot/predicates/LootItemConditions net/minecraft/world/level/storage/loot/predicates/LootItemConditions +CL: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/MatchTool net/minecraft/world/level/storage/loot/predicates/MatchTool +CL: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/TimeCheck net/minecraft/world/level/storage/loot/predicates/TimeCheck +CL: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder +CL: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition +CL: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/WeatherCheck net/minecraft/world/level/storage/loot/predicates/WeatherCheck +CL: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder +CL: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/package-info net/minecraft/world/level/storage/loot/predicates/package-info +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1 net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1 +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2 net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2 +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType +CL: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider +CL: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders +CL: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider +CL: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/nbt/package-info net/minecraft/world/level/storage/loot/providers/nbt/package-info +CL: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator +CL: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/ConstantValue net/minecraft/world/level/storage/loot/providers/number/ConstantValue +CL: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer +CL: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType +CL: net/minecraft/world/level/storage/loot/providers/number/NumberProvider net/minecraft/world/level/storage/loot/providers/number/NumberProvider +CL: net/minecraft/world/level/storage/loot/providers/number/NumberProviders net/minecraft/world/level/storage/loot/providers/number/NumberProviders +CL: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue +CL: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator net/minecraft/world/level/storage/loot/providers/number/UniformGenerator +CL: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/package-info net/minecraft/world/level/storage/loot/providers/number/package-info +CL: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider +CL: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer +CL: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider +CL: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType +CL: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider +CL: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders +CL: net/minecraft/world/level/storage/loot/providers/score/package-info net/minecraft/world/level/storage/loot/providers/score/package-info +CL: net/minecraft/world/level/storage/package-info net/minecraft/world/level/storage/package-info +CL: net/minecraft/world/level/timers/FunctionCallback net/minecraft/world/level/timers/FunctionCallback +CL: net/minecraft/world/level/timers/FunctionCallback$Serializer net/minecraft/world/level/timers/FunctionCallback$Serializer +CL: net/minecraft/world/level/timers/FunctionTagCallback net/minecraft/world/level/timers/FunctionTagCallback +CL: net/minecraft/world/level/timers/FunctionTagCallback$Serializer net/minecraft/world/level/timers/FunctionTagCallback$Serializer +CL: net/minecraft/world/level/timers/TimerCallback net/minecraft/world/level/timers/TimerCallback +CL: net/minecraft/world/level/timers/TimerCallback$Serializer net/minecraft/world/level/timers/TimerCallback$Serializer +CL: net/minecraft/world/level/timers/TimerCallbacks net/minecraft/world/level/timers/TimerCallbacks +CL: net/minecraft/world/level/timers/TimerQueue net/minecraft/world/level/timers/TimerQueue +CL: net/minecraft/world/level/timers/TimerQueue$Event net/minecraft/world/level/timers/TimerQueue$Event +CL: net/minecraft/world/level/timers/package-info net/minecraft/world/level/timers/package-info +CL: net/minecraft/world/level/validation/ContentValidationException net/minecraft/world/level/validation/ContentValidationException +CL: net/minecraft/world/level/validation/DirectoryValidator net/minecraft/world/level/validation/DirectoryValidator +CL: net/minecraft/world/level/validation/DirectoryValidator$1 net/minecraft/world/level/validation/DirectoryValidator$1 +CL: net/minecraft/world/level/validation/ForbiddenSymlinkInfo net/minecraft/world/level/validation/ForbiddenSymlinkInfo +CL: net/minecraft/world/level/validation/PathAllowList net/minecraft/world/level/validation/PathAllowList +CL: net/minecraft/world/level/validation/PathAllowList$ConfigEntry net/minecraft/world/level/validation/PathAllowList$ConfigEntry +CL: net/minecraft/world/level/validation/PathAllowList$EntryType net/minecraft/world/level/validation/PathAllowList$EntryType +CL: net/minecraft/world/level/validation/package-info net/minecraft/world/level/validation/package-info +CL: net/minecraft/world/package-info net/minecraft/world/package-info +CL: net/minecraft/world/phys/AABB net/minecraft/world/phys/AABB +CL: net/minecraft/world/phys/BlockHitResult net/minecraft/world/phys/BlockHitResult +CL: net/minecraft/world/phys/EntityHitResult net/minecraft/world/phys/EntityHitResult +CL: net/minecraft/world/phys/HitResult net/minecraft/world/phys/HitResult +CL: net/minecraft/world/phys/HitResult$Type net/minecraft/world/phys/HitResult$Type +CL: net/minecraft/world/phys/Vec2 net/minecraft/world/phys/Vec2 +CL: net/minecraft/world/phys/Vec3 net/minecraft/world/phys/Vec3 +CL: net/minecraft/world/phys/package-info net/minecraft/world/phys/package-info +CL: net/minecraft/world/phys/shapes/ArrayVoxelShape net/minecraft/world/phys/shapes/ArrayVoxelShape +CL: net/minecraft/world/phys/shapes/ArrayVoxelShape$1 net/minecraft/world/phys/shapes/ArrayVoxelShape$1 +CL: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape +CL: net/minecraft/world/phys/shapes/BooleanOp net/minecraft/world/phys/shapes/BooleanOp +CL: net/minecraft/world/phys/shapes/CollisionContext net/minecraft/world/phys/shapes/CollisionContext +CL: net/minecraft/world/phys/shapes/CubePointRange net/minecraft/world/phys/shapes/CubePointRange +CL: net/minecraft/world/phys/shapes/CubeVoxelShape net/minecraft/world/phys/shapes/CubeVoxelShape +CL: net/minecraft/world/phys/shapes/DiscreteCubeMerger net/minecraft/world/phys/shapes/DiscreteCubeMerger +CL: net/minecraft/world/phys/shapes/DiscreteVoxelShape net/minecraft/world/phys/shapes/DiscreteVoxelShape +CL: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer +CL: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer +CL: net/minecraft/world/phys/shapes/EntityCollisionContext net/minecraft/world/phys/shapes/EntityCollisionContext +CL: net/minecraft/world/phys/shapes/EntityCollisionContext$1 net/minecraft/world/phys/shapes/EntityCollisionContext$1 +CL: net/minecraft/world/phys/shapes/IdenticalMerger net/minecraft/world/phys/shapes/IdenticalMerger +CL: net/minecraft/world/phys/shapes/IndexMerger net/minecraft/world/phys/shapes/IndexMerger +CL: net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer +CL: net/minecraft/world/phys/shapes/IndirectMerger net/minecraft/world/phys/shapes/IndirectMerger +CL: net/minecraft/world/phys/shapes/NonOverlappingMerger net/minecraft/world/phys/shapes/NonOverlappingMerger +CL: net/minecraft/world/phys/shapes/OffsetDoubleList net/minecraft/world/phys/shapes/OffsetDoubleList +CL: net/minecraft/world/phys/shapes/Shapes net/minecraft/world/phys/shapes/Shapes +CL: net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer +CL: net/minecraft/world/phys/shapes/SliceShape net/minecraft/world/phys/shapes/SliceShape +CL: net/minecraft/world/phys/shapes/SubShape net/minecraft/world/phys/shapes/SubShape +CL: net/minecraft/world/phys/shapes/VoxelShape net/minecraft/world/phys/shapes/VoxelShape +CL: net/minecraft/world/phys/shapes/package-info net/minecraft/world/phys/shapes/package-info +CL: net/minecraft/world/scores/Objective net/minecraft/world/scores/Objective +CL: net/minecraft/world/scores/PlayerTeam net/minecraft/world/scores/PlayerTeam +CL: net/minecraft/world/scores/Score net/minecraft/world/scores/Score +CL: net/minecraft/world/scores/Scoreboard net/minecraft/world/scores/Scoreboard +CL: net/minecraft/world/scores/ScoreboardSaveData net/minecraft/world/scores/ScoreboardSaveData +CL: net/minecraft/world/scores/Team net/minecraft/world/scores/Team +CL: net/minecraft/world/scores/Team$CollisionRule net/minecraft/world/scores/Team$CollisionRule +CL: net/minecraft/world/scores/Team$Visibility net/minecraft/world/scores/Team$Visibility +CL: net/minecraft/world/scores/criteria/ObjectiveCriteria net/minecraft/world/scores/criteria/ObjectiveCriteria +CL: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType +CL: net/minecraft/world/scores/criteria/package-info net/minecraft/world/scores/criteria/package-info +CL: net/minecraft/world/scores/package-info net/minecraft/world/scores/package-info +CL: net/minecraft/world/ticks/BlackholeTickAccess net/minecraft/world/ticks/BlackholeTickAccess +CL: net/minecraft/world/ticks/BlackholeTickAccess$1 net/minecraft/world/ticks/BlackholeTickAccess$1 +CL: net/minecraft/world/ticks/BlackholeTickAccess$2 net/minecraft/world/ticks/BlackholeTickAccess$2 +CL: net/minecraft/world/ticks/ContainerSingleItem net/minecraft/world/ticks/ContainerSingleItem +CL: net/minecraft/world/ticks/LevelChunkTicks net/minecraft/world/ticks/LevelChunkTicks +CL: net/minecraft/world/ticks/LevelTickAccess net/minecraft/world/ticks/LevelTickAccess +CL: net/minecraft/world/ticks/LevelTicks net/minecraft/world/ticks/LevelTicks +CL: net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer +CL: net/minecraft/world/ticks/ProtoChunkTicks net/minecraft/world/ticks/ProtoChunkTicks +CL: net/minecraft/world/ticks/SavedTick net/minecraft/world/ticks/SavedTick +CL: net/minecraft/world/ticks/SavedTick$1 net/minecraft/world/ticks/SavedTick$1 +CL: net/minecraft/world/ticks/ScheduledTick net/minecraft/world/ticks/ScheduledTick +CL: net/minecraft/world/ticks/ScheduledTick$1 net/minecraft/world/ticks/ScheduledTick$1 +CL: net/minecraft/world/ticks/SerializableTickContainer net/minecraft/world/ticks/SerializableTickContainer +CL: net/minecraft/world/ticks/TickAccess net/minecraft/world/ticks/TickAccess +CL: net/minecraft/world/ticks/TickContainerAccess net/minecraft/world/ticks/TickContainerAccess +CL: net/minecraft/world/ticks/TickPriority net/minecraft/world/ticks/TickPriority +CL: net/minecraft/world/ticks/WorldGenTickAccess net/minecraft/world/ticks/WorldGenTickAccess +CL: net/minecraft/world/ticks/package-info net/minecraft/world/ticks/package-info +FD: com/mojang/blaze3d/audio/Channel/f_166124_ com/mojang/blaze3d/audio/Channel/BUFFER_DURATION_SECONDS +FD: com/mojang/blaze3d/audio/Channel/f_166125_ com/mojang/blaze3d/audio/Channel/QUEUED_BUFFER_COUNT +FD: com/mojang/blaze3d/audio/Channel/f_83641_ com/mojang/blaze3d/audio/Channel/LOGGER +FD: com/mojang/blaze3d/audio/Channel/f_83642_ com/mojang/blaze3d/audio/Channel/source +FD: com/mojang/blaze3d/audio/Channel/f_83643_ com/mojang/blaze3d/audio/Channel/initialized +FD: com/mojang/blaze3d/audio/Channel/f_83644_ com/mojang/blaze3d/audio/Channel/streamingBufferSize +FD: com/mojang/blaze3d/audio/Channel/f_83645_ com/mojang/blaze3d/audio/Channel/stream +FD: com/mojang/blaze3d/audio/Library/f_166128_ com/mojang/blaze3d/audio/Library/DEFAULT_CHANNEL_COUNT +FD: com/mojang/blaze3d/audio/Library/f_193464_ com/mojang/blaze3d/audio/Library/NO_DEVICE +FD: com/mojang/blaze3d/audio/Library/f_193465_ com/mojang/blaze3d/audio/Library/currentDevice +FD: com/mojang/blaze3d/audio/Library/f_193466_ com/mojang/blaze3d/audio/Library/supportsDisconnections +FD: com/mojang/blaze3d/audio/Library/f_193467_ com/mojang/blaze3d/audio/Library/defaultDeviceName +FD: com/mojang/blaze3d/audio/Library/f_83685_ com/mojang/blaze3d/audio/Library/LOGGER +FD: com/mojang/blaze3d/audio/Library/f_83687_ com/mojang/blaze3d/audio/Library/context +FD: com/mojang/blaze3d/audio/Library/f_83688_ com/mojang/blaze3d/audio/Library/EMPTY +FD: com/mojang/blaze3d/audio/Library/f_83689_ com/mojang/blaze3d/audio/Library/staticChannels +FD: com/mojang/blaze3d/audio/Library/f_83690_ com/mojang/blaze3d/audio/Library/streamingChannels +FD: com/mojang/blaze3d/audio/Library/f_83691_ com/mojang/blaze3d/audio/Library/listener +FD: com/mojang/blaze3d/audio/Library$CountingChannelPool/f_83713_ com/mojang/blaze3d/audio/Library$CountingChannelPool/limit +FD: com/mojang/blaze3d/audio/Library$CountingChannelPool/f_83714_ com/mojang/blaze3d/audio/Library$CountingChannelPool/activeChannels +FD: com/mojang/blaze3d/audio/Library$Pool/$VALUES com/mojang/blaze3d/audio/Library$Pool/$VALUES +FD: com/mojang/blaze3d/audio/Library$Pool/STATIC com/mojang/blaze3d/audio/Library$Pool/STATIC +FD: com/mojang/blaze3d/audio/Library$Pool/STREAMING com/mojang/blaze3d/audio/Library$Pool/STREAMING +FD: com/mojang/blaze3d/audio/Listener/f_83733_ com/mojang/blaze3d/audio/Listener/gain +FD: com/mojang/blaze3d/audio/Listener/f_83734_ com/mojang/blaze3d/audio/Listener/position +FD: com/mojang/blaze3d/audio/OggAudioStream/f_166130_ com/mojang/blaze3d/audio/OggAudioStream/EXPECTED_MAX_FRAME_SIZE +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83746_ com/mojang/blaze3d/audio/OggAudioStream/handle +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83747_ com/mojang/blaze3d/audio/OggAudioStream/audioFormat +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83748_ com/mojang/blaze3d/audio/OggAudioStream/input +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83749_ com/mojang/blaze3d/audio/OggAudioStream/buffer +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83768_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/buffers +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83769_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/bufferSize +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83770_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/byteCount +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83771_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/currentBuffer +FD: com/mojang/blaze3d/audio/OpenAlUtil/f_83780_ com/mojang/blaze3d/audio/OpenAlUtil/LOGGER +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83793_ com/mojang/blaze3d/audio/SoundBuffer/data +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83794_ com/mojang/blaze3d/audio/SoundBuffer/format +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83795_ com/mojang/blaze3d/audio/SoundBuffer/hasAlBuffer +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83796_ com/mojang/blaze3d/audio/SoundBuffer/alBuffer +FD: com/mojang/blaze3d/font/SpaceProvider/f_231098_ com/mojang/blaze3d/font/SpaceProvider/glyphs +FD: com/mojang/blaze3d/font/SpaceProvider$Definition/f_285580_ com/mojang/blaze3d/font/SpaceProvider$Definition/advances +FD: com/mojang/blaze3d/font/SpaceProvider$Definition/f_285661_ com/mojang/blaze3d/font/SpaceProvider$Definition/CODEC +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83837_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/fontMemory +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83838_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/font +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83839_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/oversample +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83840_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/skip +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83841_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/shiftX +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83842_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/shiftY +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83843_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/pointScale +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83844_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/ascent +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83873_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/this$0 +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83874_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/width +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83875_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/height +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83876_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/bearingX +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83877_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/bearingY +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83878_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/advance +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83879_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/index +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/f_231121_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/this$1 +FD: com/mojang/blaze3d/pipeline/MainTarget/f_166132_ com/mojang/blaze3d/pipeline/MainTarget/DEFAULT_WIDTH +FD: com/mojang/blaze3d/pipeline/MainTarget/f_166133_ com/mojang/blaze3d/pipeline/MainTarget/DEFAULT_HEIGHT +FD: com/mojang/blaze3d/pipeline/MainTarget/f_166134_ com/mojang/blaze3d/pipeline/MainTarget/DEFAULT_DIMENSIONS +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/$VALUES com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/$VALUES +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR_DEPTH com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR_DEPTH +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/DEPTH com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/DEPTH +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/NONE com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/NONE +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/f_166156_ com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/VALUES +FD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/f_166168_ com/mojang/blaze3d/pipeline/MainTarget$Dimension/width +FD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/f_166169_ com/mojang/blaze3d/pipeline/MainTarget$Dimension/height +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_166180_ com/mojang/blaze3d/pipeline/RenderPipeline/isRecording +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_166181_ com/mojang/blaze3d/pipeline/RenderPipeline/isProcessing +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83910_ com/mojang/blaze3d/pipeline/RenderPipeline/renderCalls +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83911_ com/mojang/blaze3d/pipeline/RenderPipeline/recordingBuffer +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83912_ com/mojang/blaze3d/pipeline/RenderPipeline/processedBuffer +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83913_ com/mojang/blaze3d/pipeline/RenderPipeline/renderingBuffer +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166194_ com/mojang/blaze3d/pipeline/RenderTarget/RED_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166195_ com/mojang/blaze3d/pipeline/RenderTarget/GREEN_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166196_ com/mojang/blaze3d/pipeline/RenderTarget/BLUE_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166197_ com/mojang/blaze3d/pipeline/RenderTarget/ALPHA_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83915_ com/mojang/blaze3d/pipeline/RenderTarget/width +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83916_ com/mojang/blaze3d/pipeline/RenderTarget/height +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83917_ com/mojang/blaze3d/pipeline/RenderTarget/viewWidth +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83918_ com/mojang/blaze3d/pipeline/RenderTarget/viewHeight +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83919_ com/mojang/blaze3d/pipeline/RenderTarget/useDepth +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83920_ com/mojang/blaze3d/pipeline/RenderTarget/frameBufferId +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83921_ com/mojang/blaze3d/pipeline/RenderTarget/clearChannels +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83922_ com/mojang/blaze3d/pipeline/RenderTarget/filterMode +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83923_ com/mojang/blaze3d/pipeline/RenderTarget/colorTextureId +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83924_ com/mojang/blaze3d/pipeline/RenderTarget/depthBufferId +FD: com/mojang/blaze3d/platform/ClipboardManager/f_166218_ com/mojang/blaze3d/platform/ClipboardManager/FORMAT_UNAVAILABLE +FD: com/mojang/blaze3d/platform/ClipboardManager/f_83986_ com/mojang/blaze3d/platform/ClipboardManager/clipboardScratchBuffer +FD: com/mojang/blaze3d/platform/DebugMemoryUntracker/f_83998_ com/mojang/blaze3d/platform/DebugMemoryUntracker/UNTRACK +FD: com/mojang/blaze3d/platform/DisplayData/f_84005_ com/mojang/blaze3d/platform/DisplayData/width +FD: com/mojang/blaze3d/platform/DisplayData/f_84006_ com/mojang/blaze3d/platform/DisplayData/height +FD: com/mojang/blaze3d/platform/DisplayData/f_84007_ com/mojang/blaze3d/platform/DisplayData/fullscreenWidth +FD: com/mojang/blaze3d/platform/DisplayData/f_84008_ com/mojang/blaze3d/platform/DisplayData/fullscreenHeight +FD: com/mojang/blaze3d/platform/DisplayData/f_84009_ com/mojang/blaze3d/platform/DisplayData/isFullscreen +FD: com/mojang/blaze3d/platform/GLX/LOGGER com/mojang/blaze3d/platform/GLX/LOGGER +FD: com/mojang/blaze3d/platform/GLX/cpuInfo com/mojang/blaze3d/platform/GLX/cpuInfo +FD: com/mojang/blaze3d/platform/GlConst/GL_ALPHA_BIAS com/mojang/blaze3d/platform/GlConst/GL_ALPHA_BIAS +FD: com/mojang/blaze3d/platform/GlConst/GL_ALWAYS com/mojang/blaze3d/platform/GlConst/GL_ALWAYS +FD: com/mojang/blaze3d/platform/GlConst/GL_ARRAY_BUFFER com/mojang/blaze3d/platform/GlConst/GL_ARRAY_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_BGR com/mojang/blaze3d/platform/GlConst/GL_BGR +FD: com/mojang/blaze3d/platform/GlConst/GL_BYTE com/mojang/blaze3d/platform/GlConst/GL_BYTE +FD: com/mojang/blaze3d/platform/GlConst/GL_CLAMP_TO_EDGE com/mojang/blaze3d/platform/GlConst/GL_CLAMP_TO_EDGE +FD: com/mojang/blaze3d/platform/GlConst/GL_COLOR_ATTACHMENT0 com/mojang/blaze3d/platform/GlConst/GL_COLOR_ATTACHMENT0 +FD: com/mojang/blaze3d/platform/GlConst/GL_COLOR_BUFFER_BIT com/mojang/blaze3d/platform/GlConst/GL_COLOR_BUFFER_BIT +FD: com/mojang/blaze3d/platform/GlConst/GL_COMPILE_STATUS com/mojang/blaze3d/platform/GlConst/GL_COMPILE_STATUS +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_ATTACHMENT com/mojang/blaze3d/platform/GlConst/GL_DEPTH_ATTACHMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_BUFFER_BIT com/mojang/blaze3d/platform/GlConst/GL_DEPTH_BUFFER_BIT +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT24 com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT24 +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT32 com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT32 +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_TEXTURE_MODE com/mojang/blaze3d/platform/GlConst/GL_DEPTH_TEXTURE_MODE +FD: com/mojang/blaze3d/platform/GlConst/GL_DRAW_FRAMEBUFFER com/mojang/blaze3d/platform/GlConst/GL_DRAW_FRAMEBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_DST_ALPHA com/mojang/blaze3d/platform/GlConst/GL_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_DST_COLOR com/mojang/blaze3d/platform/GlConst/GL_DST_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_DYNAMIC_DRAW com/mojang/blaze3d/platform/GlConst/GL_DYNAMIC_DRAW +FD: com/mojang/blaze3d/platform/GlConst/GL_ELEMENT_ARRAY_BUFFER com/mojang/blaze3d/platform/GlConst/GL_ELEMENT_ARRAY_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_EQUAL com/mojang/blaze3d/platform/GlConst/GL_EQUAL +FD: com/mojang/blaze3d/platform/GlConst/GL_FALSE com/mojang/blaze3d/platform/GlConst/GL_FALSE +FD: com/mojang/blaze3d/platform/GlConst/GL_FILL com/mojang/blaze3d/platform/GlConst/GL_FILL +FD: com/mojang/blaze3d/platform/GlConst/GL_FLOAT com/mojang/blaze3d/platform/GlConst/GL_FLOAT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAGMENT_SHADER com/mojang/blaze3d/platform/GlConst/GL_FRAGMENT_SHADER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_COMPLETE com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_COMPLETE +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_UNSUPPORTED com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_UNSUPPORTED +FD: com/mojang/blaze3d/platform/GlConst/GL_FRONT com/mojang/blaze3d/platform/GlConst/GL_FRONT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRONT_AND_BACK com/mojang/blaze3d/platform/GlConst/GL_FRONT_AND_BACK +FD: com/mojang/blaze3d/platform/GlConst/GL_FUNC_ADD com/mojang/blaze3d/platform/GlConst/GL_FUNC_ADD +FD: com/mojang/blaze3d/platform/GlConst/GL_FUNC_REVERSE_SUBTRACT com/mojang/blaze3d/platform/GlConst/GL_FUNC_REVERSE_SUBTRACT +FD: com/mojang/blaze3d/platform/GlConst/GL_FUNC_SUBTRACT com/mojang/blaze3d/platform/GlConst/GL_FUNC_SUBTRACT +FD: com/mojang/blaze3d/platform/GlConst/GL_GEQUAL com/mojang/blaze3d/platform/GlConst/GL_GEQUAL +FD: com/mojang/blaze3d/platform/GlConst/GL_GREATER com/mojang/blaze3d/platform/GlConst/GL_GREATER +FD: com/mojang/blaze3d/platform/GlConst/GL_INT com/mojang/blaze3d/platform/GlConst/GL_INT +FD: com/mojang/blaze3d/platform/GlConst/GL_LEQUAL com/mojang/blaze3d/platform/GlConst/GL_LEQUAL +FD: com/mojang/blaze3d/platform/GlConst/GL_LINE com/mojang/blaze3d/platform/GlConst/GL_LINE +FD: com/mojang/blaze3d/platform/GlConst/GL_LINEAR com/mojang/blaze3d/platform/GlConst/GL_LINEAR +FD: com/mojang/blaze3d/platform/GlConst/GL_LINEAR_MIPMAP_LINEAR com/mojang/blaze3d/platform/GlConst/GL_LINEAR_MIPMAP_LINEAR +FD: com/mojang/blaze3d/platform/GlConst/GL_LINES com/mojang/blaze3d/platform/GlConst/GL_LINES +FD: com/mojang/blaze3d/platform/GlConst/GL_LINE_STRIP com/mojang/blaze3d/platform/GlConst/GL_LINE_STRIP +FD: com/mojang/blaze3d/platform/GlConst/GL_LINK_STATUS com/mojang/blaze3d/platform/GlConst/GL_LINK_STATUS +FD: com/mojang/blaze3d/platform/GlConst/GL_MAX com/mojang/blaze3d/platform/GlConst/GL_MAX +FD: com/mojang/blaze3d/platform/GlConst/GL_MAX_TEXTURE_SIZE com/mojang/blaze3d/platform/GlConst/GL_MAX_TEXTURE_SIZE +FD: com/mojang/blaze3d/platform/GlConst/GL_MIN com/mojang/blaze3d/platform/GlConst/GL_MIN +FD: com/mojang/blaze3d/platform/GlConst/GL_NEAREST com/mojang/blaze3d/platform/GlConst/GL_NEAREST +FD: com/mojang/blaze3d/platform/GlConst/GL_NEAREST_MIPMAP_LINEAR com/mojang/blaze3d/platform/GlConst/GL_NEAREST_MIPMAP_LINEAR +FD: com/mojang/blaze3d/platform/GlConst/GL_NONE com/mojang/blaze3d/platform/GlConst/GL_NONE +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE com/mojang/blaze3d/platform/GlConst/GL_ONE +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_ALPHA com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_COLOR com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_ALPHA com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_COLOR com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_OUT_OF_MEMORY com/mojang/blaze3d/platform/GlConst/GL_OUT_OF_MEMORY +FD: com/mojang/blaze3d/platform/GlConst/GL_PACK_ALIGNMENT com/mojang/blaze3d/platform/GlConst/GL_PACK_ALIGNMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_PROXY_TEXTURE_2D com/mojang/blaze3d/platform/GlConst/GL_PROXY_TEXTURE_2D +FD: com/mojang/blaze3d/platform/GlConst/GL_READ_FRAMEBUFFER com/mojang/blaze3d/platform/GlConst/GL_READ_FRAMEBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_RED com/mojang/blaze3d/platform/GlConst/GL_RED +FD: com/mojang/blaze3d/platform/GlConst/GL_RENDERBUFFER com/mojang/blaze3d/platform/GlConst/GL_RENDERBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_REPLACE com/mojang/blaze3d/platform/GlConst/GL_REPLACE +FD: com/mojang/blaze3d/platform/GlConst/GL_RG com/mojang/blaze3d/platform/GlConst/GL_RG +FD: com/mojang/blaze3d/platform/GlConst/GL_RGB com/mojang/blaze3d/platform/GlConst/GL_RGB +FD: com/mojang/blaze3d/platform/GlConst/GL_RGBA com/mojang/blaze3d/platform/GlConst/GL_RGBA +FD: com/mojang/blaze3d/platform/GlConst/GL_RGBA8 com/mojang/blaze3d/platform/GlConst/GL_RGBA8 +FD: com/mojang/blaze3d/platform/GlConst/GL_SHORT com/mojang/blaze3d/platform/GlConst/GL_SHORT +FD: com/mojang/blaze3d/platform/GlConst/GL_SRC_ALPHA com/mojang/blaze3d/platform/GlConst/GL_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_SRC_COLOR com/mojang/blaze3d/platform/GlConst/GL_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_STATIC_DRAW com/mojang/blaze3d/platform/GlConst/GL_STATIC_DRAW +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE0 com/mojang/blaze3d/platform/GlConst/GL_TEXTURE0 +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE1 com/mojang/blaze3d/platform/GlConst/GL_TEXTURE1 +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE2 com/mojang/blaze3d/platform/GlConst/GL_TEXTURE2 +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_2D com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_2D +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_COMPARE_MODE com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_COMPARE_MODE +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MAG_FILTER com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MAG_FILTER +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MIN_FILTER com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MIN_FILTER +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WIDTH com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WIDTH +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_S com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_S +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_T com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_T +FD: com/mojang/blaze3d/platform/GlConst/GL_TRIANGLES com/mojang/blaze3d/platform/GlConst/GL_TRIANGLES +FD: com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_FAN com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_FAN +FD: com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_STRIP com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_STRIP +FD: com/mojang/blaze3d/platform/GlConst/GL_TRUE com/mojang/blaze3d/platform/GlConst/GL_TRUE +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ALIGNMENT com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ALIGNMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_LSB_FIRST com/mojang/blaze3d/platform/GlConst/GL_UNPACK_LSB_FIRST +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ROW_LENGTH com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ROW_LENGTH +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_PIXELS com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_PIXELS +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_ROWS com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_ROWS +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SWAP_BYTES com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SWAP_BYTES +FD: com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_BYTE com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_BYTE +FD: com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_INT com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_INT +FD: com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_SHORT com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_SHORT +FD: com/mojang/blaze3d/platform/GlConst/GL_VERTEX_SHADER com/mojang/blaze3d/platform/GlConst/GL_VERTEX_SHADER +FD: com/mojang/blaze3d/platform/GlConst/GL_WRITE_ONLY com/mojang/blaze3d/platform/GlConst/GL_WRITE_ONLY +FD: com/mojang/blaze3d/platform/GlConst/GL_ZERO com/mojang/blaze3d/platform/GlConst/GL_ZERO +FD: com/mojang/blaze3d/platform/GlDebug/f_166220_ com/mojang/blaze3d/platform/GlDebug/CIRCULAR_LOG_SIZE +FD: com/mojang/blaze3d/platform/GlDebug/f_166221_ com/mojang/blaze3d/platform/GlDebug/MESSAGE_BUFFER +FD: com/mojang/blaze3d/platform/GlDebug/f_166222_ com/mojang/blaze3d/platform/GlDebug/lastEntry +FD: com/mojang/blaze3d/platform/GlDebug/f_166223_ com/mojang/blaze3d/platform/GlDebug/debugEnabled +FD: com/mojang/blaze3d/platform/GlDebug/f_84028_ com/mojang/blaze3d/platform/GlDebug/LOGGER +FD: com/mojang/blaze3d/platform/GlDebug/f_84032_ com/mojang/blaze3d/platform/GlDebug/DEBUG_LEVELS +FD: com/mojang/blaze3d/platform/GlDebug/f_84033_ com/mojang/blaze3d/platform/GlDebug/DEBUG_LEVELS_ARB +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166227_ com/mojang/blaze3d/platform/GlDebug$LogEntry/id +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166228_ com/mojang/blaze3d/platform/GlDebug$LogEntry/source +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166229_ com/mojang/blaze3d/platform/GlDebug$LogEntry/type +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166230_ com/mojang/blaze3d/platform/GlDebug$LogEntry/severity +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166231_ com/mojang/blaze3d/platform/GlDebug$LogEntry/message +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166232_ com/mojang/blaze3d/platform/GlDebug$LogEntry/count +FD: com/mojang/blaze3d/platform/GlStateManager/BLEND com/mojang/blaze3d/platform/GlStateManager/BLEND +FD: com/mojang/blaze3d/platform/GlStateManager/COLOR_LOGIC com/mojang/blaze3d/platform/GlStateManager/COLOR_LOGIC +FD: com/mojang/blaze3d/platform/GlStateManager/COLOR_MASK com/mojang/blaze3d/platform/GlStateManager/COLOR_MASK +FD: com/mojang/blaze3d/platform/GlStateManager/CULL com/mojang/blaze3d/platform/GlStateManager/CULL +FD: com/mojang/blaze3d/platform/GlStateManager/DEPTH com/mojang/blaze3d/platform/GlStateManager/DEPTH +FD: com/mojang/blaze3d/platform/GlStateManager/ON_LINUX com/mojang/blaze3d/platform/GlStateManager/ON_LINUX +FD: com/mojang/blaze3d/platform/GlStateManager/POLY_OFFSET com/mojang/blaze3d/platform/GlStateManager/POLY_OFFSET +FD: com/mojang/blaze3d/platform/GlStateManager/SCISSOR com/mojang/blaze3d/platform/GlStateManager/SCISSOR +FD: com/mojang/blaze3d/platform/GlStateManager/STENCIL com/mojang/blaze3d/platform/GlStateManager/STENCIL +FD: com/mojang/blaze3d/platform/GlStateManager/TEXTURES com/mojang/blaze3d/platform/GlStateManager/TEXTURES +FD: com/mojang/blaze3d/platform/GlStateManager/TEXTURE_COUNT com/mojang/blaze3d/platform/GlStateManager/TEXTURE_COUNT +FD: com/mojang/blaze3d/platform/GlStateManager/activeTexture com/mojang/blaze3d/platform/GlStateManager/activeTexture +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84577_ com/mojang/blaze3d/platform/GlStateManager$BlendState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84578_ com/mojang/blaze3d/platform/GlStateManager$BlendState/srcRgb +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84579_ com/mojang/blaze3d/platform/GlStateManager$BlendState/dstRgb +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84580_ com/mojang/blaze3d/platform/GlStateManager$BlendState/srcAlpha +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84581_ com/mojang/blaze3d/platform/GlStateManager$BlendState/dstAlpha +FD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/f_84585_ com/mojang/blaze3d/platform/GlStateManager$BooleanState/state +FD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/f_84586_ com/mojang/blaze3d/platform/GlStateManager$BooleanState/enabled +FD: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/f_84603_ com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/enable +FD: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/f_84604_ com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/op +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84608_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/red +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84609_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/green +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84610_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/blue +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84611_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/alpha +FD: com/mojang/blaze3d/platform/GlStateManager$CullState/f_84621_ com/mojang/blaze3d/platform/GlStateManager$CullState/enable +FD: com/mojang/blaze3d/platform/GlStateManager$CullState/f_84622_ com/mojang/blaze3d/platform/GlStateManager$CullState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$DepthState/f_84626_ com/mojang/blaze3d/platform/GlStateManager$DepthState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$DepthState/f_84627_ com/mojang/blaze3d/platform/GlStateManager$DepthState/mask +FD: com/mojang/blaze3d/platform/GlStateManager$DepthState/f_84628_ com/mojang/blaze3d/platform/GlStateManager$DepthState/func +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/$VALUES com/mojang/blaze3d/platform/GlStateManager$DestFactor/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ZERO com/mojang/blaze3d/platform/GlStateManager$DestFactor/ZERO +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/value com/mojang/blaze3d/platform/GlStateManager$DestFactor/value +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/$VALUES com/mojang/blaze3d/platform/GlStateManager$LogicOp/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_INVERTED com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_INVERTED +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_REVERSE com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_REVERSE +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/CLEAR com/mojang/blaze3d/platform/GlStateManager$LogicOp/CLEAR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY_INVERTED com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY_INVERTED +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/EQUIV com/mojang/blaze3d/platform/GlStateManager$LogicOp/EQUIV +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/INVERT com/mojang/blaze3d/platform/GlStateManager$LogicOp/INVERT +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/NAND com/mojang/blaze3d/platform/GlStateManager$LogicOp/NAND +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOOP com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOOP +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOR com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_INVERTED com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_INVERTED +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_REVERSE com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_REVERSE +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/SET com/mojang/blaze3d/platform/GlStateManager$LogicOp/SET +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/XOR com/mojang/blaze3d/platform/GlStateManager$LogicOp/XOR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/f_84715_ com/mojang/blaze3d/platform/GlStateManager$LogicOp/value +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84725_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/fill +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84726_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/line +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84727_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/factor +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84728_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/units +FD: com/mojang/blaze3d/platform/GlStateManager$ScissorState/f_84732_ com/mojang/blaze3d/platform/GlStateManager$ScissorState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$VALUES com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA_SATURATE com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA_SATURATE +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ZERO com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ZERO +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/value com/mojang/blaze3d/platform/GlStateManager$SourceFactor/value +FD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/f_84761_ com/mojang/blaze3d/platform/GlStateManager$StencilFunc/func +FD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/f_84762_ com/mojang/blaze3d/platform/GlStateManager$StencilFunc/ref +FD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/f_84763_ com/mojang/blaze3d/platform/GlStateManager$StencilFunc/mask +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84767_ com/mojang/blaze3d/platform/GlStateManager$StencilState/func +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84768_ com/mojang/blaze3d/platform/GlStateManager$StencilState/mask +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84769_ com/mojang/blaze3d/platform/GlStateManager$StencilState/fail +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84770_ com/mojang/blaze3d/platform/GlStateManager$StencilState/zfail +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84771_ com/mojang/blaze3d/platform/GlStateManager$StencilState/zpass +FD: com/mojang/blaze3d/platform/GlStateManager$TextureState/f_84801_ com/mojang/blaze3d/platform/GlStateManager$TextureState/binding +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/$VALUES com/mojang/blaze3d/platform/GlStateManager$Viewport/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/INSTANCE com/mojang/blaze3d/platform/GlStateManager$Viewport/INSTANCE +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84806_ com/mojang/blaze3d/platform/GlStateManager$Viewport/x +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84807_ com/mojang/blaze3d/platform/GlStateManager$Viewport/y +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84808_ com/mojang/blaze3d/platform/GlStateManager$Viewport/width +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84809_ com/mojang/blaze3d/platform/GlStateManager$Viewport/height +FD: com/mojang/blaze3d/platform/IconSet/$VALUES com/mojang/blaze3d/platform/IconSet/$VALUES +FD: com/mojang/blaze3d/platform/IconSet/RELEASE com/mojang/blaze3d/platform/IconSet/RELEASE +FD: com/mojang/blaze3d/platform/IconSet/SNAPSHOT com/mojang/blaze3d/platform/IconSet/SNAPSHOT +FD: com/mojang/blaze3d/platform/IconSet/f_279589_ com/mojang/blaze3d/platform/IconSet/path +FD: com/mojang/blaze3d/platform/InputConstants/f_166253_ com/mojang/blaze3d/platform/InputConstants/KEY_Q +FD: com/mojang/blaze3d/platform/InputConstants/f_166254_ com/mojang/blaze3d/platform/InputConstants/KEY_R +FD: com/mojang/blaze3d/platform/InputConstants/f_166255_ com/mojang/blaze3d/platform/InputConstants/KEY_S +FD: com/mojang/blaze3d/platform/InputConstants/f_166256_ com/mojang/blaze3d/platform/InputConstants/KEY_T +FD: com/mojang/blaze3d/platform/InputConstants/f_166257_ com/mojang/blaze3d/platform/InputConstants/KEY_U +FD: com/mojang/blaze3d/platform/InputConstants/f_166258_ com/mojang/blaze3d/platform/InputConstants/KEY_V +FD: com/mojang/blaze3d/platform/InputConstants/f_166259_ com/mojang/blaze3d/platform/InputConstants/KEY_W +FD: com/mojang/blaze3d/platform/InputConstants/f_166260_ com/mojang/blaze3d/platform/InputConstants/KEY_X +FD: com/mojang/blaze3d/platform/InputConstants/f_166261_ com/mojang/blaze3d/platform/InputConstants/KEY_Y +FD: com/mojang/blaze3d/platform/InputConstants/f_166262_ com/mojang/blaze3d/platform/InputConstants/KEY_Z +FD: com/mojang/blaze3d/platform/InputConstants/f_166263_ com/mojang/blaze3d/platform/InputConstants/KEY_F1 +FD: com/mojang/blaze3d/platform/InputConstants/f_166264_ com/mojang/blaze3d/platform/InputConstants/KEY_F2 +FD: com/mojang/blaze3d/platform/InputConstants/f_166265_ com/mojang/blaze3d/platform/InputConstants/KEY_F3 +FD: com/mojang/blaze3d/platform/InputConstants/f_166266_ com/mojang/blaze3d/platform/InputConstants/KEY_F4 +FD: com/mojang/blaze3d/platform/InputConstants/f_166267_ com/mojang/blaze3d/platform/InputConstants/KEY_F5 +FD: com/mojang/blaze3d/platform/InputConstants/f_166268_ com/mojang/blaze3d/platform/InputConstants/KEY_F6 +FD: com/mojang/blaze3d/platform/InputConstants/f_166269_ com/mojang/blaze3d/platform/InputConstants/KEY_F7 +FD: com/mojang/blaze3d/platform/InputConstants/f_166270_ com/mojang/blaze3d/platform/InputConstants/KEY_F8 +FD: com/mojang/blaze3d/platform/InputConstants/f_166271_ com/mojang/blaze3d/platform/InputConstants/KEY_F9 +FD: com/mojang/blaze3d/platform/InputConstants/f_166272_ com/mojang/blaze3d/platform/InputConstants/KEY_F10 +FD: com/mojang/blaze3d/platform/InputConstants/f_166273_ com/mojang/blaze3d/platform/InputConstants/KEY_F11 +FD: com/mojang/blaze3d/platform/InputConstants/f_166274_ com/mojang/blaze3d/platform/InputConstants/KEY_F12 +FD: com/mojang/blaze3d/platform/InputConstants/f_166275_ com/mojang/blaze3d/platform/InputConstants/KEY_F13 +FD: com/mojang/blaze3d/platform/InputConstants/f_166276_ com/mojang/blaze3d/platform/InputConstants/KEY_F14 +FD: com/mojang/blaze3d/platform/InputConstants/f_166277_ com/mojang/blaze3d/platform/InputConstants/KEY_F15 +FD: com/mojang/blaze3d/platform/InputConstants/f_166278_ com/mojang/blaze3d/platform/InputConstants/KEY_F16 +FD: com/mojang/blaze3d/platform/InputConstants/f_166279_ com/mojang/blaze3d/platform/InputConstants/KEY_0 +FD: com/mojang/blaze3d/platform/InputConstants/f_166280_ com/mojang/blaze3d/platform/InputConstants/KEY_UP +FD: com/mojang/blaze3d/platform/InputConstants/f_166281_ com/mojang/blaze3d/platform/InputConstants/KEY_ADD +FD: com/mojang/blaze3d/platform/InputConstants/f_166282_ com/mojang/blaze3d/platform/InputConstants/KEY_APOSTROPHE +FD: com/mojang/blaze3d/platform/InputConstants/f_166283_ com/mojang/blaze3d/platform/InputConstants/KEY_BACKSLASH +FD: com/mojang/blaze3d/platform/InputConstants/f_166284_ com/mojang/blaze3d/platform/InputConstants/KEY_COMMA +FD: com/mojang/blaze3d/platform/InputConstants/f_166285_ com/mojang/blaze3d/platform/InputConstants/KEY_EQUALS +FD: com/mojang/blaze3d/platform/InputConstants/f_166286_ com/mojang/blaze3d/platform/InputConstants/KEY_GRAVE +FD: com/mojang/blaze3d/platform/InputConstants/f_166287_ com/mojang/blaze3d/platform/InputConstants/KEY_LBRACKET +FD: com/mojang/blaze3d/platform/InputConstants/f_166288_ com/mojang/blaze3d/platform/InputConstants/KEY_MINUS +FD: com/mojang/blaze3d/platform/InputConstants/f_166289_ com/mojang/blaze3d/platform/InputConstants/KEY_MULTIPLY +FD: com/mojang/blaze3d/platform/InputConstants/f_166290_ com/mojang/blaze3d/platform/InputConstants/KEY_PERIOD +FD: com/mojang/blaze3d/platform/InputConstants/f_166291_ com/mojang/blaze3d/platform/InputConstants/KEY_RBRACKET +FD: com/mojang/blaze3d/platform/InputConstants/f_166292_ com/mojang/blaze3d/platform/InputConstants/KEY_SEMICOLON +FD: com/mojang/blaze3d/platform/InputConstants/f_166293_ com/mojang/blaze3d/platform/InputConstants/KEY_SLASH +FD: com/mojang/blaze3d/platform/InputConstants/f_166294_ com/mojang/blaze3d/platform/InputConstants/KEY_SPACE +FD: com/mojang/blaze3d/platform/InputConstants/f_166295_ com/mojang/blaze3d/platform/InputConstants/KEY_TAB +FD: com/mojang/blaze3d/platform/InputConstants/f_166296_ com/mojang/blaze3d/platform/InputConstants/KEY_LALT +FD: com/mojang/blaze3d/platform/InputConstants/f_166297_ com/mojang/blaze3d/platform/InputConstants/KEY_LCONTROL +FD: com/mojang/blaze3d/platform/InputConstants/f_166298_ com/mojang/blaze3d/platform/InputConstants/KEY_LSHIFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166299_ com/mojang/blaze3d/platform/InputConstants/KEY_LWIN +FD: com/mojang/blaze3d/platform/InputConstants/f_166300_ com/mojang/blaze3d/platform/InputConstants/KEY_RALT +FD: com/mojang/blaze3d/platform/InputConstants/f_166301_ com/mojang/blaze3d/platform/InputConstants/KEY_RCONTROL +FD: com/mojang/blaze3d/platform/InputConstants/f_166302_ com/mojang/blaze3d/platform/InputConstants/KEY_RSHIFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166303_ com/mojang/blaze3d/platform/InputConstants/KEY_RWIN +FD: com/mojang/blaze3d/platform/InputConstants/f_166304_ com/mojang/blaze3d/platform/InputConstants/KEY_RETURN +FD: com/mojang/blaze3d/platform/InputConstants/f_166305_ com/mojang/blaze3d/platform/InputConstants/KEY_ESCAPE +FD: com/mojang/blaze3d/platform/InputConstants/f_166306_ com/mojang/blaze3d/platform/InputConstants/KEY_F17 +FD: com/mojang/blaze3d/platform/InputConstants/f_166307_ com/mojang/blaze3d/platform/InputConstants/KEY_F18 +FD: com/mojang/blaze3d/platform/InputConstants/f_166308_ com/mojang/blaze3d/platform/InputConstants/KEY_F19 +FD: com/mojang/blaze3d/platform/InputConstants/f_166309_ com/mojang/blaze3d/platform/InputConstants/KEY_F20 +FD: com/mojang/blaze3d/platform/InputConstants/f_166310_ com/mojang/blaze3d/platform/InputConstants/KEY_F21 +FD: com/mojang/blaze3d/platform/InputConstants/f_166311_ com/mojang/blaze3d/platform/InputConstants/KEY_F22 +FD: com/mojang/blaze3d/platform/InputConstants/f_166312_ com/mojang/blaze3d/platform/InputConstants/KEY_F23 +FD: com/mojang/blaze3d/platform/InputConstants/f_166313_ com/mojang/blaze3d/platform/InputConstants/KEY_F24 +FD: com/mojang/blaze3d/platform/InputConstants/f_166314_ com/mojang/blaze3d/platform/InputConstants/KEY_F25 +FD: com/mojang/blaze3d/platform/InputConstants/f_166315_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMLOCK +FD: com/mojang/blaze3d/platform/InputConstants/f_166316_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD0 +FD: com/mojang/blaze3d/platform/InputConstants/f_166317_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD1 +FD: com/mojang/blaze3d/platform/InputConstants/f_166318_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD2 +FD: com/mojang/blaze3d/platform/InputConstants/f_166319_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD3 +FD: com/mojang/blaze3d/platform/InputConstants/f_166320_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD4 +FD: com/mojang/blaze3d/platform/InputConstants/f_166321_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD5 +FD: com/mojang/blaze3d/platform/InputConstants/f_166322_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD6 +FD: com/mojang/blaze3d/platform/InputConstants/f_166323_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD7 +FD: com/mojang/blaze3d/platform/InputConstants/f_166324_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD8 +FD: com/mojang/blaze3d/platform/InputConstants/f_166325_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD9 +FD: com/mojang/blaze3d/platform/InputConstants/f_166326_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPADCOMMA +FD: com/mojang/blaze3d/platform/InputConstants/f_166327_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPADENTER +FD: com/mojang/blaze3d/platform/InputConstants/f_166328_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPADEQUALS +FD: com/mojang/blaze3d/platform/InputConstants/f_166329_ com/mojang/blaze3d/platform/InputConstants/KEY_DOWN +FD: com/mojang/blaze3d/platform/InputConstants/f_166330_ com/mojang/blaze3d/platform/InputConstants/KEY_LEFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166331_ com/mojang/blaze3d/platform/InputConstants/KEY_RIGHT +FD: com/mojang/blaze3d/platform/InputConstants/f_166332_ com/mojang/blaze3d/platform/InputConstants/KEY_1 +FD: com/mojang/blaze3d/platform/InputConstants/f_166333_ com/mojang/blaze3d/platform/InputConstants/KEY_BACKSPACE +FD: com/mojang/blaze3d/platform/InputConstants/f_166334_ com/mojang/blaze3d/platform/InputConstants/KEY_DELETE +FD: com/mojang/blaze3d/platform/InputConstants/f_166335_ com/mojang/blaze3d/platform/InputConstants/KEY_END +FD: com/mojang/blaze3d/platform/InputConstants/f_166336_ com/mojang/blaze3d/platform/InputConstants/KEY_HOME +FD: com/mojang/blaze3d/platform/InputConstants/f_166337_ com/mojang/blaze3d/platform/InputConstants/KEY_INSERT +FD: com/mojang/blaze3d/platform/InputConstants/f_166338_ com/mojang/blaze3d/platform/InputConstants/KEY_PAGEDOWN +FD: com/mojang/blaze3d/platform/InputConstants/f_166339_ com/mojang/blaze3d/platform/InputConstants/KEY_PAGEUP +FD: com/mojang/blaze3d/platform/InputConstants/f_166340_ com/mojang/blaze3d/platform/InputConstants/KEY_CAPSLOCK +FD: com/mojang/blaze3d/platform/InputConstants/f_166341_ com/mojang/blaze3d/platform/InputConstants/KEY_PAUSE +FD: com/mojang/blaze3d/platform/InputConstants/f_166342_ com/mojang/blaze3d/platform/InputConstants/KEY_SCROLLLOCK +FD: com/mojang/blaze3d/platform/InputConstants/f_166343_ com/mojang/blaze3d/platform/InputConstants/KEY_PRINTSCREEN +FD: com/mojang/blaze3d/platform/InputConstants/f_166344_ com/mojang/blaze3d/platform/InputConstants/PRESS +FD: com/mojang/blaze3d/platform/InputConstants/f_166345_ com/mojang/blaze3d/platform/InputConstants/RELEASE +FD: com/mojang/blaze3d/platform/InputConstants/f_166346_ com/mojang/blaze3d/platform/InputConstants/REPEAT +FD: com/mojang/blaze3d/platform/InputConstants/f_166347_ com/mojang/blaze3d/platform/InputConstants/MOUSE_BUTTON_LEFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166348_ com/mojang/blaze3d/platform/InputConstants/MOUSE_BUTTON_MIDDLE +FD: com/mojang/blaze3d/platform/InputConstants/f_166349_ com/mojang/blaze3d/platform/InputConstants/MOUSE_BUTTON_RIGHT +FD: com/mojang/blaze3d/platform/InputConstants/f_166350_ com/mojang/blaze3d/platform/InputConstants/MOD_CONTROL +FD: com/mojang/blaze3d/platform/InputConstants/f_166351_ com/mojang/blaze3d/platform/InputConstants/CURSOR +FD: com/mojang/blaze3d/platform/InputConstants/f_166352_ com/mojang/blaze3d/platform/InputConstants/CURSOR_DISABLED +FD: com/mojang/blaze3d/platform/InputConstants/f_166353_ com/mojang/blaze3d/platform/InputConstants/CURSOR_NORMAL +FD: com/mojang/blaze3d/platform/InputConstants/f_166354_ com/mojang/blaze3d/platform/InputConstants/GLFW_RAW_MOUSE_MOTION_SUPPORTED +FD: com/mojang/blaze3d/platform/InputConstants/f_166355_ com/mojang/blaze3d/platform/InputConstants/KEY_2 +FD: com/mojang/blaze3d/platform/InputConstants/f_166356_ com/mojang/blaze3d/platform/InputConstants/KEY_3 +FD: com/mojang/blaze3d/platform/InputConstants/f_166357_ com/mojang/blaze3d/platform/InputConstants/KEY_4 +FD: com/mojang/blaze3d/platform/InputConstants/f_166358_ com/mojang/blaze3d/platform/InputConstants/KEY_5 +FD: com/mojang/blaze3d/platform/InputConstants/f_166359_ com/mojang/blaze3d/platform/InputConstants/KEY_6 +FD: com/mojang/blaze3d/platform/InputConstants/f_166360_ com/mojang/blaze3d/platform/InputConstants/KEY_7 +FD: com/mojang/blaze3d/platform/InputConstants/f_166361_ com/mojang/blaze3d/platform/InputConstants/KEY_8 +FD: com/mojang/blaze3d/platform/InputConstants/f_166362_ com/mojang/blaze3d/platform/InputConstants/KEY_9 +FD: com/mojang/blaze3d/platform/InputConstants/f_166363_ com/mojang/blaze3d/platform/InputConstants/KEY_A +FD: com/mojang/blaze3d/platform/InputConstants/f_166364_ com/mojang/blaze3d/platform/InputConstants/KEY_B +FD: com/mojang/blaze3d/platform/InputConstants/f_166365_ com/mojang/blaze3d/platform/InputConstants/KEY_C +FD: com/mojang/blaze3d/platform/InputConstants/f_166366_ com/mojang/blaze3d/platform/InputConstants/KEY_D +FD: com/mojang/blaze3d/platform/InputConstants/f_166367_ com/mojang/blaze3d/platform/InputConstants/KEY_E +FD: com/mojang/blaze3d/platform/InputConstants/f_166368_ com/mojang/blaze3d/platform/InputConstants/KEY_F +FD: com/mojang/blaze3d/platform/InputConstants/f_166369_ com/mojang/blaze3d/platform/InputConstants/KEY_G +FD: com/mojang/blaze3d/platform/InputConstants/f_166370_ com/mojang/blaze3d/platform/InputConstants/KEY_H +FD: com/mojang/blaze3d/platform/InputConstants/f_166371_ com/mojang/blaze3d/platform/InputConstants/KEY_I +FD: com/mojang/blaze3d/platform/InputConstants/f_166372_ com/mojang/blaze3d/platform/InputConstants/KEY_J +FD: com/mojang/blaze3d/platform/InputConstants/f_166373_ com/mojang/blaze3d/platform/InputConstants/KEY_K +FD: com/mojang/blaze3d/platform/InputConstants/f_166374_ com/mojang/blaze3d/platform/InputConstants/KEY_L +FD: com/mojang/blaze3d/platform/InputConstants/f_166375_ com/mojang/blaze3d/platform/InputConstants/KEY_M +FD: com/mojang/blaze3d/platform/InputConstants/f_166376_ com/mojang/blaze3d/platform/InputConstants/KEY_N +FD: com/mojang/blaze3d/platform/InputConstants/f_166377_ com/mojang/blaze3d/platform/InputConstants/KEY_O +FD: com/mojang/blaze3d/platform/InputConstants/f_166378_ com/mojang/blaze3d/platform/InputConstants/KEY_P +FD: com/mojang/blaze3d/platform/InputConstants/f_84822_ com/mojang/blaze3d/platform/InputConstants/UNKNOWN +FD: com/mojang/blaze3d/platform/InputConstants/f_84824_ com/mojang/blaze3d/platform/InputConstants/GLFW_RAW_MOUSE_MOTION +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84853_ com/mojang/blaze3d/platform/InputConstants$Key/name +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84854_ com/mojang/blaze3d/platform/InputConstants$Key/type +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84855_ com/mojang/blaze3d/platform/InputConstants$Key/value +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84856_ com/mojang/blaze3d/platform/InputConstants$Key/displayName +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84857_ com/mojang/blaze3d/platform/InputConstants$Key/NAME_MAP +FD: com/mojang/blaze3d/platform/InputConstants$Type/$VALUES com/mojang/blaze3d/platform/InputConstants$Type/$VALUES +FD: com/mojang/blaze3d/platform/InputConstants$Type/KEYSYM com/mojang/blaze3d/platform/InputConstants$Type/KEYSYM +FD: com/mojang/blaze3d/platform/InputConstants$Type/MOUSE com/mojang/blaze3d/platform/InputConstants$Type/MOUSE +FD: com/mojang/blaze3d/platform/InputConstants$Type/SCANCODE com/mojang/blaze3d/platform/InputConstants$Type/SCANCODE +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_287790_ com/mojang/blaze3d/platform/InputConstants$Type/KEY_KEYBOARD_UNKNOWN +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_84885_ com/mojang/blaze3d/platform/InputConstants$Type/map +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_84886_ com/mojang/blaze3d/platform/InputConstants$Type/defaultPrefix +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_84887_ com/mojang/blaze3d/platform/InputConstants$Type/displayTextSupplier +FD: com/mojang/blaze3d/platform/Lighting/f_166381_ com/mojang/blaze3d/platform/Lighting/INVENTORY_DIFFUSE_LIGHT_0 +FD: com/mojang/blaze3d/platform/Lighting/f_166382_ com/mojang/blaze3d/platform/Lighting/INVENTORY_DIFFUSE_LIGHT_1 +FD: com/mojang/blaze3d/platform/Lighting/f_84919_ com/mojang/blaze3d/platform/Lighting/DIFFUSE_LIGHT_0 +FD: com/mojang/blaze3d/platform/Lighting/f_84920_ com/mojang/blaze3d/platform/Lighting/DIFFUSE_LIGHT_1 +FD: com/mojang/blaze3d/platform/Lighting/f_84921_ com/mojang/blaze3d/platform/Lighting/NETHER_DIFFUSE_LIGHT_0 +FD: com/mojang/blaze3d/platform/Lighting/f_84922_ com/mojang/blaze3d/platform/Lighting/NETHER_DIFFUSE_LIGHT_1 +FD: com/mojang/blaze3d/platform/MacosUtil/f_182515_ com/mojang/blaze3d/platform/MacosUtil/NS_FULL_SCREEN_WINDOW_MASK +FD: com/mojang/blaze3d/platform/MemoryTracker/f_182525_ com/mojang/blaze3d/platform/MemoryTracker/ALLOCATOR +FD: com/mojang/blaze3d/platform/Monitor/f_84936_ com/mojang/blaze3d/platform/Monitor/monitor +FD: com/mojang/blaze3d/platform/Monitor/f_84937_ com/mojang/blaze3d/platform/Monitor/videoModes +FD: com/mojang/blaze3d/platform/Monitor/f_84938_ com/mojang/blaze3d/platform/Monitor/currentMode +FD: com/mojang/blaze3d/platform/Monitor/f_84939_ com/mojang/blaze3d/platform/Monitor/x +FD: com/mojang/blaze3d/platform/Monitor/f_84940_ com/mojang/blaze3d/platform/Monitor/y +FD: com/mojang/blaze3d/platform/NativeImage/f_84958_ com/mojang/blaze3d/platform/NativeImage/LOGGER +FD: com/mojang/blaze3d/platform/NativeImage/f_84959_ com/mojang/blaze3d/platform/NativeImage/OPEN_OPTIONS +FD: com/mojang/blaze3d/platform/NativeImage/f_84960_ com/mojang/blaze3d/platform/NativeImage/format +FD: com/mojang/blaze3d/platform/NativeImage/f_84961_ com/mojang/blaze3d/platform/NativeImage/width +FD: com/mojang/blaze3d/platform/NativeImage/f_84962_ com/mojang/blaze3d/platform/NativeImage/height +FD: com/mojang/blaze3d/platform/NativeImage/f_84963_ com/mojang/blaze3d/platform/NativeImage/useStbFree +FD: com/mojang/blaze3d/platform/NativeImage/f_84964_ com/mojang/blaze3d/platform/NativeImage/pixels +FD: com/mojang/blaze3d/platform/NativeImage/f_84965_ com/mojang/blaze3d/platform/NativeImage/size +FD: com/mojang/blaze3d/platform/NativeImage$Format/$VALUES com/mojang/blaze3d/platform/NativeImage$Format/$VALUES +FD: com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE +FD: com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE_ALPHA com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE_ALPHA +FD: com/mojang/blaze3d/platform/NativeImage$Format/RGB com/mojang/blaze3d/platform/NativeImage$Format/RGB +FD: com/mojang/blaze3d/platform/NativeImage$Format/RGBA com/mojang/blaze3d/platform/NativeImage$Format/RGBA +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85130_ com/mojang/blaze3d/platform/NativeImage$Format/components +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85131_ com/mojang/blaze3d/platform/NativeImage$Format/glFormat +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85132_ com/mojang/blaze3d/platform/NativeImage$Format/hasRed +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85133_ com/mojang/blaze3d/platform/NativeImage$Format/hasGreen +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85134_ com/mojang/blaze3d/platform/NativeImage$Format/hasBlue +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85135_ com/mojang/blaze3d/platform/NativeImage$Format/hasLuminance +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85136_ com/mojang/blaze3d/platform/NativeImage$Format/hasAlpha +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85137_ com/mojang/blaze3d/platform/NativeImage$Format/redOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85138_ com/mojang/blaze3d/platform/NativeImage$Format/greenOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85139_ com/mojang/blaze3d/platform/NativeImage$Format/blueOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85140_ com/mojang/blaze3d/platform/NativeImage$Format/luminanceOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85141_ com/mojang/blaze3d/platform/NativeImage$Format/alphaOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85142_ com/mojang/blaze3d/platform/NativeImage$Format/supportedByStb +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/$VALUES com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/$VALUES +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RED com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RED +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RG com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RG +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGB com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGB +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGBA com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGBA +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/f_85184_ com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/glFormat +FD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/f_85195_ com/mojang/blaze3d/platform/NativeImage$WriteCallback/output +FD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/f_85196_ com/mojang/blaze3d/platform/NativeImage$WriteCallback/exception +FD: com/mojang/blaze3d/platform/ScreenManager/f_212357_ com/mojang/blaze3d/platform/ScreenManager/LOGGER +FD: com/mojang/blaze3d/platform/ScreenManager/f_85262_ com/mojang/blaze3d/platform/ScreenManager/monitors +FD: com/mojang/blaze3d/platform/ScreenManager/f_85263_ com/mojang/blaze3d/platform/ScreenManager/monitorCreator +FD: com/mojang/blaze3d/platform/TextureUtil/DEFAULT_IMAGE_BUFFER_SIZE com/mojang/blaze3d/platform/TextureUtil/DEFAULT_IMAGE_BUFFER_SIZE +FD: com/mojang/blaze3d/platform/TextureUtil/LOGGER com/mojang/blaze3d/platform/TextureUtil/LOGGER +FD: com/mojang/blaze3d/platform/TextureUtil/MIN_MIPMAP_LEVEL com/mojang/blaze3d/platform/TextureUtil/MIN_MIPMAP_LEVEL +FD: com/mojang/blaze3d/platform/VideoMode/f_85313_ com/mojang/blaze3d/platform/VideoMode/width +FD: com/mojang/blaze3d/platform/VideoMode/f_85314_ com/mojang/blaze3d/platform/VideoMode/height +FD: com/mojang/blaze3d/platform/VideoMode/f_85315_ com/mojang/blaze3d/platform/VideoMode/redBits +FD: com/mojang/blaze3d/platform/VideoMode/f_85316_ com/mojang/blaze3d/platform/VideoMode/greenBits +FD: com/mojang/blaze3d/platform/VideoMode/f_85317_ com/mojang/blaze3d/platform/VideoMode/blueBits +FD: com/mojang/blaze3d/platform/VideoMode/f_85318_ com/mojang/blaze3d/platform/VideoMode/refreshRate +FD: com/mojang/blaze3d/platform/VideoMode/f_85319_ com/mojang/blaze3d/platform/VideoMode/PATTERN +FD: com/mojang/blaze3d/platform/Window/f_85345_ com/mojang/blaze3d/platform/Window/LOGGER +FD: com/mojang/blaze3d/platform/Window/f_85346_ com/mojang/blaze3d/platform/Window/defaultErrorCallback +FD: com/mojang/blaze3d/platform/Window/f_85347_ com/mojang/blaze3d/platform/Window/eventHandler +FD: com/mojang/blaze3d/platform/Window/f_85348_ com/mojang/blaze3d/platform/Window/screenManager +FD: com/mojang/blaze3d/platform/Window/f_85349_ com/mojang/blaze3d/platform/Window/window +FD: com/mojang/blaze3d/platform/Window/f_85350_ com/mojang/blaze3d/platform/Window/windowedX +FD: com/mojang/blaze3d/platform/Window/f_85351_ com/mojang/blaze3d/platform/Window/windowedY +FD: com/mojang/blaze3d/platform/Window/f_85352_ com/mojang/blaze3d/platform/Window/windowedWidth +FD: com/mojang/blaze3d/platform/Window/f_85353_ com/mojang/blaze3d/platform/Window/windowedHeight +FD: com/mojang/blaze3d/platform/Window/f_85354_ com/mojang/blaze3d/platform/Window/preferredFullscreenVideoMode +FD: com/mojang/blaze3d/platform/Window/f_85355_ com/mojang/blaze3d/platform/Window/fullscreen +FD: com/mojang/blaze3d/platform/Window/f_85356_ com/mojang/blaze3d/platform/Window/actuallyFullscreen +FD: com/mojang/blaze3d/platform/Window/f_85357_ com/mojang/blaze3d/platform/Window/x +FD: com/mojang/blaze3d/platform/Window/f_85358_ com/mojang/blaze3d/platform/Window/y +FD: com/mojang/blaze3d/platform/Window/f_85359_ com/mojang/blaze3d/platform/Window/width +FD: com/mojang/blaze3d/platform/Window/f_85360_ com/mojang/blaze3d/platform/Window/height +FD: com/mojang/blaze3d/platform/Window/f_85361_ com/mojang/blaze3d/platform/Window/framebufferWidth +FD: com/mojang/blaze3d/platform/Window/f_85362_ com/mojang/blaze3d/platform/Window/framebufferHeight +FD: com/mojang/blaze3d/platform/Window/f_85363_ com/mojang/blaze3d/platform/Window/guiScaledWidth +FD: com/mojang/blaze3d/platform/Window/f_85364_ com/mojang/blaze3d/platform/Window/guiScaledHeight +FD: com/mojang/blaze3d/platform/Window/f_85365_ com/mojang/blaze3d/platform/Window/guiScale +FD: com/mojang/blaze3d/platform/Window/f_85366_ com/mojang/blaze3d/platform/Window/errorSection +FD: com/mojang/blaze3d/platform/Window/f_85367_ com/mojang/blaze3d/platform/Window/dirty +FD: com/mojang/blaze3d/platform/Window/f_85368_ com/mojang/blaze3d/platform/Window/framerateLimit +FD: com/mojang/blaze3d/platform/Window/f_85369_ com/mojang/blaze3d/platform/Window/vsync +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166454_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/C_COMMENT +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166455_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/LINE_COMMENT +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166456_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/REGEX_MOJ_IMPORT +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166457_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/REGEX_VERSION +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166458_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/REGEX_ENDS_WITH_WHITESPACE +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/f_166482_ com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/glslVersion +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/f_166483_ com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/sourceId +FD: com/mojang/blaze3d/shaders/BlendMode/f_85499_ com/mojang/blaze3d/shaders/BlendMode/lastApplied +FD: com/mojang/blaze3d/shaders/BlendMode/f_85500_ com/mojang/blaze3d/shaders/BlendMode/srcColorFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85501_ com/mojang/blaze3d/shaders/BlendMode/srcAlphaFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85502_ com/mojang/blaze3d/shaders/BlendMode/dstColorFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85503_ com/mojang/blaze3d/shaders/BlendMode/dstAlphaFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85504_ com/mojang/blaze3d/shaders/BlendMode/blendFunc +FD: com/mojang/blaze3d/shaders/BlendMode/f_85505_ com/mojang/blaze3d/shaders/BlendMode/separateBlend +FD: com/mojang/blaze3d/shaders/BlendMode/f_85506_ com/mojang/blaze3d/shaders/BlendMode/opaque +FD: com/mojang/blaze3d/shaders/EffectProgram/f_166578_ com/mojang/blaze3d/shaders/EffectProgram/PREPROCESSOR +FD: com/mojang/blaze3d/shaders/EffectProgram/f_166579_ com/mojang/blaze3d/shaders/EffectProgram/references +FD: com/mojang/blaze3d/shaders/FogShape/$VALUES com/mojang/blaze3d/shaders/FogShape/$VALUES +FD: com/mojang/blaze3d/shaders/FogShape/CYLINDER com/mojang/blaze3d/shaders/FogShape/CYLINDER +FD: com/mojang/blaze3d/shaders/FogShape/SPHERE com/mojang/blaze3d/shaders/FogShape/SPHERE +FD: com/mojang/blaze3d/shaders/FogShape/f_202317_ com/mojang/blaze3d/shaders/FogShape/index +FD: com/mojang/blaze3d/shaders/Program/f_166598_ com/mojang/blaze3d/shaders/Program/MAX_LOG_LENGTH +FD: com/mojang/blaze3d/shaders/Program/f_85535_ com/mojang/blaze3d/shaders/Program/type +FD: com/mojang/blaze3d/shaders/Program/f_85536_ com/mojang/blaze3d/shaders/Program/name +FD: com/mojang/blaze3d/shaders/Program/f_85537_ com/mojang/blaze3d/shaders/Program/id +FD: com/mojang/blaze3d/shaders/Program$Type/$VALUES com/mojang/blaze3d/shaders/Program$Type/$VALUES +FD: com/mojang/blaze3d/shaders/Program$Type/FRAGMENT com/mojang/blaze3d/shaders/Program$Type/FRAGMENT +FD: com/mojang/blaze3d/shaders/Program$Type/VERTEX com/mojang/blaze3d/shaders/Program$Type/VERTEX +FD: com/mojang/blaze3d/shaders/Program$Type/f_85554_ com/mojang/blaze3d/shaders/Program$Type/name +FD: com/mojang/blaze3d/shaders/Program$Type/f_85555_ com/mojang/blaze3d/shaders/Program$Type/extension +FD: com/mojang/blaze3d/shaders/Program$Type/f_85556_ com/mojang/blaze3d/shaders/Program$Type/glType +FD: com/mojang/blaze3d/shaders/Program$Type/f_85557_ com/mojang/blaze3d/shaders/Program$Type/programs +FD: com/mojang/blaze3d/shaders/ProgramManager/f_85575_ com/mojang/blaze3d/shaders/ProgramManager/LOGGER +FD: com/mojang/blaze3d/shaders/Uniform/f_166625_ com/mojang/blaze3d/shaders/Uniform/UT_INT1 +FD: com/mojang/blaze3d/shaders/Uniform/f_166626_ com/mojang/blaze3d/shaders/Uniform/UT_INT2 +FD: com/mojang/blaze3d/shaders/Uniform/f_166627_ com/mojang/blaze3d/shaders/Uniform/UT_INT3 +FD: com/mojang/blaze3d/shaders/Uniform/f_166628_ com/mojang/blaze3d/shaders/Uniform/UT_INT4 +FD: com/mojang/blaze3d/shaders/Uniform/f_166629_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT1 +FD: com/mojang/blaze3d/shaders/Uniform/f_166630_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT2 +FD: com/mojang/blaze3d/shaders/Uniform/f_166631_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT3 +FD: com/mojang/blaze3d/shaders/Uniform/f_166632_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT4 +FD: com/mojang/blaze3d/shaders/Uniform/f_166633_ com/mojang/blaze3d/shaders/Uniform/UT_MAT2 +FD: com/mojang/blaze3d/shaders/Uniform/f_166634_ com/mojang/blaze3d/shaders/Uniform/UT_MAT3 +FD: com/mojang/blaze3d/shaders/Uniform/f_166635_ com/mojang/blaze3d/shaders/Uniform/UT_MAT4 +FD: com/mojang/blaze3d/shaders/Uniform/f_166636_ com/mojang/blaze3d/shaders/Uniform/TRANSPOSE_MATRICIES +FD: com/mojang/blaze3d/shaders/Uniform/f_85584_ com/mojang/blaze3d/shaders/Uniform/LOGGER +FD: com/mojang/blaze3d/shaders/Uniform/f_85585_ com/mojang/blaze3d/shaders/Uniform/location +FD: com/mojang/blaze3d/shaders/Uniform/f_85586_ com/mojang/blaze3d/shaders/Uniform/count +FD: com/mojang/blaze3d/shaders/Uniform/f_85587_ com/mojang/blaze3d/shaders/Uniform/type +FD: com/mojang/blaze3d/shaders/Uniform/f_85588_ com/mojang/blaze3d/shaders/Uniform/intValues +FD: com/mojang/blaze3d/shaders/Uniform/f_85589_ com/mojang/blaze3d/shaders/Uniform/floatValues +FD: com/mojang/blaze3d/shaders/Uniform/f_85590_ com/mojang/blaze3d/shaders/Uniform/name +FD: com/mojang/blaze3d/shaders/Uniform/f_85591_ com/mojang/blaze3d/shaders/Uniform/dirty +FD: com/mojang/blaze3d/shaders/Uniform/f_85592_ com/mojang/blaze3d/shaders/Uniform/parent +FD: com/mojang/blaze3d/systems/RenderSystem/LOGGER com/mojang/blaze3d/systems/RenderSystem/LOGGER +FD: com/mojang/blaze3d/systems/RenderSystem/MAX_SUPPORTED_TEXTURE_SIZE com/mojang/blaze3d/systems/RenderSystem/MAX_SUPPORTED_TEXTURE_SIZE +FD: com/mojang/blaze3d/systems/RenderSystem/MINIMUM_ATLAS_TEXTURE_SIZE com/mojang/blaze3d/systems/RenderSystem/MINIMUM_ATLAS_TEXTURE_SIZE +FD: com/mojang/blaze3d/systems/RenderSystem/RENDER_THREAD_TESSELATOR com/mojang/blaze3d/systems/RenderSystem/RENDER_THREAD_TESSELATOR +FD: com/mojang/blaze3d/systems/RenderSystem/apiDescription com/mojang/blaze3d/systems/RenderSystem/apiDescription +FD: com/mojang/blaze3d/systems/RenderSystem/gameThread com/mojang/blaze3d/systems/RenderSystem/gameThread +FD: com/mojang/blaze3d/systems/RenderSystem/inverseViewRotationMatrix com/mojang/blaze3d/systems/RenderSystem/inverseViewRotationMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/isInInit com/mojang/blaze3d/systems/RenderSystem/isInInit +FD: com/mojang/blaze3d/systems/RenderSystem/isReplayingQueue com/mojang/blaze3d/systems/RenderSystem/isReplayingQueue +FD: com/mojang/blaze3d/systems/RenderSystem/lastDrawTime com/mojang/blaze3d/systems/RenderSystem/lastDrawTime +FD: com/mojang/blaze3d/systems/RenderSystem/modelViewMatrix com/mojang/blaze3d/systems/RenderSystem/modelViewMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/modelViewStack com/mojang/blaze3d/systems/RenderSystem/modelViewStack +FD: com/mojang/blaze3d/systems/RenderSystem/pollEventsWaitStart com/mojang/blaze3d/systems/RenderSystem/pollEventsWaitStart +FD: com/mojang/blaze3d/systems/RenderSystem/pollingEvents com/mojang/blaze3d/systems/RenderSystem/pollingEvents +FD: com/mojang/blaze3d/systems/RenderSystem/projectionMatrix com/mojang/blaze3d/systems/RenderSystem/projectionMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/recordingQueue com/mojang/blaze3d/systems/RenderSystem/recordingQueue +FD: com/mojang/blaze3d/systems/RenderSystem/renderThread com/mojang/blaze3d/systems/RenderSystem/renderThread +FD: com/mojang/blaze3d/systems/RenderSystem/savedProjectionMatrix com/mojang/blaze3d/systems/RenderSystem/savedProjectionMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/savedVertexSorting com/mojang/blaze3d/systems/RenderSystem/savedVertexSorting +FD: com/mojang/blaze3d/systems/RenderSystem/shader com/mojang/blaze3d/systems/RenderSystem/shader +FD: com/mojang/blaze3d/systems/RenderSystem/shaderColor com/mojang/blaze3d/systems/RenderSystem/shaderColor +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogColor com/mojang/blaze3d/systems/RenderSystem/shaderFogColor +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogEnd com/mojang/blaze3d/systems/RenderSystem/shaderFogEnd +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogShape com/mojang/blaze3d/systems/RenderSystem/shaderFogShape +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogStart com/mojang/blaze3d/systems/RenderSystem/shaderFogStart +FD: com/mojang/blaze3d/systems/RenderSystem/shaderGameTime com/mojang/blaze3d/systems/RenderSystem/shaderGameTime +FD: com/mojang/blaze3d/systems/RenderSystem/shaderGlintAlpha com/mojang/blaze3d/systems/RenderSystem/shaderGlintAlpha +FD: com/mojang/blaze3d/systems/RenderSystem/shaderLightDirections com/mojang/blaze3d/systems/RenderSystem/shaderLightDirections +FD: com/mojang/blaze3d/systems/RenderSystem/shaderLineWidth com/mojang/blaze3d/systems/RenderSystem/shaderLineWidth +FD: com/mojang/blaze3d/systems/RenderSystem/shaderTextures com/mojang/blaze3d/systems/RenderSystem/shaderTextures +FD: com/mojang/blaze3d/systems/RenderSystem/sharedSequential com/mojang/blaze3d/systems/RenderSystem/sharedSequential +FD: com/mojang/blaze3d/systems/RenderSystem/sharedSequentialLines com/mojang/blaze3d/systems/RenderSystem/sharedSequentialLines +FD: com/mojang/blaze3d/systems/RenderSystem/sharedSequentialQuad com/mojang/blaze3d/systems/RenderSystem/sharedSequentialQuad +FD: com/mojang/blaze3d/systems/RenderSystem/textureMatrix com/mojang/blaze3d/systems/RenderSystem/textureMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/vertexSorting com/mojang/blaze3d/systems/RenderSystem/vertexSorting +FD: com/mojang/blaze3d/systems/RenderSystem$1/f_157463_ com/mojang/blaze3d/systems/RenderSystem$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$IndexType +FD: com/mojang/blaze3d/systems/RenderSystem$1/f_221943_ com/mojang/blaze3d/systems/RenderSystem$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$Mode +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157465_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/vertexStride +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157466_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/indexStride +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157467_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/generator +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157468_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/name +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157469_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/type +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157470_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/indexCount +FD: com/mojang/blaze3d/systems/TimerQuery/f_231138_ com/mojang/blaze3d/systems/TimerQuery/nextQueryName +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231143_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/NO_RESULT +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231144_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/CANCELLED_RESULT +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231145_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/queryName +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231146_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/result +FD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/f_231152_ com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/INSTANCE +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_166762_ com/mojang/blaze3d/vertex/BufferBuilder/indexOnly +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_166763_ com/mojang/blaze3d/vertex/BufferBuilder/GROWTH_SIZE +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_166766_ com/mojang/blaze3d/vertex/BufferBuilder/sortingPoints +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_231156_ com/mojang/blaze3d/vertex/BufferBuilder/renderedBufferCount +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_231157_ com/mojang/blaze3d/vertex/BufferBuilder/renderedBufferPointer +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_276463_ com/mojang/blaze3d/vertex/BufferBuilder/sorting +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85647_ com/mojang/blaze3d/vertex/BufferBuilder/LOGGER +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85648_ com/mojang/blaze3d/vertex/BufferBuilder/buffer +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85652_ com/mojang/blaze3d/vertex/BufferBuilder/nextElementByte +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85654_ com/mojang/blaze3d/vertex/BufferBuilder/vertices +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85655_ com/mojang/blaze3d/vertex/BufferBuilder/currentElement +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85656_ com/mojang/blaze3d/vertex/BufferBuilder/elementIndex +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85657_ com/mojang/blaze3d/vertex/BufferBuilder/mode +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85658_ com/mojang/blaze3d/vertex/BufferBuilder/format +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85659_ com/mojang/blaze3d/vertex/BufferBuilder/fastFormat +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85660_ com/mojang/blaze3d/vertex/BufferBuilder/fullFormat +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85661_ com/mojang/blaze3d/vertex/BufferBuilder/building +FD: com/mojang/blaze3d/vertex/BufferBuilder$1/f_166795_ com/mojang/blaze3d/vertex/BufferBuilder$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$IndexType +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166797_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexCount +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166798_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexType +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166799_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexOnly +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166800_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/sequentialIndex +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85733_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/format +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85734_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexCount +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85735_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/mode +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231188_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/this$0 +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231189_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/pointer +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231190_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/drawState +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231191_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/released +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_166817_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/mode +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_166818_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/vertices +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_166819_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/sortingPoints +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_276566_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/sorting +FD: com/mojang/blaze3d/vertex/BufferUploader/f_231201_ com/mojang/blaze3d/vertex/BufferUploader/lastImmediateBuffer +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_166849_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_166850_ com/mojang/blaze3d/vertex/DefaultVertexFormat/BLIT_SCREEN +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_166851_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_NORMAL +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85804_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_POSITION +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85805_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85806_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV0 +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85807_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV1 +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85808_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV2 +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85809_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_NORMAL +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85810_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_PADDING +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85811_ com/mojang/blaze3d/vertex/DefaultVertexFormat/BLOCK +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85812_ com/mojang/blaze3d/vertex/DefaultVertexFormat/NEW_ENTITY +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85813_ com/mojang/blaze3d/vertex/DefaultVertexFormat/PARTICLE +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85814_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85815_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85816_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_LIGHTMAP +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85817_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85818_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_TEX +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85819_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85820_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_TEX_LIGHTMAP +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85821_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX_LIGHTMAP_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85822_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX_COLOR_NORMAL +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85824_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultColorSet +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85825_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultR +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85826_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultG +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85827_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultB +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85828_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultA +FD: com/mojang/blaze3d/vertex/PoseStack/f_85834_ com/mojang/blaze3d/vertex/PoseStack/poseStack +FD: com/mojang/blaze3d/vertex/PoseStack$Pose/f_85852_ com/mojang/blaze3d/vertex/PoseStack$Pose/pose +FD: com/mojang/blaze3d/vertex/PoseStack$Pose/f_85853_ com/mojang/blaze3d/vertex/PoseStack$Pose/normal +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_256811_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/textureScale +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85867_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/delegate +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85868_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/cameraInversePose +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85869_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/normalInversePose +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85870_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/x +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85871_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/y +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85872_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/z +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85873_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/overlayU +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85874_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/overlayV +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85875_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/lightCoords +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85876_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/nx +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85877_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/ny +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85878_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/nz +FD: com/mojang/blaze3d/vertex/Tesselator/f_166857_ com/mojang/blaze3d/vertex/Tesselator/MAX_MEMORY_USE +FD: com/mojang/blaze3d/vertex/Tesselator/f_166858_ com/mojang/blaze3d/vertex/Tesselator/MAX_FLOATS +FD: com/mojang/blaze3d/vertex/Tesselator/f_85907_ com/mojang/blaze3d/vertex/Tesselator/builder +FD: com/mojang/blaze3d/vertex/Tesselator/f_85908_ com/mojang/blaze3d/vertex/Tesselator/INSTANCE +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166860_ com/mojang/blaze3d/vertex/VertexBuffer/indexBufferId +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166861_ com/mojang/blaze3d/vertex/VertexBuffer/indexType +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166862_ com/mojang/blaze3d/vertex/VertexBuffer/arrayObjectId +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166863_ com/mojang/blaze3d/vertex/VertexBuffer/indexCount +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166864_ com/mojang/blaze3d/vertex/VertexBuffer/mode +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166865_ com/mojang/blaze3d/vertex/VertexBuffer/sequentialIndices +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_231217_ com/mojang/blaze3d/vertex/VertexBuffer/vertexBufferId +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_285574_ com/mojang/blaze3d/vertex/VertexBuffer/usage +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_85917_ com/mojang/blaze3d/vertex/VertexBuffer/format +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/$VALUES com/mojang/blaze3d/vertex/VertexBuffer$Usage/$VALUES +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/DYNAMIC com/mojang/blaze3d/vertex/VertexBuffer$Usage/DYNAMIC +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/STATIC com/mojang/blaze3d/vertex/VertexBuffer$Usage/STATIC +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/f_285654_ com/mojang/blaze3d/vertex/VertexBuffer$Usage/id +FD: com/mojang/blaze3d/vertex/VertexFormat/f_166905_ com/mojang/blaze3d/vertex/VertexFormat/elementMapping +FD: com/mojang/blaze3d/vertex/VertexFormat/f_231232_ com/mojang/blaze3d/vertex/VertexFormat/immediateDrawVertexBuffer +FD: com/mojang/blaze3d/vertex/VertexFormat/f_86012_ com/mojang/blaze3d/vertex/VertexFormat/elements +FD: com/mojang/blaze3d/vertex/VertexFormat/f_86013_ com/mojang/blaze3d/vertex/VertexFormat/offsets +FD: com/mojang/blaze3d/vertex/VertexFormat/f_86014_ com/mojang/blaze3d/vertex/VertexFormat/vertexSize +FD: com/mojang/blaze3d/vertex/VertexFormat$1/f_166918_ com/mojang/blaze3d/vertex/VertexFormat$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$Mode +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/$VALUES com/mojang/blaze3d/vertex/VertexFormat$IndexType/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/INT com/mojang/blaze3d/vertex/VertexFormat$IndexType/INT +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/SHORT com/mojang/blaze3d/vertex/VertexFormat$IndexType/SHORT +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/f_166923_ com/mojang/blaze3d/vertex/VertexFormat$IndexType/asGLType +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/f_166924_ com/mojang/blaze3d/vertex/VertexFormat$IndexType/bytes +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/$VALUES com/mojang/blaze3d/vertex/VertexFormat$Mode/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINES com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINE_STRIP com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINE_STRIP +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/LINES com/mojang/blaze3d/vertex/VertexFormat$Mode/LINES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/LINE_STRIP com/mojang/blaze3d/vertex/VertexFormat$Mode/LINE_STRIP +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/QUADS com/mojang/blaze3d/vertex/VertexFormat$Mode/QUADS +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLES com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_FAN com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_FAN +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_STRIP com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_STRIP +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_166946_ com/mojang/blaze3d/vertex/VertexFormat$Mode/asGLMode +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_166947_ com/mojang/blaze3d/vertex/VertexFormat$Mode/primitiveLength +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_166948_ com/mojang/blaze3d/vertex/VertexFormat$Mode/primitiveStride +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_231234_ com/mojang/blaze3d/vertex/VertexFormat$Mode/connectedPrimitives +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86030_ com/mojang/blaze3d/vertex/VertexFormatElement/type +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86031_ com/mojang/blaze3d/vertex/VertexFormatElement/usage +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86032_ com/mojang/blaze3d/vertex/VertexFormatElement/index +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86033_ com/mojang/blaze3d/vertex/VertexFormatElement/count +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86034_ com/mojang/blaze3d/vertex/VertexFormatElement/byteSize +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/$VALUES com/mojang/blaze3d/vertex/VertexFormatElement$Type/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/BYTE com/mojang/blaze3d/vertex/VertexFormatElement$Type/BYTE +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/FLOAT com/mojang/blaze3d/vertex/VertexFormatElement$Type/FLOAT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/INT com/mojang/blaze3d/vertex/VertexFormatElement$Type/INT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/SHORT com/mojang/blaze3d/vertex/VertexFormatElement$Type/SHORT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/UBYTE com/mojang/blaze3d/vertex/VertexFormatElement$Type/UBYTE +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/UINT com/mojang/blaze3d/vertex/VertexFormatElement$Type/UINT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/USHORT com/mojang/blaze3d/vertex/VertexFormatElement$Type/USHORT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/f_86063_ com/mojang/blaze3d/vertex/VertexFormatElement$Type/size +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/f_86064_ com/mojang/blaze3d/vertex/VertexFormatElement$Type/name +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/f_86065_ com/mojang/blaze3d/vertex/VertexFormatElement$Type/glType +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/$VALUES com/mojang/blaze3d/vertex/VertexFormatElement$Usage/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/COLOR com/mojang/blaze3d/vertex/VertexFormatElement$Usage/COLOR +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/GENERIC com/mojang/blaze3d/vertex/VertexFormatElement$Usage/GENERIC +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/NORMAL com/mojang/blaze3d/vertex/VertexFormatElement$Usage/NORMAL +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/PADDING com/mojang/blaze3d/vertex/VertexFormatElement$Usage/PADDING +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/POSITION com/mojang/blaze3d/vertex/VertexFormatElement$Usage/POSITION +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/UV com/mojang/blaze3d/vertex/VertexFormatElement$Usage/UV +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/f_86086_ com/mojang/blaze3d/vertex/VertexFormatElement$Usage/name +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/f_86087_ com/mojang/blaze3d/vertex/VertexFormatElement$Usage/setupState +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/f_86088_ com/mojang/blaze3d/vertex/VertexFormatElement$Usage/clearState +FD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/f_86171_ com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/first +FD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/f_86172_ com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/second +FD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/f_167071_ com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/delegates +FD: com/mojang/blaze3d/vertex/VertexSorting/f_276450_ com/mojang/blaze3d/vertex/VertexSorting/DISTANCE_TO_ORIGIN +FD: com/mojang/blaze3d/vertex/VertexSorting/f_276633_ com/mojang/blaze3d/vertex/VertexSorting/ORTHOGRAPHIC_Z +FD: com/mojang/math/Axis/f_252392_ com/mojang/math/Axis/YN +FD: com/mojang/math/Axis/f_252393_ com/mojang/math/Axis/ZN +FD: com/mojang/math/Axis/f_252403_ com/mojang/math/Axis/ZP +FD: com/mojang/math/Axis/f_252436_ com/mojang/math/Axis/YP +FD: com/mojang/math/Axis/f_252495_ com/mojang/math/Axis/XN +FD: com/mojang/math/Axis/f_252529_ com/mojang/math/Axis/XP +FD: com/mojang/math/Constants/f_142767_ com/mojang/math/Constants/PI +FD: com/mojang/math/Constants/f_142768_ com/mojang/math/Constants/RAD_TO_DEG +FD: com/mojang/math/Constants/f_142769_ com/mojang/math/Constants/DEG_TO_RAD +FD: com/mojang/math/Constants/f_142770_ com/mojang/math/Constants/EPSILON +FD: com/mojang/math/Divisor/f_252404_ com/mojang/math/Divisor/returnedParts +FD: com/mojang/math/Divisor/f_252437_ com/mojang/math/Divisor/remainder +FD: com/mojang/math/Divisor/f_252455_ com/mojang/math/Divisor/mod +FD: com/mojang/math/Divisor/f_252516_ com/mojang/math/Divisor/denominator +FD: com/mojang/math/Divisor/f_252539_ com/mojang/math/Divisor/quotient +FD: com/mojang/math/GivensParameters/f_276137_ com/mojang/math/GivensParameters/cosHalf +FD: com/mojang/math/GivensParameters/f_276143_ com/mojang/math/GivensParameters/sinHalf +FD: com/mojang/math/MatrixUtil/f_252537_ com/mojang/math/MatrixUtil/G +FD: com/mojang/math/MatrixUtil/f_276163_ com/mojang/math/MatrixUtil/PI_4 +FD: com/mojang/math/OctahedralGroup/$VALUES com/mojang/math/OctahedralGroup/$VALUES +FD: com/mojang/math/OctahedralGroup/IDENTITY com/mojang/math/OctahedralGroup/IDENTITY +FD: com/mojang/math/OctahedralGroup/INVERSION com/mojang/math/OctahedralGroup/INVERSION +FD: com/mojang/math/OctahedralGroup/INVERT_X com/mojang/math/OctahedralGroup/INVERT_X +FD: com/mojang/math/OctahedralGroup/INVERT_Y com/mojang/math/OctahedralGroup/INVERT_Y +FD: com/mojang/math/OctahedralGroup/INVERT_Z com/mojang/math/OctahedralGroup/INVERT_Z +FD: com/mojang/math/OctahedralGroup/ROT_120_NNN com/mojang/math/OctahedralGroup/ROT_120_NNN +FD: com/mojang/math/OctahedralGroup/ROT_120_NNP com/mojang/math/OctahedralGroup/ROT_120_NNP +FD: com/mojang/math/OctahedralGroup/ROT_120_NPN com/mojang/math/OctahedralGroup/ROT_120_NPN +FD: com/mojang/math/OctahedralGroup/ROT_120_NPP com/mojang/math/OctahedralGroup/ROT_120_NPP +FD: com/mojang/math/OctahedralGroup/ROT_120_PNN com/mojang/math/OctahedralGroup/ROT_120_PNN +FD: com/mojang/math/OctahedralGroup/ROT_120_PNP com/mojang/math/OctahedralGroup/ROT_120_PNP +FD: com/mojang/math/OctahedralGroup/ROT_120_PPN com/mojang/math/OctahedralGroup/ROT_120_PPN +FD: com/mojang/math/OctahedralGroup/ROT_120_PPP com/mojang/math/OctahedralGroup/ROT_120_PPP +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_NEG com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_NEG +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_POS com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_POS +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_NEG com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_NEG +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_POS com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_POS +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_NEG com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_NEG +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_POS com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_POS +FD: com/mojang/math/OctahedralGroup/ROT_180_FACE_XY com/mojang/math/OctahedralGroup/ROT_180_FACE_XY +FD: com/mojang/math/OctahedralGroup/ROT_180_FACE_XZ com/mojang/math/OctahedralGroup/ROT_180_FACE_XZ +FD: com/mojang/math/OctahedralGroup/ROT_180_FACE_YZ com/mojang/math/OctahedralGroup/ROT_180_FACE_YZ +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NNN com/mojang/math/OctahedralGroup/ROT_60_REF_NNN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NNP com/mojang/math/OctahedralGroup/ROT_60_REF_NNP +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NPN com/mojang/math/OctahedralGroup/ROT_60_REF_NPN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NPP com/mojang/math/OctahedralGroup/ROT_60_REF_NPP +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PNN com/mojang/math/OctahedralGroup/ROT_60_REF_PNN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PNP com/mojang/math/OctahedralGroup/ROT_60_REF_PNP +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PPN com/mojang/math/OctahedralGroup/ROT_60_REF_PPN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PPP com/mojang/math/OctahedralGroup/ROT_60_REF_PPP +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_X_NEG com/mojang/math/OctahedralGroup/ROT_90_REF_X_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_X_POS com/mojang/math/OctahedralGroup/ROT_90_REF_X_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Y_NEG com/mojang/math/OctahedralGroup/ROT_90_REF_Y_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Y_POS com/mojang/math/OctahedralGroup/ROT_90_REF_Y_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Z_NEG com/mojang/math/OctahedralGroup/ROT_90_REF_Z_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Z_POS com/mojang/math/OctahedralGroup/ROT_90_REF_Z_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_X_NEG com/mojang/math/OctahedralGroup/ROT_90_X_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_X_POS com/mojang/math/OctahedralGroup/ROT_90_X_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_Y_NEG com/mojang/math/OctahedralGroup/ROT_90_Y_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_Y_POS com/mojang/math/OctahedralGroup/ROT_90_Y_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_Z_NEG com/mojang/math/OctahedralGroup/ROT_90_Z_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_Z_POS com/mojang/math/OctahedralGroup/ROT_90_Z_POS +FD: com/mojang/math/OctahedralGroup/SWAP_NEG_XY com/mojang/math/OctahedralGroup/SWAP_NEG_XY +FD: com/mojang/math/OctahedralGroup/SWAP_NEG_XZ com/mojang/math/OctahedralGroup/SWAP_NEG_XZ +FD: com/mojang/math/OctahedralGroup/SWAP_NEG_YZ com/mojang/math/OctahedralGroup/SWAP_NEG_YZ +FD: com/mojang/math/OctahedralGroup/SWAP_XY com/mojang/math/OctahedralGroup/SWAP_XY +FD: com/mojang/math/OctahedralGroup/SWAP_XZ com/mojang/math/OctahedralGroup/SWAP_XZ +FD: com/mojang/math/OctahedralGroup/SWAP_YZ com/mojang/math/OctahedralGroup/SWAP_YZ +FD: com/mojang/math/OctahedralGroup/f_56473_ com/mojang/math/OctahedralGroup/transformation +FD: com/mojang/math/OctahedralGroup/f_56474_ com/mojang/math/OctahedralGroup/name +FD: com/mojang/math/OctahedralGroup/f_56475_ com/mojang/math/OctahedralGroup/rotatedDirections +FD: com/mojang/math/OctahedralGroup/f_56476_ com/mojang/math/OctahedralGroup/invertX +FD: com/mojang/math/OctahedralGroup/f_56478_ com/mojang/math/OctahedralGroup/invertY +FD: com/mojang/math/OctahedralGroup/f_56479_ com/mojang/math/OctahedralGroup/invertZ +FD: com/mojang/math/OctahedralGroup/f_56480_ com/mojang/math/OctahedralGroup/permutation +FD: com/mojang/math/OctahedralGroup/f_56481_ com/mojang/math/OctahedralGroup/cayleyTable +FD: com/mojang/math/OctahedralGroup/f_56482_ com/mojang/math/OctahedralGroup/inverseTable +FD: com/mojang/math/OctahedralGroup$1/f_56545_ com/mojang/math/OctahedralGroup$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: com/mojang/math/SymmetricGroup3/$VALUES com/mojang/math/SymmetricGroup3/$VALUES +FD: com/mojang/math/SymmetricGroup3/P123 com/mojang/math/SymmetricGroup3/P123 +FD: com/mojang/math/SymmetricGroup3/P132 com/mojang/math/SymmetricGroup3/P132 +FD: com/mojang/math/SymmetricGroup3/P213 com/mojang/math/SymmetricGroup3/P213 +FD: com/mojang/math/SymmetricGroup3/P231 com/mojang/math/SymmetricGroup3/P231 +FD: com/mojang/math/SymmetricGroup3/P312 com/mojang/math/SymmetricGroup3/P312 +FD: com/mojang/math/SymmetricGroup3/P321 com/mojang/math/SymmetricGroup3/P321 +FD: com/mojang/math/SymmetricGroup3/f_109168_ com/mojang/math/SymmetricGroup3/permutation +FD: com/mojang/math/SymmetricGroup3/f_109169_ com/mojang/math/SymmetricGroup3/transformation +FD: com/mojang/math/SymmetricGroup3/f_109170_ com/mojang/math/SymmetricGroup3/cayleyTable +FD: com/mojang/math/SymmetricGroup3/f_175574_ com/mojang/math/SymmetricGroup3/ORDER +FD: com/mojang/math/Transformation/f_121078_ com/mojang/math/Transformation/matrix +FD: com/mojang/math/Transformation/f_121079_ com/mojang/math/Transformation/decomposed +FD: com/mojang/math/Transformation/f_121080_ com/mojang/math/Transformation/translation +FD: com/mojang/math/Transformation/f_121081_ com/mojang/math/Transformation/leftRotation +FD: com/mojang/math/Transformation/f_121082_ com/mojang/math/Transformation/scale +FD: com/mojang/math/Transformation/f_121083_ com/mojang/math/Transformation/rightRotation +FD: com/mojang/math/Transformation/f_121084_ com/mojang/math/Transformation/IDENTITY +FD: com/mojang/math/Transformation/f_268453_ com/mojang/math/Transformation/CODEC +FD: com/mojang/math/Transformation/f_268620_ com/mojang/math/Transformation/EXTENDED_CODEC +FD: com/mojang/realmsclient/KeyCombo/f_86221_ com/mojang/realmsclient/KeyCombo/chars +FD: com/mojang/realmsclient/KeyCombo/f_86222_ com/mojang/realmsclient/KeyCombo/matchIndex +FD: com/mojang/realmsclient/KeyCombo/f_86223_ com/mojang/realmsclient/KeyCombo/onCompletion +FD: com/mojang/realmsclient/RealmsMainScreen/f_167173_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_167174_ com/mojang/realmsclient/RealmsMainScreen/realmsSelectionListAdded +FD: com/mojang/realmsclient/RealmsMainScreen/f_167175_ com/mojang/realmsclient/RealmsMainScreen/UNITIALIZED_WORLD_NARRATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_212359_ com/mojang/realmsclient/RealmsMainScreen/lastClickTime +FD: com/mojang/realmsclient/RealmsMainScreen/f_238533_ com/mojang/realmsclient/RealmsMainScreen/serverList +FD: com/mojang/realmsclient/RealmsMainScreen/f_238705_ com/mojang/realmsclient/RealmsMainScreen/dataSubscription +FD: com/mojang/realmsclient/RealmsMainScreen/f_271231_ com/mojang/realmsclient/RealmsMainScreen/LEAVE_SERVER_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_271271_ com/mojang/realmsclient/RealmsMainScreen/BUTTON_BOTTOM_ROW_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_271303_ com/mojang/realmsclient/RealmsMainScreen/PLAY_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_271314_ com/mojang/realmsclient/RealmsMainScreen/FOOTER_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_271378_ com/mojang/realmsclient/RealmsMainScreen/BUTTON_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_271412_ com/mojang/realmsclient/RealmsMainScreen/BUTTON_TOP_ROW_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_271441_ com/mojang/realmsclient/RealmsMainScreen/CONFIGURE_SERVER_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_273868_ com/mojang/realmsclient/RealmsMainScreen/INFO_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_273876_ com/mojang/realmsclient/RealmsMainScreen/handledSeenNotifications +FD: com/mojang/realmsclient/RealmsMainScreen/f_273903_ com/mojang/realmsclient/RealmsMainScreen/notifications +FD: com/mojang/realmsclient/RealmsMainScreen/f_278420_ com/mojang/realmsclient/RealmsMainScreen/LOGO_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_278430_ com/mojang/realmsclient/RealmsMainScreen/LOGO_TEXTURE_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_278451_ com/mojang/realmsclient/RealmsMainScreen/LOGO_PADDING +FD: com/mojang/realmsclient/RealmsMainScreen/f_278457_ com/mojang/realmsclient/RealmsMainScreen/HEADER_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_278488_ com/mojang/realmsclient/RealmsMainScreen/LOGO_TEXTURE_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_278497_ com/mojang/realmsclient/RealmsMainScreen/LOGO_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86231_ com/mojang/realmsclient/RealmsMainScreen/DARKEN_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86232_ com/mojang/realmsclient/RealmsMainScreen/CROSS_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86233_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86237_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_MESSAGE_LINES +FD: com/mojang/realmsclient/RealmsMainScreen/f_86238_ com/mojang/realmsclient/RealmsMainScreen/SERVER_UNITIALIZED_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86239_ com/mojang/realmsclient/RealmsMainScreen/SUBSCRIPTION_EXPIRED_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86240_ com/mojang/realmsclient/RealmsMainScreen/SUBSCRIPTION_RENEW_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86241_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_EXPIRED_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86243_ com/mojang/realmsclient/RealmsMainScreen/SELECT_MINIGAME_PREFIX +FD: com/mojang/realmsclient/RealmsMainScreen/f_86244_ com/mojang/realmsclient/RealmsMainScreen/POPUP_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86245_ com/mojang/realmsclient/RealmsMainScreen/SERVER_EXPIRED_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86246_ com/mojang/realmsclient/RealmsMainScreen/SERVER_EXPIRES_SOON_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86247_ com/mojang/realmsclient/RealmsMainScreen/SERVER_EXPIRES_IN_DAY_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86248_ com/mojang/realmsclient/RealmsMainScreen/SERVER_OPEN_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86249_ com/mojang/realmsclient/RealmsMainScreen/SERVER_CLOSED_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86253_ com/mojang/realmsclient/RealmsMainScreen/NEWS_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86254_ com/mojang/realmsclient/RealmsMainScreen/teaserImages +FD: com/mojang/realmsclient/RealmsMainScreen/f_86256_ com/mojang/realmsclient/RealmsMainScreen/overrideConfigure +FD: com/mojang/realmsclient/RealmsMainScreen/f_86257_ com/mojang/realmsclient/RealmsMainScreen/LOGGER +FD: com/mojang/realmsclient/RealmsMainScreen/f_86258_ com/mojang/realmsclient/RealmsMainScreen/hasUnreadNews +FD: com/mojang/realmsclient/RealmsMainScreen/f_86259_ com/mojang/realmsclient/RealmsMainScreen/newsLink +FD: com/mojang/realmsclient/RealmsMainScreen/f_86260_ com/mojang/realmsclient/RealmsMainScreen/carouselIndex +FD: com/mojang/realmsclient/RealmsMainScreen/f_86261_ com/mojang/realmsclient/RealmsMainScreen/carouselTick +FD: com/mojang/realmsclient/RealmsMainScreen/f_86262_ com/mojang/realmsclient/RealmsMainScreen/hasSwitchedCarouselImage +FD: com/mojang/realmsclient/RealmsMainScreen/f_86263_ com/mojang/realmsclient/RealmsMainScreen/keyCombos +FD: com/mojang/realmsclient/RealmsMainScreen/f_86265_ com/mojang/realmsclient/RealmsMainScreen/connectLock +FD: com/mojang/realmsclient/RealmsMainScreen/f_86266_ com/mojang/realmsclient/RealmsMainScreen/formattedPopup +FD: com/mojang/realmsclient/RealmsMainScreen/f_86268_ com/mojang/realmsclient/RealmsMainScreen/showPopupButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86269_ com/mojang/realmsclient/RealmsMainScreen/pendingInvitesButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86270_ com/mojang/realmsclient/RealmsMainScreen/newsButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86271_ com/mojang/realmsclient/RealmsMainScreen/createTrialButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86272_ com/mojang/realmsclient/RealmsMainScreen/buyARealmButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86273_ com/mojang/realmsclient/RealmsMainScreen/closeButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86274_ com/mojang/realmsclient/RealmsMainScreen/lastScrollYPosition +FD: com/mojang/realmsclient/RealmsMainScreen/f_86275_ com/mojang/realmsclient/RealmsMainScreen/hasParentalConsent +FD: com/mojang/realmsclient/RealmsMainScreen/f_86276_ com/mojang/realmsclient/RealmsMainScreen/checkedParentalConsent +FD: com/mojang/realmsclient/RealmsMainScreen/f_86277_ com/mojang/realmsclient/RealmsMainScreen/checkedClientCompatability +FD: com/mojang/realmsclient/RealmsMainScreen/f_86278_ com/mojang/realmsclient/RealmsMainScreen/realmsGenericErrorScreen +FD: com/mojang/realmsclient/RealmsMainScreen/f_86279_ com/mojang/realmsclient/RealmsMainScreen/regionsPinged +FD: com/mojang/realmsclient/RealmsMainScreen/f_86280_ com/mojang/realmsclient/RealmsMainScreen/inviteNarrationLimiter +FD: com/mojang/realmsclient/RealmsMainScreen/f_86281_ com/mojang/realmsclient/RealmsMainScreen/dontSetConnectedToRealms +FD: com/mojang/realmsclient/RealmsMainScreen/f_86282_ com/mojang/realmsclient/RealmsMainScreen/lastScreen +FD: com/mojang/realmsclient/RealmsMainScreen/f_86283_ com/mojang/realmsclient/RealmsMainScreen/realmSelectionList +FD: com/mojang/realmsclient/RealmsMainScreen/f_86285_ com/mojang/realmsclient/RealmsMainScreen/playButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86286_ com/mojang/realmsclient/RealmsMainScreen/backButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86287_ com/mojang/realmsclient/RealmsMainScreen/renewButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86288_ com/mojang/realmsclient/RealmsMainScreen/configureButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86289_ com/mojang/realmsclient/RealmsMainScreen/leaveButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86291_ com/mojang/realmsclient/RealmsMainScreen/realmsServers +FD: com/mojang/realmsclient/RealmsMainScreen/f_86292_ com/mojang/realmsclient/RealmsMainScreen/numberOfPendingInvites +FD: com/mojang/realmsclient/RealmsMainScreen/f_86293_ com/mojang/realmsclient/RealmsMainScreen/animTick +FD: com/mojang/realmsclient/RealmsMainScreen/f_86294_ com/mojang/realmsclient/RealmsMainScreen/hasFetchedServers +FD: com/mojang/realmsclient/RealmsMainScreen/f_86295_ com/mojang/realmsclient/RealmsMainScreen/popupOpenedByUser +FD: com/mojang/realmsclient/RealmsMainScreen/f_86296_ com/mojang/realmsclient/RealmsMainScreen/justClosedPopup +FD: com/mojang/realmsclient/RealmsMainScreen/f_86297_ com/mojang/realmsclient/RealmsMainScreen/trialsAvailable +FD: com/mojang/realmsclient/RealmsMainScreen/f_86298_ com/mojang/realmsclient/RealmsMainScreen/createdTrial +FD: com/mojang/realmsclient/RealmsMainScreen/f_86299_ com/mojang/realmsclient/RealmsMainScreen/showingPopup +FD: com/mojang/realmsclient/RealmsMainScreen/f_86300_ com/mojang/realmsclient/RealmsMainScreen/ON_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86301_ com/mojang/realmsclient/RealmsMainScreen/OFF_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86302_ com/mojang/realmsclient/RealmsMainScreen/EXPIRED_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86303_ com/mojang/realmsclient/RealmsMainScreen/EXPIRES_SOON_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86305_ com/mojang/realmsclient/RealmsMainScreen/INVITATION_ICONS_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86306_ com/mojang/realmsclient/RealmsMainScreen/INVITE_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86307_ com/mojang/realmsclient/RealmsMainScreen/WORLDICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86308_ com/mojang/realmsclient/RealmsMainScreen/LOGO_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86311_ com/mojang/realmsclient/RealmsMainScreen/NEWS_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86312_ com/mojang/realmsclient/RealmsMainScreen/POPUP_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen$1/f_86733_ com/mojang/realmsclient/RealmsMainScreen$1/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$2/f_86743_ com/mojang/realmsclient/RealmsMainScreen$2/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$3/f_86751_ com/mojang/realmsclient/RealmsMainScreen$3/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$4/f_86756_ com/mojang/realmsclient/RealmsMainScreen$4/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$5/f_193501_ com/mojang/realmsclient/RealmsMainScreen$5/val$server +FD: com/mojang/realmsclient/RealmsMainScreen$5/f_86761_ com/mojang/realmsclient/RealmsMainScreen$5/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/f_273836_ com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/xPos +FD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/f_273854_ com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/f_273936_ com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/button +FD: com/mojang/realmsclient/RealmsMainScreen$CloseButton/f_86770_ com/mojang/realmsclient/RealmsMainScreen$CloseButton/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$Entry/f_86781_ com/mojang/realmsclient/RealmsMainScreen$Entry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/f_278375_ com/mojang/realmsclient/RealmsMainScreen$NewsButton/SIDE +FD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/f_86799_ com/mojang/realmsclient/RealmsMainScreen$NewsButton/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273811_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/textFrame +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273817_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/textWidget +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273824_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273834_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/SIDE_MARGINS +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273835_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/text +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273853_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/OUTLINE_COLOR +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273894_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/ITEM_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273902_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/gridLayout +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273924_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/children +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273937_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/lastEntryWidth +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273947_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/dismissButton +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278376_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278385_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/INVITES_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278403_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/NO_PENDING_INVITES +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278406_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/TITLE +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278408_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/X_OFFSET +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278435_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278437_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/INVITES_OFFSET +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278453_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/INVITES_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278506_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/PENDING_INVITES +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_86810_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/f_86822_ com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/f_167228_ com/mojang/realmsclient/RealmsMainScreen$ServerEntry/SKIN_HEAD_LARGE_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/f_86852_ com/mojang/realmsclient/RealmsMainScreen$ServerEntry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/f_86853_ com/mojang/realmsclient/RealmsMainScreen$ServerEntry/serverData +FD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/f_86903_ com/mojang/realmsclient/RealmsMainScreen$TrialEntry/this$0 +FD: com/mojang/realmsclient/Unit/$VALUES com/mojang/realmsclient/Unit/$VALUES +FD: com/mojang/realmsclient/Unit/B com/mojang/realmsclient/Unit/B +FD: com/mojang/realmsclient/Unit/GB com/mojang/realmsclient/Unit/GB +FD: com/mojang/realmsclient/Unit/KB com/mojang/realmsclient/Unit/KB +FD: com/mojang/realmsclient/Unit/MB com/mojang/realmsclient/Unit/MB +FD: com/mojang/realmsclient/Unit/f_167231_ com/mojang/realmsclient/Unit/BASE_UNIT +FD: com/mojang/realmsclient/client/FileDownload/f_86953_ com/mojang/realmsclient/client/FileDownload/LOGGER +FD: com/mojang/realmsclient/client/FileDownload/f_86954_ com/mojang/realmsclient/client/FileDownload/cancelled +FD: com/mojang/realmsclient/client/FileDownload/f_86955_ com/mojang/realmsclient/client/FileDownload/finished +FD: com/mojang/realmsclient/client/FileDownload/f_86956_ com/mojang/realmsclient/client/FileDownload/error +FD: com/mojang/realmsclient/client/FileDownload/f_86957_ com/mojang/realmsclient/client/FileDownload/extracting +FD: com/mojang/realmsclient/client/FileDownload/f_86958_ com/mojang/realmsclient/client/FileDownload/tempFile +FD: com/mojang/realmsclient/client/FileDownload/f_86959_ com/mojang/realmsclient/client/FileDownload/resourcePackPath +FD: com/mojang/realmsclient/client/FileDownload/f_86960_ com/mojang/realmsclient/client/FileDownload/request +FD: com/mojang/realmsclient/client/FileDownload/f_86961_ com/mojang/realmsclient/client/FileDownload/currentThread +FD: com/mojang/realmsclient/client/FileDownload/f_86962_ com/mojang/realmsclient/client/FileDownload/requestConfig +FD: com/mojang/realmsclient/client/FileDownload/f_86963_ com/mojang/realmsclient/client/FileDownload/INVALID_FILE_NAMES +FD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/f_87012_ com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/listener +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87020_ com/mojang/realmsclient/client/FileDownload$ProgressListener/this$0 +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87021_ com/mojang/realmsclient/client/FileDownload$ProgressListener/worldName +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87022_ com/mojang/realmsclient/client/FileDownload$ProgressListener/tempFile +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87023_ com/mojang/realmsclient/client/FileDownload$ProgressListener/levelStorageSource +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87024_ com/mojang/realmsclient/client/FileDownload$ProgressListener/downloadStatus +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87040_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/this$0 +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87041_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/tempFile +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87042_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/downloadStatus +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87043_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/worldDownload +FD: com/mojang/realmsclient/client/FileUpload/f_167233_ com/mojang/realmsclient/client/FileUpload/MAX_RETRIES +FD: com/mojang/realmsclient/client/FileUpload/f_167234_ com/mojang/realmsclient/client/FileUpload/UPLOAD_PATH +FD: com/mojang/realmsclient/client/FileUpload/f_87057_ com/mojang/realmsclient/client/FileUpload/LOGGER +FD: com/mojang/realmsclient/client/FileUpload/f_87058_ com/mojang/realmsclient/client/FileUpload/file +FD: com/mojang/realmsclient/client/FileUpload/f_87059_ com/mojang/realmsclient/client/FileUpload/worldId +FD: com/mojang/realmsclient/client/FileUpload/f_87060_ com/mojang/realmsclient/client/FileUpload/slotId +FD: com/mojang/realmsclient/client/FileUpload/f_87061_ com/mojang/realmsclient/client/FileUpload/uploadInfo +FD: com/mojang/realmsclient/client/FileUpload/f_87062_ com/mojang/realmsclient/client/FileUpload/sessionId +FD: com/mojang/realmsclient/client/FileUpload/f_87063_ com/mojang/realmsclient/client/FileUpload/username +FD: com/mojang/realmsclient/client/FileUpload/f_87064_ com/mojang/realmsclient/client/FileUpload/clientVersion +FD: com/mojang/realmsclient/client/FileUpload/f_87065_ com/mojang/realmsclient/client/FileUpload/uploadStatus +FD: com/mojang/realmsclient/client/FileUpload/f_87066_ com/mojang/realmsclient/client/FileUpload/cancelled +FD: com/mojang/realmsclient/client/FileUpload/f_87067_ com/mojang/realmsclient/client/FileUpload/uploadTask +FD: com/mojang/realmsclient/client/FileUpload/f_87068_ com/mojang/realmsclient/client/FileUpload/requestConfig +FD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/f_87101_ com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/length +FD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/f_87102_ com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/content +FD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/f_87103_ com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/uploadStatus +FD: com/mojang/realmsclient/client/Ping$Region/$VALUES com/mojang/realmsclient/client/Ping$Region/$VALUES +FD: com/mojang/realmsclient/client/Ping$Region/AP_NORTHEAST_1 com/mojang/realmsclient/client/Ping$Region/AP_NORTHEAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_1 com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_2 com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_2 +FD: com/mojang/realmsclient/client/Ping$Region/EU_WEST_1 com/mojang/realmsclient/client/Ping$Region/EU_WEST_1 +FD: com/mojang/realmsclient/client/Ping$Region/SA_EAST_1 com/mojang/realmsclient/client/Ping$Region/SA_EAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/US_EAST_1 com/mojang/realmsclient/client/Ping$Region/US_EAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/US_WEST_1 com/mojang/realmsclient/client/Ping$Region/US_WEST_1 +FD: com/mojang/realmsclient/client/Ping$Region/US_WEST_2 com/mojang/realmsclient/client/Ping$Region/US_WEST_2 +FD: com/mojang/realmsclient/client/Ping$Region/f_87141_ com/mojang/realmsclient/client/Ping$Region/name +FD: com/mojang/realmsclient/client/Ping$Region/f_87142_ com/mojang/realmsclient/client/Ping$Region/endpoint +FD: com/mojang/realmsclient/client/RealmsClient/f_167237_ com/mojang/realmsclient/client/RealmsClient/PATH_PENDING_INVITES_COUNT +FD: com/mojang/realmsclient/client/RealmsClient/f_167238_ com/mojang/realmsclient/client/RealmsClient/PATH_PENDING_INVITES +FD: com/mojang/realmsclient/client/RealmsClient/f_167239_ com/mojang/realmsclient/client/RealmsClient/PATH_ACCEPT_INVITE +FD: com/mojang/realmsclient/client/RealmsClient/f_167240_ com/mojang/realmsclient/client/RealmsClient/PATH_REJECT_INVITE +FD: com/mojang/realmsclient/client/RealmsClient/f_167241_ com/mojang/realmsclient/client/RealmsClient/PATH_UNINVITE_MYSELF +FD: com/mojang/realmsclient/client/RealmsClient/f_167242_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_UPDATE +FD: com/mojang/realmsclient/client/RealmsClient/f_167243_ com/mojang/realmsclient/client/RealmsClient/PATH_SLOT +FD: com/mojang/realmsclient/client/RealmsClient/f_167244_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_OPEN +FD: com/mojang/realmsclient/client/RealmsClient/f_167245_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_CLOSE +FD: com/mojang/realmsclient/client/RealmsClient/f_167246_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_RESET +FD: com/mojang/realmsclient/client/RealmsClient/f_167247_ com/mojang/realmsclient/client/RealmsClient/PATH_DELETE_WORLD +FD: com/mojang/realmsclient/client/RealmsClient/f_167248_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_BACKUPS +FD: com/mojang/realmsclient/client/RealmsClient/f_167249_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_DOWNLOAD +FD: com/mojang/realmsclient/client/RealmsClient/f_167250_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_UPLOAD +FD: com/mojang/realmsclient/client/RealmsClient/f_167251_ com/mojang/realmsclient/client/RealmsClient/PATH_CLIENT_COMPATIBLE +FD: com/mojang/realmsclient/client/RealmsClient/f_167252_ com/mojang/realmsclient/client/RealmsClient/PATH_TOS_AGREED +FD: com/mojang/realmsclient/client/RealmsClient/f_167253_ com/mojang/realmsclient/client/RealmsClient/PATH_NEWS +FD: com/mojang/realmsclient/client/RealmsClient/f_167254_ com/mojang/realmsclient/client/RealmsClient/PATH_STAGE_AVAILABLE +FD: com/mojang/realmsclient/client/RealmsClient/f_167255_ com/mojang/realmsclient/client/RealmsClient/WORLDS_RESOURCE_PATH +FD: com/mojang/realmsclient/client/RealmsClient/f_167256_ com/mojang/realmsclient/client/RealmsClient/INVITES_RESOURCE_PATH +FD: com/mojang/realmsclient/client/RealmsClient/f_167257_ com/mojang/realmsclient/client/RealmsClient/MCO_RESOURCE_PATH +FD: com/mojang/realmsclient/client/RealmsClient/f_167258_ com/mojang/realmsclient/client/RealmsClient/SUBSCRIPTION_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167259_ com/mojang/realmsclient/client/RealmsClient/ACTIVITIES_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167260_ com/mojang/realmsclient/client/RealmsClient/OPS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167261_ com/mojang/realmsclient/client/RealmsClient/REGIONS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167262_ com/mojang/realmsclient/client/RealmsClient/TRIALS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167263_ com/mojang/realmsclient/client/RealmsClient/PATH_INITIALIZE +FD: com/mojang/realmsclient/client/RealmsClient/f_167264_ com/mojang/realmsclient/client/RealmsClient/PATH_GET_ACTIVTIES +FD: com/mojang/realmsclient/client/RealmsClient/f_167265_ com/mojang/realmsclient/client/RealmsClient/PATH_GET_LIVESTATS +FD: com/mojang/realmsclient/client/RealmsClient/f_167266_ com/mojang/realmsclient/client/RealmsClient/PATH_GET_SUBSCRIPTION +FD: com/mojang/realmsclient/client/RealmsClient/f_167267_ com/mojang/realmsclient/client/RealmsClient/PATH_OP +FD: com/mojang/realmsclient/client/RealmsClient/f_167268_ com/mojang/realmsclient/client/RealmsClient/PATH_PUT_INTO_MINIGAMES_MODE +FD: com/mojang/realmsclient/client/RealmsClient/f_167269_ com/mojang/realmsclient/client/RealmsClient/PATH_AVAILABLE +FD: com/mojang/realmsclient/client/RealmsClient/f_167270_ com/mojang/realmsclient/client/RealmsClient/PATH_TEMPLATES +FD: com/mojang/realmsclient/client/RealmsClient/f_167271_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_JOIN +FD: com/mojang/realmsclient/client/RealmsClient/f_167272_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_GET +FD: com/mojang/realmsclient/client/RealmsClient/f_167273_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_INVITES +FD: com/mojang/realmsclient/client/RealmsClient/f_167274_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_UNINVITE +FD: com/mojang/realmsclient/client/RealmsClient/f_273827_ com/mojang/realmsclient/client/RealmsClient/PATH_MARK_NOTIFICATIONS_SEEN +FD: com/mojang/realmsclient/client/RealmsClient/f_273877_ com/mojang/realmsclient/client/RealmsClient/PATH_DISMISS_NOTIFICATIONS +FD: com/mojang/realmsclient/client/RealmsClient/f_273928_ com/mojang/realmsclient/client/RealmsClient/NOTIFICATIONS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_87157_ com/mojang/realmsclient/client/RealmsClient/currentEnvironment +FD: com/mojang/realmsclient/client/RealmsClient/f_87158_ com/mojang/realmsclient/client/RealmsClient/initialized +FD: com/mojang/realmsclient/client/RealmsClient/f_87159_ com/mojang/realmsclient/client/RealmsClient/LOGGER +FD: com/mojang/realmsclient/client/RealmsClient/f_87160_ com/mojang/realmsclient/client/RealmsClient/sessionId +FD: com/mojang/realmsclient/client/RealmsClient/f_87161_ com/mojang/realmsclient/client/RealmsClient/username +FD: com/mojang/realmsclient/client/RealmsClient/f_87162_ com/mojang/realmsclient/client/RealmsClient/minecraft +FD: com/mojang/realmsclient/client/RealmsClient/f_87163_ com/mojang/realmsclient/client/RealmsClient/GSON +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/$VALUES com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/$VALUES +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/COMPATIBLE com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/COMPATIBLE +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OTHER com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OTHER +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OUTDATED com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OUTDATED +FD: com/mojang/realmsclient/client/RealmsClient$Environment/$VALUES com/mojang/realmsclient/client/RealmsClient$Environment/$VALUES +FD: com/mojang/realmsclient/client/RealmsClient$Environment/LOCAL com/mojang/realmsclient/client/RealmsClient$Environment/LOCAL +FD: com/mojang/realmsclient/client/RealmsClient$Environment/PRODUCTION com/mojang/realmsclient/client/RealmsClient$Environment/PRODUCTION +FD: com/mojang/realmsclient/client/RealmsClient$Environment/STAGE com/mojang/realmsclient/client/RealmsClient$Environment/STAGE +FD: com/mojang/realmsclient/client/RealmsClient$Environment/f_87279_ com/mojang/realmsclient/client/RealmsClient$Environment/baseUrl +FD: com/mojang/realmsclient/client/RealmsClient$Environment/f_87280_ com/mojang/realmsclient/client/RealmsClient$Environment/protocol +FD: com/mojang/realmsclient/client/RealmsClientConfig/f_87291_ com/mojang/realmsclient/client/RealmsClientConfig/proxy +FD: com/mojang/realmsclient/client/RealmsError/f_87295_ com/mojang/realmsclient/client/RealmsError/LOGGER +FD: com/mojang/realmsclient/client/RealmsError/f_87296_ com/mojang/realmsclient/client/RealmsError/errorMessage +FD: com/mojang/realmsclient/client/RealmsError/f_87297_ com/mojang/realmsclient/client/RealmsError/errorCode +FD: com/mojang/realmsclient/client/Request/f_167283_ com/mojang/realmsclient/client/Request/DEFAULT_READ_TIMEOUT +FD: com/mojang/realmsclient/client/Request/f_167284_ com/mojang/realmsclient/client/Request/DEFAULT_CONNECT_TIMEOUT +FD: com/mojang/realmsclient/client/Request/f_87306_ com/mojang/realmsclient/client/Request/connection +FD: com/mojang/realmsclient/client/Request/f_87307_ com/mojang/realmsclient/client/Request/url +FD: com/mojang/realmsclient/client/Request/f_87308_ com/mojang/realmsclient/client/Request/connected +FD: com/mojang/realmsclient/client/Request$Post/f_87370_ com/mojang/realmsclient/client/Request$Post/content +FD: com/mojang/realmsclient/client/Request$Put/f_87378_ com/mojang/realmsclient/client/Request$Put/content +FD: com/mojang/realmsclient/client/UploadStatus/f_87386_ com/mojang/realmsclient/client/UploadStatus/bytesWritten +FD: com/mojang/realmsclient/client/UploadStatus/f_87387_ com/mojang/realmsclient/client/UploadStatus/totalBytes +FD: com/mojang/realmsclient/dto/Backup/f_87389_ com/mojang/realmsclient/dto/Backup/backupId +FD: com/mojang/realmsclient/dto/Backup/f_87390_ com/mojang/realmsclient/dto/Backup/lastModifiedDate +FD: com/mojang/realmsclient/dto/Backup/f_87391_ com/mojang/realmsclient/dto/Backup/size +FD: com/mojang/realmsclient/dto/Backup/f_87392_ com/mojang/realmsclient/dto/Backup/metadata +FD: com/mojang/realmsclient/dto/Backup/f_87393_ com/mojang/realmsclient/dto/Backup/changeList +FD: com/mojang/realmsclient/dto/Backup/f_87394_ com/mojang/realmsclient/dto/Backup/LOGGER +FD: com/mojang/realmsclient/dto/Backup/f_87395_ com/mojang/realmsclient/dto/Backup/uploadedVersion +FD: com/mojang/realmsclient/dto/BackupList/f_87405_ com/mojang/realmsclient/dto/BackupList/backups +FD: com/mojang/realmsclient/dto/BackupList/f_87406_ com/mojang/realmsclient/dto/BackupList/LOGGER +FD: com/mojang/realmsclient/dto/GuardedSerializer/f_87411_ com/mojang/realmsclient/dto/GuardedSerializer/gson +FD: com/mojang/realmsclient/dto/Ops/f_87418_ com/mojang/realmsclient/dto/Ops/ops +FD: com/mojang/realmsclient/dto/PendingInvite/f_87422_ com/mojang/realmsclient/dto/PendingInvite/invitationId +FD: com/mojang/realmsclient/dto/PendingInvite/f_87423_ com/mojang/realmsclient/dto/PendingInvite/worldName +FD: com/mojang/realmsclient/dto/PendingInvite/f_87424_ com/mojang/realmsclient/dto/PendingInvite/worldOwnerName +FD: com/mojang/realmsclient/dto/PendingInvite/f_87425_ com/mojang/realmsclient/dto/PendingInvite/worldOwnerUuid +FD: com/mojang/realmsclient/dto/PendingInvite/f_87426_ com/mojang/realmsclient/dto/PendingInvite/date +FD: com/mojang/realmsclient/dto/PendingInvite/f_87427_ com/mojang/realmsclient/dto/PendingInvite/LOGGER +FD: com/mojang/realmsclient/dto/PendingInvitesList/f_87432_ com/mojang/realmsclient/dto/PendingInvitesList/pendingInvites +FD: com/mojang/realmsclient/dto/PendingInvitesList/f_87433_ com/mojang/realmsclient/dto/PendingInvitesList/LOGGER +FD: com/mojang/realmsclient/dto/PingResult/f_87438_ com/mojang/realmsclient/dto/PingResult/pingResults +FD: com/mojang/realmsclient/dto/PingResult/f_87439_ com/mojang/realmsclient/dto/PingResult/worldIds +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87441_ com/mojang/realmsclient/dto/PlayerInfo/name +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87442_ com/mojang/realmsclient/dto/PlayerInfo/uuid +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87443_ com/mojang/realmsclient/dto/PlayerInfo/operator +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87444_ com/mojang/realmsclient/dto/PlayerInfo/accepted +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87445_ com/mojang/realmsclient/dto/PlayerInfo/online +FD: com/mojang/realmsclient/dto/RealmsDescriptionDto/f_87462_ com/mojang/realmsclient/dto/RealmsDescriptionDto/name +FD: com/mojang/realmsclient/dto/RealmsDescriptionDto/f_87463_ com/mojang/realmsclient/dto/RealmsDescriptionDto/description +FD: com/mojang/realmsclient/dto/RealmsNews/f_87467_ com/mojang/realmsclient/dto/RealmsNews/newsLink +FD: com/mojang/realmsclient/dto/RealmsNews/f_87468_ com/mojang/realmsclient/dto/RealmsNews/LOGGER +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273813_ com/mojang/realmsclient/dto/RealmsNotification/dismissable +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273826_ com/mojang/realmsclient/dto/RealmsNotification/SEEN +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273846_ com/mojang/realmsclient/dto/RealmsNotification/NOTIFICATION_UUID +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273860_ com/mojang/realmsclient/dto/RealmsNotification/TYPE +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273874_ com/mojang/realmsclient/dto/RealmsNotification/LOGGER +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273896_ com/mojang/realmsclient/dto/RealmsNotification/VISIT_URL +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273916_ com/mojang/realmsclient/dto/RealmsNotification/seen +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273939_ com/mojang/realmsclient/dto/RealmsNotification/type +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273940_ com/mojang/realmsclient/dto/RealmsNotification/DISMISSABLE +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273948_ com/mojang/realmsclient/dto/RealmsNotification/uuid +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273863_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/BUTTON_TEXT +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273906_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/MESSAGE +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273914_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/url +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273925_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/URL +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273945_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/message +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273949_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/buttonText +FD: com/mojang/realmsclient/dto/RealmsServer/f_87473_ com/mojang/realmsclient/dto/RealmsServer/id +FD: com/mojang/realmsclient/dto/RealmsServer/f_87474_ com/mojang/realmsclient/dto/RealmsServer/remoteSubscriptionId +FD: com/mojang/realmsclient/dto/RealmsServer/f_87475_ com/mojang/realmsclient/dto/RealmsServer/name +FD: com/mojang/realmsclient/dto/RealmsServer/f_87476_ com/mojang/realmsclient/dto/RealmsServer/motd +FD: com/mojang/realmsclient/dto/RealmsServer/f_87477_ com/mojang/realmsclient/dto/RealmsServer/state +FD: com/mojang/realmsclient/dto/RealmsServer/f_87478_ com/mojang/realmsclient/dto/RealmsServer/owner +FD: com/mojang/realmsclient/dto/RealmsServer/f_87479_ com/mojang/realmsclient/dto/RealmsServer/ownerUUID +FD: com/mojang/realmsclient/dto/RealmsServer/f_87480_ com/mojang/realmsclient/dto/RealmsServer/players +FD: com/mojang/realmsclient/dto/RealmsServer/f_87481_ com/mojang/realmsclient/dto/RealmsServer/slots +FD: com/mojang/realmsclient/dto/RealmsServer/f_87482_ com/mojang/realmsclient/dto/RealmsServer/expired +FD: com/mojang/realmsclient/dto/RealmsServer/f_87483_ com/mojang/realmsclient/dto/RealmsServer/expiredTrial +FD: com/mojang/realmsclient/dto/RealmsServer/f_87484_ com/mojang/realmsclient/dto/RealmsServer/daysLeft +FD: com/mojang/realmsclient/dto/RealmsServer/f_87485_ com/mojang/realmsclient/dto/RealmsServer/worldType +FD: com/mojang/realmsclient/dto/RealmsServer/f_87486_ com/mojang/realmsclient/dto/RealmsServer/activeSlot +FD: com/mojang/realmsclient/dto/RealmsServer/f_87487_ com/mojang/realmsclient/dto/RealmsServer/minigameName +FD: com/mojang/realmsclient/dto/RealmsServer/f_87488_ com/mojang/realmsclient/dto/RealmsServer/minigameId +FD: com/mojang/realmsclient/dto/RealmsServer/f_87489_ com/mojang/realmsclient/dto/RealmsServer/minigameImage +FD: com/mojang/realmsclient/dto/RealmsServer/f_87490_ com/mojang/realmsclient/dto/RealmsServer/serverPing +FD: com/mojang/realmsclient/dto/RealmsServer/f_87491_ com/mojang/realmsclient/dto/RealmsServer/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/f_87532_ com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/refOwner +FD: com/mojang/realmsclient/dto/RealmsServer$State/$VALUES com/mojang/realmsclient/dto/RealmsServer$State/$VALUES +FD: com/mojang/realmsclient/dto/RealmsServer$State/CLOSED com/mojang/realmsclient/dto/RealmsServer$State/CLOSED +FD: com/mojang/realmsclient/dto/RealmsServer$State/OPEN com/mojang/realmsclient/dto/RealmsServer$State/OPEN +FD: com/mojang/realmsclient/dto/RealmsServer$State/UNINITIALIZED com/mojang/realmsclient/dto/RealmsServer$State/UNINITIALIZED +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/$VALUES com/mojang/realmsclient/dto/RealmsServer$WorldType/$VALUES +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/ADVENTUREMAP com/mojang/realmsclient/dto/RealmsServer$WorldType/ADVENTUREMAP +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/EXPERIENCE com/mojang/realmsclient/dto/RealmsServer$WorldType/EXPERIENCE +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/INSPIRATION com/mojang/realmsclient/dto/RealmsServer$WorldType/INSPIRATION +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/MINIGAME com/mojang/realmsclient/dto/RealmsServer$WorldType/MINIGAME +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/NORMAL com/mojang/realmsclient/dto/RealmsServer$WorldType/NORMAL +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87565_ com/mojang/realmsclient/dto/RealmsServerAddress/address +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87566_ com/mojang/realmsclient/dto/RealmsServerAddress/resourcePackUrl +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87567_ com/mojang/realmsclient/dto/RealmsServerAddress/resourcePackHash +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87568_ com/mojang/realmsclient/dto/RealmsServerAddress/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServerList/f_87573_ com/mojang/realmsclient/dto/RealmsServerList/servers +FD: com/mojang/realmsclient/dto/RealmsServerList/f_87574_ com/mojang/realmsclient/dto/RealmsServerList/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServerPing/f_87579_ com/mojang/realmsclient/dto/RealmsServerPing/nrOfPlayers +FD: com/mojang/realmsclient/dto/RealmsServerPing/f_87580_ com/mojang/realmsclient/dto/RealmsServerPing/playerList +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87582_ com/mojang/realmsclient/dto/RealmsServerPlayerList/serverId +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87583_ com/mojang/realmsclient/dto/RealmsServerPlayerList/players +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87584_ com/mojang/realmsclient/dto/RealmsServerPlayerList/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87585_ com/mojang/realmsclient/dto/RealmsServerPlayerList/JSON_PARSER +FD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/f_87592_ com/mojang/realmsclient/dto/RealmsServerPlayerLists/servers +FD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/f_87593_ com/mojang/realmsclient/dto/RealmsServerPlayerLists/LOGGER +FD: com/mojang/realmsclient/dto/RealmsText/f_273818_ com/mojang/realmsclient/dto/RealmsText/ARGS +FD: com/mojang/realmsclient/dto/RealmsText/f_273881_ com/mojang/realmsclient/dto/RealmsText/translationKey +FD: com/mojang/realmsclient/dto/RealmsText/f_273889_ com/mojang/realmsclient/dto/RealmsText/TRANSLATION_KEY +FD: com/mojang/realmsclient/dto/RealmsText/f_273935_ com/mojang/realmsclient/dto/RealmsText/args +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167290_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_FORCE_GAME_MODE +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167291_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_PVP +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167292_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_ANIMALS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167293_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_MONSTERS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167294_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_NPCS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167295_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_PROTECTION +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167296_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_COMMAND_BLOCKS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167297_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_DIFFICULTY +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167298_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_GAME_MODE +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167299_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SLOT_NAME +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167300_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_TEMPLATE_ID +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87598_ com/mojang/realmsclient/dto/RealmsWorldOptions/pvp +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87599_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnAnimals +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87600_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnMonsters +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87601_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnNPCs +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87602_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnProtection +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87603_ com/mojang/realmsclient/dto/RealmsWorldOptions/commandBlocks +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87604_ com/mojang/realmsclient/dto/RealmsWorldOptions/forceGameMode +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87605_ com/mojang/realmsclient/dto/RealmsWorldOptions/difficulty +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87606_ com/mojang/realmsclient/dto/RealmsWorldOptions/gameMode +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87607_ com/mojang/realmsclient/dto/RealmsWorldOptions/slotName +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87608_ com/mojang/realmsclient/dto/RealmsWorldOptions/templateId +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87609_ com/mojang/realmsclient/dto/RealmsWorldOptions/templateImage +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87611_ com/mojang/realmsclient/dto/RealmsWorldOptions/empty +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87612_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_TEMPLATE_IMAGE +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87638_ com/mojang/realmsclient/dto/RealmsWorldResetDto/seed +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87639_ com/mojang/realmsclient/dto/RealmsWorldResetDto/worldTemplateId +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87640_ com/mojang/realmsclient/dto/RealmsWorldResetDto/levelType +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87641_ com/mojang/realmsclient/dto/RealmsWorldResetDto/generateStructures +FD: com/mojang/realmsclient/dto/RegionPingResult/f_87647_ com/mojang/realmsclient/dto/RegionPingResult/regionName +FD: com/mojang/realmsclient/dto/RegionPingResult/f_87648_ com/mojang/realmsclient/dto/RegionPingResult/ping +FD: com/mojang/realmsclient/dto/ServerActivity/f_167312_ com/mojang/realmsclient/dto/ServerActivity/profileUuid +FD: com/mojang/realmsclient/dto/ServerActivity/f_167313_ com/mojang/realmsclient/dto/ServerActivity/joinTime +FD: com/mojang/realmsclient/dto/ServerActivity/f_167314_ com/mojang/realmsclient/dto/ServerActivity/leaveTime +FD: com/mojang/realmsclient/dto/ServerActivityList/f_167318_ com/mojang/realmsclient/dto/ServerActivityList/periodInMillis +FD: com/mojang/realmsclient/dto/ServerActivityList/f_167319_ com/mojang/realmsclient/dto/ServerActivityList/serverActivities +FD: com/mojang/realmsclient/dto/Subscription/f_87666_ com/mojang/realmsclient/dto/Subscription/startDate +FD: com/mojang/realmsclient/dto/Subscription/f_87667_ com/mojang/realmsclient/dto/Subscription/daysLeft +FD: com/mojang/realmsclient/dto/Subscription/f_87668_ com/mojang/realmsclient/dto/Subscription/type +FD: com/mojang/realmsclient/dto/Subscription/f_87669_ com/mojang/realmsclient/dto/Subscription/LOGGER +FD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/$VALUES com/mojang/realmsclient/dto/Subscription$SubscriptionType/$VALUES +FD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/NORMAL com/mojang/realmsclient/dto/Subscription$SubscriptionType/NORMAL +FD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/RECURRING com/mojang/realmsclient/dto/Subscription$SubscriptionType/RECURRING +FD: com/mojang/realmsclient/dto/UploadInfo/f_167324_ com/mojang/realmsclient/dto/UploadInfo/DEFAULT_SCHEMA +FD: com/mojang/realmsclient/dto/UploadInfo/f_167325_ com/mojang/realmsclient/dto/UploadInfo/DEFAULT_PORT +FD: com/mojang/realmsclient/dto/UploadInfo/f_87686_ com/mojang/realmsclient/dto/UploadInfo/LOGGER +FD: com/mojang/realmsclient/dto/UploadInfo/f_87687_ com/mojang/realmsclient/dto/UploadInfo/URI_SCHEMA_PATTERN +FD: com/mojang/realmsclient/dto/UploadInfo/f_87688_ com/mojang/realmsclient/dto/UploadInfo/worldClosed +FD: com/mojang/realmsclient/dto/UploadInfo/f_87689_ com/mojang/realmsclient/dto/UploadInfo/token +FD: com/mojang/realmsclient/dto/UploadInfo/f_87690_ com/mojang/realmsclient/dto/UploadInfo/uploadEndpoint +FD: com/mojang/realmsclient/dto/WorldDownload/f_87718_ com/mojang/realmsclient/dto/WorldDownload/downloadLink +FD: com/mojang/realmsclient/dto/WorldDownload/f_87719_ com/mojang/realmsclient/dto/WorldDownload/resourcePackUrl +FD: com/mojang/realmsclient/dto/WorldDownload/f_87720_ com/mojang/realmsclient/dto/WorldDownload/resourcePackHash +FD: com/mojang/realmsclient/dto/WorldDownload/f_87721_ com/mojang/realmsclient/dto/WorldDownload/LOGGER +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87726_ com/mojang/realmsclient/dto/WorldTemplate/id +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87727_ com/mojang/realmsclient/dto/WorldTemplate/name +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87728_ com/mojang/realmsclient/dto/WorldTemplate/version +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87729_ com/mojang/realmsclient/dto/WorldTemplate/author +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87730_ com/mojang/realmsclient/dto/WorldTemplate/link +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87731_ com/mojang/realmsclient/dto/WorldTemplate/image +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87732_ com/mojang/realmsclient/dto/WorldTemplate/trailer +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87733_ com/mojang/realmsclient/dto/WorldTemplate/recommendedPlayers +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87734_ com/mojang/realmsclient/dto/WorldTemplate/type +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87735_ com/mojang/realmsclient/dto/WorldTemplate/LOGGER +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/$VALUES com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/$VALUES +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ADVENTUREMAP com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ADVENTUREMAP +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/EXPERIENCE com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/EXPERIENCE +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/INSPIRATION com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/INSPIRATION +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/MINIGAME com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/MINIGAME +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/WORLD_TEMPLATE com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/WORLD_TEMPLATE +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87753_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/templates +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87754_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/page +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87755_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/size +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87756_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/total +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87757_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/LOGGER +FD: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/f_87764_ com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/logger +FD: com/mojang/realmsclient/exception/RealmsServiceException/f_200940_ com/mojang/realmsclient/exception/RealmsServiceException/rawResponse +FD: com/mojang/realmsclient/exception/RealmsServiceException/f_200941_ com/mojang/realmsclient/exception/RealmsServiceException/realmsError +FD: com/mojang/realmsclient/exception/RealmsServiceException/f_87773_ com/mojang/realmsclient/exception/RealmsServiceException/httpResultCode +FD: com/mojang/realmsclient/exception/RetryCallException/f_167328_ com/mojang/realmsclient/exception/RetryCallException/DEFAULT_DELAY +FD: com/mojang/realmsclient/exception/RetryCallException/f_87787_ com/mojang/realmsclient/exception/RetryCallException/delaySeconds +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238549_ com/mojang/realmsclient/gui/RealmsDataFetcher/dataFetcher +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238681_ com/mojang/realmsclient/gui/RealmsDataFetcher/newsTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238709_ com/mojang/realmsclient/gui/RealmsDataFetcher/pendingInvitesTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238737_ com/mojang/realmsclient/gui/RealmsDataFetcher/newsManager +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_273926_ com/mojang/realmsclient/gui/RealmsDataFetcher/notificationsTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_87797_ com/mojang/realmsclient/gui/RealmsDataFetcher/serverListUpdateTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_87799_ com/mojang/realmsclient/gui/RealmsDataFetcher/trialAvailabilityTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_87800_ com/mojang/realmsclient/gui/RealmsDataFetcher/liveStatsTask +FD: com/mojang/realmsclient/gui/RealmsNewsManager/f_238573_ com/mojang/realmsclient/gui/RealmsNewsManager/newsLink +FD: com/mojang/realmsclient/gui/RealmsNewsManager/f_238804_ com/mojang/realmsclient/gui/RealmsNewsManager/newsLocalStorage +FD: com/mojang/realmsclient/gui/RealmsNewsManager/f_238831_ com/mojang/realmsclient/gui/RealmsNewsManager/hasUnreadNews +FD: com/mojang/realmsclient/gui/RealmsServerList/f_238560_ com/mojang/realmsclient/gui/RealmsServerList/removedServers +FD: com/mojang/realmsclient/gui/RealmsServerList/f_238634_ com/mojang/realmsclient/gui/RealmsServerList/minecraft +FD: com/mojang/realmsclient/gui/RealmsServerList/f_238698_ com/mojang/realmsclient/gui/RealmsServerList/servers +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_231297_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/CHECK_MARK_LOCATION +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_286987_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/MINIGAME +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87914_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/slotIndex +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87916_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/state +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87917_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SLOT_FRAME_LOCATION +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87918_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/EMPTY_SLOT_LOCATION +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87919_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/DEFAULT_WORLD_SLOT_1 +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87920_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/DEFAULT_WORLD_SLOT_2 +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87921_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/DEFAULT_WORLD_SLOT_3 +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87922_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SLOT_ACTIVE_TOOLTIP +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87923_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SWITCH_TO_MINIGAME_SLOT_TOOLTIP +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87924_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SWITCH_TO_WORLD_SLOT_TOOLTIP +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87925_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/serverDataProvider +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87926_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/toolTipSetter +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/$VALUES com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/$VALUES +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/JOIN com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/JOIN +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/NOTHING com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/NOTHING +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/SWITCH_SLOT com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/SWITCH_SLOT +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87980_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/empty +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87981_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/minigame +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87982_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/action +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87983_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/isCurrentlyActiveSlot +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87984_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/slotName +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87985_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/imageId +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87986_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/image +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87987_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/actionPrompt +FD: com/mojang/realmsclient/gui/RowButton/f_88007_ com/mojang/realmsclient/gui/RowButton/width +FD: com/mojang/realmsclient/gui/RowButton/f_88008_ com/mojang/realmsclient/gui/RowButton/height +FD: com/mojang/realmsclient/gui/RowButton/f_88009_ com/mojang/realmsclient/gui/RowButton/xOffset +FD: com/mojang/realmsclient/gui/RowButton/f_88010_ com/mojang/realmsclient/gui/RowButton/yOffset +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_167352_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/UNKNOWN +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_88044_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_88045_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/backup +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_88046_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/backupInfoList +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/f_88079_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286932_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/WORLD_TYPE +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286935_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/NAME +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286941_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/SEED +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286952_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/DESCRIPTION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286960_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/GAME_SERVER_VERSION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286961_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/UPLOADED +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286970_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ENABLED_PACK +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286974_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/TEMPLATE_NAME +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286978_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/GAME_DIFFICULTY +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286990_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/GAME_MODE +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_287001_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/UNDEFINED +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_88086_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_88087_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/key +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_88088_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/value +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_167355_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/UPLOADED_KEY +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88104_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/downloadButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88105_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/restoreButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88106_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/changesButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88107_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/noBackups +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88108_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88110_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88111_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/PLUS_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88112_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/RESTORE_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88113_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/RESTORE_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88114_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/HAS_CHANGES_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88115_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88116_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/NO_BACKUPS_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88118_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88119_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/backups +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88121_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/backupObjectSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88122_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/selectedBackup +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88123_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/slotId +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/f_88210_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/f_88217_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278378_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/restoreButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278387_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/X_PADDING +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278395_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/Y_PADDING +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278436_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/children +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278470_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/changesButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_88246_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_88247_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/backup +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_167363_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/DEFAULT_BUTTON_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88283_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88284_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88285_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/mainScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88286_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88287_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/serverId +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88289_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/message +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88290_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/leftX +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88291_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/rightX +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88292_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/slotsThatHasBeenDownloaded +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88293_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/animTick +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_231302_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/INCOMPATIBLE_MESSAGES_SNAPSHOT +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_88360_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/INCOMPATIBLE_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_88361_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/INCOMPATIBLE_MESSAGES +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_88362_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167372_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/WORLD_LIST_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167373_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/DEFAULT_BUTTON_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167374_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/DEFAULT_BUTTON_OFFSET +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167375_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/slotButtonList +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88380_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88381_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88382_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/serverId +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88383_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/leftX +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88384_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/rightX +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88385_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/playersButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88386_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/settingsButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88387_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/subscriptionButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88388_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/optionsButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88389_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/backupButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88390_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/resetWorldButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88391_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchMinigameButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88392_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/stateChanged +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88393_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/animTick +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88394_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/clicks +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88395_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88396_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ON_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88397_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/OFF_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88398_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/EXPIRED_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88399_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/EXPIRES_SOON_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88400_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88403_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_EXPIRED_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88404_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_EXPIRING_SOON_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88405_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_EXPIRING_IN_DAY_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88406_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_OPEN_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88407_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_CLOSED_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88408_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/toolTip +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/f_88543_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/$SwitchMap$com$mojang$realmsclient$gui$RealmsWorldSlotButton$Action +FD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/f_88545_ com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/f_88546_ com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/title1 +FD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/f_88547_ com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/title2 +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88564_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88565_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/DESCRIPTION_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88566_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/server +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88567_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88568_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/nameBox +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88569_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/descriptionBox +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88570_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/createButton +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263743_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_TOP +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263771_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_BORDER +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263777_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_BOTTOM +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263827_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88599_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/finished +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88600_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/extracting +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88601_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/previousWrittenBytes +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88602_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/previousTimeSnapshot +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88603_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/bytesPersSecond +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88604_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/animTick +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88605_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/DOTS +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88606_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/dotIndex +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88607_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/checked +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88608_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88609_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88610_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/DOWNLOAD_LOCK +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88611_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88612_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/worldDownload +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88613_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadTitle +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88614_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/narrationRateLimiter +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88615_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/cancelButton +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88616_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/worldName +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88617_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadStatus +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88618_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/errorMessage +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88619_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/status +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88620_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/progress +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88621_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/cancelled +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88622_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/showDots +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/f_88660_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/bytesWritten +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/f_88661_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/totalBytes +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/f_200947_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/lines +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/f_200948_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/line2Split +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/f_88665_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/nextScreen +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287787_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/detail +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287789_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/title +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_289575_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/message +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_289576_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/inviteButton +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_289578_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/INVITING_PLAYER_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88693_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88694_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88695_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/NO_SUCH_PLAYER_ERROR_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88696_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/profileName +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88697_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88698_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/configureScreen +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88699_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_286953_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/WARNING +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_286975_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/INFO +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88725_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88726_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/type +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88727_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/line2 +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88728_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/line3 +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88729_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/yesNoQuestion +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/$VALUES com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/$VALUES +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/INFO com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/INFO +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/WARNING com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/WARNING +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/f_88754_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/colorCode +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/f_88755_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/text +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_167413_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/cancelOrBackButton +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_167414_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/REPEATED_NARRATOR +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88766_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/SYMBOLS +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88767_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88768_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88769_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/title +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88770_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/errorMessage +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88771_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/aborted +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88772_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/animTicks +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88773_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/task +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88774_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/buttonLength +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_238623_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/realmsDataSubscription +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273849_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/onlyNotifications +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273879_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/UNSEEN_NOTIFICATION_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273898_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/currentConfiguration +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273899_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/showAll +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273905_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/hasUnseenNotifications +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88821_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/INVITE_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88822_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/TRIAL_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88823_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/NEWS_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88825_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/numberOfPendingInvites +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88826_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/checkedMcoAvailability +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88827_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/trialAvailable +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88828_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/validClient +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88829_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/hasUnreadNews +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/f_88851_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/f_273929_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/f_273900_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/f_88856_ com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/MESSAGE +FD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/f_88857_ com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/nextScreen +FD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/f_88858_ com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/messageLines +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88874_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88875_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ACCEPT_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88876_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/REJECT_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88877_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/NO_PENDING_INVITES_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88878_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ACCEPT_INVITE_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88879_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/REJECT_INVITE_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88880_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88881_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/toolTip +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88882_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/loaded +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88883_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/pendingInvitationSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88885_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/selectedInvite +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88886_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/acceptButton +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88887_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/rejectButton +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/f_88964_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/f_88973_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/val$slot +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/f_88974_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/f_88982_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/val$slot +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/f_88983_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_167427_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/TEXT_LEFT +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_88991_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_88992_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/pendingInvite +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_88993_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/rowButtons +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/f_89025_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/this$1 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/f_89035_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/this$1 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/f_89045_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_278447_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/NO_ENTRY_SELECTED +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_286965_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/QUESTION_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89063_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/columnWidth +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89065_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/removeButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89066_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/opdeopButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89069_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/playerIndex +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89070_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/stateChanged +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89073_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89074_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/OP_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89075_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/USER_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89076_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/CROSS_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89077_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/OPTIONS_BACKGROUND +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89078_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/NORMAL_USER_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89079_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/OP_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89080_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/REMOVE_ENTRY_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89083_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89084_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89085_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/invitedObjectSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89086_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/column1X +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278386_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/X_OFFSET +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278388_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/makeOpButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278389_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/children +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278391_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/BUTTON_HEIGHT +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278432_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/removeButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278444_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/Y_PADDING +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278454_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/BUTTON_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278510_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/removeOpButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_89200_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_89201_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/playerInfo +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/f_89226_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_167435_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/levelType +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_167436_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89266_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/SEED_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89270_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/seedEdit +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89271_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/generateStructures +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89273_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/buttonTitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89300_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/NEW_WORLD_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89301_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/EXPERIENCE_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89302_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/INSPIRATION_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89303_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/templates +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89304_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/adventuremaps +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89305_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/experiences +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89306_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/inspirations +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89310_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/resetTitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89311_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/resetWorldRunnable +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89312_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89313_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/slot +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89314_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89315_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89316_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89320_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/subtitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89321_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/buttonTitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89322_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/subtitleColor +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89323_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/SLOT_FRAME_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89324_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/UPLOAD_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89325_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ADVENTURE_MAP_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89326_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/SURVIVAL_SPAWN_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/f_89422_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/f_89435_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/f_89436_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/image +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_286962_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/UNABLE_TO_LOAD_WORLD +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89481_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89482_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89483_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/WORLD_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89485_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/HARDCORE_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89486_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/CHEATS_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89487_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/DATE_FORMAT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89488_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89489_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/worldId +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89490_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/slotId +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89491_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/uploadButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89492_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/levelList +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89493_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/selectedWorld +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89494_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/worldSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89553_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89554_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/levelSummary +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89555_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/name +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89556_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/id +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89557_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/info +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/f_89582_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_167479_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89597_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/currentLink +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89598_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/worldType +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89599_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/clicks +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89600_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/warning +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89601_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/warningURL +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89602_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/displayWarning +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89603_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/hoverWarning +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89604_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/noTemplatesMessage +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89605_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89606_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/LINK_ICON +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89607_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/TRAILER_ICON +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89608_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/SLOT_FRAME_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89609_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/PUBLISHER_LINK_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89610_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/TRAILER_LINK_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89612_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/worldTemplateObjectSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89613_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/selectedTemplate +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89615_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/selectButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89616_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/trailerButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89617_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/publisherButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89618_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/toolTip +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/f_89740_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/val$startPage +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/f_89741_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/f_89749_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/f_89750_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/template +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/f_89790_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_167508_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/COMPONENT_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89819_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89820_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/DESCRIPTION_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89821_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/configureWorldScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89822_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89823_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/doneButton +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89824_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/descEdit +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89825_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/nameEdit +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_167511_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/DEFAULT_DIFFICULTY +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_167512_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/DEFAULT_GAME_MODE +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_167513_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/SPAWN_PROTECTION_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_231308_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/SPAWN_WARNING_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_231309_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/defaultSlotName +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_231310_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/worldName +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89852_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/difficulty +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89853_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/gameMode +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89854_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/pvp +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89855_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnNPCs +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89856_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnAnimals +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89857_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnMonsters +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89858_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnProtection +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89859_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/commandBlocks +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89860_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/forceGameMode +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89865_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnProtectionButton +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89870_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/DIFFICULTIES +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89871_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/GAME_MODES +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89872_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/parent +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89876_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89877_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/nameEdit +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89878_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/column1X +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89879_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/columnWidth +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89881_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/options +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89882_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/worldType +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/f_89941_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/f_89942_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/minValue +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/f_89943_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/maxValue +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_182537_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/UNKNOWN +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_276373_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/RECURRING_INFO +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89960_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/daysLeft +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89961_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/startDate +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89962_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/type +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89963_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89964_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89965_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_START_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89966_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/TIME_LEFT_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89967_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/DAYS_LEFT_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89968_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_EXPIRED_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89969_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_LESS_THAN_A_DAY_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89974_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89975_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89976_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/mainScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/f_90016_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90022_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90023_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90024_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/TERMS_STATIC_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90025_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/TERMS_LINK_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90026_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90027_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/mainScreen +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90028_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/realmsServer +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90029_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/onLink +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263667_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263693_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_BOTTOM +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263749_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_TOP +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263789_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_BORDER +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90057_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadFinished +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90058_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/showDots +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90059_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadStarted +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90060_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/backButton +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90061_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/cancelButton +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90062_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/tickCount +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90063_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/previousWrittenBytes +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90064_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/previousTimeSnapshot +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90065_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/bytesPersSecond +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90066_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90067_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90068_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/UPLOAD_LOCK +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90069_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/DOTS +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90070_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/VERIFYING_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90071_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90072_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/selectedLevel +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90073_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/worldId +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90074_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/slotId +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90075_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadStatus +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90076_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/narrationRateLimiter +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90077_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/errorMessage +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90078_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/status +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90079_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/progress +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90080_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/cancelled +FD: com/mojang/realmsclient/gui/screens/UploadResult/f_90133_ com/mojang/realmsclient/gui/screens/UploadResult/statusCode +FD: com/mojang/realmsclient/gui/screens/UploadResult/f_90134_ com/mojang/realmsclient/gui/screens/UploadResult/errorMessage +FD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/f_90142_ com/mojang/realmsclient/gui/screens/UploadResult$Builder/statusCode +FD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/f_90143_ com/mojang/realmsclient/gui/screens/UploadResult$Builder/errorMessage +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238658_ com/mojang/realmsclient/gui/task/DataFetcher/executor +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238747_ com/mojang/realmsclient/gui/task/DataFetcher/LOGGER +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238755_ com/mojang/realmsclient/gui/task/DataFetcher/resolution +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238834_ com/mojang/realmsclient/gui/task/DataFetcher/timeSource +FD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238664_ com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/time +FD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238822_ com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/value +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238534_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/lastCheckTime +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238778_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/task +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238821_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/this$0 +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238835_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/output +FD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/f_238520_ com/mojang/realmsclient/gui/task/DataFetcher$Subscription/subscriptions +FD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/f_238725_ com/mojang/realmsclient/gui/task/DataFetcher$Subscription/this$0 +FD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238529_ com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/value +FD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238539_ com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/time +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238571_ com/mojang/realmsclient/gui/task/DataFetcher$Task/period +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238608_ com/mojang/realmsclient/gui/task/DataFetcher$Task/id +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238610_ com/mojang/realmsclient/gui/task/DataFetcher$Task/lastResult +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238639_ com/mojang/realmsclient/gui/task/DataFetcher$Task/repeatStrategy +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238640_ com/mojang/realmsclient/gui/task/DataFetcher$Task/updater +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238738_ com/mojang/realmsclient/gui/task/DataFetcher$Task/this$0 +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238812_ com/mojang/realmsclient/gui/task/DataFetcher$Task/nextUpdate +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238827_ com/mojang/realmsclient/gui/task/DataFetcher$Task/pendingTask +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/f_238691_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/CONSTANT +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/f_238635_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/LOGGER +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/f_238730_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/failureCount +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/f_238793_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/val$maxBackoff +FD: com/mojang/realmsclient/util/LevelType/$VALUES com/mojang/realmsclient/util/LevelType/$VALUES +FD: com/mojang/realmsclient/util/LevelType/AMPLIFIED com/mojang/realmsclient/util/LevelType/AMPLIFIED +FD: com/mojang/realmsclient/util/LevelType/DEFAULT com/mojang/realmsclient/util/LevelType/DEFAULT +FD: com/mojang/realmsclient/util/LevelType/FLAT com/mojang/realmsclient/util/LevelType/FLAT +FD: com/mojang/realmsclient/util/LevelType/LARGE_BIOMES com/mojang/realmsclient/util/LevelType/LARGE_BIOMES +FD: com/mojang/realmsclient/util/LevelType/f_167598_ com/mojang/realmsclient/util/LevelType/index +FD: com/mojang/realmsclient/util/LevelType/f_167599_ com/mojang/realmsclient/util/LevelType/name +FD: com/mojang/realmsclient/util/RealmsPersistence/f_167613_ com/mojang/realmsclient/util/RealmsPersistence/FILE_NAME +FD: com/mojang/realmsclient/util/RealmsPersistence/f_240227_ com/mojang/realmsclient/util/RealmsPersistence/LOGGER +FD: com/mojang/realmsclient/util/RealmsPersistence/f_90169_ com/mojang/realmsclient/util/RealmsPersistence/GSON +FD: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/f_90175_ com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/newsLink +FD: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/f_90176_ com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/hasUnreadNews +FD: com/mojang/realmsclient/util/RealmsTextureManager/f_90178_ com/mojang/realmsclient/util/RealmsTextureManager/TEXTURES +FD: com/mojang/realmsclient/util/RealmsTextureManager/f_90181_ com/mojang/realmsclient/util/RealmsTextureManager/LOGGER +FD: com/mojang/realmsclient/util/RealmsTextureManager/f_90182_ com/mojang/realmsclient/util/RealmsTextureManager/TEMPLATE_ICON_LOCATION +FD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90205_ com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/image +FD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90206_ com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/textureId +FD: com/mojang/realmsclient/util/RealmsUtil/f_167619_ com/mojang/realmsclient/util/RealmsUtil/MINUTES +FD: com/mojang/realmsclient/util/RealmsUtil/f_167620_ com/mojang/realmsclient/util/RealmsUtil/HOURS +FD: com/mojang/realmsclient/util/RealmsUtil/f_167621_ com/mojang/realmsclient/util/RealmsUtil/DAYS +FD: com/mojang/realmsclient/util/RealmsUtil/f_268555_ com/mojang/realmsclient/util/RealmsUtil/GAME_PROFILE_CACHE +FD: com/mojang/realmsclient/util/RealmsUtil/f_286936_ com/mojang/realmsclient/util/RealmsUtil/RIGHT_NOW +FD: com/mojang/realmsclient/util/RealmsUtil/f_90216_ com/mojang/realmsclient/util/RealmsUtil/SESSION_SERVICE +FD: com/mojang/realmsclient/util/TextRenderingUtils$Line/f_90262_ com/mojang/realmsclient/util/TextRenderingUtils$Line/segments +FD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/f_90269_ com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/fullText +FD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/f_90270_ com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/linkTitle +FD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/f_90271_ com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/linkUrl +FD: com/mojang/realmsclient/util/UploadTokenCache/f_90290_ com/mojang/realmsclient/util/UploadTokenCache/TOKEN_CACHE +FD: com/mojang/realmsclient/util/WorldGenerationInfo/f_167627_ com/mojang/realmsclient/util/WorldGenerationInfo/seed +FD: com/mojang/realmsclient/util/WorldGenerationInfo/f_167628_ com/mojang/realmsclient/util/WorldGenerationInfo/levelType +FD: com/mojang/realmsclient/util/WorldGenerationInfo/f_167629_ com/mojang/realmsclient/util/WorldGenerationInfo/generateStructures +FD: com/mojang/realmsclient/util/task/CloseServerTask/f_202333_ com/mojang/realmsclient/util/task/CloseServerTask/LOGGER +FD: com/mojang/realmsclient/util/task/CloseServerTask/f_90299_ com/mojang/realmsclient/util/task/CloseServerTask/serverData +FD: com/mojang/realmsclient/util/task/CloseServerTask/f_90300_ com/mojang/realmsclient/util/task/CloseServerTask/configureScreen +FD: com/mojang/realmsclient/util/task/ConnectTask/f_90305_ com/mojang/realmsclient/util/task/ConnectTask/realmsConnect +FD: com/mojang/realmsclient/util/task/ConnectTask/f_90306_ com/mojang/realmsclient/util/task/ConnectTask/server +FD: com/mojang/realmsclient/util/task/ConnectTask/f_90307_ com/mojang/realmsclient/util/task/ConnectTask/address +FD: com/mojang/realmsclient/util/task/DownloadTask/f_202335_ com/mojang/realmsclient/util/task/DownloadTask/LOGGER +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90315_ com/mojang/realmsclient/util/task/DownloadTask/worldId +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90316_ com/mojang/realmsclient/util/task/DownloadTask/slot +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90317_ com/mojang/realmsclient/util/task/DownloadTask/lastScreen +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90318_ com/mojang/realmsclient/util/task/DownloadTask/downloadName +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_202337_ com/mojang/realmsclient/util/task/GetServerDetailsTask/LOGGER +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90327_ com/mojang/realmsclient/util/task/GetServerDetailsTask/server +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90328_ com/mojang/realmsclient/util/task/GetServerDetailsTask/lastScreen +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90329_ com/mojang/realmsclient/util/task/GetServerDetailsTask/mainScreen +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90330_ com/mojang/realmsclient/util/task/GetServerDetailsTask/connectLock +FD: com/mojang/realmsclient/util/task/LongRunningTask/f_167654_ com/mojang/realmsclient/util/task/LongRunningTask/NUMBER_OF_RETRIES +FD: com/mojang/realmsclient/util/task/LongRunningTask/f_90394_ com/mojang/realmsclient/util/task/LongRunningTask/LOGGER +FD: com/mojang/realmsclient/util/task/LongRunningTask/f_90395_ com/mojang/realmsclient/util/task/LongRunningTask/longRunningMcoTaskScreen +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_181342_ com/mojang/realmsclient/util/task/OpenServerTask/minecraft +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_202342_ com/mojang/realmsclient/util/task/OpenServerTask/LOGGER +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90413_ com/mojang/realmsclient/util/task/OpenServerTask/serverData +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90414_ com/mojang/realmsclient/util/task/OpenServerTask/returnScreen +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90415_ com/mojang/realmsclient/util/task/OpenServerTask/join +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90416_ com/mojang/realmsclient/util/task/OpenServerTask/mainScreen +FD: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/f_167657_ com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/generationInfo +FD: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/f_167666_ com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/template +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_202344_ com/mojang/realmsclient/util/task/ResettingWorldTask/LOGGER +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_90427_ com/mojang/realmsclient/util/task/ResettingWorldTask/serverId +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_90428_ com/mojang/realmsclient/util/task/ResettingWorldTask/title +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_90429_ com/mojang/realmsclient/util/task/ResettingWorldTask/callback +FD: com/mojang/realmsclient/util/task/RestoreTask/f_202346_ com/mojang/realmsclient/util/task/RestoreTask/LOGGER +FD: com/mojang/realmsclient/util/task/RestoreTask/f_90439_ com/mojang/realmsclient/util/task/RestoreTask/backup +FD: com/mojang/realmsclient/util/task/RestoreTask/f_90440_ com/mojang/realmsclient/util/task/RestoreTask/worldId +FD: com/mojang/realmsclient/util/task/RestoreTask/f_90441_ com/mojang/realmsclient/util/task/RestoreTask/lastScreen +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_202348_ com/mojang/realmsclient/util/task/SwitchMinigameTask/LOGGER +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_90447_ com/mojang/realmsclient/util/task/SwitchMinigameTask/worldId +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_90448_ com/mojang/realmsclient/util/task/SwitchMinigameTask/worldTemplate +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_90449_ com/mojang/realmsclient/util/task/SwitchMinigameTask/lastScreen +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_202350_ com/mojang/realmsclient/util/task/SwitchSlotTask/LOGGER +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_90455_ com/mojang/realmsclient/util/task/SwitchSlotTask/worldId +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_90456_ com/mojang/realmsclient/util/task/SwitchSlotTask/slot +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_90457_ com/mojang/realmsclient/util/task/SwitchSlotTask/callback +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_202352_ com/mojang/realmsclient/util/task/WorldCreationTask/LOGGER +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90463_ com/mojang/realmsclient/util/task/WorldCreationTask/name +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90464_ com/mojang/realmsclient/util/task/WorldCreationTask/motd +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90465_ com/mojang/realmsclient/util/task/WorldCreationTask/worldId +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90466_ com/mojang/realmsclient/util/task/WorldCreationTask/lastScreen +FD: net/minecraft/BlockUtil$FoundRectangle/f_124348_ net/minecraft/BlockUtil$FoundRectangle/minCorner +FD: net/minecraft/BlockUtil$FoundRectangle/f_124349_ net/minecraft/BlockUtil$FoundRectangle/axis1Size +FD: net/minecraft/BlockUtil$FoundRectangle/f_124350_ net/minecraft/BlockUtil$FoundRectangle/axis2Size +FD: net/minecraft/BlockUtil$IntBounds/f_124355_ net/minecraft/BlockUtil$IntBounds/min +FD: net/minecraft/BlockUtil$IntBounds/f_124356_ net/minecraft/BlockUtil$IntBounds/max +FD: net/minecraft/ChatFormatting/$VALUES net/minecraft/ChatFormatting/$VALUES +FD: net/minecraft/ChatFormatting/AQUA net/minecraft/ChatFormatting/AQUA +FD: net/minecraft/ChatFormatting/BLACK net/minecraft/ChatFormatting/BLACK +FD: net/minecraft/ChatFormatting/BLUE net/minecraft/ChatFormatting/BLUE +FD: net/minecraft/ChatFormatting/BOLD net/minecraft/ChatFormatting/BOLD +FD: net/minecraft/ChatFormatting/DARK_AQUA net/minecraft/ChatFormatting/DARK_AQUA +FD: net/minecraft/ChatFormatting/DARK_BLUE net/minecraft/ChatFormatting/DARK_BLUE +FD: net/minecraft/ChatFormatting/DARK_GRAY net/minecraft/ChatFormatting/DARK_GRAY +FD: net/minecraft/ChatFormatting/DARK_GREEN net/minecraft/ChatFormatting/DARK_GREEN +FD: net/minecraft/ChatFormatting/DARK_PURPLE net/minecraft/ChatFormatting/DARK_PURPLE +FD: net/minecraft/ChatFormatting/DARK_RED net/minecraft/ChatFormatting/DARK_RED +FD: net/minecraft/ChatFormatting/GOLD net/minecraft/ChatFormatting/GOLD +FD: net/minecraft/ChatFormatting/GRAY net/minecraft/ChatFormatting/GRAY +FD: net/minecraft/ChatFormatting/GREEN net/minecraft/ChatFormatting/GREEN +FD: net/minecraft/ChatFormatting/ITALIC net/minecraft/ChatFormatting/ITALIC +FD: net/minecraft/ChatFormatting/LIGHT_PURPLE net/minecraft/ChatFormatting/LIGHT_PURPLE +FD: net/minecraft/ChatFormatting/OBFUSCATED net/minecraft/ChatFormatting/OBFUSCATED +FD: net/minecraft/ChatFormatting/RED net/minecraft/ChatFormatting/RED +FD: net/minecraft/ChatFormatting/RESET net/minecraft/ChatFormatting/RESET +FD: net/minecraft/ChatFormatting/STRIKETHROUGH net/minecraft/ChatFormatting/STRIKETHROUGH +FD: net/minecraft/ChatFormatting/UNDERLINE net/minecraft/ChatFormatting/UNDERLINE +FD: net/minecraft/ChatFormatting/WHITE net/minecraft/ChatFormatting/WHITE +FD: net/minecraft/ChatFormatting/YELLOW net/minecraft/ChatFormatting/YELLOW +FD: net/minecraft/ChatFormatting/f_126592_ net/minecraft/ChatFormatting/isFormat +FD: net/minecraft/ChatFormatting/f_126593_ net/minecraft/ChatFormatting/toString +FD: net/minecraft/ChatFormatting/f_126594_ net/minecraft/ChatFormatting/id +FD: net/minecraft/ChatFormatting/f_126595_ net/minecraft/ChatFormatting/color +FD: net/minecraft/ChatFormatting/f_126619_ net/minecraft/ChatFormatting/FORMATTING_BY_NAME +FD: net/minecraft/ChatFormatting/f_126620_ net/minecraft/ChatFormatting/STRIP_FORMATTING_PATTERN +FD: net/minecraft/ChatFormatting/f_126621_ net/minecraft/ChatFormatting/name +FD: net/minecraft/ChatFormatting/f_126622_ net/minecraft/ChatFormatting/code +FD: net/minecraft/ChatFormatting/f_178509_ net/minecraft/ChatFormatting/PREFIX_CODE +FD: net/minecraft/ChatFormatting/f_236796_ net/minecraft/ChatFormatting/CODEC +FD: net/minecraft/CrashReport/f_127499_ net/minecraft/CrashReport/LOGGER +FD: net/minecraft/CrashReport/f_127500_ net/minecraft/CrashReport/title +FD: net/minecraft/CrashReport/f_127501_ net/minecraft/CrashReport/exception +FD: net/minecraft/CrashReport/f_127503_ net/minecraft/CrashReport/details +FD: net/minecraft/CrashReport/f_127504_ net/minecraft/CrashReport/saveFile +FD: net/minecraft/CrashReport/f_127505_ net/minecraft/CrashReport/trackingStackTrace +FD: net/minecraft/CrashReport/f_127506_ net/minecraft/CrashReport/uncategorizedStackTrace +FD: net/minecraft/CrashReport/f_178624_ net/minecraft/CrashReport/systemReport +FD: net/minecraft/CrashReport/f_241641_ net/minecraft/CrashReport/DATE_TIME_FORMATTER +FD: net/minecraft/CrashReportCategory/f_128137_ net/minecraft/CrashReportCategory/title +FD: net/minecraft/CrashReportCategory/f_128138_ net/minecraft/CrashReportCategory/entries +FD: net/minecraft/CrashReportCategory/f_128139_ net/minecraft/CrashReportCategory/stackTrace +FD: net/minecraft/CrashReportCategory$Entry/f_128178_ net/minecraft/CrashReportCategory$Entry/key +FD: net/minecraft/CrashReportCategory$Entry/f_128179_ net/minecraft/CrashReportCategory$Entry/value +FD: net/minecraft/DefaultUncaughtExceptionHandler/f_131075_ net/minecraft/DefaultUncaughtExceptionHandler/logger +FD: net/minecraft/DefaultUncaughtExceptionHandlerWithName/f_131799_ net/minecraft/DefaultUncaughtExceptionHandlerWithName/logger +FD: net/minecraft/DetectedVersion/f_132476_ net/minecraft/DetectedVersion/BUILT_IN +FD: net/minecraft/DetectedVersion/f_132477_ net/minecraft/DetectedVersion/LOGGER +FD: net/minecraft/DetectedVersion/f_132478_ net/minecraft/DetectedVersion/id +FD: net/minecraft/DetectedVersion/f_132479_ net/minecraft/DetectedVersion/name +FD: net/minecraft/DetectedVersion/f_132480_ net/minecraft/DetectedVersion/stable +FD: net/minecraft/DetectedVersion/f_132481_ net/minecraft/DetectedVersion/worldVersion +FD: net/minecraft/DetectedVersion/f_132482_ net/minecraft/DetectedVersion/protocolVersion +FD: net/minecraft/DetectedVersion/f_132484_ net/minecraft/DetectedVersion/buildTime +FD: net/minecraft/DetectedVersion/f_179761_ net/minecraft/DetectedVersion/resourcePackVersion +FD: net/minecraft/DetectedVersion/f_179762_ net/minecraft/DetectedVersion/dataPackVersion +FD: net/minecraft/FileUtil/f_133725_ net/minecraft/FileUtil/COPY_COUNTER_PATTERN +FD: net/minecraft/FileUtil/f_133726_ net/minecraft/FileUtil/RESERVED_WINDOWS_FILENAMES +FD: net/minecraft/FileUtil/f_179920_ net/minecraft/FileUtil/MAX_FILE_NAME +FD: net/minecraft/FileUtil/f_244114_ net/minecraft/FileUtil/STRICT_PATH_SEGMENT_CHECK +FD: net/minecraft/ReportedException/f_134758_ net/minecraft/ReportedException/report +FD: net/minecraft/SharedConstants/f_136180_ net/minecraft/SharedConstants/NETTY_LEAK_DETECTION +FD: net/minecraft/SharedConstants/f_136181_ net/minecraft/SharedConstants/MAXIMUM_TICK_TIME_NANOS +FD: net/minecraft/SharedConstants/f_136182_ net/minecraft/SharedConstants/CHECK_DATA_FIXER_SCHEMA +FD: net/minecraft/SharedConstants/f_136183_ net/minecraft/SharedConstants/IS_RUNNING_IN_IDE +FD: net/minecraft/SharedConstants/f_136184_ net/minecraft/SharedConstants/ILLEGAL_FILE_CHARACTERS +FD: net/minecraft/SharedConstants/f_136185_ net/minecraft/SharedConstants/CURRENT_VERSION +FD: net/minecraft/SharedConstants/f_142886_ net/minecraft/SharedConstants/DEBUG_WATER +FD: net/minecraft/SharedConstants/f_142887_ net/minecraft/SharedConstants/DEBUG_HEIGHTMAP +FD: net/minecraft/SharedConstants/f_142888_ net/minecraft/SharedConstants/DEBUG_COLLISION +FD: net/minecraft/SharedConstants/f_142889_ net/minecraft/SharedConstants/DEBUG_SHAPES +FD: net/minecraft/SharedConstants/f_142890_ net/minecraft/SharedConstants/DEBUG_NEIGHBORSUPDATE +FD: net/minecraft/SharedConstants/f_142891_ net/minecraft/SharedConstants/DEBUG_STRUCTURES +FD: net/minecraft/SharedConstants/f_142892_ net/minecraft/SharedConstants/DEBUG_LIGHT +FD: net/minecraft/SharedConstants/f_142893_ net/minecraft/SharedConstants/DEBUG_WORLDGENATTEMPT +FD: net/minecraft/SharedConstants/f_142894_ net/minecraft/SharedConstants/DEBUG_SOLID_FACE +FD: net/minecraft/SharedConstants/f_142895_ net/minecraft/SharedConstants/DEBUG_CHUNKS +FD: net/minecraft/SharedConstants/f_142896_ net/minecraft/SharedConstants/DEBUG_GAME_EVENT_LISTENERS +FD: net/minecraft/SharedConstants/f_142897_ net/minecraft/SharedConstants/DEBUG_DUMP_TEXTURE_ATLAS +FD: net/minecraft/SharedConstants/f_142898_ net/minecraft/SharedConstants/DEBUG_DUMP_INTERPOLATED_TEXTURE_FRAMES +FD: net/minecraft/SharedConstants/f_142899_ net/minecraft/SharedConstants/DEBUG_STRUCTURE_EDIT_MODE +FD: net/minecraft/SharedConstants/f_142900_ net/minecraft/SharedConstants/DEBUG_SAVE_STRUCTURES_AS_SNBT +FD: net/minecraft/SharedConstants/f_142901_ net/minecraft/SharedConstants/DEBUG_SYNCHRONOUS_GL_LOGS +FD: net/minecraft/SharedConstants/f_142902_ net/minecraft/SharedConstants/DEBUG_VERBOSE_SERVER_EVENTS +FD: net/minecraft/SharedConstants/f_142903_ net/minecraft/SharedConstants/DEBUG_NAMED_RUNNABLES +FD: net/minecraft/SharedConstants/f_142904_ net/minecraft/SharedConstants/DEBUG_GOAL_SELECTOR +FD: net/minecraft/SharedConstants/f_142905_ net/minecraft/SharedConstants/DEBUG_VILLAGE_SECTIONS +FD: net/minecraft/SharedConstants/f_142906_ net/minecraft/SharedConstants/DEBUG_BRAIN +FD: net/minecraft/SharedConstants/f_142907_ net/minecraft/SharedConstants/DEBUG_BEES +FD: net/minecraft/SharedConstants/f_142908_ net/minecraft/SharedConstants/DEBUG_RAIDS +FD: net/minecraft/SharedConstants/f_142909_ net/minecraft/SharedConstants/DEBUG_BLOCK_BREAK +FD: net/minecraft/SharedConstants/f_142910_ net/minecraft/SharedConstants/DEBUG_RESOURCE_LOAD_TIMES +FD: net/minecraft/SharedConstants/f_142911_ net/minecraft/SharedConstants/DEBUG_MONITOR_TICK_TIMES +FD: net/minecraft/SharedConstants/f_142912_ net/minecraft/SharedConstants/SNAPSHOT +FD: net/minecraft/SharedConstants/f_142913_ net/minecraft/SharedConstants/DEBUG_SHOW_SERVER_DEBUG_VALUES +FD: net/minecraft/SharedConstants/f_142914_ net/minecraft/SharedConstants/DEBUG_STORE_CHUNK_STACKTRACES +FD: net/minecraft/SharedConstants/f_142916_ net/minecraft/SharedConstants/WORLD_RESOLUTION +FD: net/minecraft/SharedConstants/f_142917_ net/minecraft/SharedConstants/MAX_CHAT_LENGTH +FD: net/minecraft/SharedConstants/f_142918_ net/minecraft/SharedConstants/MAX_COMMAND_LENGTH +FD: net/minecraft/SharedConstants/f_142919_ net/minecraft/SharedConstants/TICKS_PER_SECOND +FD: net/minecraft/SharedConstants/f_142920_ net/minecraft/SharedConstants/TICKS_PER_MINUTE +FD: net/minecraft/SharedConstants/f_142921_ net/minecraft/SharedConstants/TICKS_PER_GAME_DAY +FD: net/minecraft/SharedConstants/f_142922_ net/minecraft/SharedConstants/AVERAGE_GAME_TICKS_PER_RANDOM_TICK_PER_BLOCK +FD: net/minecraft/SharedConstants/f_142923_ net/minecraft/SharedConstants/AVERAGE_RANDOM_TICKS_PER_BLOCK_PER_MINUTE +FD: net/minecraft/SharedConstants/f_142924_ net/minecraft/SharedConstants/AVERAGE_RANDOM_TICKS_PER_BLOCK_PER_GAME_DAY +FD: net/minecraft/SharedConstants/f_142925_ net/minecraft/SharedConstants/SNAPSHOT_PROTOCOL_BIT +FD: net/minecraft/SharedConstants/f_142926_ net/minecraft/SharedConstants/DEBUG_KEEP_JIGSAW_BLOCKS_DURING_STRUCTURE_GEN +FD: net/minecraft/SharedConstants/f_142927_ net/minecraft/SharedConstants/DEBUG_DONT_SAVE_WORLD +FD: net/minecraft/SharedConstants/f_142928_ net/minecraft/SharedConstants/DEBUG_LARGE_DRIPSTONE +FD: net/minecraft/SharedConstants/f_142929_ net/minecraft/SharedConstants/DEBUG_PACKET_SERIALIZATION +FD: net/minecraft/SharedConstants/f_142930_ net/minecraft/SharedConstants/DEBUG_CARVERS +FD: net/minecraft/SharedConstants/f_142931_ net/minecraft/SharedConstants/DEBUG_ORE_VEINS +FD: net/minecraft/SharedConstants/f_142932_ net/minecraft/SharedConstants/DEBUG_SMALL_SPAWN +FD: net/minecraft/SharedConstants/f_142933_ net/minecraft/SharedConstants/DEBUG_DISABLE_LIQUID_SPREADING +FD: net/minecraft/SharedConstants/f_142934_ net/minecraft/SharedConstants/DEBUG_ONLY_GENERATE_HALF_THE_WORLD +FD: net/minecraft/SharedConstants/f_142935_ net/minecraft/SharedConstants/DEBUG_DISABLE_FLUID_GENERATION +FD: net/minecraft/SharedConstants/f_142936_ net/minecraft/SharedConstants/DEBUG_DISABLE_AQUIFERS +FD: net/minecraft/SharedConstants/f_142938_ net/minecraft/SharedConstants/DEBUG_DISABLE_SURFACE +FD: net/minecraft/SharedConstants/f_142939_ net/minecraft/SharedConstants/DEBUG_DISABLE_CARVERS +FD: net/minecraft/SharedConstants/f_142940_ net/minecraft/SharedConstants/DEBUG_DISABLE_STRUCTURES +FD: net/minecraft/SharedConstants/f_142941_ net/minecraft/SharedConstants/DEBUG_DISABLE_FEATURES +FD: net/minecraft/SharedConstants/f_142942_ net/minecraft/SharedConstants/DEBUG_DISABLE_ORE_VEINS +FD: net/minecraft/SharedConstants/f_142944_ net/minecraft/SharedConstants/DEFAULT_MINECRAFT_PORT +FD: net/minecraft/SharedConstants/f_142945_ net/minecraft/SharedConstants/INGAME_DEBUG_OUTPUT +FD: net/minecraft/SharedConstants/f_142946_ net/minecraft/SharedConstants/DEBUG_SUBTITLES +FD: net/minecraft/SharedConstants/f_142947_ net/minecraft/SharedConstants/FAKE_MS_LATENCY +FD: net/minecraft/SharedConstants/f_142948_ net/minecraft/SharedConstants/FAKE_MS_JITTER +FD: net/minecraft/SharedConstants/f_142949_ net/minecraft/SharedConstants/COMMAND_STACK_TRACES +FD: net/minecraft/SharedConstants/f_142950_ net/minecraft/SharedConstants/DEBUG_WORLD_RECREATE +FD: net/minecraft/SharedConstants/f_142951_ net/minecraft/SharedConstants/WORLD_VERSION +FD: net/minecraft/SharedConstants/f_142952_ net/minecraft/SharedConstants/VERSION_STRING +FD: net/minecraft/SharedConstants/f_142954_ net/minecraft/SharedConstants/RELEASE_NETWORK_PROTOCOL_VERSION +FD: net/minecraft/SharedConstants/f_142955_ net/minecraft/SharedConstants/SNAPSHOT_NETWORK_PROTOCOL_VERSION +FD: net/minecraft/SharedConstants/f_142956_ net/minecraft/SharedConstants/SNBT_NAG_VERSION +FD: net/minecraft/SharedConstants/f_142957_ net/minecraft/SharedConstants/RESOURCE_PACK_FORMAT +FD: net/minecraft/SharedConstants/f_142958_ net/minecraft/SharedConstants/DATA_PACK_FORMAT +FD: net/minecraft/SharedConstants/f_142959_ net/minecraft/SharedConstants/DATA_VERSION_TAG +FD: net/minecraft/SharedConstants/f_142965_ net/minecraft/SharedConstants/USE_NEW_RENDERSYSTEM +FD: net/minecraft/SharedConstants/f_142966_ net/minecraft/SharedConstants/MULTITHREADED_RENDERING +FD: net/minecraft/SharedConstants/f_142967_ net/minecraft/SharedConstants/FIX_TNT_DUPE +FD: net/minecraft/SharedConstants/f_142968_ net/minecraft/SharedConstants/FIX_SAND_DUPE +FD: net/minecraft/SharedConstants/f_142970_ net/minecraft/SharedConstants/USE_DEBUG_FEATURES +FD: net/minecraft/SharedConstants/f_142972_ net/minecraft/SharedConstants/DEBUG_HOTKEYS +FD: net/minecraft/SharedConstants/f_142973_ net/minecraft/SharedConstants/DEBUG_UI_NARRATION +FD: net/minecraft/SharedConstants/f_142974_ net/minecraft/SharedConstants/DEBUG_RENDER +FD: net/minecraft/SharedConstants/f_142975_ net/minecraft/SharedConstants/DEBUG_PATHFINDING +FD: net/minecraft/SharedConstants/f_183694_ net/minecraft/SharedConstants/DEBUG_FEATURE_COUNT +FD: net/minecraft/SharedConstants/f_183695_ net/minecraft/SharedConstants/DEBUG_IGNORE_LOCAL_MOB_CAP +FD: net/minecraft/SharedConstants/f_183696_ net/minecraft/SharedConstants/DEBUG_AQUIFERS +FD: net/minecraft/SharedConstants/f_183697_ net/minecraft/SharedConstants/DEBUG_JFR_PROFILING_ENABLE_LEVEL_LOADING +FD: net/minecraft/SharedConstants/f_183698_ net/minecraft/SharedConstants/debugGenerateSquareTerrainWithoutNoise +FD: net/minecraft/SharedConstants/f_183699_ net/minecraft/SharedConstants/debugGenerateStripedTerrainWithoutNoise +FD: net/minecraft/SharedConstants/f_183700_ net/minecraft/SharedConstants/DEBUG_DISABLE_BLENDING +FD: net/minecraft/SharedConstants/f_183701_ net/minecraft/SharedConstants/DEBUG_DISABLE_BELOW_ZERO_RETROGENERATION +FD: net/minecraft/SharedConstants/f_183702_ net/minecraft/SharedConstants/SERIES +FD: net/minecraft/SharedConstants/f_183703_ net/minecraft/SharedConstants/DEBUG_OPEN_INCOMPATIBLE_WORLDS +FD: net/minecraft/SharedConstants/f_183704_ net/minecraft/SharedConstants/DEBUG_ALLOW_LOW_SIM_DISTANCE +FD: net/minecraft/SharedConstants/f_201847_ net/minecraft/SharedConstants/THROW_ON_TASK_FAILURE +FD: net/minecraft/SharedConstants/f_214355_ net/minecraft/SharedConstants/MAX_CHAINED_NEIGHBOR_UPDATES +FD: net/minecraft/SharedConstants/f_214356_ net/minecraft/SharedConstants/DEBUG_SCULK_CATALYST +FD: net/minecraft/SharedConstants/f_214357_ net/minecraft/SharedConstants/DEBUG_BYPASS_REALMS_VERSION_CHECK +FD: net/minecraft/SharedConstants/f_238781_ net/minecraft/SharedConstants/DEBUG_SOCIAL_INTERACTIONS +FD: net/minecraft/SharedConstants/f_242499_ net/minecraft/SharedConstants/MAX_RENDER_DISTANCE +FD: net/minecraft/SharedConstants/f_243691_ net/minecraft/SharedConstants/DEBUG_VALIDATE_RESOURCE_PATH_CASE +FD: net/minecraft/SharedConstants/f_243898_ net/minecraft/SharedConstants/DEBUG_RESOURCE_GENERATION_OVERRIDE +FD: net/minecraft/SharedConstants/f_243916_ net/minecraft/SharedConstants/REPORT_FORMAT_VERSION +FD: net/minecraft/SharedConstants/f_244360_ net/minecraft/SharedConstants/LANGUAGE_FORMAT +FD: net/minecraft/SharedConstants/f_260664_ net/minecraft/SharedConstants/DEBUG_FORCE_TELEMETRY +FD: net/minecraft/SharedConstants/f_273866_ net/minecraft/SharedConstants/DATA_FIX_TYPES_TO_OPTIMIZE +FD: net/minecraft/SharedConstants/f_279535_ net/minecraft/SharedConstants/DEBUG_SKY_LIGHT_SECTIONS +FD: net/minecraft/SharedConstants/f_279621_ net/minecraft/SharedConstants/USE_WORKFLOWS_HOOKS +FD: net/minecraft/SharedConstants/f_285593_ net/minecraft/SharedConstants/DEBUG_SUPPORT_BLOCKS +FD: net/minecraft/SharedConstants/f_285651_ net/minecraft/SharedConstants/DEBUG_DONT_SEND_TELEMETRY_TO_BACKEND +FD: net/minecraft/SharedConstants/f_289041_ net/minecraft/SharedConstants/WORLD_ICON_SIZE +FD: net/minecraft/SystemReport/f_143506_ net/minecraft/SystemReport/BYTES_PER_MEBIBYTE +FD: net/minecraft/SystemReport/f_143507_ net/minecraft/SystemReport/ONE_GIGA +FD: net/minecraft/SystemReport/f_143508_ net/minecraft/SystemReport/LOGGER +FD: net/minecraft/SystemReport/f_143509_ net/minecraft/SystemReport/OPERATING_SYSTEM +FD: net/minecraft/SystemReport/f_143510_ net/minecraft/SystemReport/JAVA_VERSION +FD: net/minecraft/SystemReport/f_143511_ net/minecraft/SystemReport/JAVA_VM_VERSION +FD: net/minecraft/SystemReport/f_143512_ net/minecraft/SystemReport/entries +FD: net/minecraft/Util/f_137440_ net/minecraft/Util/timeSource +FD: net/minecraft/Util/f_137441_ net/minecraft/Util/NIL_UUID +FD: net/minecraft/Util/f_137442_ net/minecraft/Util/WORKER_COUNT +FD: net/minecraft/Util/f_137444_ net/minecraft/Util/BACKGROUND_EXECUTOR +FD: net/minecraft/Util/f_137445_ net/minecraft/Util/IO_POOL +FD: net/minecraft/Util/f_137446_ net/minecraft/Util/LOGGER +FD: net/minecraft/Util/f_143778_ net/minecraft/Util/ZIP_FILE_SYSTEM_PROVIDER +FD: net/minecraft/Util/f_183935_ net/minecraft/Util/DEFAULT_MAX_THREADS +FD: net/minecraft/Util/f_183936_ net/minecraft/Util/MAX_THREADS_SYSTEM_PROPERTY +FD: net/minecraft/Util/f_183937_ net/minecraft/Util/thePauser +FD: net/minecraft/Util/f_211544_ net/minecraft/Util/TICKER +FD: net/minecraft/Util/f_241646_ net/minecraft/Util/FILENAME_DATE_TIME_FORMATTER +FD: net/minecraft/Util$10/f_211547_ net/minecraft/Util$10/val$function +FD: net/minecraft/Util$10/f_211548_ net/minecraft/Util$10/cache +FD: net/minecraft/Util$11/f_214692_ net/minecraft/Util$11/val$function +FD: net/minecraft/Util$11/f_214693_ net/minecraft/Util$11/cache +FD: net/minecraft/Util$5/f_214703_ net/minecraft/Util$5/val$from +FD: net/minecraft/Util$5/f_214704_ net/minecraft/Util$5/val$to +FD: net/minecraft/Util$6/f_137608_ net/minecraft/Util$6/val$target +FD: net/minecraft/Util$7/f_211567_ net/minecraft/Util$7/val$target +FD: net/minecraft/Util$8/f_214708_ net/minecraft/Util$8/val$target +FD: net/minecraft/Util$IdentityStrategy/$VALUES net/minecraft/Util$IdentityStrategy/$VALUES +FD: net/minecraft/Util$IdentityStrategy/INSTANCE net/minecraft/Util$IdentityStrategy/INSTANCE +FD: net/minecraft/Util$OS/$VALUES net/minecraft/Util$OS/$VALUES +FD: net/minecraft/Util$OS/LINUX net/minecraft/Util$OS/LINUX +FD: net/minecraft/Util$OS/OSX net/minecraft/Util$OS/OSX +FD: net/minecraft/Util$OS/SOLARIS net/minecraft/Util$OS/SOLARIS +FD: net/minecraft/Util$OS/UNKNOWN net/minecraft/Util$OS/UNKNOWN +FD: net/minecraft/Util$OS/WINDOWS net/minecraft/Util$OS/WINDOWS +FD: net/minecraft/Util$OS/f_183994_ net/minecraft/Util$OS/telemetryName +FD: net/minecraft/advancements/Advancement/f_138298_ net/minecraft/advancements/Advancement/parent +FD: net/minecraft/advancements/Advancement/f_138299_ net/minecraft/advancements/Advancement/display +FD: net/minecraft/advancements/Advancement/f_138300_ net/minecraft/advancements/Advancement/rewards +FD: net/minecraft/advancements/Advancement/f_138301_ net/minecraft/advancements/Advancement/id +FD: net/minecraft/advancements/Advancement/f_138302_ net/minecraft/advancements/Advancement/criteria +FD: net/minecraft/advancements/Advancement/f_138303_ net/minecraft/advancements/Advancement/requirements +FD: net/minecraft/advancements/Advancement/f_138304_ net/minecraft/advancements/Advancement/children +FD: net/minecraft/advancements/Advancement/f_138305_ net/minecraft/advancements/Advancement/chatComponent +FD: net/minecraft/advancements/Advancement/f_285575_ net/minecraft/advancements/Advancement/sendsTelemetryEvent +FD: net/minecraft/advancements/Advancement$Builder/f_138332_ net/minecraft/advancements/Advancement$Builder/parentId +FD: net/minecraft/advancements/Advancement$Builder/f_138333_ net/minecraft/advancements/Advancement$Builder/parent +FD: net/minecraft/advancements/Advancement$Builder/f_138334_ net/minecraft/advancements/Advancement$Builder/display +FD: net/minecraft/advancements/Advancement$Builder/f_138335_ net/minecraft/advancements/Advancement$Builder/rewards +FD: net/minecraft/advancements/Advancement$Builder/f_138336_ net/minecraft/advancements/Advancement$Builder/criteria +FD: net/minecraft/advancements/Advancement$Builder/f_138337_ net/minecraft/advancements/Advancement$Builder/requirements +FD: net/minecraft/advancements/Advancement$Builder/f_138338_ net/minecraft/advancements/Advancement$Builder/requirementsStrategy +FD: net/minecraft/advancements/Advancement$Builder/f_285655_ net/minecraft/advancements/Advancement$Builder/sendsTelemetryEvent +FD: net/minecraft/advancements/AdvancementList/f_139325_ net/minecraft/advancements/AdvancementList/LOGGER +FD: net/minecraft/advancements/AdvancementList/f_139326_ net/minecraft/advancements/AdvancementList/advancements +FD: net/minecraft/advancements/AdvancementList/f_139327_ net/minecraft/advancements/AdvancementList/roots +FD: net/minecraft/advancements/AdvancementList/f_139328_ net/minecraft/advancements/AdvancementList/tasks +FD: net/minecraft/advancements/AdvancementList/f_139329_ net/minecraft/advancements/AdvancementList/listener +FD: net/minecraft/advancements/AdvancementProgress/f_8190_ net/minecraft/advancements/AdvancementProgress/criteria +FD: net/minecraft/advancements/AdvancementProgress/f_8191_ net/minecraft/advancements/AdvancementProgress/requirements +FD: net/minecraft/advancements/AdvancementRewards/f_9978_ net/minecraft/advancements/AdvancementRewards/EMPTY +FD: net/minecraft/advancements/AdvancementRewards/f_9979_ net/minecraft/advancements/AdvancementRewards/experience +FD: net/minecraft/advancements/AdvancementRewards/f_9980_ net/minecraft/advancements/AdvancementRewards/loot +FD: net/minecraft/advancements/AdvancementRewards/f_9981_ net/minecraft/advancements/AdvancementRewards/recipes +FD: net/minecraft/advancements/AdvancementRewards/f_9982_ net/minecraft/advancements/AdvancementRewards/function +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_10000_ net/minecraft/advancements/AdvancementRewards$Builder/loot +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_10001_ net/minecraft/advancements/AdvancementRewards$Builder/recipes +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_10002_ net/minecraft/advancements/AdvancementRewards$Builder/function +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_9999_ net/minecraft/advancements/AdvancementRewards$Builder/experience +FD: net/minecraft/advancements/CriteriaTriggers/f_10550_ net/minecraft/advancements/CriteriaTriggers/EFFECTS_CHANGED +FD: net/minecraft/advancements/CriteriaTriggers/f_10551_ net/minecraft/advancements/CriteriaTriggers/USED_TOTEM +FD: net/minecraft/advancements/CriteriaTriggers/f_10552_ net/minecraft/advancements/CriteriaTriggers/NETHER_TRAVEL +FD: net/minecraft/advancements/CriteriaTriggers/f_10553_ net/minecraft/advancements/CriteriaTriggers/FISHING_ROD_HOOKED +FD: net/minecraft/advancements/CriteriaTriggers/f_10554_ net/minecraft/advancements/CriteriaTriggers/CHANNELED_LIGHTNING +FD: net/minecraft/advancements/CriteriaTriggers/f_10555_ net/minecraft/advancements/CriteriaTriggers/SHOT_CROSSBOW +FD: net/minecraft/advancements/CriteriaTriggers/f_10556_ net/minecraft/advancements/CriteriaTriggers/KILLED_BY_CROSSBOW +FD: net/minecraft/advancements/CriteriaTriggers/f_10557_ net/minecraft/advancements/CriteriaTriggers/RAID_WIN +FD: net/minecraft/advancements/CriteriaTriggers/f_10558_ net/minecraft/advancements/CriteriaTriggers/BAD_OMEN +FD: net/minecraft/advancements/CriteriaTriggers/f_10559_ net/minecraft/advancements/CriteriaTriggers/HONEY_BLOCK_SLIDE +FD: net/minecraft/advancements/CriteriaTriggers/f_10560_ net/minecraft/advancements/CriteriaTriggers/BEE_NEST_DESTROYED +FD: net/minecraft/advancements/CriteriaTriggers/f_10561_ net/minecraft/advancements/CriteriaTriggers/TARGET_BLOCK_HIT +FD: net/minecraft/advancements/CriteriaTriggers/f_10562_ net/minecraft/advancements/CriteriaTriggers/ITEM_USED_ON_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_10563_ net/minecraft/advancements/CriteriaTriggers/GENERATE_LOOT +FD: net/minecraft/advancements/CriteriaTriggers/f_10565_ net/minecraft/advancements/CriteriaTriggers/PLAYER_INTERACTED_WITH_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10566_ net/minecraft/advancements/CriteriaTriggers/CRITERIA +FD: net/minecraft/advancements/CriteriaTriggers/f_10567_ net/minecraft/advancements/CriteriaTriggers/IMPOSSIBLE +FD: net/minecraft/advancements/CriteriaTriggers/f_10568_ net/minecraft/advancements/CriteriaTriggers/PLAYER_KILLED_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10569_ net/minecraft/advancements/CriteriaTriggers/ENTITY_KILLED_PLAYER +FD: net/minecraft/advancements/CriteriaTriggers/f_10570_ net/minecraft/advancements/CriteriaTriggers/ENTER_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_10571_ net/minecraft/advancements/CriteriaTriggers/INVENTORY_CHANGED +FD: net/minecraft/advancements/CriteriaTriggers/f_10572_ net/minecraft/advancements/CriteriaTriggers/RECIPE_UNLOCKED +FD: net/minecraft/advancements/CriteriaTriggers/f_10573_ net/minecraft/advancements/CriteriaTriggers/PLAYER_HURT_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10574_ net/minecraft/advancements/CriteriaTriggers/ENTITY_HURT_PLAYER +FD: net/minecraft/advancements/CriteriaTriggers/f_10575_ net/minecraft/advancements/CriteriaTriggers/ENCHANTED_ITEM +FD: net/minecraft/advancements/CriteriaTriggers/f_10576_ net/minecraft/advancements/CriteriaTriggers/FILLED_BUCKET +FD: net/minecraft/advancements/CriteriaTriggers/f_10577_ net/minecraft/advancements/CriteriaTriggers/BREWED_POTION +FD: net/minecraft/advancements/CriteriaTriggers/f_10578_ net/minecraft/advancements/CriteriaTriggers/CONSTRUCT_BEACON +FD: net/minecraft/advancements/CriteriaTriggers/f_10579_ net/minecraft/advancements/CriteriaTriggers/USED_ENDER_EYE +FD: net/minecraft/advancements/CriteriaTriggers/f_10580_ net/minecraft/advancements/CriteriaTriggers/SUMMONED_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10581_ net/minecraft/advancements/CriteriaTriggers/BRED_ANIMALS +FD: net/minecraft/advancements/CriteriaTriggers/f_10582_ net/minecraft/advancements/CriteriaTriggers/LOCATION +FD: net/minecraft/advancements/CriteriaTriggers/f_10583_ net/minecraft/advancements/CriteriaTriggers/SLEPT_IN_BED +FD: net/minecraft/advancements/CriteriaTriggers/f_10584_ net/minecraft/advancements/CriteriaTriggers/CURED_ZOMBIE_VILLAGER +FD: net/minecraft/advancements/CriteriaTriggers/f_10585_ net/minecraft/advancements/CriteriaTriggers/TRADE +FD: net/minecraft/advancements/CriteriaTriggers/f_10586_ net/minecraft/advancements/CriteriaTriggers/ITEM_DURABILITY_CHANGED +FD: net/minecraft/advancements/CriteriaTriggers/f_10587_ net/minecraft/advancements/CriteriaTriggers/LEVITATION +FD: net/minecraft/advancements/CriteriaTriggers/f_10588_ net/minecraft/advancements/CriteriaTriggers/CHANGED_DIMENSION +FD: net/minecraft/advancements/CriteriaTriggers/f_10589_ net/minecraft/advancements/CriteriaTriggers/TICK +FD: net/minecraft/advancements/CriteriaTriggers/f_10590_ net/minecraft/advancements/CriteriaTriggers/TAME_ANIMAL +FD: net/minecraft/advancements/CriteriaTriggers/f_10591_ net/minecraft/advancements/CriteriaTriggers/PLACED_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_10592_ net/minecraft/advancements/CriteriaTriggers/CONSUME_ITEM +FD: net/minecraft/advancements/CriteriaTriggers/f_145088_ net/minecraft/advancements/CriteriaTriggers/START_RIDING_TRIGGER +FD: net/minecraft/advancements/CriteriaTriggers/f_145089_ net/minecraft/advancements/CriteriaTriggers/LIGHTNING_STRIKE +FD: net/minecraft/advancements/CriteriaTriggers/f_145090_ net/minecraft/advancements/CriteriaTriggers/USING_ITEM +FD: net/minecraft/advancements/CriteriaTriggers/f_184759_ net/minecraft/advancements/CriteriaTriggers/FALL_FROM_HEIGHT +FD: net/minecraft/advancements/CriteriaTriggers/f_184760_ net/minecraft/advancements/CriteriaTriggers/RIDE_ENTITY_IN_LAVA_TRIGGER +FD: net/minecraft/advancements/CriteriaTriggers/f_215654_ net/minecraft/advancements/CriteriaTriggers/THROWN_ITEM_PICKED_UP_BY_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_215655_ net/minecraft/advancements/CriteriaTriggers/THROWN_ITEM_PICKED_UP_BY_PLAYER +FD: net/minecraft/advancements/CriteriaTriggers/f_215656_ net/minecraft/advancements/CriteriaTriggers/KILL_MOB_NEAR_SCULK_CATALYST +FD: net/minecraft/advancements/CriteriaTriggers/f_215657_ net/minecraft/advancements/CriteriaTriggers/ALLAY_DROP_ITEM_ON_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_215658_ net/minecraft/advancements/CriteriaTriggers/AVOID_VIBRATION +FD: net/minecraft/advancements/CriteriaTriggers/f_279543_ net/minecraft/advancements/CriteriaTriggers/RECIPE_CRAFTED +FD: net/minecraft/advancements/Criterion/f_11412_ net/minecraft/advancements/Criterion/trigger +FD: net/minecraft/advancements/CriterionProgress/f_12907_ net/minecraft/advancements/CriterionProgress/DATE_FORMAT +FD: net/minecraft/advancements/CriterionProgress/f_12908_ net/minecraft/advancements/CriterionProgress/obtained +FD: net/minecraft/advancements/CriterionTrigger$Listener/f_13678_ net/minecraft/advancements/CriterionTrigger$Listener/trigger +FD: net/minecraft/advancements/CriterionTrigger$Listener/f_13679_ net/minecraft/advancements/CriterionTrigger$Listener/advancement +FD: net/minecraft/advancements/CriterionTrigger$Listener/f_13680_ net/minecraft/advancements/CriterionTrigger$Listener/criterion +FD: net/minecraft/advancements/DisplayInfo/f_14958_ net/minecraft/advancements/DisplayInfo/title +FD: net/minecraft/advancements/DisplayInfo/f_14959_ net/minecraft/advancements/DisplayInfo/description +FD: net/minecraft/advancements/DisplayInfo/f_14960_ net/minecraft/advancements/DisplayInfo/icon +FD: net/minecraft/advancements/DisplayInfo/f_14961_ net/minecraft/advancements/DisplayInfo/background +FD: net/minecraft/advancements/DisplayInfo/f_14962_ net/minecraft/advancements/DisplayInfo/frame +FD: net/minecraft/advancements/DisplayInfo/f_14963_ net/minecraft/advancements/DisplayInfo/showToast +FD: net/minecraft/advancements/DisplayInfo/f_14964_ net/minecraft/advancements/DisplayInfo/announceChat +FD: net/minecraft/advancements/DisplayInfo/f_14965_ net/minecraft/advancements/DisplayInfo/hidden +FD: net/minecraft/advancements/DisplayInfo/f_14966_ net/minecraft/advancements/DisplayInfo/x +FD: net/minecraft/advancements/DisplayInfo/f_14967_ net/minecraft/advancements/DisplayInfo/y +FD: net/minecraft/advancements/FrameType/$VALUES net/minecraft/advancements/FrameType/$VALUES +FD: net/minecraft/advancements/FrameType/CHALLENGE net/minecraft/advancements/FrameType/CHALLENGE +FD: net/minecraft/advancements/FrameType/GOAL net/minecraft/advancements/FrameType/GOAL +FD: net/minecraft/advancements/FrameType/TASK net/minecraft/advancements/FrameType/TASK +FD: net/minecraft/advancements/FrameType/f_15536_ net/minecraft/advancements/FrameType/name +FD: net/minecraft/advancements/FrameType/f_15537_ net/minecraft/advancements/FrameType/texture +FD: net/minecraft/advancements/FrameType/f_15538_ net/minecraft/advancements/FrameType/chatColor +FD: net/minecraft/advancements/FrameType/f_15539_ net/minecraft/advancements/FrameType/displayName +FD: net/minecraft/advancements/RequirementsStrategy/f_15978_ net/minecraft/advancements/RequirementsStrategy/AND +FD: net/minecraft/advancements/RequirementsStrategy/f_15979_ net/minecraft/advancements/RequirementsStrategy/OR +FD: net/minecraft/advancements/TreeNodePosition/f_16554_ net/minecraft/advancements/TreeNodePosition/advancement +FD: net/minecraft/advancements/TreeNodePosition/f_16555_ net/minecraft/advancements/TreeNodePosition/parent +FD: net/minecraft/advancements/TreeNodePosition/f_16556_ net/minecraft/advancements/TreeNodePosition/previousSibling +FD: net/minecraft/advancements/TreeNodePosition/f_16557_ net/minecraft/advancements/TreeNodePosition/childIndex +FD: net/minecraft/advancements/TreeNodePosition/f_16558_ net/minecraft/advancements/TreeNodePosition/children +FD: net/minecraft/advancements/TreeNodePosition/f_16559_ net/minecraft/advancements/TreeNodePosition/ancestor +FD: net/minecraft/advancements/TreeNodePosition/f_16560_ net/minecraft/advancements/TreeNodePosition/thread +FD: net/minecraft/advancements/TreeNodePosition/f_16561_ net/minecraft/advancements/TreeNodePosition/x +FD: net/minecraft/advancements/TreeNodePosition/f_16562_ net/minecraft/advancements/TreeNodePosition/y +FD: net/minecraft/advancements/TreeNodePosition/f_16563_ net/minecraft/advancements/TreeNodePosition/mod +FD: net/minecraft/advancements/TreeNodePosition/f_16564_ net/minecraft/advancements/TreeNodePosition/change +FD: net/minecraft/advancements/TreeNodePosition/f_16565_ net/minecraft/advancements/TreeNodePosition/shift +FD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/f_16972_ net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/criterion +FD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/f_16973_ net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/player +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/f_17473_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ID +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/f_17500_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/block +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/f_17501_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/f_17502_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/numBees +FD: net/minecraft/advancements/critereon/BlockPredicate/f_146710_ net/minecraft/advancements/critereon/BlockPredicate/blocks +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17902_ net/minecraft/advancements/critereon/BlockPredicate/ANY +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17903_ net/minecraft/advancements/critereon/BlockPredicate/tag +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17905_ net/minecraft/advancements/critereon/BlockPredicate/properties +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17906_ net/minecraft/advancements/critereon/BlockPredicate/nbt +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_146721_ net/minecraft/advancements/critereon/BlockPredicate$Builder/tag +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_17920_ net/minecraft/advancements/critereon/BlockPredicate$Builder/blocks +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_17921_ net/minecraft/advancements/critereon/BlockPredicate$Builder/properties +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_17922_ net/minecraft/advancements/critereon/BlockPredicate$Builder/nbt +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger/f_18636_ net/minecraft/advancements/critereon/BredAnimalsTrigger/ID +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/f_18659_ net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/parent +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/f_18660_ net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/partner +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/f_18661_ net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/child +FD: net/minecraft/advancements/critereon/BrewedPotionTrigger/f_19116_ net/minecraft/advancements/critereon/BrewedPotionTrigger/ID +FD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/f_19137_ net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/potion +FD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/f_19753_ net/minecraft/advancements/critereon/ChangeDimensionTrigger/ID +FD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/f_19774_ net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/from +FD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/f_19775_ net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/to +FD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/f_21714_ net/minecraft/advancements/critereon/ChanneledLightningTrigger/ID +FD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/f_21736_ net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/victims +FD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/f_22742_ net/minecraft/advancements/critereon/ConstructBeaconTrigger/ID +FD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/f_22761_ net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/level +FD: net/minecraft/advancements/critereon/ConsumeItemTrigger/f_23678_ net/minecraft/advancements/critereon/ConsumeItemTrigger/ID +FD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/f_23697_ net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/ContextAwarePredicate/f_285559_ net/minecraft/advancements/critereon/ContextAwarePredicate/compositePredicates +FD: net/minecraft/advancements/critereon/ContextAwarePredicate/f_285567_ net/minecraft/advancements/critereon/ContextAwarePredicate/ANY +FD: net/minecraft/advancements/critereon/ContextAwarePredicate/f_285622_ net/minecraft/advancements/critereon/ContextAwarePredicate/conditions +FD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/f_24270_ net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ID +FD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/f_24291_ net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/zombie +FD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/f_24292_ net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/villager +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24902_ net/minecraft/advancements/critereon/DamagePredicate/ANY +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24903_ net/minecraft/advancements/critereon/DamagePredicate/dealtDamage +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24904_ net/minecraft/advancements/critereon/DamagePredicate/takenDamage +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24905_ net/minecraft/advancements/critereon/DamagePredicate/sourceEntity +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24906_ net/minecraft/advancements/critereon/DamagePredicate/blocked +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24907_ net/minecraft/advancements/critereon/DamagePredicate/type +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24925_ net/minecraft/advancements/critereon/DamagePredicate$Builder/dealtDamage +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24926_ net/minecraft/advancements/critereon/DamagePredicate$Builder/takenDamage +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24927_ net/minecraft/advancements/critereon/DamagePredicate$Builder/sourceEntity +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24928_ net/minecraft/advancements/critereon/DamagePredicate$Builder/blocked +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24929_ net/minecraft/advancements/critereon/DamagePredicate$Builder/type +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_25420_ net/minecraft/advancements/critereon/DamageSourcePredicate/ANY +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_25429_ net/minecraft/advancements/critereon/DamageSourcePredicate/directEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_25430_ net/minecraft/advancements/critereon/DamageSourcePredicate/sourceEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_268608_ net/minecraft/advancements/critereon/DamageSourcePredicate/tags +FD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/f_25468_ net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/directEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/f_25469_ net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/sourceEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/f_268703_ net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/tags +FD: net/minecraft/advancements/critereon/DeserializationContext/f_25865_ net/minecraft/advancements/critereon/DeserializationContext/LOGGER +FD: net/minecraft/advancements/critereon/DeserializationContext/f_25866_ net/minecraft/advancements/critereon/DeserializationContext/id +FD: net/minecraft/advancements/critereon/DeserializationContext/f_25868_ net/minecraft/advancements/critereon/DeserializationContext/predicateGson +FD: net/minecraft/advancements/critereon/DeserializationContext/f_278452_ net/minecraft/advancements/critereon/DeserializationContext/lootData +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26241_ net/minecraft/advancements/critereon/DistancePredicate/ANY +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26242_ net/minecraft/advancements/critereon/DistancePredicate/x +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26243_ net/minecraft/advancements/critereon/DistancePredicate/y +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26244_ net/minecraft/advancements/critereon/DistancePredicate/z +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26245_ net/minecraft/advancements/critereon/DistancePredicate/horizontal +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26246_ net/minecraft/advancements/critereon/DistancePredicate/absolute +FD: net/minecraft/advancements/critereon/DistanceTrigger/f_186161_ net/minecraft/advancements/critereon/DistanceTrigger/id +FD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/f_186181_ net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/startPosition +FD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/f_186182_ net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/distance +FD: net/minecraft/advancements/critereon/EffectsChangedTrigger/f_26756_ net/minecraft/advancements/critereon/EffectsChangedTrigger/ID +FD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/f_149269_ net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/source +FD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/f_26774_ net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/effects +FD: net/minecraft/advancements/critereon/EnchantedItemTrigger/f_27664_ net/minecraft/advancements/critereon/EnchantedItemTrigger/ID +FD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/f_27685_ net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/f_27686_ net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/levels +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30464_ net/minecraft/advancements/critereon/EnchantmentPredicate/ANY +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30465_ net/minecraft/advancements/critereon/EnchantmentPredicate/NONE +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30466_ net/minecraft/advancements/critereon/EnchantmentPredicate/enchantment +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30467_ net/minecraft/advancements/critereon/EnchantmentPredicate/level +FD: net/minecraft/advancements/critereon/EnterBlockTrigger/f_31265_ net/minecraft/advancements/critereon/EnterBlockTrigger/ID +FD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/f_31291_ net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/block +FD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/f_31292_ net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/state +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32176_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/ANY +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32177_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/CAPTAIN +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32178_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/head +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32179_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/chest +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32180_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/legs +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32181_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/feet +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32182_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/mainhand +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32183_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/offhand +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32197_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/head +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32198_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/chest +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32199_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/legs +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32200_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/feet +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32201_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/mainhand +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32202_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/offhand +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33682_ net/minecraft/advancements/critereon/EntityFlagsPredicate/ANY +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33683_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isOnFire +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33684_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isCrouching +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33685_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isSprinting +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33686_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isSwimming +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33687_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isBaby +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33707_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isOnFire +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33708_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isCrouching +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33709_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isSprinting +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33710_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isSwimming +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33711_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isBaby +FD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/f_35170_ net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ID +FD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/f_35196_ net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/damage +FD: net/minecraft/advancements/critereon/EntityPredicate/f_150285_ net/minecraft/advancements/critereon/EntityPredicate/steppingOnLocation +FD: net/minecraft/advancements/critereon/EntityPredicate/f_150287_ net/minecraft/advancements/critereon/EntityPredicate/passenger +FD: net/minecraft/advancements/critereon/EntityPredicate/f_218773_ net/minecraft/advancements/critereon/EntityPredicate/subPredicate +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36550_ net/minecraft/advancements/critereon/EntityPredicate/ANY +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36551_ net/minecraft/advancements/critereon/EntityPredicate/entityType +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36552_ net/minecraft/advancements/critereon/EntityPredicate/distanceToPlayer +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36553_ net/minecraft/advancements/critereon/EntityPredicate/location +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36554_ net/minecraft/advancements/critereon/EntityPredicate/effects +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36555_ net/minecraft/advancements/critereon/EntityPredicate/nbt +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36556_ net/minecraft/advancements/critereon/EntityPredicate/flags +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36557_ net/minecraft/advancements/critereon/EntityPredicate/equipment +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36560_ net/minecraft/advancements/critereon/EntityPredicate/vehicle +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36561_ net/minecraft/advancements/critereon/EntityPredicate/targetedEntity +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36562_ net/minecraft/advancements/critereon/EntityPredicate/team +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_150323_ net/minecraft/advancements/critereon/EntityPredicate$Builder/steppingOnLocation +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_150325_ net/minecraft/advancements/critereon/EntityPredicate$Builder/passenger +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_218799_ net/minecraft/advancements/critereon/EntityPredicate$Builder/subPredicate +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36619_ net/minecraft/advancements/critereon/EntityPredicate$Builder/entityType +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36620_ net/minecraft/advancements/critereon/EntityPredicate$Builder/distanceToPlayer +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36621_ net/minecraft/advancements/critereon/EntityPredicate$Builder/location +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36622_ net/minecraft/advancements/critereon/EntityPredicate$Builder/effects +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36623_ net/minecraft/advancements/critereon/EntityPredicate$Builder/nbt +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36624_ net/minecraft/advancements/critereon/EntityPredicate$Builder/flags +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36625_ net/minecraft/advancements/critereon/EntityPredicate$Builder/equipment +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36628_ net/minecraft/advancements/critereon/EntityPredicate$Builder/vehicle +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36629_ net/minecraft/advancements/critereon/EntityPredicate$Builder/targetedEntity +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36630_ net/minecraft/advancements/critereon/EntityPredicate$Builder/team +FD: net/minecraft/advancements/critereon/EntitySubPredicate/f_218826_ net/minecraft/advancements/critereon/EntitySubPredicate/ANY +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218847_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/ANY +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218848_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/LIGHTNING +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218849_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/FISHING_HOOK +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218850_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/PLAYER +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218851_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/SLIME +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218852_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/CAT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218853_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/FROG +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218854_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/TYPES +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262202_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/MOOSHROOM +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262221_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/TROPICAL_FISH +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262222_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/BOAT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262231_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/PARROT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262257_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/AXOLOTL +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262259_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/HORSE +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262265_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/VILLAGER +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262266_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/LLAMA +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262285_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/RABBIT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262296_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/PAINTING +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262303_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/FOX +FD: net/minecraft/advancements/critereon/EntityTypePredicate/f_37636_ net/minecraft/advancements/critereon/EntityTypePredicate/ANY +FD: net/minecraft/advancements/critereon/EntityTypePredicate/f_37637_ net/minecraft/advancements/critereon/EntityTypePredicate/COMMA_JOINER +FD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/f_37653_ net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/tag +FD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/f_37659_ net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/type +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_219082_ net/minecraft/advancements/critereon/EntityVariantPredicate/VARIANT_KEY +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_219084_ net/minecraft/advancements/critereon/EntityVariantPredicate/getter +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_219085_ net/minecraft/advancements/critereon/EntityVariantPredicate/type +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_262213_ net/minecraft/advancements/critereon/EntityVariantPredicate/variantCodec +FD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/f_219098_ net/minecraft/advancements/critereon/EntityVariantPredicate$1/val$variant +FD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/f_219099_ net/minecraft/advancements/critereon/EntityVariantPredicate$1/this$0 +FD: net/minecraft/advancements/critereon/FilledBucketTrigger/f_38768_ net/minecraft/advancements/critereon/FilledBucketTrigger/ID +FD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/f_38787_ net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/FishingHookPredicate/f_150706_ net/minecraft/advancements/critereon/FishingHookPredicate/IN_OPEN_WATER_KEY +FD: net/minecraft/advancements/critereon/FishingHookPredicate/f_39756_ net/minecraft/advancements/critereon/FishingHookPredicate/ANY +FD: net/minecraft/advancements/critereon/FishingHookPredicate/f_39757_ net/minecraft/advancements/critereon/FishingHookPredicate/inOpenWater +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/f_40412_ net/minecraft/advancements/critereon/FishingRodHookedTrigger/ID +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/f_40435_ net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/rod +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/f_40436_ net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/f_40437_ net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41094_ net/minecraft/advancements/critereon/FluidPredicate/ANY +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41095_ net/minecraft/advancements/critereon/FluidPredicate/tag +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41096_ net/minecraft/advancements/critereon/FluidPredicate/fluid +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41097_ net/minecraft/advancements/critereon/FluidPredicate/properties +FD: net/minecraft/advancements/critereon/FluidPredicate$Builder/f_151162_ net/minecraft/advancements/critereon/FluidPredicate$Builder/fluid +FD: net/minecraft/advancements/critereon/FluidPredicate$Builder/f_151163_ net/minecraft/advancements/critereon/FluidPredicate$Builder/fluids +FD: net/minecraft/advancements/critereon/FluidPredicate$Builder/f_151164_ net/minecraft/advancements/critereon/FluidPredicate$Builder/properties +FD: net/minecraft/advancements/critereon/ImpossibleTrigger/f_41555_ net/minecraft/advancements/critereon/ImpossibleTrigger/ID +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger/f_43145_ net/minecraft/advancements/critereon/InventoryChangeTrigger/ID +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43176_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/slotsOccupied +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43177_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/slotsFull +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43178_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/slotsEmpty +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43179_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/predicates +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/f_43665_ net/minecraft/advancements/critereon/ItemDurabilityTrigger/ID +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/f_43686_ net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/f_43687_ net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/durability +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/f_43688_ net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/delta +FD: net/minecraft/advancements/critereon/ItemPredicate/f_151427_ net/minecraft/advancements/critereon/ItemPredicate/items +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45028_ net/minecraft/advancements/critereon/ItemPredicate/ANY +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45029_ net/minecraft/advancements/critereon/ItemPredicate/tag +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45031_ net/minecraft/advancements/critereon/ItemPredicate/count +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45032_ net/minecraft/advancements/critereon/ItemPredicate/durability +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45033_ net/minecraft/advancements/critereon/ItemPredicate/enchantments +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45034_ net/minecraft/advancements/critereon/ItemPredicate/storedEnchantments +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45035_ net/minecraft/advancements/critereon/ItemPredicate/potion +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45036_ net/minecraft/advancements/critereon/ItemPredicate/nbt +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_151440_ net/minecraft/advancements/critereon/ItemPredicate$Builder/items +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45059_ net/minecraft/advancements/critereon/ItemPredicate$Builder/enchantments +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45060_ net/minecraft/advancements/critereon/ItemPredicate$Builder/storedEnchantments +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45062_ net/minecraft/advancements/critereon/ItemPredicate$Builder/tag +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45063_ net/minecraft/advancements/critereon/ItemPredicate$Builder/count +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45064_ net/minecraft/advancements/critereon/ItemPredicate$Builder/durability +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45065_ net/minecraft/advancements/critereon/ItemPredicate$Builder/potion +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45066_ net/minecraft/advancements/critereon/ItemPredicate$Builder/nbt +FD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/f_285601_ net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/id +FD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/f_285570_ net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/location +FD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/f_46867_ net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ID +FD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/f_46887_ net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/victims +FD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/f_46888_ net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/uniqueEntityTypes +FD: net/minecraft/advancements/critereon/KilledTrigger/f_48100_ net/minecraft/advancements/critereon/KilledTrigger/id +FD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/f_48123_ net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityPredicate +FD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/f_48124_ net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/killingBlow +FD: net/minecraft/advancements/critereon/LevitationTrigger/f_49112_ net/minecraft/advancements/critereon/LevitationTrigger/ID +FD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/f_49134_ net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/distance +FD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/f_49135_ net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/duration +FD: net/minecraft/advancements/critereon/LightPredicate/f_51335_ net/minecraft/advancements/critereon/LightPredicate/ANY +FD: net/minecraft/advancements/critereon/LightPredicate/f_51336_ net/minecraft/advancements/critereon/LightPredicate/composite +FD: net/minecraft/advancements/critereon/LightPredicate$Builder/f_153101_ net/minecraft/advancements/critereon/LightPredicate$Builder/composite +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153233_ net/minecraft/advancements/critereon/LighthingBoltPredicate/BLOCKS_SET_ON_FIRE_KEY +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153234_ net/minecraft/advancements/critereon/LighthingBoltPredicate/ENTITY_STRUCK_KEY +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153235_ net/minecraft/advancements/critereon/LighthingBoltPredicate/blocksSetOnFire +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153236_ net/minecraft/advancements/critereon/LighthingBoltPredicate/entityStruck +FD: net/minecraft/advancements/critereon/LightningStrikeTrigger/f_153384_ net/minecraft/advancements/critereon/LightningStrikeTrigger/ID +FD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/f_153407_ net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/lightning +FD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/f_153408_ net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/bystander +FD: net/minecraft/advancements/critereon/LocationPredicate/f_220588_ net/minecraft/advancements/critereon/LocationPredicate/structure +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52592_ net/minecraft/advancements/critereon/LocationPredicate/ANY +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52593_ net/minecraft/advancements/critereon/LocationPredicate/LOGGER +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52594_ net/minecraft/advancements/critereon/LocationPredicate/x +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52595_ net/minecraft/advancements/critereon/LocationPredicate/y +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52596_ net/minecraft/advancements/critereon/LocationPredicate/z +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52597_ net/minecraft/advancements/critereon/LocationPredicate/biome +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52599_ net/minecraft/advancements/critereon/LocationPredicate/dimension +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52600_ net/minecraft/advancements/critereon/LocationPredicate/smokey +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52601_ net/minecraft/advancements/critereon/LocationPredicate/light +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52602_ net/minecraft/advancements/critereon/LocationPredicate/block +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52603_ net/minecraft/advancements/critereon/LocationPredicate/fluid +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_220591_ net/minecraft/advancements/critereon/LocationPredicate$Builder/structure +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52640_ net/minecraft/advancements/critereon/LocationPredicate$Builder/x +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52641_ net/minecraft/advancements/critereon/LocationPredicate$Builder/y +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52642_ net/minecraft/advancements/critereon/LocationPredicate$Builder/z +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52643_ net/minecraft/advancements/critereon/LocationPredicate$Builder/biome +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52645_ net/minecraft/advancements/critereon/LocationPredicate$Builder/dimension +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52646_ net/minecraft/advancements/critereon/LocationPredicate$Builder/smokey +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52647_ net/minecraft/advancements/critereon/LocationPredicate$Builder/light +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52648_ net/minecraft/advancements/critereon/LocationPredicate$Builder/block +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52649_ net/minecraft/advancements/critereon/LocationPredicate$Builder/fluid +FD: net/minecraft/advancements/critereon/LootTableTrigger/f_54593_ net/minecraft/advancements/critereon/LootTableTrigger/ID +FD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/f_54612_ net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/lootTable +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55297_ net/minecraft/advancements/critereon/MinMaxBounds/ERROR_EMPTY +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55298_ net/minecraft/advancements/critereon/MinMaxBounds/ERROR_SWAPPED +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55299_ net/minecraft/advancements/critereon/MinMaxBounds/min +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55300_ net/minecraft/advancements/critereon/MinMaxBounds/max +FD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/f_154779_ net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ANY +FD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/f_154780_ net/minecraft/advancements/critereon/MinMaxBounds$Doubles/minSq +FD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/f_154781_ net/minecraft/advancements/critereon/MinMaxBounds$Doubles/maxSq +FD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/f_55364_ net/minecraft/advancements/critereon/MinMaxBounds$Ints/ANY +FD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/f_55365_ net/minecraft/advancements/critereon/MinMaxBounds$Ints/minSq +FD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/f_55366_ net/minecraft/advancements/critereon/MinMaxBounds$Ints/maxSq +FD: net/minecraft/advancements/critereon/MobEffectsPredicate/f_56547_ net/minecraft/advancements/critereon/MobEffectsPredicate/ANY +FD: net/minecraft/advancements/critereon/MobEffectsPredicate/f_56548_ net/minecraft/advancements/critereon/MobEffectsPredicate/effects +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56566_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/amplifier +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56567_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/duration +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56568_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ambient +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56569_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/visible +FD: net/minecraft/advancements/critereon/NbtPredicate/f_57471_ net/minecraft/advancements/critereon/NbtPredicate/ANY +FD: net/minecraft/advancements/critereon/NbtPredicate/f_57472_ net/minecraft/advancements/critereon/NbtPredicate/tag +FD: net/minecraft/advancements/critereon/PickedUpItemTrigger/f_221294_ net/minecraft/advancements/critereon/PickedUpItemTrigger/id +FD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/f_221315_ net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/f_221316_ net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/f_60108_ net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ID +FD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/f_60136_ net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/damage +FD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/f_60137_ net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/PlayerInteractTrigger/f_61490_ net/minecraft/advancements/critereon/PlayerInteractTrigger/ID +FD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/f_61511_ net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/f_61512_ net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_156743_ net/minecraft/advancements/critereon/PlayerPredicate/LOOKING_AT_RANGE +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_156744_ net/minecraft/advancements/critereon/PlayerPredicate/lookingAt +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62245_ net/minecraft/advancements/critereon/PlayerPredicate/level +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62246_ net/minecraft/advancements/critereon/PlayerPredicate/gameType +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62247_ net/minecraft/advancements/critereon/PlayerPredicate/stats +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62248_ net/minecraft/advancements/critereon/PlayerPredicate/recipes +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62249_ net/minecraft/advancements/critereon/PlayerPredicate/advancements +FD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/f_62291_ net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/criterions +FD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/f_62299_ net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/state +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_156766_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/lookingAt +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62307_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/level +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62308_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/gameType +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62309_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/stats +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62310_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/recipes +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62311_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/advancements +FD: net/minecraft/advancements/critereon/PlayerTrigger/f_222614_ net/minecraft/advancements/critereon/PlayerTrigger/id +FD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/f_279610_ net/minecraft/advancements/critereon/RecipeCraftedTrigger/ID +FD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/f_279530_ net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/predicates +FD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/f_279628_ net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/recipeId +FD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/f_63714_ net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ID +FD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/f_63735_ net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/recipe +FD: net/minecraft/advancements/critereon/SerializationContext/f_64768_ net/minecraft/advancements/critereon/SerializationContext/INSTANCE +FD: net/minecraft/advancements/critereon/SerializationContext/f_64769_ net/minecraft/advancements/critereon/SerializationContext/predicateGson +FD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/f_65458_ net/minecraft/advancements/critereon/ShotCrossbowTrigger/ID +FD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/f_65477_ net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/f_66232_ net/minecraft/advancements/critereon/SimpleCriterionTrigger/players +FD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/f_66974_ net/minecraft/advancements/critereon/SlideDownBlockTrigger/ID +FD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/f_67000_ net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/block +FD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/f_67001_ net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/state +FD: net/minecraft/advancements/critereon/SlimePredicate/f_223418_ net/minecraft/advancements/critereon/SlimePredicate/size +FD: net/minecraft/advancements/critereon/StartRidingTrigger/f_160383_ net/minecraft/advancements/critereon/StartRidingTrigger/ID +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate/f_67658_ net/minecraft/advancements/critereon/StatePropertiesPredicate/ANY +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate/f_67659_ net/minecraft/advancements/critereon/StatePropertiesPredicate/properties +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/f_67691_ net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/matchers +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/f_67707_ net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/value +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/f_67715_ net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/name +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/f_67727_ net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/minValue +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/f_67728_ net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/maxValue +FD: net/minecraft/advancements/critereon/SummonedEntityTrigger/f_68252_ net/minecraft/advancements/critereon/SummonedEntityTrigger/ID +FD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/f_68271_ net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/TagPredicate/f_268414_ net/minecraft/advancements/critereon/TagPredicate/expected +FD: net/minecraft/advancements/critereon/TagPredicate/f_268479_ net/minecraft/advancements/critereon/TagPredicate/tag +FD: net/minecraft/advancements/critereon/TameAnimalTrigger/f_68825_ net/minecraft/advancements/critereon/TameAnimalTrigger/ID +FD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/f_68844_ net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/TargetBlockTrigger/f_70207_ net/minecraft/advancements/critereon/TargetBlockTrigger/ID +FD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/f_70230_ net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/signalStrength +FD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/f_70231_ net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/projectile +FD: net/minecraft/advancements/critereon/TradeTrigger/f_70955_ net/minecraft/advancements/critereon/TradeTrigger/ID +FD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/f_70976_ net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/villager +FD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/f_70977_ net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/f_73928_ net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ID +FD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/f_73947_ net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/level +FD: net/minecraft/advancements/critereon/UsedTotemTrigger/f_74427_ net/minecraft/advancements/critereon/UsedTotemTrigger/ID +FD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/f_74446_ net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/UsingItemTrigger/f_163861_ net/minecraft/advancements/critereon/UsingItemTrigger/ID +FD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/f_163879_ net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75350_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/ANY +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75351_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/ERROR_INTS_ONLY +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75352_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/min +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75353_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/max +FD: net/minecraft/client/AttackIndicatorStatus/$VALUES net/minecraft/client/AttackIndicatorStatus/$VALUES +FD: net/minecraft/client/AttackIndicatorStatus/CROSSHAIR net/minecraft/client/AttackIndicatorStatus/CROSSHAIR +FD: net/minecraft/client/AttackIndicatorStatus/HOTBAR net/minecraft/client/AttackIndicatorStatus/HOTBAR +FD: net/minecraft/client/AttackIndicatorStatus/OFF net/minecraft/client/AttackIndicatorStatus/OFF +FD: net/minecraft/client/AttackIndicatorStatus/f_90498_ net/minecraft/client/AttackIndicatorStatus/BY_ID +FD: net/minecraft/client/AttackIndicatorStatus/f_90499_ net/minecraft/client/AttackIndicatorStatus/id +FD: net/minecraft/client/AttackIndicatorStatus/f_90500_ net/minecraft/client/AttackIndicatorStatus/key +FD: net/minecraft/client/Camera/f_167683_ net/minecraft/client/Camera/FOG_DISTANCE_SCALE +FD: net/minecraft/client/Camera/f_90549_ net/minecraft/client/Camera/initialized +FD: net/minecraft/client/Camera/f_90550_ net/minecraft/client/Camera/level +FD: net/minecraft/client/Camera/f_90551_ net/minecraft/client/Camera/entity +FD: net/minecraft/client/Camera/f_90552_ net/minecraft/client/Camera/position +FD: net/minecraft/client/Camera/f_90553_ net/minecraft/client/Camera/blockPosition +FD: net/minecraft/client/Camera/f_90554_ net/minecraft/client/Camera/forwards +FD: net/minecraft/client/Camera/f_90555_ net/minecraft/client/Camera/up +FD: net/minecraft/client/Camera/f_90556_ net/minecraft/client/Camera/left +FD: net/minecraft/client/Camera/f_90557_ net/minecraft/client/Camera/xRot +FD: net/minecraft/client/Camera/f_90558_ net/minecraft/client/Camera/yRot +FD: net/minecraft/client/Camera/f_90559_ net/minecraft/client/Camera/rotation +FD: net/minecraft/client/Camera/f_90560_ net/minecraft/client/Camera/detached +FD: net/minecraft/client/Camera/f_90562_ net/minecraft/client/Camera/eyeHeight +FD: net/minecraft/client/Camera/f_90563_ net/minecraft/client/Camera/eyeHeightOld +FD: net/minecraft/client/Camera$NearPlane/f_167687_ net/minecraft/client/Camera$NearPlane/forward +FD: net/minecraft/client/Camera$NearPlane/f_167688_ net/minecraft/client/Camera$NearPlane/left +FD: net/minecraft/client/Camera$NearPlane/f_167689_ net/minecraft/client/Camera$NearPlane/up +FD: net/minecraft/client/CameraType/$VALUES net/minecraft/client/CameraType/$VALUES +FD: net/minecraft/client/CameraType/FIRST_PERSON net/minecraft/client/CameraType/FIRST_PERSON +FD: net/minecraft/client/CameraType/THIRD_PERSON_BACK net/minecraft/client/CameraType/THIRD_PERSON_BACK +FD: net/minecraft/client/CameraType/THIRD_PERSON_FRONT net/minecraft/client/CameraType/THIRD_PERSON_FRONT +FD: net/minecraft/client/CameraType/f_90602_ net/minecraft/client/CameraType/VALUES +FD: net/minecraft/client/CameraType/f_90603_ net/minecraft/client/CameraType/firstPerson +FD: net/minecraft/client/CameraType/f_90604_ net/minecraft/client/CameraType/mirrored +FD: net/minecraft/client/ClientBrandRetriever/f_177870_ net/minecraft/client/ClientBrandRetriever/VANILLA_NAME +FD: net/minecraft/client/ClientRecipeBook/f_90618_ net/minecraft/client/ClientRecipeBook/LOGGER +FD: net/minecraft/client/ClientRecipeBook/f_90619_ net/minecraft/client/ClientRecipeBook/collectionsByTab +FD: net/minecraft/client/ClientRecipeBook/f_90620_ net/minecraft/client/ClientRecipeBook/allCollections +FD: net/minecraft/client/ClientRecipeBook$1/f_244126_ net/minecraft/client/ClientRecipeBook$1/$SwitchMap$net$minecraft$world$item$crafting$CookingBookCategory +FD: net/minecraft/client/ClientRecipeBook$1/f_244493_ net/minecraft/client/ClientRecipeBook$1/$SwitchMap$net$minecraft$world$item$crafting$CraftingBookCategory +FD: net/minecraft/client/CloudStatus/$VALUES net/minecraft/client/CloudStatus/$VALUES +FD: net/minecraft/client/CloudStatus/FANCY net/minecraft/client/CloudStatus/FANCY +FD: net/minecraft/client/CloudStatus/FAST net/minecraft/client/CloudStatus/FAST +FD: net/minecraft/client/CloudStatus/OFF net/minecraft/client/CloudStatus/OFF +FD: net/minecraft/client/CloudStatus/f_231330_ net/minecraft/client/CloudStatus/id +FD: net/minecraft/client/CloudStatus/f_90655_ net/minecraft/client/CloudStatus/key +FD: net/minecraft/client/ComponentCollector/f_90672_ net/minecraft/client/ComponentCollector/parts +FD: net/minecraft/client/DebugQueryHandler/f_90697_ net/minecraft/client/DebugQueryHandler/connection +FD: net/minecraft/client/DebugQueryHandler/f_90698_ net/minecraft/client/DebugQueryHandler/transactionId +FD: net/minecraft/client/DebugQueryHandler/f_90699_ net/minecraft/client/DebugQueryHandler/callback +FD: net/minecraft/client/GameNarrator/f_240371_ net/minecraft/client/GameNarrator/minecraft +FD: net/minecraft/client/GameNarrator/f_93310_ net/minecraft/client/GameNarrator/NO_TITLE +FD: net/minecraft/client/GameNarrator/f_93311_ net/minecraft/client/GameNarrator/LOGGER +FD: net/minecraft/client/GameNarrator/f_93313_ net/minecraft/client/GameNarrator/narrator +FD: net/minecraft/client/GraphicsStatus/$VALUES net/minecraft/client/GraphicsStatus/$VALUES +FD: net/minecraft/client/GraphicsStatus/FABULOUS net/minecraft/client/GraphicsStatus/FABULOUS +FD: net/minecraft/client/GraphicsStatus/FANCY net/minecraft/client/GraphicsStatus/FANCY +FD: net/minecraft/client/GraphicsStatus/FAST net/minecraft/client/GraphicsStatus/FAST +FD: net/minecraft/client/GraphicsStatus/f_90763_ net/minecraft/client/GraphicsStatus/BY_ID +FD: net/minecraft/client/GraphicsStatus/f_90764_ net/minecraft/client/GraphicsStatus/id +FD: net/minecraft/client/GraphicsStatus/f_90765_ net/minecraft/client/GraphicsStatus/key +FD: net/minecraft/client/GraphicsStatus$1/f_90784_ net/minecraft/client/GraphicsStatus$1/$SwitchMap$net$minecraft$client$GraphicsStatus +FD: net/minecraft/client/GuiMessage/f_240352_ net/minecraft/client/GuiMessage/tag +FD: net/minecraft/client/GuiMessage/f_240363_ net/minecraft/client/GuiMessage/content +FD: net/minecraft/client/GuiMessage/f_240905_ net/minecraft/client/GuiMessage/signature +FD: net/minecraft/client/GuiMessage/f_90786_ net/minecraft/client/GuiMessage/addedTime +FD: net/minecraft/client/GuiMessage$Line/f_240339_ net/minecraft/client/GuiMessage$Line/content +FD: net/minecraft/client/GuiMessage$Line/f_240350_ net/minecraft/client/GuiMessage$Line/addedTime +FD: net/minecraft/client/GuiMessage$Line/f_240351_ net/minecraft/client/GuiMessage$Line/tag +FD: net/minecraft/client/GuiMessage$Line/f_240367_ net/minecraft/client/GuiMessage$Line/endOfEntry +FD: net/minecraft/client/GuiMessageTag/f_240342_ net/minecraft/client/GuiMessageTag/logTag +FD: net/minecraft/client/GuiMessageTag/f_240343_ net/minecraft/client/GuiMessageTag/TEXTURE_LOCATION +FD: net/minecraft/client/GuiMessageTag/f_240355_ net/minecraft/client/GuiMessageTag/icon +FD: net/minecraft/client/GuiMessageTag/f_240357_ net/minecraft/client/GuiMessageTag/CHAT_MODIFIED_INDICATOR_COLOR +FD: net/minecraft/client/GuiMessageTag/f_240362_ net/minecraft/client/GuiMessageTag/CHAT_NOT_SECURE +FD: net/minecraft/client/GuiMessageTag/f_240377_ net/minecraft/client/GuiMessageTag/CHAT_MODIFIED_TEXT +FD: net/minecraft/client/GuiMessageTag/f_240380_ net/minecraft/client/GuiMessageTag/CHAT_NOT_SECURE_TEXT +FD: net/minecraft/client/GuiMessageTag/f_240381_ net/minecraft/client/GuiMessageTag/text +FD: net/minecraft/client/GuiMessageTag/f_240384_ net/minecraft/client/GuiMessageTag/CHAT_NOT_SECURE_INDICATOR_COLOR +FD: net/minecraft/client/GuiMessageTag/f_240386_ net/minecraft/client/GuiMessageTag/indicatorColor +FD: net/minecraft/client/GuiMessageTag/f_240673_ net/minecraft/client/GuiMessageTag/SYSTEM +FD: net/minecraft/client/GuiMessageTag/f_244099_ net/minecraft/client/GuiMessageTag/SYSTEM_TEXT +FD: net/minecraft/client/GuiMessageTag/f_256799_ net/minecraft/client/GuiMessageTag/SYSTEM_SINGLE_PLAYER +FD: net/minecraft/client/GuiMessageTag/f_256832_ net/minecraft/client/GuiMessageTag/SYSTEM_TEXT_SINGLE_PLAYER +FD: net/minecraft/client/GuiMessageTag$Icon/$VALUES net/minecraft/client/GuiMessageTag$Icon/$VALUES +FD: net/minecraft/client/GuiMessageTag$Icon/CHAT_MODIFIED net/minecraft/client/GuiMessageTag$Icon/CHAT_MODIFIED +FD: net/minecraft/client/GuiMessageTag$Icon/f_240349_ net/minecraft/client/GuiMessageTag$Icon/v +FD: net/minecraft/client/GuiMessageTag$Icon/f_240358_ net/minecraft/client/GuiMessageTag$Icon/width +FD: net/minecraft/client/GuiMessageTag$Icon/f_240366_ net/minecraft/client/GuiMessageTag$Icon/u +FD: net/minecraft/client/GuiMessageTag$Icon/f_240372_ net/minecraft/client/GuiMessageTag$Icon/height +FD: net/minecraft/client/HotbarManager/f_167804_ net/minecraft/client/HotbarManager/NUM_HOTBAR_GROUPS +FD: net/minecraft/client/HotbarManager/f_90796_ net/minecraft/client/HotbarManager/LOGGER +FD: net/minecraft/client/HotbarManager/f_90797_ net/minecraft/client/HotbarManager/optionsFile +FD: net/minecraft/client/HotbarManager/f_90798_ net/minecraft/client/HotbarManager/fixerUpper +FD: net/minecraft/client/HotbarManager/f_90799_ net/minecraft/client/HotbarManager/hotbars +FD: net/minecraft/client/HotbarManager/f_90800_ net/minecraft/client/HotbarManager/loaded +FD: net/minecraft/client/InputType/$VALUES net/minecraft/client/InputType/$VALUES +FD: net/minecraft/client/InputType/KEYBOARD_ARROW net/minecraft/client/InputType/KEYBOARD_ARROW +FD: net/minecraft/client/InputType/KEYBOARD_TAB net/minecraft/client/InputType/KEYBOARD_TAB +FD: net/minecraft/client/InputType/MOUSE net/minecraft/client/InputType/MOUSE +FD: net/minecraft/client/InputType/NONE net/minecraft/client/InputType/NONE +FD: net/minecraft/client/KeyMapping/f_167805_ net/minecraft/client/KeyMapping/CATEGORY_MOVEMENT +FD: net/minecraft/client/KeyMapping/f_167806_ net/minecraft/client/KeyMapping/CATEGORY_MISC +FD: net/minecraft/client/KeyMapping/f_167807_ net/minecraft/client/KeyMapping/CATEGORY_MULTIPLAYER +FD: net/minecraft/client/KeyMapping/f_167808_ net/minecraft/client/KeyMapping/CATEGORY_GAMEPLAY +FD: net/minecraft/client/KeyMapping/f_167809_ net/minecraft/client/KeyMapping/CATEGORY_INVENTORY +FD: net/minecraft/client/KeyMapping/f_167810_ net/minecraft/client/KeyMapping/CATEGORY_INTERFACE +FD: net/minecraft/client/KeyMapping/f_167811_ net/minecraft/client/KeyMapping/CATEGORY_CREATIVE +FD: net/minecraft/client/KeyMapping/f_90809_ net/minecraft/client/KeyMapping/ALL +FD: net/minecraft/client/KeyMapping/f_90810_ net/minecraft/client/KeyMapping/MAP +FD: net/minecraft/client/KeyMapping/f_90811_ net/minecraft/client/KeyMapping/CATEGORIES +FD: net/minecraft/client/KeyMapping/f_90812_ net/minecraft/client/KeyMapping/CATEGORY_SORT_ORDER +FD: net/minecraft/client/KeyMapping/f_90813_ net/minecraft/client/KeyMapping/name +FD: net/minecraft/client/KeyMapping/f_90814_ net/minecraft/client/KeyMapping/defaultKey +FD: net/minecraft/client/KeyMapping/f_90815_ net/minecraft/client/KeyMapping/category +FD: net/minecraft/client/KeyMapping/f_90816_ net/minecraft/client/KeyMapping/key +FD: net/minecraft/client/KeyMapping/f_90817_ net/minecraft/client/KeyMapping/isDown +FD: net/minecraft/client/KeyMapping/f_90818_ net/minecraft/client/KeyMapping/clickCount +FD: net/minecraft/client/KeyboardHandler/f_167812_ net/minecraft/client/KeyboardHandler/DEBUG_CRASH_TIME +FD: net/minecraft/client/KeyboardHandler/f_90867_ net/minecraft/client/KeyboardHandler/minecraft +FD: net/minecraft/client/KeyboardHandler/f_90869_ net/minecraft/client/KeyboardHandler/clipboardManager +FD: net/minecraft/client/KeyboardHandler/f_90870_ net/minecraft/client/KeyboardHandler/debugCrashKeyTime +FD: net/minecraft/client/KeyboardHandler/f_90871_ net/minecraft/client/KeyboardHandler/debugCrashKeyReportedTime +FD: net/minecraft/client/KeyboardHandler/f_90872_ net/minecraft/client/KeyboardHandler/debugCrashKeyReportedCount +FD: net/minecraft/client/KeyboardHandler/f_90873_ net/minecraft/client/KeyboardHandler/handledDebugKey +FD: net/minecraft/client/KeyboardHandler$1/f_90963_ net/minecraft/client/KeyboardHandler$1/$SwitchMap$net$minecraft$world$phys$HitResult$Type +FD: net/minecraft/client/Minecraft/f_167842_ net/minecraft/client/Minecraft/wireframe +FD: net/minecraft/client/Minecraft/f_167843_ net/minecraft/client/Minecraft/MAX_TICKS_PER_UPDATE +FD: net/minecraft/client/Minecraft/f_167844_ net/minecraft/client/Minecraft/entityModels +FD: net/minecraft/client/Minecraft/f_167845_ net/minecraft/client/Minecraft/blockEntityRenderDispatcher +FD: net/minecraft/client/Minecraft/f_167846_ net/minecraft/client/Minecraft/metricsRecorder +FD: net/minecraft/client/Minecraft/f_167847_ net/minecraft/client/Minecraft/reloadStateTracker +FD: net/minecraft/client/Minecraft/f_167848_ net/minecraft/client/Minecraft/UPDATE_DRIVERS_ADVICE +FD: net/minecraft/client/Minecraft/f_193584_ net/minecraft/client/Minecraft/userApiService +FD: net/minecraft/client/Minecraft/f_205119_ net/minecraft/client/Minecraft/REGIONAL_COMPLIANCIES +FD: net/minecraft/client/Minecraft/f_205120_ net/minecraft/client/Minecraft/regionalCompliancies +FD: net/minecraft/client/Minecraft/f_231337_ net/minecraft/client/Minecraft/profileKeyPairManager +FD: net/minecraft/client/Minecraft/f_231338_ net/minecraft/client/Minecraft/authenticationService +FD: net/minecraft/client/Minecraft/f_231340_ net/minecraft/client/Minecraft/savedCpuDuration +FD: net/minecraft/client/Minecraft/f_231341_ net/minecraft/client/Minecraft/gpuUtilization +FD: net/minecraft/client/Minecraft/f_231342_ net/minecraft/client/Minecraft/currentFrameProfile +FD: net/minecraft/client/Minecraft/f_231343_ net/minecraft/client/Minecraft/realms32BitWarningStatus +FD: net/minecraft/client/Minecraft/f_238638_ net/minecraft/client/Minecraft/reportingContext +FD: net/minecraft/client/Minecraft/f_238717_ net/minecraft/client/Minecraft/realmsDataFetcher +FD: net/minecraft/client/Minecraft/f_240365_ net/minecraft/client/Minecraft/narrator +FD: net/minecraft/client/Minecraft/f_240378_ net/minecraft/client/Minecraft/chatListener +FD: net/minecraft/client/Minecraft/f_243022_ net/minecraft/client/Minecraft/fontFilterFishy +FD: net/minecraft/client/Minecraft/f_243783_ net/minecraft/client/Minecraft/vanillaPackResources +FD: net/minecraft/client/Minecraft/f_243981_ net/minecraft/client/Minecraft/downloadedPackSource +FD: net/minecraft/client/Minecraft/f_260560_ net/minecraft/client/Minecraft/frameTimeNs +FD: net/minecraft/client/Minecraft/f_260676_ net/minecraft/client/Minecraft/telemetryManager +FD: net/minecraft/client/Minecraft/f_263699_ net/minecraft/client/Minecraft/lastInputType +FD: net/minecraft/client/Minecraft/f_278504_ net/minecraft/client/Minecraft/quickPlayLog +FD: net/minecraft/client/Minecraft/f_90977_ net/minecraft/client/Minecraft/fpsString +FD: net/minecraft/client/Minecraft/f_90978_ net/minecraft/client/Minecraft/chunkPath +FD: net/minecraft/client/Minecraft/f_90979_ net/minecraft/client/Minecraft/chunkVisibility +FD: net/minecraft/client/Minecraft/f_90980_ net/minecraft/client/Minecraft/smartCull +FD: net/minecraft/client/Minecraft/f_90981_ net/minecraft/client/Minecraft/instance +FD: net/minecraft/client/Minecraft/f_90982_ net/minecraft/client/Minecraft/LOGGER +FD: net/minecraft/client/Minecraft/f_90983_ net/minecraft/client/Minecraft/RESOURCE_RELOAD_INITIAL_TASK +FD: net/minecraft/client/Minecraft/f_90984_ net/minecraft/client/Minecraft/SOCIAL_INTERACTIONS_NOT_AVAILABLE +FD: net/minecraft/client/Minecraft/f_90985_ net/minecraft/client/Minecraft/resourcePackDirectory +FD: net/minecraft/client/Minecraft/f_90986_ net/minecraft/client/Minecraft/profileProperties +FD: net/minecraft/client/Minecraft/f_90987_ net/minecraft/client/Minecraft/textureManager +FD: net/minecraft/client/Minecraft/f_90988_ net/minecraft/client/Minecraft/fixerUpper +FD: net/minecraft/client/Minecraft/f_90989_ net/minecraft/client/Minecraft/virtualScreen +FD: net/minecraft/client/Minecraft/f_90990_ net/minecraft/client/Minecraft/window +FD: net/minecraft/client/Minecraft/f_90991_ net/minecraft/client/Minecraft/timer +FD: net/minecraft/client/Minecraft/f_90993_ net/minecraft/client/Minecraft/renderBuffers +FD: net/minecraft/client/Minecraft/f_90994_ net/minecraft/client/Minecraft/entityRenderDispatcher +FD: net/minecraft/client/Minecraft/f_90995_ net/minecraft/client/Minecraft/itemRenderer +FD: net/minecraft/client/Minecraft/f_90997_ net/minecraft/client/Minecraft/searchRegistry +FD: net/minecraft/client/Minecraft/f_90998_ net/minecraft/client/Minecraft/user +FD: net/minecraft/client/Minecraft/f_90999_ net/minecraft/client/Minecraft/progressListener +FD: net/minecraft/client/Minecraft/f_91000_ net/minecraft/client/Minecraft/hotbarManager +FD: net/minecraft/client/Minecraft/f_91001_ net/minecraft/client/Minecraft/launchedVersion +FD: net/minecraft/client/Minecraft/f_91002_ net/minecraft/client/Minecraft/ON_OSX +FD: net/minecraft/client/Minecraft/f_91003_ net/minecraft/client/Minecraft/toast +FD: net/minecraft/client/Minecraft/f_91005_ net/minecraft/client/Minecraft/tutorial +FD: net/minecraft/client/Minecraft/f_91006_ net/minecraft/client/Minecraft/playerSocialManager +FD: net/minecraft/client/Minecraft/f_91007_ net/minecraft/client/Minecraft/singleplayerServer +FD: net/minecraft/client/Minecraft/f_91009_ net/minecraft/client/Minecraft/pendingConnection +FD: net/minecraft/client/Minecraft/f_91010_ net/minecraft/client/Minecraft/isLocalServer +FD: net/minecraft/client/Minecraft/f_91011_ net/minecraft/client/Minecraft/rightClickDelay +FD: net/minecraft/client/Minecraft/f_91012_ net/minecraft/client/Minecraft/pause +FD: net/minecraft/client/Minecraft/f_91013_ net/minecraft/client/Minecraft/pausePartialTick +FD: net/minecraft/client/Minecraft/f_91014_ net/minecraft/client/Minecraft/lastNanoTime +FD: net/minecraft/client/Minecraft/f_91015_ net/minecraft/client/Minecraft/lastTime +FD: net/minecraft/client/Minecraft/f_91016_ net/minecraft/client/Minecraft/frames +FD: net/minecraft/client/Minecraft/f_91017_ net/minecraft/client/Minecraft/connectedToRealms +FD: net/minecraft/client/Minecraft/f_91018_ net/minecraft/client/Minecraft/gameThread +FD: net/minecraft/client/Minecraft/f_91019_ net/minecraft/client/Minecraft/running +FD: net/minecraft/client/Minecraft/f_91020_ net/minecraft/client/Minecraft/delayedCrash +FD: net/minecraft/client/Minecraft/f_91021_ net/minecraft/client/Minecraft/fps +FD: net/minecraft/client/Minecraft/f_91022_ net/minecraft/client/Minecraft/windowActive +FD: net/minecraft/client/Minecraft/f_91023_ net/minecraft/client/Minecraft/progressTasks +FD: net/minecraft/client/Minecraft/f_91024_ net/minecraft/client/Minecraft/pendingReload +FD: net/minecraft/client/Minecraft/f_91025_ net/minecraft/client/Minecraft/socialInteractionsToast +FD: net/minecraft/client/Minecraft/f_91026_ net/minecraft/client/Minecraft/profiler +FD: net/minecraft/client/Minecraft/f_91027_ net/minecraft/client/Minecraft/fpsPieRenderTicks +FD: net/minecraft/client/Minecraft/f_91028_ net/minecraft/client/Minecraft/fpsPieProfiler +FD: net/minecraft/client/Minecraft/f_91029_ net/minecraft/client/Minecraft/versionType +FD: net/minecraft/client/Minecraft/f_91030_ net/minecraft/client/Minecraft/proxy +FD: net/minecraft/client/Minecraft/f_91031_ net/minecraft/client/Minecraft/levelSource +FD: net/minecraft/client/Minecraft/f_91032_ net/minecraft/client/Minecraft/is64bit +FD: net/minecraft/client/Minecraft/f_91033_ net/minecraft/client/Minecraft/demo +FD: net/minecraft/client/Minecraft/f_91034_ net/minecraft/client/Minecraft/allowsMultiplayer +FD: net/minecraft/client/Minecraft/f_91035_ net/minecraft/client/Minecraft/allowsChat +FD: net/minecraft/client/Minecraft/f_91036_ net/minecraft/client/Minecraft/resourceManager +FD: net/minecraft/client/Minecraft/f_91038_ net/minecraft/client/Minecraft/resourcePackRepository +FD: net/minecraft/client/Minecraft/f_91039_ net/minecraft/client/Minecraft/languageManager +FD: net/minecraft/client/Minecraft/f_91040_ net/minecraft/client/Minecraft/blockColors +FD: net/minecraft/client/Minecraft/f_91041_ net/minecraft/client/Minecraft/itemColors +FD: net/minecraft/client/Minecraft/f_91042_ net/minecraft/client/Minecraft/mainRenderTarget +FD: net/minecraft/client/Minecraft/f_91043_ net/minecraft/client/Minecraft/soundManager +FD: net/minecraft/client/Minecraft/f_91044_ net/minecraft/client/Minecraft/musicManager +FD: net/minecraft/client/Minecraft/f_91045_ net/minecraft/client/Minecraft/fontManager +FD: net/minecraft/client/Minecraft/f_91046_ net/minecraft/client/Minecraft/splashManager +FD: net/minecraft/client/Minecraft/f_91047_ net/minecraft/client/Minecraft/gpuWarnlistManager +FD: net/minecraft/client/Minecraft/f_91048_ net/minecraft/client/Minecraft/minecraftSessionService +FD: net/minecraft/client/Minecraft/f_91050_ net/minecraft/client/Minecraft/skinManager +FD: net/minecraft/client/Minecraft/f_91051_ net/minecraft/client/Minecraft/modelManager +FD: net/minecraft/client/Minecraft/f_91052_ net/minecraft/client/Minecraft/blockRenderer +FD: net/minecraft/client/Minecraft/f_91053_ net/minecraft/client/Minecraft/paintingTextures +FD: net/minecraft/client/Minecraft/f_91054_ net/minecraft/client/Minecraft/mobEffectTextures +FD: net/minecraft/client/Minecraft/f_91055_ net/minecraft/client/Minecraft/DEFAULT_FONT +FD: net/minecraft/client/Minecraft/f_91056_ net/minecraft/client/Minecraft/fpsPieResults +FD: net/minecraft/client/Minecraft/f_91057_ net/minecraft/client/Minecraft/debugPath +FD: net/minecraft/client/Minecraft/f_91058_ net/minecraft/client/Minecraft/UNIFORM_FONT +FD: net/minecraft/client/Minecraft/f_91059_ net/minecraft/client/Minecraft/ALT_FONT +FD: net/minecraft/client/Minecraft/f_91060_ net/minecraft/client/Minecraft/levelRenderer +FD: net/minecraft/client/Minecraft/f_91061_ net/minecraft/client/Minecraft/particleEngine +FD: net/minecraft/client/Minecraft/f_91062_ net/minecraft/client/Minecraft/font +FD: net/minecraft/client/Minecraft/f_91063_ net/minecraft/client/Minecraft/gameRenderer +FD: net/minecraft/client/Minecraft/f_91064_ net/minecraft/client/Minecraft/debugRenderer +FD: net/minecraft/client/Minecraft/f_91065_ net/minecraft/client/Minecraft/gui +FD: net/minecraft/client/Minecraft/f_91066_ net/minecraft/client/Minecraft/options +FD: net/minecraft/client/Minecraft/f_91067_ net/minecraft/client/Minecraft/mouseHandler +FD: net/minecraft/client/Minecraft/f_91068_ net/minecraft/client/Minecraft/keyboardHandler +FD: net/minecraft/client/Minecraft/f_91069_ net/minecraft/client/Minecraft/gameDirectory +FD: net/minecraft/client/Minecraft/f_91070_ net/minecraft/client/Minecraft/frameTimer +FD: net/minecraft/client/Minecraft/f_91072_ net/minecraft/client/Minecraft/gameMode +FD: net/minecraft/client/Minecraft/f_91073_ net/minecraft/client/Minecraft/level +FD: net/minecraft/client/Minecraft/f_91074_ net/minecraft/client/Minecraft/player +FD: net/minecraft/client/Minecraft/f_91075_ net/minecraft/client/Minecraft/cameraEntity +FD: net/minecraft/client/Minecraft/f_91076_ net/minecraft/client/Minecraft/crosshairPickEntity +FD: net/minecraft/client/Minecraft/f_91077_ net/minecraft/client/Minecraft/hitResult +FD: net/minecraft/client/Minecraft/f_91078_ net/minecraft/client/Minecraft/missTime +FD: net/minecraft/client/Minecraft/f_91079_ net/minecraft/client/Minecraft/noRender +FD: net/minecraft/client/Minecraft/f_91080_ net/minecraft/client/Minecraft/screen +FD: net/minecraft/client/Minecraft/f_91081_ net/minecraft/client/Minecraft/overlay +FD: net/minecraft/client/Minecraft$1/f_91406_ net/minecraft/client/Minecraft$1/$SwitchMap$net$minecraft$world$phys$HitResult$Type +FD: net/minecraft/client/Minecraft$ChatStatus/$VALUES net/minecraft/client/Minecraft$ChatStatus/$VALUES +FD: net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_LAUNCHER net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_LAUNCHER +FD: net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_OPTIONS net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_OPTIONS +FD: net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_PROFILE net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_PROFILE +FD: net/minecraft/client/Minecraft$ChatStatus/ENABLED net/minecraft/client/Minecraft$ChatStatus/ENABLED +FD: net/minecraft/client/Minecraft$ChatStatus/f_168027_ net/minecraft/client/Minecraft$ChatStatus/message +FD: net/minecraft/client/Minecraft$ChatStatus/f_238170_ net/minecraft/client/Minecraft$ChatStatus/INFO_DISABLED_BY_PROFILE +FD: net/minecraft/client/MouseHandler/f_91503_ net/minecraft/client/MouseHandler/minecraft +FD: net/minecraft/client/MouseHandler/f_91504_ net/minecraft/client/MouseHandler/isLeftPressed +FD: net/minecraft/client/MouseHandler/f_91505_ net/minecraft/client/MouseHandler/isMiddlePressed +FD: net/minecraft/client/MouseHandler/f_91506_ net/minecraft/client/MouseHandler/isRightPressed +FD: net/minecraft/client/MouseHandler/f_91507_ net/minecraft/client/MouseHandler/xpos +FD: net/minecraft/client/MouseHandler/f_91508_ net/minecraft/client/MouseHandler/ypos +FD: net/minecraft/client/MouseHandler/f_91509_ net/minecraft/client/MouseHandler/fakeRightMouse +FD: net/minecraft/client/MouseHandler/f_91510_ net/minecraft/client/MouseHandler/activeButton +FD: net/minecraft/client/MouseHandler/f_91511_ net/minecraft/client/MouseHandler/ignoreFirstMove +FD: net/minecraft/client/MouseHandler/f_91512_ net/minecraft/client/MouseHandler/clickDepth +FD: net/minecraft/client/MouseHandler/f_91513_ net/minecraft/client/MouseHandler/mousePressedTime +FD: net/minecraft/client/MouseHandler/f_91514_ net/minecraft/client/MouseHandler/smoothTurnX +FD: net/minecraft/client/MouseHandler/f_91515_ net/minecraft/client/MouseHandler/smoothTurnY +FD: net/minecraft/client/MouseHandler/f_91516_ net/minecraft/client/MouseHandler/accumulatedDX +FD: net/minecraft/client/MouseHandler/f_91517_ net/minecraft/client/MouseHandler/accumulatedDY +FD: net/minecraft/client/MouseHandler/f_91518_ net/minecraft/client/MouseHandler/accumulatedScroll +FD: net/minecraft/client/MouseHandler/f_91519_ net/minecraft/client/MouseHandler/lastMouseEventTime +FD: net/minecraft/client/MouseHandler/f_91520_ net/minecraft/client/MouseHandler/mouseGrabbed +FD: net/minecraft/client/NarratorStatus/$VALUES net/minecraft/client/NarratorStatus/$VALUES +FD: net/minecraft/client/NarratorStatus/ALL net/minecraft/client/NarratorStatus/ALL +FD: net/minecraft/client/NarratorStatus/CHAT net/minecraft/client/NarratorStatus/CHAT +FD: net/minecraft/client/NarratorStatus/OFF net/minecraft/client/NarratorStatus/OFF +FD: net/minecraft/client/NarratorStatus/SYSTEM net/minecraft/client/NarratorStatus/SYSTEM +FD: net/minecraft/client/NarratorStatus/f_91608_ net/minecraft/client/NarratorStatus/BY_ID +FD: net/minecraft/client/NarratorStatus/f_91609_ net/minecraft/client/NarratorStatus/id +FD: net/minecraft/client/NarratorStatus/f_91610_ net/minecraft/client/NarratorStatus/name +FD: net/minecraft/client/OptionInstance/f_231471_ net/minecraft/client/OptionInstance/BOOLEAN_VALUES +FD: net/minecraft/client/OptionInstance/f_231472_ net/minecraft/client/OptionInstance/LOGGER +FD: net/minecraft/client/OptionInstance/f_231474_ net/minecraft/client/OptionInstance/tooltip +FD: net/minecraft/client/OptionInstance/f_231475_ net/minecraft/client/OptionInstance/toString +FD: net/minecraft/client/OptionInstance/f_231476_ net/minecraft/client/OptionInstance/values +FD: net/minecraft/client/OptionInstance/f_231477_ net/minecraft/client/OptionInstance/codec +FD: net/minecraft/client/OptionInstance/f_231478_ net/minecraft/client/OptionInstance/initialValue +FD: net/minecraft/client/OptionInstance/f_231479_ net/minecraft/client/OptionInstance/onValueUpdate +FD: net/minecraft/client/OptionInstance/f_231480_ net/minecraft/client/OptionInstance/caption +FD: net/minecraft/client/OptionInstance/f_231481_ net/minecraft/client/OptionInstance/value +FD: net/minecraft/client/OptionInstance/f_260471_ net/minecraft/client/OptionInstance/BOOLEAN_TO_STRING +FD: net/minecraft/client/OptionInstance$AltEnum/f_231557_ net/minecraft/client/OptionInstance$AltEnum/values +FD: net/minecraft/client/OptionInstance$AltEnum/f_231558_ net/minecraft/client/OptionInstance$AltEnum/altValues +FD: net/minecraft/client/OptionInstance$AltEnum/f_231559_ net/minecraft/client/OptionInstance$AltEnum/altCondition +FD: net/minecraft/client/OptionInstance$AltEnum/f_231560_ net/minecraft/client/OptionInstance$AltEnum/valueSetter +FD: net/minecraft/client/OptionInstance$AltEnum/f_231561_ net/minecraft/client/OptionInstance$AltEnum/codec +FD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_231583_ net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/minInclusive +FD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_231584_ net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/maxSupplier +FD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_276069_ net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/encodableMaxInclusive +FD: net/minecraft/client/OptionInstance$Enum/f_231625_ net/minecraft/client/OptionInstance$Enum/values +FD: net/minecraft/client/OptionInstance$Enum/f_231626_ net/minecraft/client/OptionInstance$Enum/codec +FD: net/minecraft/client/OptionInstance$IntRange/f_231639_ net/minecraft/client/OptionInstance$IntRange/minInclusive +FD: net/minecraft/client/OptionInstance$IntRange/f_231640_ net/minecraft/client/OptionInstance$IntRange/maxInclusive +FD: net/minecraft/client/OptionInstance$IntRangeBase$1/f_231666_ net/minecraft/client/OptionInstance$IntRangeBase$1/val$from +FD: net/minecraft/client/OptionInstance$IntRangeBase$1/f_231667_ net/minecraft/client/OptionInstance$IntRangeBase$1/val$to +FD: net/minecraft/client/OptionInstance$IntRangeBase$1/f_231668_ net/minecraft/client/OptionInstance$IntRangeBase$1/this$0 +FD: net/minecraft/client/OptionInstance$LazyEnum/f_231680_ net/minecraft/client/OptionInstance$LazyEnum/values +FD: net/minecraft/client/OptionInstance$LazyEnum/f_231681_ net/minecraft/client/OptionInstance$LazyEnum/validateValue +FD: net/minecraft/client/OptionInstance$LazyEnum/f_231682_ net/minecraft/client/OptionInstance$LazyEnum/codec +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_231697_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/instance +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_231698_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/values +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_256889_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/tooltipSupplier +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_260531_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/onValueChanged +FD: net/minecraft/client/OptionInstance$UnitDouble/$VALUES net/minecraft/client/OptionInstance$UnitDouble/$VALUES +FD: net/minecraft/client/OptionInstance$UnitDouble/INSTANCE net/minecraft/client/OptionInstance$UnitDouble/INSTANCE +FD: net/minecraft/client/OptionInstance$UnitDouble$1/f_231765_ net/minecraft/client/OptionInstance$UnitDouble$1/val$from +FD: net/minecraft/client/OptionInstance$UnitDouble$1/f_231766_ net/minecraft/client/OptionInstance$UnitDouble$1/val$to +FD: net/minecraft/client/OptionInstance$UnitDouble$1/f_231767_ net/minecraft/client/OptionInstance$UnitDouble$1/this$0 +FD: net/minecraft/client/Options/f_168405_ net/minecraft/client/Options/hideBundleTutorial +FD: net/minecraft/client/Options/f_168406_ net/minecraft/client/Options/RENDER_DISTANCE_TINY +FD: net/minecraft/client/Options/f_168407_ net/minecraft/client/Options/RENDER_DISTANCE_SHORT +FD: net/minecraft/client/Options/f_168408_ net/minecraft/client/Options/DEFAULT_VOLUME +FD: net/minecraft/client/Options/f_168409_ net/minecraft/client/Options/RENDER_DISTANCE_NORMAL +FD: net/minecraft/client/Options/f_168410_ net/minecraft/client/Options/RENDER_DISTANCE_FAR +FD: net/minecraft/client/Options/f_168411_ net/minecraft/client/Options/RENDER_DISTANCE_REALLY_FAR +FD: net/minecraft/client/Options/f_168412_ net/minecraft/client/Options/RENDER_DISTANCE_EXTREME +FD: net/minecraft/client/Options/f_168413_ net/minecraft/client/Options/darkMojangStudiosBackground +FD: net/minecraft/client/Options/f_193762_ net/minecraft/client/Options/allowServerListing +FD: net/minecraft/client/Options/f_193763_ net/minecraft/client/Options/showAutosaveIndicator +FD: net/minecraft/client/Options/f_193764_ net/minecraft/client/Options/soundDevice +FD: net/minecraft/client/Options/f_193765_ net/minecraft/client/Options/serverRenderDistance +FD: net/minecraft/client/Options/f_193766_ net/minecraft/client/Options/DEFAULT_SOUND_DEVICE +FD: net/minecraft/client/Options/f_193768_ net/minecraft/client/Options/simulationDistance +FD: net/minecraft/client/Options/f_193769_ net/minecraft/client/Options/prioritizeChunkUpdates +FD: net/minecraft/client/Options/f_210816_ net/minecraft/client/Options/skipRealms32bitWarning +FD: net/minecraft/client/Options/f_231785_ net/minecraft/client/Options/GRAPHICS_TOOLTIP_FANCY +FD: net/minecraft/client/Options/f_231786_ net/minecraft/client/Options/PRIORITIZE_CHUNK_TOOLTIP_NONE +FD: net/minecraft/client/Options/f_231787_ net/minecraft/client/Options/PRIORITIZE_CHUNK_TOOLTIP_PLAYER_AFFECTED +FD: net/minecraft/client/Options/f_231788_ net/minecraft/client/Options/PRIORITIZE_CHUNK_TOOLTIP_NEARBY +FD: net/minecraft/client/Options/f_231789_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_DARK_MOJANG_BACKGROUND +FD: net/minecraft/client/Options/f_231790_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_HIDE_LIGHTNING_FLASHES +FD: net/minecraft/client/Options/f_231791_ net/minecraft/client/Options/hideLightningFlash +FD: net/minecraft/client/Options/f_231792_ net/minecraft/client/Options/cloudStatus +FD: net/minecraft/client/Options/f_231793_ net/minecraft/client/Options/GRAPHICS_TOOLTIP_FAST +FD: net/minecraft/client/Options/f_231794_ net/minecraft/client/Options/GRAPHICS_TOOLTIP_FABULOUS +FD: net/minecraft/client/Options/f_231797_ net/minecraft/client/Options/CHAT_TOOLTIP_ONLY_SHOW_SECURE +FD: net/minecraft/client/Options/f_231798_ net/minecraft/client/Options/onlyShowSecureChat +FD: net/minecraft/client/Options/f_231799_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_SCREEN_EFFECT +FD: net/minecraft/client/Options/f_231800_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_FOV_EFFECT +FD: net/minecraft/client/Options/f_231801_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_DARKNESS_EFFECT +FD: net/minecraft/client/Options/f_231802_ net/minecraft/client/Options/darknessEffectScale +FD: net/minecraft/client/Options/f_231803_ net/minecraft/client/Options/narrator +FD: net/minecraft/client/Options/f_231804_ net/minecraft/client/Options/ALLOW_SERVER_LISTING_TOOLTIP +FD: net/minecraft/client/Options/f_231805_ net/minecraft/client/Options/DIRECTIONAL_AUDIO_TOOLTIP_ON +FD: net/minecraft/client/Options/f_231806_ net/minecraft/client/Options/DIRECTIONAL_AUDIO_TOOLTIP_OFF +FD: net/minecraft/client/Options/f_231807_ net/minecraft/client/Options/directionalAudio +FD: net/minecraft/client/Options/f_231808_ net/minecraft/client/Options/MOVEMENT_TOGGLE +FD: net/minecraft/client/Options/f_231809_ net/minecraft/client/Options/MOVEMENT_HOLD +FD: net/minecraft/client/Options/f_231810_ net/minecraft/client/Options/CHAT_TOOLTIP_HIDE_MATCHED_NAMES +FD: net/minecraft/client/Options/f_231811_ net/minecraft/client/Options/UNLIMITED_FRAMERATE_CUTOFF +FD: net/minecraft/client/Options/f_244402_ net/minecraft/client/Options/panoramaSpeed +FD: net/minecraft/client/Options/f_244498_ net/minecraft/client/Options/soundSourceVolumes +FD: net/minecraft/client/Options/f_256834_ net/minecraft/client/Options/operatorItemsTab +FD: net/minecraft/client/Options/f_260461_ net/minecraft/client/Options/telemetryOptInExtra +FD: net/minecraft/client/Options/f_260656_ net/minecraft/client/Options/TELEMETRY_TOOLTIP +FD: net/minecraft/client/Options/f_263718_ net/minecraft/client/Options/notificationDisplayTime +FD: net/minecraft/client/Options/f_263744_ net/minecraft/client/Options/onboardAccessibility +FD: net/minecraft/client/Options/f_263815_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_NOTIFICATION_DISPLAY_TIME +FD: net/minecraft/client/Options/f_267409_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_GLINT_SPEED +FD: net/minecraft/client/Options/f_267450_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_GLINT_STRENGTH +FD: net/minecraft/client/Options/f_267458_ net/minecraft/client/Options/glintSpeed +FD: net/minecraft/client/Options/f_267462_ net/minecraft/client/Options/glintStrength +FD: net/minecraft/client/Options/f_268427_ net/minecraft/client/Options/damageTiltStrength +FD: net/minecraft/client/Options/f_268597_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_DAMAGE_TILT_STRENGTH +FD: net/minecraft/client/Options/f_273812_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_CONTRAST_MODE +FD: net/minecraft/client/Options/f_273910_ net/minecraft/client/Options/highContrast +FD: net/minecraft/client/Options/f_276073_ net/minecraft/client/Options/MAX_GUI_SCALE_INCLUSIVE +FD: net/minecraft/client/Options/f_278127_ net/minecraft/client/Options/AUTO_GUI_SCALE +FD: net/minecraft/client/Options/f_92027_ net/minecraft/client/Options/mipmapLevels +FD: net/minecraft/client/Options/f_92028_ net/minecraft/client/Options/useNativeTransport +FD: net/minecraft/client/Options/f_92029_ net/minecraft/client/Options/attackIndicator +FD: net/minecraft/client/Options/f_92030_ net/minecraft/client/Options/tutorialStep +FD: net/minecraft/client/Options/f_92031_ net/minecraft/client/Options/joinedFirstServer +FD: net/minecraft/client/Options/f_92032_ net/minecraft/client/Options/biomeBlendRadius +FD: net/minecraft/client/Options/f_92033_ net/minecraft/client/Options/mouseWheelSensitivity +FD: net/minecraft/client/Options/f_92034_ net/minecraft/client/Options/rawMouseInput +FD: net/minecraft/client/Options/f_92035_ net/minecraft/client/Options/glDebugVerbosity +FD: net/minecraft/client/Options/f_92036_ net/minecraft/client/Options/autoJump +FD: net/minecraft/client/Options/f_92037_ net/minecraft/client/Options/autoSuggestions +FD: net/minecraft/client/Options/f_92038_ net/minecraft/client/Options/chatColors +FD: net/minecraft/client/Options/f_92039_ net/minecraft/client/Options/chatLinks +FD: net/minecraft/client/Options/f_92040_ net/minecraft/client/Options/chatLinksPrompt +FD: net/minecraft/client/Options/f_92041_ net/minecraft/client/Options/enableVsync +FD: net/minecraft/client/Options/f_92042_ net/minecraft/client/Options/entityShadows +FD: net/minecraft/client/Options/f_92043_ net/minecraft/client/Options/forceUnicodeFont +FD: net/minecraft/client/Options/f_92044_ net/minecraft/client/Options/invertYMouse +FD: net/minecraft/client/Options/f_92045_ net/minecraft/client/Options/discreteMouseScroll +FD: net/minecraft/client/Options/f_92046_ net/minecraft/client/Options/realmsNotifications +FD: net/minecraft/client/Options/f_92047_ net/minecraft/client/Options/reducedDebugInfo +FD: net/minecraft/client/Options/f_92049_ net/minecraft/client/Options/showSubtitles +FD: net/minecraft/client/Options/f_92050_ net/minecraft/client/Options/backgroundForChatOnly +FD: net/minecraft/client/Options/f_92051_ net/minecraft/client/Options/touchscreen +FD: net/minecraft/client/Options/f_92052_ net/minecraft/client/Options/fullscreen +FD: net/minecraft/client/Options/f_92053_ net/minecraft/client/Options/sensitivity +FD: net/minecraft/client/Options/f_92054_ net/minecraft/client/Options/keySpectatorOutlines +FD: net/minecraft/client/Options/f_92055_ net/minecraft/client/Options/keyAdvancements +FD: net/minecraft/client/Options/f_92056_ net/minecraft/client/Options/keyHotbarSlots +FD: net/minecraft/client/Options/f_92057_ net/minecraft/client/Options/keySaveHotbarActivator +FD: net/minecraft/client/Options/f_92058_ net/minecraft/client/Options/keyLoadHotbarActivator +FD: net/minecraft/client/Options/f_92059_ net/minecraft/client/Options/keyMappings +FD: net/minecraft/client/Options/f_92060_ net/minecraft/client/Options/minecraft +FD: net/minecraft/client/Options/f_92062_ net/minecraft/client/Options/hideGui +FD: net/minecraft/client/Options/f_92063_ net/minecraft/client/Options/renderDebug +FD: net/minecraft/client/Options/f_92064_ net/minecraft/client/Options/renderDebugCharts +FD: net/minecraft/client/Options/f_92065_ net/minecraft/client/Options/renderFpsChart +FD: net/minecraft/client/Options/f_92066_ net/minecraft/client/Options/lastMpIp +FD: net/minecraft/client/Options/f_92067_ net/minecraft/client/Options/smoothCamera +FD: net/minecraft/client/Options/f_92068_ net/minecraft/client/Options/fov +FD: net/minecraft/client/Options/f_92069_ net/minecraft/client/Options/screenEffectScale +FD: net/minecraft/client/Options/f_92070_ net/minecraft/client/Options/fovEffectScale +FD: net/minecraft/client/Options/f_92071_ net/minecraft/client/Options/gamma +FD: net/minecraft/client/Options/f_92072_ net/minecraft/client/Options/guiScale +FD: net/minecraft/client/Options/f_92073_ net/minecraft/client/Options/particles +FD: net/minecraft/client/Options/f_92075_ net/minecraft/client/Options/languageCode +FD: net/minecraft/client/Options/f_92076_ net/minecraft/client/Options/syncWrites +FD: net/minecraft/client/Options/f_92077_ net/minecraft/client/Options/LOGGER +FD: net/minecraft/client/Options/f_92078_ net/minecraft/client/Options/GSON +FD: net/minecraft/client/Options/f_92079_ net/minecraft/client/Options/RESOURCE_PACK_TYPE +FD: net/minecraft/client/Options/f_92080_ net/minecraft/client/Options/bobView +FD: net/minecraft/client/Options/f_92081_ net/minecraft/client/Options/toggleCrouch +FD: net/minecraft/client/Options/f_92082_ net/minecraft/client/Options/toggleSprint +FD: net/minecraft/client/Options/f_92083_ net/minecraft/client/Options/skipMultiplayerWarning +FD: net/minecraft/client/Options/f_92084_ net/minecraft/client/Options/hideMatchedNames +FD: net/minecraft/client/Options/f_92085_ net/minecraft/client/Options/keyUp +FD: net/minecraft/client/Options/f_92086_ net/minecraft/client/Options/keyLeft +FD: net/minecraft/client/Options/f_92087_ net/minecraft/client/Options/keyDown +FD: net/minecraft/client/Options/f_92088_ net/minecraft/client/Options/keyRight +FD: net/minecraft/client/Options/f_92089_ net/minecraft/client/Options/keyJump +FD: net/minecraft/client/Options/f_92090_ net/minecraft/client/Options/keyShift +FD: net/minecraft/client/Options/f_92091_ net/minecraft/client/Options/keySprint +FD: net/minecraft/client/Options/f_92092_ net/minecraft/client/Options/keyInventory +FD: net/minecraft/client/Options/f_92093_ net/minecraft/client/Options/keySwapOffhand +FD: net/minecraft/client/Options/f_92094_ net/minecraft/client/Options/keyDrop +FD: net/minecraft/client/Options/f_92095_ net/minecraft/client/Options/keyUse +FD: net/minecraft/client/Options/f_92096_ net/minecraft/client/Options/keyAttack +FD: net/minecraft/client/Options/f_92097_ net/minecraft/client/Options/keyPickItem +FD: net/minecraft/client/Options/f_92098_ net/minecraft/client/Options/keyChat +FD: net/minecraft/client/Options/f_92099_ net/minecraft/client/Options/keyPlayerList +FD: net/minecraft/client/Options/f_92100_ net/minecraft/client/Options/keyCommand +FD: net/minecraft/client/Options/f_92101_ net/minecraft/client/Options/keySocialInteractions +FD: net/minecraft/client/Options/f_92102_ net/minecraft/client/Options/keyScreenshot +FD: net/minecraft/client/Options/f_92103_ net/minecraft/client/Options/keyTogglePerspective +FD: net/minecraft/client/Options/f_92104_ net/minecraft/client/Options/keySmoothCamera +FD: net/minecraft/client/Options/f_92105_ net/minecraft/client/Options/keyFullscreen +FD: net/minecraft/client/Options/f_92106_ net/minecraft/client/Options/renderDistance +FD: net/minecraft/client/Options/f_92107_ net/minecraft/client/Options/OPTION_SPLITTER +FD: net/minecraft/client/Options/f_92108_ net/minecraft/client/Options/modelParts +FD: net/minecraft/client/Options/f_92110_ net/minecraft/client/Options/optionsFile +FD: net/minecraft/client/Options/f_92111_ net/minecraft/client/Options/cameraType +FD: net/minecraft/client/Options/f_92112_ net/minecraft/client/Options/entityDistanceScaling +FD: net/minecraft/client/Options/f_92113_ net/minecraft/client/Options/framerateLimit +FD: net/minecraft/client/Options/f_92115_ net/minecraft/client/Options/graphicsMode +FD: net/minecraft/client/Options/f_92116_ net/minecraft/client/Options/ambientOcclusion +FD: net/minecraft/client/Options/f_92117_ net/minecraft/client/Options/resourcePacks +FD: net/minecraft/client/Options/f_92118_ net/minecraft/client/Options/incompatibleResourcePacks +FD: net/minecraft/client/Options/f_92119_ net/minecraft/client/Options/chatVisibility +FD: net/minecraft/client/Options/f_92120_ net/minecraft/client/Options/chatOpacity +FD: net/minecraft/client/Options/f_92121_ net/minecraft/client/Options/chatLineSpacing +FD: net/minecraft/client/Options/f_92122_ net/minecraft/client/Options/textBackgroundOpacity +FD: net/minecraft/client/Options/f_92123_ net/minecraft/client/Options/fullscreenVideoModeString +FD: net/minecraft/client/Options/f_92124_ net/minecraft/client/Options/hideServerAddress +FD: net/minecraft/client/Options/f_92125_ net/minecraft/client/Options/advancedItemTooltips +FD: net/minecraft/client/Options/f_92126_ net/minecraft/client/Options/pauseOnLostFocus +FD: net/minecraft/client/Options/f_92127_ net/minecraft/client/Options/mainHand +FD: net/minecraft/client/Options/f_92128_ net/minecraft/client/Options/overrideWidth +FD: net/minecraft/client/Options/f_92129_ net/minecraft/client/Options/overrideHeight +FD: net/minecraft/client/Options/f_92131_ net/minecraft/client/Options/chatScale +FD: net/minecraft/client/Options/f_92132_ net/minecraft/client/Options/chatWidth +FD: net/minecraft/client/Options/f_92133_ net/minecraft/client/Options/chatHeightUnfocused +FD: net/minecraft/client/Options/f_92134_ net/minecraft/client/Options/chatHeightFocused +FD: net/minecraft/client/Options/f_92135_ net/minecraft/client/Options/chatDelay +FD: net/minecraft/client/Options$2/f_168453_ net/minecraft/client/Options$2/val$options +FD: net/minecraft/client/Options$2/f_168454_ net/minecraft/client/Options$2/this$0 +FD: net/minecraft/client/Options$3/f_168485_ net/minecraft/client/Options$3/val$writer +FD: net/minecraft/client/Options$3/f_168486_ net/minecraft/client/Options$3/this$0 +FD: net/minecraft/client/Options$4/f_168517_ net/minecraft/client/Options$4/$SwitchMap$net$minecraft$client$CloudStatus +FD: net/minecraft/client/Options$4/f_232141_ net/minecraft/client/Options$4/$SwitchMap$net$minecraft$client$PrioritizeChunkUpdates +FD: net/minecraft/client/Options$4/f_232142_ net/minecraft/client/Options$4/$SwitchMap$net$minecraft$client$GraphicsStatus +FD: net/minecraft/client/ParticleStatus/$VALUES net/minecraft/client/ParticleStatus/$VALUES +FD: net/minecraft/client/ParticleStatus/ALL net/minecraft/client/ParticleStatus/ALL +FD: net/minecraft/client/ParticleStatus/DECREASED net/minecraft/client/ParticleStatus/DECREASED +FD: net/minecraft/client/ParticleStatus/MINIMAL net/minecraft/client/ParticleStatus/MINIMAL +FD: net/minecraft/client/ParticleStatus/f_92185_ net/minecraft/client/ParticleStatus/BY_ID +FD: net/minecraft/client/ParticleStatus/f_92186_ net/minecraft/client/ParticleStatus/id +FD: net/minecraft/client/ParticleStatus/f_92187_ net/minecraft/client/ParticleStatus/key +FD: net/minecraft/client/PeriodicNotificationManager/f_205285_ net/minecraft/client/PeriodicNotificationManager/CODEC +FD: net/minecraft/client/PeriodicNotificationManager/f_205286_ net/minecraft/client/PeriodicNotificationManager/LOGGER +FD: net/minecraft/client/PeriodicNotificationManager/f_205287_ net/minecraft/client/PeriodicNotificationManager/notifications +FD: net/minecraft/client/PeriodicNotificationManager/f_205288_ net/minecraft/client/PeriodicNotificationManager/selector +FD: net/minecraft/client/PeriodicNotificationManager/f_205289_ net/minecraft/client/PeriodicNotificationManager/timer +FD: net/minecraft/client/PeriodicNotificationManager/f_205290_ net/minecraft/client/PeriodicNotificationManager/notificationTask +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205328_ net/minecraft/client/PeriodicNotificationManager$Notification/delay +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205329_ net/minecraft/client/PeriodicNotificationManager$Notification/period +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205330_ net/minecraft/client/PeriodicNotificationManager$Notification/title +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205331_ net/minecraft/client/PeriodicNotificationManager$Notification/message +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205345_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/minecraft +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205346_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/notifications +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205347_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/period +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205348_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/elapsed +FD: net/minecraft/client/PrioritizeChunkUpdates/$VALUES net/minecraft/client/PrioritizeChunkUpdates/$VALUES +FD: net/minecraft/client/PrioritizeChunkUpdates/NEARBY net/minecraft/client/PrioritizeChunkUpdates/NEARBY +FD: net/minecraft/client/PrioritizeChunkUpdates/NONE net/minecraft/client/PrioritizeChunkUpdates/NONE +FD: net/minecraft/client/PrioritizeChunkUpdates/PLAYER_AFFECTED net/minecraft/client/PrioritizeChunkUpdates/PLAYER_AFFECTED +FD: net/minecraft/client/PrioritizeChunkUpdates/f_193776_ net/minecraft/client/PrioritizeChunkUpdates/BY_ID +FD: net/minecraft/client/PrioritizeChunkUpdates/f_193777_ net/minecraft/client/PrioritizeChunkUpdates/id +FD: net/minecraft/client/PrioritizeChunkUpdates/f_193778_ net/minecraft/client/PrioritizeChunkUpdates/key +FD: net/minecraft/client/Realms32BitWarningStatus/f_232198_ net/minecraft/client/Realms32BitWarningStatus/LOGGER +FD: net/minecraft/client/Realms32BitWarningStatus/f_232199_ net/minecraft/client/Realms32BitWarningStatus/minecraft +FD: net/minecraft/client/Realms32BitWarningStatus/f_232200_ net/minecraft/client/Realms32BitWarningStatus/subscriptionCheck +FD: net/minecraft/client/Realms32BitWarningStatus/f_232201_ net/minecraft/client/Realms32BitWarningStatus/warningScreenShown +FD: net/minecraft/client/RecipeBookCategories/$VALUES net/minecraft/client/RecipeBookCategories/$VALUES +FD: net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_BLOCKS net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_BLOCKS +FD: net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_MISC net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_MISC +FD: net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_SEARCH net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_SEARCH +FD: net/minecraft/client/RecipeBookCategories/CAMPFIRE net/minecraft/client/RecipeBookCategories/CAMPFIRE +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_BUILDING_BLOCKS net/minecraft/client/RecipeBookCategories/CRAFTING_BUILDING_BLOCKS +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_EQUIPMENT net/minecraft/client/RecipeBookCategories/CRAFTING_EQUIPMENT +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_MISC net/minecraft/client/RecipeBookCategories/CRAFTING_MISC +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_REDSTONE net/minecraft/client/RecipeBookCategories/CRAFTING_REDSTONE +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_SEARCH net/minecraft/client/RecipeBookCategories/CRAFTING_SEARCH +FD: net/minecraft/client/RecipeBookCategories/FURNACE_BLOCKS net/minecraft/client/RecipeBookCategories/FURNACE_BLOCKS +FD: net/minecraft/client/RecipeBookCategories/FURNACE_FOOD net/minecraft/client/RecipeBookCategories/FURNACE_FOOD +FD: net/minecraft/client/RecipeBookCategories/FURNACE_MISC net/minecraft/client/RecipeBookCategories/FURNACE_MISC +FD: net/minecraft/client/RecipeBookCategories/FURNACE_SEARCH net/minecraft/client/RecipeBookCategories/FURNACE_SEARCH +FD: net/minecraft/client/RecipeBookCategories/SMITHING net/minecraft/client/RecipeBookCategories/SMITHING +FD: net/minecraft/client/RecipeBookCategories/SMOKER_FOOD net/minecraft/client/RecipeBookCategories/SMOKER_FOOD +FD: net/minecraft/client/RecipeBookCategories/SMOKER_SEARCH net/minecraft/client/RecipeBookCategories/SMOKER_SEARCH +FD: net/minecraft/client/RecipeBookCategories/STONECUTTER net/minecraft/client/RecipeBookCategories/STONECUTTER +FD: net/minecraft/client/RecipeBookCategories/UNKNOWN net/minecraft/client/RecipeBookCategories/UNKNOWN +FD: net/minecraft/client/RecipeBookCategories/f_92256_ net/minecraft/client/RecipeBookCategories/SMOKER_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92257_ net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92258_ net/minecraft/client/RecipeBookCategories/FURNACE_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92259_ net/minecraft/client/RecipeBookCategories/CRAFTING_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92260_ net/minecraft/client/RecipeBookCategories/AGGREGATE_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92261_ net/minecraft/client/RecipeBookCategories/itemIcons +FD: net/minecraft/client/RecipeBookCategories$1/f_92274_ net/minecraft/client/RecipeBookCategories$1/$SwitchMap$net$minecraft$world$inventory$RecipeBookType +FD: net/minecraft/client/ResourceLoadStateTracker/f_168551_ net/minecraft/client/ResourceLoadStateTracker/LOGGER +FD: net/minecraft/client/ResourceLoadStateTracker/f_168552_ net/minecraft/client/ResourceLoadStateTracker/reloadState +FD: net/minecraft/client/ResourceLoadStateTracker/f_168553_ net/minecraft/client/ResourceLoadStateTracker/reloadCount +FD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/f_168564_ net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/error +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/$VALUES net/minecraft/client/ResourceLoadStateTracker$ReloadReason/$VALUES +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/INITIAL net/minecraft/client/ResourceLoadStateTracker$ReloadReason/INITIAL +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/MANUAL net/minecraft/client/ResourceLoadStateTracker$ReloadReason/MANUAL +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/UNKNOWN net/minecraft/client/ResourceLoadStateTracker$ReloadReason/UNKNOWN +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/f_168573_ net/minecraft/client/ResourceLoadStateTracker$ReloadReason/name +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168584_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/reloadReason +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168585_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/packs +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168586_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/recoveryReloadInfo +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168587_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/finished +FD: net/minecraft/client/Screenshot/f_168594_ net/minecraft/client/Screenshot/rowHeight +FD: net/minecraft/client/Screenshot/f_168595_ net/minecraft/client/Screenshot/outputStream +FD: net/minecraft/client/Screenshot/f_168596_ net/minecraft/client/Screenshot/bytes +FD: net/minecraft/client/Screenshot/f_168597_ net/minecraft/client/Screenshot/width +FD: net/minecraft/client/Screenshot/f_168598_ net/minecraft/client/Screenshot/height +FD: net/minecraft/client/Screenshot/f_168599_ net/minecraft/client/Screenshot/file +FD: net/minecraft/client/Screenshot/f_260508_ net/minecraft/client/Screenshot/SCREENSHOT_DIR +FD: net/minecraft/client/Screenshot/f_92276_ net/minecraft/client/Screenshot/LOGGER +FD: net/minecraft/client/StringSplitter/f_92333_ net/minecraft/client/StringSplitter/widthProvider +FD: net/minecraft/client/StringSplitter$1/f_92436_ net/minecraft/client/StringSplitter$1/val$output +FD: net/minecraft/client/StringSplitter$1/f_92437_ net/minecraft/client/StringSplitter$1/this$0 +FD: net/minecraft/client/StringSplitter$1/f_92438_ net/minecraft/client/StringSplitter$1/collector +FD: net/minecraft/client/StringSplitter$FlatComponents/f_92445_ net/minecraft/client/StringSplitter$FlatComponents/parts +FD: net/minecraft/client/StringSplitter$FlatComponents/f_92446_ net/minecraft/client/StringSplitter$FlatComponents/flatParts +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92460_ net/minecraft/client/StringSplitter$LineBreakFinder/this$0 +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92461_ net/minecraft/client/StringSplitter$LineBreakFinder/maxWidth +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92462_ net/minecraft/client/StringSplitter$LineBreakFinder/lineBreak +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92463_ net/minecraft/client/StringSplitter$LineBreakFinder/lineBreakStyle +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92464_ net/minecraft/client/StringSplitter$LineBreakFinder/hadNonZeroWidthChar +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92465_ net/minecraft/client/StringSplitter$LineBreakFinder/width +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92466_ net/minecraft/client/StringSplitter$LineBreakFinder/lastSpace +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92467_ net/minecraft/client/StringSplitter$LineBreakFinder/lastSpaceStyle +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92468_ net/minecraft/client/StringSplitter$LineBreakFinder/nextChar +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92469_ net/minecraft/client/StringSplitter$LineBreakFinder/offset +FD: net/minecraft/client/StringSplitter$LineComponent/f_92485_ net/minecraft/client/StringSplitter$LineComponent/contents +FD: net/minecraft/client/StringSplitter$LineComponent/f_92486_ net/minecraft/client/StringSplitter$LineComponent/style +FD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/f_92503_ net/minecraft/client/StringSplitter$WidthLimitedCharSink/this$0 +FD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/f_92504_ net/minecraft/client/StringSplitter$WidthLimitedCharSink/maxWidth +FD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/f_92505_ net/minecraft/client/StringSplitter$WidthLimitedCharSink/position +FD: net/minecraft/client/Timer/f_92518_ net/minecraft/client/Timer/partialTick +FD: net/minecraft/client/Timer/f_92519_ net/minecraft/client/Timer/tickDelta +FD: net/minecraft/client/Timer/f_92520_ net/minecraft/client/Timer/lastMs +FD: net/minecraft/client/Timer/f_92521_ net/minecraft/client/Timer/msPerTick +FD: net/minecraft/client/ToggleKeyMapping/f_92527_ net/minecraft/client/ToggleKeyMapping/needsToggle +FD: net/minecraft/client/User/f_193796_ net/minecraft/client/User/xuid +FD: net/minecraft/client/User/f_193797_ net/minecraft/client/User/clientId +FD: net/minecraft/client/User/f_92535_ net/minecraft/client/User/name +FD: net/minecraft/client/User/f_92536_ net/minecraft/client/User/uuid +FD: net/minecraft/client/User/f_92537_ net/minecraft/client/User/accessToken +FD: net/minecraft/client/User/f_92538_ net/minecraft/client/User/type +FD: net/minecraft/client/User$Type/$VALUES net/minecraft/client/User$Type/$VALUES +FD: net/minecraft/client/User$Type/LEGACY net/minecraft/client/User$Type/LEGACY +FD: net/minecraft/client/User$Type/MOJANG net/minecraft/client/User$Type/MOJANG +FD: net/minecraft/client/User$Type/MSA net/minecraft/client/User$Type/MSA +FD: net/minecraft/client/User$Type/f_92551_ net/minecraft/client/User$Type/BY_NAME +FD: net/minecraft/client/User$Type/f_92552_ net/minecraft/client/User$Type/name +FD: net/minecraft/client/animation/AnimationChannel/f_232211_ net/minecraft/client/animation/AnimationChannel/target +FD: net/minecraft/client/animation/AnimationChannel/f_232212_ net/minecraft/client/animation/AnimationChannel/keyframes +FD: net/minecraft/client/animation/AnimationChannel$Interpolations/f_232229_ net/minecraft/client/animation/AnimationChannel$Interpolations/LINEAR +FD: net/minecraft/client/animation/AnimationChannel$Interpolations/f_232230_ net/minecraft/client/animation/AnimationChannel$Interpolations/CATMULLROM +FD: net/minecraft/client/animation/AnimationChannel$Targets/f_232250_ net/minecraft/client/animation/AnimationChannel$Targets/POSITION +FD: net/minecraft/client/animation/AnimationChannel$Targets/f_232251_ net/minecraft/client/animation/AnimationChannel$Targets/ROTATION +FD: net/minecraft/client/animation/AnimationChannel$Targets/f_232252_ net/minecraft/client/animation/AnimationChannel$Targets/SCALE +FD: net/minecraft/client/animation/AnimationDefinition/f_232255_ net/minecraft/client/animation/AnimationDefinition/lengthInSeconds +FD: net/minecraft/client/animation/AnimationDefinition/f_232256_ net/minecraft/client/animation/AnimationDefinition/looping +FD: net/minecraft/client/animation/AnimationDefinition/f_232257_ net/minecraft/client/animation/AnimationDefinition/boneAnimations +FD: net/minecraft/client/animation/AnimationDefinition$Builder/f_232269_ net/minecraft/client/animation/AnimationDefinition$Builder/length +FD: net/minecraft/client/animation/AnimationDefinition$Builder/f_232270_ net/minecraft/client/animation/AnimationDefinition$Builder/animationByBone +FD: net/minecraft/client/animation/AnimationDefinition$Builder/f_232271_ net/minecraft/client/animation/AnimationDefinition$Builder/looping +FD: net/minecraft/client/animation/Keyframe/f_232283_ net/minecraft/client/animation/Keyframe/timestamp +FD: net/minecraft/client/animation/Keyframe/f_232284_ net/minecraft/client/animation/Keyframe/target +FD: net/minecraft/client/animation/Keyframe/f_232285_ net/minecraft/client/animation/Keyframe/interpolation +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_243786_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_DASH +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_243801_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_SIT +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_243891_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_IDLE +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_244081_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_WALK +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_244495_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_STANDUP +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_252502_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_SIT_POSE +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232335_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_CROAK +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232336_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_WALK +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232337_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_JUMP +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232338_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_TONGUE +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232339_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_SWIM +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232340_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_IDLE_WATER +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271108_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_LONGSNIFF +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271160_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_BABY_FALL +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271223_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_HAPPY +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271269_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_SNIFF_SEARCH +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271364_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_SNIFFSNIFF +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271455_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_STAND_UP +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271495_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_DIG +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271534_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_WALK +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_278126_ net/minecraft/client/animation/definitions/SnifferAnimation/BABY_TRANSFORM +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232343_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_EMERGE +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232344_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_DIG +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232345_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_ROAR +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232346_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_SNIFF +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232347_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_ATTACK +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232348_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_SONIC_BOOM +FD: net/minecraft/client/color/block/BlockColors/f_168640_ net/minecraft/client/color/block/BlockColors/DEFAULT +FD: net/minecraft/client/color/block/BlockColors/f_92571_ net/minecraft/client/color/block/BlockColors/blockColors +FD: net/minecraft/client/color/block/BlockColors/f_92572_ net/minecraft/client/color/block/BlockColors/coloringStates +FD: net/minecraft/client/color/block/BlockTintCache/f_168641_ net/minecraft/client/color/block/BlockTintCache/MAX_CACHE_ENTRIES +FD: net/minecraft/client/color/block/BlockTintCache/f_193809_ net/minecraft/client/color/block/BlockTintCache/source +FD: net/minecraft/client/color/block/BlockTintCache/f_92650_ net/minecraft/client/color/block/BlockTintCache/latestChunkOnThread +FD: net/minecraft/client/color/block/BlockTintCache/f_92651_ net/minecraft/client/color/block/BlockTintCache/cache +FD: net/minecraft/client/color/block/BlockTintCache/f_92652_ net/minecraft/client/color/block/BlockTintCache/lock +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_193817_ net/minecraft/client/color/block/BlockTintCache$CacheData/cache +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_193818_ net/minecraft/client/color/block/BlockTintCache$CacheData/lock +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_193819_ net/minecraft/client/color/block/BlockTintCache$CacheData/BLOCKS_PER_LAYER +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_262289_ net/minecraft/client/color/block/BlockTintCache$CacheData/invalidated +FD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/f_92665_ net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/x +FD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/f_92666_ net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/z +FD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/f_92667_ net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/cache +FD: net/minecraft/client/color/item/ItemColors/f_168642_ net/minecraft/client/color/item/ItemColors/DEFAULT +FD: net/minecraft/client/color/item/ItemColors/f_92674_ net/minecraft/client/color/item/ItemColors/itemColors +FD: net/minecraft/client/gui/ComponentPath$Leaf/f_263802_ net/minecraft/client/gui/ComponentPath$Leaf/component +FD: net/minecraft/client/gui/ComponentPath$Path/f_263715_ net/minecraft/client/gui/ComponentPath$Path/component +FD: net/minecraft/client/gui/ComponentPath$Path/f_263808_ net/minecraft/client/gui/ComponentPath$Path/childPath +FD: net/minecraft/client/gui/Font/f_168643_ net/minecraft/client/gui/Font/EFFECT_DEPTH +FD: net/minecraft/client/gui/Font/f_193827_ net/minecraft/client/gui/Font/ALPHA_CUTOFF +FD: net/minecraft/client/gui/Font/f_242994_ net/minecraft/client/gui/Font/filterFishyGlyphs +FD: net/minecraft/client/gui/Font/f_92710_ net/minecraft/client/gui/Font/lineHeight +FD: net/minecraft/client/gui/Font/f_92711_ net/minecraft/client/gui/Font/random +FD: net/minecraft/client/gui/Font/f_92712_ net/minecraft/client/gui/Font/SHADOW_OFFSET +FD: net/minecraft/client/gui/Font/f_92713_ net/minecraft/client/gui/Font/fonts +FD: net/minecraft/client/gui/Font/f_92714_ net/minecraft/client/gui/Font/splitter +FD: net/minecraft/client/gui/Font$DisplayMode/$VALUES net/minecraft/client/gui/Font$DisplayMode/$VALUES +FD: net/minecraft/client/gui/Font$DisplayMode/NORMAL net/minecraft/client/gui/Font$DisplayMode/NORMAL +FD: net/minecraft/client/gui/Font$DisplayMode/POLYGON_OFFSET net/minecraft/client/gui/Font$DisplayMode/POLYGON_OFFSET +FD: net/minecraft/client/gui/Font$DisplayMode/SEE_THROUGH net/minecraft/client/gui/Font$DisplayMode/SEE_THROUGH +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_181362_ net/minecraft/client/gui/Font$StringRenderOutput/mode +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92937_ net/minecraft/client/gui/Font$StringRenderOutput/bufferSource +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92938_ net/minecraft/client/gui/Font$StringRenderOutput/this$0 +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92939_ net/minecraft/client/gui/Font$StringRenderOutput/dropShadow +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92940_ net/minecraft/client/gui/Font$StringRenderOutput/dimFactor +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92941_ net/minecraft/client/gui/Font$StringRenderOutput/r +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92942_ net/minecraft/client/gui/Font$StringRenderOutput/g +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92943_ net/minecraft/client/gui/Font$StringRenderOutput/b +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92944_ net/minecraft/client/gui/Font$StringRenderOutput/a +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92945_ net/minecraft/client/gui/Font$StringRenderOutput/pose +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92947_ net/minecraft/client/gui/Font$StringRenderOutput/packedLightCoords +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92948_ net/minecraft/client/gui/Font$StringRenderOutput/x +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92949_ net/minecraft/client/gui/Font$StringRenderOutput/y +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92950_ net/minecraft/client/gui/Font$StringRenderOutput/effects +FD: net/minecraft/client/gui/Gui/f_168664_ net/minecraft/client/gui/Gui/scopeScale +FD: net/minecraft/client/gui/Gui/f_168665_ net/minecraft/client/gui/Gui/SPYGLASS_SCOPE_LOCATION +FD: net/minecraft/client/gui/Gui/f_168666_ net/minecraft/client/gui/Gui/POWDER_SNOW_OUTLINE_LOCATION +FD: net/minecraft/client/gui/Gui/f_168667_ net/minecraft/client/gui/Gui/COLOR_WHITE +FD: net/minecraft/client/gui/Gui/f_168668_ net/minecraft/client/gui/Gui/MIN_CROSSHAIR_ATTACK_SPEED +FD: net/minecraft/client/gui/Gui/f_168669_ net/minecraft/client/gui/Gui/NUM_HEARTS_PER_ROW +FD: net/minecraft/client/gui/Gui/f_168670_ net/minecraft/client/gui/Gui/LINE_HEIGHT +FD: net/minecraft/client/gui/Gui/f_168671_ net/minecraft/client/gui/Gui/SPACER +FD: net/minecraft/client/gui/Gui/f_168672_ net/minecraft/client/gui/Gui/PORTAL_OVERLAY_ALPHA_MIN +FD: net/minecraft/client/gui/Gui/f_168673_ net/minecraft/client/gui/Gui/HEART_SIZE +FD: net/minecraft/client/gui/Gui/f_168674_ net/minecraft/client/gui/Gui/HEART_SEPARATION +FD: net/minecraft/client/gui/Gui/f_193828_ net/minecraft/client/gui/Gui/autosaveIndicatorValue +FD: net/minecraft/client/gui/Gui/f_193829_ net/minecraft/client/gui/Gui/lastAutosaveIndicatorValue +FD: net/minecraft/client/gui/Gui/f_193830_ net/minecraft/client/gui/Gui/SAVING_TEXT +FD: net/minecraft/client/gui/Gui/f_193831_ net/minecraft/client/gui/Gui/AUTOSAVE_FADE_SPEED_FACTOR +FD: net/minecraft/client/gui/Gui/f_238167_ net/minecraft/client/gui/Gui/chatDisabledByPlayerShown +FD: net/minecraft/client/gui/Gui/f_279580_ net/minecraft/client/gui/Gui/GUI_ICONS_LOCATION +FD: net/minecraft/client/gui/Gui/f_92970_ net/minecraft/client/gui/Gui/titleFadeInTime +FD: net/minecraft/client/gui/Gui/f_92971_ net/minecraft/client/gui/Gui/titleStayTime +FD: net/minecraft/client/gui/Gui/f_92972_ net/minecraft/client/gui/Gui/titleFadeOutTime +FD: net/minecraft/client/gui/Gui/f_92973_ net/minecraft/client/gui/Gui/lastHealth +FD: net/minecraft/client/gui/Gui/f_92974_ net/minecraft/client/gui/Gui/displayHealth +FD: net/minecraft/client/gui/Gui/f_92975_ net/minecraft/client/gui/Gui/lastHealthTime +FD: net/minecraft/client/gui/Gui/f_92976_ net/minecraft/client/gui/Gui/healthBlinkTime +FD: net/minecraft/client/gui/Gui/f_92977_ net/minecraft/client/gui/Gui/screenWidth +FD: net/minecraft/client/gui/Gui/f_92978_ net/minecraft/client/gui/Gui/screenHeight +FD: net/minecraft/client/gui/Gui/f_92980_ net/minecraft/client/gui/Gui/vignetteBrightness +FD: net/minecraft/client/gui/Gui/f_92981_ net/minecraft/client/gui/Gui/VIGNETTE_LOCATION +FD: net/minecraft/client/gui/Gui/f_92982_ net/minecraft/client/gui/Gui/WIDGETS_LOCATION +FD: net/minecraft/client/gui/Gui/f_92983_ net/minecraft/client/gui/Gui/PUMPKIN_BLUR_LOCATION +FD: net/minecraft/client/gui/Gui/f_92984_ net/minecraft/client/gui/Gui/DEMO_EXPIRED_TEXT +FD: net/minecraft/client/gui/Gui/f_92985_ net/minecraft/client/gui/Gui/random +FD: net/minecraft/client/gui/Gui/f_92986_ net/minecraft/client/gui/Gui/minecraft +FD: net/minecraft/client/gui/Gui/f_92987_ net/minecraft/client/gui/Gui/itemRenderer +FD: net/minecraft/client/gui/Gui/f_92988_ net/minecraft/client/gui/Gui/chat +FD: net/minecraft/client/gui/Gui/f_92989_ net/minecraft/client/gui/Gui/tickCount +FD: net/minecraft/client/gui/Gui/f_92990_ net/minecraft/client/gui/Gui/overlayMessageString +FD: net/minecraft/client/gui/Gui/f_92991_ net/minecraft/client/gui/Gui/overlayMessageTime +FD: net/minecraft/client/gui/Gui/f_92992_ net/minecraft/client/gui/Gui/animateOverlayMessageColor +FD: net/minecraft/client/gui/Gui/f_92993_ net/minecraft/client/gui/Gui/toolHighlightTimer +FD: net/minecraft/client/gui/Gui/f_92994_ net/minecraft/client/gui/Gui/lastToolHighlight +FD: net/minecraft/client/gui/Gui/f_92995_ net/minecraft/client/gui/Gui/debugScreen +FD: net/minecraft/client/gui/Gui/f_92996_ net/minecraft/client/gui/Gui/subtitleOverlay +FD: net/minecraft/client/gui/Gui/f_92997_ net/minecraft/client/gui/Gui/spectatorGui +FD: net/minecraft/client/gui/Gui/f_92998_ net/minecraft/client/gui/Gui/tabList +FD: net/minecraft/client/gui/Gui/f_92999_ net/minecraft/client/gui/Gui/bossOverlay +FD: net/minecraft/client/gui/Gui/f_93000_ net/minecraft/client/gui/Gui/titleTime +FD: net/minecraft/client/gui/Gui/f_93001_ net/minecraft/client/gui/Gui/title +FD: net/minecraft/client/gui/Gui/f_93002_ net/minecraft/client/gui/Gui/subtitle +FD: net/minecraft/client/gui/Gui$HeartType/$VALUES net/minecraft/client/gui/Gui$HeartType/$VALUES +FD: net/minecraft/client/gui/Gui$HeartType/ABSORBING net/minecraft/client/gui/Gui$HeartType/ABSORBING +FD: net/minecraft/client/gui/Gui$HeartType/CONTAINER net/minecraft/client/gui/Gui$HeartType/CONTAINER +FD: net/minecraft/client/gui/Gui$HeartType/FROZEN net/minecraft/client/gui/Gui$HeartType/FROZEN +FD: net/minecraft/client/gui/Gui$HeartType/NORMAL net/minecraft/client/gui/Gui$HeartType/NORMAL +FD: net/minecraft/client/gui/Gui$HeartType/POISIONED net/minecraft/client/gui/Gui$HeartType/POISIONED +FD: net/minecraft/client/gui/Gui$HeartType/WITHERED net/minecraft/client/gui/Gui$HeartType/WITHERED +FD: net/minecraft/client/gui/Gui$HeartType/f_168722_ net/minecraft/client/gui/Gui$HeartType/index +FD: net/minecraft/client/gui/Gui$HeartType/f_168723_ net/minecraft/client/gui/Gui$HeartType/canBlink +FD: net/minecraft/client/gui/GuiGraphics/f_279544_ net/minecraft/client/gui/GuiGraphics/minecraft +FD: net/minecraft/client/gui/GuiGraphics/f_279564_ net/minecraft/client/gui/GuiGraphics/EXTRA_SPACE_AFTER_FIRST_TOOLTIP_LINE +FD: net/minecraft/client/gui/GuiGraphics/f_279587_ net/minecraft/client/gui/GuiGraphics/scissorStack +FD: net/minecraft/client/gui/GuiGraphics/f_279612_ net/minecraft/client/gui/GuiGraphics/pose +FD: net/minecraft/client/gui/GuiGraphics/f_279627_ net/minecraft/client/gui/GuiGraphics/bufferSource +FD: net/minecraft/client/gui/GuiGraphics/f_285610_ net/minecraft/client/gui/GuiGraphics/managed +FD: net/minecraft/client/gui/GuiGraphics/f_289038_ net/minecraft/client/gui/GuiGraphics/MIN_GUI_Z +FD: net/minecraft/client/gui/GuiGraphics/f_289044_ net/minecraft/client/gui/GuiGraphics/MAX_GUI_Z +FD: net/minecraft/client/gui/GuiGraphics$ScissorStack/f_279656_ net/minecraft/client/gui/GuiGraphics$ScissorStack/stack +FD: net/minecraft/client/gui/MapRenderer/f_168763_ net/minecraft/client/gui/MapRenderer/WIDTH +FD: net/minecraft/client/gui/MapRenderer/f_168764_ net/minecraft/client/gui/MapRenderer/HEIGHT +FD: net/minecraft/client/gui/MapRenderer/f_93253_ net/minecraft/client/gui/MapRenderer/MAP_ICONS_LOCATION +FD: net/minecraft/client/gui/MapRenderer/f_93254_ net/minecraft/client/gui/MapRenderer/MAP_ICONS +FD: net/minecraft/client/gui/MapRenderer/f_93255_ net/minecraft/client/gui/MapRenderer/textureManager +FD: net/minecraft/client/gui/MapRenderer/f_93256_ net/minecraft/client/gui/MapRenderer/maps +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_182565_ net/minecraft/client/gui/MapRenderer$MapInstance/requiresUpload +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93279_ net/minecraft/client/gui/MapRenderer$MapInstance/this$0 +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93280_ net/minecraft/client/gui/MapRenderer$MapInstance/data +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93281_ net/minecraft/client/gui/MapRenderer$MapInstance/texture +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93282_ net/minecraft/client/gui/MapRenderer$MapInstance/renderType +FD: net/minecraft/client/gui/components/AbstractButton/f_273820_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/AbstractButton/f_273867_ net/minecraft/client/gui/components/AbstractButton/TEXT_MARGIN +FD: net/minecraft/client/gui/components/AbstractButton/f_273885_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/AbstractButton/f_273923_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_Y_OFFSET +FD: net/minecraft/client/gui/components/AbstractButton/f_275753_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_BORDER_X +FD: net/minecraft/client/gui/components/AbstractButton/f_275757_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_BORDER_Y +FD: net/minecraft/client/gui/components/AbstractOptionSliderButton/f_93377_ net/minecraft/client/gui/components/AbstractOptionSliderButton/options +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238564_ net/minecraft/client/gui/components/AbstractScrollWidget/scrollAmount +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238748_ net/minecraft/client/gui/components/AbstractScrollWidget/BACKGROUND_COLOR +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238777_ net/minecraft/client/gui/components/AbstractScrollWidget/INNER_PADDING +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238779_ net/minecraft/client/gui/components/AbstractScrollWidget/scrolling +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238809_ net/minecraft/client/gui/components/AbstractScrollWidget/BORDER_COLOR_FOCUSED +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238810_ net/minecraft/client/gui/components/AbstractScrollWidget/BORDER_COLOR +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_168789_ net/minecraft/client/gui/components/AbstractSelectionList/hovered +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93385_ net/minecraft/client/gui/components/AbstractSelectionList/children +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93386_ net/minecraft/client/gui/components/AbstractSelectionList/minecraft +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93387_ net/minecraft/client/gui/components/AbstractSelectionList/itemHeight +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93388_ net/minecraft/client/gui/components/AbstractSelectionList/width +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93389_ net/minecraft/client/gui/components/AbstractSelectionList/height +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93390_ net/minecraft/client/gui/components/AbstractSelectionList/y0 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93391_ net/minecraft/client/gui/components/AbstractSelectionList/y1 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93392_ net/minecraft/client/gui/components/AbstractSelectionList/x1 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93393_ net/minecraft/client/gui/components/AbstractSelectionList/x0 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93394_ net/minecraft/client/gui/components/AbstractSelectionList/centerListVertically +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93395_ net/minecraft/client/gui/components/AbstractSelectionList/headerHeight +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93396_ net/minecraft/client/gui/components/AbstractSelectionList/scrollAmount +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93397_ net/minecraft/client/gui/components/AbstractSelectionList/renderSelection +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93398_ net/minecraft/client/gui/components/AbstractSelectionList/renderHeader +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93399_ net/minecraft/client/gui/components/AbstractSelectionList/scrolling +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93400_ net/minecraft/client/gui/components/AbstractSelectionList/selected +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93401_ net/minecraft/client/gui/components/AbstractSelectionList/renderBackground +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93402_ net/minecraft/client/gui/components/AbstractSelectionList/renderTopAndBottom +FD: net/minecraft/client/gui/components/AbstractSelectionList$1/f_263843_ net/minecraft/client/gui/components/AbstractSelectionList$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/f_93521_ net/minecraft/client/gui/components/AbstractSelectionList$Entry/list +FD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/f_93549_ net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/this$0 +FD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/f_93550_ net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/delegate +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263653_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE_HALF_WIDTH +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263683_ net/minecraft/client/gui/components/AbstractSliderButton/SLIDER_LOCATION +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263685_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE_WIDTH +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263690_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE_FOCUSED +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263696_ net/minecraft/client/gui/components/AbstractSliderButton/HEIGHT +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263731_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263751_ net/minecraft/client/gui/components/AbstractSliderButton/BACKGROUND_FOCUSED +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263772_ net/minecraft/client/gui/components/AbstractSliderButton/canChangeValue +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263817_ net/minecraft/client/gui/components/AbstractSliderButton/BACKGROUND +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_273852_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_273913_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_273931_ net/minecraft/client/gui/components/AbstractSliderButton/TEXT_MARGIN +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_275750_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_BORDER_Y +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_275758_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_BORDER_X +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_93577_ net/minecraft/client/gui/components/AbstractSliderButton/value +FD: net/minecraft/client/gui/components/AbstractStringWidget/f_268558_ net/minecraft/client/gui/components/AbstractStringWidget/color +FD: net/minecraft/client/gui/components/AbstractStringWidget/f_268594_ net/minecraft/client/gui/components/AbstractStringWidget/font +FD: net/minecraft/client/gui/components/AbstractWidget/f_256816_ net/minecraft/client/gui/components/AbstractWidget/tooltip +FD: net/minecraft/client/gui/components/AbstractWidget/f_256916_ net/minecraft/client/gui/components/AbstractWidget/wasHoveredOrFocused +FD: net/minecraft/client/gui/components/AbstractWidget/f_256936_ net/minecraft/client/gui/components/AbstractWidget/tooltipMsDelay +FD: net/minecraft/client/gui/components/AbstractWidget/f_256960_ net/minecraft/client/gui/components/AbstractWidget/hoverOrFocusedStartTime +FD: net/minecraft/client/gui/components/AbstractWidget/f_267372_ net/minecraft/client/gui/components/AbstractWidget/ACCESSIBILITY_TEXTURE +FD: net/minecraft/client/gui/components/AbstractWidget/f_267443_ net/minecraft/client/gui/components/AbstractWidget/tabOrderGroup +FD: net/minecraft/client/gui/components/AbstractWidget/f_273840_ net/minecraft/client/gui/components/AbstractWidget/MIN_SCROLL_PERIOD +FD: net/minecraft/client/gui/components/AbstractWidget/f_273912_ net/minecraft/client/gui/components/AbstractWidget/PERIOD_PER_SCROLLED_PIXEL +FD: net/minecraft/client/gui/components/AbstractWidget/f_93614_ net/minecraft/client/gui/components/AbstractWidget/message +FD: net/minecraft/client/gui/components/AbstractWidget/f_93616_ net/minecraft/client/gui/components/AbstractWidget/focused +FD: net/minecraft/client/gui/components/AbstractWidget/f_93617_ net/minecraft/client/gui/components/AbstractWidget/WIDGETS_LOCATION +FD: net/minecraft/client/gui/components/AbstractWidget/f_93618_ net/minecraft/client/gui/components/AbstractWidget/width +FD: net/minecraft/client/gui/components/AbstractWidget/f_93619_ net/minecraft/client/gui/components/AbstractWidget/height +FD: net/minecraft/client/gui/components/AbstractWidget/f_93620_ net/minecraft/client/gui/components/AbstractWidget/x +FD: net/minecraft/client/gui/components/AbstractWidget/f_93621_ net/minecraft/client/gui/components/AbstractWidget/y +FD: net/minecraft/client/gui/components/AbstractWidget/f_93622_ net/minecraft/client/gui/components/AbstractWidget/isHovered +FD: net/minecraft/client/gui/components/AbstractWidget/f_93623_ net/minecraft/client/gui/components/AbstractWidget/active +FD: net/minecraft/client/gui/components/AbstractWidget/f_93624_ net/minecraft/client/gui/components/AbstractWidget/visible +FD: net/minecraft/client/gui/components/AbstractWidget/f_93625_ net/minecraft/client/gui/components/AbstractWidget/alpha +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263672_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/PADDING +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263703_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BORDER_COLOR +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263807_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BORDER_COLOR_FOCUSED +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263813_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BORDER +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263820_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BACKGROUND_COLOR +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_168805_ net/minecraft/client/gui/components/BossHealthOverlay/BAR_WIDTH +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_168806_ net/minecraft/client/gui/components/BossHealthOverlay/BAR_HEIGHT +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_168807_ net/minecraft/client/gui/components/BossHealthOverlay/OVERLAY_OFFSET +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_93697_ net/minecraft/client/gui/components/BossHealthOverlay/GUI_BARS_LOCATION +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_93698_ net/minecraft/client/gui/components/BossHealthOverlay/minecraft +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_93699_ net/minecraft/client/gui/components/BossHealthOverlay/events +FD: net/minecraft/client/gui/components/BossHealthOverlay$1/f_168808_ net/minecraft/client/gui/components/BossHealthOverlay$1/this$0 +FD: net/minecraft/client/gui/components/Button/f_238663_ net/minecraft/client/gui/components/Button/SMALL_WIDTH +FD: net/minecraft/client/gui/components/Button/f_238716_ net/minecraft/client/gui/components/Button/DEFAULT_WIDTH +FD: net/minecraft/client/gui/components/Button/f_238808_ net/minecraft/client/gui/components/Button/DEFAULT_HEIGHT +FD: net/minecraft/client/gui/components/Button/f_252416_ net/minecraft/client/gui/components/Button/createNarration +FD: net/minecraft/client/gui/components/Button/f_252438_ net/minecraft/client/gui/components/Button/DEFAULT_NARRATION +FD: net/minecraft/client/gui/components/Button/f_93717_ net/minecraft/client/gui/components/Button/onPress +FD: net/minecraft/client/gui/components/Button$Builder/f_252401_ net/minecraft/client/gui/components/Button$Builder/message +FD: net/minecraft/client/gui/components/Button$Builder/f_252431_ net/minecraft/client/gui/components/Button$Builder/createNarration +FD: net/minecraft/client/gui/components/Button$Builder/f_252447_ net/minecraft/client/gui/components/Button$Builder/height +FD: net/minecraft/client/gui/components/Button$Builder/f_252462_ net/minecraft/client/gui/components/Button$Builder/y +FD: net/minecraft/client/gui/components/Button$Builder/f_252468_ net/minecraft/client/gui/components/Button$Builder/onPress +FD: net/minecraft/client/gui/components/Button$Builder/f_252510_ net/minecraft/client/gui/components/Button$Builder/width +FD: net/minecraft/client/gui/components/Button$Builder/f_252538_ net/minecraft/client/gui/components/Button$Builder/x +FD: net/minecraft/client/gui/components/Button$Builder/f_256855_ net/minecraft/client/gui/components/Button$Builder/tooltip +FD: net/minecraft/client/gui/components/ChatComponent/f_168843_ net/minecraft/client/gui/components/ChatComponent/MAX_CHAT_HISTORY +FD: net/minecraft/client/gui/components/ChatComponent/f_240336_ net/minecraft/client/gui/components/ChatComponent/MESSAGE_NOT_FOUND +FD: net/minecraft/client/gui/components/ChatComponent/f_240337_ net/minecraft/client/gui/components/ChatComponent/MESSAGE_TAG_MARGIN_LEFT +FD: net/minecraft/client/gui/components/ChatComponent/f_240385_ net/minecraft/client/gui/components/ChatComponent/MESSAGE_INDENT +FD: net/minecraft/client/gui/components/ChatComponent/f_243892_ net/minecraft/client/gui/components/ChatComponent/TIME_BEFORE_MESSAGE_DELETION +FD: net/minecraft/client/gui/components/ChatComponent/f_244052_ net/minecraft/client/gui/components/ChatComponent/messageDeletionQueue +FD: net/minecraft/client/gui/components/ChatComponent/f_244190_ net/minecraft/client/gui/components/ChatComponent/DELETED_CHAT_MESSAGE +FD: net/minecraft/client/gui/components/ChatComponent/f_244226_ net/minecraft/client/gui/components/ChatComponent/BOTTOM_MARGIN +FD: net/minecraft/client/gui/components/ChatComponent/f_93757_ net/minecraft/client/gui/components/ChatComponent/LOGGER +FD: net/minecraft/client/gui/components/ChatComponent/f_93758_ net/minecraft/client/gui/components/ChatComponent/minecraft +FD: net/minecraft/client/gui/components/ChatComponent/f_93759_ net/minecraft/client/gui/components/ChatComponent/recentChat +FD: net/minecraft/client/gui/components/ChatComponent/f_93760_ net/minecraft/client/gui/components/ChatComponent/allMessages +FD: net/minecraft/client/gui/components/ChatComponent/f_93761_ net/minecraft/client/gui/components/ChatComponent/trimmedMessages +FD: net/minecraft/client/gui/components/ChatComponent/f_93763_ net/minecraft/client/gui/components/ChatComponent/chatScrollbarPos +FD: net/minecraft/client/gui/components/ChatComponent/f_93764_ net/minecraft/client/gui/components/ChatComponent/newMessageSinceScroll +FD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244186_ net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/signature +FD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244411_ net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/deletableAfter +FD: net/minecraft/client/gui/components/Checkbox/f_168844_ net/minecraft/client/gui/components/Checkbox/TEXT_COLOR +FD: net/minecraft/client/gui/components/Checkbox/f_93821_ net/minecraft/client/gui/components/Checkbox/TEXTURE +FD: net/minecraft/client/gui/components/Checkbox/f_93822_ net/minecraft/client/gui/components/Checkbox/selected +FD: net/minecraft/client/gui/components/Checkbox/f_93823_ net/minecraft/client/gui/components/Checkbox/showLabel +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93847_ net/minecraft/client/gui/components/CommandSuggestions/WHITESPACE_PATTERN +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93848_ net/minecraft/client/gui/components/CommandSuggestions/UNPARSED_STYLE +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93849_ net/minecraft/client/gui/components/CommandSuggestions/LITERAL_STYLE +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93850_ net/minecraft/client/gui/components/CommandSuggestions/ARGUMENT_STYLES +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93851_ net/minecraft/client/gui/components/CommandSuggestions/minecraft +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93852_ net/minecraft/client/gui/components/CommandSuggestions/screen +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93853_ net/minecraft/client/gui/components/CommandSuggestions/input +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93854_ net/minecraft/client/gui/components/CommandSuggestions/font +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93855_ net/minecraft/client/gui/components/CommandSuggestions/commandsOnly +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93856_ net/minecraft/client/gui/components/CommandSuggestions/onlyShowIfCursorPastError +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93857_ net/minecraft/client/gui/components/CommandSuggestions/lineStartOffset +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93858_ net/minecraft/client/gui/components/CommandSuggestions/suggestionLineLimit +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93859_ net/minecraft/client/gui/components/CommandSuggestions/anchorToBottom +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93860_ net/minecraft/client/gui/components/CommandSuggestions/fillColor +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93861_ net/minecraft/client/gui/components/CommandSuggestions/commandUsage +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93862_ net/minecraft/client/gui/components/CommandSuggestions/commandUsagePosition +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93863_ net/minecraft/client/gui/components/CommandSuggestions/commandUsageWidth +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93864_ net/minecraft/client/gui/components/CommandSuggestions/currentParse +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93865_ net/minecraft/client/gui/components/CommandSuggestions/pendingSuggestions +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93866_ net/minecraft/client/gui/components/CommandSuggestions/suggestions +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93867_ net/minecraft/client/gui/components/CommandSuggestions/allowSuggestions +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93868_ net/minecraft/client/gui/components/CommandSuggestions/keepSuggestions +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93946_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/this$0 +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93947_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/rect +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93948_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/originalContents +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93949_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/suggestionList +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93950_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/offset +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93951_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/current +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93952_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/lastMouse +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93953_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/tabCycles +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93954_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/lastNarratedEntry +FD: net/minecraft/client/gui/components/ComponentRenderUtils/f_93993_ net/minecraft/client/gui/components/ComponentRenderUtils/INDENT +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$1/f_263717_ net/minecraft/client/gui/components/ContainerObjectSelectionList$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/f_168853_ net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/lastNarratable +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/f_94020_ net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/focused +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/f_94021_ net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/dragging +FD: net/minecraft/client/gui/components/CycleButton/f_168856_ net/minecraft/client/gui/components/CycleButton/DEFAULT_ALT_LIST_SELECTOR +FD: net/minecraft/client/gui/components/CycleButton/f_168857_ net/minecraft/client/gui/components/CycleButton/BOOLEAN_OPTIONS +FD: net/minecraft/client/gui/components/CycleButton/f_168858_ net/minecraft/client/gui/components/CycleButton/name +FD: net/minecraft/client/gui/components/CycleButton/f_168859_ net/minecraft/client/gui/components/CycleButton/index +FD: net/minecraft/client/gui/components/CycleButton/f_168860_ net/minecraft/client/gui/components/CycleButton/value +FD: net/minecraft/client/gui/components/CycleButton/f_168861_ net/minecraft/client/gui/components/CycleButton/values +FD: net/minecraft/client/gui/components/CycleButton/f_168862_ net/minecraft/client/gui/components/CycleButton/valueStringifier +FD: net/minecraft/client/gui/components/CycleButton/f_168863_ net/minecraft/client/gui/components/CycleButton/narrationProvider +FD: net/minecraft/client/gui/components/CycleButton/f_168864_ net/minecraft/client/gui/components/CycleButton/onValueChange +FD: net/minecraft/client/gui/components/CycleButton/f_168865_ net/minecraft/client/gui/components/CycleButton/tooltipSupplier +FD: net/minecraft/client/gui/components/CycleButton/f_168866_ net/minecraft/client/gui/components/CycleButton/displayOnlyValue +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168920_ net/minecraft/client/gui/components/CycleButton$Builder/initialIndex +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168921_ net/minecraft/client/gui/components/CycleButton$Builder/initialValue +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168922_ net/minecraft/client/gui/components/CycleButton$Builder/valueStringifier +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168923_ net/minecraft/client/gui/components/CycleButton$Builder/tooltipSupplier +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168924_ net/minecraft/client/gui/components/CycleButton$Builder/narrationProvider +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168925_ net/minecraft/client/gui/components/CycleButton$Builder/values +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168926_ net/minecraft/client/gui/components/CycleButton$Builder/displayOnlyValue +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/f_168974_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/val$copy +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/f_168979_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/val$altSelector +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/f_168980_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/val$altCopy +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/f_168981_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/val$defaultCopy +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168988_ net/minecraft/client/gui/components/DebugScreenOverlay/COLOR_GREY +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168989_ net/minecraft/client/gui/components/DebugScreenOverlay/MARGIN_RIGHT +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168990_ net/minecraft/client/gui/components/DebugScreenOverlay/MARGIN_LEFT +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168991_ net/minecraft/client/gui/components/DebugScreenOverlay/MARGIN_TOP +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168992_ net/minecraft/client/gui/components/DebugScreenOverlay/RED +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168993_ net/minecraft/client/gui/components/DebugScreenOverlay/YELLOW +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168994_ net/minecraft/client/gui/components/DebugScreenOverlay/GREEN +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_232506_ net/minecraft/client/gui/components/DebugScreenOverlay/allocationRateCalculator +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94029_ net/minecraft/client/gui/components/DebugScreenOverlay/HEIGHTMAP_NAMES +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94030_ net/minecraft/client/gui/components/DebugScreenOverlay/minecraft +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94031_ net/minecraft/client/gui/components/DebugScreenOverlay/font +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94032_ net/minecraft/client/gui/components/DebugScreenOverlay/block +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94033_ net/minecraft/client/gui/components/DebugScreenOverlay/liquid +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94034_ net/minecraft/client/gui/components/DebugScreenOverlay/lastPos +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94035_ net/minecraft/client/gui/components/DebugScreenOverlay/clientChunk +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94036_ net/minecraft/client/gui/components/DebugScreenOverlay/serverChunk +FD: net/minecraft/client/gui/components/DebugScreenOverlay$1/f_94086_ net/minecraft/client/gui/components/DebugScreenOverlay$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232507_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/UPDATE_INTERVAL_MS +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232508_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/GC_MBEANS +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232509_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastTime +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232510_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastHeapUsage +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232511_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastGcCounts +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232512_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastRate +FD: net/minecraft/client/gui/components/EditBox/f_168999_ net/minecraft/client/gui/components/EditBox/BACKWARDS +FD: net/minecraft/client/gui/components/EditBox/f_169000_ net/minecraft/client/gui/components/EditBox/FORWARDS +FD: net/minecraft/client/gui/components/EditBox/f_169001_ net/minecraft/client/gui/components/EditBox/DEFAULT_TEXT_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_169002_ net/minecraft/client/gui/components/EditBox/CURSOR_INSERT_WIDTH +FD: net/minecraft/client/gui/components/EditBox/f_169003_ net/minecraft/client/gui/components/EditBox/CURSOR_INSERT_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_169004_ net/minecraft/client/gui/components/EditBox/CURSOR_APPEND_CHARACTER +FD: net/minecraft/client/gui/components/EditBox/f_169005_ net/minecraft/client/gui/components/EditBox/BORDER_COLOR_FOCUSED +FD: net/minecraft/client/gui/components/EditBox/f_169006_ net/minecraft/client/gui/components/EditBox/BORDER_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_169007_ net/minecraft/client/gui/components/EditBox/BACKGROUND_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_256828_ net/minecraft/client/gui/components/EditBox/hint +FD: net/minecraft/client/gui/components/EditBox/f_94088_ net/minecraft/client/gui/components/EditBox/suggestion +FD: net/minecraft/client/gui/components/EditBox/f_94089_ net/minecraft/client/gui/components/EditBox/responder +FD: net/minecraft/client/gui/components/EditBox/f_94090_ net/minecraft/client/gui/components/EditBox/filter +FD: net/minecraft/client/gui/components/EditBox/f_94091_ net/minecraft/client/gui/components/EditBox/formatter +FD: net/minecraft/client/gui/components/EditBox/f_94092_ net/minecraft/client/gui/components/EditBox/font +FD: net/minecraft/client/gui/components/EditBox/f_94093_ net/minecraft/client/gui/components/EditBox/value +FD: net/minecraft/client/gui/components/EditBox/f_94094_ net/minecraft/client/gui/components/EditBox/maxLength +FD: net/minecraft/client/gui/components/EditBox/f_94095_ net/minecraft/client/gui/components/EditBox/frame +FD: net/minecraft/client/gui/components/EditBox/f_94096_ net/minecraft/client/gui/components/EditBox/bordered +FD: net/minecraft/client/gui/components/EditBox/f_94097_ net/minecraft/client/gui/components/EditBox/canLoseFocus +FD: net/minecraft/client/gui/components/EditBox/f_94098_ net/minecraft/client/gui/components/EditBox/isEditable +FD: net/minecraft/client/gui/components/EditBox/f_94099_ net/minecraft/client/gui/components/EditBox/shiftPressed +FD: net/minecraft/client/gui/components/EditBox/f_94100_ net/minecraft/client/gui/components/EditBox/displayPos +FD: net/minecraft/client/gui/components/EditBox/f_94101_ net/minecraft/client/gui/components/EditBox/cursorPos +FD: net/minecraft/client/gui/components/EditBox/f_94102_ net/minecraft/client/gui/components/EditBox/highlightPos +FD: net/minecraft/client/gui/components/EditBox/f_94103_ net/minecraft/client/gui/components/EditBox/textColor +FD: net/minecraft/client/gui/components/EditBox/f_94104_ net/minecraft/client/gui/components/EditBox/textColorUneditable +FD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/f_289701_ net/minecraft/client/gui/components/FittingMultiLineTextWidget/font +FD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/f_289706_ net/minecraft/client/gui/components/FittingMultiLineTextWidget/multilineWidget +FD: net/minecraft/client/gui/components/ImageButton/f_94223_ net/minecraft/client/gui/components/ImageButton/resourceLocation +FD: net/minecraft/client/gui/components/ImageButton/f_94224_ net/minecraft/client/gui/components/ImageButton/xTexStart +FD: net/minecraft/client/gui/components/ImageButton/f_94225_ net/minecraft/client/gui/components/ImageButton/yTexStart +FD: net/minecraft/client/gui/components/ImageButton/f_94226_ net/minecraft/client/gui/components/ImageButton/yDiffTex +FD: net/minecraft/client/gui/components/ImageButton/f_94227_ net/minecraft/client/gui/components/ImageButton/textureWidth +FD: net/minecraft/client/gui/components/ImageButton/f_94228_ net/minecraft/client/gui/components/ImageButton/textureHeight +FD: net/minecraft/client/gui/components/ImageWidget/f_273859_ net/minecraft/client/gui/components/ImageWidget/imageLocation +FD: net/minecraft/client/gui/components/LerpingBossEvent/f_169019_ net/minecraft/client/gui/components/LerpingBossEvent/LERP_MILLISECONDS +FD: net/minecraft/client/gui/components/LerpingBossEvent/f_94286_ net/minecraft/client/gui/components/LerpingBossEvent/targetPercent +FD: net/minecraft/client/gui/components/LerpingBossEvent/f_94287_ net/minecraft/client/gui/components/LerpingBossEvent/setTime +FD: net/minecraft/client/gui/components/LockIconButton/f_94297_ net/minecraft/client/gui/components/LockIconButton/locked +FD: net/minecraft/client/gui/components/LockIconButton$Icon/$VALUES net/minecraft/client/gui/components/LockIconButton$Icon/$VALUES +FD: net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_DISABLED net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_DISABLED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_HOVER net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_HOVER +FD: net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_DISABLED net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_DISABLED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_HOVER net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_HOVER +FD: net/minecraft/client/gui/components/LockIconButton$Icon/f_94317_ net/minecraft/client/gui/components/LockIconButton$Icon/x +FD: net/minecraft/client/gui/components/LockIconButton$Icon/f_94318_ net/minecraft/client/gui/components/LockIconButton$Icon/y +FD: net/minecraft/client/gui/components/LogoRenderer/f_263665_ net/minecraft/client/gui/components/LogoRenderer/showEasterEgg +FD: net/minecraft/client/gui/components/LogoRenderer/f_263676_ net/minecraft/client/gui/components/LogoRenderer/DEFAULT_HEIGHT_OFFSET +FD: net/minecraft/client/gui/components/LogoRenderer/f_263708_ net/minecraft/client/gui/components/LogoRenderer/keepLogoThroughFade +FD: net/minecraft/client/gui/components/LogoRenderer/f_263712_ net/minecraft/client/gui/components/LogoRenderer/MINECRAFT_LOGO +FD: net/minecraft/client/gui/components/LogoRenderer/f_263775_ net/minecraft/client/gui/components/LogoRenderer/LOGO_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_263806_ net/minecraft/client/gui/components/LogoRenderer/MINECRAFT_EDITION +FD: net/minecraft/client/gui/components/LogoRenderer/f_263835_ net/minecraft/client/gui/components/LogoRenderer/LOGO_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278377_ net/minecraft/client/gui/components/LogoRenderer/EDITION_TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278399_ net/minecraft/client/gui/components/LogoRenderer/EDITION_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_278401_ net/minecraft/client/gui/components/LogoRenderer/EDITION_TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_278414_ net/minecraft/client/gui/components/LogoRenderer/LOGO_TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_278419_ net/minecraft/client/gui/components/LogoRenderer/EASTER_EGG_LOGO +FD: net/minecraft/client/gui/components/LogoRenderer/f_278428_ net/minecraft/client/gui/components/LogoRenderer/LOGO_TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278429_ net/minecraft/client/gui/components/LogoRenderer/EDITION_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278513_ net/minecraft/client/gui/components/LogoRenderer/EDITION_LOGO_OVERLAP +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238540_ net/minecraft/client/gui/components/MultiLineEditBox/textField +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238647_ net/minecraft/client/gui/components/MultiLineEditBox/CURSOR_APPEND_CHARACTER +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238653_ net/minecraft/client/gui/components/MultiLineEditBox/placeholder +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238688_ net/minecraft/client/gui/components/MultiLineEditBox/CURSOR_INSERT_COLOR +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238712_ net/minecraft/client/gui/components/MultiLineEditBox/TEXT_COLOR +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238758_ net/minecraft/client/gui/components/MultiLineEditBox/PLACEHOLDER_TEXT_COLOR +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238790_ net/minecraft/client/gui/components/MultiLineEditBox/font +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238824_ net/minecraft/client/gui/components/MultiLineEditBox/frame +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238826_ net/minecraft/client/gui/components/MultiLineEditBox/CURSOR_INSERT_WIDTH +FD: net/minecraft/client/gui/components/MultiLineLabel/f_94331_ net/minecraft/client/gui/components/MultiLineLabel/EMPTY +FD: net/minecraft/client/gui/components/MultiLineLabel$2/f_232519_ net/minecraft/client/gui/components/MultiLineLabel$2/width +FD: net/minecraft/client/gui/components/MultiLineLabel$2/f_94399_ net/minecraft/client/gui/components/MultiLineLabel$2/val$font +FD: net/minecraft/client/gui/components/MultiLineLabel$2/f_94400_ net/minecraft/client/gui/components/MultiLineLabel$2/val$lines +FD: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/f_94427_ net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/text +FD: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/f_94428_ net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/width +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_260670_ net/minecraft/client/gui/components/MultiLineTextWidget/centered +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_268539_ net/minecraft/client/gui/components/MultiLineTextWidget/cache +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_268603_ net/minecraft/client/gui/components/MultiLineTextWidget/maxRows +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_268685_ net/minecraft/client/gui/components/MultiLineTextWidget/maxWidth +FD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268550_ net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxRows +FD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268646_ net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxWidth +FD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268701_ net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/message +FD: net/minecraft/client/gui/components/MultilineTextField/f_238527_ net/minecraft/client/gui/components/MultilineTextField/valueListener +FD: net/minecraft/client/gui/components/MultilineTextField/f_238538_ net/minecraft/client/gui/components/MultilineTextField/font +FD: net/minecraft/client/gui/components/MultilineTextField/f_238550_ net/minecraft/client/gui/components/MultilineTextField/selectCursor +FD: net/minecraft/client/gui/components/MultilineTextField/f_238557_ net/minecraft/client/gui/components/MultilineTextField/selecting +FD: net/minecraft/client/gui/components/MultilineTextField/f_238566_ net/minecraft/client/gui/components/MultilineTextField/cursor +FD: net/minecraft/client/gui/components/MultilineTextField/f_238569_ net/minecraft/client/gui/components/MultilineTextField/characterLimit +FD: net/minecraft/client/gui/components/MultilineTextField/f_238603_ net/minecraft/client/gui/components/MultilineTextField/width +FD: net/minecraft/client/gui/components/MultilineTextField/f_238620_ net/minecraft/client/gui/components/MultilineTextField/LINE_SEEK_PIXEL_BIAS +FD: net/minecraft/client/gui/components/MultilineTextField/f_238625_ net/minecraft/client/gui/components/MultilineTextField/cursorListener +FD: net/minecraft/client/gui/components/MultilineTextField/f_238645_ net/minecraft/client/gui/components/MultilineTextField/value +FD: net/minecraft/client/gui/components/MultilineTextField/f_238667_ net/minecraft/client/gui/components/MultilineTextField/NO_CHARACTER_LIMIT +FD: net/minecraft/client/gui/components/MultilineTextField/f_238722_ net/minecraft/client/gui/components/MultilineTextField/displayLines +FD: net/minecraft/client/gui/components/MultilineTextField$1/f_238786_ net/minecraft/client/gui/components/MultilineTextField$1/$SwitchMap$net$minecraft$client$gui$components$Whence +FD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238547_ net/minecraft/client/gui/components/MultilineTextField$StringView/EMPTY +FD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238590_ net/minecraft/client/gui/components/MultilineTextField$StringView/beginIndex +FD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238654_ net/minecraft/client/gui/components/MultilineTextField$StringView/endIndex +FD: net/minecraft/client/gui/components/ObjectSelectionList/f_169039_ net/minecraft/client/gui/components/ObjectSelectionList/USAGE_NARRATION +FD: net/minecraft/client/gui/components/OptionsList$Entry/f_169045_ net/minecraft/client/gui/components/OptionsList$Entry/options +FD: net/minecraft/client/gui/components/OptionsList$Entry/f_94485_ net/minecraft/client/gui/components/OptionsList$Entry/children +FD: net/minecraft/client/gui/components/PlainTextButton/f_211751_ net/minecraft/client/gui/components/PlainTextButton/font +FD: net/minecraft/client/gui/components/PlainTextButton/f_211752_ net/minecraft/client/gui/components/PlainTextButton/message +FD: net/minecraft/client/gui/components/PlainTextButton/f_211753_ net/minecraft/client/gui/components/PlainTextButton/underlinedMessage +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238559_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_U +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238562_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_HEIGHT +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238605_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_WIDTH +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238606_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_HEIGHT +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238628_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_V +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238683_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_U +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238692_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_WIDTH +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238699_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_TEX_WIDTH +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238759_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_V +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238780_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_TEX_HEIGHT +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169049_ net/minecraft/client/gui/components/PlayerTabOverlay/MAX_ROWS_PER_COL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169050_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_EMPTY_CONTAINER +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169051_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_EMPTY_CONTAINER_BLINKING +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169052_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169053_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_HALF_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169054_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GOLDEN_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169055_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GOLDEN_HALF_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169056_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GHOST_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169057_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GHOST_HALF_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_243768_ net/minecraft/client/gui/components/PlayerTabOverlay/PLAYER_COMPARATOR +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_244278_ net/minecraft/client/gui/components/PlayerTabOverlay/healthStates +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_279565_ net/minecraft/client/gui/components/PlayerTabOverlay/GUI_ICONS_LOCATION +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94519_ net/minecraft/client/gui/components/PlayerTabOverlay/minecraft +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94520_ net/minecraft/client/gui/components/PlayerTabOverlay/gui +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94521_ net/minecraft/client/gui/components/PlayerTabOverlay/footer +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94522_ net/minecraft/client/gui/components/PlayerTabOverlay/header +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94524_ net/minecraft/client/gui/components/PlayerTabOverlay/visible +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_243756_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/INCREASE_BLINK_DURATION +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_243817_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/lastUpdateTick +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_243946_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/lastValue +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244019_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/displayedValue +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244222_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/DECREASE_BLINK_DURATION +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244325_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/DISPLAY_UPDATE_DELAY +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244517_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/blinkUntilTick +FD: net/minecraft/client/gui/components/SplashRenderer/f_279542_ net/minecraft/client/gui/components/SplashRenderer/NEW_YEAR +FD: net/minecraft/client/gui/components/SplashRenderer/f_279554_ net/minecraft/client/gui/components/SplashRenderer/CHRISTMAS +FD: net/minecraft/client/gui/components/SplashRenderer/f_279574_ net/minecraft/client/gui/components/SplashRenderer/HALLOWEEN +FD: net/minecraft/client/gui/components/SplashRenderer/f_279585_ net/minecraft/client/gui/components/SplashRenderer/WIDTH_OFFSET +FD: net/minecraft/client/gui/components/SplashRenderer/f_279597_ net/minecraft/client/gui/components/SplashRenderer/splash +FD: net/minecraft/client/gui/components/SplashRenderer/f_279658_ net/minecraft/client/gui/components/SplashRenderer/HEIGH_OFFSET +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94608_ net/minecraft/client/gui/components/StateSwitchingButton/resourceLocation +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94609_ net/minecraft/client/gui/components/StateSwitchingButton/isStateTriggered +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94610_ net/minecraft/client/gui/components/StateSwitchingButton/xTexStart +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94611_ net/minecraft/client/gui/components/StateSwitchingButton/yTexStart +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94612_ net/minecraft/client/gui/components/StateSwitchingButton/xDiffTex +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94613_ net/minecraft/client/gui/components/StateSwitchingButton/yDiffTex +FD: net/minecraft/client/gui/components/StringWidget/f_267370_ net/minecraft/client/gui/components/StringWidget/alignX +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_169070_ net/minecraft/client/gui/components/SubtitleOverlay/DISPLAY_TIME +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_94637_ net/minecraft/client/gui/components/SubtitleOverlay/minecraft +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_94638_ net/minecraft/client/gui/components/SubtitleOverlay/subtitles +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_94639_ net/minecraft/client/gui/components/SubtitleOverlay/isListening +FD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/f_94648_ net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/text +FD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/f_94649_ net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/time +FD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/f_94650_ net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/location +FD: net/minecraft/client/gui/components/TabButton/f_273822_ net/minecraft/client/gui/components/TabButton/TEXTURE_BORDER_BOTTOM +FD: net/minecraft/client/gui/components/TabButton/f_273828_ net/minecraft/client/gui/components/TabButton/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/TabButton/f_273837_ net/minecraft/client/gui/components/TabButton/tab +FD: net/minecraft/client/gui/components/TabButton/f_273844_ net/minecraft/client/gui/components/TabButton/UNDERLINE_MARGIN_BOTTOM +FD: net/minecraft/client/gui/components/TabButton/f_273861_ net/minecraft/client/gui/components/TabButton/SELECTED_OFFSET +FD: net/minecraft/client/gui/components/TabButton/f_273873_ net/minecraft/client/gui/components/TabButton/TEXT_MARGIN +FD: net/minecraft/client/gui/components/TabButton/f_273883_ net/minecraft/client/gui/components/TabButton/TEXTURE_BORDER +FD: net/minecraft/client/gui/components/TabButton/f_273884_ net/minecraft/client/gui/components/TabButton/tabManager +FD: net/minecraft/client/gui/components/TabButton/f_273895_ net/minecraft/client/gui/components/TabButton/UNDERLINE_HEIGHT +FD: net/minecraft/client/gui/components/TabButton/f_273920_ net/minecraft/client/gui/components/TabButton/TEXTURE_LOCATION +FD: net/minecraft/client/gui/components/TabButton/f_273921_ net/minecraft/client/gui/components/TabButton/UNDERLINE_MARGIN_X +FD: net/minecraft/client/gui/components/TabButton/f_273933_ net/minecraft/client/gui/components/TabButton/TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267392_ net/minecraft/client/gui/components/TextAndImageButton/xOffset +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267434_ net/minecraft/client/gui/components/TextAndImageButton/usedTextureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267436_ net/minecraft/client/gui/components/TextAndImageButton/usedTextureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267457_ net/minecraft/client/gui/components/TextAndImageButton/yOffset +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273857_ net/minecraft/client/gui/components/TextAndImageButton/yTexStart +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273871_ net/minecraft/client/gui/components/TextAndImageButton/textureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273880_ net/minecraft/client/gui/components/TextAndImageButton/textureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273904_ net/minecraft/client/gui/components/TextAndImageButton/xTexStart +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273911_ net/minecraft/client/gui/components/TextAndImageButton/yDiffTex +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273941_ net/minecraft/client/gui/components/TextAndImageButton/resourceLocation +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267364_ net/minecraft/client/gui/components/TextAndImageButton$Builder/usedTextureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267366_ net/minecraft/client/gui/components/TextAndImageButton$Builder/yTexStart +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267375_ net/minecraft/client/gui/components/TextAndImageButton$Builder/message +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267378_ net/minecraft/client/gui/components/TextAndImageButton$Builder/resourceLocation +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267387_ net/minecraft/client/gui/components/TextAndImageButton$Builder/textureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267408_ net/minecraft/client/gui/components/TextAndImageButton$Builder/usedTextureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267417_ net/minecraft/client/gui/components/TextAndImageButton$Builder/xOffset +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267427_ net/minecraft/client/gui/components/TextAndImageButton$Builder/onPress +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267430_ net/minecraft/client/gui/components/TextAndImageButton$Builder/textureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267433_ net/minecraft/client/gui/components/TextAndImageButton$Builder/yOffset +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267451_ net/minecraft/client/gui/components/TextAndImageButton$Builder/yDiffTex +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267472_ net/minecraft/client/gui/components/TextAndImageButton$Builder/xTexStart +FD: net/minecraft/client/gui/components/Tooltip/f_256766_ net/minecraft/client/gui/components/Tooltip/cachedTooltip +FD: net/minecraft/client/gui/components/Tooltip/f_256850_ net/minecraft/client/gui/components/Tooltip/message +FD: net/minecraft/client/gui/components/Tooltip/f_257004_ net/minecraft/client/gui/components/Tooltip/narration +FD: net/minecraft/client/gui/components/Tooltip/f_257026_ net/minecraft/client/gui/components/Tooltip/MAX_WIDTH +FD: net/minecraft/client/gui/components/Whence/$VALUES net/minecraft/client/gui/components/Whence/$VALUES +FD: net/minecraft/client/gui/components/Whence/ABSOLUTE net/minecraft/client/gui/components/Whence/ABSOLUTE +FD: net/minecraft/client/gui/components/Whence/END net/minecraft/client/gui/components/Whence/END +FD: net/minecraft/client/gui/components/Whence/RELATIVE net/minecraft/client/gui/components/Whence/RELATIVE +FD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/f_94673_ net/minecraft/client/gui/components/events/AbstractContainerEventHandler/focused +FD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/f_94674_ net/minecraft/client/gui/components/events/AbstractContainerEventHandler/isDragging +FD: net/minecraft/client/gui/components/events/GuiEventListener/f_212360_ net/minecraft/client/gui/components/events/GuiEventListener/DOUBLE_CLICK_THRESHOLD_MS +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_169074_ net/minecraft/client/gui/components/spectator/SpectatorGui/FADE_OUT_DELAY +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_169075_ net/minecraft/client/gui/components/spectator/SpectatorGui/FADE_OUT_TIME +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94760_ net/minecraft/client/gui/components/spectator/SpectatorGui/SPECTATOR_LOCATION +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94761_ net/minecraft/client/gui/components/spectator/SpectatorGui/WIDGETS_LOCATION +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94762_ net/minecraft/client/gui/components/spectator/SpectatorGui/minecraft +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94763_ net/minecraft/client/gui/components/spectator/SpectatorGui/lastSelectionTime +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94764_ net/minecraft/client/gui/components/spectator/SpectatorGui/menu +FD: net/minecraft/client/gui/components/tabs/GridLayoutTab/f_267367_ net/minecraft/client/gui/components/tabs/GridLayoutTab/layout +FD: net/minecraft/client/gui/components/tabs/GridLayoutTab/f_267410_ net/minecraft/client/gui/components/tabs/GridLayoutTab/title +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267400_ net/minecraft/client/gui/components/tabs/TabManager/currentTab +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267431_ net/minecraft/client/gui/components/tabs/TabManager/addWidget +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267452_ net/minecraft/client/gui/components/tabs/TabManager/removeWidget +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267478_ net/minecraft/client/gui/components/tabs/TabManager/tabArea +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267380_ net/minecraft/client/gui/components/tabs/TabNavigationBar/tabs +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267401_ net/minecraft/client/gui/components/tabs/TabNavigationBar/tabManager +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267467_ net/minecraft/client/gui/components/tabs/TabNavigationBar/width +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267495_ net/minecraft/client/gui/components/tabs/TabNavigationBar/tabButtons +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_268741_ net/minecraft/client/gui/components/tabs/TabNavigationBar/NO_TAB +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273831_ net/minecraft/client/gui/components/tabs/TabNavigationBar/HEIGHT +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273832_ net/minecraft/client/gui/components/tabs/TabNavigationBar/MAX_WIDTH +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273887_ net/minecraft/client/gui/components/tabs/TabNavigationBar/MARGIN +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273890_ net/minecraft/client/gui/components/tabs/TabNavigationBar/USAGE_NARRATION +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273942_ net/minecraft/client/gui/components/tabs/TabNavigationBar/layout +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/f_267429_ net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/width +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/f_267468_ net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/tabManager +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/f_267496_ net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/tabs +FD: net/minecraft/client/gui/components/toasts/AdvancementToast/f_263764_ net/minecraft/client/gui/components/toasts/AdvancementToast/DISPLAY_TIME +FD: net/minecraft/client/gui/components/toasts/AdvancementToast/f_94795_ net/minecraft/client/gui/components/toasts/AdvancementToast/advancement +FD: net/minecraft/client/gui/components/toasts/AdvancementToast/f_94796_ net/minecraft/client/gui/components/toasts/AdvancementToast/playedSound +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_169076_ net/minecraft/client/gui/components/toasts/RecipeToast/DISPLAY_TIME +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94803_ net/minecraft/client/gui/components/toasts/RecipeToast/TITLE_TEXT +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94804_ net/minecraft/client/gui/components/toasts/RecipeToast/DESCRIPTION_TEXT +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94805_ net/minecraft/client/gui/components/toasts/RecipeToast/recipes +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94806_ net/minecraft/client/gui/components/toasts/RecipeToast/lastChanged +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94807_ net/minecraft/client/gui/components/toasts/RecipeToast/changed +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_169078_ net/minecraft/client/gui/components/toasts/SystemToast/MAX_LINE_SIZE +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_243015_ net/minecraft/client/gui/components/toasts/SystemToast/LINE_SPACING +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_243021_ net/minecraft/client/gui/components/toasts/SystemToast/MARGIN +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94820_ net/minecraft/client/gui/components/toasts/SystemToast/id +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94821_ net/minecraft/client/gui/components/toasts/SystemToast/title +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94822_ net/minecraft/client/gui/components/toasts/SystemToast/messageLines +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94823_ net/minecraft/client/gui/components/toasts/SystemToast/lastChanged +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94824_ net/minecraft/client/gui/components/toasts/SystemToast/changed +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94825_ net/minecraft/client/gui/components/toasts/SystemToast/width +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/$VALUES net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/$VALUES +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/NARRATOR_TOGGLE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/NARRATOR_TOGGLE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_COPY_FAILURE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_COPY_FAILURE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_LOAD_FAILURE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_LOAD_FAILURE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PERIODIC_NOTIFICATION net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PERIODIC_NOTIFICATION +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/TUTORIAL_HINT net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/TUTORIAL_HINT +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/UNSECURE_SERVER_WARNING net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/UNSECURE_SERVER_WARNING +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_ACCESS_FAILURE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_ACCESS_FAILURE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_BACKUP net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_BACKUP +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/f_232547_ net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/displayTime +FD: net/minecraft/client/gui/components/toasts/Toast/f_243003_ net/minecraft/client/gui/components/toasts/Toast/SLOT_HEIGHT +FD: net/minecraft/client/gui/components/toasts/Toast/f_94893_ net/minecraft/client/gui/components/toasts/Toast/TEXTURE +FD: net/minecraft/client/gui/components/toasts/Toast/f_94894_ net/minecraft/client/gui/components/toasts/Toast/NO_TOKEN +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/$VALUES net/minecraft/client/gui/components/toasts/Toast$Visibility/$VALUES +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/HIDE net/minecraft/client/gui/components/toasts/Toast$Visibility/HIDE +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/SHOW net/minecraft/client/gui/components/toasts/Toast$Visibility/SHOW +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/f_94902_ net/minecraft/client/gui/components/toasts/Toast$Visibility/soundEvent +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_242998_ net/minecraft/client/gui/components/toasts/ToastComponent/occupiedSlots +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_243005_ net/minecraft/client/gui/components/toasts/ToastComponent/SLOT_COUNT +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_243024_ net/minecraft/client/gui/components/toasts/ToastComponent/NO_SPACE +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_94914_ net/minecraft/client/gui/components/toasts/ToastComponent/minecraft +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_94915_ net/minecraft/client/gui/components/toasts/ToastComponent/visible +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_94916_ net/minecraft/client/gui/components/toasts/ToastComponent/queued +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_169082_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/ANIMATION_TIME +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_242993_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/index +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_243000_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/slotCount +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94930_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/this$0 +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94931_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/toast +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94932_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/animationTime +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94933_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/visibleTime +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94934_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/visibility +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169083_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_WIDTH +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169084_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_HEIGHT +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169085_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_X +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169086_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_Y +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94949_ net/minecraft/client/gui/components/toasts/TutorialToast/icon +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94950_ net/minecraft/client/gui/components/toasts/TutorialToast/title +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94951_ net/minecraft/client/gui/components/toasts/TutorialToast/message +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94952_ net/minecraft/client/gui/components/toasts/TutorialToast/visibility +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94953_ net/minecraft/client/gui/components/toasts/TutorialToast/lastProgressTime +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94954_ net/minecraft/client/gui/components/toasts/TutorialToast/lastProgress +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94955_ net/minecraft/client/gui/components/toasts/TutorialToast/progress +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94956_ net/minecraft/client/gui/components/toasts/TutorialToast/progressable +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/$VALUES net/minecraft/client/gui/components/toasts/TutorialToast$Icons/$VALUES +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOUSE net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOUSE +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOVEMENT_KEYS net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOVEMENT_KEYS +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RECIPE_BOOK net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RECIPE_BOOK +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RIGHT_CLICK net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RIGHT_CLICK +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/SOCIAL_INTERACTIONS net/minecraft/client/gui/components/toasts/TutorialToast$Icons/SOCIAL_INTERACTIONS +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/TREE net/minecraft/client/gui/components/toasts/TutorialToast$Icons/TREE +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/WOODEN_PLANKS net/minecraft/client/gui/components/toasts/TutorialToast$Icons/WOODEN_PLANKS +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/f_94975_ net/minecraft/client/gui/components/toasts/TutorialToast$Icons/x +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/f_94976_ net/minecraft/client/gui/components/toasts/TutorialToast$Icons/y +FD: net/minecraft/client/gui/font/CodepointMap/f_283773_ net/minecraft/client/gui/font/CodepointMap/blockConstructor +FD: net/minecraft/client/gui/font/CodepointMap/f_283789_ net/minecraft/client/gui/font/CodepointMap/BLOCK_COUNT +FD: net/minecraft/client/gui/font/CodepointMap/f_283806_ net/minecraft/client/gui/font/CodepointMap/IN_BLOCK_MASK +FD: net/minecraft/client/gui/font/CodepointMap/f_283822_ net/minecraft/client/gui/font/CodepointMap/MAX_BLOCK +FD: net/minecraft/client/gui/font/CodepointMap/f_283858_ net/minecraft/client/gui/font/CodepointMap/BLOCK_BITS +FD: net/minecraft/client/gui/font/CodepointMap/f_283879_ net/minecraft/client/gui/font/CodepointMap/BLOCK_SIZE +FD: net/minecraft/client/gui/font/CodepointMap/f_283911_ net/minecraft/client/gui/font/CodepointMap/empty +FD: net/minecraft/client/gui/font/CodepointMap/f_283938_ net/minecraft/client/gui/font/CodepointMap/blockMap +FD: net/minecraft/client/gui/font/FontManager/f_169089_ net/minecraft/client/gui/font/FontManager/FONTS_PATH +FD: net/minecraft/client/gui/font/FontManager/f_244245_ net/minecraft/client/gui/font/FontManager/FONT_DEFINITIONS +FD: net/minecraft/client/gui/font/FontManager/f_283839_ net/minecraft/client/gui/font/FontManager/providersToClose +FD: net/minecraft/client/gui/font/FontManager/f_283881_ net/minecraft/client/gui/font/FontManager/GSON +FD: net/minecraft/client/gui/font/FontManager/f_94996_ net/minecraft/client/gui/font/FontManager/MISSING_FONT +FD: net/minecraft/client/gui/font/FontManager/f_94997_ net/minecraft/client/gui/font/FontManager/LOGGER +FD: net/minecraft/client/gui/font/FontManager/f_94998_ net/minecraft/client/gui/font/FontManager/missingFontSet +FD: net/minecraft/client/gui/font/FontManager/f_94999_ net/minecraft/client/gui/font/FontManager/fontSets +FD: net/minecraft/client/gui/font/FontManager/f_95000_ net/minecraft/client/gui/font/FontManager/textureManager +FD: net/minecraft/client/gui/font/FontManager/f_95001_ net/minecraft/client/gui/font/FontManager/renames +FD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283782_ net/minecraft/client/gui/font/FontManager$BuilderId/fontId +FD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283885_ net/minecraft/client/gui/font/FontManager$BuilderId/pack +FD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283900_ net/minecraft/client/gui/font/FontManager$BuilderId/index +FD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283838_ net/minecraft/client/gui/font/FontManager$BuilderResult/id +FD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283894_ net/minecraft/client/gui/font/FontManager$BuilderResult/result +FD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/f_285562_ net/minecraft/client/gui/font/FontManager$FontDefinitionFile/CODEC +FD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/f_285612_ net/minecraft/client/gui/font/FontManager$FontDefinitionFile/providers +FD: net/minecraft/client/gui/font/FontManager$Preparation/f_283866_ net/minecraft/client/gui/font/FontManager$Preparation/allProviders +FD: net/minecraft/client/gui/font/FontManager$Preparation/f_283921_ net/minecraft/client/gui/font/FontManager$Preparation/providers +FD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283760_ net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/fontId +FD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283826_ net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/builders +FD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283897_ net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/dependencies +FD: net/minecraft/client/gui/font/FontSet/f_242991_ net/minecraft/client/gui/font/FontSet/LARGE_FORWARD_ADVANCE +FD: net/minecraft/client/gui/font/FontSet/f_95050_ net/minecraft/client/gui/font/FontSet/RANDOM +FD: net/minecraft/client/gui/font/FontSet/f_95051_ net/minecraft/client/gui/font/FontSet/textureManager +FD: net/minecraft/client/gui/font/FontSet/f_95052_ net/minecraft/client/gui/font/FontSet/name +FD: net/minecraft/client/gui/font/FontSet/f_95053_ net/minecraft/client/gui/font/FontSet/missingGlyph +FD: net/minecraft/client/gui/font/FontSet/f_95054_ net/minecraft/client/gui/font/FontSet/whiteGlyph +FD: net/minecraft/client/gui/font/FontSet/f_95055_ net/minecraft/client/gui/font/FontSet/providers +FD: net/minecraft/client/gui/font/FontSet/f_95056_ net/minecraft/client/gui/font/FontSet/glyphs +FD: net/minecraft/client/gui/font/FontSet/f_95057_ net/minecraft/client/gui/font/FontSet/glyphInfos +FD: net/minecraft/client/gui/font/FontSet/f_95058_ net/minecraft/client/gui/font/FontSet/glyphsByWidth +FD: net/minecraft/client/gui/font/FontSet/f_95059_ net/minecraft/client/gui/font/FontSet/textures +FD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243006_ net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfoNotFishy +FD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243013_ net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfo +FD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243023_ net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/MISSING +FD: net/minecraft/client/gui/font/FontTexture/f_169092_ net/minecraft/client/gui/font/FontTexture/SIZE +FD: net/minecraft/client/gui/font/FontTexture/f_283837_ net/minecraft/client/gui/font/FontTexture/renderTypes +FD: net/minecraft/client/gui/font/FontTexture/f_95094_ net/minecraft/client/gui/font/FontTexture/colored +FD: net/minecraft/client/gui/font/FontTexture/f_95095_ net/minecraft/client/gui/font/FontTexture/root +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95105_ net/minecraft/client/gui/font/FontTexture$Node/x +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95106_ net/minecraft/client/gui/font/FontTexture$Node/y +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95107_ net/minecraft/client/gui/font/FontTexture$Node/width +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95108_ net/minecraft/client/gui/font/FontTexture$Node/height +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95109_ net/minecraft/client/gui/font/FontTexture$Node/left +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95110_ net/minecraft/client/gui/font/FontTexture$Node/right +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95111_ net/minecraft/client/gui/font/FontTexture$Node/occupied +FD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283751_ net/minecraft/client/gui/font/GlyphRenderTypes/polygonOffset +FD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283780_ net/minecraft/client/gui/font/GlyphRenderTypes/normal +FD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283831_ net/minecraft/client/gui/font/GlyphRenderTypes/seeThrough +FD: net/minecraft/client/gui/font/GlyphRenderTypes$1/f_283946_ net/minecraft/client/gui/font/GlyphRenderTypes$1/$SwitchMap$net$minecraft$client$gui$Font$DisplayMode +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95129_ net/minecraft/client/gui/font/TextFieldHelper/getMessageFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95130_ net/minecraft/client/gui/font/TextFieldHelper/setMessageFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95131_ net/minecraft/client/gui/font/TextFieldHelper/getClipboardFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95132_ net/minecraft/client/gui/font/TextFieldHelper/setClipboardFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95133_ net/minecraft/client/gui/font/TextFieldHelper/stringValidator +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95134_ net/minecraft/client/gui/font/TextFieldHelper/cursorPos +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95135_ net/minecraft/client/gui/font/TextFieldHelper/selectionPos +FD: net/minecraft/client/gui/font/TextFieldHelper$1/f_232581_ net/minecraft/client/gui/font/TextFieldHelper$1/$SwitchMap$net$minecraft$client$gui$font$TextFieldHelper$CursorStep +FD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/$VALUES net/minecraft/client/gui/font/TextFieldHelper$CursorStep/$VALUES +FD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/CHARACTER net/minecraft/client/gui/font/TextFieldHelper$CursorStep/CHARACTER +FD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/WORD net/minecraft/client/gui/font/TextFieldHelper$CursorStep/WORD +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_283799_ net/minecraft/client/gui/font/glyphs/BakedGlyph/renderTypes +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95201_ net/minecraft/client/gui/font/glyphs/BakedGlyph/u0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95202_ net/minecraft/client/gui/font/glyphs/BakedGlyph/u1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95203_ net/minecraft/client/gui/font/glyphs/BakedGlyph/v0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95204_ net/minecraft/client/gui/font/glyphs/BakedGlyph/v1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95205_ net/minecraft/client/gui/font/glyphs/BakedGlyph/left +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95206_ net/minecraft/client/gui/font/glyphs/BakedGlyph/right +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95207_ net/minecraft/client/gui/font/glyphs/BakedGlyph/up +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95208_ net/minecraft/client/gui/font/glyphs/BakedGlyph/down +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95237_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/x0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95238_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/y0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95239_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/x1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95240_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/y1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95241_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/depth +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95242_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/r +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95243_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/g +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95244_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/b +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95245_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/a +FD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/f_232594_ net/minecraft/client/gui/font/glyphs/EmptyGlyph/INSTANCE +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/$VALUES net/minecraft/client/gui/font/glyphs/SpecialGlyphs/$VALUES +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/MISSING net/minecraft/client/gui/font/glyphs/SpecialGlyphs/MISSING +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/WHITE net/minecraft/client/gui/font/glyphs/SpecialGlyphs/WHITE +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/f_232598_ net/minecraft/client/gui/font/glyphs/SpecialGlyphs/image +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/f_232624_ net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/this$0 +FD: net/minecraft/client/gui/font/providers/BitmapProvider/f_95328_ net/minecraft/client/gui/font/providers/BitmapProvider/LOGGER +FD: net/minecraft/client/gui/font/providers/BitmapProvider/f_95329_ net/minecraft/client/gui/font/providers/BitmapProvider/image +FD: net/minecraft/client/gui/font/providers/BitmapProvider/f_95330_ net/minecraft/client/gui/font/providers/BitmapProvider/glyphs +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285577_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ascent +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285599_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/CODEPOINT_GRID_CODEC +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285606_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/CODEC +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285611_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/codepointGrid +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285631_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/file +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285660_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/height +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95363_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/scale +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95364_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/image +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95365_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetX +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95366_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetY +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95367_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/width +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95368_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/height +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95369_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/advance +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95370_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ascent +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/f_232653_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/this$0 +FD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/f_285650_ net/minecraft/client/gui/font/providers/GlyphProviderDefinition/CODEC +FD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/f_285563_ net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/id +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/$VALUES net/minecraft/client/gui/font/providers/GlyphProviderType/$VALUES +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/BITMAP net/minecraft/client/gui/font/providers/GlyphProviderType/BITMAP +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/REFERENCE net/minecraft/client/gui/font/providers/GlyphProviderType/REFERENCE +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/SPACE net/minecraft/client/gui/font/providers/GlyphProviderType/SPACE +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/TTF net/minecraft/client/gui/font/providers/GlyphProviderType/TTF +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/UNIHEX net/minecraft/client/gui/font/providers/GlyphProviderType/UNIHEX +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/f_285583_ net/minecraft/client/gui/font/providers/GlyphProviderType/codec +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/f_285607_ net/minecraft/client/gui/font/providers/GlyphProviderType/CODEC +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/f_285630_ net/minecraft/client/gui/font/providers/GlyphProviderType/name +FD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/f_285571_ net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/id +FD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/f_285617_ net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/CODEC +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285564_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/location +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285576_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/oversample +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285584_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/shift +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285590_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/size +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285645_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/CODEC +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285652_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/SKIP_LIST_CODEC +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285657_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/skip +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285596_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/x +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285597_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/y +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285613_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/NONE +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285647_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283764_ net/minecraft/client/gui/font/providers/UnihexProvider/LOGGER +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283800_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_24 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283802_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_PER_BYTE +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283803_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_8 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283867_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_32 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283901_ net/minecraft/client/gui/font/providers/UnihexProvider/glyphs +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283929_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_16 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283936_ net/minecraft/client/gui/font/providers/UnihexProvider/GLYPH_HEIGHT +FD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/f_283836_ net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/contents +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/f_285560_ net/minecraft/client/gui/font/providers/UnihexProvider$Definition/hexFile +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/f_285591_ net/minecraft/client/gui/font/providers/UnihexProvider$Definition/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/f_285626_ net/minecraft/client/gui/font/providers/UnihexProvider$Definition/sizeOverrides +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283768_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/left +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283776_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/right +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283777_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/MAP_CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283924_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283848_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/right +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283857_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/contents +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283887_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/left +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/f_283899_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/this$0 +FD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283738_ net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/contents +FD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283787_ net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/bitWidth +FD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283925_ net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/SIZE_24 +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283797_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/from +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283834_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/RAW_CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283851_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/to +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283891_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/dimensions +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283923_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/f_283874_ net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/contents +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263674_ net/minecraft/client/gui/layouts/AbstractLayout/width +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263818_ net/minecraft/client/gui/layouts/AbstractLayout/height +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263829_ net/minecraft/client/gui/layouts/AbstractLayout/x +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263844_ net/minecraft/client/gui/layouts/AbstractLayout/y +FD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/f_263678_ net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/layoutSettings +FD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/f_263728_ net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/child +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263739_ net/minecraft/client/gui/layouts/FrameLayout/defaultChildLayoutSettings +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263788_ net/minecraft/client/gui/layouts/FrameLayout/children +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263810_ net/minecraft/client/gui/layouts/FrameLayout/minHeight +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263834_ net/minecraft/client/gui/layouts/FrameLayout/minWidth +FD: net/minecraft/client/gui/layouts/GridLayout/f_263660_ net/minecraft/client/gui/layouts/GridLayout/cellInhabitants +FD: net/minecraft/client/gui/layouts/GridLayout/f_263670_ net/minecraft/client/gui/layouts/GridLayout/children +FD: net/minecraft/client/gui/layouts/GridLayout/f_263692_ net/minecraft/client/gui/layouts/GridLayout/defaultCellSettings +FD: net/minecraft/client/gui/layouts/GridLayout/f_267432_ net/minecraft/client/gui/layouts/GridLayout/rowSpacing +FD: net/minecraft/client/gui/layouts/GridLayout/f_267488_ net/minecraft/client/gui/layouts/GridLayout/columnSpacing +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263652_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/row +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263773_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/occupiedColumns +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263786_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/occupiedRows +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263837_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/column +FD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/f_263661_ net/minecraft/client/gui/layouts/GridLayout$RowHelper/index +FD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/f_263722_ net/minecraft/client/gui/layouts/GridLayout$RowHelper/columns +FD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/f_263754_ net/minecraft/client/gui/layouts/GridLayout$RowHelper/this$0 +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268466_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/contentsFrame +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268474_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/DEFAULT_HEADER_AND_FOOTER_HEIGHT +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268509_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/headerHeight +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268592_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/footerFrame +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268680_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/footerHeight +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268706_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/screen +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268720_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/headerFrame +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_276136_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/DEFAULT_CONTENT_MARGIN_TOP +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263651_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingBottom +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263656_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingLeft +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263738_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingTop +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263758_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/xAlignment +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263809_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/yAlignment +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263822_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingRight +FD: net/minecraft/client/gui/layouts/LinearLayout/f_263650_ net/minecraft/client/gui/layouts/LinearLayout/orientation +FD: net/minecraft/client/gui/layouts/LinearLayout/f_263686_ net/minecraft/client/gui/layouts/LinearLayout/defaultChildLayoutSettings +FD: net/minecraft/client/gui/layouts/LinearLayout/f_263711_ net/minecraft/client/gui/layouts/LinearLayout/children +FD: net/minecraft/client/gui/layouts/LinearLayout$1/f_263841_ net/minecraft/client/gui/layouts/LinearLayout$1/$SwitchMap$net$minecraft$client$gui$layouts$LinearLayout$Orientation +FD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/$VALUES net/minecraft/client/gui/layouts/LinearLayout$Orientation/$VALUES +FD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/HORIZONTAL net/minecraft/client/gui/layouts/LinearLayout$Orientation/HORIZONTAL +FD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/VERTICAL net/minecraft/client/gui/layouts/LinearLayout$Orientation/VERTICAL +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263666_ net/minecraft/client/gui/layouts/SpacerElement/height +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263668_ net/minecraft/client/gui/layouts/SpacerElement/x +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263679_ net/minecraft/client/gui/layouts/SpacerElement/width +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263726_ net/minecraft/client/gui/layouts/SpacerElement/y +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/$VALUES net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/$VALUES +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/FOCUSED net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/FOCUSED +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/HOVERED net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/HOVERED +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/NONE net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/NONE +FD: net/minecraft/client/gui/narration/NarratedElementType/$VALUES net/minecraft/client/gui/narration/NarratedElementType/$VALUES +FD: net/minecraft/client/gui/narration/NarratedElementType/HINT net/minecraft/client/gui/narration/NarratedElementType/HINT +FD: net/minecraft/client/gui/narration/NarratedElementType/POSITION net/minecraft/client/gui/narration/NarratedElementType/POSITION +FD: net/minecraft/client/gui/narration/NarratedElementType/TITLE net/minecraft/client/gui/narration/NarratedElementType/TITLE +FD: net/minecraft/client/gui/narration/NarratedElementType/USAGE net/minecraft/client/gui/narration/NarratedElementType/USAGE +FD: net/minecraft/client/gui/narration/NarrationThunk/f_169153_ net/minecraft/client/gui/narration/NarrationThunk/EMPTY +FD: net/minecraft/client/gui/narration/NarrationThunk/f_169154_ net/minecraft/client/gui/narration/NarrationThunk/contents +FD: net/minecraft/client/gui/narration/NarrationThunk/f_169155_ net/minecraft/client/gui/narration/NarrationThunk/converter +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector/f_169181_ net/minecraft/client/gui/narration/ScreenNarrationCollector/generation +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector/f_169182_ net/minecraft/client/gui/narration/ScreenNarrationCollector/entries +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/f_169197_ net/minecraft/client/gui/narration/ScreenNarrationCollector$1/val$result +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/f_169198_ net/minecraft/client/gui/narration/ScreenNarrationCollector$1/this$0 +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/f_169199_ net/minecraft/client/gui/narration/ScreenNarrationCollector$1/firstEntry +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/f_169207_ net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/type +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/f_169208_ net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/depth +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/f_169212_ net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/contents +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/f_169213_ net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/generation +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/f_169214_ net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/alreadyNarrated +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/f_169219_ net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/this$0 +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/f_169220_ net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/depth +FD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/f_263812_ net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/direction +FD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/f_263782_ net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/forward +FD: net/minecraft/client/gui/navigation/ScreenAxis/$VALUES net/minecraft/client/gui/navigation/ScreenAxis/$VALUES +FD: net/minecraft/client/gui/navigation/ScreenAxis/HORIZONTAL net/minecraft/client/gui/navigation/ScreenAxis/HORIZONTAL +FD: net/minecraft/client/gui/navigation/ScreenAxis/VERTICAL net/minecraft/client/gui/navigation/ScreenAxis/VERTICAL +FD: net/minecraft/client/gui/navigation/ScreenAxis$1/f_263669_ net/minecraft/client/gui/navigation/ScreenAxis$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenAxis +FD: net/minecraft/client/gui/navigation/ScreenDirection/$VALUES net/minecraft/client/gui/navigation/ScreenDirection/$VALUES +FD: net/minecraft/client/gui/navigation/ScreenDirection/DOWN net/minecraft/client/gui/navigation/ScreenDirection/DOWN +FD: net/minecraft/client/gui/navigation/ScreenDirection/LEFT net/minecraft/client/gui/navigation/ScreenDirection/LEFT +FD: net/minecraft/client/gui/navigation/ScreenDirection/RIGHT net/minecraft/client/gui/navigation/ScreenDirection/RIGHT +FD: net/minecraft/client/gui/navigation/ScreenDirection/UP net/minecraft/client/gui/navigation/ScreenDirection/UP +FD: net/minecraft/client/gui/navigation/ScreenDirection/f_263848_ net/minecraft/client/gui/navigation/ScreenDirection/coordinateValueComparator +FD: net/minecraft/client/gui/navigation/ScreenDirection$1/f_263734_ net/minecraft/client/gui/navigation/ScreenDirection$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/navigation/ScreenPosition/f_263694_ net/minecraft/client/gui/navigation/ScreenPosition/y +FD: net/minecraft/client/gui/navigation/ScreenPosition/f_263719_ net/minecraft/client/gui/navigation/ScreenPosition/x +FD: net/minecraft/client/gui/navigation/ScreenPosition$1/f_263709_ net/minecraft/client/gui/navigation/ScreenPosition$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenAxis +FD: net/minecraft/client/gui/navigation/ScreenPosition$1/f_263713_ net/minecraft/client/gui/navigation/ScreenPosition$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263720_ net/minecraft/client/gui/navigation/ScreenRectangle/EMPTY +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263770_ net/minecraft/client/gui/navigation/ScreenRectangle/width +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263800_ net/minecraft/client/gui/navigation/ScreenRectangle/height +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263846_ net/minecraft/client/gui/navigation/ScreenRectangle/position +FD: net/minecraft/client/gui/navigation/ScreenRectangle$1/f_263804_ net/minecraft/client/gui/navigation/ScreenRectangle$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenAxis +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263677_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/timer +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263729_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/hasNarrated +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263756_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/TITLE_PADDING +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263759_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/textWidget +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263761_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/logoRenderer +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263779_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/PADDING +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263816_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/options +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263845_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ONBOARDING_NARRATOR_MESSAGE +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263849_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/panorama +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_265927_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/narratorAvailable +FD: net/minecraft/client/gui/screens/AlertScreen/f_238618_ net/minecraft/client/gui/screens/AlertScreen/messageText +FD: net/minecraft/client/gui/screens/AlertScreen/f_238636_ net/minecraft/client/gui/screens/AlertScreen/LABEL_Y +FD: net/minecraft/client/gui/screens/AlertScreen/f_238724_ net/minecraft/client/gui/screens/AlertScreen/shouldCloseOnEsc +FD: net/minecraft/client/gui/screens/AlertScreen/f_95514_ net/minecraft/client/gui/screens/AlertScreen/okButton +FD: net/minecraft/client/gui/screens/AlertScreen/f_95515_ net/minecraft/client/gui/screens/AlertScreen/callback +FD: net/minecraft/client/gui/screens/AlertScreen/f_95516_ net/minecraft/client/gui/screens/AlertScreen/message +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_169233_ net/minecraft/client/gui/screens/BackupConfirmScreen/id +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95536_ net/minecraft/client/gui/screens/BackupConfirmScreen/listener +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95537_ net/minecraft/client/gui/screens/BackupConfirmScreen/lastScreen +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95538_ net/minecraft/client/gui/screens/BackupConfirmScreen/description +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95539_ net/minecraft/client/gui/screens/BackupConfirmScreen/promptForCacheErase +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95540_ net/minecraft/client/gui/screens/BackupConfirmScreen/message +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95541_ net/minecraft/client/gui/screens/BackupConfirmScreen/eraseCache +FD: net/minecraft/client/gui/screens/BanNoticeScreen/f_238586_ net/minecraft/client/gui/screens/BanNoticeScreen/TEMPORARY_BAN_TITLE +FD: net/minecraft/client/gui/screens/BanNoticeScreen/f_238702_ net/minecraft/client/gui/screens/BanNoticeScreen/PERMANENT_BAN_TITLE +FD: net/minecraft/client/gui/screens/ChatScreen/f_169234_ net/minecraft/client/gui/screens/ChatScreen/MOUSE_SCROLL_SPEED +FD: net/minecraft/client/gui/screens/ChatScreen/f_169235_ net/minecraft/client/gui/screens/ChatScreen/USAGE_TEXT +FD: net/minecraft/client/gui/screens/ChatScreen/f_240354_ net/minecraft/client/gui/screens/ChatScreen/TOOLTIP_MAX_WIDTH +FD: net/minecraft/client/gui/screens/ChatScreen/f_95573_ net/minecraft/client/gui/screens/ChatScreen/input +FD: net/minecraft/client/gui/screens/ChatScreen/f_95574_ net/minecraft/client/gui/screens/ChatScreen/historyBuffer +FD: net/minecraft/client/gui/screens/ChatScreen/f_95575_ net/minecraft/client/gui/screens/ChatScreen/historyPos +FD: net/minecraft/client/gui/screens/ChatScreen/f_95576_ net/minecraft/client/gui/screens/ChatScreen/initial +FD: net/minecraft/client/gui/screens/ChatScreen/f_95577_ net/minecraft/client/gui/screens/ChatScreen/commandSuggestions +FD: net/minecraft/client/gui/screens/ChatScreen$1/f_95616_ net/minecraft/client/gui/screens/ChatScreen$1/this$0 +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_169239_ net/minecraft/client/gui/screens/ConfirmLinkScreen/COPY_BUTTON_TEXT +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_169240_ net/minecraft/client/gui/screens/ConfirmLinkScreen/WARNING_TEXT +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_95628_ net/minecraft/client/gui/screens/ConfirmLinkScreen/url +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_95629_ net/minecraft/client/gui/screens/ConfirmLinkScreen/showWarning +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_169251_ net/minecraft/client/gui/screens/ConfirmScreen/exitButtons +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_238524_ net/minecraft/client/gui/screens/ConfirmScreen/MARGIN +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_238703_ net/minecraft/client/gui/screens/ConfirmScreen/multilineMessage +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95647_ net/minecraft/client/gui/screens/ConfirmScreen/yesButton +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95648_ net/minecraft/client/gui/screens/ConfirmScreen/noButton +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95649_ net/minecraft/client/gui/screens/ConfirmScreen/callback +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95651_ net/minecraft/client/gui/screens/ConfirmScreen/message +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95652_ net/minecraft/client/gui/screens/ConfirmScreen/delayTicker +FD: net/minecraft/client/gui/screens/ConnectScreen/f_169260_ net/minecraft/client/gui/screens/ConnectScreen/UNKNOWN_HOST_MESSAGE +FD: net/minecraft/client/gui/screens/ConnectScreen/f_169261_ net/minecraft/client/gui/screens/ConnectScreen/NARRATION_DELAY_MS +FD: net/minecraft/client/gui/screens/ConnectScreen/f_278471_ net/minecraft/client/gui/screens/ConnectScreen/connectFailedTitle +FD: net/minecraft/client/gui/screens/ConnectScreen/f_290019_ net/minecraft/client/gui/screens/ConnectScreen/ABORT_CONNECTION +FD: net/minecraft/client/gui/screens/ConnectScreen/f_290020_ net/minecraft/client/gui/screens/ConnectScreen/channelFuture +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95682_ net/minecraft/client/gui/screens/ConnectScreen/UNIQUE_THREAD_ID +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95683_ net/minecraft/client/gui/screens/ConnectScreen/LOGGER +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95684_ net/minecraft/client/gui/screens/ConnectScreen/connection +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95685_ net/minecraft/client/gui/screens/ConnectScreen/aborted +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95686_ net/minecraft/client/gui/screens/ConnectScreen/parent +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95687_ net/minecraft/client/gui/screens/ConnectScreen/status +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95688_ net/minecraft/client/gui/screens/ConnectScreen/lastNarration +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_169272_ net/minecraft/client/gui/screens/ConnectScreen$1/val$hostAndPort +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_169273_ net/minecraft/client/gui/screens/ConnectScreen$1/val$minecraft +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_244070_ net/minecraft/client/gui/screens/ConnectScreen$1/val$server +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_95729_ net/minecraft/client/gui/screens/ConnectScreen$1/this$0 +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95742_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/BIOME_SELECT_INFO +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95743_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/parent +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95744_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/applySettings +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95745_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/biomes +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95746_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/list +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95747_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/biome +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95748_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/doneButton +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/f_95776_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/this$0 +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/f_95791_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/this$1 +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/f_95792_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/biome +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/f_95793_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/name +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169285_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_TEX_SIZE +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169286_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_BG_SIZE +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169287_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_STAT_HEIGHT +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169288_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_BG_X +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169289_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_BG_Y +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169290_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_FG_X +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169291_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_FG_Y +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95814_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/parent +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95815_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/applySettings +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95816_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/generator +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95817_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/columnType +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95818_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/columnHeight +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95819_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/list +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95820_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/deleteLayerButton +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/f_279578_ net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/STATS_ICON_LOCATION +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/f_95849_ net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/this$0 +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/f_95861_ net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/this$1 +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276138_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/CREDITS_BUTTON +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276148_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/BUTTON_SPACING +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276154_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/layout +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276155_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lastScreen +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276161_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/LICENSES_BUTTON +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276162_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/TITLE +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276164_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276166_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ATTRIBUTION_BUTTON +FD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/f_95891_ net/minecraft/client/gui/screens/DatapackLoadFailureScreen/message +FD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/f_95892_ net/minecraft/client/gui/screens/DatapackLoadFailureScreen/callback +FD: net/minecraft/client/gui/screens/DeathScreen/f_169295_ net/minecraft/client/gui/screens/DeathScreen/exitButtons +FD: net/minecraft/client/gui/screens/DeathScreen/f_262755_ net/minecraft/client/gui/screens/DeathScreen/exitToTitleButton +FD: net/minecraft/client/gui/screens/DeathScreen/f_95906_ net/minecraft/client/gui/screens/DeathScreen/delayTicker +FD: net/minecraft/client/gui/screens/DeathScreen/f_95907_ net/minecraft/client/gui/screens/DeathScreen/causeOfDeath +FD: net/minecraft/client/gui/screens/DeathScreen/f_95908_ net/minecraft/client/gui/screens/DeathScreen/hardcore +FD: net/minecraft/client/gui/screens/DeathScreen/f_95909_ net/minecraft/client/gui/screens/DeathScreen/deathScore +FD: net/minecraft/client/gui/screens/DemoIntroScreen/f_95935_ net/minecraft/client/gui/screens/DemoIntroScreen/DEMO_BACKGROUND_LOCATION +FD: net/minecraft/client/gui/screens/DemoIntroScreen/f_95936_ net/minecraft/client/gui/screens/DemoIntroScreen/movementMessage +FD: net/minecraft/client/gui/screens/DemoIntroScreen/f_95937_ net/minecraft/client/gui/screens/DemoIntroScreen/durationMessage +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95952_ net/minecraft/client/gui/screens/DirectJoinServerScreen/ENTER_IP_LABEL +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95953_ net/minecraft/client/gui/screens/DirectJoinServerScreen/selectButton +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95954_ net/minecraft/client/gui/screens/DirectJoinServerScreen/serverData +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95955_ net/minecraft/client/gui/screens/DirectJoinServerScreen/ipEdit +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95956_ net/minecraft/client/gui/screens/DirectJoinServerScreen/callback +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95957_ net/minecraft/client/gui/screens/DirectJoinServerScreen/lastScreen +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278396_ net/minecraft/client/gui/screens/DisconnectedScreen/buttonText +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278455_ net/minecraft/client/gui/screens/DisconnectedScreen/layout +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278465_ net/minecraft/client/gui/screens/DisconnectedScreen/TO_SERVER_LIST +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278482_ net/minecraft/client/gui/screens/DisconnectedScreen/TO_TITLE +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_95988_ net/minecraft/client/gui/screens/DisconnectedScreen/reason +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_95990_ net/minecraft/client/gui/screens/DisconnectedScreen/parent +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96005_ net/minecraft/client/gui/screens/EditServerScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96006_ net/minecraft/client/gui/screens/EditServerScreen/IP_LABEL +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96007_ net/minecraft/client/gui/screens/EditServerScreen/addButton +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96008_ net/minecraft/client/gui/screens/EditServerScreen/callback +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96009_ net/minecraft/client/gui/screens/EditServerScreen/serverData +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96010_ net/minecraft/client/gui/screens/EditServerScreen/ipEdit +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96011_ net/minecraft/client/gui/screens/EditServerScreen/nameEdit +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96013_ net/minecraft/client/gui/screens/EditServerScreen/lastScreen +FD: net/minecraft/client/gui/screens/ErrorScreen/f_96047_ net/minecraft/client/gui/screens/ErrorScreen/message +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289028_ net/minecraft/client/gui/screens/FaviconTexture/WIDTH +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289029_ net/minecraft/client/gui/screens/FaviconTexture/closed +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289034_ net/minecraft/client/gui/screens/FaviconTexture/textureManager +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289036_ net/minecraft/client/gui/screens/FaviconTexture/MISSING_LOCATION +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289037_ net/minecraft/client/gui/screens/FaviconTexture/textureLocation +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289043_ net/minecraft/client/gui/screens/FaviconTexture/texture +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289045_ net/minecraft/client/gui/screens/FaviconTexture/HEIGHT +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238521_ net/minecraft/client/gui/screens/GenericWaitingScreen/message +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238592_ net/minecraft/client/gui/screens/GenericWaitingScreen/MESSAGE_Y +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238731_ net/minecraft/client/gui/screens/GenericWaitingScreen/MESSAGE_MAX_WIDTH +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238734_ net/minecraft/client/gui/screens/GenericWaitingScreen/buttonCallback +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238767_ net/minecraft/client/gui/screens/GenericWaitingScreen/button +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238770_ net/minecraft/client/gui/screens/GenericWaitingScreen/buttonLabel +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238805_ net/minecraft/client/gui/screens/GenericWaitingScreen/TITLE_Y +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_240231_ net/minecraft/client/gui/screens/GenericWaitingScreen/messageText +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_240233_ net/minecraft/client/gui/screens/GenericWaitingScreen/disableButtonTicks +FD: net/minecraft/client/gui/screens/InBedChatScreen/f_263129_ net/minecraft/client/gui/screens/InBedChatScreen/leaveBedButton +FD: net/minecraft/client/gui/screens/LanguageSelectScreen/f_96078_ net/minecraft/client/gui/screens/LanguageSelectScreen/WARNING_LABEL +FD: net/minecraft/client/gui/screens/LanguageSelectScreen/f_96079_ net/minecraft/client/gui/screens/LanguageSelectScreen/packSelectionList +FD: net/minecraft/client/gui/screens/LanguageSelectScreen/f_96080_ net/minecraft/client/gui/screens/LanguageSelectScreen/languageManager +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/f_96100_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/this$0 +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_263697_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/code +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_287791_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/lastClickTime +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_96115_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/this$1 +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_96116_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/language +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_169309_ net/minecraft/client/gui/screens/LevelLoadingScreen/NARRATION_DELAY_MS +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_169310_ net/minecraft/client/gui/screens/LevelLoadingScreen/done +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_96138_ net/minecraft/client/gui/screens/LevelLoadingScreen/progressListener +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_96139_ net/minecraft/client/gui/screens/LevelLoadingScreen/lastNarration +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_96140_ net/minecraft/client/gui/screens/LevelLoadingScreen/COLORS +FD: net/minecraft/client/gui/screens/LoadingDotsText/f_232740_ net/minecraft/client/gui/screens/LoadingDotsText/FRAMES +FD: net/minecraft/client/gui/screens/LoadingDotsText/f_232741_ net/minecraft/client/gui/screens/LoadingDotsText/INTERVAL_MS +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169314_ net/minecraft/client/gui/screens/LoadingOverlay/FADE_OUT_TIME +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169315_ net/minecraft/client/gui/screens/LoadingOverlay/FADE_IN_TIME +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169316_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_BACKGROUND_COLOR +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169317_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_BACKGROUND_COLOR_DARK +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169318_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_SCALE +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169319_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_QUARTER_FLOAT +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169320_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_QUARTER +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169321_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_HALF +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169322_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_OVERLAP +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169323_ net/minecraft/client/gui/screens/LoadingOverlay/SMOOTHING +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96160_ net/minecraft/client/gui/screens/LoadingOverlay/MOJANG_STUDIOS_LOGO_LOCATION +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96161_ net/minecraft/client/gui/screens/LoadingOverlay/BRAND_BACKGROUND +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96163_ net/minecraft/client/gui/screens/LoadingOverlay/minecraft +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96164_ net/minecraft/client/gui/screens/LoadingOverlay/reload +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96165_ net/minecraft/client/gui/screens/LoadingOverlay/onFinish +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96166_ net/minecraft/client/gui/screens/LoadingOverlay/fadeIn +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96167_ net/minecraft/client/gui/screens/LoadingOverlay/currentProgress +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96168_ net/minecraft/client/gui/screens/LoadingOverlay/fadeOutStart +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96169_ net/minecraft/client/gui/screens/LoadingOverlay/fadeInStart +FD: net/minecraft/client/gui/screens/MenuScreens/f_96195_ net/minecraft/client/gui/screens/MenuScreens/LOGGER +FD: net/minecraft/client/gui/screens/MenuScreens/f_96196_ net/minecraft/client/gui/screens/MenuScreens/SCREENS +FD: net/minecraft/client/gui/screens/MouseSettingsScreen/f_96218_ net/minecraft/client/gui/screens/MouseSettingsScreen/list +FD: net/minecraft/client/gui/screens/OnlineOptionsScreen/f_260696_ net/minecraft/client/gui/screens/OnlineOptionsScreen/difficultyDisplay +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260474_ net/minecraft/client/gui/screens/OptionsScreen/CONTROLS +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260529_ net/minecraft/client/gui/screens/OptionsScreen/LANGUAGE +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260541_ net/minecraft/client/gui/screens/OptionsScreen/CHAT +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260552_ net/minecraft/client/gui/screens/OptionsScreen/VIDEO +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260594_ net/minecraft/client/gui/screens/OptionsScreen/TELEMETRY +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260601_ net/minecraft/client/gui/screens/OptionsScreen/SOUNDS +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260607_ net/minecraft/client/gui/screens/OptionsScreen/COLUMNS +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260611_ net/minecraft/client/gui/screens/OptionsScreen/RESOURCEPACK +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260624_ net/minecraft/client/gui/screens/OptionsScreen/ACCESSIBILITY +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260695_ net/minecraft/client/gui/screens/OptionsScreen/SKIN_CUSTOMIZATION +FD: net/minecraft/client/gui/screens/OptionsScreen/f_276165_ net/minecraft/client/gui/screens/OptionsScreen/CREDITS_AND_ATTRIBUTION +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96235_ net/minecraft/client/gui/screens/OptionsScreen/lastScreen +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96236_ net/minecraft/client/gui/screens/OptionsScreen/options +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96237_ net/minecraft/client/gui/screens/OptionsScreen/difficultyButton +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96238_ net/minecraft/client/gui/screens/OptionsScreen/lockButton +FD: net/minecraft/client/gui/screens/OptionsSubScreen/f_96281_ net/minecraft/client/gui/screens/OptionsSubScreen/lastScreen +FD: net/minecraft/client/gui/screens/OptionsSubScreen/f_96282_ net/minecraft/client/gui/screens/OptionsSubScreen/options +FD: net/minecraft/client/gui/screens/OutOfMemoryScreen/f_232750_ net/minecraft/client/gui/screens/OutOfMemoryScreen/message +FD: net/minecraft/client/gui/screens/PauseScreen/f_252482_ net/minecraft/client/gui/screens/PauseScreen/disconnectButton +FD: net/minecraft/client/gui/screens/PauseScreen/f_262210_ net/minecraft/client/gui/screens/PauseScreen/SHARE_TO_LAN +FD: net/minecraft/client/gui/screens/PauseScreen/f_262212_ net/minecraft/client/gui/screens/PauseScreen/SAVING_LEVEL +FD: net/minecraft/client/gui/screens/PauseScreen/f_262216_ net/minecraft/client/gui/screens/PauseScreen/ADVANCEMENTS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262217_ net/minecraft/client/gui/screens/PauseScreen/RETURN_TO_MENU +FD: net/minecraft/client/gui/screens/PauseScreen/f_262226_ net/minecraft/client/gui/screens/PauseScreen/REPORT_BUGS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262229_ net/minecraft/client/gui/screens/PauseScreen/BUTTON_WIDTH_HALF +FD: net/minecraft/client/gui/screens/PauseScreen/f_262246_ net/minecraft/client/gui/screens/PauseScreen/DISCONNECT +FD: net/minecraft/client/gui/screens/PauseScreen/f_262248_ net/minecraft/client/gui/screens/PauseScreen/BUTTON_PADDING +FD: net/minecraft/client/gui/screens/PauseScreen/f_262254_ net/minecraft/client/gui/screens/PauseScreen/PLAYER_REPORTING +FD: net/minecraft/client/gui/screens/PauseScreen/f_262255_ net/minecraft/client/gui/screens/PauseScreen/STATS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262258_ net/minecraft/client/gui/screens/PauseScreen/MENU_PADDING_TOP +FD: net/minecraft/client/gui/screens/PauseScreen/f_262268_ net/minecraft/client/gui/screens/PauseScreen/BUTTON_WIDTH_FULL +FD: net/minecraft/client/gui/screens/PauseScreen/f_262276_ net/minecraft/client/gui/screens/PauseScreen/RETURN_TO_GAME +FD: net/minecraft/client/gui/screens/PauseScreen/f_262286_ net/minecraft/client/gui/screens/PauseScreen/COLUMNS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262287_ net/minecraft/client/gui/screens/PauseScreen/GAME +FD: net/minecraft/client/gui/screens/PauseScreen/f_262313_ net/minecraft/client/gui/screens/PauseScreen/PAUSED +FD: net/minecraft/client/gui/screens/PauseScreen/f_262318_ net/minecraft/client/gui/screens/PauseScreen/OPTIONS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262322_ net/minecraft/client/gui/screens/PauseScreen/SEND_FEEDBACK +FD: net/minecraft/client/gui/screens/PauseScreen/f_96306_ net/minecraft/client/gui/screens/PauseScreen/showPauseMenu +FD: net/minecraft/client/gui/screens/PopupScreen/f_169340_ net/minecraft/client/gui/screens/PopupScreen/BUTTON_PADDING +FD: net/minecraft/client/gui/screens/PopupScreen/f_169341_ net/minecraft/client/gui/screens/PopupScreen/BUTTON_MARGIN +FD: net/minecraft/client/gui/screens/PopupScreen/f_169342_ net/minecraft/client/gui/screens/PopupScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/PopupScreen/f_169343_ net/minecraft/client/gui/screens/PopupScreen/narrationMessage +FD: net/minecraft/client/gui/screens/PopupScreen/f_96339_ net/minecraft/client/gui/screens/PopupScreen/message +FD: net/minecraft/client/gui/screens/PopupScreen/f_96340_ net/minecraft/client/gui/screens/PopupScreen/buttonOptions +FD: net/minecraft/client/gui/screens/PopupScreen/f_96341_ net/minecraft/client/gui/screens/PopupScreen/messageLines +FD: net/minecraft/client/gui/screens/PopupScreen/f_96342_ net/minecraft/client/gui/screens/PopupScreen/contentTop +FD: net/minecraft/client/gui/screens/PopupScreen/f_96343_ net/minecraft/client/gui/screens/PopupScreen/buttonWidth +FD: net/minecraft/client/gui/screens/PopupScreen$ButtonOption/f_96359_ net/minecraft/client/gui/screens/PopupScreen$ButtonOption/message +FD: net/minecraft/client/gui/screens/PopupScreen$ButtonOption/f_96360_ net/minecraft/client/gui/screens/PopupScreen$ButtonOption/onPress +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169346_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_TEX_SIZE +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169347_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_BG_SIZE +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169348_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_STAT_HEIGHT +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169349_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_BG_X +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169350_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_BG_Y +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169351_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_FG_X +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169352_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_FG_Y +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169353_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/DEFAULT_BIOME +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_232751_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/UNKNOWN_PRESET +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96368_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96370_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/parent +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96371_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/shareText +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96372_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/listText +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96373_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/list +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96374_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/selectButton +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96375_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/export +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96376_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/settings +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/f_96462_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/this$0 +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_169357_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/preset +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_232755_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/name +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_279577_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/STATS_ICON_LOCATION +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_96476_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/this$1 +FD: net/minecraft/client/gui/screens/ProgressScreen/f_169362_ net/minecraft/client/gui/screens/ProgressScreen/clearScreenAfterStop +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96506_ net/minecraft/client/gui/screens/ProgressScreen/header +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96507_ net/minecraft/client/gui/screens/ProgressScreen/stage +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96508_ net/minecraft/client/gui/screens/ProgressScreen/progress +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96509_ net/minecraft/client/gui/screens/ProgressScreen/stop +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202370_ net/minecraft/client/gui/screens/ReceivingLevelScreen/CHUNK_LOADING_START_WAIT_LIMIT_MS +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202371_ net/minecraft/client/gui/screens/ReceivingLevelScreen/loadingPacketsReceived +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202372_ net/minecraft/client/gui/screens/ReceivingLevelScreen/oneTickSkipped +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202373_ net/minecraft/client/gui/screens/ReceivingLevelScreen/createdAt +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_96526_ net/minecraft/client/gui/screens/ReceivingLevelScreen/DOWNLOADING_TERRAIN_TEXT +FD: net/minecraft/client/gui/screens/Screen/f_169365_ net/minecraft/client/gui/screens/Screen/lastNarratable +FD: net/minecraft/client/gui/screens/Screen/f_169367_ net/minecraft/client/gui/screens/Screen/USAGE_NARRATION +FD: net/minecraft/client/gui/screens/Screen/f_169368_ net/minecraft/client/gui/screens/Screen/narratables +FD: net/minecraft/client/gui/screens/Screen/f_169369_ net/minecraft/client/gui/screens/Screen/renderables +FD: net/minecraft/client/gui/screens/Screen/f_169370_ net/minecraft/client/gui/screens/Screen/NARRATE_SUPPRESS_AFTER_INIT_TIME +FD: net/minecraft/client/gui/screens/Screen/f_169371_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_NARRATOR_ENABLED +FD: net/minecraft/client/gui/screens/Screen/f_169372_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_MOUSE_MOVE +FD: net/minecraft/client/gui/screens/Screen/f_169373_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_MOUSE_ACTION +FD: net/minecraft/client/gui/screens/Screen/f_169374_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_KEYBOARD_ACTION +FD: net/minecraft/client/gui/screens/Screen/f_169375_ net/minecraft/client/gui/screens/Screen/narrationState +FD: net/minecraft/client/gui/screens/Screen/f_169376_ net/minecraft/client/gui/screens/Screen/narrationSuppressTime +FD: net/minecraft/client/gui/screens/Screen/f_169377_ net/minecraft/client/gui/screens/Screen/nextNarrationTime +FD: net/minecraft/client/gui/screens/Screen/f_262730_ net/minecraft/client/gui/screens/Screen/deferredTooltipRendering +FD: net/minecraft/client/gui/screens/Screen/f_267454_ net/minecraft/client/gui/screens/Screen/initialized +FD: net/minecraft/client/gui/screens/Screen/f_279548_ net/minecraft/client/gui/screens/Screen/BACKGROUND_LOCATION +FD: net/minecraft/client/gui/screens/Screen/f_289574_ net/minecraft/client/gui/screens/Screen/screenExecutor +FD: net/minecraft/client/gui/screens/Screen/f_96536_ net/minecraft/client/gui/screens/Screen/LOGGER +FD: net/minecraft/client/gui/screens/Screen/f_96537_ net/minecraft/client/gui/screens/Screen/ALLOWED_PROTOCOLS +FD: net/minecraft/client/gui/screens/Screen/f_96538_ net/minecraft/client/gui/screens/Screen/clickedLink +FD: net/minecraft/client/gui/screens/Screen/f_96539_ net/minecraft/client/gui/screens/Screen/title +FD: net/minecraft/client/gui/screens/Screen/f_96540_ net/minecraft/client/gui/screens/Screen/children +FD: net/minecraft/client/gui/screens/Screen/f_96541_ net/minecraft/client/gui/screens/Screen/minecraft +FD: net/minecraft/client/gui/screens/Screen/f_96543_ net/minecraft/client/gui/screens/Screen/width +FD: net/minecraft/client/gui/screens/Screen/f_96544_ net/minecraft/client/gui/screens/Screen/height +FD: net/minecraft/client/gui/screens/Screen/f_96547_ net/minecraft/client/gui/screens/Screen/font +FD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262736_ net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/tooltip +FD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262758_ net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/positioner +FD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/f_169420_ net/minecraft/client/gui/screens/Screen$NarratableSearchResult/entry +FD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/f_169421_ net/minecraft/client/gui/screens/Screen$NarratableSearchResult/index +FD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/f_169422_ net/minecraft/client/gui/screens/Screen$NarratableSearchResult/priority +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_169427_ net/minecraft/client/gui/screens/ShareToLanScreen/gameMode +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_256803_ net/minecraft/client/gui/screens/ShareToLanScreen/portEdit +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_256852_ net/minecraft/client/gui/screens/ShareToLanScreen/port +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_256909_ net/minecraft/client/gui/screens/ShareToLanScreen/INVALID_PORT +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_257007_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_INFO_TEXT +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_257022_ net/minecraft/client/gui/screens/ShareToLanScreen/INVALID_PORT_COLOR +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_257045_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_UNAVAILABLE +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_262301_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_HIGHER_BOUND +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_262314_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_LOWER_BOUND +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96640_ net/minecraft/client/gui/screens/ShareToLanScreen/ALLOW_COMMANDS_LABEL +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96641_ net/minecraft/client/gui/screens/ShareToLanScreen/GAME_MODE_LABEL +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96642_ net/minecraft/client/gui/screens/ShareToLanScreen/INFO_TEXT +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96643_ net/minecraft/client/gui/screens/ShareToLanScreen/lastScreen +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96647_ net/minecraft/client/gui/screens/ShareToLanScreen/commands +FD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/f_96666_ net/minecraft/client/gui/screens/SimpleOptionsSubScreen/smallOptions +FD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/f_96667_ net/minecraft/client/gui/screens/SimpleOptionsSubScreen/narratorButton +FD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/f_96668_ net/minecraft/client/gui/screens/SimpleOptionsSubScreen/list +FD: net/minecraft/client/gui/screens/SoundOptionsScreen/f_244146_ net/minecraft/client/gui/screens/SoundOptionsScreen/list +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289817_ net/minecraft/client/gui/screens/SymlinkWarningScreen/TITLE +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289819_ net/minecraft/client/gui/screens/SymlinkWarningScreen/layout +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289825_ net/minecraft/client/gui/screens/SymlinkWarningScreen/MESSAGE_TEXT +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289827_ net/minecraft/client/gui/screens/SymlinkWarningScreen/callbackScreen +FD: net/minecraft/client/gui/screens/TitleScreen/f_169438_ net/minecraft/client/gui/screens/TitleScreen/COPYRIGHT_TEXT +FD: net/minecraft/client/gui/screens/TitleScreen/f_169439_ net/minecraft/client/gui/screens/TitleScreen/DEMO_LEVEL_ID +FD: net/minecraft/client/gui/screens/TitleScreen/f_232768_ net/minecraft/client/gui/screens/TitleScreen/warningLabel +FD: net/minecraft/client/gui/screens/TitleScreen/f_263781_ net/minecraft/client/gui/screens/TitleScreen/logoRenderer +FD: net/minecraft/client/gui/screens/TitleScreen/f_96714_ net/minecraft/client/gui/screens/TitleScreen/fading +FD: net/minecraft/client/gui/screens/TitleScreen/f_96715_ net/minecraft/client/gui/screens/TitleScreen/fadeInStart +FD: net/minecraft/client/gui/screens/TitleScreen/f_96716_ net/minecraft/client/gui/screens/TitleScreen/CUBE_MAP +FD: net/minecraft/client/gui/screens/TitleScreen/f_96717_ net/minecraft/client/gui/screens/TitleScreen/LOGGER +FD: net/minecraft/client/gui/screens/TitleScreen/f_96718_ net/minecraft/client/gui/screens/TitleScreen/PANORAMA_OVERLAY +FD: net/minecraft/client/gui/screens/TitleScreen/f_96721_ net/minecraft/client/gui/screens/TitleScreen/splash +FD: net/minecraft/client/gui/screens/TitleScreen/f_96722_ net/minecraft/client/gui/screens/TitleScreen/resetDemoButton +FD: net/minecraft/client/gui/screens/TitleScreen/f_96726_ net/minecraft/client/gui/screens/TitleScreen/realmsNotificationsScreen +FD: net/minecraft/client/gui/screens/TitleScreen/f_96729_ net/minecraft/client/gui/screens/TitleScreen/panorama +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232780_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/font +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232781_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/label +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232782_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/x +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232783_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/y +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96794_ net/minecraft/client/gui/screens/VideoSettingsScreen/FABULOUS +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96795_ net/minecraft/client/gui/screens/VideoSettingsScreen/WARNING_MESSAGE +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96796_ net/minecraft/client/gui/screens/VideoSettingsScreen/WARNING_TITLE +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96797_ net/minecraft/client/gui/screens/VideoSettingsScreen/BUTTON_ACCEPT +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96798_ net/minecraft/client/gui/screens/VideoSettingsScreen/BUTTON_CANCEL +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96801_ net/minecraft/client/gui/screens/VideoSettingsScreen/list +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96802_ net/minecraft/client/gui/screens/VideoSettingsScreen/gpuWarnlistManager +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96803_ net/minecraft/client/gui/screens/VideoSettingsScreen/oldMipmaps +FD: net/minecraft/client/gui/screens/WinScreen/f_169462_ net/minecraft/client/gui/screens/WinScreen/unmodifiedScrollSpeed +FD: net/minecraft/client/gui/screens/WinScreen/f_169463_ net/minecraft/client/gui/screens/WinScreen/SECTION_HEADING +FD: net/minecraft/client/gui/screens/WinScreen/f_169464_ net/minecraft/client/gui/screens/WinScreen/NAME_PREFIX +FD: net/minecraft/client/gui/screens/WinScreen/f_169466_ net/minecraft/client/gui/screens/WinScreen/SPEEDUP_FACTOR +FD: net/minecraft/client/gui/screens/WinScreen/f_169467_ net/minecraft/client/gui/screens/WinScreen/scroll +FD: net/minecraft/client/gui/screens/WinScreen/f_181391_ net/minecraft/client/gui/screens/WinScreen/speedupActive +FD: net/minecraft/client/gui/screens/WinScreen/f_181392_ net/minecraft/client/gui/screens/WinScreen/speedupModifiers +FD: net/minecraft/client/gui/screens/WinScreen/f_181393_ net/minecraft/client/gui/screens/WinScreen/SPEEDUP_FACTOR_FAST +FD: net/minecraft/client/gui/screens/WinScreen/f_263706_ net/minecraft/client/gui/screens/WinScreen/logoRenderer +FD: net/minecraft/client/gui/screens/WinScreen/f_283835_ net/minecraft/client/gui/screens/WinScreen/direction +FD: net/minecraft/client/gui/screens/WinScreen/f_96863_ net/minecraft/client/gui/screens/WinScreen/LOGGER +FD: net/minecraft/client/gui/screens/WinScreen/f_96866_ net/minecraft/client/gui/screens/WinScreen/VIGNETTE_LOCATION +FD: net/minecraft/client/gui/screens/WinScreen/f_96867_ net/minecraft/client/gui/screens/WinScreen/OBFUSCATE_TOKEN +FD: net/minecraft/client/gui/screens/WinScreen/f_96868_ net/minecraft/client/gui/screens/WinScreen/poem +FD: net/minecraft/client/gui/screens/WinScreen/f_96869_ net/minecraft/client/gui/screens/WinScreen/onFinished +FD: net/minecraft/client/gui/screens/WinScreen/f_96871_ net/minecraft/client/gui/screens/WinScreen/lines +FD: net/minecraft/client/gui/screens/WinScreen/f_96872_ net/minecraft/client/gui/screens/WinScreen/centeredLines +FD: net/minecraft/client/gui/screens/WinScreen/f_96873_ net/minecraft/client/gui/screens/WinScreen/totalScrollLength +FD: net/minecraft/client/gui/screens/WinScreen/f_96874_ net/minecraft/client/gui/screens/WinScreen/scrollSpeed +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169484_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_LEFT_INSERT +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169485_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_TEXT_OFFSET +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169486_ net/minecraft/client/gui/screens/achievement/StatsScreen/SORT_NONE +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169487_ net/minecraft/client/gui/screens/achievement/StatsScreen/SORT_DOWN +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169488_ net/minecraft/client/gui/screens/achievement/StatsScreen/SORT_UP +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169489_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_TEX_SIZE +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169490_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_BG_SIZE +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169491_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_STAT_HEIGHT +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169492_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_BG_X +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169493_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_BG_Y +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169494_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_FG_X +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169495_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_FG_Y +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_279607_ net/minecraft/client/gui/screens/achievement/StatsScreen/STATS_ICON_LOCATION +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96896_ net/minecraft/client/gui/screens/achievement/StatsScreen/lastScreen +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96897_ net/minecraft/client/gui/screens/achievement/StatsScreen/PENDING_TEXT +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96898_ net/minecraft/client/gui/screens/achievement/StatsScreen/statsList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96899_ net/minecraft/client/gui/screens/achievement/StatsScreen/itemStatsList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96900_ net/minecraft/client/gui/screens/achievement/StatsScreen/mobsStatsList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96901_ net/minecraft/client/gui/screens/achievement/StatsScreen/stats +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96902_ net/minecraft/client/gui/screens/achievement/StatsScreen/activeList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96903_ net/minecraft/client/gui/screens/achievement/StatsScreen/isLoading +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/f_96992_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/this$0 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/f_97000_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/f_97001_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/stat +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/f_97002_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/statDisplay +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97021_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/blockColumns +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97022_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/itemColumns +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97023_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/headerPressed +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97025_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/itemStatSorter +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97026_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/sortColumn +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97027_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/sortOrder +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97028_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/this$0 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97029_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/iconOffsets +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/f_169514_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/item +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/f_97074_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/f_169520_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/f_97097_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/this$0 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97103_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97105_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/mobName +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97106_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/kills +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97107_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/hasKills +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97108_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/killedBy +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97109_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/wasKilledBy +FD: net/minecraft/client/gui/screens/achievement/StatsUpdateListener/f_97124_ net/minecraft/client/gui/screens/achievement/StatsUpdateListener/LOADING_SYMBOLS +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97126_ net/minecraft/client/gui/screens/advancements/AdvancementTab/minecraft +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97127_ net/minecraft/client/gui/screens/advancements/AdvancementTab/screen +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97128_ net/minecraft/client/gui/screens/advancements/AdvancementTab/type +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97129_ net/minecraft/client/gui/screens/advancements/AdvancementTab/index +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97130_ net/minecraft/client/gui/screens/advancements/AdvancementTab/advancement +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97131_ net/minecraft/client/gui/screens/advancements/AdvancementTab/display +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97132_ net/minecraft/client/gui/screens/advancements/AdvancementTab/icon +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97133_ net/minecraft/client/gui/screens/advancements/AdvancementTab/title +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97134_ net/minecraft/client/gui/screens/advancements/AdvancementTab/root +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97135_ net/minecraft/client/gui/screens/advancements/AdvancementTab/widgets +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97136_ net/minecraft/client/gui/screens/advancements/AdvancementTab/scrollX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97137_ net/minecraft/client/gui/screens/advancements/AdvancementTab/scrollY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97138_ net/minecraft/client/gui/screens/advancements/AdvancementTab/minX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97139_ net/minecraft/client/gui/screens/advancements/AdvancementTab/minY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97140_ net/minecraft/client/gui/screens/advancements/AdvancementTab/maxX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97141_ net/minecraft/client/gui/screens/advancements/AdvancementTab/maxY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97142_ net/minecraft/client/gui/screens/advancements/AdvancementTab/fade +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97143_ net/minecraft/client/gui/screens/advancements/AdvancementTab/centered +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/$VALUES net/minecraft/client/gui/screens/advancements/AdvancementTabType/$VALUES +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/ABOVE net/minecraft/client/gui/screens/advancements/AdvancementTabType/ABOVE +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/BELOW net/minecraft/client/gui/screens/advancements/AdvancementTabType/BELOW +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/LEFT net/minecraft/client/gui/screens/advancements/AdvancementTabType/LEFT +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/RIGHT net/minecraft/client/gui/screens/advancements/AdvancementTabType/RIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97195_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/textureX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97196_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/textureY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97197_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/width +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97198_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/height +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97199_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/max +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/f_97237_ net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/$SwitchMap$net$minecraft$client$gui$screens$advancements$AdvancementTabType +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169542_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169543_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/BOX_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169544_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/BOX_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169545_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/FRAME_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169546_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/ICON_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169547_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/ICON_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169548_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/ICON_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169549_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_PADDING_LEFT +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169550_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_PADDING_RIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169551_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169552_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169553_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_MAX_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97239_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/WIDGETS_LOCATION +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97240_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TEST_SPLIT_OFFSETS +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97241_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/tab +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97242_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/advancement +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97243_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/display +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97244_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/title +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97245_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/width +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97246_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/description +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97247_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/minecraft +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97248_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/parent +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97249_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/children +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97250_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/progress +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97251_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/x +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97252_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/y +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/$VALUES net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/$VALUES +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/OBTAINED net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/OBTAINED +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/UNOBTAINED net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/UNOBTAINED +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/f_97318_ net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169556_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169557_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169558_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169559_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169560_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169561_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169562_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_COUNT_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169563_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_COUNT_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169564_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169565_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169566_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_TITLE_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169567_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_TITLE_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97329_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_LOCATION +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97330_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/TABS_LOCATION +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97331_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/VERY_SAD_LABEL +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97332_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/NO_ADVANCEMENTS_LABEL +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97333_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/TITLE +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97334_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/advancements +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97335_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/tabs +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97336_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/selectedTab +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97337_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/isScrolling +FD: net/minecraft/client/gui/screens/controls/ControlsScreen/f_202378_ net/minecraft/client/gui/screens/controls/ControlsScreen/ROW_SPACING +FD: net/minecraft/client/gui/screens/controls/KeyBindsList/f_193858_ net/minecraft/client/gui/screens/controls/KeyBindsList/keyBindsScreen +FD: net/minecraft/client/gui/screens/controls/KeyBindsList/f_193859_ net/minecraft/client/gui/screens/controls/KeyBindsList/maxNameWidth +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/f_193881_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/this$0 +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/f_193882_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/name +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/f_193883_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/width +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/f_193902_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/this$1 +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193909_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/this$0 +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193910_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/key +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193911_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/name +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193912_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/changeButton +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193913_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/resetButton +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_268447_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/hasCollision +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193975_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/selectedKey +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193976_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/lastKeySelection +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193977_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/keyBindsList +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193978_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/resetButton +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169582_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SPRITE_SHEET_WIDTH +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169583_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SPRITE_SHEET_HEIGHT +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169584_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SLOT_AREA +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169585_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SLOT_PADDING +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169586_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SLOT_AREA_PADDED +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169587_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/HELP_TIPS_OFFSET_Y +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97541_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/GAMEMODE_SWITCHER_LOCATION +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97542_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ALL_SLOTS_WIDTH +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97543_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SELECT_KEY +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97544_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/previousHovered +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97545_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/currentlyHovered +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97546_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/firstMouseX +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97547_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/firstMouseY +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97548_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/setFirstMousePos +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97549_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/slots +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/f_97578_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/$SwitchMap$net$minecraft$client$gui$screens$debug$GameModeSwitcherScreen$GameModeIcon +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/f_97579_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/$SwitchMap$net$minecraft$world$level$GameType +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/$VALUES net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/$VALUES +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ADVENTURE net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ADVENTURE +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/CREATIVE net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/CREATIVE +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SPECTATOR net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SPECTATOR +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SURVIVAL net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SURVIVAL +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_169590_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ICON_TOP_LEFT +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_169591_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ICON_AREA +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97585_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/VALUES +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97586_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/name +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97587_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/command +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97588_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/renderStack +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/f_97622_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/this$0 +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/f_97623_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/icon +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/f_97624_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/isSelected +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97646_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/commandEdit +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97647_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/previousEdit +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97648_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/doneButton +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97649_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/cancelButton +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97650_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/outputButton +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97652_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/SET_COMMAND_LABEL +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97653_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/COMMAND_LABEL +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97654_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/PREVIOUS_OUTPUT_LABEL +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97655_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/commandSuggestions +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/f_97696_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169600_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/QUICKDROP_DELAY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169602_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/HOVER_ITEM_BLIT_OFFSET +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169603_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/SLOT_ITEM_BLIT_OFFSET +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169604_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/playerInventoryTitle +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169605_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/SNAPBACK_SPEED +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97706_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/clickedSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97707_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackEnd +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97708_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickdropSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97709_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastClickSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97710_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isSplittingStack +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97711_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/draggingItem +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97712_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackStartX +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97713_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackStartY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97714_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackTime +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97715_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackItem +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97716_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickdropTime +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97717_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftingType +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97718_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftingButton +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97719_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/skipNextRelease +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97720_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftingRemainder +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97721_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastClickTime +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97722_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastClickButton +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97723_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/doubleclick +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97724_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastQuickMoved +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97725_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/INVENTORY_LOCATION +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97726_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/imageWidth +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97727_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/imageHeight +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97728_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/titleLabelX +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97729_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/titleLabelY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97730_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/inventoryLabelX +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97731_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/inventoryLabelY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97732_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/menu +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97734_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/hoveredSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97735_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/leftPos +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97736_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/topPos +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97737_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftSlots +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97738_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isQuickCrafting +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97819_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/recipeBookComponent +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97820_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/RECIPE_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97821_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/widthTooNarrow +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97822_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/texture +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_243993_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/signField +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244069_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/woodType +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244140_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/sign +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244359_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/messages +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244562_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/line +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244564_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/frame +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_276451_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/isFrontText +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_276619_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/text +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_169611_ net/minecraft/client/gui/screens/inventory/AnvilScreen/player +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_97869_ net/minecraft/client/gui/screens/inventory/AnvilScreen/ANVIL_LOCATION +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_97870_ net/minecraft/client/gui/screens/inventory/AnvilScreen/TOO_EXPENSIVE_TEXT +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_97871_ net/minecraft/client/gui/screens/inventory/AnvilScreen/name +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_169612_ net/minecraft/client/gui/screens/inventory/BeaconScreen/beaconButtons +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97903_ net/minecraft/client/gui/screens/inventory/BeaconScreen/BEACON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97904_ net/minecraft/client/gui/screens/inventory/BeaconScreen/PRIMARY_EFFECT_LABEL +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97905_ net/minecraft/client/gui/screens/inventory/BeaconScreen/SECONDARY_EFFECT_LABEL +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97908_ net/minecraft/client/gui/screens/inventory/BeaconScreen/primary +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97909_ net/minecraft/client/gui/screens/inventory/BeaconScreen/secondary +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/f_97963_ net/minecraft/client/gui/screens/inventory/BeaconScreen$1/val$menu +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/f_97964_ net/minecraft/client/gui/screens/inventory/BeaconScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/f_97979_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/f_97989_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_169639_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/tier +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_97999_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_98000_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/effect +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_98001_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/sprite +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_98002_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/isPrimary +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/f_98020_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/selected +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/f_98033_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/iconX +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/f_98034_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/iconY +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/f_169672_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/f_98042_ net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/TEXTURE +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169682_ net/minecraft/client/gui/screens/inventory/BookEditScreen/TEXT_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169683_ net/minecraft/client/gui/screens/inventory/BookEditScreen/TEXT_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169685_ net/minecraft/client/gui/screens/inventory/BookEditScreen/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169686_ net/minecraft/client/gui/screens/inventory/BookEditScreen/IMAGE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98048_ net/minecraft/client/gui/screens/inventory/BookEditScreen/lastClickTime +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98049_ net/minecraft/client/gui/screens/inventory/BookEditScreen/lastIndex +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98050_ net/minecraft/client/gui/screens/inventory/BookEditScreen/forwardButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98051_ net/minecraft/client/gui/screens/inventory/BookEditScreen/backButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98052_ net/minecraft/client/gui/screens/inventory/BookEditScreen/doneButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98053_ net/minecraft/client/gui/screens/inventory/BookEditScreen/signButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98054_ net/minecraft/client/gui/screens/inventory/BookEditScreen/finalizeButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98055_ net/minecraft/client/gui/screens/inventory/BookEditScreen/cancelButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98056_ net/minecraft/client/gui/screens/inventory/BookEditScreen/hand +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98057_ net/minecraft/client/gui/screens/inventory/BookEditScreen/displayCache +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98058_ net/minecraft/client/gui/screens/inventory/BookEditScreen/pageMsg +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98059_ net/minecraft/client/gui/screens/inventory/BookEditScreen/ownerText +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98060_ net/minecraft/client/gui/screens/inventory/BookEditScreen/EDIT_TITLE_LABEL +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98061_ net/minecraft/client/gui/screens/inventory/BookEditScreen/FINALIZE_WARNING_LABEL +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98062_ net/minecraft/client/gui/screens/inventory/BookEditScreen/BLACK_CURSOR +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98063_ net/minecraft/client/gui/screens/inventory/BookEditScreen/GRAY_CURSOR +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98064_ net/minecraft/client/gui/screens/inventory/BookEditScreen/owner +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98065_ net/minecraft/client/gui/screens/inventory/BookEditScreen/book +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98066_ net/minecraft/client/gui/screens/inventory/BookEditScreen/isModified +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98067_ net/minecraft/client/gui/screens/inventory/BookEditScreen/isSigning +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98068_ net/minecraft/client/gui/screens/inventory/BookEditScreen/frameTick +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98069_ net/minecraft/client/gui/screens/inventory/BookEditScreen/currentPage +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98070_ net/minecraft/client/gui/screens/inventory/BookEditScreen/pages +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98071_ net/minecraft/client/gui/screens/inventory/BookEditScreen/title +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98072_ net/minecraft/client/gui/screens/inventory/BookEditScreen/pageEdit +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98073_ net/minecraft/client/gui/screens/inventory/BookEditScreen/titleEdit +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98192_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/EMPTY +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98193_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/fullText +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98194_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/cursor +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98195_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/cursorAtEnd +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98196_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/lineStarts +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98197_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/lines +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98198_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/selection +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98226_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/style +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98227_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/contents +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98228_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/asComponent +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98229_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/x +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98230_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/y +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/f_98246_ net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/x +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/f_98247_ net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/y +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169687_ net/minecraft/client/gui/screens/inventory/BookViewScreen/PAGE_INDICATOR_TEXT_Y_OFFSET +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169688_ net/minecraft/client/gui/screens/inventory/BookViewScreen/PAGE_TEXT_X_OFFSET +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169689_ net/minecraft/client/gui/screens/inventory/BookViewScreen/PAGE_TEXT_Y_OFFSET +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169690_ net/minecraft/client/gui/screens/inventory/BookViewScreen/TEXT_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169691_ net/minecraft/client/gui/screens/inventory/BookViewScreen/TEXT_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169692_ net/minecraft/client/gui/screens/inventory/BookViewScreen/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169693_ net/minecraft/client/gui/screens/inventory/BookViewScreen/IMAGE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98251_ net/minecraft/client/gui/screens/inventory/BookViewScreen/EMPTY_ACCESS +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98252_ net/minecraft/client/gui/screens/inventory/BookViewScreen/BOOK_LOCATION +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98253_ net/minecraft/client/gui/screens/inventory/BookViewScreen/bookAccess +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98254_ net/minecraft/client/gui/screens/inventory/BookViewScreen/currentPage +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98255_ net/minecraft/client/gui/screens/inventory/BookViewScreen/cachedPageComponents +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98256_ net/minecraft/client/gui/screens/inventory/BookViewScreen/cachedPage +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98257_ net/minecraft/client/gui/screens/inventory/BookViewScreen/pageMsg +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98258_ net/minecraft/client/gui/screens/inventory/BookViewScreen/forwardButton +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98259_ net/minecraft/client/gui/screens/inventory/BookViewScreen/backButton +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98260_ net/minecraft/client/gui/screens/inventory/BookViewScreen/playTurnSound +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/f_98312_ net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/pages +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/f_98320_ net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/pages +FD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/f_98328_ net/minecraft/client/gui/screens/inventory/BrewingStandScreen/BREWING_STAND_LOCATION +FD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/f_98329_ net/minecraft/client/gui/screens/inventory/BrewingStandScreen/BUBBLELENGTHS +FD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/f_98346_ net/minecraft/client/gui/screens/inventory/CartographyTableScreen/BG_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98374_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/autoCommandBlock +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98375_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/modeButton +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98376_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/conditionalButton +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98377_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/autoexecButton +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98378_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/mode +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98379_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/conditional +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98380_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/autoexec +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/f_98403_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/$SwitchMap$net$minecraft$world$level$block$entity$CommandBlockEntity$Mode +FD: net/minecraft/client/gui/screens/inventory/ContainerScreen/f_98405_ net/minecraft/client/gui/screens/inventory/ContainerScreen/CONTAINER_BACKGROUND +FD: net/minecraft/client/gui/screens/inventory/ContainerScreen/f_98406_ net/minecraft/client/gui/screens/inventory/ContainerScreen/containerRows +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98442_ net/minecraft/client/gui/screens/inventory/CraftingScreen/CRAFTING_TABLE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98443_ net/minecraft/client/gui/screens/inventory/CraftingScreen/RECIPE_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98444_ net/minecraft/client/gui/screens/inventory/CraftingScreen/recipeBookComponent +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98445_ net/minecraft/client/gui/screens/inventory/CraftingScreen/widthTooNarrow +FD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/f_98490_ net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/minecraft +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169735_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/GUI_CREATIVE_TAB_PREFIX +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169736_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/CUSTOM_SLOT_LOCK +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169737_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/NUM_ROWS +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169738_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/NUM_COLS +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169739_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TAB_WIDTH +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169740_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TAB_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169741_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169742_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169743_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TEXT_COLOR +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_256872_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/displayOperatorCreativeTab +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98504_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/CREATIVE_TABS_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98505_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/CONTAINER +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98506_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TRASH_SLOT_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98507_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/selectedTab +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98508_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/scrollOffs +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98509_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/scrolling +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98510_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/searchBox +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98511_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/originalSlots +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98512_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/destroyItemSlot +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98513_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/listener +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98514_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ignoreTextInput +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98515_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/hasClickedOutside +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98516_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/visibleTags +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/f_169749_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/inventoryMenu +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/f_98639_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/items +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/f_98655_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/target +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265868_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/iconIndex +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265871_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/slotIndex +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265954_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ICON_TRANSITION_TICK_DURATION +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265991_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ICON_SIZE +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265999_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ICON_CHANGE_TICK_RATE +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_266101_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/tick +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_266106_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/icons +FD: net/minecraft/client/gui/screens/inventory/DispenserScreen/f_98682_ net/minecraft/client/gui/screens/inventory/DispenserScreen/CONTAINER_LOCATION +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98727_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/ALT_FONT +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98728_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/ROOT_STYLE +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98729_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/INSTANCE +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98730_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/random +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98731_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/words +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_169756_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/bookModel +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98740_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/time +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98741_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/flip +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98742_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/oFlip +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98743_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/flipT +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98744_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/flipA +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98745_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/open +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98746_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/oOpen +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98747_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ENCHANTING_TABLE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98748_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ENCHANTING_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98750_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/random +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98751_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/last +FD: net/minecraft/client/gui/screens/inventory/FurnaceScreen/f_98773_ net/minecraft/client/gui/screens/inventory/FurnaceScreen/TEXTURE +FD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/f_98779_ net/minecraft/client/gui/screens/inventory/GrindstoneScreen/GRINDSTONE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_243720_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/texture +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_243728_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/TEXT_SCALE +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_243962_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/MAGIC_BACKGROUND_SCALE +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_244207_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_244604_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/TEXTURE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/HopperScreen/f_98795_ net/minecraft/client/gui/screens/inventory/HopperScreen/HOPPER_LOCATION +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98811_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/HORSE_INVENTORY_LOCATION +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98812_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/horse +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98813_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/xMouse +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98814_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/yMouse +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98830_ net/minecraft/client/gui/screens/inventory/InventoryScreen/RECIPE_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98831_ net/minecraft/client/gui/screens/inventory/InventoryScreen/xMouse +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98832_ net/minecraft/client/gui/screens/inventory/InventoryScreen/yMouse +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98833_ net/minecraft/client/gui/screens/inventory/InventoryScreen/recipeBookComponent +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98835_ net/minecraft/client/gui/screens/inventory/InventoryScreen/widthTooNarrow +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98836_ net/minecraft/client/gui/screens/inventory/InventoryScreen/buttonClicked +FD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/f_98899_ net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/menuResource +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_169762_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/MAX_LEVELS +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_169763_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/generateButton +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98932_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/joint +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98933_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/JOINT_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98934_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/POOL_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98935_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98936_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/TARGET_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98937_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/FINAL_STATE_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98938_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/jigsawEntity +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98939_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/nameEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98940_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/targetEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98941_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/poolEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98942_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/finalStateEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98943_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/levels +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98944_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/keepJigsaws +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98945_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/jointButton +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98946_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/doneButton +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/f_98996_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/LecternScreen/f_99017_ net/minecraft/client/gui/screens/inventory/LecternScreen/menu +FD: net/minecraft/client/gui/screens/inventory/LecternScreen/f_99018_ net/minecraft/client/gui/screens/inventory/LecternScreen/listener +FD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/f_99046_ net/minecraft/client/gui/screens/inventory/LecternScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169776_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERN_COLUMNS +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169777_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERN_ROWS +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169778_ net/minecraft/client/gui/screens/inventory/LoomScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169779_ net/minecraft/client/gui/screens/inventory/LoomScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169780_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERN_IMAGE_SIZE +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169781_ net/minecraft/client/gui/screens/inventory/LoomScreen/SCROLLER_FULL_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169782_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERNS_X +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169783_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERNS_Y +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_232823_ net/minecraft/client/gui/screens/inventory/LoomScreen/startRow +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99060_ net/minecraft/client/gui/screens/inventory/LoomScreen/BG_LOCATION +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99062_ net/minecraft/client/gui/screens/inventory/LoomScreen/flag +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99063_ net/minecraft/client/gui/screens/inventory/LoomScreen/resultBannerPatterns +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99064_ net/minecraft/client/gui/screens/inventory/LoomScreen/bannerStack +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99065_ net/minecraft/client/gui/screens/inventory/LoomScreen/dyeStack +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99066_ net/minecraft/client/gui/screens/inventory/LoomScreen/patternStack +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99067_ net/minecraft/client/gui/screens/inventory/LoomScreen/displayPatterns +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99069_ net/minecraft/client/gui/screens/inventory/LoomScreen/hasMaxPatterns +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99070_ net/minecraft/client/gui/screens/inventory/LoomScreen/scrollOffs +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99071_ net/minecraft/client/gui/screens/inventory/LoomScreen/scrolling +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169785_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TEXTURE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169786_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169787_ net/minecraft/client/gui/screens/inventory/MerchantScreen/MERCHANT_MENU_PART_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169788_ net/minecraft/client/gui/screens/inventory/MerchantScreen/PROGRESS_BAR_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169789_ net/minecraft/client/gui/screens/inventory/MerchantScreen/PROGRESS_BAR_Y +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169790_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SELL_ITEM_1_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169791_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SELL_ITEM_2_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169792_ net/minecraft/client/gui/screens/inventory/MerchantScreen/BUY_ITEM_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169793_ net/minecraft/client/gui/screens/inventory/MerchantScreen/LABEL_Y +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169794_ net/minecraft/client/gui/screens/inventory/MerchantScreen/NUMBER_OF_OFFER_BUTTONS +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169795_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADE_BUTTON_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169796_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADE_BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169797_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADE_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169798_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169799_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169800_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLL_BAR_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169801_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLL_BAR_TOP_POS_Y +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169802_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLL_BAR_START_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99113_ net/minecraft/client/gui/screens/inventory/MerchantScreen/VILLAGER_LOCATION +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99114_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADES_LABEL +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99115_ net/minecraft/client/gui/screens/inventory/MerchantScreen/LEVEL_SEPARATOR +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99116_ net/minecraft/client/gui/screens/inventory/MerchantScreen/DEPRECATED_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99117_ net/minecraft/client/gui/screens/inventory/MerchantScreen/shopItem +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99118_ net/minecraft/client/gui/screens/inventory/MerchantScreen/tradeOfferButtons +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99119_ net/minecraft/client/gui/screens/inventory/MerchantScreen/scrollOff +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99120_ net/minecraft/client/gui/screens/inventory/MerchantScreen/isDragging +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/f_99201_ net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/index +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/f_99202_ net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/f_99214_ net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/commandBlock +FD: net/minecraft/client/gui/screens/inventory/PageButton/f_99222_ net/minecraft/client/gui/screens/inventory/PageButton/isForward +FD: net/minecraft/client/gui/screens/inventory/PageButton/f_99223_ net/minecraft/client/gui/screens/inventory/PageButton/playTurnSound +FD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/f_99237_ net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/CONTAINER_TEXTURE +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_244300_ net/minecraft/client/gui/screens/inventory/SignEditScreen/MAGIC_TEXT_SCALE +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_244337_ net/minecraft/client/gui/screens/inventory/SignEditScreen/MAGIC_SCALE_NUMBER +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_244494_ net/minecraft/client/gui/screens/inventory/SignEditScreen/TEXT_SCALE +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_99253_ net/minecraft/client/gui/screens/inventory/SignEditScreen/signModel +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265852_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_Y_ROT +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265861_ net/minecraft/client/gui/screens/inventory/SmithingScreen/EMPTY_SLOT_SMITHING_TEMPLATE_ARMOR_TRIM +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265867_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_ANGLE +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265883_ net/minecraft/client/gui/screens/inventory/SmithingScreen/EMPTY_SLOT_SMITHING_TEMPLATES +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265886_ net/minecraft/client/gui/screens/inventory/SmithingScreen/TITLE_LABEL_X +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265904_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_Y +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265920_ net/minecraft/client/gui/screens/inventory/SmithingScreen/additionalIcon +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265925_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_OFFSET_Y +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265934_ net/minecraft/client/gui/screens/inventory/SmithingScreen/TOOLTIP_WIDTH +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265938_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265945_ net/minecraft/client/gui/screens/inventory/SmithingScreen/templateIcon +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265973_ net/minecraft/client/gui/screens/inventory/SmithingScreen/baseIcon +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265993_ net/minecraft/client/gui/screens/inventory/SmithingScreen/EMPTY_SLOT_SMITHING_TEMPLATE_NETHERITE_UPGRADE +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266007_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_WIDTH +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266014_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266017_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_SCALE +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266031_ net/minecraft/client/gui/screens/inventory/SmithingScreen/armorStandPreview +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266043_ net/minecraft/client/gui/screens/inventory/SmithingScreen/MISSING_TEMPLATE_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266067_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_X_ROT +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266080_ net/minecraft/client/gui/screens/inventory/SmithingScreen/TITLE_LABEL_Y +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266081_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_OFFSET_X +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266104_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_X +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_99287_ net/minecraft/client/gui/screens/inventory/SmithingScreen/SMITHING_LOCATION +FD: net/minecraft/client/gui/screens/inventory/SmokerScreen/f_99297_ net/minecraft/client/gui/screens/inventory/SmokerScreen/TEXTURE +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169826_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169827_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169828_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_COLUMNS +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169829_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_ROWS +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169830_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_IMAGE_SIZE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169831_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_IMAGE_SIZE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169832_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/SCROLLER_FULL_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169833_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_X +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169834_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_Y +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99303_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/BG_LOCATION +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99304_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/scrollOffs +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99305_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/scrolling +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99306_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/startIndex +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99307_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/displayRecipes +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_169835_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/includeEntitiesButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_169836_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ALL_MODES +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_169837_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/DEFAULT_MODES +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99355_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialShowAir +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99356_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialShowBoundingBox +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99357_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/nameEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99358_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/posXEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99359_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/posYEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99360_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/posZEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99361_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sizeXEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99362_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sizeYEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99363_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sizeZEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99364_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/integrityEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99365_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/seedEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99366_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/dataEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99369_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/saveButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99370_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/loadButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99371_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot0Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99372_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot90Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99373_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot180Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99374_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot270Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99376_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/detectButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99378_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/mirrorButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99379_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/toggleAirButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99380_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/toggleBoundingBox +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99381_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99382_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/decimalFormat +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99383_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/POSITION_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99384_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/SIZE_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99385_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/INTEGRITY_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99386_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/CUSTOM_DATA_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99387_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/INCLUDE_ENTITIES_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99388_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/DETECT_SIZE_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99389_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/SHOW_AIR_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99390_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/SHOW_BOUNDING_BOX_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99391_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/structure +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99392_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialMirror +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99393_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialRotation +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99394_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialMode +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99395_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialEntityIgnoring +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/f_99466_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/f_99479_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/f_99480_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/$SwitchMap$net$minecraft$world$level$block$state$properties$StructureMode +FD: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/f_262738_ net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/widget +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169863_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/TEXTURE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169864_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/MARGIN_Y +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169865_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/BORDER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169866_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/TEX_SIZE +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169867_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/SLOT_SIZE_X +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169868_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/SLOT_SIZE_Y +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169869_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/items +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169870_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/weight +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/$VALUES net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/$VALUES +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BLOCKED_SLOT net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BLOCKED_SLOT +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_BOTTOM net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_BOTTOM +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_TOP net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_BOTTOM net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_BOTTOM +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_TOP net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_VERTICAL net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_VERTICAL +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/SLOT net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/SLOT +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169919_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/x +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169920_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/y +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169921_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/w +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169922_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/h +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/f_169936_ net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/text +FD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/f_262752_ net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/INSTANCE +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267383_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MARGIN +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267390_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MOUSE_OFFSET_X +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267404_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MAX_OVERLAP_WITH_WIDGET +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267414_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MAX_DISTANCE_TO_WIDGET +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267435_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/widget +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262725_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/BORDER_COLOR_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262731_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/MOUSE_OFFSET +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262737_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262741_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_RIGHT +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262743_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/BORDER_COLOR_BOTTOM +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262744_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/BACKGROUND_COLOR +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262749_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262753_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_LEFT +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262756_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_BOTTOM +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263689_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/TOP_ROW_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263727_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/LOWER_ROW_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263797_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/BUTTON_ROW_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263805_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/FOOTER_HEIGHT +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99673_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/serverSelectionList +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99674_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/LOGGER +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99675_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/pinger +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99676_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lastScreen +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99677_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/servers +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99678_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/editButton +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99679_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/selectButton +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99680_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/deleteButton +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99681_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/toolTip +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99682_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/editingServer +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99683_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lanServerList +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99684_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lanServerDetector +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99685_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/initedOnce +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210892_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/TITLE +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210893_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/CONTENT +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210894_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/CHECK +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210895_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/NARRATION +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_232849_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/previous +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_232850_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/previous +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99735_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/TITLE +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99736_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/CONTENT +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99737_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/CHECK +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99738_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/NARRATION +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263746_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/PINGING_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263785_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ONLINE_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263833_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/INCOMPATIBLE_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263836_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/NO_CONNECTION_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_279631_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/GUI_ICONS_LOCATION +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99755_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/networkServers +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99756_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/LOGGER +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99757_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/THREAD_POOL +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99758_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ICON_MISSING +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99759_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ICON_OVERLAY_LOCATION +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99760_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/SCANNING_LABEL +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99761_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/CANT_RESOLVE_TEXT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99762_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/CANT_CONNECT_TEXT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99766_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/screen +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99767_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/onlineServers +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99768_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lanHeader +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/f_99815_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/minecraft +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_169981_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ICON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99828_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/minecraft +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99829_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/serverData +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99830_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/LAN_SERVER_HEADER +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99831_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/HIDDEN_ADDRESS_TEXT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99832_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/screen +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99833_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/lastClickTime +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169983_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169984_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_HEIGHT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169985_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_RIGHT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169986_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_LEFT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169987_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_DOWN +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169988_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_UP +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169989_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_Y_UNSELECTED +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169990_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_Y_SELECTED +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_271423_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lastIconBytes +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99854_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/this$0 +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99855_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/screen +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99856_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/minecraft +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99857_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/serverData +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99860_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/icon +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99861_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lastClickTime +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210910_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/stopShowing +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210912_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/content +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210913_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/check +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210914_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/narration +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210915_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/message +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99902_ net/minecraft/client/gui/screens/packs/PackSelectionModel/repository +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99903_ net/minecraft/client/gui/screens/packs/PackSelectionModel/selected +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99904_ net/minecraft/client/gui/screens/packs/PackSelectionModel/unselected +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99905_ net/minecraft/client/gui/screens/packs/PackSelectionModel/iconGetter +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99906_ net/minecraft/client/gui/screens/packs/PackSelectionModel/onListChanged +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99907_ net/minecraft/client/gui/screens/packs/PackSelectionModel/output +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/f_99932_ net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/this$0 +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/f_99933_ net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/pack +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/f_99951_ net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/this$0 +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/f_99960_ net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/this$0 +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_169993_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/LIST_WIDTH +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_169994_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/RELOAD_COOLDOWN +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99969_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/LOGGER +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99970_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/DRAG_AND_DROP +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99971_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/DIRECTORY_BUTTON_TOOLTIP +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99972_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/DEFAULT_ICON +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99973_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/model +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99975_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/watcher +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99976_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/ticksToReload +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99977_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/availablePackList +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99978_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/selectedPackList +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99979_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/packDir +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99980_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/doneButton +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99981_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/packIcons +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/f_100042_ net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/watcher +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/f_100043_ net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/packPath +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100052_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/ICON_OVERLAY_LOCATION +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100053_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/INCOMPATIBLE_TITLE +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100054_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/INCOMPATIBLE_CONFIRM_TITLE +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100055_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/title +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_263433_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/screen +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100075_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/minecraft +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100077_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/parent +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100078_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/pack +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100079_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/nameDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100080_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/descriptionDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100081_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/incompatibleNameDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100082_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/incompatibleDescriptionDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170026_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_RIGHT +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170027_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_LEFT +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170028_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_DOWN +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170029_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_UP +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170030_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_Y_UNSELECTED +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170031_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_Y_SELECTED +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170032_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/MAX_DESCRIPTION_WIDTH_PIXELS +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170033_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/MAX_NAME_WIDTH_PIXELS +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170034_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/TOO_LONG_NAME_SUFFIX +FD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/f_100113_ net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/fuels +FD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/f_100131_ net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/FILTER_NAME +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/f_100136_ net/minecraft/client/gui/screens/recipebook/GhostRecipe/recipe +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/f_100137_ net/minecraft/client/gui/screens/recipebook/GhostRecipe/ingredients +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/f_100138_ net/minecraft/client/gui/screens/recipebook/GhostRecipe/time +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100160_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/this$0 +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100161_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/ingredient +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100162_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/x +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100163_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/y +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100172_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/RECIPE_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100173_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/recipeButtons +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100174_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isVisible +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100175_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/x +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100176_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/y +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100177_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/minecraft +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100178_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/collection +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100179_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/lastRecipeClicked +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100180_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/time +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100181_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isFurnaceMenu +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_170036_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/MAX_ROW +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_170037_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/MAX_ROW_LARGE +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_170038_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ITEM_RENDER_SCALE +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_267446_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/BUTTON_SIZE +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100226_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/ingredientPos +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100227_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/this$0 +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100228_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/recipe +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100229_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/isCraftable +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100250_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/ingredients +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100251_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/x +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100252_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/y +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100253_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/this$1 +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/f_100259_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/this$0 +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100268_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/RECIPE_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100269_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ghostRecipe +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100270_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/filterButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100271_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/menu +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100272_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/minecraft +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100273_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/SEARCH_HINT +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100274_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ONLY_CRAFTABLES_TOOLTIP +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100275_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ALL_RECIPES_TOOLTIP +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100276_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/xOffset +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100277_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/width +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100278_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/height +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100279_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/tabButtons +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100280_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/selectedTab +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100281_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/searchBox +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100282_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lastSearch +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100283_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/book +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100284_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/recipeBookPage +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100285_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/stackedContents +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100286_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/timesInventoryChanged +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100287_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ignoreTextInput +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170041_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/visible +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170042_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170043_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/IMAGE_HEIGHT +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170044_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/OFFSET_X_POSITION +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_181400_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/widthTooNarrow +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100394_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/buttons +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100395_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/hoveredButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100396_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/overlay +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100397_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/minecraft +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100398_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/showListeners +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100399_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/recipeCollections +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100400_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/forwardButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100401_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/backButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100402_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/totalPages +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100403_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/currentPage +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100404_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/recipeBook +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100405_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/lastClickedRecipe +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100406_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/lastClickedRecipeCollection +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_170052_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/ITEMS_PER_PAGE +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/f_100445_ net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/category +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/f_100446_ net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/animationTime +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/f_170055_ net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/ANIMATION_TIME +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100461_ net/minecraft/client/gui/screens/recipebook/RecipeButton/RECIPE_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100462_ net/minecraft/client/gui/screens/recipebook/RecipeButton/MORE_RECIPES_TOOLTIP +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100463_ net/minecraft/client/gui/screens/recipebook/RecipeButton/menu +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100464_ net/minecraft/client/gui/screens/recipebook/RecipeButton/book +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100465_ net/minecraft/client/gui/screens/recipebook/RecipeButton/collection +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100466_ net/minecraft/client/gui/screens/recipebook/RecipeButton/time +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100467_ net/minecraft/client/gui/screens/recipebook/RecipeButton/animationTime +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100468_ net/minecraft/client/gui/screens/recipebook/RecipeButton/currentIndex +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_170056_ net/minecraft/client/gui/screens/recipebook/RecipeButton/TICKS_TO_SWAP +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_170057_ net/minecraft/client/gui/screens/recipebook/RecipeButton/ANIMATION_TIME +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_170058_ net/minecraft/client/gui/screens/recipebook/RecipeButton/BACKGROUND_SIZE +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100491_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/recipes +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100492_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/singleResultItem +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100493_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/craftable +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100494_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/fitsDimensions +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100495_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/known +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_265919_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/registryAccess +FD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/f_100519_ net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/FILTER_NAME +FD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/f_100524_ net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/FILTER_NAME +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238525_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238530_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SENT_MESSAGE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238545_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/DESCRIBE_PLACEHOLDER +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238551_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/reasonDescriptionLabel +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238555_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SEND_GENERIC_ERROR +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238558_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SCREEN_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238561_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/sendButton +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238565_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238568_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/LOGGER +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238596_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/lastScreen +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238607_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/MORE_COMMENTS_LABEL +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238671_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/LABEL_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238678_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_MARGIN_HALF +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238723_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SELECT_REASON +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238745_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SCREEN_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238771_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/OBSERVED_WHAT_LABEL +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238773_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/cannotBuildReason +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238775_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/commentBox +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238783_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SENDING_TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238795_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SELECT_CHAT_MESSAGE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238807_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_MARGIN +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238816_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/reportingContext +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_240228_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SENT_TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_240232_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_ERROR_TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_252515_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/reportBuilder +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238630_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/RETURN +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238642_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/this$0 +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238679_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/DISCARD +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238704_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/MESSAGE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238729_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_252405_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/DRAFT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_238535_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/canReport +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_238669_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/log +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_243871_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/contextBuilder +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_244006_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/missedCount +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_244035_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/eventId +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_244367_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/lastMessage +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_252430_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/previousLink +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238567_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/report +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238622_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/CONTEXT_INFO +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238651_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/reportingContext +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238686_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/chatSelectionList +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238718_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238733_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/chatLogFiller +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238763_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/confirmSelectedButton +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238785_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/contextInfoLabel +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238797_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/lastScreen +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238817_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/onSelected +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/f_238829_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/this$0 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/f_238832_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/previousHeading +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/f_238611_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/f_238646_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/COLOR +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/f_238728_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/text +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/f_238585_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238587_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/sender +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238665_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/entry +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238546_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/chatId +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238593_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/playerMessage +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238609_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/narration +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238660_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/text +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238672_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/INDENT_AMOUNT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238726_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/hoverText +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238811_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/canReport +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238833_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240224_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/CHECKMARK_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240226_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/CHECKMARK_TEXTURE +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240229_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/CHECKMARK_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240345_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/TAG_MARGIN_LEFT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240368_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/tagIcon +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240376_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/tagHoverText +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238556_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/canReport +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238600_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/heading +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238674_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/skin +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238676_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/FACE_SIZE +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238721_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/f_238760_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238542_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/CONTENT_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238582_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238588_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/REASON_TITLE +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238612_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/REASON_DESCRIPTION +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238613_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/reasonSelectionList +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238626_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/onSelectedReason +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238643_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lastScreen +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238652_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/PADDING +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238753_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/FOOTER_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238813_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_240235_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/READ_INFO_LABEL +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_240344_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/currentlySelectedReason +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/f_238751_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/this$0 +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/f_238519_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/reason +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/f_238684_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/this$1 +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100529_ net/minecraft/client/gui/screens/social/PlayerEntry/SKIN_SHADE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100530_ net/minecraft/client/gui/screens/social/PlayerEntry/BG_FILL +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100531_ net/minecraft/client/gui/screens/social/PlayerEntry/BG_FILL_REMOVED +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100532_ net/minecraft/client/gui/screens/social/PlayerEntry/PLAYERNAME_COLOR +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100533_ net/minecraft/client/gui/screens/social/PlayerEntry/PLAYER_STATUS_COLOR +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100534_ net/minecraft/client/gui/screens/social/PlayerEntry/minecraft +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100535_ net/minecraft/client/gui/screens/social/PlayerEntry/children +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100536_ net/minecraft/client/gui/screens/social/PlayerEntry/id +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100537_ net/minecraft/client/gui/screens/social/PlayerEntry/playerName +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100538_ net/minecraft/client/gui/screens/social/PlayerEntry/skinGetter +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100539_ net/minecraft/client/gui/screens/social/PlayerEntry/isRemoved +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100540_ net/minecraft/client/gui/screens/social/PlayerEntry/hideButton +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100541_ net/minecraft/client/gui/screens/social/PlayerEntry/showButton +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100544_ net/minecraft/client/gui/screens/social/PlayerEntry/tooltipHoverTime +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100545_ net/minecraft/client/gui/screens/social/PlayerEntry/HIDDEN +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100546_ net/minecraft/client/gui/screens/social/PlayerEntry/BLOCKED +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100547_ net/minecraft/client/gui/screens/social/PlayerEntry/OFFLINE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100548_ net/minecraft/client/gui/screens/social/PlayerEntry/HIDDEN_OFFLINE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100549_ net/minecraft/client/gui/screens/social/PlayerEntry/BLOCKED_OFFLINE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170061_ net/minecraft/client/gui/screens/social/PlayerEntry/PADDING +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170062_ net/minecraft/client/gui/screens/social/PlayerEntry/CHAT_TOGGLE_ICON_SIZE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170063_ net/minecraft/client/gui/screens/social/PlayerEntry/CHAT_TOGGLE_ICON_X +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170064_ net/minecraft/client/gui/screens/social/PlayerEntry/CHAT_TOGGLE_ICON_Y +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170065_ net/minecraft/client/gui/screens/social/PlayerEntry/TOOLTIP_DELAY +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170069_ net/minecraft/client/gui/screens/social/PlayerEntry/SKIN_SIZE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_238614_ net/minecraft/client/gui/screens/social/PlayerEntry/reportButton +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_238715_ net/minecraft/client/gui/screens/social/PlayerEntry/REPORT_DISABLED_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_238820_ net/minecraft/client/gui/screens/social/PlayerEntry/REPORT_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240655_ net/minecraft/client/gui/screens/social/PlayerEntry/REPORT_PLAYER_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240656_ net/minecraft/client/gui/screens/social/PlayerEntry/HIDE_TEXT_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240657_ net/minecraft/client/gui/screens/social/PlayerEntry/SHOW_TEXT_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240670_ net/minecraft/client/gui/screens/social/PlayerEntry/reportingEnabled +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240676_ net/minecraft/client/gui/screens/social/PlayerEntry/hasRecentMessages +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_242995_ net/minecraft/client/gui/screens/social/PlayerEntry/NOT_REPORTABLE_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_243019_ net/minecraft/client/gui/screens/social/PlayerEntry/playerReportable +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_252399_ net/minecraft/client/gui/screens/social/PlayerEntry/hasDraftReport +FD: net/minecraft/client/gui/screens/social/PlayerEntry$1/f_100622_ net/minecraft/client/gui/screens/social/PlayerEntry$1/this$0 +FD: net/minecraft/client/gui/screens/social/PlayerEntry$2/f_100639_ net/minecraft/client/gui/screens/social/PlayerEntry$2/this$0 +FD: net/minecraft/client/gui/screens/social/PlayerEntry$3/f_170096_ net/minecraft/client/gui/screens/social/PlayerEntry$3/this$0 +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100668_ net/minecraft/client/gui/screens/social/PlayerSocialManager/minecraft +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100669_ net/minecraft/client/gui/screens/social/PlayerSocialManager/hiddenPlayers +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100670_ net/minecraft/client/gui/screens/social/PlayerSocialManager/service +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100671_ net/minecraft/client/gui/screens/social/PlayerSocialManager/discoveredNamesToUUID +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_194054_ net/minecraft/client/gui/screens/social/PlayerSocialManager/onlineMode +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_194055_ net/minecraft/client/gui/screens/social/PlayerSocialManager/pendingBlockListRefresh +FD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/f_100692_ net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/socialInteractionsScreen +FD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/f_100694_ net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/players +FD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/f_100695_ net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/filter +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100726_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lastSearch +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100727_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/page +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100728_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/allButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100729_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/hiddenButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100730_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/blockedButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100731_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/blockingHintButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100732_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/serverLabel +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100733_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/playerCount +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100734_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/initialized +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100736_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SOCIAL_INTERACTIONS_LOCATION +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100737_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_ALL +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100738_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_HIDDEN +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100739_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_BLOCKED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100740_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_ALL_SELECTED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100741_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_HIDDEN_SELECTED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100742_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_BLOCKED_SELECTED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100743_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SEARCH_HINT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100744_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/EMPTY_SEARCH +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100745_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/EMPTY_HIDDEN +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100746_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/EMPTY_BLOCKED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100747_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BLOCKING_HINT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100748_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/socialInteractionsPlayerList +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100749_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/searchBox +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170131_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BG_WIDTH +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170132_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SEARCH_HEIGHT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170133_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/MARGIN_Y +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170134_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170135_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170136_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ITEM_HEIGHT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170137_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/LIST_START +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170138_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SEARCH_START +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170140_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BG_BORDER_SIZE +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/f_100803_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/this$0 +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/f_100813_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/$SwitchMap$net$minecraft$client$gui$screens$social$SocialInteractionsScreen$Page +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/$VALUES net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/$VALUES +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ALL net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ALL +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/BLOCKED net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/BLOCKED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/HIDDEN net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/HIDDEN +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260432_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/PROPERTY_TITLE +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260489_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/content +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260606_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/font +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260637_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/TELEMETRY_REQUIRED_TRANSLATION_KEY +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260658_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/TELEMETRY_OPTIONAL_TRANSLATION_KEY +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260673_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/onScrolledListener +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260678_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/HEADER_HORIZONTAL_PADDING +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260488_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/narration +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260717_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/container +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260507_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/narration +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260525_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/alignHeader +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260584_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/helper +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260618_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/width +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260715_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/grid +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260462_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/PADDING +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260486_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/DESCRIPTION +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260498_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/BUTTON_GIVE_FEEDBACK +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260514_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/telemetryEventWidget +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260521_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/options +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260608_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/TITLE +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260671_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lastScreen +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260692_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/savedScroll +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260718_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/BUTTON_SHOW_DATA +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244027_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/MESSAGE +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244180_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/enabledPacks +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244340_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/callback +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244466_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/DETAILS_BUTTON +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244576_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/TITLE +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_268508_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/layout +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_268547_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/COLUMN_SPACING +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_268664_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/DETAILS_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/f_244011_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/this$0 +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/f_244097_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/packList +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/f_243827_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/this$1 +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_243880_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/splitMessage +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_244046_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/message +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_244480_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/packId +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_244507_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/this$1 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100831_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tempDataPackDir +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100832_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tempDataPackRepository +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100848_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100849_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/GAME_MODEL_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100852_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100855_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lastScreen +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_170147_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/TEMP_WORLD_PREFIX +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_232866_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/PREPARING_WORLD_DATA +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267356_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/TEXT_INDENT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267389_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/uiState +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267391_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/bottomButtons +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267420_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/HORIZONTAL_BUTTON_SPACING +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267424_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tabManager +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267453_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/FOOTER_HEIGHT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267456_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ALLOW_CHEATS_INFO +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267460_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/VERTICAL_BUTTON_SPACING +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267463_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/GROUP_BOTTOM +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267486_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/TAB_COLUMN_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267490_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tabNavigationBar +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_268587_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/recreated +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_268721_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/EXPERIMENTS_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_273823_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/HEADER_SEPERATOR +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_273875_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/FOOTER_SEPERATOR +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_279536_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/LIGHT_DIRT_BACKGROUND +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243966_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/worldGenSettings +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243979_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/dataConfiguration +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267363_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267368_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/nameEdit +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267376_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ALLOW_CHEATS +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267405_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/TITLE +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267379_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/TITLE +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267394_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/GAME_RULES_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267448_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267461_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/DATA_PACKS_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267365_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/customizeTypeButton +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267381_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/AMPLIFIED_HELP_TEXT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267384_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/GENERATE_STRUCTURES_INFO +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267412_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/seedEdit +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267413_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/GENERATE_STRUCTURES +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267437_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/WORLD_TAB_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267438_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267449_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/TITLE +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267459_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/SEED_EMPTY_HINT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267471_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/SEED_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267474_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/BONUS_CHEST +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/f_267477_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/val$this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/f_267479_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/this$1 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/f_267476_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/this$1 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101044_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/exitCallback +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101045_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/rules +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101046_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/invalidEntries +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101047_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/doneButton +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101048_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/tooltip +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101049_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/gameRules +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/f_101097_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/f_101098_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/checkbox +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/f_101137_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/f_101138_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/label +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/f_170221_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/this$1 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/f_101159_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/label +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/f_101160_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/children +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/f_101161_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/f_101171_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/f_101172_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/input +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/f_101193_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/tooltip +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/f_101200_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101213_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/val$this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101214_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/val$gameRules +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101215_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/val$entries +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101216_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/this$1 +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101243_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101245_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101246_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/renameButton +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101247_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/callback +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101248_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/nameEdit +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101249_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/levelAccess +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268424_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/MAIN_CONTENT_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268430_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/layout +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268531_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/packs +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268615_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/parent +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268626_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/packRepository +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268670_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/output +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101298_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101299_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/DIMENSION_COLORS +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101300_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/callback +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101301_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/upgrader +FD: net/minecraft/client/gui/screens/worldselection/PresetEditor/f_232950_ net/minecraft/client/gui/screens/worldselection/PresetEditor/EDITORS +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101329_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lastScreen +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101330_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/searchBox +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101332_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/deleteButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101333_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/selectButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101334_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/renameButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101335_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/copyButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101336_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/list +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_170237_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_244251_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/TEST_OPTIONS +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/f_267419_ net/minecraft/client/gui/screens/worldselection/SwitchGrid/DEFAULT_SWITCH_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/f_267482_ net/minecraft/client/gui/screens/worldselection/SwitchGrid/switches +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_267393_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/switchBuilders +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_267428_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/paddingLeft +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_267465_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/width +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_268462_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/infoUnderneath +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_268625_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/rowSpacing +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_268635_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/rowCount +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268439_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/maxInfoRows +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268690_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/alwaysMaxHeight +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267403_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/stateSupplier +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267423_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/button +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267483_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/isActiveCondition +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267360_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/isActiveCondition +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267377_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/info +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267416_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/stateSupplier +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267466_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/onClicked +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267480_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/buttonWidth +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267484_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/label +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_232990_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataPackResources +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243708_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/worldgenRegistries +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243796_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/selectedDimensions +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243842_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataConfiguration +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244272_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/options +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244375_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/datapackDimensions +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267359_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/name +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267369_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/altPresetList +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267382_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/seed +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267386_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/generateStructures +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267395_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/gameMode +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267407_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/gameRules +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267425_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/difficulty +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267426_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/settings +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267439_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/normalPresetList +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267455_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/bonusChest +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267470_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/allowCheats +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267491_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/worldType +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267497_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/listeners +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_275748_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/DEFAULT_WORLD_NAME +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_275749_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/targetFolder +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_275760_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/savesFolder +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/$VALUES net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/$VALUES +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/CREATIVE net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/CREATIVE +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/DEBUG net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/DEBUG +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/HARDCORE net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/HARDCORE +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/SURVIVAL net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/SURVIVAL +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/f_267396_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/displayName +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/f_267442_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/info +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/f_267485_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/gameType +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/f_267398_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/preset +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/f_267418_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/CUSTOM_WORLD_DESCRIPTION +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/f_233088_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/f_233089_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/minecraft +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/f_233090_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/levelSource +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244151_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/existingDimensions +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244166_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/levelSettings +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244534_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/options +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101645_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101646_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/DATE_FORMAT +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101647_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ICON_MISSING +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101648_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ICON_OVERLAY_LOCATION +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101649_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/FROM_NEWER_TOOLTIP_1 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101650_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/FROM_NEWER_TOOLTIP_2 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101651_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/SNAPSHOT_TOOLTIP_1 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101652_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/SNAPSHOT_TOOLTIP_2 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101653_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/WORLD_LOCKED_TOOLTIP +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101654_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/screen +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_194113_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/WORLD_REQUIRES_CONVERSION +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_233184_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/loadingHeader +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_238575_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/currentlyDisplayedLevels +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_238624_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/filter +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_238666_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/pendingLevels +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/f_233218_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/LOADING_LABEL +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/f_233219_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/minecraft +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101692_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101693_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/minecraft +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101694_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/screen +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101695_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/summary +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101697_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/iconFile +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101698_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/icon +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101699_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lastClickTime +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170312_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170313_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_HEIGHT +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170314_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_JOIN +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170315_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_JOIN_WITH_NOTIFY +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170316_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_WARNING +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170317_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_ERROR +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170318_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_Y_UNSELECTED +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170319_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_Y_SELECTED +FD: net/minecraft/client/gui/spectator/PlayerMenuItem/f_101752_ net/minecraft/client/gui/spectator/PlayerMenuItem/profile +FD: net/minecraft/client/gui/spectator/PlayerMenuItem/f_101753_ net/minecraft/client/gui/spectator/PlayerMenuItem/location +FD: net/minecraft/client/gui/spectator/PlayerMenuItem/f_101754_ net/minecraft/client/gui/spectator/PlayerMenuItem/name +FD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/f_101765_ net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/PROMPT_TEXT +FD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/f_101766_ net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/items +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101771_ net/minecraft/client/gui/spectator/SpectatorMenu/EMPTY_SLOT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101772_ net/minecraft/client/gui/spectator/SpectatorMenu/CLOSE_ITEM +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101773_ net/minecraft/client/gui/spectator/SpectatorMenu/SCROLL_LEFT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101774_ net/minecraft/client/gui/spectator/SpectatorMenu/SCROLL_RIGHT_ENABLED +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101775_ net/minecraft/client/gui/spectator/SpectatorMenu/SCROLL_RIGHT_DISABLED +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101776_ net/minecraft/client/gui/spectator/SpectatorMenu/CLOSE_MENU_TEXT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101777_ net/minecraft/client/gui/spectator/SpectatorMenu/PREVIOUS_PAGE_TEXT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101778_ net/minecraft/client/gui/spectator/SpectatorMenu/NEXT_PAGE_TEXT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101779_ net/minecraft/client/gui/spectator/SpectatorMenu/listener +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101780_ net/minecraft/client/gui/spectator/SpectatorMenu/category +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101781_ net/minecraft/client/gui/spectator/SpectatorMenu/selectedSlot +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101782_ net/minecraft/client/gui/spectator/SpectatorMenu/page +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_170328_ net/minecraft/client/gui/spectator/SpectatorMenu/MAX_PER_PAGE +FD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/f_101826_ net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/direction +FD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/f_101827_ net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/enabled +FD: net/minecraft/client/gui/spectator/categories/SpectatorPage/f_101845_ net/minecraft/client/gui/spectator/categories/SpectatorPage/items +FD: net/minecraft/client/gui/spectator/categories/SpectatorPage/f_101846_ net/minecraft/client/gui/spectator/categories/SpectatorPage/selection +FD: net/minecraft/client/gui/spectator/categories/SpectatorPage/f_170329_ net/minecraft/client/gui/spectator/categories/SpectatorPage/NO_SELECTION +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101854_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/PROFILE_ORDER +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101855_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/TELEPORT_TEXT +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101856_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/TELEPORT_PROMPT +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101857_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/items +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/f_101875_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/TELEPORT_TEXT +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/f_101876_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/TELEPORT_PROMPT +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/f_101877_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/items +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/f_101891_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/team +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/f_101893_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/players +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/f_256959_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/iconSkin +FD: net/minecraft/client/main/GameConfig/f_101905_ net/minecraft/client/main/GameConfig/user +FD: net/minecraft/client/main/GameConfig/f_101906_ net/minecraft/client/main/GameConfig/display +FD: net/minecraft/client/main/GameConfig/f_101907_ net/minecraft/client/main/GameConfig/location +FD: net/minecraft/client/main/GameConfig/f_101908_ net/minecraft/client/main/GameConfig/game +FD: net/minecraft/client/main/GameConfig/f_278410_ net/minecraft/client/main/GameConfig/quickPlay +FD: net/minecraft/client/main/GameConfig$FolderData/f_101916_ net/minecraft/client/main/GameConfig$FolderData/gameDirectory +FD: net/minecraft/client/main/GameConfig$FolderData/f_101917_ net/minecraft/client/main/GameConfig$FolderData/resourcePackDirectory +FD: net/minecraft/client/main/GameConfig$FolderData/f_101918_ net/minecraft/client/main/GameConfig$FolderData/assetDirectory +FD: net/minecraft/client/main/GameConfig$FolderData/f_101919_ net/minecraft/client/main/GameConfig$FolderData/assetIndex +FD: net/minecraft/client/main/GameConfig$GameData/f_101926_ net/minecraft/client/main/GameConfig$GameData/demo +FD: net/minecraft/client/main/GameConfig$GameData/f_101927_ net/minecraft/client/main/GameConfig$GameData/launchVersion +FD: net/minecraft/client/main/GameConfig$GameData/f_101928_ net/minecraft/client/main/GameConfig$GameData/versionType +FD: net/minecraft/client/main/GameConfig$GameData/f_101929_ net/minecraft/client/main/GameConfig$GameData/disableMultiplayer +FD: net/minecraft/client/main/GameConfig$GameData/f_101930_ net/minecraft/client/main/GameConfig$GameData/disableChat +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278402_ net/minecraft/client/main/GameConfig$QuickPlayData/realms +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278424_ net/minecraft/client/main/GameConfig$QuickPlayData/multiplayer +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278449_ net/minecraft/client/main/GameConfig$QuickPlayData/singleplayer +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278493_ net/minecraft/client/main/GameConfig$QuickPlayData/path +FD: net/minecraft/client/main/GameConfig$UserData/f_101942_ net/minecraft/client/main/GameConfig$UserData/user +FD: net/minecraft/client/main/GameConfig$UserData/f_101943_ net/minecraft/client/main/GameConfig$UserData/userProperties +FD: net/minecraft/client/main/GameConfig$UserData/f_101944_ net/minecraft/client/main/GameConfig$UserData/profileProperties +FD: net/minecraft/client/main/GameConfig$UserData/f_101945_ net/minecraft/client/main/GameConfig$UserData/proxy +FD: net/minecraft/client/main/Main/f_129630_ net/minecraft/client/main/Main/LOGGER +FD: net/minecraft/client/main/Main$1/f_129643_ net/minecraft/client/main/Main$1/val$proxyUser +FD: net/minecraft/client/main/Main$1/f_129644_ net/minecraft/client/main/Main$1/val$proxyPass +FD: net/minecraft/client/main/Main$3/f_129652_ net/minecraft/client/main/Main$3/val$minecraft +FD: net/minecraft/client/model/AgeableHierarchicalModel/f_271124_ net/minecraft/client/model/AgeableHierarchicalModel/bodyYOffset +FD: net/minecraft/client/model/AgeableHierarchicalModel/f_271539_ net/minecraft/client/model/AgeableHierarchicalModel/youngScaleFactor +FD: net/minecraft/client/model/AgeableListModel/f_102007_ net/minecraft/client/model/AgeableListModel/scaleHead +FD: net/minecraft/client/model/AgeableListModel/f_102010_ net/minecraft/client/model/AgeableListModel/babyHeadScale +FD: net/minecraft/client/model/AgeableListModel/f_102011_ net/minecraft/client/model/AgeableListModel/babyBodyScale +FD: net/minecraft/client/model/AgeableListModel/f_102012_ net/minecraft/client/model/AgeableListModel/bodyYOffset +FD: net/minecraft/client/model/AgeableListModel/f_170338_ net/minecraft/client/model/AgeableListModel/babyYHeadOffset +FD: net/minecraft/client/model/AgeableListModel/f_170339_ net/minecraft/client/model/AgeableListModel/babyZHeadOffset +FD: net/minecraft/client/model/AllayModel/f_233302_ net/minecraft/client/model/AllayModel/root +FD: net/minecraft/client/model/AllayModel/f_233303_ net/minecraft/client/model/AllayModel/body +FD: net/minecraft/client/model/AllayModel/f_233304_ net/minecraft/client/model/AllayModel/right_arm +FD: net/minecraft/client/model/AllayModel/f_233305_ net/minecraft/client/model/AllayModel/left_arm +FD: net/minecraft/client/model/AllayModel/f_233306_ net/minecraft/client/model/AllayModel/right_wing +FD: net/minecraft/client/model/AllayModel/f_233307_ net/minecraft/client/model/AllayModel/left_wing +FD: net/minecraft/client/model/AllayModel/f_233308_ net/minecraft/client/model/AllayModel/FLYING_ANIMATION_X_ROT +FD: net/minecraft/client/model/AllayModel/f_233309_ net/minecraft/client/model/AllayModel/MAX_HAND_HOLDING_ITEM_X_ROT_RAD +FD: net/minecraft/client/model/AllayModel/f_233310_ net/minecraft/client/model/AllayModel/MIN_HAND_HOLDING_ITEM_X_ROT_RAD +FD: net/minecraft/client/model/AllayModel/f_238177_ net/minecraft/client/model/AllayModel/head +FD: net/minecraft/client/model/ArmorStandModel/f_102139_ net/minecraft/client/model/ArmorStandModel/shoulderStick +FD: net/minecraft/client/model/ArmorStandModel/f_102140_ net/minecraft/client/model/ArmorStandModel/basePlate +FD: net/minecraft/client/model/ArmorStandModel/f_170349_ net/minecraft/client/model/ArmorStandModel/RIGHT_BODY_STICK +FD: net/minecraft/client/model/ArmorStandModel/f_170350_ net/minecraft/client/model/ArmorStandModel/LEFT_BODY_STICK +FD: net/minecraft/client/model/ArmorStandModel/f_170351_ net/minecraft/client/model/ArmorStandModel/SHOULDER_STICK +FD: net/minecraft/client/model/ArmorStandModel/f_170352_ net/minecraft/client/model/ArmorStandModel/BASE_PLATE +FD: net/minecraft/client/model/ArmorStandModel/f_170353_ net/minecraft/client/model/ArmorStandModel/rightBodyStick +FD: net/minecraft/client/model/ArmorStandModel/f_170354_ net/minecraft/client/model/ArmorStandModel/leftBodyStick +FD: net/minecraft/client/model/AxolotlModel/f_170358_ net/minecraft/client/model/AxolotlModel/SWIMMING_LEG_XROT +FD: net/minecraft/client/model/AxolotlModel/f_170359_ net/minecraft/client/model/AxolotlModel/tail +FD: net/minecraft/client/model/AxolotlModel/f_170360_ net/minecraft/client/model/AxolotlModel/leftHindLeg +FD: net/minecraft/client/model/AxolotlModel/f_170361_ net/minecraft/client/model/AxolotlModel/rightHindLeg +FD: net/minecraft/client/model/AxolotlModel/f_170362_ net/minecraft/client/model/AxolotlModel/leftFrontLeg +FD: net/minecraft/client/model/AxolotlModel/f_170363_ net/minecraft/client/model/AxolotlModel/rightFrontLeg +FD: net/minecraft/client/model/AxolotlModel/f_170364_ net/minecraft/client/model/AxolotlModel/body +FD: net/minecraft/client/model/AxolotlModel/f_170365_ net/minecraft/client/model/AxolotlModel/head +FD: net/minecraft/client/model/AxolotlModel/f_170366_ net/minecraft/client/model/AxolotlModel/topGills +FD: net/minecraft/client/model/AxolotlModel/f_170367_ net/minecraft/client/model/AxolotlModel/leftGills +FD: net/minecraft/client/model/AxolotlModel/f_170368_ net/minecraft/client/model/AxolotlModel/rightGills +FD: net/minecraft/client/model/BatModel/f_102184_ net/minecraft/client/model/BatModel/head +FD: net/minecraft/client/model/BatModel/f_102185_ net/minecraft/client/model/BatModel/body +FD: net/minecraft/client/model/BatModel/f_102186_ net/minecraft/client/model/BatModel/rightWing +FD: net/minecraft/client/model/BatModel/f_102187_ net/minecraft/client/model/BatModel/leftWing +FD: net/minecraft/client/model/BatModel/f_102188_ net/minecraft/client/model/BatModel/rightWingTip +FD: net/minecraft/client/model/BatModel/f_102189_ net/minecraft/client/model/BatModel/leftWingTip +FD: net/minecraft/client/model/BatModel/f_170425_ net/minecraft/client/model/BatModel/root +FD: net/minecraft/client/model/BeeModel/f_102206_ net/minecraft/client/model/BeeModel/bone +FD: net/minecraft/client/model/BeeModel/f_102208_ net/minecraft/client/model/BeeModel/rightWing +FD: net/minecraft/client/model/BeeModel/f_102209_ net/minecraft/client/model/BeeModel/leftWing +FD: net/minecraft/client/model/BeeModel/f_102210_ net/minecraft/client/model/BeeModel/frontLeg +FD: net/minecraft/client/model/BeeModel/f_102211_ net/minecraft/client/model/BeeModel/midLeg +FD: net/minecraft/client/model/BeeModel/f_102212_ net/minecraft/client/model/BeeModel/backLeg +FD: net/minecraft/client/model/BeeModel/f_102213_ net/minecraft/client/model/BeeModel/stinger +FD: net/minecraft/client/model/BeeModel/f_102214_ net/minecraft/client/model/BeeModel/leftAntenna +FD: net/minecraft/client/model/BeeModel/f_102215_ net/minecraft/client/model/BeeModel/rightAntenna +FD: net/minecraft/client/model/BeeModel/f_102216_ net/minecraft/client/model/BeeModel/rollAmount +FD: net/minecraft/client/model/BeeModel/f_170430_ net/minecraft/client/model/BeeModel/BEE_Y_BASE +FD: net/minecraft/client/model/BeeModel/f_170431_ net/minecraft/client/model/BeeModel/BONE +FD: net/minecraft/client/model/BeeModel/f_170432_ net/minecraft/client/model/BeeModel/STINGER +FD: net/minecraft/client/model/BeeModel/f_170433_ net/minecraft/client/model/BeeModel/LEFT_ANTENNA +FD: net/minecraft/client/model/BeeModel/f_170434_ net/minecraft/client/model/BeeModel/RIGHT_ANTENNA +FD: net/minecraft/client/model/BeeModel/f_170435_ net/minecraft/client/model/BeeModel/FRONT_LEGS +FD: net/minecraft/client/model/BeeModel/f_170436_ net/minecraft/client/model/BeeModel/MIDDLE_LEGS +FD: net/minecraft/client/model/BeeModel/f_170437_ net/minecraft/client/model/BeeModel/BACK_LEGS +FD: net/minecraft/client/model/BlazeModel/f_102244_ net/minecraft/client/model/BlazeModel/upperBodyParts +FD: net/minecraft/client/model/BlazeModel/f_102245_ net/minecraft/client/model/BlazeModel/head +FD: net/minecraft/client/model/BlazeModel/f_170441_ net/minecraft/client/model/BlazeModel/root +FD: net/minecraft/client/model/BoatModel/f_102257_ net/minecraft/client/model/BoatModel/waterPatch +FD: net/minecraft/client/model/BoatModel/f_102258_ net/minecraft/client/model/BoatModel/parts +FD: net/minecraft/client/model/BoatModel/f_170451_ net/minecraft/client/model/BoatModel/LEFT_PADDLE +FD: net/minecraft/client/model/BoatModel/f_170452_ net/minecraft/client/model/BoatModel/RIGHT_PADDLE +FD: net/minecraft/client/model/BoatModel/f_170453_ net/minecraft/client/model/BoatModel/WATER_PATCH +FD: net/minecraft/client/model/BoatModel/f_170454_ net/minecraft/client/model/BoatModel/BOTTOM +FD: net/minecraft/client/model/BoatModel/f_170455_ net/minecraft/client/model/BoatModel/BACK +FD: net/minecraft/client/model/BoatModel/f_170456_ net/minecraft/client/model/BoatModel/FRONT +FD: net/minecraft/client/model/BoatModel/f_170457_ net/minecraft/client/model/BoatModel/RIGHT +FD: net/minecraft/client/model/BoatModel/f_170458_ net/minecraft/client/model/BoatModel/LEFT +FD: net/minecraft/client/model/BoatModel/f_170459_ net/minecraft/client/model/BoatModel/leftPaddle +FD: net/minecraft/client/model/BoatModel/f_170460_ net/minecraft/client/model/BoatModel/rightPaddle +FD: net/minecraft/client/model/BookModel/f_102283_ net/minecraft/client/model/BookModel/leftLid +FD: net/minecraft/client/model/BookModel/f_102284_ net/minecraft/client/model/BookModel/rightLid +FD: net/minecraft/client/model/BookModel/f_102285_ net/minecraft/client/model/BookModel/leftPages +FD: net/minecraft/client/model/BookModel/f_102286_ net/minecraft/client/model/BookModel/rightPages +FD: net/minecraft/client/model/BookModel/f_102287_ net/minecraft/client/model/BookModel/flipPage1 +FD: net/minecraft/client/model/BookModel/f_102288_ net/minecraft/client/model/BookModel/flipPage2 +FD: net/minecraft/client/model/BookModel/f_170469_ net/minecraft/client/model/BookModel/LEFT_PAGES +FD: net/minecraft/client/model/BookModel/f_170470_ net/minecraft/client/model/BookModel/RIGHT_PAGES +FD: net/minecraft/client/model/BookModel/f_170471_ net/minecraft/client/model/BookModel/FLIP_PAGE_1 +FD: net/minecraft/client/model/BookModel/f_170472_ net/minecraft/client/model/BookModel/FLIP_PAGE_2 +FD: net/minecraft/client/model/BookModel/f_170473_ net/minecraft/client/model/BookModel/root +FD: net/minecraft/client/model/CamelModel/f_243743_ net/minecraft/client/model/CamelModel/ridingParts +FD: net/minecraft/client/model/CamelModel/f_243837_ net/minecraft/client/model/CamelModel/head +FD: net/minecraft/client/model/CamelModel/f_243938_ net/minecraft/client/model/CamelModel/SADDLE +FD: net/minecraft/client/model/CamelModel/f_244125_ net/minecraft/client/model/CamelModel/MAX_WALK_ANIMATION_SPEED +FD: net/minecraft/client/model/CamelModel/f_244155_ net/minecraft/client/model/CamelModel/BRIDLE +FD: net/minecraft/client/model/CamelModel/f_244351_ net/minecraft/client/model/CamelModel/REINS +FD: net/minecraft/client/model/CamelModel/f_244519_ net/minecraft/client/model/CamelModel/root +FD: net/minecraft/client/model/CamelModel/f_244588_ net/minecraft/client/model/CamelModel/saddleParts +FD: net/minecraft/client/model/CamelModel/f_267464_ net/minecraft/client/model/CamelModel/WALK_ANIMATION_SCALE_FACTOR +FD: net/minecraft/client/model/CamelModel/f_273934_ net/minecraft/client/model/CamelModel/BABY_SCALE +FD: net/minecraft/client/model/CamelModel/f_273950_ net/minecraft/client/model/CamelModel/BABY_Y_OFFSET +FD: net/minecraft/client/model/CatModel/f_102325_ net/minecraft/client/model/CatModel/lieDownAmount +FD: net/minecraft/client/model/CatModel/f_102326_ net/minecraft/client/model/CatModel/lieDownAmountTail +FD: net/minecraft/client/model/CatModel/f_102327_ net/minecraft/client/model/CatModel/relaxStateOneAmount +FD: net/minecraft/client/model/ChestBoatModel/f_243894_ net/minecraft/client/model/ChestBoatModel/CHEST_LID +FD: net/minecraft/client/model/ChestBoatModel/f_244136_ net/minecraft/client/model/ChestBoatModel/CHEST_LOCK +FD: net/minecraft/client/model/ChestBoatModel/f_244355_ net/minecraft/client/model/ChestBoatModel/CHEST_BOTTOM +FD: net/minecraft/client/model/ChestRaftModel/f_243734_ net/minecraft/client/model/ChestRaftModel/CHEST_BOTTOM +FD: net/minecraft/client/model/ChestRaftModel/f_244449_ net/minecraft/client/model/ChestRaftModel/CHEST_LID +FD: net/minecraft/client/model/ChestRaftModel/f_244598_ net/minecraft/client/model/ChestRaftModel/CHEST_LOCK +FD: net/minecraft/client/model/ChestedHorseModel/f_170479_ net/minecraft/client/model/ChestedHorseModel/leftChest +FD: net/minecraft/client/model/ChestedHorseModel/f_170480_ net/minecraft/client/model/ChestedHorseModel/rightChest +FD: net/minecraft/client/model/ChickenModel/f_102381_ net/minecraft/client/model/ChickenModel/head +FD: net/minecraft/client/model/ChickenModel/f_102382_ net/minecraft/client/model/ChickenModel/body +FD: net/minecraft/client/model/ChickenModel/f_102387_ net/minecraft/client/model/ChickenModel/beak +FD: net/minecraft/client/model/ChickenModel/f_102388_ net/minecraft/client/model/ChickenModel/redThing +FD: net/minecraft/client/model/ChickenModel/f_170484_ net/minecraft/client/model/ChickenModel/RED_THING +FD: net/minecraft/client/model/ChickenModel/f_170485_ net/minecraft/client/model/ChickenModel/rightLeg +FD: net/minecraft/client/model/ChickenModel/f_170486_ net/minecraft/client/model/ChickenModel/leftLeg +FD: net/minecraft/client/model/ChickenModel/f_170487_ net/minecraft/client/model/ChickenModel/rightWing +FD: net/minecraft/client/model/ChickenModel/f_170488_ net/minecraft/client/model/ChickenModel/leftWing +FD: net/minecraft/client/model/CodModel/f_102405_ net/minecraft/client/model/CodModel/tailFin +FD: net/minecraft/client/model/CodModel/f_170492_ net/minecraft/client/model/CodModel/root +FD: net/minecraft/client/model/ColorableAgeableListModel/f_102415_ net/minecraft/client/model/ColorableAgeableListModel/r +FD: net/minecraft/client/model/ColorableAgeableListModel/f_102416_ net/minecraft/client/model/ColorableAgeableListModel/g +FD: net/minecraft/client/model/ColorableAgeableListModel/f_102417_ net/minecraft/client/model/ColorableAgeableListModel/b +FD: net/minecraft/client/model/ColorableHierarchicalModel/f_170497_ net/minecraft/client/model/ColorableHierarchicalModel/r +FD: net/minecraft/client/model/ColorableHierarchicalModel/f_170498_ net/minecraft/client/model/ColorableHierarchicalModel/g +FD: net/minecraft/client/model/ColorableHierarchicalModel/f_170499_ net/minecraft/client/model/ColorableHierarchicalModel/b +FD: net/minecraft/client/model/CreeperModel/f_102451_ net/minecraft/client/model/CreeperModel/head +FD: net/minecraft/client/model/CreeperModel/f_170517_ net/minecraft/client/model/CreeperModel/root +FD: net/minecraft/client/model/CreeperModel/f_170518_ net/minecraft/client/model/CreeperModel/rightHindLeg +FD: net/minecraft/client/model/CreeperModel/f_170519_ net/minecraft/client/model/CreeperModel/leftHindLeg +FD: net/minecraft/client/model/CreeperModel/f_170520_ net/minecraft/client/model/CreeperModel/rightFrontLeg +FD: net/minecraft/client/model/CreeperModel/f_170521_ net/minecraft/client/model/CreeperModel/leftFrontLeg +FD: net/minecraft/client/model/CreeperModel/f_170522_ net/minecraft/client/model/CreeperModel/Y_OFFSET +FD: net/minecraft/client/model/DolphinModel/f_102469_ net/minecraft/client/model/DolphinModel/body +FD: net/minecraft/client/model/DolphinModel/f_102470_ net/minecraft/client/model/DolphinModel/tail +FD: net/minecraft/client/model/DolphinModel/f_102471_ net/minecraft/client/model/DolphinModel/tailFin +FD: net/minecraft/client/model/DolphinModel/f_170528_ net/minecraft/client/model/DolphinModel/root +FD: net/minecraft/client/model/ElytraModel/f_102532_ net/minecraft/client/model/ElytraModel/rightWing +FD: net/minecraft/client/model/ElytraModel/f_102533_ net/minecraft/client/model/ElytraModel/leftWing +FD: net/minecraft/client/model/EndermanModel/f_102576_ net/minecraft/client/model/EndermanModel/carrying +FD: net/minecraft/client/model/EndermanModel/f_102577_ net/minecraft/client/model/EndermanModel/creepy +FD: net/minecraft/client/model/EndermiteModel/f_102594_ net/minecraft/client/model/EndermiteModel/BODY_SIZES +FD: net/minecraft/client/model/EndermiteModel/f_102595_ net/minecraft/client/model/EndermiteModel/BODY_TEXS +FD: net/minecraft/client/model/EndermiteModel/f_102596_ net/minecraft/client/model/EndermiteModel/BODY_COUNT +FD: net/minecraft/client/model/EndermiteModel/f_102597_ net/minecraft/client/model/EndermiteModel/bodyParts +FD: net/minecraft/client/model/EndermiteModel/f_170543_ net/minecraft/client/model/EndermiteModel/root +FD: net/minecraft/client/model/EntityModel/f_102608_ net/minecraft/client/model/EntityModel/attackTime +FD: net/minecraft/client/model/EntityModel/f_102609_ net/minecraft/client/model/EntityModel/riding +FD: net/minecraft/client/model/EntityModel/f_102610_ net/minecraft/client/model/EntityModel/young +FD: net/minecraft/client/model/EvokerFangsModel/f_102626_ net/minecraft/client/model/EvokerFangsModel/base +FD: net/minecraft/client/model/EvokerFangsModel/f_102627_ net/minecraft/client/model/EvokerFangsModel/upperJaw +FD: net/minecraft/client/model/EvokerFangsModel/f_102628_ net/minecraft/client/model/EvokerFangsModel/lowerJaw +FD: net/minecraft/client/model/EvokerFangsModel/f_170550_ net/minecraft/client/model/EvokerFangsModel/BASE +FD: net/minecraft/client/model/EvokerFangsModel/f_170551_ net/minecraft/client/model/EvokerFangsModel/UPPER_JAW +FD: net/minecraft/client/model/EvokerFangsModel/f_170552_ net/minecraft/client/model/EvokerFangsModel/LOWER_JAW +FD: net/minecraft/client/model/EvokerFangsModel/f_170553_ net/minecraft/client/model/EvokerFangsModel/root +FD: net/minecraft/client/model/FoxModel/f_102638_ net/minecraft/client/model/FoxModel/head +FD: net/minecraft/client/model/FoxModel/f_102642_ net/minecraft/client/model/FoxModel/body +FD: net/minecraft/client/model/FoxModel/f_102647_ net/minecraft/client/model/FoxModel/tail +FD: net/minecraft/client/model/FoxModel/f_102648_ net/minecraft/client/model/FoxModel/legMotionPos +FD: net/minecraft/client/model/FoxModel/f_170558_ net/minecraft/client/model/FoxModel/rightHindLeg +FD: net/minecraft/client/model/FoxModel/f_170559_ net/minecraft/client/model/FoxModel/leftHindLeg +FD: net/minecraft/client/model/FoxModel/f_170560_ net/minecraft/client/model/FoxModel/rightFrontLeg +FD: net/minecraft/client/model/FoxModel/f_170561_ net/minecraft/client/model/FoxModel/leftFrontLeg +FD: net/minecraft/client/model/FoxModel/f_170562_ net/minecraft/client/model/FoxModel/LEG_SIZE +FD: net/minecraft/client/model/FoxModel/f_170563_ net/minecraft/client/model/FoxModel/HEAD_HEIGHT +FD: net/minecraft/client/model/FoxModel/f_170564_ net/minecraft/client/model/FoxModel/LEG_POS +FD: net/minecraft/client/model/FrogModel/f_233349_ net/minecraft/client/model/FrogModel/MAX_WALK_ANIMATION_SPEED +FD: net/minecraft/client/model/FrogModel/f_233351_ net/minecraft/client/model/FrogModel/root +FD: net/minecraft/client/model/FrogModel/f_233352_ net/minecraft/client/model/FrogModel/body +FD: net/minecraft/client/model/FrogModel/f_233353_ net/minecraft/client/model/FrogModel/head +FD: net/minecraft/client/model/FrogModel/f_233354_ net/minecraft/client/model/FrogModel/eyes +FD: net/minecraft/client/model/FrogModel/f_233355_ net/minecraft/client/model/FrogModel/tongue +FD: net/minecraft/client/model/FrogModel/f_233356_ net/minecraft/client/model/FrogModel/leftArm +FD: net/minecraft/client/model/FrogModel/f_233357_ net/minecraft/client/model/FrogModel/rightArm +FD: net/minecraft/client/model/FrogModel/f_233358_ net/minecraft/client/model/FrogModel/leftLeg +FD: net/minecraft/client/model/FrogModel/f_233359_ net/minecraft/client/model/FrogModel/rightLeg +FD: net/minecraft/client/model/FrogModel/f_233360_ net/minecraft/client/model/FrogModel/croakingBody +FD: net/minecraft/client/model/FrogModel/f_267373_ net/minecraft/client/model/FrogModel/WALK_ANIMATION_SCALE_FACTOR +FD: net/minecraft/client/model/FrogModel/f_267447_ net/minecraft/client/model/FrogModel/MAX_SWIM_ANIMATION_SPEED +FD: net/minecraft/client/model/GhastModel/f_102676_ net/minecraft/client/model/GhastModel/tentacles +FD: net/minecraft/client/model/GhastModel/f_170568_ net/minecraft/client/model/GhastModel/root +FD: net/minecraft/client/model/GuardianModel/f_102695_ net/minecraft/client/model/GuardianModel/SPIKE_X_ROT +FD: net/minecraft/client/model/GuardianModel/f_102696_ net/minecraft/client/model/GuardianModel/SPIKE_Y_ROT +FD: net/minecraft/client/model/GuardianModel/f_102697_ net/minecraft/client/model/GuardianModel/SPIKE_Z_ROT +FD: net/minecraft/client/model/GuardianModel/f_102698_ net/minecraft/client/model/GuardianModel/SPIKE_X +FD: net/minecraft/client/model/GuardianModel/f_102699_ net/minecraft/client/model/GuardianModel/SPIKE_Y +FD: net/minecraft/client/model/GuardianModel/f_102700_ net/minecraft/client/model/GuardianModel/SPIKE_Z +FD: net/minecraft/client/model/GuardianModel/f_102701_ net/minecraft/client/model/GuardianModel/head +FD: net/minecraft/client/model/GuardianModel/f_102702_ net/minecraft/client/model/GuardianModel/eye +FD: net/minecraft/client/model/GuardianModel/f_102703_ net/minecraft/client/model/GuardianModel/spikeParts +FD: net/minecraft/client/model/GuardianModel/f_102704_ net/minecraft/client/model/GuardianModel/tailParts +FD: net/minecraft/client/model/GuardianModel/f_170594_ net/minecraft/client/model/GuardianModel/EYE +FD: net/minecraft/client/model/GuardianModel/f_170595_ net/minecraft/client/model/GuardianModel/TAIL_0 +FD: net/minecraft/client/model/GuardianModel/f_170596_ net/minecraft/client/model/GuardianModel/TAIL_1 +FD: net/minecraft/client/model/GuardianModel/f_170597_ net/minecraft/client/model/GuardianModel/TAIL_2 +FD: net/minecraft/client/model/GuardianModel/f_170598_ net/minecraft/client/model/GuardianModel/root +FD: net/minecraft/client/model/HierarchicalModel/f_233379_ net/minecraft/client/model/HierarchicalModel/ANIMATION_VECTOR_CACHE +FD: net/minecraft/client/model/HoglinModel/f_102725_ net/minecraft/client/model/HoglinModel/head +FD: net/minecraft/client/model/HoglinModel/f_102726_ net/minecraft/client/model/HoglinModel/rightEar +FD: net/minecraft/client/model/HoglinModel/f_102727_ net/minecraft/client/model/HoglinModel/leftEar +FD: net/minecraft/client/model/HoglinModel/f_102728_ net/minecraft/client/model/HoglinModel/body +FD: net/minecraft/client/model/HoglinModel/f_102733_ net/minecraft/client/model/HoglinModel/mane +FD: net/minecraft/client/model/HoglinModel/f_170633_ net/minecraft/client/model/HoglinModel/DEFAULT_HEAD_X_ROT +FD: net/minecraft/client/model/HoglinModel/f_170634_ net/minecraft/client/model/HoglinModel/ATTACK_HEAD_X_ROT_END +FD: net/minecraft/client/model/HoglinModel/f_170635_ net/minecraft/client/model/HoglinModel/rightFrontLeg +FD: net/minecraft/client/model/HoglinModel/f_170636_ net/minecraft/client/model/HoglinModel/leftFrontLeg +FD: net/minecraft/client/model/HoglinModel/f_170637_ net/minecraft/client/model/HoglinModel/rightHindLeg +FD: net/minecraft/client/model/HoglinModel/f_170638_ net/minecraft/client/model/HoglinModel/leftHindLeg +FD: net/minecraft/client/model/HorseModel/f_102751_ net/minecraft/client/model/HorseModel/body +FD: net/minecraft/client/model/HorseModel/f_102752_ net/minecraft/client/model/HorseModel/headParts +FD: net/minecraft/client/model/HorseModel/f_102761_ net/minecraft/client/model/HorseModel/tail +FD: net/minecraft/client/model/HorseModel/f_102762_ net/minecraft/client/model/HorseModel/saddleParts +FD: net/minecraft/client/model/HorseModel/f_102763_ net/minecraft/client/model/HorseModel/ridingParts +FD: net/minecraft/client/model/HorseModel/f_170642_ net/minecraft/client/model/HorseModel/leftFrontLeg +FD: net/minecraft/client/model/HorseModel/f_170643_ net/minecraft/client/model/HorseModel/rightHindBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170644_ net/minecraft/client/model/HorseModel/leftHindBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170645_ net/minecraft/client/model/HorseModel/rightFrontBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170646_ net/minecraft/client/model/HorseModel/leftFrontBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170647_ net/minecraft/client/model/HorseModel/HEAD_PARTS +FD: net/minecraft/client/model/HorseModel/f_170648_ net/minecraft/client/model/HorseModel/DEG_125 +FD: net/minecraft/client/model/HorseModel/f_170649_ net/minecraft/client/model/HorseModel/DEG_60 +FD: net/minecraft/client/model/HorseModel/f_170650_ net/minecraft/client/model/HorseModel/DEG_45 +FD: net/minecraft/client/model/HorseModel/f_170651_ net/minecraft/client/model/HorseModel/DEG_30 +FD: net/minecraft/client/model/HorseModel/f_170652_ net/minecraft/client/model/HorseModel/DEG_15 +FD: net/minecraft/client/model/HorseModel/f_170653_ net/minecraft/client/model/HorseModel/LEFT_HIND_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170654_ net/minecraft/client/model/HorseModel/RIGHT_HIND_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170655_ net/minecraft/client/model/HorseModel/LEFT_FRONT_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170656_ net/minecraft/client/model/HorseModel/RIGHT_FRONT_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170657_ net/minecraft/client/model/HorseModel/SADDLE +FD: net/minecraft/client/model/HorseModel/f_170658_ net/minecraft/client/model/HorseModel/LEFT_SADDLE_MOUTH +FD: net/minecraft/client/model/HorseModel/f_170659_ net/minecraft/client/model/HorseModel/LEFT_SADDLE_LINE +FD: net/minecraft/client/model/HorseModel/f_170660_ net/minecraft/client/model/HorseModel/RIGHT_SADDLE_MOUTH +FD: net/minecraft/client/model/HorseModel/f_170661_ net/minecraft/client/model/HorseModel/RIGHT_SADDLE_LINE +FD: net/minecraft/client/model/HorseModel/f_170662_ net/minecraft/client/model/HorseModel/HEAD_SADDLE +FD: net/minecraft/client/model/HorseModel/f_170663_ net/minecraft/client/model/HorseModel/MOUTH_SADDLE_WRAP +FD: net/minecraft/client/model/HorseModel/f_170664_ net/minecraft/client/model/HorseModel/rightHindLeg +FD: net/minecraft/client/model/HorseModel/f_170665_ net/minecraft/client/model/HorseModel/leftHindLeg +FD: net/minecraft/client/model/HorseModel/f_170666_ net/minecraft/client/model/HorseModel/rightFrontLeg +FD: net/minecraft/client/model/HumanoidModel/f_102808_ net/minecraft/client/model/HumanoidModel/head +FD: net/minecraft/client/model/HumanoidModel/f_102809_ net/minecraft/client/model/HumanoidModel/hat +FD: net/minecraft/client/model/HumanoidModel/f_102810_ net/minecraft/client/model/HumanoidModel/body +FD: net/minecraft/client/model/HumanoidModel/f_102811_ net/minecraft/client/model/HumanoidModel/rightArm +FD: net/minecraft/client/model/HumanoidModel/f_102812_ net/minecraft/client/model/HumanoidModel/leftArm +FD: net/minecraft/client/model/HumanoidModel/f_102813_ net/minecraft/client/model/HumanoidModel/rightLeg +FD: net/minecraft/client/model/HumanoidModel/f_102814_ net/minecraft/client/model/HumanoidModel/leftLeg +FD: net/minecraft/client/model/HumanoidModel/f_102815_ net/minecraft/client/model/HumanoidModel/leftArmPose +FD: net/minecraft/client/model/HumanoidModel/f_102816_ net/minecraft/client/model/HumanoidModel/rightArmPose +FD: net/minecraft/client/model/HumanoidModel/f_102817_ net/minecraft/client/model/HumanoidModel/crouching +FD: net/minecraft/client/model/HumanoidModel/f_102818_ net/minecraft/client/model/HumanoidModel/swimAmount +FD: net/minecraft/client/model/HumanoidModel/f_170671_ net/minecraft/client/model/HumanoidModel/SPYGLASS_ARM_ROT_Y +FD: net/minecraft/client/model/HumanoidModel/f_170672_ net/minecraft/client/model/HumanoidModel/SPYGLASS_ARM_ROT_X +FD: net/minecraft/client/model/HumanoidModel/f_170673_ net/minecraft/client/model/HumanoidModel/OVERLAY_SCALE +FD: net/minecraft/client/model/HumanoidModel/f_170674_ net/minecraft/client/model/HumanoidModel/HAT_OVERLAY_SCALE +FD: net/minecraft/client/model/HumanoidModel/f_170675_ net/minecraft/client/model/HumanoidModel/SPYGLASS_ARM_CROUCH_ROT_X +FD: net/minecraft/client/model/HumanoidModel/f_233401_ net/minecraft/client/model/HumanoidModel/TOOT_HORN_XROT_BASE +FD: net/minecraft/client/model/HumanoidModel/f_233402_ net/minecraft/client/model/HumanoidModel/TOOT_HORN_YROT_BASE +FD: net/minecraft/client/model/HumanoidModel/f_268560_ net/minecraft/client/model/HumanoidModel/DUCK_WALK_ROTATION +FD: net/minecraft/client/model/HumanoidModel/f_268570_ net/minecraft/client/model/HumanoidModel/LEGGINGS_OVERLAY_SCALE +FD: net/minecraft/client/model/HumanoidModel$1/f_102881_ net/minecraft/client/model/HumanoidModel$1/$SwitchMap$net$minecraft$client$model$HumanoidModel$ArmPose +FD: net/minecraft/client/model/HumanoidModel$ArmPose/$VALUES net/minecraft/client/model/HumanoidModel$ArmPose/$VALUES +FD: net/minecraft/client/model/HumanoidModel$ArmPose/BLOCK net/minecraft/client/model/HumanoidModel$ArmPose/BLOCK +FD: net/minecraft/client/model/HumanoidModel$ArmPose/BOW_AND_ARROW net/minecraft/client/model/HumanoidModel$ArmPose/BOW_AND_ARROW +FD: net/minecraft/client/model/HumanoidModel$ArmPose/BRUSH net/minecraft/client/model/HumanoidModel$ArmPose/BRUSH +FD: net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_CHARGE net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_CHARGE +FD: net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_HOLD net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_HOLD +FD: net/minecraft/client/model/HumanoidModel$ArmPose/EMPTY net/minecraft/client/model/HumanoidModel$ArmPose/EMPTY +FD: net/minecraft/client/model/HumanoidModel$ArmPose/ITEM net/minecraft/client/model/HumanoidModel$ArmPose/ITEM +FD: net/minecraft/client/model/HumanoidModel$ArmPose/SPYGLASS net/minecraft/client/model/HumanoidModel$ArmPose/SPYGLASS +FD: net/minecraft/client/model/HumanoidModel$ArmPose/THROW_SPEAR net/minecraft/client/model/HumanoidModel$ArmPose/THROW_SPEAR +FD: net/minecraft/client/model/HumanoidModel$ArmPose/TOOT_HORN net/minecraft/client/model/HumanoidModel$ArmPose/TOOT_HORN +FD: net/minecraft/client/model/HumanoidModel$ArmPose/f_102890_ net/minecraft/client/model/HumanoidModel$ArmPose/twoHanded +FD: net/minecraft/client/model/IllagerModel/f_102901_ net/minecraft/client/model/IllagerModel/head +FD: net/minecraft/client/model/IllagerModel/f_102902_ net/minecraft/client/model/IllagerModel/hat +FD: net/minecraft/client/model/IllagerModel/f_102904_ net/minecraft/client/model/IllagerModel/arms +FD: net/minecraft/client/model/IllagerModel/f_102905_ net/minecraft/client/model/IllagerModel/leftLeg +FD: net/minecraft/client/model/IllagerModel/f_102906_ net/minecraft/client/model/IllagerModel/rightLeg +FD: net/minecraft/client/model/IllagerModel/f_102907_ net/minecraft/client/model/IllagerModel/rightArm +FD: net/minecraft/client/model/IllagerModel/f_102908_ net/minecraft/client/model/IllagerModel/leftArm +FD: net/minecraft/client/model/IllagerModel/f_170686_ net/minecraft/client/model/IllagerModel/root +FD: net/minecraft/client/model/IronGolemModel/f_102936_ net/minecraft/client/model/IronGolemModel/head +FD: net/minecraft/client/model/IronGolemModel/f_170691_ net/minecraft/client/model/IronGolemModel/root +FD: net/minecraft/client/model/IronGolemModel/f_170692_ net/minecraft/client/model/IronGolemModel/rightArm +FD: net/minecraft/client/model/IronGolemModel/f_170693_ net/minecraft/client/model/IronGolemModel/leftArm +FD: net/minecraft/client/model/IronGolemModel/f_170694_ net/minecraft/client/model/IronGolemModel/rightLeg +FD: net/minecraft/client/model/IronGolemModel/f_170695_ net/minecraft/client/model/IronGolemModel/leftLeg +FD: net/minecraft/client/model/LavaSlimeModel/f_102969_ net/minecraft/client/model/LavaSlimeModel/bodyCubes +FD: net/minecraft/client/model/LavaSlimeModel/f_170700_ net/minecraft/client/model/LavaSlimeModel/SEGMENT_COUNT +FD: net/minecraft/client/model/LavaSlimeModel/f_170701_ net/minecraft/client/model/LavaSlimeModel/root +FD: net/minecraft/client/model/LeashKnotModel/f_102999_ net/minecraft/client/model/LeashKnotModel/knot +FD: net/minecraft/client/model/LeashKnotModel/f_170711_ net/minecraft/client/model/LeashKnotModel/KNOT +FD: net/minecraft/client/model/LeashKnotModel/f_170712_ net/minecraft/client/model/LeashKnotModel/root +FD: net/minecraft/client/model/LlamaModel/f_103031_ net/minecraft/client/model/LlamaModel/head +FD: net/minecraft/client/model/LlamaModel/f_103032_ net/minecraft/client/model/LlamaModel/body +FD: net/minecraft/client/model/LlamaModel/f_170717_ net/minecraft/client/model/LlamaModel/rightHindLeg +FD: net/minecraft/client/model/LlamaModel/f_170718_ net/minecraft/client/model/LlamaModel/leftHindLeg +FD: net/minecraft/client/model/LlamaModel/f_170719_ net/minecraft/client/model/LlamaModel/rightFrontLeg +FD: net/minecraft/client/model/LlamaModel/f_170720_ net/minecraft/client/model/LlamaModel/leftFrontLeg +FD: net/minecraft/client/model/LlamaModel/f_170721_ net/minecraft/client/model/LlamaModel/rightChest +FD: net/minecraft/client/model/LlamaModel/f_170722_ net/minecraft/client/model/LlamaModel/leftChest +FD: net/minecraft/client/model/LlamaSpitModel/f_170727_ net/minecraft/client/model/LlamaSpitModel/MAIN +FD: net/minecraft/client/model/LlamaSpitModel/f_170728_ net/minecraft/client/model/LlamaSpitModel/root +FD: net/minecraft/client/model/MinecartModel/f_170733_ net/minecraft/client/model/MinecartModel/root +FD: net/minecraft/client/model/Model/f_103106_ net/minecraft/client/model/Model/renderType +FD: net/minecraft/client/model/OcelotModel/f_103133_ net/minecraft/client/model/OcelotModel/tail1 +FD: net/minecraft/client/model/OcelotModel/f_103134_ net/minecraft/client/model/OcelotModel/tail2 +FD: net/minecraft/client/model/OcelotModel/f_103135_ net/minecraft/client/model/OcelotModel/head +FD: net/minecraft/client/model/OcelotModel/f_103136_ net/minecraft/client/model/OcelotModel/body +FD: net/minecraft/client/model/OcelotModel/f_103137_ net/minecraft/client/model/OcelotModel/state +FD: net/minecraft/client/model/OcelotModel/f_170741_ net/minecraft/client/model/OcelotModel/BODY_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170742_ net/minecraft/client/model/OcelotModel/TAIL_1_WALK_Y +FD: net/minecraft/client/model/OcelotModel/f_170743_ net/minecraft/client/model/OcelotModel/TAIL_1_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170744_ net/minecraft/client/model/OcelotModel/TAIL_2_WALK_Y +FD: net/minecraft/client/model/OcelotModel/f_170745_ net/minecraft/client/model/OcelotModel/TAIL_2_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170746_ net/minecraft/client/model/OcelotModel/FRONT_LEG_Z +FD: net/minecraft/client/model/OcelotModel/f_170747_ net/minecraft/client/model/OcelotModel/TAIL_1 +FD: net/minecraft/client/model/OcelotModel/f_170748_ net/minecraft/client/model/OcelotModel/TAIL_2 +FD: net/minecraft/client/model/OcelotModel/f_170749_ net/minecraft/client/model/OcelotModel/SITTING_STATE +FD: net/minecraft/client/model/OcelotModel/f_170750_ net/minecraft/client/model/OcelotModel/BACK_LEG_Y +FD: net/minecraft/client/model/OcelotModel/f_170751_ net/minecraft/client/model/OcelotModel/BACK_LEG_Z +FD: net/minecraft/client/model/OcelotModel/f_170752_ net/minecraft/client/model/OcelotModel/FRONT_LEG_Y +FD: net/minecraft/client/model/OcelotModel/f_170753_ net/minecraft/client/model/OcelotModel/leftHindLeg +FD: net/minecraft/client/model/OcelotModel/f_170754_ net/minecraft/client/model/OcelotModel/rightHindLeg +FD: net/minecraft/client/model/OcelotModel/f_170755_ net/minecraft/client/model/OcelotModel/leftFrontLeg +FD: net/minecraft/client/model/OcelotModel/f_170756_ net/minecraft/client/model/OcelotModel/rightFrontLeg +FD: net/minecraft/client/model/OcelotModel/f_170757_ net/minecraft/client/model/OcelotModel/CROUCH_STATE +FD: net/minecraft/client/model/OcelotModel/f_170758_ net/minecraft/client/model/OcelotModel/WALK_STATE +FD: net/minecraft/client/model/OcelotModel/f_170759_ net/minecraft/client/model/OcelotModel/SPRINT_STATE +FD: net/minecraft/client/model/OcelotModel/f_170760_ net/minecraft/client/model/OcelotModel/XO +FD: net/minecraft/client/model/OcelotModel/f_170761_ net/minecraft/client/model/OcelotModel/YO +FD: net/minecraft/client/model/OcelotModel/f_170762_ net/minecraft/client/model/OcelotModel/ZO +FD: net/minecraft/client/model/OcelotModel/f_170763_ net/minecraft/client/model/OcelotModel/HEAD_WALK_Y +FD: net/minecraft/client/model/OcelotModel/f_170764_ net/minecraft/client/model/OcelotModel/HEAD_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170765_ net/minecraft/client/model/OcelotModel/BODY_WALK_Y +FD: net/minecraft/client/model/PandaModel/f_103154_ net/minecraft/client/model/PandaModel/sitAmount +FD: net/minecraft/client/model/PandaModel/f_103155_ net/minecraft/client/model/PandaModel/lieOnBackAmount +FD: net/minecraft/client/model/PandaModel/f_103156_ net/minecraft/client/model/PandaModel/rollAmount +FD: net/minecraft/client/model/ParrotModel/f_103184_ net/minecraft/client/model/ParrotModel/body +FD: net/minecraft/client/model/ParrotModel/f_103185_ net/minecraft/client/model/ParrotModel/tail +FD: net/minecraft/client/model/ParrotModel/f_103188_ net/minecraft/client/model/ParrotModel/head +FD: net/minecraft/client/model/ParrotModel/f_103192_ net/minecraft/client/model/ParrotModel/feather +FD: net/minecraft/client/model/ParrotModel/f_170773_ net/minecraft/client/model/ParrotModel/FEATHER +FD: net/minecraft/client/model/ParrotModel/f_170774_ net/minecraft/client/model/ParrotModel/root +FD: net/minecraft/client/model/ParrotModel/f_170775_ net/minecraft/client/model/ParrotModel/leftWing +FD: net/minecraft/client/model/ParrotModel/f_170776_ net/minecraft/client/model/ParrotModel/rightWing +FD: net/minecraft/client/model/ParrotModel/f_170777_ net/minecraft/client/model/ParrotModel/leftLeg +FD: net/minecraft/client/model/ParrotModel/f_170778_ net/minecraft/client/model/ParrotModel/rightLeg +FD: net/minecraft/client/model/ParrotModel$1/f_103249_ net/minecraft/client/model/ParrotModel$1/$SwitchMap$net$minecraft$client$model$ParrotModel$State +FD: net/minecraft/client/model/ParrotModel$State/$VALUES net/minecraft/client/model/ParrotModel$State/$VALUES +FD: net/minecraft/client/model/ParrotModel$State/FLYING net/minecraft/client/model/ParrotModel$State/FLYING +FD: net/minecraft/client/model/ParrotModel$State/ON_SHOULDER net/minecraft/client/model/ParrotModel$State/ON_SHOULDER +FD: net/minecraft/client/model/ParrotModel$State/PARTY net/minecraft/client/model/ParrotModel$State/PARTY +FD: net/minecraft/client/model/ParrotModel$State/SITTING net/minecraft/client/model/ParrotModel$State/SITTING +FD: net/minecraft/client/model/ParrotModel$State/STANDING net/minecraft/client/model/ParrotModel$State/STANDING +FD: net/minecraft/client/model/PhantomModel/f_103315_ net/minecraft/client/model/PhantomModel/leftWingBase +FD: net/minecraft/client/model/PhantomModel/f_103316_ net/minecraft/client/model/PhantomModel/leftWingTip +FD: net/minecraft/client/model/PhantomModel/f_103317_ net/minecraft/client/model/PhantomModel/rightWingBase +FD: net/minecraft/client/model/PhantomModel/f_103318_ net/minecraft/client/model/PhantomModel/rightWingTip +FD: net/minecraft/client/model/PhantomModel/f_103319_ net/minecraft/client/model/PhantomModel/tailBase +FD: net/minecraft/client/model/PhantomModel/f_103320_ net/minecraft/client/model/PhantomModel/tailTip +FD: net/minecraft/client/model/PhantomModel/f_170784_ net/minecraft/client/model/PhantomModel/TAIL_BASE +FD: net/minecraft/client/model/PhantomModel/f_170785_ net/minecraft/client/model/PhantomModel/TAIL_TIP +FD: net/minecraft/client/model/PhantomModel/f_170786_ net/minecraft/client/model/PhantomModel/root +FD: net/minecraft/client/model/PiglinHeadModel/f_260496_ net/minecraft/client/model/PiglinHeadModel/head +FD: net/minecraft/client/model/PiglinHeadModel/f_260517_ net/minecraft/client/model/PiglinHeadModel/rightEar +FD: net/minecraft/client/model/PiglinHeadModel/f_260542_ net/minecraft/client/model/PiglinHeadModel/leftEar +FD: net/minecraft/client/model/PiglinModel/f_103333_ net/minecraft/client/model/PiglinModel/leftArmDefault +FD: net/minecraft/client/model/PiglinModel/f_103334_ net/minecraft/client/model/PiglinModel/rightArmDefault +FD: net/minecraft/client/model/PiglinModel/f_103337_ net/minecraft/client/model/PiglinModel/bodyDefault +FD: net/minecraft/client/model/PiglinModel/f_103338_ net/minecraft/client/model/PiglinModel/headDefault +FD: net/minecraft/client/model/PiglinModel/f_170807_ net/minecraft/client/model/PiglinModel/rightEar +FD: net/minecraft/client/model/PiglinModel/f_170808_ net/minecraft/client/model/PiglinModel/leftEar +FD: net/minecraft/client/model/PlayerModel/f_103373_ net/minecraft/client/model/PlayerModel/cloak +FD: net/minecraft/client/model/PlayerModel/f_103374_ net/minecraft/client/model/PlayerModel/leftSleeve +FD: net/minecraft/client/model/PlayerModel/f_103375_ net/minecraft/client/model/PlayerModel/rightSleeve +FD: net/minecraft/client/model/PlayerModel/f_103376_ net/minecraft/client/model/PlayerModel/leftPants +FD: net/minecraft/client/model/PlayerModel/f_103377_ net/minecraft/client/model/PlayerModel/rightPants +FD: net/minecraft/client/model/PlayerModel/f_103378_ net/minecraft/client/model/PlayerModel/jacket +FD: net/minecraft/client/model/PlayerModel/f_103379_ net/minecraft/client/model/PlayerModel/ear +FD: net/minecraft/client/model/PlayerModel/f_103380_ net/minecraft/client/model/PlayerModel/slim +FD: net/minecraft/client/model/PlayerModel/f_170813_ net/minecraft/client/model/PlayerModel/LEFT_PANTS +FD: net/minecraft/client/model/PlayerModel/f_170814_ net/minecraft/client/model/PlayerModel/RIGHT_PANTS +FD: net/minecraft/client/model/PlayerModel/f_170815_ net/minecraft/client/model/PlayerModel/parts +FD: net/minecraft/client/model/PlayerModel/f_170816_ net/minecraft/client/model/PlayerModel/EAR +FD: net/minecraft/client/model/PlayerModel/f_170817_ net/minecraft/client/model/PlayerModel/CLOAK +FD: net/minecraft/client/model/PlayerModel/f_170818_ net/minecraft/client/model/PlayerModel/LEFT_SLEEVE +FD: net/minecraft/client/model/PlayerModel/f_170819_ net/minecraft/client/model/PlayerModel/RIGHT_SLEEVE +FD: net/minecraft/client/model/PufferfishBigModel/f_170831_ net/minecraft/client/model/PufferfishBigModel/root +FD: net/minecraft/client/model/PufferfishBigModel/f_170832_ net/minecraft/client/model/PufferfishBigModel/leftBlueFin +FD: net/minecraft/client/model/PufferfishBigModel/f_170833_ net/minecraft/client/model/PufferfishBigModel/rightBlueFin +FD: net/minecraft/client/model/PufferfishMidModel/f_170838_ net/minecraft/client/model/PufferfishMidModel/root +FD: net/minecraft/client/model/PufferfishMidModel/f_170839_ net/minecraft/client/model/PufferfishMidModel/leftBlueFin +FD: net/minecraft/client/model/PufferfishMidModel/f_170840_ net/minecraft/client/model/PufferfishMidModel/rightBlueFin +FD: net/minecraft/client/model/PufferfishSmallModel/f_170845_ net/minecraft/client/model/PufferfishSmallModel/root +FD: net/minecraft/client/model/PufferfishSmallModel/f_170846_ net/minecraft/client/model/PufferfishSmallModel/leftFin +FD: net/minecraft/client/model/PufferfishSmallModel/f_170847_ net/minecraft/client/model/PufferfishSmallModel/rightFin +FD: net/minecraft/client/model/QuadrupedModel/f_103492_ net/minecraft/client/model/QuadrupedModel/head +FD: net/minecraft/client/model/QuadrupedModel/f_103493_ net/minecraft/client/model/QuadrupedModel/body +FD: net/minecraft/client/model/QuadrupedModel/f_170852_ net/minecraft/client/model/QuadrupedModel/rightHindLeg +FD: net/minecraft/client/model/QuadrupedModel/f_170853_ net/minecraft/client/model/QuadrupedModel/leftHindLeg +FD: net/minecraft/client/model/QuadrupedModel/f_170854_ net/minecraft/client/model/QuadrupedModel/rightFrontLeg +FD: net/minecraft/client/model/QuadrupedModel/f_170855_ net/minecraft/client/model/QuadrupedModel/leftFrontLeg +FD: net/minecraft/client/model/RabbitModel/f_103520_ net/minecraft/client/model/RabbitModel/body +FD: net/minecraft/client/model/RabbitModel/f_103523_ net/minecraft/client/model/RabbitModel/head +FD: net/minecraft/client/model/RabbitModel/f_103526_ net/minecraft/client/model/RabbitModel/tail +FD: net/minecraft/client/model/RabbitModel/f_103527_ net/minecraft/client/model/RabbitModel/nose +FD: net/minecraft/client/model/RabbitModel/f_103528_ net/minecraft/client/model/RabbitModel/jumpRotation +FD: net/minecraft/client/model/RabbitModel/f_170867_ net/minecraft/client/model/RabbitModel/REAR_JUMP_ANGLE +FD: net/minecraft/client/model/RabbitModel/f_170868_ net/minecraft/client/model/RabbitModel/FRONT_JUMP_ANGLE +FD: net/minecraft/client/model/RabbitModel/f_170869_ net/minecraft/client/model/RabbitModel/LEFT_HAUNCH +FD: net/minecraft/client/model/RabbitModel/f_170870_ net/minecraft/client/model/RabbitModel/RIGHT_HAUNCH +FD: net/minecraft/client/model/RabbitModel/f_170871_ net/minecraft/client/model/RabbitModel/leftRearFoot +FD: net/minecraft/client/model/RabbitModel/f_170872_ net/minecraft/client/model/RabbitModel/rightRearFoot +FD: net/minecraft/client/model/RabbitModel/f_170873_ net/minecraft/client/model/RabbitModel/leftHaunch +FD: net/minecraft/client/model/RabbitModel/f_170874_ net/minecraft/client/model/RabbitModel/rightHaunch +FD: net/minecraft/client/model/RabbitModel/f_170875_ net/minecraft/client/model/RabbitModel/leftFrontLeg +FD: net/minecraft/client/model/RabbitModel/f_170876_ net/minecraft/client/model/RabbitModel/rightFrontLeg +FD: net/minecraft/client/model/RabbitModel/f_170877_ net/minecraft/client/model/RabbitModel/rightEar +FD: net/minecraft/client/model/RabbitModel/f_170878_ net/minecraft/client/model/RabbitModel/leftEar +FD: net/minecraft/client/model/RabbitModel/f_170879_ net/minecraft/client/model/RabbitModel/NEW_SCALE +FD: net/minecraft/client/model/RaftModel/f_243674_ net/minecraft/client/model/RaftModel/BOTTOM +FD: net/minecraft/client/model/RaftModel/f_243712_ net/minecraft/client/model/RaftModel/LEFT_PADDLE +FD: net/minecraft/client/model/RaftModel/f_243747_ net/minecraft/client/model/RaftModel/rightPaddle +FD: net/minecraft/client/model/RaftModel/f_244253_ net/minecraft/client/model/RaftModel/RIGHT_PADDLE +FD: net/minecraft/client/model/RaftModel/f_244557_ net/minecraft/client/model/RaftModel/parts +FD: net/minecraft/client/model/RaftModel/f_244618_ net/minecraft/client/model/RaftModel/leftPaddle +FD: net/minecraft/client/model/RavagerModel/f_103598_ net/minecraft/client/model/RavagerModel/head +FD: net/minecraft/client/model/RavagerModel/f_103599_ net/minecraft/client/model/RavagerModel/mouth +FD: net/minecraft/client/model/RavagerModel/f_103605_ net/minecraft/client/model/RavagerModel/neck +FD: net/minecraft/client/model/RavagerModel/f_170883_ net/minecraft/client/model/RavagerModel/root +FD: net/minecraft/client/model/RavagerModel/f_170884_ net/minecraft/client/model/RavagerModel/rightHindLeg +FD: net/minecraft/client/model/RavagerModel/f_170885_ net/minecraft/client/model/RavagerModel/leftHindLeg +FD: net/minecraft/client/model/RavagerModel/f_170886_ net/minecraft/client/model/RavagerModel/rightFrontLeg +FD: net/minecraft/client/model/RavagerModel/f_170887_ net/minecraft/client/model/RavagerModel/leftFrontLeg +FD: net/minecraft/client/model/SalmonModel/f_103633_ net/minecraft/client/model/SalmonModel/bodyBack +FD: net/minecraft/client/model/SalmonModel/f_170892_ net/minecraft/client/model/SalmonModel/BODY_FRONT +FD: net/minecraft/client/model/SalmonModel/f_170893_ net/minecraft/client/model/SalmonModel/BODY_BACK +FD: net/minecraft/client/model/SalmonModel/f_170894_ net/minecraft/client/model/SalmonModel/root +FD: net/minecraft/client/model/SheepFurModel/f_103646_ net/minecraft/client/model/SheepFurModel/headXRot +FD: net/minecraft/client/model/SheepModel/f_103672_ net/minecraft/client/model/SheepModel/headXRot +FD: net/minecraft/client/model/ShieldModel/f_103698_ net/minecraft/client/model/ShieldModel/plate +FD: net/minecraft/client/model/ShieldModel/f_103699_ net/minecraft/client/model/ShieldModel/handle +FD: net/minecraft/client/model/ShieldModel/f_170905_ net/minecraft/client/model/ShieldModel/PLATE +FD: net/minecraft/client/model/ShieldModel/f_170906_ net/minecraft/client/model/ShieldModel/HANDLE +FD: net/minecraft/client/model/ShieldModel/f_170907_ net/minecraft/client/model/ShieldModel/SHIELD_WIDTH +FD: net/minecraft/client/model/ShieldModel/f_170908_ net/minecraft/client/model/ShieldModel/SHIELD_HEIGHT +FD: net/minecraft/client/model/ShieldModel/f_170909_ net/minecraft/client/model/ShieldModel/root +FD: net/minecraft/client/model/ShulkerBulletModel/f_103712_ net/minecraft/client/model/ShulkerBulletModel/main +FD: net/minecraft/client/model/ShulkerBulletModel/f_170913_ net/minecraft/client/model/ShulkerBulletModel/MAIN +FD: net/minecraft/client/model/ShulkerBulletModel/f_170914_ net/minecraft/client/model/ShulkerBulletModel/root +FD: net/minecraft/client/model/ShulkerModel/f_103722_ net/minecraft/client/model/ShulkerModel/base +FD: net/minecraft/client/model/ShulkerModel/f_103723_ net/minecraft/client/model/ShulkerModel/lid +FD: net/minecraft/client/model/ShulkerModel/f_103724_ net/minecraft/client/model/ShulkerModel/head +FD: net/minecraft/client/model/ShulkerModel/f_170919_ net/minecraft/client/model/ShulkerModel/LID +FD: net/minecraft/client/model/ShulkerModel/f_170920_ net/minecraft/client/model/ShulkerModel/BASE +FD: net/minecraft/client/model/SilverfishModel/f_103744_ net/minecraft/client/model/SilverfishModel/bodyParts +FD: net/minecraft/client/model/SilverfishModel/f_103745_ net/minecraft/client/model/SilverfishModel/bodyLayers +FD: net/minecraft/client/model/SilverfishModel/f_103748_ net/minecraft/client/model/SilverfishModel/BODY_SIZES +FD: net/minecraft/client/model/SilverfishModel/f_103749_ net/minecraft/client/model/SilverfishModel/BODY_TEXS +FD: net/minecraft/client/model/SilverfishModel/f_170924_ net/minecraft/client/model/SilverfishModel/BODY_COUNT +FD: net/minecraft/client/model/SilverfishModel/f_170925_ net/minecraft/client/model/SilverfishModel/root +FD: net/minecraft/client/model/SkullModel/f_103804_ net/minecraft/client/model/SkullModel/head +FD: net/minecraft/client/model/SkullModel/f_170943_ net/minecraft/client/model/SkullModel/root +FD: net/minecraft/client/model/SlimeModel/f_170953_ net/minecraft/client/model/SlimeModel/root +FD: net/minecraft/client/model/SnifferModel/f_271235_ net/minecraft/client/model/SnifferModel/root +FD: net/minecraft/client/model/SnifferModel/f_273862_ net/minecraft/client/model/SnifferModel/head +FD: net/minecraft/client/model/SnifferModel/f_276540_ net/minecraft/client/model/SnifferModel/WALK_ANIMATION_SPEED_MAX +FD: net/minecraft/client/model/SnifferModel/f_278124_ net/minecraft/client/model/SnifferModel/WALK_ANIMATION_SCALE_FACTOR +FD: net/minecraft/client/model/SnowGolemModel/f_103839_ net/minecraft/client/model/SnowGolemModel/head +FD: net/minecraft/client/model/SnowGolemModel/f_170959_ net/minecraft/client/model/SnowGolemModel/UPPER_BODY +FD: net/minecraft/client/model/SnowGolemModel/f_170960_ net/minecraft/client/model/SnowGolemModel/root +FD: net/minecraft/client/model/SnowGolemModel/f_170961_ net/minecraft/client/model/SnowGolemModel/upperBody +FD: net/minecraft/client/model/SnowGolemModel/f_170962_ net/minecraft/client/model/SnowGolemModel/leftArm +FD: net/minecraft/client/model/SnowGolemModel/f_170963_ net/minecraft/client/model/SnowGolemModel/rightArm +FD: net/minecraft/client/model/SpiderModel/f_103852_ net/minecraft/client/model/SpiderModel/head +FD: net/minecraft/client/model/SpiderModel/f_170968_ net/minecraft/client/model/SpiderModel/BODY_0 +FD: net/minecraft/client/model/SpiderModel/f_170969_ net/minecraft/client/model/SpiderModel/BODY_1 +FD: net/minecraft/client/model/SpiderModel/f_170970_ net/minecraft/client/model/SpiderModel/RIGHT_MIDDLE_FRONT_LEG +FD: net/minecraft/client/model/SpiderModel/f_170971_ net/minecraft/client/model/SpiderModel/LEFT_MIDDLE_FRONT_LEG +FD: net/minecraft/client/model/SpiderModel/f_170972_ net/minecraft/client/model/SpiderModel/RIGHT_MIDDLE_HIND_LEG +FD: net/minecraft/client/model/SpiderModel/f_170973_ net/minecraft/client/model/SpiderModel/LEFT_MIDDLE_HIND_LEG +FD: net/minecraft/client/model/SpiderModel/f_170974_ net/minecraft/client/model/SpiderModel/root +FD: net/minecraft/client/model/SpiderModel/f_170975_ net/minecraft/client/model/SpiderModel/rightHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170976_ net/minecraft/client/model/SpiderModel/leftHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170977_ net/minecraft/client/model/SpiderModel/rightMiddleHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170978_ net/minecraft/client/model/SpiderModel/leftMiddleHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170979_ net/minecraft/client/model/SpiderModel/rightMiddleFrontLeg +FD: net/minecraft/client/model/SpiderModel/f_170980_ net/minecraft/client/model/SpiderModel/leftMiddleFrontLeg +FD: net/minecraft/client/model/SpiderModel/f_170981_ net/minecraft/client/model/SpiderModel/rightFrontLeg +FD: net/minecraft/client/model/SpiderModel/f_170982_ net/minecraft/client/model/SpiderModel/leftFrontLeg +FD: net/minecraft/client/model/SquidModel/f_103873_ net/minecraft/client/model/SquidModel/tentacles +FD: net/minecraft/client/model/SquidModel/f_170987_ net/minecraft/client/model/SquidModel/root +FD: net/minecraft/client/model/StriderModel/f_103884_ net/minecraft/client/model/StriderModel/rightLeg +FD: net/minecraft/client/model/StriderModel/f_103885_ net/minecraft/client/model/StriderModel/leftLeg +FD: net/minecraft/client/model/StriderModel/f_103886_ net/minecraft/client/model/StriderModel/body +FD: net/minecraft/client/model/StriderModel/f_170997_ net/minecraft/client/model/StriderModel/RIGHT_BOTTOM_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_170998_ net/minecraft/client/model/StriderModel/RIGHT_MIDDLE_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_170999_ net/minecraft/client/model/StriderModel/RIGHT_TOP_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171000_ net/minecraft/client/model/StriderModel/LEFT_TOP_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171001_ net/minecraft/client/model/StriderModel/LEFT_MIDDLE_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171002_ net/minecraft/client/model/StriderModel/LEFT_BOTTOM_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171003_ net/minecraft/client/model/StriderModel/root +FD: net/minecraft/client/model/StriderModel/f_171004_ net/minecraft/client/model/StriderModel/rightBottomBristle +FD: net/minecraft/client/model/StriderModel/f_171005_ net/minecraft/client/model/StriderModel/rightMiddleBristle +FD: net/minecraft/client/model/StriderModel/f_171006_ net/minecraft/client/model/StriderModel/rightTopBristle +FD: net/minecraft/client/model/StriderModel/f_171007_ net/minecraft/client/model/StriderModel/leftTopBristle +FD: net/minecraft/client/model/StriderModel/f_171008_ net/minecraft/client/model/StriderModel/leftMiddleBristle +FD: net/minecraft/client/model/StriderModel/f_171009_ net/minecraft/client/model/StriderModel/leftBottomBristle +FD: net/minecraft/client/model/TadpoleModel/f_233440_ net/minecraft/client/model/TadpoleModel/root +FD: net/minecraft/client/model/TadpoleModel/f_233441_ net/minecraft/client/model/TadpoleModel/tail +FD: net/minecraft/client/model/TridentModel/f_103914_ net/minecraft/client/model/TridentModel/TEXTURE +FD: net/minecraft/client/model/TridentModel/f_171014_ net/minecraft/client/model/TridentModel/root +FD: net/minecraft/client/model/TropicalFishModelA/f_103953_ net/minecraft/client/model/TropicalFishModelA/tail +FD: net/minecraft/client/model/TropicalFishModelA/f_171018_ net/minecraft/client/model/TropicalFishModelA/root +FD: net/minecraft/client/model/TropicalFishModelB/f_103968_ net/minecraft/client/model/TropicalFishModelB/tail +FD: net/minecraft/client/model/TropicalFishModelB/f_171034_ net/minecraft/client/model/TropicalFishModelB/root +FD: net/minecraft/client/model/TurtleModel/f_103983_ net/minecraft/client/model/TurtleModel/eggBelly +FD: net/minecraft/client/model/TurtleModel/f_171040_ net/minecraft/client/model/TurtleModel/EGG_BELLY +FD: net/minecraft/client/model/VexModel/f_104010_ net/minecraft/client/model/VexModel/leftWing +FD: net/minecraft/client/model/VexModel/f_104011_ net/minecraft/client/model/VexModel/rightWing +FD: net/minecraft/client/model/VexModel/f_256879_ net/minecraft/client/model/VexModel/leftArm +FD: net/minecraft/client/model/VexModel/f_256999_ net/minecraft/client/model/VexModel/body +FD: net/minecraft/client/model/VexModel/f_257013_ net/minecraft/client/model/VexModel/rightArm +FD: net/minecraft/client/model/VexModel/f_257017_ net/minecraft/client/model/VexModel/root +FD: net/minecraft/client/model/VexModel/f_263122_ net/minecraft/client/model/VexModel/head +FD: net/minecraft/client/model/VillagerModel/f_104036_ net/minecraft/client/model/VillagerModel/head +FD: net/minecraft/client/model/VillagerModel/f_104037_ net/minecraft/client/model/VillagerModel/hat +FD: net/minecraft/client/model/VillagerModel/f_104038_ net/minecraft/client/model/VillagerModel/hatRim +FD: net/minecraft/client/model/VillagerModel/f_104044_ net/minecraft/client/model/VillagerModel/nose +FD: net/minecraft/client/model/VillagerModel/f_171047_ net/minecraft/client/model/VillagerModel/root +FD: net/minecraft/client/model/VillagerModel/f_171048_ net/minecraft/client/model/VillagerModel/rightLeg +FD: net/minecraft/client/model/VillagerModel/f_171049_ net/minecraft/client/model/VillagerModel/leftLeg +FD: net/minecraft/client/model/WardenModel/f_233493_ net/minecraft/client/model/WardenModel/bone +FD: net/minecraft/client/model/WardenModel/f_233494_ net/minecraft/client/model/WardenModel/body +FD: net/minecraft/client/model/WardenModel/f_233495_ net/minecraft/client/model/WardenModel/head +FD: net/minecraft/client/model/WardenModel/f_233496_ net/minecraft/client/model/WardenModel/rightTendril +FD: net/minecraft/client/model/WardenModel/f_233497_ net/minecraft/client/model/WardenModel/leftTendril +FD: net/minecraft/client/model/WardenModel/f_233498_ net/minecraft/client/model/WardenModel/leftLeg +FD: net/minecraft/client/model/WardenModel/f_233499_ net/minecraft/client/model/WardenModel/leftArm +FD: net/minecraft/client/model/WardenModel/f_233500_ net/minecraft/client/model/WardenModel/leftRibcage +FD: net/minecraft/client/model/WardenModel/f_233501_ net/minecraft/client/model/WardenModel/rightArm +FD: net/minecraft/client/model/WardenModel/f_233502_ net/minecraft/client/model/WardenModel/rightLeg +FD: net/minecraft/client/model/WardenModel/f_233503_ net/minecraft/client/model/WardenModel/rightRibcage +FD: net/minecraft/client/model/WardenModel/f_233504_ net/minecraft/client/model/WardenModel/DEFAULT_ARM_X_Y +FD: net/minecraft/client/model/WardenModel/f_233505_ net/minecraft/client/model/WardenModel/DEFAULT_ARM_Z +FD: net/minecraft/client/model/WardenModel/f_233506_ net/minecraft/client/model/WardenModel/root +FD: net/minecraft/client/model/WardenModel/f_233507_ net/minecraft/client/model/WardenModel/tendrilsLayerModelParts +FD: net/minecraft/client/model/WardenModel/f_233508_ net/minecraft/client/model/WardenModel/heartLayerModelParts +FD: net/minecraft/client/model/WardenModel/f_233509_ net/minecraft/client/model/WardenModel/bioluminescentLayerModelParts +FD: net/minecraft/client/model/WardenModel/f_233510_ net/minecraft/client/model/WardenModel/pulsatingSpotsLayerModelParts +FD: net/minecraft/client/model/WitchModel/f_104062_ net/minecraft/client/model/WitchModel/holdingItem +FD: net/minecraft/client/model/WitherBossModel/f_171057_ net/minecraft/client/model/WitherBossModel/RIBCAGE +FD: net/minecraft/client/model/WitherBossModel/f_171058_ net/minecraft/client/model/WitherBossModel/CENTER_HEAD +FD: net/minecraft/client/model/WitherBossModel/f_171059_ net/minecraft/client/model/WitherBossModel/RIGHT_HEAD +FD: net/minecraft/client/model/WitherBossModel/f_171060_ net/minecraft/client/model/WitherBossModel/LEFT_HEAD +FD: net/minecraft/client/model/WitherBossModel/f_171061_ net/minecraft/client/model/WitherBossModel/RIBCAGE_X_ROT_OFFSET +FD: net/minecraft/client/model/WitherBossModel/f_171062_ net/minecraft/client/model/WitherBossModel/TAIL_X_ROT_OFFSET +FD: net/minecraft/client/model/WitherBossModel/f_171063_ net/minecraft/client/model/WitherBossModel/root +FD: net/minecraft/client/model/WitherBossModel/f_171064_ net/minecraft/client/model/WitherBossModel/centerHead +FD: net/minecraft/client/model/WitherBossModel/f_171065_ net/minecraft/client/model/WitherBossModel/rightHead +FD: net/minecraft/client/model/WitherBossModel/f_171066_ net/minecraft/client/model/WitherBossModel/leftHead +FD: net/minecraft/client/model/WitherBossModel/f_171067_ net/minecraft/client/model/WitherBossModel/ribcage +FD: net/minecraft/client/model/WitherBossModel/f_171068_ net/minecraft/client/model/WitherBossModel/tail +FD: net/minecraft/client/model/WolfModel/f_104107_ net/minecraft/client/model/WolfModel/head +FD: net/minecraft/client/model/WolfModel/f_104108_ net/minecraft/client/model/WolfModel/realHead +FD: net/minecraft/client/model/WolfModel/f_104109_ net/minecraft/client/model/WolfModel/body +FD: net/minecraft/client/model/WolfModel/f_104114_ net/minecraft/client/model/WolfModel/tail +FD: net/minecraft/client/model/WolfModel/f_104115_ net/minecraft/client/model/WolfModel/realTail +FD: net/minecraft/client/model/WolfModel/f_104116_ net/minecraft/client/model/WolfModel/upperBody +FD: net/minecraft/client/model/WolfModel/f_171078_ net/minecraft/client/model/WolfModel/REAL_HEAD +FD: net/minecraft/client/model/WolfModel/f_171079_ net/minecraft/client/model/WolfModel/UPPER_BODY +FD: net/minecraft/client/model/WolfModel/f_171080_ net/minecraft/client/model/WolfModel/REAL_TAIL +FD: net/minecraft/client/model/WolfModel/f_171081_ net/minecraft/client/model/WolfModel/rightHindLeg +FD: net/minecraft/client/model/WolfModel/f_171082_ net/minecraft/client/model/WolfModel/leftHindLeg +FD: net/minecraft/client/model/WolfModel/f_171083_ net/minecraft/client/model/WolfModel/rightFrontLeg +FD: net/minecraft/client/model/WolfModel/f_171084_ net/minecraft/client/model/WolfModel/leftFrontLeg +FD: net/minecraft/client/model/WolfModel/f_171085_ net/minecraft/client/model/WolfModel/LEG_SIZE +FD: net/minecraft/client/model/ZombieVillagerModel/f_104156_ net/minecraft/client/model/ZombieVillagerModel/hatRim +FD: net/minecraft/client/model/dragon/DragonHeadModel/f_104183_ net/minecraft/client/model/dragon/DragonHeadModel/head +FD: net/minecraft/client/model/dragon/DragonHeadModel/f_104184_ net/minecraft/client/model/dragon/DragonHeadModel/jaw +FD: net/minecraft/client/model/geom/EntityModelSet/f_171099_ net/minecraft/client/model/geom/EntityModelSet/roots +FD: net/minecraft/client/model/geom/LayerDefinitions/f_171105_ net/minecraft/client/model/geom/LayerDefinitions/FISH_PATTERN_DEFORMATION +FD: net/minecraft/client/model/geom/LayerDefinitions/f_171106_ net/minecraft/client/model/geom/LayerDefinitions/OUTER_ARMOR_DEFORMATION +FD: net/minecraft/client/model/geom/LayerDefinitions/f_171107_ net/minecraft/client/model/geom/LayerDefinitions/INNER_ARMOR_DEFORMATION +FD: net/minecraft/client/model/geom/ModelLayerLocation/f_171118_ net/minecraft/client/model/geom/ModelLayerLocation/model +FD: net/minecraft/client/model/geom/ModelLayerLocation/f_171119_ net/minecraft/client/model/geom/ModelLayerLocation/layer +FD: net/minecraft/client/model/geom/ModelLayers/f_171129_ net/minecraft/client/model/geom/ModelLayers/CREEPER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171130_ net/minecraft/client/model/geom/ModelLayers/CREEPER_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171131_ net/minecraft/client/model/geom/ModelLayers/DOLPHIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171132_ net/minecraft/client/model/geom/ModelLayers/DONKEY +FD: net/minecraft/client/model/geom/ModelLayers/f_171133_ net/minecraft/client/model/geom/ModelLayers/DOUBLE_CHEST_LEFT +FD: net/minecraft/client/model/geom/ModelLayers/f_171134_ net/minecraft/client/model/geom/ModelLayers/DOUBLE_CHEST_RIGHT +FD: net/minecraft/client/model/geom/ModelLayers/f_171135_ net/minecraft/client/model/geom/ModelLayers/DRAGON_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171136_ net/minecraft/client/model/geom/ModelLayers/DROWNED +FD: net/minecraft/client/model/geom/ModelLayers/f_171137_ net/minecraft/client/model/geom/ModelLayers/DROWNED_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171138_ net/minecraft/client/model/geom/ModelLayers/DROWNED_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171139_ net/minecraft/client/model/geom/ModelLayers/DROWNED_OUTER_LAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171140_ net/minecraft/client/model/geom/ModelLayers/ELDER_GUARDIAN +FD: net/minecraft/client/model/geom/ModelLayers/f_171141_ net/minecraft/client/model/geom/ModelLayers/ELYTRA +FD: net/minecraft/client/model/geom/ModelLayers/f_171142_ net/minecraft/client/model/geom/ModelLayers/ENDERMAN +FD: net/minecraft/client/model/geom/ModelLayers/f_171143_ net/minecraft/client/model/geom/ModelLayers/ENDERMITE +FD: net/minecraft/client/model/geom/ModelLayers/f_171144_ net/minecraft/client/model/geom/ModelLayers/ENDER_DRAGON +FD: net/minecraft/client/model/geom/ModelLayers/f_171145_ net/minecraft/client/model/geom/ModelLayers/END_CRYSTAL +FD: net/minecraft/client/model/geom/ModelLayers/f_171146_ net/minecraft/client/model/geom/ModelLayers/EVOKER +FD: net/minecraft/client/model/geom/ModelLayers/f_171147_ net/minecraft/client/model/geom/ModelLayers/EVOKER_FANGS +FD: net/minecraft/client/model/geom/ModelLayers/f_171148_ net/minecraft/client/model/geom/ModelLayers/FOX +FD: net/minecraft/client/model/geom/ModelLayers/f_171149_ net/minecraft/client/model/geom/ModelLayers/FURNACE_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171150_ net/minecraft/client/model/geom/ModelLayers/GHAST +FD: net/minecraft/client/model/geom/ModelLayers/f_171151_ net/minecraft/client/model/geom/ModelLayers/GIANT +FD: net/minecraft/client/model/geom/ModelLayers/f_171152_ net/minecraft/client/model/geom/ModelLayers/GIANT_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171153_ net/minecraft/client/model/geom/ModelLayers/GIANT_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171154_ net/minecraft/client/model/geom/ModelLayers/GLOW_SQUID +FD: net/minecraft/client/model/geom/ModelLayers/f_171155_ net/minecraft/client/model/geom/ModelLayers/ARMOR_STAND +FD: net/minecraft/client/model/geom/ModelLayers/f_171156_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_BRUTE_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171157_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_BRUTE_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171158_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171159_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171160_ net/minecraft/client/model/geom/ModelLayers/PIG_SADDLE +FD: net/minecraft/client/model/geom/ModelLayers/f_171161_ net/minecraft/client/model/geom/ModelLayers/PILLAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171162_ net/minecraft/client/model/geom/ModelLayers/PLAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171163_ net/minecraft/client/model/geom/ModelLayers/PLAYER_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171164_ net/minecraft/client/model/geom/ModelLayers/PLAYER_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171165_ net/minecraft/client/model/geom/ModelLayers/PLAYER_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171166_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SLIM +FD: net/minecraft/client/model/geom/ModelLayers/f_171167_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SLIM_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171168_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SLIM_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171169_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SPIN_ATTACK +FD: net/minecraft/client/model/geom/ModelLayers/f_171170_ net/minecraft/client/model/geom/ModelLayers/POLAR_BEAR +FD: net/minecraft/client/model/geom/ModelLayers/f_171171_ net/minecraft/client/model/geom/ModelLayers/PUFFERFISH_BIG +FD: net/minecraft/client/model/geom/ModelLayers/f_171172_ net/minecraft/client/model/geom/ModelLayers/PUFFERFISH_MEDIUM +FD: net/minecraft/client/model/geom/ModelLayers/f_171173_ net/minecraft/client/model/geom/ModelLayers/PUFFERFISH_SMALL +FD: net/minecraft/client/model/geom/ModelLayers/f_171174_ net/minecraft/client/model/geom/ModelLayers/RABBIT +FD: net/minecraft/client/model/geom/ModelLayers/f_171175_ net/minecraft/client/model/geom/ModelLayers/RAVAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171176_ net/minecraft/client/model/geom/ModelLayers/SALMON +FD: net/minecraft/client/model/geom/ModelLayers/f_171177_ net/minecraft/client/model/geom/ModelLayers/SHEEP +FD: net/minecraft/client/model/geom/ModelLayers/f_171178_ net/minecraft/client/model/geom/ModelLayers/SHEEP_FUR +FD: net/minecraft/client/model/geom/ModelLayers/f_171179_ net/minecraft/client/model/geom/ModelLayers/SHIELD +FD: net/minecraft/client/model/geom/ModelLayers/f_171180_ net/minecraft/client/model/geom/ModelLayers/SHULKER +FD: net/minecraft/client/model/geom/ModelLayers/f_171181_ net/minecraft/client/model/geom/ModelLayers/SHULKER_BULLET +FD: net/minecraft/client/model/geom/ModelLayers/f_171182_ net/minecraft/client/model/geom/ModelLayers/GOAT +FD: net/minecraft/client/model/geom/ModelLayers/f_171183_ net/minecraft/client/model/geom/ModelLayers/GUARDIAN +FD: net/minecraft/client/model/geom/ModelLayers/f_171184_ net/minecraft/client/model/geom/ModelLayers/HOGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171185_ net/minecraft/client/model/geom/ModelLayers/HOPPER_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171186_ net/minecraft/client/model/geom/ModelLayers/HORSE +FD: net/minecraft/client/model/geom/ModelLayers/f_171187_ net/minecraft/client/model/geom/ModelLayers/HORSE_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171188_ net/minecraft/client/model/geom/ModelLayers/HUSK +FD: net/minecraft/client/model/geom/ModelLayers/f_171189_ net/minecraft/client/model/geom/ModelLayers/HUSK_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171190_ net/minecraft/client/model/geom/ModelLayers/HUSK_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171191_ net/minecraft/client/model/geom/ModelLayers/ILLUSIONER +FD: net/minecraft/client/model/geom/ModelLayers/f_171192_ net/minecraft/client/model/geom/ModelLayers/IRON_GOLEM +FD: net/minecraft/client/model/geom/ModelLayers/f_171193_ net/minecraft/client/model/geom/ModelLayers/LEASH_KNOT +FD: net/minecraft/client/model/geom/ModelLayers/f_171194_ net/minecraft/client/model/geom/ModelLayers/LLAMA +FD: net/minecraft/client/model/geom/ModelLayers/f_171195_ net/minecraft/client/model/geom/ModelLayers/LLAMA_DECOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171196_ net/minecraft/client/model/geom/ModelLayers/LLAMA_SPIT +FD: net/minecraft/client/model/geom/ModelLayers/f_171197_ net/minecraft/client/model/geom/ModelLayers/MAGMA_CUBE +FD: net/minecraft/client/model/geom/ModelLayers/f_171198_ net/minecraft/client/model/geom/ModelLayers/MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171199_ net/minecraft/client/model/geom/ModelLayers/MOOSHROOM +FD: net/minecraft/client/model/geom/ModelLayers/f_171200_ net/minecraft/client/model/geom/ModelLayers/MULE +FD: net/minecraft/client/model/geom/ModelLayers/f_171201_ net/minecraft/client/model/geom/ModelLayers/OCELOT +FD: net/minecraft/client/model/geom/ModelLayers/f_171202_ net/minecraft/client/model/geom/ModelLayers/PANDA +FD: net/minecraft/client/model/geom/ModelLayers/f_171203_ net/minecraft/client/model/geom/ModelLayers/PARROT +FD: net/minecraft/client/model/geom/ModelLayers/f_171204_ net/minecraft/client/model/geom/ModelLayers/PHANTOM +FD: net/minecraft/client/model/geom/ModelLayers/f_171205_ net/minecraft/client/model/geom/ModelLayers/PIG +FD: net/minecraft/client/model/geom/ModelLayers/f_171206_ net/minecraft/client/model/geom/ModelLayers/PIGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171207_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_BRUTE +FD: net/minecraft/client/model/geom/ModelLayers/f_171208_ net/minecraft/client/model/geom/ModelLayers/ARMOR_STAND_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171209_ net/minecraft/client/model/geom/ModelLayers/VEX +FD: net/minecraft/client/model/geom/ModelLayers/f_171210_ net/minecraft/client/model/geom/ModelLayers/VILLAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171211_ net/minecraft/client/model/geom/ModelLayers/VINDICATOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171212_ net/minecraft/client/model/geom/ModelLayers/WANDERING_TRADER +FD: net/minecraft/client/model/geom/ModelLayers/f_171213_ net/minecraft/client/model/geom/ModelLayers/WITCH +FD: net/minecraft/client/model/geom/ModelLayers/f_171214_ net/minecraft/client/model/geom/ModelLayers/WITHER +FD: net/minecraft/client/model/geom/ModelLayers/f_171215_ net/minecraft/client/model/geom/ModelLayers/WITHER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171216_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON +FD: net/minecraft/client/model/geom/ModelLayers/f_171217_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171218_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171219_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171220_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171221_ net/minecraft/client/model/geom/ModelLayers/WOLF +FD: net/minecraft/client/model/geom/ModelLayers/f_171222_ net/minecraft/client/model/geom/ModelLayers/ZOGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171223_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE +FD: net/minecraft/client/model/geom/ModelLayers/f_171224_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171225_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_HORSE +FD: net/minecraft/client/model/geom/ModelLayers/f_171226_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171227_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171228_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_VILLAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171229_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_VILLAGER_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171230_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_VILLAGER_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171231_ net/minecraft/client/model/geom/ModelLayers/ZOMBIFIED_PIGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171232_ net/minecraft/client/model/geom/ModelLayers/ZOMBIFIED_PIGLIN_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171233_ net/minecraft/client/model/geom/ModelLayers/ZOMBIFIED_PIGLIN_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171234_ net/minecraft/client/model/geom/ModelLayers/DEFAULT_LAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171235_ net/minecraft/client/model/geom/ModelLayers/SILVERFISH +FD: net/minecraft/client/model/geom/ModelLayers/f_171236_ net/minecraft/client/model/geom/ModelLayers/SKELETON +FD: net/minecraft/client/model/geom/ModelLayers/f_171237_ net/minecraft/client/model/geom/ModelLayers/SKELETON_HORSE +FD: net/minecraft/client/model/geom/ModelLayers/f_171238_ net/minecraft/client/model/geom/ModelLayers/SKELETON_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171239_ net/minecraft/client/model/geom/ModelLayers/SKELETON_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171240_ net/minecraft/client/model/geom/ModelLayers/SKELETON_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171241_ net/minecraft/client/model/geom/ModelLayers/SLIME +FD: net/minecraft/client/model/geom/ModelLayers/f_171242_ net/minecraft/client/model/geom/ModelLayers/SLIME_OUTER +FD: net/minecraft/client/model/geom/ModelLayers/f_171243_ net/minecraft/client/model/geom/ModelLayers/SNOW_GOLEM +FD: net/minecraft/client/model/geom/ModelLayers/f_171244_ net/minecraft/client/model/geom/ModelLayers/SPAWNER_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171245_ net/minecraft/client/model/geom/ModelLayers/SPIDER +FD: net/minecraft/client/model/geom/ModelLayers/f_171246_ net/minecraft/client/model/geom/ModelLayers/SQUID +FD: net/minecraft/client/model/geom/ModelLayers/f_171247_ net/minecraft/client/model/geom/ModelLayers/STRAY +FD: net/minecraft/client/model/geom/ModelLayers/f_171248_ net/minecraft/client/model/geom/ModelLayers/STRAY_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171249_ net/minecraft/client/model/geom/ModelLayers/STRAY_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171250_ net/minecraft/client/model/geom/ModelLayers/STRAY_OUTER_LAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171251_ net/minecraft/client/model/geom/ModelLayers/STRIDER +FD: net/minecraft/client/model/geom/ModelLayers/f_171252_ net/minecraft/client/model/geom/ModelLayers/STRIDER_SADDLE +FD: net/minecraft/client/model/geom/ModelLayers/f_171253_ net/minecraft/client/model/geom/ModelLayers/TNT_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171254_ net/minecraft/client/model/geom/ModelLayers/TRADER_LLAMA +FD: net/minecraft/client/model/geom/ModelLayers/f_171255_ net/minecraft/client/model/geom/ModelLayers/TRIDENT +FD: net/minecraft/client/model/geom/ModelLayers/f_171256_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_LARGE +FD: net/minecraft/client/model/geom/ModelLayers/f_171257_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_LARGE_PATTERN +FD: net/minecraft/client/model/geom/ModelLayers/f_171258_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_SMALL +FD: net/minecraft/client/model/geom/ModelLayers/f_171259_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_SMALL_PATTERN +FD: net/minecraft/client/model/geom/ModelLayers/f_171260_ net/minecraft/client/model/geom/ModelLayers/TURTLE +FD: net/minecraft/client/model/geom/ModelLayers/f_171261_ net/minecraft/client/model/geom/ModelLayers/ARMOR_STAND_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171262_ net/minecraft/client/model/geom/ModelLayers/ALL_MODELS +FD: net/minecraft/client/model/geom/ModelLayers/f_171263_ net/minecraft/client/model/geom/ModelLayers/AXOLOTL +FD: net/minecraft/client/model/geom/ModelLayers/f_171264_ net/minecraft/client/model/geom/ModelLayers/BANNER +FD: net/minecraft/client/model/geom/ModelLayers/f_171265_ net/minecraft/client/model/geom/ModelLayers/BAT +FD: net/minecraft/client/model/geom/ModelLayers/f_171266_ net/minecraft/client/model/geom/ModelLayers/BED_FOOT +FD: net/minecraft/client/model/geom/ModelLayers/f_171267_ net/minecraft/client/model/geom/ModelLayers/BED_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171268_ net/minecraft/client/model/geom/ModelLayers/BEE +FD: net/minecraft/client/model/geom/ModelLayers/f_171269_ net/minecraft/client/model/geom/ModelLayers/BELL +FD: net/minecraft/client/model/geom/ModelLayers/f_171270_ net/minecraft/client/model/geom/ModelLayers/BLAZE +FD: net/minecraft/client/model/geom/ModelLayers/f_171271_ net/minecraft/client/model/geom/ModelLayers/BOOK +FD: net/minecraft/client/model/geom/ModelLayers/f_171272_ net/minecraft/client/model/geom/ModelLayers/CAT +FD: net/minecraft/client/model/geom/ModelLayers/f_171273_ net/minecraft/client/model/geom/ModelLayers/CAT_COLLAR +FD: net/minecraft/client/model/geom/ModelLayers/f_171274_ net/minecraft/client/model/geom/ModelLayers/CAVE_SPIDER +FD: net/minecraft/client/model/geom/ModelLayers/f_171275_ net/minecraft/client/model/geom/ModelLayers/CHEST +FD: net/minecraft/client/model/geom/ModelLayers/f_171276_ net/minecraft/client/model/geom/ModelLayers/CHEST_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171277_ net/minecraft/client/model/geom/ModelLayers/CHICKEN +FD: net/minecraft/client/model/geom/ModelLayers/f_171278_ net/minecraft/client/model/geom/ModelLayers/COD +FD: net/minecraft/client/model/geom/ModelLayers/f_171279_ net/minecraft/client/model/geom/ModelLayers/COMMAND_BLOCK_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171280_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_CAGE +FD: net/minecraft/client/model/geom/ModelLayers/f_171281_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_EYE +FD: net/minecraft/client/model/geom/ModelLayers/f_171282_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_SHELL +FD: net/minecraft/client/model/geom/ModelLayers/f_171283_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_WIND +FD: net/minecraft/client/model/geom/ModelLayers/f_171284_ net/minecraft/client/model/geom/ModelLayers/COW +FD: net/minecraft/client/model/geom/ModelLayers/f_171285_ net/minecraft/client/model/geom/ModelLayers/CREEPER +FD: net/minecraft/client/model/geom/ModelLayers/f_233546_ net/minecraft/client/model/geom/ModelLayers/FROG +FD: net/minecraft/client/model/geom/ModelLayers/f_233547_ net/minecraft/client/model/geom/ModelLayers/ALLAY +FD: net/minecraft/client/model/geom/ModelLayers/f_233548_ net/minecraft/client/model/geom/ModelLayers/WARDEN +FD: net/minecraft/client/model/geom/ModelLayers/f_233549_ net/minecraft/client/model/geom/ModelLayers/TADPOLE +FD: net/minecraft/client/model/geom/ModelLayers/f_244030_ net/minecraft/client/model/geom/ModelLayers/CAMEL +FD: net/minecraft/client/model/geom/ModelLayers/f_260668_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_271216_ net/minecraft/client/model/geom/ModelLayers/DECORATED_POT_SIDES +FD: net/minecraft/client/model/geom/ModelLayers/f_271426_ net/minecraft/client/model/geom/ModelLayers/DECORATED_POT_BASE +FD: net/minecraft/client/model/geom/ModelLayers/f_271465_ net/minecraft/client/model/geom/ModelLayers/SNIFFER +FD: net/minecraft/client/model/geom/ModelPart/f_104200_ net/minecraft/client/model/geom/ModelPart/x +FD: net/minecraft/client/model/geom/ModelPart/f_104201_ net/minecraft/client/model/geom/ModelPart/y +FD: net/minecraft/client/model/geom/ModelPart/f_104202_ net/minecraft/client/model/geom/ModelPart/z +FD: net/minecraft/client/model/geom/ModelPart/f_104203_ net/minecraft/client/model/geom/ModelPart/xRot +FD: net/minecraft/client/model/geom/ModelPart/f_104204_ net/minecraft/client/model/geom/ModelPart/yRot +FD: net/minecraft/client/model/geom/ModelPart/f_104205_ net/minecraft/client/model/geom/ModelPart/zRot +FD: net/minecraft/client/model/geom/ModelPart/f_104207_ net/minecraft/client/model/geom/ModelPart/visible +FD: net/minecraft/client/model/geom/ModelPart/f_104212_ net/minecraft/client/model/geom/ModelPart/cubes +FD: net/minecraft/client/model/geom/ModelPart/f_104213_ net/minecraft/client/model/geom/ModelPart/children +FD: net/minecraft/client/model/geom/ModelPart/f_233552_ net/minecraft/client/model/geom/ModelPart/DEFAULT_SCALE +FD: net/minecraft/client/model/geom/ModelPart/f_233553_ net/minecraft/client/model/geom/ModelPart/xScale +FD: net/minecraft/client/model/geom/ModelPart/f_233554_ net/minecraft/client/model/geom/ModelPart/yScale +FD: net/minecraft/client/model/geom/ModelPart/f_233555_ net/minecraft/client/model/geom/ModelPart/zScale +FD: net/minecraft/client/model/geom/ModelPart/f_233556_ net/minecraft/client/model/geom/ModelPart/skipDraw +FD: net/minecraft/client/model/geom/ModelPart/f_233557_ net/minecraft/client/model/geom/ModelPart/initialPose +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104335_ net/minecraft/client/model/geom/ModelPart$Cube/minX +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104336_ net/minecraft/client/model/geom/ModelPart$Cube/minY +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104337_ net/minecraft/client/model/geom/ModelPart$Cube/minZ +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104338_ net/minecraft/client/model/geom/ModelPart$Cube/maxX +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104339_ net/minecraft/client/model/geom/ModelPart$Cube/maxY +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104340_ net/minecraft/client/model/geom/ModelPart$Cube/maxZ +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104341_ net/minecraft/client/model/geom/ModelPart$Cube/polygons +FD: net/minecraft/client/model/geom/ModelPart$Polygon/f_104359_ net/minecraft/client/model/geom/ModelPart$Polygon/vertices +FD: net/minecraft/client/model/geom/ModelPart$Polygon/f_104360_ net/minecraft/client/model/geom/ModelPart$Polygon/normal +FD: net/minecraft/client/model/geom/ModelPart$Vertex/f_104371_ net/minecraft/client/model/geom/ModelPart$Vertex/pos +FD: net/minecraft/client/model/geom/ModelPart$Vertex/f_104372_ net/minecraft/client/model/geom/ModelPart$Vertex/u +FD: net/minecraft/client/model/geom/ModelPart$Vertex/f_104373_ net/minecraft/client/model/geom/ModelPart$Vertex/v +FD: net/minecraft/client/model/geom/PartNames/f_171346_ net/minecraft/client/model/geom/PartNames/RIGHT_FRONT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_171347_ net/minecraft/client/model/geom/PartNames/LEFT_HIND_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171348_ net/minecraft/client/model/geom/PartNames/RIGHT_HIND_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171349_ net/minecraft/client/model/geom/PartNames/LEFT_FRONT_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171350_ net/minecraft/client/model/geom/PartNames/RIGHT_FRONT_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171351_ net/minecraft/client/model/geom/PartNames/LEFT_LID +FD: net/minecraft/client/model/geom/PartNames/f_171352_ net/minecraft/client/model/geom/PartNames/RIGHT_LID +FD: net/minecraft/client/model/geom/PartNames/f_171353_ net/minecraft/client/model/geom/PartNames/LEFT_CHEST +FD: net/minecraft/client/model/geom/PartNames/f_171354_ net/minecraft/client/model/geom/PartNames/RIGHT_CHEST +FD: net/minecraft/client/model/geom/PartNames/f_171355_ net/minecraft/client/model/geom/PartNames/LEFT_HORN +FD: net/minecraft/client/model/geom/PartNames/f_171356_ net/minecraft/client/model/geom/PartNames/RIGHT_HORN +FD: net/minecraft/client/model/geom/PartNames/f_171357_ net/minecraft/client/model/geom/PartNames/LEFT_EYE +FD: net/minecraft/client/model/geom/PartNames/f_171358_ net/minecraft/client/model/geom/PartNames/RIGHT_EYE +FD: net/minecraft/client/model/geom/PartNames/f_171359_ net/minecraft/client/model/geom/PartNames/JAW +FD: net/minecraft/client/model/geom/PartNames/f_171360_ net/minecraft/client/model/geom/PartNames/NOSE +FD: net/minecraft/client/model/geom/PartNames/f_171361_ net/minecraft/client/model/geom/PartNames/ARMS +FD: net/minecraft/client/model/geom/PartNames/f_171362_ net/minecraft/client/model/geom/PartNames/TAIL +FD: net/minecraft/client/model/geom/PartNames/f_171363_ net/minecraft/client/model/geom/PartNames/CUBE +FD: net/minecraft/client/model/geom/PartNames/f_171364_ net/minecraft/client/model/geom/PartNames/BEAK +FD: net/minecraft/client/model/geom/PartNames/f_171365_ net/minecraft/client/model/geom/PartNames/BACK_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171366_ net/minecraft/client/model/geom/PartNames/MANE +FD: net/minecraft/client/model/geom/PartNames/f_171367_ net/minecraft/client/model/geom/PartNames/NECK +FD: net/minecraft/client/model/geom/PartNames/f_171368_ net/minecraft/client/model/geom/PartNames/MOUTH +FD: net/minecraft/client/model/geom/PartNames/f_171369_ net/minecraft/client/model/geom/PartNames/HEAD +FD: net/minecraft/client/model/geom/PartNames/f_171370_ net/minecraft/client/model/geom/PartNames/HAT +FD: net/minecraft/client/model/geom/PartNames/f_171371_ net/minecraft/client/model/geom/PartNames/BODY +FD: net/minecraft/client/model/geom/PartNames/f_171372_ net/minecraft/client/model/geom/PartNames/LEFT_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171373_ net/minecraft/client/model/geom/PartNames/HAT_RIM +FD: net/minecraft/client/model/geom/PartNames/f_171374_ net/minecraft/client/model/geom/PartNames/JACKET +FD: net/minecraft/client/model/geom/PartNames/f_171375_ net/minecraft/client/model/geom/PartNames/TOP_GILLS +FD: net/minecraft/client/model/geom/PartNames/f_171376_ net/minecraft/client/model/geom/PartNames/LEFT_GILLS +FD: net/minecraft/client/model/geom/PartNames/f_171377_ net/minecraft/client/model/geom/PartNames/RIGHT_GILLS +FD: net/minecraft/client/model/geom/PartNames/f_171378_ net/minecraft/client/model/geom/PartNames/RIGHT_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171379_ net/minecraft/client/model/geom/PartNames/TOP_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171380_ net/minecraft/client/model/geom/PartNames/BOTTOM_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171381_ net/minecraft/client/model/geom/PartNames/TAIL_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171382_ net/minecraft/client/model/geom/PartNames/LEFT_BLUE_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171383_ net/minecraft/client/model/geom/PartNames/RIGHT_BLUE_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171384_ net/minecraft/client/model/geom/PartNames/LEFT_ARM +FD: net/minecraft/client/model/geom/PartNames/f_171385_ net/minecraft/client/model/geom/PartNames/RIGHT_ARM +FD: net/minecraft/client/model/geom/PartNames/f_171386_ net/minecraft/client/model/geom/PartNames/LEFT_WING +FD: net/minecraft/client/model/geom/PartNames/f_171387_ net/minecraft/client/model/geom/PartNames/RIGHT_WING +FD: net/minecraft/client/model/geom/PartNames/f_171388_ net/minecraft/client/model/geom/PartNames/LEFT_WING_BASE +FD: net/minecraft/client/model/geom/PartNames/f_171389_ net/minecraft/client/model/geom/PartNames/RIGHT_WING_BASE +FD: net/minecraft/client/model/geom/PartNames/f_171390_ net/minecraft/client/model/geom/PartNames/LEFT_WING_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171391_ net/minecraft/client/model/geom/PartNames/RIGHT_WING_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171392_ net/minecraft/client/model/geom/PartNames/LEFT_EAR +FD: net/minecraft/client/model/geom/PartNames/f_171393_ net/minecraft/client/model/geom/PartNames/RIGHT_EAR +FD: net/minecraft/client/model/geom/PartNames/f_171394_ net/minecraft/client/model/geom/PartNames/LEFT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171395_ net/minecraft/client/model/geom/PartNames/RIGHT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171396_ net/minecraft/client/model/geom/PartNames/LEFT_HIND_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171397_ net/minecraft/client/model/geom/PartNames/RIGHT_HIND_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171398_ net/minecraft/client/model/geom/PartNames/LEFT_FRONT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171399_ net/minecraft/client/model/geom/PartNames/RIGHT_FRONT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171400_ net/minecraft/client/model/geom/PartNames/LEFT_HIND_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_171401_ net/minecraft/client/model/geom/PartNames/RIGHT_HIND_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_171402_ net/minecraft/client/model/geom/PartNames/LEFT_FRONT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_233572_ net/minecraft/client/model/geom/PartNames/ROOT +FD: net/minecraft/client/model/geom/PartNames/f_233573_ net/minecraft/client/model/geom/PartNames/CROAKING_BODY +FD: net/minecraft/client/model/geom/PartNames/f_233574_ net/minecraft/client/model/geom/PartNames/TONGUE +FD: net/minecraft/client/model/geom/PartNames/f_233575_ net/minecraft/client/model/geom/PartNames/TONGUE_R1 +FD: net/minecraft/client/model/geom/PartNames/f_233576_ net/minecraft/client/model/geom/PartNames/LEFT_HAND +FD: net/minecraft/client/model/geom/PartNames/f_233577_ net/minecraft/client/model/geom/PartNames/RIGHT_HAND +FD: net/minecraft/client/model/geom/PartNames/f_233578_ net/minecraft/client/model/geom/PartNames/LEFT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_233579_ net/minecraft/client/model/geom/PartNames/RIGHT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_233580_ net/minecraft/client/model/geom/PartNames/EYES +FD: net/minecraft/client/model/geom/PartNames/f_233581_ net/minecraft/client/model/geom/PartNames/RIGHT_TENDRIL +FD: net/minecraft/client/model/geom/PartNames/f_233582_ net/minecraft/client/model/geom/PartNames/LEFT_TENDRIL +FD: net/minecraft/client/model/geom/PartNames/f_233583_ net/minecraft/client/model/geom/PartNames/RIGHT_RIBCAGE +FD: net/minecraft/client/model/geom/PartNames/f_233584_ net/minecraft/client/model/geom/PartNames/LEFT_RIBCAGE +FD: net/minecraft/client/model/geom/PartNames/f_233585_ net/minecraft/client/model/geom/PartNames/BONE +FD: net/minecraft/client/model/geom/PartNames/f_271292_ net/minecraft/client/model/geom/PartNames/RIGHT_MID_LEG +FD: net/minecraft/client/model/geom/PartNames/f_271385_ net/minecraft/client/model/geom/PartNames/LEFT_MID_LEG +FD: net/minecraft/client/model/geom/PartPose/f_171404_ net/minecraft/client/model/geom/PartPose/ZERO +FD: net/minecraft/client/model/geom/PartPose/f_171405_ net/minecraft/client/model/geom/PartPose/x +FD: net/minecraft/client/model/geom/PartPose/f_171406_ net/minecraft/client/model/geom/PartPose/y +FD: net/minecraft/client/model/geom/PartPose/f_171407_ net/minecraft/client/model/geom/PartPose/z +FD: net/minecraft/client/model/geom/PartPose/f_171408_ net/minecraft/client/model/geom/PartPose/xRot +FD: net/minecraft/client/model/geom/PartPose/f_171409_ net/minecraft/client/model/geom/PartPose/yRot +FD: net/minecraft/client/model/geom/PartPose/f_171410_ net/minecraft/client/model/geom/PartPose/zRot +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171434_ net/minecraft/client/model/geom/builders/CubeDefinition/comment +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171435_ net/minecraft/client/model/geom/builders/CubeDefinition/origin +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171436_ net/minecraft/client/model/geom/builders/CubeDefinition/dimensions +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171437_ net/minecraft/client/model/geom/builders/CubeDefinition/grow +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171438_ net/minecraft/client/model/geom/builders/CubeDefinition/mirror +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171439_ net/minecraft/client/model/geom/builders/CubeDefinition/texCoord +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171440_ net/minecraft/client/model/geom/builders/CubeDefinition/texScale +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_271491_ net/minecraft/client/model/geom/builders/CubeDefinition/visibleFaces +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171458_ net/minecraft/client/model/geom/builders/CubeDeformation/NONE +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171459_ net/minecraft/client/model/geom/builders/CubeDeformation/growX +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171460_ net/minecraft/client/model/geom/builders/CubeDeformation/growY +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171461_ net/minecraft/client/model/geom/builders/CubeDeformation/growZ +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171475_ net/minecraft/client/model/geom/builders/CubeListBuilder/cubes +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171476_ net/minecraft/client/model/geom/builders/CubeListBuilder/xTexOffs +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171477_ net/minecraft/client/model/geom/builders/CubeListBuilder/yTexOffs +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171478_ net/minecraft/client/model/geom/builders/CubeListBuilder/mirror +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_271199_ net/minecraft/client/model/geom/builders/CubeListBuilder/ALL_VISIBLE +FD: net/minecraft/client/model/geom/builders/LayerDefinition/f_171559_ net/minecraft/client/model/geom/builders/LayerDefinition/mesh +FD: net/minecraft/client/model/geom/builders/LayerDefinition/f_171560_ net/minecraft/client/model/geom/builders/LayerDefinition/material +FD: net/minecraft/client/model/geom/builders/MaterialDefinition/f_171569_ net/minecraft/client/model/geom/builders/MaterialDefinition/xTexSize +FD: net/minecraft/client/model/geom/builders/MaterialDefinition/f_171570_ net/minecraft/client/model/geom/builders/MaterialDefinition/yTexSize +FD: net/minecraft/client/model/geom/builders/MeshDefinition/f_171574_ net/minecraft/client/model/geom/builders/MeshDefinition/root +FD: net/minecraft/client/model/geom/builders/PartDefinition/f_171577_ net/minecraft/client/model/geom/builders/PartDefinition/cubes +FD: net/minecraft/client/model/geom/builders/PartDefinition/f_171578_ net/minecraft/client/model/geom/builders/PartDefinition/partPose +FD: net/minecraft/client/model/geom/builders/PartDefinition/f_171579_ net/minecraft/client/model/geom/builders/PartDefinition/children +FD: net/minecraft/client/model/geom/builders/UVPair/f_171607_ net/minecraft/client/model/geom/builders/UVPair/u +FD: net/minecraft/client/model/geom/builders/UVPair/f_171608_ net/minecraft/client/model/geom/builders/UVPair/v +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252423_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/profileKeyPairPath +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252428_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/keyPair +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252448_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/LOGGER +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252471_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/MINIMUM_PROFILE_KEY_REFRESH_INTERVAL +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252478_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/nextProfileKeyRefreshTime +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252484_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/PROFILE_KEY_PAIR_DIR +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252526_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/userApiService +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104387_ net/minecraft/client/multiplayer/ClientAdvancements/LOGGER +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104388_ net/minecraft/client/multiplayer/ClientAdvancements/minecraft +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104389_ net/minecraft/client/multiplayer/ClientAdvancements/advancements +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104390_ net/minecraft/client/multiplayer/ClientAdvancements/progress +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104391_ net/minecraft/client/multiplayer/ClientAdvancements/listener +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104392_ net/minecraft/client/multiplayer/ClientAdvancements/selectedTab +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_285594_ net/minecraft/client/multiplayer/ClientAdvancements/telemetryManager +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104407_ net/minecraft/client/multiplayer/ClientChunkCache/LOGGER +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104408_ net/minecraft/client/multiplayer/ClientChunkCache/emptyChunk +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104409_ net/minecraft/client/multiplayer/ClientChunkCache/lightEngine +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104410_ net/minecraft/client/multiplayer/ClientChunkCache/storage +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104411_ net/minecraft/client/multiplayer/ClientChunkCache/level +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104465_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/this$0 +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104466_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/chunks +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104467_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/chunkRadius +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104468_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/viewRange +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104469_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/viewCenterX +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104470_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/viewCenterZ +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104471_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/chunkCount +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104518_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/LOGGER +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104519_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/minecraft +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104520_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/parent +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104521_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/updateStatus +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104522_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/connection +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104523_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/localGameProfile +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_243717_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/serverData +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_260612_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/worldLoadDuration +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_260722_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/newWorld +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_285614_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/minigameName +FD: net/minecraft/client/multiplayer/ClientLevel/f_104555_ net/minecraft/client/multiplayer/ClientLevel/scoreboard +FD: net/minecraft/client/multiplayer/ClientLevel/f_104556_ net/minecraft/client/multiplayer/ClientLevel/mapData +FD: net/minecraft/client/multiplayer/ClientLevel/f_104557_ net/minecraft/client/multiplayer/ClientLevel/skyFlashTime +FD: net/minecraft/client/multiplayer/ClientLevel/f_104558_ net/minecraft/client/multiplayer/ClientLevel/tintCaches +FD: net/minecraft/client/multiplayer/ClientLevel/f_104559_ net/minecraft/client/multiplayer/ClientLevel/chunkSource +FD: net/minecraft/client/multiplayer/ClientLevel/f_104561_ net/minecraft/client/multiplayer/ClientLevel/connection +FD: net/minecraft/client/multiplayer/ClientLevel/f_104562_ net/minecraft/client/multiplayer/ClientLevel/levelRenderer +FD: net/minecraft/client/multiplayer/ClientLevel/f_104563_ net/minecraft/client/multiplayer/ClientLevel/clientLevelData +FD: net/minecraft/client/multiplayer/ClientLevel/f_104564_ net/minecraft/client/multiplayer/ClientLevel/effects +FD: net/minecraft/client/multiplayer/ClientLevel/f_104565_ net/minecraft/client/multiplayer/ClientLevel/minecraft +FD: net/minecraft/client/multiplayer/ClientLevel/f_104566_ net/minecraft/client/multiplayer/ClientLevel/players +FD: net/minecraft/client/multiplayer/ClientLevel/f_171628_ net/minecraft/client/multiplayer/ClientLevel/CLOUD_COLOR +FD: net/minecraft/client/multiplayer/ClientLevel/f_171629_ net/minecraft/client/multiplayer/ClientLevel/FLUID_PARTICLE_SPAWN_OFFSET +FD: net/minecraft/client/multiplayer/ClientLevel/f_171630_ net/minecraft/client/multiplayer/ClientLevel/tickingEntities +FD: net/minecraft/client/multiplayer/ClientLevel/f_171631_ net/minecraft/client/multiplayer/ClientLevel/entityStorage +FD: net/minecraft/client/multiplayer/ClientLevel/f_194122_ net/minecraft/client/multiplayer/ClientLevel/lightUpdateQueue +FD: net/minecraft/client/multiplayer/ClientLevel/f_194123_ net/minecraft/client/multiplayer/ClientLevel/serverSimulationDistance +FD: net/minecraft/client/multiplayer/ClientLevel/f_194124_ net/minecraft/client/multiplayer/ClientLevel/MARKER_PARTICLE_ITEMS +FD: net/minecraft/client/multiplayer/ClientLevel/f_194125_ net/minecraft/client/multiplayer/ClientLevel/NORMAL_LIGHT_UPDATES_PER_FRAME +FD: net/minecraft/client/multiplayer/ClientLevel/f_194126_ net/minecraft/client/multiplayer/ClientLevel/LIGHT_UPDATE_QUEUE_SIZE_THRESHOLD +FD: net/minecraft/client/multiplayer/ClientLevel/f_233599_ net/minecraft/client/multiplayer/ClientLevel/blockStatePredictionHandler +FD: net/minecraft/client/multiplayer/ClientLevel/f_233600_ net/minecraft/client/multiplayer/ClientLevel/LOGGER +FD: net/minecraft/client/multiplayer/ClientLevel$1/f_104828_ net/minecraft/client/multiplayer/ClientLevel$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104830_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/hardcore +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104831_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/gameRules +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104832_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isFlat +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104833_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/xSpawn +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104834_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/ySpawn +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104835_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/zSpawn +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104836_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/spawnAngle +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104837_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/gameTime +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104838_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/dayTime +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104839_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/raining +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104840_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/difficulty +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104841_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/difficultyLocked +FD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/f_171692_ net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/this$0 +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104883_ net/minecraft/client/multiplayer/ClientPacketListener/LOGGER +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104884_ net/minecraft/client/multiplayer/ClientPacketListener/GENERIC_DISCONNECT_MESSAGE +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104885_ net/minecraft/client/multiplayer/ClientPacketListener/connection +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104886_ net/minecraft/client/multiplayer/ClientPacketListener/localGameProfile +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104887_ net/minecraft/client/multiplayer/ClientPacketListener/callbackScreen +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104888_ net/minecraft/client/multiplayer/ClientPacketListener/minecraft +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104889_ net/minecraft/client/multiplayer/ClientPacketListener/level +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104890_ net/minecraft/client/multiplayer/ClientPacketListener/levelData +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104892_ net/minecraft/client/multiplayer/ClientPacketListener/playerInfoMap +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104893_ net/minecraft/client/multiplayer/ClientPacketListener/advancements +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104894_ net/minecraft/client/multiplayer/ClientPacketListener/suggestionsProvider +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104896_ net/minecraft/client/multiplayer/ClientPacketListener/debugQueryHandler +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104897_ net/minecraft/client/multiplayer/ClientPacketListener/serverChunkRadius +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104898_ net/minecraft/client/multiplayer/ClientPacketListener/random +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104899_ net/minecraft/client/multiplayer/ClientPacketListener/commands +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104900_ net/minecraft/client/multiplayer/ClientPacketListener/recipeManager +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104901_ net/minecraft/client/multiplayer/ClientPacketListener/id +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104902_ net/minecraft/client/multiplayer/ClientPacketListener/levels +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104903_ net/minecraft/client/multiplayer/ClientPacketListener/registryAccess +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_194190_ net/minecraft/client/multiplayer/ClientPacketListener/serverSimulationDistance +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_194191_ net/minecraft/client/multiplayer/ClientPacketListener/telemetryManager +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_240902_ net/minecraft/client/multiplayer/ClientPacketListener/signedMessageEncoder +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_242949_ net/minecraft/client/multiplayer/ClientPacketListener/UNSERURE_SERVER_TOAST +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_242953_ net/minecraft/client/multiplayer/ClientPacketListener/UNSECURE_SERVER_TOAST_TITLE +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_243809_ net/minecraft/client/multiplayer/ClientPacketListener/CHAT_VALIDATION_FAILED_ERROR +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_243949_ net/minecraft/client/multiplayer/ClientPacketListener/PENDING_OFFSET_THRESHOLD +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244039_ net/minecraft/client/multiplayer/ClientPacketListener/enabledFeatures +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244113_ net/minecraft/client/multiplayer/ClientPacketListener/messageSignatureCache +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244115_ net/minecraft/client/multiplayer/ClientPacketListener/serverData +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244156_ net/minecraft/client/multiplayer/ClientPacketListener/listedPlayers +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244321_ net/minecraft/client/multiplayer/ClientPacketListener/INVALID_PACKET +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244346_ net/minecraft/client/multiplayer/ClientPacketListener/lastSeenMessages +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_252517_ net/minecraft/client/multiplayer/ClientPacketListener/chatSession +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_268637_ net/minecraft/client/multiplayer/ClientPacketListener/deferredPackets +FD: net/minecraft/client/multiplayer/ClientPacketListener$1/f_105155_ net/minecraft/client/multiplayer/ClientPacketListener$1/$SwitchMap$net$minecraft$network$protocol$game$ClientboundRecipePacket$State +FD: net/minecraft/client/multiplayer/ClientPacketListener$1/f_105158_ net/minecraft/client/multiplayer/ClientPacketListener$1/$SwitchMap$net$minecraft$server$ServerScoreboard$Method +FD: net/minecraft/client/multiplayer/ClientPacketListener$1/f_244123_ net/minecraft/client/multiplayer/ClientPacketListener$1/$SwitchMap$net$minecraft$network$protocol$game$ClientboundPlayerInfoUpdatePacket$Action +FD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268477_ net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/sendCondition +FD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268574_ net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/packet +FD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268654_ net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/expirationTime +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/$VALUES net/minecraft/client/multiplayer/ClientRegistryLayer/$VALUES +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/REMOTE net/minecraft/client/multiplayer/ClientRegistryLayer/REMOTE +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/STATIC net/minecraft/client/multiplayer/ClientRegistryLayer/STATIC +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/f_243766_ net/minecraft/client/multiplayer/ClientRegistryLayer/VALUES +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/f_243969_ net/minecraft/client/multiplayer/ClientRegistryLayer/STATIC_ACCESS +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105160_ net/minecraft/client/multiplayer/ClientSuggestionProvider/connection +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105161_ net/minecraft/client/multiplayer/ClientSuggestionProvider/minecraft +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105162_ net/minecraft/client/multiplayer/ClientSuggestionProvider/pendingSuggestionsId +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105163_ net/minecraft/client/multiplayer/ClientSuggestionProvider/pendingSuggestionsFuture +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_240667_ net/minecraft/client/multiplayer/ClientSuggestionProvider/customCompletionSuggestions +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider$1/f_240658_ net/minecraft/client/multiplayer/ClientSuggestionProvider$1/$SwitchMap$net$minecraft$network$protocol$game$ClientboundCustomChatCompletionsPacket$Action +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105188_ net/minecraft/client/multiplayer/MultiPlayerGameMode/LOGGER +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105189_ net/minecraft/client/multiplayer/MultiPlayerGameMode/minecraft +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105190_ net/minecraft/client/multiplayer/MultiPlayerGameMode/connection +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105191_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyBlockPos +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105192_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyingItem +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105193_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyProgress +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105194_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyTicks +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105195_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyDelay +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105196_ net/minecraft/client/multiplayer/MultiPlayerGameMode/isDestroying +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105197_ net/minecraft/client/multiplayer/MultiPlayerGameMode/localPlayerMode +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105198_ net/minecraft/client/multiplayer/MultiPlayerGameMode/previousLocalPlayerMode +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105200_ net/minecraft/client/multiplayer/MultiPlayerGameMode/carriedIndex +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105298_ net/minecraft/client/multiplayer/PlayerInfo/profile +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105299_ net/minecraft/client/multiplayer/PlayerInfo/textureLocations +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105300_ net/minecraft/client/multiplayer/PlayerInfo/gameMode +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105301_ net/minecraft/client/multiplayer/PlayerInfo/latency +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105302_ net/minecraft/client/multiplayer/PlayerInfo/pendingTextures +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105303_ net/minecraft/client/multiplayer/PlayerInfo/skinModel +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105304_ net/minecraft/client/multiplayer/PlayerInfo/tabListDisplayName +FD: net/minecraft/client/multiplayer/PlayerInfo/f_240895_ net/minecraft/client/multiplayer/PlayerInfo/messageValidator +FD: net/minecraft/client/multiplayer/PlayerInfo/f_244238_ net/minecraft/client/multiplayer/PlayerInfo/chatSession +FD: net/minecraft/client/multiplayer/ProfileKeyPairManager/f_252532_ net/minecraft/client/multiplayer/ProfileKeyPairManager/EMPTY_KEY_MANAGER +FD: net/minecraft/client/multiplayer/ServerData/f_105362_ net/minecraft/client/multiplayer/ServerData/name +FD: net/minecraft/client/multiplayer/ServerData/f_105363_ net/minecraft/client/multiplayer/ServerData/ip +FD: net/minecraft/client/multiplayer/ServerData/f_105364_ net/minecraft/client/multiplayer/ServerData/status +FD: net/minecraft/client/multiplayer/ServerData/f_105365_ net/minecraft/client/multiplayer/ServerData/motd +FD: net/minecraft/client/multiplayer/ServerData/f_105366_ net/minecraft/client/multiplayer/ServerData/ping +FD: net/minecraft/client/multiplayer/ServerData/f_105367_ net/minecraft/client/multiplayer/ServerData/protocol +FD: net/minecraft/client/multiplayer/ServerData/f_105368_ net/minecraft/client/multiplayer/ServerData/version +FD: net/minecraft/client/multiplayer/ServerData/f_105369_ net/minecraft/client/multiplayer/ServerData/pinged +FD: net/minecraft/client/multiplayer/ServerData/f_105370_ net/minecraft/client/multiplayer/ServerData/playerList +FD: net/minecraft/client/multiplayer/ServerData/f_105371_ net/minecraft/client/multiplayer/ServerData/packStatus +FD: net/minecraft/client/multiplayer/ServerData/f_105373_ net/minecraft/client/multiplayer/ServerData/lan +FD: net/minecraft/client/multiplayer/ServerData/f_242950_ net/minecraft/client/multiplayer/ServerData/enforcesSecureChat +FD: net/minecraft/client/multiplayer/ServerData/f_263840_ net/minecraft/client/multiplayer/ServerData/players +FD: net/minecraft/client/multiplayer/ServerData/f_271489_ net/minecraft/client/multiplayer/ServerData/LOGGER +FD: net/minecraft/client/multiplayer/ServerData/f_271511_ net/minecraft/client/multiplayer/ServerData/iconBytes +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/$VALUES net/minecraft/client/multiplayer/ServerData$ServerPackStatus/$VALUES +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/DISABLED net/minecraft/client/multiplayer/ServerData$ServerPackStatus/DISABLED +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ENABLED net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ENABLED +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/PROMPT net/minecraft/client/multiplayer/ServerData$ServerPackStatus/PROMPT +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/f_105393_ net/minecraft/client/multiplayer/ServerData$ServerPackStatus/name +FD: net/minecraft/client/multiplayer/ServerList/f_105425_ net/minecraft/client/multiplayer/ServerList/LOGGER +FD: net/minecraft/client/multiplayer/ServerList/f_105426_ net/minecraft/client/multiplayer/ServerList/minecraft +FD: net/minecraft/client/multiplayer/ServerList/f_105427_ net/minecraft/client/multiplayer/ServerList/serverList +FD: net/minecraft/client/multiplayer/ServerList/f_233836_ net/minecraft/client/multiplayer/ServerList/IO_MAILBOX +FD: net/minecraft/client/multiplayer/ServerList/f_233837_ net/minecraft/client/multiplayer/ServerList/MAX_HIDDEN_SERVERS +FD: net/minecraft/client/multiplayer/ServerList/f_233838_ net/minecraft/client/multiplayer/ServerList/hiddenServerList +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_105448_ net/minecraft/client/multiplayer/ServerStatusPinger/SPLITTER +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_105449_ net/minecraft/client/multiplayer/ServerStatusPinger/LOGGER +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_105450_ net/minecraft/client/multiplayer/ServerStatusPinger/connections +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_171810_ net/minecraft/client/multiplayer/ServerStatusPinger/CANT_CONNECT_MESSAGE +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105471_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$connection +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105472_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$data +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105473_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$onPersistentDataChange +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105474_ net/minecraft/client/multiplayer/ServerStatusPinger$1/this$0 +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105475_ net/minecraft/client/multiplayer/ServerStatusPinger$1/success +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105476_ net/minecraft/client/multiplayer/ServerStatusPinger$1/receivedPing +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105477_ net/minecraft/client/multiplayer/ServerStatusPinger$1/pingStart +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_171817_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$address +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2/f_105490_ net/minecraft/client/multiplayer/ServerStatusPinger$2/val$address +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2/f_105491_ net/minecraft/client/multiplayer/ServerStatusPinger$2/val$data +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2/f_105492_ net/minecraft/client/multiplayer/ServerStatusPinger$2/this$0 +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/f_105499_ net/minecraft/client/multiplayer/ServerStatusPinger$2$1/this$1 +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240348_ net/minecraft/client/multiplayer/chat/ChatListener/minecraft +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240659_ net/minecraft/client/multiplayer/chat/ChatListener/previousMessageTime +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240660_ net/minecraft/client/multiplayer/chat/ChatListener/messageDelay +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240677_ net/minecraft/client/multiplayer/chat/ChatListener/delayedMessageQueue +FD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244088_ net/minecraft/client/multiplayer/chat/ChatListener$Message/handler +FD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244535_ net/minecraft/client/multiplayer/chat/ChatListener$Message/signature +FD: net/minecraft/client/multiplayer/chat/ChatLog/f_243822_ net/minecraft/client/multiplayer/chat/ChatLog/buffer +FD: net/minecraft/client/multiplayer/chat/ChatLog/f_244261_ net/minecraft/client/multiplayer/chat/ChatLog/nextId +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/$VALUES net/minecraft/client/multiplayer/chat/ChatTrustLevel/$VALUES +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/MODIFIED net/minecraft/client/multiplayer/chat/ChatTrustLevel/MODIFIED +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/NOT_SECURE net/minecraft/client/multiplayer/chat/ChatTrustLevel/NOT_SECURE +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/SECURE net/minecraft/client/multiplayer/chat/ChatTrustLevel/SECURE +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/f_252433_ net/minecraft/client/multiplayer/chat/ChatTrustLevel/serializedName +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/f_252530_ net/minecraft/client/multiplayer/chat/ChatTrustLevel/CODEC +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/f_240370_ net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/$SwitchMap$net$minecraft$client$multiplayer$chat$ChatTrustLevel +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent/f_252439_ net/minecraft/client/multiplayer/chat/LoggedChatEvent/CODEC +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/$VALUES net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/$VALUES +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/PLAYER net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/PLAYER +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/SYSTEM net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/SYSTEM +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/f_252477_ net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/codec +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/f_252489_ net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/serializedName +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241609_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/trustLevel +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241668_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/profile +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241690_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/message +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241693_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/TIME_FORMATTER +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_252425_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/CODEC +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241622_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/timeStamp +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241673_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/message +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_252498_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/CODEC +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/f_238719_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/$SwitchMap$com$mojang$authlib$exceptions$MinecraftClientException$ErrorType +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238570_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/SERVICE_UNAVAILABLE_TEXT +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238579_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/HTTP_ERROR_TEXT +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238657_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/JSON_ERROR_TEXT +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238677_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/userApiService +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238713_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/environment +FD: net/minecraft/client/multiplayer/chat/report/BanReason/$VALUES net/minecraft/client/multiplayer/chat/report/BanReason/$VALUES +FD: net/minecraft/client/multiplayer/chat/report/BanReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION net/minecraft/client/multiplayer/chat/report/BanReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION +FD: net/minecraft/client/multiplayer/chat/report/BanReason/DRUGS net/minecraft/client/multiplayer/chat/report/BanReason/DRUGS +FD: net/minecraft/client/multiplayer/chat/report/BanReason/EXTREME_VIOLENCE_OR_GORE net/minecraft/client/multiplayer/chat/report/BanReason/EXTREME_VIOLENCE_OR_GORE +FD: net/minecraft/client/multiplayer/chat/report/BanReason/FALSE_REPORTING net/minecraft/client/multiplayer/chat/report/BanReason/FALSE_REPORTING +FD: net/minecraft/client/multiplayer/chat/report/BanReason/FRAUD net/minecraft/client/multiplayer/chat/report/BanReason/FRAUD +FD: net/minecraft/client/multiplayer/chat/report/BanReason/GENERIC_VIOLATION net/minecraft/client/multiplayer/chat/report/BanReason/GENERIC_VIOLATION +FD: net/minecraft/client/multiplayer/chat/report/BanReason/HARASSMENT_OR_BULLYING net/minecraft/client/multiplayer/chat/report/BanReason/HARASSMENT_OR_BULLYING +FD: net/minecraft/client/multiplayer/chat/report/BanReason/HATE_SPEECH net/minecraft/client/multiplayer/chat/report/BanReason/HATE_SPEECH +FD: net/minecraft/client/multiplayer/chat/report/BanReason/HATE_TERRORISM_NOTORIOUS_FIGURE net/minecraft/client/multiplayer/chat/report/BanReason/HATE_TERRORISM_NOTORIOUS_FIGURE +FD: net/minecraft/client/multiplayer/chat/report/BanReason/IMMINENT_HARM_TO_PERSON_OR_PROPERTY net/minecraft/client/multiplayer/chat/report/BanReason/IMMINENT_HARM_TO_PERSON_OR_PROPERTY +FD: net/minecraft/client/multiplayer/chat/report/BanReason/NUDITY_OR_PORNOGRAPHY net/minecraft/client/multiplayer/chat/report/BanReason/NUDITY_OR_PORNOGRAPHY +FD: net/minecraft/client/multiplayer/chat/report/BanReason/SEXUALLY_INAPPROPRIATE net/minecraft/client/multiplayer/chat/report/BanReason/SEXUALLY_INAPPROPRIATE +FD: net/minecraft/client/multiplayer/chat/report/BanReason/SPAM_OR_ADVERTISING net/minecraft/client/multiplayer/chat/report/BanReason/SPAM_OR_ADVERTISING +FD: net/minecraft/client/multiplayer/chat/report/BanReason/f_271148_ net/minecraft/client/multiplayer/chat/report/BanReason/title +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/f_238736_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/limits +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/f_252499_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/report +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238583_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/COMMENTS_TOO_LONG +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238619_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/NO_REPORTED_MESSAGES +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238631_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/message +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238799_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/TOO_MANY_MESSAGES +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238819_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/NO_REASON +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252413_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/createdAt +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252421_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/comments +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252475_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reportedMessages +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252479_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reason +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252481_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reportId +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252523_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/this$0 +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252536_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reportedProfileId +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238727_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/report +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238815_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/id +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/f_244017_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/leadingCount +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/f_244428_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/activeCollectors +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_243826_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/count +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244002_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/lastSeenSignatures +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244297_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/this$0 +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244348_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/collectingChain +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244412_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/lastChainMessage +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238655_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment/server +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238774_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment/clientVersion +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238670_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/slotId +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238769_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/realmId +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/f_238648_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ip +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/$VALUES net/minecraft/client/multiplayer/chat/report/ReportReason/$VALUES +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/ALCOHOL_TOBACCO_DRUGS net/minecraft/client/multiplayer/chat/report/ReportReason/ALCOHOL_TOBACCO_DRUGS +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/CHILD_SEXUAL_EXPLOITATION_OR_ABUSE net/minecraft/client/multiplayer/chat/report/ReportReason/CHILD_SEXUAL_EXPLOITATION_OR_ABUSE +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION net/minecraft/client/multiplayer/chat/report/ReportReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/HARASSMENT_OR_BULLYING net/minecraft/client/multiplayer/chat/report/ReportReason/HARASSMENT_OR_BULLYING +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/HATE_SPEECH net/minecraft/client/multiplayer/chat/report/ReportReason/HATE_SPEECH +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/IMMINENT_HARM net/minecraft/client/multiplayer/chat/report/ReportReason/IMMINENT_HARM +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/NON_CONSENSUAL_INTIMATE_IMAGERY net/minecraft/client/multiplayer/chat/report/ReportReason/NON_CONSENSUAL_INTIMATE_IMAGERY +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/SELF_HARM_OR_SUICIDE net/minecraft/client/multiplayer/chat/report/ReportReason/SELF_HARM_OR_SUICIDE +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/TERRORISM_OR_VIOLENT_EXTREMISM net/minecraft/client/multiplayer/chat/report/ReportReason/TERRORISM_OR_VIOLENT_EXTREMISM +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/f_238735_ net/minecraft/client/multiplayer/chat/report/ReportReason/backendName +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/f_238806_ net/minecraft/client/multiplayer/chat/report/ReportReason/title +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/f_238818_ net/minecraft/client/multiplayer/chat/report/ReportReason/description +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238644_ net/minecraft/client/multiplayer/chat/report/ReportingContext/environment +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238706_ net/minecraft/client/multiplayer/chat/report/ReportingContext/sender +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238714_ net/minecraft/client/multiplayer/chat/report/ReportingContext/LOG_CAPACITY +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238743_ net/minecraft/client/multiplayer/chat/report/ReportingContext/chatLog +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_252449_ net/minecraft/client/multiplayer/chat/report/ReportingContext/chatReportDraft +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/f_233851_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/serverVerifiedStates +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/f_233852_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/currentSequenceNr +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/f_233853_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/isPredicting +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/f_233874_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/playerPos +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/f_233875_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/sequence +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/f_233876_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/blockState +FD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/f_171831_ net/minecraft/client/multiplayer/resolver/AddressCheck$1/val$blockLists +FD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/f_171847_ net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/val$address +FD: net/minecraft/client/multiplayer/resolver/ServerAddress/f_171854_ net/minecraft/client/multiplayer/resolver/ServerAddress/LOGGER +FD: net/minecraft/client/multiplayer/resolver/ServerAddress/f_171855_ net/minecraft/client/multiplayer/resolver/ServerAddress/hostAndPort +FD: net/minecraft/client/multiplayer/resolver/ServerAddress/f_171856_ net/minecraft/client/multiplayer/resolver/ServerAddress/INVALID +FD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/f_171874_ net/minecraft/client/multiplayer/resolver/ServerAddressResolver/LOGGER +FD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/f_171875_ net/minecraft/client/multiplayer/resolver/ServerAddressResolver/SYSTEM +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171881_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/DEFAULT +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171882_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/resolver +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171883_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/redirectHandler +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171884_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/addressCheck +FD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/f_171892_ net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/LOGGER +FD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/f_171893_ net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/EMPTY +FD: net/minecraft/client/particle/AshParticle$Provider/f_105523_ net/minecraft/client/particle/AshParticle$Provider/sprites +FD: net/minecraft/client/particle/AttackSweepParticle/f_105544_ net/minecraft/client/particle/AttackSweepParticle/sprites +FD: net/minecraft/client/particle/AttackSweepParticle$Provider/f_105564_ net/minecraft/client/particle/AttackSweepParticle$Provider/sprites +FD: net/minecraft/client/particle/BaseAshSmokeParticle/f_105620_ net/minecraft/client/particle/BaseAshSmokeParticle/sprites +FD: net/minecraft/client/particle/BreakingItemParticle/f_105643_ net/minecraft/client/particle/BreakingItemParticle/uo +FD: net/minecraft/client/particle/BreakingItemParticle/f_105644_ net/minecraft/client/particle/BreakingItemParticle/vo +FD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/f_105751_ net/minecraft/client/particle/BubbleColumnUpParticle$Provider/sprite +FD: net/minecraft/client/particle/BubbleParticle$Provider/f_105791_ net/minecraft/client/particle/BubbleParticle$Provider/sprite +FD: net/minecraft/client/particle/BubblePopParticle/f_105812_ net/minecraft/client/particle/BubblePopParticle/sprites +FD: net/minecraft/client/particle/BubblePopParticle$Provider/f_105834_ net/minecraft/client/particle/BubblePopParticle$Provider/sprites +FD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/f_105876_ net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/sprites +FD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/f_105897_ net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/sprites +FD: net/minecraft/client/particle/CherryParticle/f_276422_ net/minecraft/client/particle/CherryParticle/FALL_ACC +FD: net/minecraft/client/particle/CherryParticle/f_276480_ net/minecraft/client/particle/CherryParticle/CURVE_ENDPOINT_TIME +FD: net/minecraft/client/particle/CherryParticle/f_276513_ net/minecraft/client/particle/CherryParticle/spinAcceleration +FD: net/minecraft/client/particle/CherryParticle/f_276535_ net/minecraft/client/particle/CherryParticle/particleRandom +FD: net/minecraft/client/particle/CherryParticle/f_276609_ net/minecraft/client/particle/CherryParticle/rotSpeed +FD: net/minecraft/client/particle/CherryParticle/f_276642_ net/minecraft/client/particle/CherryParticle/ACCELERATION_SCALE +FD: net/minecraft/client/particle/CherryParticle/f_276657_ net/minecraft/client/particle/CherryParticle/WIND_BIG +FD: net/minecraft/client/particle/CherryParticle/f_276664_ net/minecraft/client/particle/CherryParticle/INITIAL_LIFETIME +FD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/f_105939_ net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/sprite +FD: net/minecraft/client/particle/CritParticle$MagicProvider/f_105960_ net/minecraft/client/particle/CritParticle$MagicProvider/sprite +FD: net/minecraft/client/particle/CritParticle$Provider/f_105981_ net/minecraft/client/particle/CritParticle$Provider/sprite +FD: net/minecraft/client/particle/DragonBreathParticle/f_106002_ net/minecraft/client/particle/DragonBreathParticle/hasHitGround +FD: net/minecraft/client/particle/DragonBreathParticle/f_106003_ net/minecraft/client/particle/DragonBreathParticle/sprites +FD: net/minecraft/client/particle/DragonBreathParticle/f_171920_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN_RED +FD: net/minecraft/client/particle/DragonBreathParticle/f_171921_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN_GREEN +FD: net/minecraft/client/particle/DragonBreathParticle/f_171922_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN_BLUE +FD: net/minecraft/client/particle/DragonBreathParticle/f_171923_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX_RED +FD: net/minecraft/client/particle/DragonBreathParticle/f_171924_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX_GREEN +FD: net/minecraft/client/particle/DragonBreathParticle/f_171925_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX_BLUE +FD: net/minecraft/client/particle/DragonBreathParticle/f_171926_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN +FD: net/minecraft/client/particle/DragonBreathParticle/f_171927_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX +FD: net/minecraft/client/particle/DragonBreathParticle$Provider/f_106027_ net/minecraft/client/particle/DragonBreathParticle$Provider/sprites +FD: net/minecraft/client/particle/DripParticle/f_106048_ net/minecraft/client/particle/DripParticle/isGlowing +FD: net/minecraft/client/particle/DripParticle/f_106049_ net/minecraft/client/particle/DripParticle/type +FD: net/minecraft/client/particle/DripParticle$DripHangParticle/f_106083_ net/minecraft/client/particle/DripParticle$DripHangParticle/fallingParticle +FD: net/minecraft/client/particle/DripParticle$FallAndLandParticle/f_106114_ net/minecraft/client/particle/DripParticle$FallAndLandParticle/landParticle +FD: net/minecraft/client/particle/DustColorTransitionParticle/f_172050_ net/minecraft/client/particle/DustColorTransitionParticle/fromColor +FD: net/minecraft/client/particle/DustColorTransitionParticle/f_172051_ net/minecraft/client/particle/DustColorTransitionParticle/toColor +FD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/f_172071_ net/minecraft/client/particle/DustColorTransitionParticle$Provider/sprites +FD: net/minecraft/client/particle/DustParticle$Provider/f_106439_ net/minecraft/client/particle/DustParticle$Provider/sprites +FD: net/minecraft/client/particle/DustParticleBase/f_172092_ net/minecraft/client/particle/DustParticleBase/sprites +FD: net/minecraft/client/particle/EnchantmentTableParticle/f_106460_ net/minecraft/client/particle/EnchantmentTableParticle/zStart +FD: net/minecraft/client/particle/EnchantmentTableParticle/f_106461_ net/minecraft/client/particle/EnchantmentTableParticle/xStart +FD: net/minecraft/client/particle/EnchantmentTableParticle/f_106462_ net/minecraft/client/particle/EnchantmentTableParticle/yStart +FD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/f_106488_ net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/sprite +FD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/f_106509_ net/minecraft/client/particle/EnchantmentTableParticle$Provider/sprite +FD: net/minecraft/client/particle/EndRodParticle$Provider/f_106553_ net/minecraft/client/particle/EndRodParticle$Provider/sprites +FD: net/minecraft/client/particle/ExplodeParticle/f_106574_ net/minecraft/client/particle/ExplodeParticle/sprites +FD: net/minecraft/client/particle/ExplodeParticle$Provider/f_106586_ net/minecraft/client/particle/ExplodeParticle$Provider/sprites +FD: net/minecraft/client/particle/FallingDustParticle/f_106607_ net/minecraft/client/particle/FallingDustParticle/rotSpeed +FD: net/minecraft/client/particle/FallingDustParticle/f_106608_ net/minecraft/client/particle/FallingDustParticle/sprites +FD: net/minecraft/client/particle/FallingDustParticle$Provider/f_106632_ net/minecraft/client/particle/FallingDustParticle$Provider/sprite +FD: net/minecraft/client/particle/FireworkParticles$1/f_106653_ net/minecraft/client/particle/FireworkParticles$1/$SwitchMap$net$minecraft$world$item$FireworkRocketItem$Shape +FD: net/minecraft/client/particle/FireworkParticles$FlashProvider/f_106655_ net/minecraft/client/particle/FireworkParticles$FlashProvider/sprite +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106694_ net/minecraft/client/particle/FireworkParticles$SparkParticle/flicker +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106695_ net/minecraft/client/particle/FireworkParticles$SparkParticle/engine +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106696_ net/minecraft/client/particle/FireworkParticles$SparkParticle/fadeR +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106697_ net/minecraft/client/particle/FireworkParticles$SparkParticle/fadeG +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106698_ net/minecraft/client/particle/FireworkParticles$SparkParticle/fadeB +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106699_ net/minecraft/client/particle/FireworkParticles$SparkParticle/hasFade +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106700_ net/minecraft/client/particle/FireworkParticles$SparkParticle/trail +FD: net/minecraft/client/particle/FireworkParticles$SparkProvider/f_106731_ net/minecraft/client/particle/FireworkParticles$SparkProvider/sprites +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106752_ net/minecraft/client/particle/FireworkParticles$Starter/explosions +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106753_ net/minecraft/client/particle/FireworkParticles$Starter/twinkleDelay +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106754_ net/minecraft/client/particle/FireworkParticles$Starter/life +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106755_ net/minecraft/client/particle/FireworkParticles$Starter/engine +FD: net/minecraft/client/particle/FlameParticle$Provider/f_106825_ net/minecraft/client/particle/FlameParticle$Provider/sprite +FD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/f_172111_ net/minecraft/client/particle/FlameParticle$SmallFlameProvider/sprite +FD: net/minecraft/client/particle/GlowParticle/f_172132_ net/minecraft/client/particle/GlowParticle/RANDOM +FD: net/minecraft/client/particle/GlowParticle/f_172133_ net/minecraft/client/particle/GlowParticle/sprites +FD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/f_172148_ net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/f_172149_ net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/f_172170_ net/minecraft/client/particle/GlowParticle$GlowSquidProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/f_172191_ net/minecraft/client/particle/GlowParticle$ScrapeProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/f_172192_ net/minecraft/client/particle/GlowParticle$ScrapeProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/f_172213_ net/minecraft/client/particle/GlowParticle$WaxOffProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/f_172214_ net/minecraft/client/particle/GlowParticle$WaxOffProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/f_172235_ net/minecraft/client/particle/GlowParticle$WaxOnProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/f_172236_ net/minecraft/client/particle/GlowParticle$WaxOnProvider/sprite +FD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/f_106861_ net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/sprite +FD: net/minecraft/client/particle/HeartParticle$Provider/f_106882_ net/minecraft/client/particle/HeartParticle$Provider/sprite +FD: net/minecraft/client/particle/HugeExplosionParticle/f_106903_ net/minecraft/client/particle/HugeExplosionParticle/sprites +FD: net/minecraft/client/particle/HugeExplosionParticle$Provider/f_106923_ net/minecraft/client/particle/HugeExplosionParticle$Provider/sprites +FD: net/minecraft/client/particle/HugeExplosionSeedParticle/f_106944_ net/minecraft/client/particle/HugeExplosionSeedParticle/life +FD: net/minecraft/client/particle/HugeExplosionSeedParticle/f_106945_ net/minecraft/client/particle/HugeExplosionSeedParticle/lifeTime +FD: net/minecraft/client/particle/ItemPickupParticle/f_107017_ net/minecraft/client/particle/ItemPickupParticle/target +FD: net/minecraft/client/particle/ItemPickupParticle/f_107018_ net/minecraft/client/particle/ItemPickupParticle/life +FD: net/minecraft/client/particle/ItemPickupParticle/f_107019_ net/minecraft/client/particle/ItemPickupParticle/entityRenderDispatcher +FD: net/minecraft/client/particle/ItemPickupParticle/f_107020_ net/minecraft/client/particle/ItemPickupParticle/renderBuffers +FD: net/minecraft/client/particle/ItemPickupParticle/f_107021_ net/minecraft/client/particle/ItemPickupParticle/itemEntity +FD: net/minecraft/client/particle/ItemPickupParticle/f_172257_ net/minecraft/client/particle/ItemPickupParticle/LIFE_TIME +FD: net/minecraft/client/particle/LargeSmokeParticle$Provider/f_107052_ net/minecraft/client/particle/LargeSmokeParticle$Provider/sprites +FD: net/minecraft/client/particle/LavaParticle$Provider/f_107090_ net/minecraft/client/particle/LavaParticle$Provider/sprite +FD: net/minecraft/client/particle/MobAppearanceParticle/f_107111_ net/minecraft/client/particle/MobAppearanceParticle/model +FD: net/minecraft/client/particle/MobAppearanceParticle/f_107112_ net/minecraft/client/particle/MobAppearanceParticle/renderType +FD: net/minecraft/client/particle/NoteParticle$Provider/f_107183_ net/minecraft/client/particle/NoteParticle$Provider/sprite +FD: net/minecraft/client/particle/Particle/f_107204_ net/minecraft/client/particle/Particle/oRoll +FD: net/minecraft/client/particle/Particle/f_107205_ net/minecraft/client/particle/Particle/stoppedByCollision +FD: net/minecraft/client/particle/Particle/f_107206_ net/minecraft/client/particle/Particle/INITIAL_AABB +FD: net/minecraft/client/particle/Particle/f_107207_ net/minecraft/client/particle/Particle/bb +FD: net/minecraft/client/particle/Particle/f_107208_ net/minecraft/client/particle/Particle/level +FD: net/minecraft/client/particle/Particle/f_107209_ net/minecraft/client/particle/Particle/xo +FD: net/minecraft/client/particle/Particle/f_107210_ net/minecraft/client/particle/Particle/yo +FD: net/minecraft/client/particle/Particle/f_107211_ net/minecraft/client/particle/Particle/zo +FD: net/minecraft/client/particle/Particle/f_107212_ net/minecraft/client/particle/Particle/x +FD: net/minecraft/client/particle/Particle/f_107213_ net/minecraft/client/particle/Particle/y +FD: net/minecraft/client/particle/Particle/f_107214_ net/minecraft/client/particle/Particle/z +FD: net/minecraft/client/particle/Particle/f_107215_ net/minecraft/client/particle/Particle/xd +FD: net/minecraft/client/particle/Particle/f_107216_ net/minecraft/client/particle/Particle/yd +FD: net/minecraft/client/particle/Particle/f_107217_ net/minecraft/client/particle/Particle/zd +FD: net/minecraft/client/particle/Particle/f_107218_ net/minecraft/client/particle/Particle/onGround +FD: net/minecraft/client/particle/Particle/f_107219_ net/minecraft/client/particle/Particle/hasPhysics +FD: net/minecraft/client/particle/Particle/f_107220_ net/minecraft/client/particle/Particle/removed +FD: net/minecraft/client/particle/Particle/f_107221_ net/minecraft/client/particle/Particle/bbWidth +FD: net/minecraft/client/particle/Particle/f_107222_ net/minecraft/client/particle/Particle/bbHeight +FD: net/minecraft/client/particle/Particle/f_107223_ net/minecraft/client/particle/Particle/random +FD: net/minecraft/client/particle/Particle/f_107224_ net/minecraft/client/particle/Particle/age +FD: net/minecraft/client/particle/Particle/f_107225_ net/minecraft/client/particle/Particle/lifetime +FD: net/minecraft/client/particle/Particle/f_107226_ net/minecraft/client/particle/Particle/gravity +FD: net/minecraft/client/particle/Particle/f_107227_ net/minecraft/client/particle/Particle/rCol +FD: net/minecraft/client/particle/Particle/f_107228_ net/minecraft/client/particle/Particle/gCol +FD: net/minecraft/client/particle/Particle/f_107229_ net/minecraft/client/particle/Particle/bCol +FD: net/minecraft/client/particle/Particle/f_107230_ net/minecraft/client/particle/Particle/alpha +FD: net/minecraft/client/particle/Particle/f_107231_ net/minecraft/client/particle/Particle/roll +FD: net/minecraft/client/particle/Particle/f_172258_ net/minecraft/client/particle/Particle/friction +FD: net/minecraft/client/particle/Particle/f_172259_ net/minecraft/client/particle/Particle/speedUpWhenYMotionIsBlocked +FD: net/minecraft/client/particle/Particle/f_197408_ net/minecraft/client/particle/Particle/MAXIMUM_COLLISION_VELOCITY_SQUARED +FD: net/minecraft/client/particle/ParticleDescription/f_107279_ net/minecraft/client/particle/ParticleDescription/textures +FD: net/minecraft/client/particle/ParticleEngine/f_107287_ net/minecraft/client/particle/ParticleEngine/level +FD: net/minecraft/client/particle/ParticleEngine/f_107288_ net/minecraft/client/particle/ParticleEngine/RENDER_ORDER +FD: net/minecraft/client/particle/ParticleEngine/f_107289_ net/minecraft/client/particle/ParticleEngine/particles +FD: net/minecraft/client/particle/ParticleEngine/f_107290_ net/minecraft/client/particle/ParticleEngine/trackingEmitters +FD: net/minecraft/client/particle/ParticleEngine/f_107291_ net/minecraft/client/particle/ParticleEngine/textureManager +FD: net/minecraft/client/particle/ParticleEngine/f_107292_ net/minecraft/client/particle/ParticleEngine/random +FD: net/minecraft/client/particle/ParticleEngine/f_107293_ net/minecraft/client/particle/ParticleEngine/providers +FD: net/minecraft/client/particle/ParticleEngine/f_107294_ net/minecraft/client/particle/ParticleEngine/particlesToAdd +FD: net/minecraft/client/particle/ParticleEngine/f_107295_ net/minecraft/client/particle/ParticleEngine/spriteSets +FD: net/minecraft/client/particle/ParticleEngine/f_107296_ net/minecraft/client/particle/ParticleEngine/textureAtlas +FD: net/minecraft/client/particle/ParticleEngine/f_172264_ net/minecraft/client/particle/ParticleEngine/MAX_PARTICLES_PER_LAYER +FD: net/minecraft/client/particle/ParticleEngine/f_172265_ net/minecraft/client/particle/ParticleEngine/trackedParticleCounts +FD: net/minecraft/client/particle/ParticleEngine/f_243727_ net/minecraft/client/particle/ParticleEngine/LOGGER +FD: net/minecraft/client/particle/ParticleEngine/f_243929_ net/minecraft/client/particle/ParticleEngine/PARTICLE_LISTER +FD: net/minecraft/client/particle/ParticleEngine/f_260634_ net/minecraft/client/particle/ParticleEngine/PARTICLES_ATLAS_INFO +FD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_243741_ net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/sprites +FD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_244103_ net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/id +FD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/f_107406_ net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/sprites +FD: net/minecraft/client/particle/ParticleRenderType/f_107429_ net/minecraft/client/particle/ParticleRenderType/TERRAIN_SHEET +FD: net/minecraft/client/particle/ParticleRenderType/f_107430_ net/minecraft/client/particle/ParticleRenderType/PARTICLE_SHEET_OPAQUE +FD: net/minecraft/client/particle/ParticleRenderType/f_107431_ net/minecraft/client/particle/ParticleRenderType/PARTICLE_SHEET_TRANSLUCENT +FD: net/minecraft/client/particle/ParticleRenderType/f_107432_ net/minecraft/client/particle/ParticleRenderType/PARTICLE_SHEET_LIT +FD: net/minecraft/client/particle/ParticleRenderType/f_107433_ net/minecraft/client/particle/ParticleRenderType/CUSTOM +FD: net/minecraft/client/particle/ParticleRenderType/f_107434_ net/minecraft/client/particle/ParticleRenderType/NO_RENDER +FD: net/minecraft/client/particle/PlayerCloudParticle/f_107481_ net/minecraft/client/particle/PlayerCloudParticle/sprites +FD: net/minecraft/client/particle/PlayerCloudParticle$Provider/f_107505_ net/minecraft/client/particle/PlayerCloudParticle$Provider/sprites +FD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/f_107526_ net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/sprites +FD: net/minecraft/client/particle/PortalParticle/f_107547_ net/minecraft/client/particle/PortalParticle/zStart +FD: net/minecraft/client/particle/PortalParticle/f_107548_ net/minecraft/client/particle/PortalParticle/xStart +FD: net/minecraft/client/particle/PortalParticle/f_107549_ net/minecraft/client/particle/PortalParticle/yStart +FD: net/minecraft/client/particle/PortalParticle$Provider/f_107568_ net/minecraft/client/particle/PortalParticle$Provider/sprite +FD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/f_107609_ net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/sprite +FD: net/minecraft/client/particle/SculkChargeParticle/f_233890_ net/minecraft/client/particle/SculkChargeParticle/sprites +FD: net/minecraft/client/particle/SculkChargeParticle$Provider/f_233904_ net/minecraft/client/particle/SculkChargeParticle$Provider/sprite +FD: net/minecraft/client/particle/SculkChargePopParticle/f_233930_ net/minecraft/client/particle/SculkChargePopParticle/sprites +FD: net/minecraft/client/particle/SculkChargePopParticle$Provider/f_233944_ net/minecraft/client/particle/SculkChargePopParticle$Provider/sprite +FD: net/minecraft/client/particle/ShriekParticle/f_233970_ net/minecraft/client/particle/ShriekParticle/MAGICAL_X_ROT +FD: net/minecraft/client/particle/ShriekParticle/f_233971_ net/minecraft/client/particle/ShriekParticle/delay +FD: net/minecraft/client/particle/ShriekParticle/f_233972_ net/minecraft/client/particle/ShriekParticle/ROTATION_VECTOR +FD: net/minecraft/client/particle/ShriekParticle/f_233973_ net/minecraft/client/particle/ShriekParticle/TRANSFORM_VECTOR +FD: net/minecraft/client/particle/ShriekParticle$Provider/f_234006_ net/minecraft/client/particle/ShriekParticle$Provider/sprite +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107640_ net/minecraft/client/particle/SimpleAnimatedParticle/fadeR +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107641_ net/minecraft/client/particle/SimpleAnimatedParticle/fadeG +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107642_ net/minecraft/client/particle/SimpleAnimatedParticle/fadeB +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107643_ net/minecraft/client/particle/SimpleAnimatedParticle/hasFade +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107644_ net/minecraft/client/particle/SimpleAnimatedParticle/sprites +FD: net/minecraft/client/particle/SingleQuadParticle/f_107663_ net/minecraft/client/particle/SingleQuadParticle/quadSize +FD: net/minecraft/client/particle/SmokeParticle$Provider/f_107694_ net/minecraft/client/particle/SmokeParticle$Provider/sprites +FD: net/minecraft/client/particle/SnowflakeParticle/f_172290_ net/minecraft/client/particle/SnowflakeParticle/sprites +FD: net/minecraft/client/particle/SnowflakeParticle$Provider/f_172302_ net/minecraft/client/particle/SnowflakeParticle$Provider/sprites +FD: net/minecraft/client/particle/SonicBoomParticle$Provider/f_234034_ net/minecraft/client/particle/SonicBoomParticle$Provider/sprites +FD: net/minecraft/client/particle/SoulParticle/f_107715_ net/minecraft/client/particle/SoulParticle/sprites +FD: net/minecraft/client/particle/SoulParticle/f_234078_ net/minecraft/client/particle/SoulParticle/isGlowing +FD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/f_234081_ net/minecraft/client/particle/SoulParticle$EmissiveProvider/sprite +FD: net/minecraft/client/particle/SoulParticle$Provider/f_107737_ net/minecraft/client/particle/SoulParticle$Provider/sprite +FD: net/minecraft/client/particle/SpellParticle/f_107758_ net/minecraft/client/particle/SpellParticle/RANDOM +FD: net/minecraft/client/particle/SpellParticle/f_107759_ net/minecraft/client/particle/SpellParticle/sprites +FD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/f_107782_ net/minecraft/client/particle/SpellParticle$AmbientMobProvider/sprite +FD: net/minecraft/client/particle/SpellParticle$InstantProvider/f_107803_ net/minecraft/client/particle/SpellParticle$InstantProvider/sprite +FD: net/minecraft/client/particle/SpellParticle$MobProvider/f_107824_ net/minecraft/client/particle/SpellParticle$MobProvider/sprite +FD: net/minecraft/client/particle/SpellParticle$Provider/f_107845_ net/minecraft/client/particle/SpellParticle$Provider/sprite +FD: net/minecraft/client/particle/SpellParticle$WitchProvider/f_107866_ net/minecraft/client/particle/SpellParticle$WitchProvider/sprite +FD: net/minecraft/client/particle/SpitParticle$Provider/f_107907_ net/minecraft/client/particle/SpitParticle$Provider/sprites +FD: net/minecraft/client/particle/SplashParticle$Provider/f_107945_ net/minecraft/client/particle/SplashParticle$Provider/sprite +FD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/f_172334_ net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/sprites +FD: net/minecraft/client/particle/SquidInkParticle$Provider/f_107989_ net/minecraft/client/particle/SquidInkParticle$Provider/sprites +FD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/f_108040_ net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/sprite +FD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/f_172417_ net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/sprite +FD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/f_172438_ net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/this$0 +FD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/f_108061_ net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/sprite +FD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/f_108082_ net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/f_108126_ net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/f_108147_ net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/f_276491_ net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/f_108168_ net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$Provider/f_108189_ net/minecraft/client/particle/SuspendedTownParticle$Provider/sprite +FD: net/minecraft/client/particle/TerrainParticle/f_108277_ net/minecraft/client/particle/TerrainParticle/uo +FD: net/minecraft/client/particle/TerrainParticle/f_108278_ net/minecraft/client/particle/TerrainParticle/vo +FD: net/minecraft/client/particle/TerrainParticle/f_108280_ net/minecraft/client/particle/TerrainParticle/pos +FD: net/minecraft/client/particle/TextureSheetParticle/f_108321_ net/minecraft/client/particle/TextureSheetParticle/sprite +FD: net/minecraft/client/particle/TotemParticle$Provider/f_108364_ net/minecraft/client/particle/TotemParticle$Provider/sprites +FD: net/minecraft/client/particle/TrackingEmitter/f_108385_ net/minecraft/client/particle/TrackingEmitter/lifeTime +FD: net/minecraft/client/particle/TrackingEmitter/f_108386_ net/minecraft/client/particle/TrackingEmitter/particleType +FD: net/minecraft/client/particle/TrackingEmitter/f_108387_ net/minecraft/client/particle/TrackingEmitter/entity +FD: net/minecraft/client/particle/TrackingEmitter/f_108388_ net/minecraft/client/particle/TrackingEmitter/life +FD: net/minecraft/client/particle/VibrationSignalParticle/f_234103_ net/minecraft/client/particle/VibrationSignalParticle/target +FD: net/minecraft/client/particle/VibrationSignalParticle/f_243819_ net/minecraft/client/particle/VibrationSignalParticle/rot +FD: net/minecraft/client/particle/VibrationSignalParticle/f_243886_ net/minecraft/client/particle/VibrationSignalParticle/pitchO +FD: net/minecraft/client/particle/VibrationSignalParticle/f_244335_ net/minecraft/client/particle/VibrationSignalParticle/pitch +FD: net/minecraft/client/particle/VibrationSignalParticle/f_244341_ net/minecraft/client/particle/VibrationSignalParticle/rotO +FD: net/minecraft/client/particle/VibrationSignalParticle$Provider/f_172488_ net/minecraft/client/particle/VibrationSignalParticle$Provider/sprite +FD: net/minecraft/client/particle/WakeParticle/f_108405_ net/minecraft/client/particle/WakeParticle/sprites +FD: net/minecraft/client/particle/WakeParticle$Provider/f_108427_ net/minecraft/client/particle/WakeParticle$Provider/sprites +FD: net/minecraft/client/particle/WaterCurrentDownParticle/f_108448_ net/minecraft/client/particle/WaterCurrentDownParticle/angle +FD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/f_108462_ net/minecraft/client/particle/WaterCurrentDownParticle$Provider/sprite +FD: net/minecraft/client/particle/WaterDropParticle$Provider/f_108490_ net/minecraft/client/particle/WaterDropParticle$Provider/sprite +FD: net/minecraft/client/particle/WhiteAshParticle/f_172509_ net/minecraft/client/particle/WhiteAshParticle/COLOR_RGB24 +FD: net/minecraft/client/particle/WhiteAshParticle$Provider/f_108521_ net/minecraft/client/particle/WhiteAshParticle$Provider/sprites +FD: net/minecraft/client/player/AbstractClientPlayer/f_108542_ net/minecraft/client/player/AbstractClientPlayer/elytraRotX +FD: net/minecraft/client/player/AbstractClientPlayer/f_108543_ net/minecraft/client/player/AbstractClientPlayer/elytraRotY +FD: net/minecraft/client/player/AbstractClientPlayer/f_108544_ net/minecraft/client/player/AbstractClientPlayer/elytraRotZ +FD: net/minecraft/client/player/AbstractClientPlayer/f_108545_ net/minecraft/client/player/AbstractClientPlayer/clientLevel +FD: net/minecraft/client/player/AbstractClientPlayer/f_108546_ net/minecraft/client/player/AbstractClientPlayer/playerInfo +FD: net/minecraft/client/player/AbstractClientPlayer/f_172517_ net/minecraft/client/player/AbstractClientPlayer/SKIN_URL_TEMPLATE +FD: net/minecraft/client/player/AbstractClientPlayer/f_271420_ net/minecraft/client/player/AbstractClientPlayer/deltaMovementOnPreviousTick +FD: net/minecraft/client/player/Input/f_108566_ net/minecraft/client/player/Input/leftImpulse +FD: net/minecraft/client/player/Input/f_108567_ net/minecraft/client/player/Input/forwardImpulse +FD: net/minecraft/client/player/Input/f_108568_ net/minecraft/client/player/Input/up +FD: net/minecraft/client/player/Input/f_108569_ net/minecraft/client/player/Input/down +FD: net/minecraft/client/player/Input/f_108570_ net/minecraft/client/player/Input/left +FD: net/minecraft/client/player/Input/f_108571_ net/minecraft/client/player/Input/right +FD: net/minecraft/client/player/Input/f_108572_ net/minecraft/client/player/Input/jumping +FD: net/minecraft/client/player/Input/f_108573_ net/minecraft/client/player/Input/shiftKeyDown +FD: net/minecraft/client/player/KeyboardInput/f_108578_ net/minecraft/client/player/KeyboardInput/options +FD: net/minecraft/client/player/LocalPlayer/f_108583_ net/minecraft/client/player/LocalPlayer/sprintTriggerTime +FD: net/minecraft/client/player/LocalPlayer/f_108585_ net/minecraft/client/player/LocalPlayer/yBob +FD: net/minecraft/client/player/LocalPlayer/f_108586_ net/minecraft/client/player/LocalPlayer/xBob +FD: net/minecraft/client/player/LocalPlayer/f_108587_ net/minecraft/client/player/LocalPlayer/yBobO +FD: net/minecraft/client/player/LocalPlayer/f_108588_ net/minecraft/client/player/LocalPlayer/xBobO +FD: net/minecraft/client/player/LocalPlayer/f_108589_ net/minecraft/client/player/LocalPlayer/spinningEffectIntensity +FD: net/minecraft/client/player/LocalPlayer/f_108590_ net/minecraft/client/player/LocalPlayer/oSpinningEffectIntensity +FD: net/minecraft/client/player/LocalPlayer/f_108591_ net/minecraft/client/player/LocalPlayer/stats +FD: net/minecraft/client/player/LocalPlayer/f_108592_ net/minecraft/client/player/LocalPlayer/recipeBook +FD: net/minecraft/client/player/LocalPlayer/f_108593_ net/minecraft/client/player/LocalPlayer/ambientSoundHandlers +FD: net/minecraft/client/player/LocalPlayer/f_108594_ net/minecraft/client/player/LocalPlayer/permissionLevel +FD: net/minecraft/client/player/LocalPlayer/f_108595_ net/minecraft/client/player/LocalPlayer/xLast +FD: net/minecraft/client/player/LocalPlayer/f_108596_ net/minecraft/client/player/LocalPlayer/yLast1 +FD: net/minecraft/client/player/LocalPlayer/f_108597_ net/minecraft/client/player/LocalPlayer/zLast +FD: net/minecraft/client/player/LocalPlayer/f_108598_ net/minecraft/client/player/LocalPlayer/yRotLast +FD: net/minecraft/client/player/LocalPlayer/f_108599_ net/minecraft/client/player/LocalPlayer/xRotLast +FD: net/minecraft/client/player/LocalPlayer/f_108600_ net/minecraft/client/player/LocalPlayer/lastOnGround +FD: net/minecraft/client/player/LocalPlayer/f_108601_ net/minecraft/client/player/LocalPlayer/crouching +FD: net/minecraft/client/player/LocalPlayer/f_108602_ net/minecraft/client/player/LocalPlayer/wasShiftKeyDown +FD: net/minecraft/client/player/LocalPlayer/f_108603_ net/minecraft/client/player/LocalPlayer/wasSprinting +FD: net/minecraft/client/player/LocalPlayer/f_108604_ net/minecraft/client/player/LocalPlayer/positionReminder +FD: net/minecraft/client/player/LocalPlayer/f_108605_ net/minecraft/client/player/LocalPlayer/flashOnSetHealth +FD: net/minecraft/client/player/LocalPlayer/f_108606_ net/minecraft/client/player/LocalPlayer/serverBrand +FD: net/minecraft/client/player/LocalPlayer/f_108607_ net/minecraft/client/player/LocalPlayer/jumpRidingTicks +FD: net/minecraft/client/player/LocalPlayer/f_108608_ net/minecraft/client/player/LocalPlayer/jumpRidingScale +FD: net/minecraft/client/player/LocalPlayer/f_108609_ net/minecraft/client/player/LocalPlayer/startedUsingItem +FD: net/minecraft/client/player/LocalPlayer/f_108610_ net/minecraft/client/player/LocalPlayer/usingItemHand +FD: net/minecraft/client/player/LocalPlayer/f_108611_ net/minecraft/client/player/LocalPlayer/handsBusy +FD: net/minecraft/client/player/LocalPlayer/f_108612_ net/minecraft/client/player/LocalPlayer/autoJumpEnabled +FD: net/minecraft/client/player/LocalPlayer/f_108613_ net/minecraft/client/player/LocalPlayer/autoJumpTime +FD: net/minecraft/client/player/LocalPlayer/f_108614_ net/minecraft/client/player/LocalPlayer/wasFallFlying +FD: net/minecraft/client/player/LocalPlayer/f_108615_ net/minecraft/client/player/LocalPlayer/waterVisionTime +FD: net/minecraft/client/player/LocalPlayer/f_108616_ net/minecraft/client/player/LocalPlayer/showDeathScreen +FD: net/minecraft/client/player/LocalPlayer/f_108617_ net/minecraft/client/player/LocalPlayer/connection +FD: net/minecraft/client/player/LocalPlayer/f_108618_ net/minecraft/client/player/LocalPlayer/input +FD: net/minecraft/client/player/LocalPlayer/f_108619_ net/minecraft/client/player/LocalPlayer/minecraft +FD: net/minecraft/client/player/LocalPlayer/f_172525_ net/minecraft/client/player/LocalPlayer/POSITION_REMINDER_INTERVAL +FD: net/minecraft/client/player/LocalPlayer/f_172526_ net/minecraft/client/player/LocalPlayer/WATER_VISION_MAX_TIME +FD: net/minecraft/client/player/LocalPlayer/f_172527_ net/minecraft/client/player/LocalPlayer/WATER_VISION_QUICK_TIME +FD: net/minecraft/client/player/LocalPlayer/f_172528_ net/minecraft/client/player/LocalPlayer/WATER_VISION_QUICK_PERCENT +FD: net/minecraft/client/player/LocalPlayer/f_172529_ net/minecraft/client/player/LocalPlayer/SUFFOCATING_COLLISION_CHECK_SCALE +FD: net/minecraft/client/player/LocalPlayer/f_197409_ net/minecraft/client/player/LocalPlayer/MINOR_COLLISION_ANGLE_THRESHOLD_RADIAN +FD: net/minecraft/client/player/LocalPlayer/f_234120_ net/minecraft/client/player/LocalPlayer/DEFAULT_SNEAKING_MOVEMENT_FACTOR +FD: net/minecraft/client/player/LocalPlayer/f_234121_ net/minecraft/client/player/LocalPlayer/LOGGER +FD: net/minecraft/client/player/RemotePlayer/f_271343_ net/minecraft/client/player/RemotePlayer/lerpDeltaMovement +FD: net/minecraft/client/player/RemotePlayer/f_271363_ net/minecraft/client/player/RemotePlayer/lerpDeltaMovementSteps +FD: net/minecraft/client/player/inventory/Hotbar/f_108780_ net/minecraft/client/player/inventory/Hotbar/items +FD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/f_172536_ net/minecraft/client/profiling/ClientMetricsSamplersProvider/levelRenderer +FD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/f_172537_ net/minecraft/client/profiling/ClientMetricsSamplersProvider/samplers +FD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/f_172538_ net/minecraft/client/profiling/ClientMetricsSamplersProvider/samplerFactory +FD: net/minecraft/client/quickplay/QuickPlay/f_278373_ net/minecraft/client/quickplay/QuickPlay/REALM_PERMISSION +FD: net/minecraft/client/quickplay/QuickPlay/f_278381_ net/minecraft/client/quickplay/QuickPlay/TO_TITLE +FD: net/minecraft/client/quickplay/QuickPlay/f_278412_ net/minecraft/client/quickplay/QuickPlay/REALM_CONNECT +FD: net/minecraft/client/quickplay/QuickPlay/f_278439_ net/minecraft/client/quickplay/QuickPlay/INVALID_IDENTIFIER +FD: net/minecraft/client/quickplay/QuickPlay/f_278468_ net/minecraft/client/quickplay/QuickPlay/TO_WORLD_LIST +FD: net/minecraft/client/quickplay/QuickPlay/f_278484_ net/minecraft/client/quickplay/QuickPlay/ERROR_TITLE +FD: net/minecraft/client/quickplay/QuickPlay/f_278499_ net/minecraft/client/quickplay/QuickPlay/TO_REALMS_LIST +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278416_ net/minecraft/client/quickplay/QuickPlayLog/INACTIVE +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278422_ net/minecraft/client/quickplay/QuickPlayLog/GSON +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278423_ net/minecraft/client/quickplay/QuickPlayLog/worldData +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278438_ net/minecraft/client/quickplay/QuickPlayLog/LOGGER +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278473_ net/minecraft/client/quickplay/QuickPlayLog/path +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278426_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/quickPlayWorld +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278431_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/CODEC +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278456_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/gamemode +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278512_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/lastPlayedTime +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278460_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/id +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278464_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/type +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278469_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/name +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278511_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/MAP_CODEC +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/$VALUES net/minecraft/client/quickplay/QuickPlayLog$Type/$VALUES +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/MULTIPLAYER net/minecraft/client/quickplay/QuickPlayLog$Type/MULTIPLAYER +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/REALMS net/minecraft/client/quickplay/QuickPlayLog$Type/REALMS +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/SINGLEPLAYER net/minecraft/client/quickplay/QuickPlayLog$Type/SINGLEPLAYER +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/f_278427_ net/minecraft/client/quickplay/QuickPlayLog$Type/name +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/f_278494_ net/minecraft/client/quickplay/QuickPlayLog$Type/CODEC +FD: net/minecraft/client/renderer/BiomeColors/f_108789_ net/minecraft/client/renderer/BiomeColors/GRASS_COLOR_RESOLVER +FD: net/minecraft/client/renderer/BiomeColors/f_108790_ net/minecraft/client/renderer/BiomeColors/FOLIAGE_COLOR_RESOLVER +FD: net/minecraft/client/renderer/BiomeColors/f_108791_ net/minecraft/client/renderer/BiomeColors/WATER_COLOR_RESOLVER +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108815_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/SHULKER_BOXES +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108816_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/DEFAULT_SHULKER_BOX +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108817_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/chest +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108818_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/trappedChest +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108819_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/enderChest +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108820_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/banner +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108821_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/bed +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108822_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/conduit +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108823_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/shieldModel +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108824_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/tridentModel +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_172546_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/skullModels +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_172547_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/blockEntityRenderDispatcher +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_172548_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/entityModelSet +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_271254_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/decoratedPot +FD: net/minecraft/client/renderer/ChunkBufferBuilderPack/f_108836_ net/minecraft/client/renderer/ChunkBufferBuilderPack/builders +FD: net/minecraft/client/renderer/CubeMap/f_108846_ net/minecraft/client/renderer/CubeMap/images +FD: net/minecraft/client/renderer/CubeMap/f_172561_ net/minecraft/client/renderer/CubeMap/SIDES +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108857_ net/minecraft/client/renderer/DimensionSpecialEffects/EFFECTS +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108858_ net/minecraft/client/renderer/DimensionSpecialEffects/sunriseCol +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108859_ net/minecraft/client/renderer/DimensionSpecialEffects/cloudLevel +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108860_ net/minecraft/client/renderer/DimensionSpecialEffects/hasGround +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108861_ net/minecraft/client/renderer/DimensionSpecialEffects/skyType +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108862_ net/minecraft/client/renderer/DimensionSpecialEffects/forceBrightLightmap +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108863_ net/minecraft/client/renderer/DimensionSpecialEffects/constantAmbientLight +FD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/f_172562_ net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/CLOUD_LEVEL +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/$VALUES net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/$VALUES +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/END net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/END +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NONE net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NONE +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NORMAL net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NORMAL +FD: net/minecraft/client/renderer/EffectInstance/f_108921_ net/minecraft/client/renderer/EffectInstance/LOGGER +FD: net/minecraft/client/renderer/EffectInstance/f_108922_ net/minecraft/client/renderer/EffectInstance/DUMMY_UNIFORM +FD: net/minecraft/client/renderer/EffectInstance/f_108923_ net/minecraft/client/renderer/EffectInstance/lastAppliedEffect +FD: net/minecraft/client/renderer/EffectInstance/f_108924_ net/minecraft/client/renderer/EffectInstance/lastProgramId +FD: net/minecraft/client/renderer/EffectInstance/f_108925_ net/minecraft/client/renderer/EffectInstance/samplerMap +FD: net/minecraft/client/renderer/EffectInstance/f_108926_ net/minecraft/client/renderer/EffectInstance/samplerNames +FD: net/minecraft/client/renderer/EffectInstance/f_108927_ net/minecraft/client/renderer/EffectInstance/samplerLocations +FD: net/minecraft/client/renderer/EffectInstance/f_108928_ net/minecraft/client/renderer/EffectInstance/uniforms +FD: net/minecraft/client/renderer/EffectInstance/f_108929_ net/minecraft/client/renderer/EffectInstance/uniformLocations +FD: net/minecraft/client/renderer/EffectInstance/f_108930_ net/minecraft/client/renderer/EffectInstance/uniformMap +FD: net/minecraft/client/renderer/EffectInstance/f_108931_ net/minecraft/client/renderer/EffectInstance/programId +FD: net/minecraft/client/renderer/EffectInstance/f_108932_ net/minecraft/client/renderer/EffectInstance/name +FD: net/minecraft/client/renderer/EffectInstance/f_108933_ net/minecraft/client/renderer/EffectInstance/dirty +FD: net/minecraft/client/renderer/EffectInstance/f_108934_ net/minecraft/client/renderer/EffectInstance/blend +FD: net/minecraft/client/renderer/EffectInstance/f_108935_ net/minecraft/client/renderer/EffectInstance/attributes +FD: net/minecraft/client/renderer/EffectInstance/f_108936_ net/minecraft/client/renderer/EffectInstance/attributeNames +FD: net/minecraft/client/renderer/EffectInstance/f_108937_ net/minecraft/client/renderer/EffectInstance/vertexProgram +FD: net/minecraft/client/renderer/EffectInstance/f_108938_ net/minecraft/client/renderer/EffectInstance/fragmentProgram +FD: net/minecraft/client/renderer/EffectInstance/f_172564_ net/minecraft/client/renderer/EffectInstance/EFFECT_SHADER_PATH +FD: net/minecraft/client/renderer/EffectInstance/f_172565_ net/minecraft/client/renderer/EffectInstance/ALWAYS_REAPPLY +FD: net/minecraft/client/renderer/FaceInfo/$VALUES net/minecraft/client/renderer/FaceInfo/$VALUES +FD: net/minecraft/client/renderer/FaceInfo/DOWN net/minecraft/client/renderer/FaceInfo/DOWN +FD: net/minecraft/client/renderer/FaceInfo/EAST net/minecraft/client/renderer/FaceInfo/EAST +FD: net/minecraft/client/renderer/FaceInfo/NORTH net/minecraft/client/renderer/FaceInfo/NORTH +FD: net/minecraft/client/renderer/FaceInfo/SOUTH net/minecraft/client/renderer/FaceInfo/SOUTH +FD: net/minecraft/client/renderer/FaceInfo/UP net/minecraft/client/renderer/FaceInfo/UP +FD: net/minecraft/client/renderer/FaceInfo/WEST net/minecraft/client/renderer/FaceInfo/WEST +FD: net/minecraft/client/renderer/FaceInfo/f_108974_ net/minecraft/client/renderer/FaceInfo/BY_FACING +FD: net/minecraft/client/renderer/FaceInfo/f_108975_ net/minecraft/client/renderer/FaceInfo/infos +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108991_ net/minecraft/client/renderer/FaceInfo$Constants/MAX_Z +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108992_ net/minecraft/client/renderer/FaceInfo$Constants/MAX_Y +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108993_ net/minecraft/client/renderer/FaceInfo$Constants/MAX_X +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108994_ net/minecraft/client/renderer/FaceInfo$Constants/MIN_Z +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108995_ net/minecraft/client/renderer/FaceInfo$Constants/MIN_Y +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108996_ net/minecraft/client/renderer/FaceInfo$Constants/MIN_X +FD: net/minecraft/client/renderer/FaceInfo$VertexInfo/f_108998_ net/minecraft/client/renderer/FaceInfo$VertexInfo/xFace +FD: net/minecraft/client/renderer/FaceInfo$VertexInfo/f_108999_ net/minecraft/client/renderer/FaceInfo$VertexInfo/yFace +FD: net/minecraft/client/renderer/FaceInfo$VertexInfo/f_109000_ net/minecraft/client/renderer/FaceInfo$VertexInfo/zFace +FD: net/minecraft/client/renderer/FogRenderer/f_109010_ net/minecraft/client/renderer/FogRenderer/fogRed +FD: net/minecraft/client/renderer/FogRenderer/f_109011_ net/minecraft/client/renderer/FogRenderer/fogGreen +FD: net/minecraft/client/renderer/FogRenderer/f_109012_ net/minecraft/client/renderer/FogRenderer/fogBlue +FD: net/minecraft/client/renderer/FogRenderer/f_109013_ net/minecraft/client/renderer/FogRenderer/targetBiomeFog +FD: net/minecraft/client/renderer/FogRenderer/f_109014_ net/minecraft/client/renderer/FogRenderer/previousBiomeFog +FD: net/minecraft/client/renderer/FogRenderer/f_109015_ net/minecraft/client/renderer/FogRenderer/biomeChangedTime +FD: net/minecraft/client/renderer/FogRenderer/f_172574_ net/minecraft/client/renderer/FogRenderer/BIOME_FOG_TRANSITION_TIME +FD: net/minecraft/client/renderer/FogRenderer/f_172575_ net/minecraft/client/renderer/FogRenderer/WATER_FOG_DISTANCE +FD: net/minecraft/client/renderer/FogRenderer/f_234164_ net/minecraft/client/renderer/FogRenderer/MOB_EFFECT_FOG +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234199_ net/minecraft/client/renderer/FogRenderer$FogData/mode +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234200_ net/minecraft/client/renderer/FogRenderer$FogData/start +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234201_ net/minecraft/client/renderer/FogRenderer$FogData/end +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234202_ net/minecraft/client/renderer/FogRenderer$FogData/shape +FD: net/minecraft/client/renderer/FogRenderer$FogMode/$VALUES net/minecraft/client/renderer/FogRenderer$FogMode/$VALUES +FD: net/minecraft/client/renderer/FogRenderer$FogMode/FOG_SKY net/minecraft/client/renderer/FogRenderer$FogMode/FOG_SKY +FD: net/minecraft/client/renderer/FogRenderer$FogMode/FOG_TERRAIN net/minecraft/client/renderer/FogRenderer$FogMode/FOG_TERRAIN +FD: net/minecraft/client/renderer/GameRenderer/f_109047_ net/minecraft/client/renderer/GameRenderer/itemActivationTicks +FD: net/minecraft/client/renderer/GameRenderer/f_109048_ net/minecraft/client/renderer/GameRenderer/itemActivationOffX +FD: net/minecraft/client/renderer/GameRenderer/f_109049_ net/minecraft/client/renderer/GameRenderer/itemActivationOffY +FD: net/minecraft/client/renderer/GameRenderer/f_109050_ net/minecraft/client/renderer/GameRenderer/postEffect +FD: net/minecraft/client/renderer/GameRenderer/f_109051_ net/minecraft/client/renderer/GameRenderer/EFFECTS +FD: net/minecraft/client/renderer/GameRenderer/f_109052_ net/minecraft/client/renderer/GameRenderer/effectIndex +FD: net/minecraft/client/renderer/GameRenderer/f_109053_ net/minecraft/client/renderer/GameRenderer/effectActive +FD: net/minecraft/client/renderer/GameRenderer/f_109054_ net/minecraft/client/renderer/GameRenderer/mainCamera +FD: net/minecraft/client/renderer/GameRenderer/f_109055_ net/minecraft/client/renderer/GameRenderer/itemInHandRenderer +FD: net/minecraft/client/renderer/GameRenderer/f_109056_ net/minecraft/client/renderer/GameRenderer/EFFECT_NONE +FD: net/minecraft/client/renderer/GameRenderer/f_109057_ net/minecraft/client/renderer/GameRenderer/NAUSEA_LOCATION +FD: net/minecraft/client/renderer/GameRenderer/f_109058_ net/minecraft/client/renderer/GameRenderer/LOGGER +FD: net/minecraft/client/renderer/GameRenderer/f_109059_ net/minecraft/client/renderer/GameRenderer/minecraft +FD: net/minecraft/client/renderer/GameRenderer/f_109060_ net/minecraft/client/renderer/GameRenderer/resourceManager +FD: net/minecraft/client/renderer/GameRenderer/f_109061_ net/minecraft/client/renderer/GameRenderer/random +FD: net/minecraft/client/renderer/GameRenderer/f_109062_ net/minecraft/client/renderer/GameRenderer/renderDistance +FD: net/minecraft/client/renderer/GameRenderer/f_109063_ net/minecraft/client/renderer/GameRenderer/mapRenderer +FD: net/minecraft/client/renderer/GameRenderer/f_109064_ net/minecraft/client/renderer/GameRenderer/renderBuffers +FD: net/minecraft/client/renderer/GameRenderer/f_109065_ net/minecraft/client/renderer/GameRenderer/tick +FD: net/minecraft/client/renderer/GameRenderer/f_109066_ net/minecraft/client/renderer/GameRenderer/fov +FD: net/minecraft/client/renderer/GameRenderer/f_109067_ net/minecraft/client/renderer/GameRenderer/oldFov +FD: net/minecraft/client/renderer/GameRenderer/f_109068_ net/minecraft/client/renderer/GameRenderer/darkenWorldAmount +FD: net/minecraft/client/renderer/GameRenderer/f_109069_ net/minecraft/client/renderer/GameRenderer/darkenWorldAmountO +FD: net/minecraft/client/renderer/GameRenderer/f_109070_ net/minecraft/client/renderer/GameRenderer/renderHand +FD: net/minecraft/client/renderer/GameRenderer/f_109071_ net/minecraft/client/renderer/GameRenderer/renderBlockOutline +FD: net/minecraft/client/renderer/GameRenderer/f_109072_ net/minecraft/client/renderer/GameRenderer/lastScreenshotAttempt +FD: net/minecraft/client/renderer/GameRenderer/f_109073_ net/minecraft/client/renderer/GameRenderer/lastActiveTime +FD: net/minecraft/client/renderer/GameRenderer/f_109074_ net/minecraft/client/renderer/GameRenderer/lightTexture +FD: net/minecraft/client/renderer/GameRenderer/f_109075_ net/minecraft/client/renderer/GameRenderer/overlayTexture +FD: net/minecraft/client/renderer/GameRenderer/f_109076_ net/minecraft/client/renderer/GameRenderer/panoramicMode +FD: net/minecraft/client/renderer/GameRenderer/f_109077_ net/minecraft/client/renderer/GameRenderer/zoom +FD: net/minecraft/client/renderer/GameRenderer/f_109078_ net/minecraft/client/renderer/GameRenderer/zoomX +FD: net/minecraft/client/renderer/GameRenderer/f_109079_ net/minecraft/client/renderer/GameRenderer/zoomY +FD: net/minecraft/client/renderer/GameRenderer/f_109080_ net/minecraft/client/renderer/GameRenderer/itemActivationItem +FD: net/minecraft/client/renderer/GameRenderer/f_172578_ net/minecraft/client/renderer/GameRenderer/shaders +FD: net/minecraft/client/renderer/GameRenderer/f_172579_ net/minecraft/client/renderer/GameRenderer/positionShader +FD: net/minecraft/client/renderer/GameRenderer/f_172580_ net/minecraft/client/renderer/GameRenderer/positionColorShader +FD: net/minecraft/client/renderer/GameRenderer/f_172581_ net/minecraft/client/renderer/GameRenderer/positionColorTexShader +FD: net/minecraft/client/renderer/GameRenderer/f_172582_ net/minecraft/client/renderer/GameRenderer/positionTexShader +FD: net/minecraft/client/renderer/GameRenderer/f_172583_ net/minecraft/client/renderer/GameRenderer/positionTexColorShader +FD: net/minecraft/client/renderer/GameRenderer/f_172586_ net/minecraft/client/renderer/GameRenderer/particleShader +FD: net/minecraft/client/renderer/GameRenderer/f_172587_ net/minecraft/client/renderer/GameRenderer/positionColorLightmapShader +FD: net/minecraft/client/renderer/GameRenderer/f_172588_ net/minecraft/client/renderer/GameRenderer/positionColorTexLightmapShader +FD: net/minecraft/client/renderer/GameRenderer/f_172589_ net/minecraft/client/renderer/GameRenderer/positionTexColorNormalShader +FD: net/minecraft/client/renderer/GameRenderer/f_172590_ net/minecraft/client/renderer/GameRenderer/positionTexLightmapColorShader +FD: net/minecraft/client/renderer/GameRenderer/f_172591_ net/minecraft/client/renderer/GameRenderer/rendertypeSolidShader +FD: net/minecraft/client/renderer/GameRenderer/f_172592_ net/minecraft/client/renderer/GameRenderer/PROJECTION_Z_NEAR +FD: net/minecraft/client/renderer/GameRenderer/f_172593_ net/minecraft/client/renderer/GameRenderer/rendertypeGlintTranslucentShader +FD: net/minecraft/client/renderer/GameRenderer/f_172594_ net/minecraft/client/renderer/GameRenderer/rendertypeGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172595_ net/minecraft/client/renderer/GameRenderer/rendertypeGlintDirectShader +FD: net/minecraft/client/renderer/GameRenderer/f_172596_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172597_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityGlintDirectShader +FD: net/minecraft/client/renderer/GameRenderer/f_172598_ net/minecraft/client/renderer/GameRenderer/rendertypeTextShader +FD: net/minecraft/client/renderer/GameRenderer/f_172599_ net/minecraft/client/renderer/GameRenderer/rendertypeTextIntensityShader +FD: net/minecraft/client/renderer/GameRenderer/f_172600_ net/minecraft/client/renderer/GameRenderer/rendertypeTextSeeThroughShader +FD: net/minecraft/client/renderer/GameRenderer/f_172601_ net/minecraft/client/renderer/GameRenderer/rendertypeTextIntensitySeeThroughShader +FD: net/minecraft/client/renderer/GameRenderer/f_172602_ net/minecraft/client/renderer/GameRenderer/rendertypeLightningShader +FD: net/minecraft/client/renderer/GameRenderer/f_172603_ net/minecraft/client/renderer/GameRenderer/rendertypeTripwireShader +FD: net/minecraft/client/renderer/GameRenderer/f_172604_ net/minecraft/client/renderer/GameRenderer/rendertypeEndPortalShader +FD: net/minecraft/client/renderer/GameRenderer/f_172605_ net/minecraft/client/renderer/GameRenderer/rendertypeEndGatewayShader +FD: net/minecraft/client/renderer/GameRenderer/f_172606_ net/minecraft/client/renderer/GameRenderer/rendertypeLinesShader +FD: net/minecraft/client/renderer/GameRenderer/f_172607_ net/minecraft/client/renderer/GameRenderer/rendertypeCrumblingShader +FD: net/minecraft/client/renderer/GameRenderer/f_172608_ net/minecraft/client/renderer/GameRenderer/rendertypeCutoutMippedShader +FD: net/minecraft/client/renderer/GameRenderer/f_172609_ net/minecraft/client/renderer/GameRenderer/rendertypeCutoutShader +FD: net/minecraft/client/renderer/GameRenderer/f_172610_ net/minecraft/client/renderer/GameRenderer/rendertypeTranslucentShader +FD: net/minecraft/client/renderer/GameRenderer/f_172611_ net/minecraft/client/renderer/GameRenderer/rendertypeTranslucentMovingBlockShader +FD: net/minecraft/client/renderer/GameRenderer/f_172612_ net/minecraft/client/renderer/GameRenderer/rendertypeTranslucentNoCrumblingShader +FD: net/minecraft/client/renderer/GameRenderer/f_172613_ net/minecraft/client/renderer/GameRenderer/rendertypeArmorCutoutNoCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172614_ net/minecraft/client/renderer/GameRenderer/rendertypeEntitySolidShader +FD: net/minecraft/client/renderer/GameRenderer/f_172615_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityCutoutShader +FD: net/minecraft/client/renderer/GameRenderer/f_172616_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityCutoutNoCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172617_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityCutoutNoCullZOffsetShader +FD: net/minecraft/client/renderer/GameRenderer/f_172618_ net/minecraft/client/renderer/GameRenderer/rendertypeItemEntityTranslucentCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172619_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityTranslucentCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172620_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityTranslucentShader +FD: net/minecraft/client/renderer/GameRenderer/f_172621_ net/minecraft/client/renderer/GameRenderer/rendertypeEntitySmoothCutoutShader +FD: net/minecraft/client/renderer/GameRenderer/f_172622_ net/minecraft/client/renderer/GameRenderer/rendertypeBeaconBeamShader +FD: net/minecraft/client/renderer/GameRenderer/f_172623_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityDecalShader +FD: net/minecraft/client/renderer/GameRenderer/f_172624_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityNoOutlineShader +FD: net/minecraft/client/renderer/GameRenderer/f_172625_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityShadowShader +FD: net/minecraft/client/renderer/GameRenderer/f_172626_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityAlphaShader +FD: net/minecraft/client/renderer/GameRenderer/f_172627_ net/minecraft/client/renderer/GameRenderer/rendertypeEyesShader +FD: net/minecraft/client/renderer/GameRenderer/f_172628_ net/minecraft/client/renderer/GameRenderer/rendertypeEnergySwirlShader +FD: net/minecraft/client/renderer/GameRenderer/f_172629_ net/minecraft/client/renderer/GameRenderer/rendertypeLeashShader +FD: net/minecraft/client/renderer/GameRenderer/f_172630_ net/minecraft/client/renderer/GameRenderer/rendertypeWaterMaskShader +FD: net/minecraft/client/renderer/GameRenderer/f_172631_ net/minecraft/client/renderer/GameRenderer/rendertypeOutlineShader +FD: net/minecraft/client/renderer/GameRenderer/f_172632_ net/minecraft/client/renderer/GameRenderer/rendertypeArmorGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172633_ net/minecraft/client/renderer/GameRenderer/rendertypeArmorEntityGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172634_ net/minecraft/client/renderer/GameRenderer/ITEM_ACTIVATION_ANIMATION_LENGTH +FD: net/minecraft/client/renderer/GameRenderer/f_172635_ net/minecraft/client/renderer/GameRenderer/blitShader +FD: net/minecraft/client/renderer/GameRenderer/f_172636_ net/minecraft/client/renderer/GameRenderer/DEPTH_BUFFER_DEBUG +FD: net/minecraft/client/renderer/GameRenderer/f_182638_ net/minecraft/client/renderer/GameRenderer/hasWorldScreenshot +FD: net/minecraft/client/renderer/GameRenderer/f_234217_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityTranslucentEmissiveShader +FD: net/minecraft/client/renderer/GameRenderer/f_268423_ net/minecraft/client/renderer/GameRenderer/rendertypeTextBackgroundShader +FD: net/minecraft/client/renderer/GameRenderer/f_268525_ net/minecraft/client/renderer/GameRenderer/rendertypeTextBackgroundSeeThroughShader +FD: net/minecraft/client/renderer/GameRenderer/f_285569_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiGhostRecipeOverlayShader +FD: net/minecraft/client/renderer/GameRenderer/f_285598_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiOverlayShader +FD: net/minecraft/client/renderer/GameRenderer/f_285623_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiTextHighlightShader +FD: net/minecraft/client/renderer/GameRenderer/f_285653_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiShader +FD: net/minecraft/client/renderer/GameRenderer/f_289032_ net/minecraft/client/renderer/GameRenderer/GUI_Z_NEAR +FD: net/minecraft/client/renderer/GameRenderer$1/f_244403_ net/minecraft/client/renderer/GameRenderer$1/this$0 +FD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_243825_ net/minecraft/client/renderer/GameRenderer$ResourceCache/cache +FD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_244315_ net/minecraft/client/renderer/GameRenderer$ResourceCache/original +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109210_ net/minecraft/client/renderer/GpuWarnlistManager/LOGGER +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109211_ net/minecraft/client/renderer/GpuWarnlistManager/GPU_WARNLIST_LOCATION +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109212_ net/minecraft/client/renderer/GpuWarnlistManager/warnings +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109213_ net/minecraft/client/renderer/GpuWarnlistManager/showWarning +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109214_ net/minecraft/client/renderer/GpuWarnlistManager/warningDismissed +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109215_ net/minecraft/client/renderer/GpuWarnlistManager/skipFabulous +FD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/f_109257_ net/minecraft/client/renderer/GpuWarnlistManager$Preparations/rendererPatterns +FD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/f_109258_ net/minecraft/client/renderer/GpuWarnlistManager$Preparations/versionPatterns +FD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/f_109259_ net/minecraft/client/renderer/GpuWarnlistManager$Preparations/vendorPatterns +FD: net/minecraft/client/renderer/ItemBlockRenderTypes/f_109275_ net/minecraft/client/renderer/ItemBlockRenderTypes/TYPE_BY_BLOCK +FD: net/minecraft/client/renderer/ItemBlockRenderTypes/f_109276_ net/minecraft/client/renderer/ItemBlockRenderTypes/TYPE_BY_FLUID +FD: net/minecraft/client/renderer/ItemBlockRenderTypes/f_109277_ net/minecraft/client/renderer/ItemBlockRenderTypes/renderCutout +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109297_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_BACKGROUND +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109298_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_BACKGROUND_CHECKERBOARD +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109299_ net/minecraft/client/renderer/ItemInHandRenderer/minecraft +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109300_ net/minecraft/client/renderer/ItemInHandRenderer/mainHandItem +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109301_ net/minecraft/client/renderer/ItemInHandRenderer/offHandItem +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109302_ net/minecraft/client/renderer/ItemInHandRenderer/mainHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109303_ net/minecraft/client/renderer/ItemInHandRenderer/oMainHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109304_ net/minecraft/client/renderer/ItemInHandRenderer/offHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109305_ net/minecraft/client/renderer/ItemInHandRenderer/oOffHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109306_ net/minecraft/client/renderer/ItemInHandRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109307_ net/minecraft/client/renderer/ItemInHandRenderer/itemRenderer +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172842_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172843_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_HEIGHT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172844_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172845_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172846_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172847_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172848_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PRESWING_ROT_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172849_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PREROTATION_X_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172850_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PREROTATION_Y_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172851_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PREROTATION_Z_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172852_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POSTROTATION_X_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172853_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_ROT_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172854_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_ROT_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172855_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_ROT_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172856_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_SWING_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172857_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_SWING_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172858_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_POS_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172859_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_POS_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172860_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_POS_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172861_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_HEIGHT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172862_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_TILT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172863_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_PLAYER_PITCH_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172864_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172865_ net/minecraft/client/renderer/ItemInHandRenderer/MAPHAND_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172866_ net/minecraft/client/renderer/ItemInHandRenderer/MAPHAND_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172867_ net/minecraft/client/renderer/ItemInHandRenderer/MAPHAND_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172868_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HAND_X_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172869_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HAND_Y_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172870_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HAND_Z_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172871_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_SWING_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172872_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_PRE_ROT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172873_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_GLOBAL_X_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172874_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_GLOBAL_Y_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172875_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_GLOBAL_Z_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172876_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_FINAL_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172877_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_BORDER +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172878_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HEIGHT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172879_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_WIDTH +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172880_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172881_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172882_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172883_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_SHAKE_X_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172884_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_SHAKE_Y_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172885_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_SHAKE_Z_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172886_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_Z_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172887_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_MIN_SHAKE_CHARGE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172888_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172889_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172890_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172891_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_HEIGHT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172892_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_POS_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172893_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_POS_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172894_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_POS_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172895_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_PRESWING_ROT_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172896_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172897_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172898_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172899_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172900_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172901_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172902_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172903_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172904_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172905_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_EXPONENT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172906_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_EXTRA_JIGGLE_CUTOFF +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172907_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_EXTRA_JIGGLE_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172908_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172909_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172910_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172911_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer$1/f_109386_ net/minecraft/client/renderer/ItemInHandRenderer$1/$SwitchMap$net$minecraft$world$item$UseAnim +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/$VALUES net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/$VALUES +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_BOTH_HANDS net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_BOTH_HANDS +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_MAIN_HAND_ONLY net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_MAIN_HAND_ONLY +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_OFF_HAND_ONLY net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_OFF_HAND_ONLY +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/f_172921_ net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/renderMainHand +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/f_172922_ net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/renderOffHand +FD: net/minecraft/client/renderer/ItemModelShaper/f_109388_ net/minecraft/client/renderer/ItemModelShaper/shapes +FD: net/minecraft/client/renderer/ItemModelShaper/f_109389_ net/minecraft/client/renderer/ItemModelShaper/shapesCache +FD: net/minecraft/client/renderer/ItemModelShaper/f_109390_ net/minecraft/client/renderer/ItemModelShaper/modelManager +FD: net/minecraft/client/renderer/LevelRenderer/f_109408_ net/minecraft/client/renderer/LevelRenderer/destroyingBlocks +FD: net/minecraft/client/renderer/LevelRenderer/f_109409_ net/minecraft/client/renderer/LevelRenderer/destructionProgress +FD: net/minecraft/client/renderer/LevelRenderer/f_109410_ net/minecraft/client/renderer/LevelRenderer/playingRecords +FD: net/minecraft/client/renderer/LevelRenderer/f_109411_ net/minecraft/client/renderer/LevelRenderer/entityTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109412_ net/minecraft/client/renderer/LevelRenderer/entityEffect +FD: net/minecraft/client/renderer/LevelRenderer/f_109413_ net/minecraft/client/renderer/LevelRenderer/translucentTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109414_ net/minecraft/client/renderer/LevelRenderer/itemEntityTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109415_ net/minecraft/client/renderer/LevelRenderer/particlesTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109416_ net/minecraft/client/renderer/LevelRenderer/weatherTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109417_ net/minecraft/client/renderer/LevelRenderer/cloudsTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109418_ net/minecraft/client/renderer/LevelRenderer/transparencyChain +FD: net/minecraft/client/renderer/LevelRenderer/f_109419_ net/minecraft/client/renderer/LevelRenderer/lastCameraX +FD: net/minecraft/client/renderer/LevelRenderer/f_109420_ net/minecraft/client/renderer/LevelRenderer/lastCameraY +FD: net/minecraft/client/renderer/LevelRenderer/f_109421_ net/minecraft/client/renderer/LevelRenderer/lastCameraZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109422_ net/minecraft/client/renderer/LevelRenderer/lastCameraChunkX +FD: net/minecraft/client/renderer/LevelRenderer/f_109423_ net/minecraft/client/renderer/LevelRenderer/lastCameraChunkY +FD: net/minecraft/client/renderer/LevelRenderer/f_109424_ net/minecraft/client/renderer/LevelRenderer/lastCameraChunkZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109425_ net/minecraft/client/renderer/LevelRenderer/prevCamX +FD: net/minecraft/client/renderer/LevelRenderer/f_109426_ net/minecraft/client/renderer/LevelRenderer/prevCamY +FD: net/minecraft/client/renderer/LevelRenderer/f_109427_ net/minecraft/client/renderer/LevelRenderer/prevCamZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109428_ net/minecraft/client/renderer/LevelRenderer/prevCamRotX +FD: net/minecraft/client/renderer/LevelRenderer/f_109429_ net/minecraft/client/renderer/LevelRenderer/prevCamRotY +FD: net/minecraft/client/renderer/LevelRenderer/f_109430_ net/minecraft/client/renderer/LevelRenderer/prevCloudX +FD: net/minecraft/client/renderer/LevelRenderer/f_109431_ net/minecraft/client/renderer/LevelRenderer/prevCloudY +FD: net/minecraft/client/renderer/LevelRenderer/f_109432_ net/minecraft/client/renderer/LevelRenderer/prevCloudZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109433_ net/minecraft/client/renderer/LevelRenderer/prevCloudColor +FD: net/minecraft/client/renderer/LevelRenderer/f_109434_ net/minecraft/client/renderer/LevelRenderer/DIRECTIONS +FD: net/minecraft/client/renderer/LevelRenderer/f_109435_ net/minecraft/client/renderer/LevelRenderer/prevCloudsType +FD: net/minecraft/client/renderer/LevelRenderer/f_109436_ net/minecraft/client/renderer/LevelRenderer/chunkRenderDispatcher +FD: net/minecraft/client/renderer/LevelRenderer/f_109438_ net/minecraft/client/renderer/LevelRenderer/lastViewDistance +FD: net/minecraft/client/renderer/LevelRenderer/f_109439_ net/minecraft/client/renderer/LevelRenderer/renderedEntities +FD: net/minecraft/client/renderer/LevelRenderer/f_109440_ net/minecraft/client/renderer/LevelRenderer/culledEntities +FD: net/minecraft/client/renderer/LevelRenderer/f_109441_ net/minecraft/client/renderer/LevelRenderer/captureFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_109442_ net/minecraft/client/renderer/LevelRenderer/capturedFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_109443_ net/minecraft/client/renderer/LevelRenderer/frustumPoints +FD: net/minecraft/client/renderer/LevelRenderer/f_109444_ net/minecraft/client/renderer/LevelRenderer/frustumPos +FD: net/minecraft/client/renderer/LevelRenderer/f_109445_ net/minecraft/client/renderer/LevelRenderer/xTransparentOld +FD: net/minecraft/client/renderer/LevelRenderer/f_109446_ net/minecraft/client/renderer/LevelRenderer/yTransparentOld +FD: net/minecraft/client/renderer/LevelRenderer/f_109447_ net/minecraft/client/renderer/LevelRenderer/zTransparentOld +FD: net/minecraft/client/renderer/LevelRenderer/f_109450_ net/minecraft/client/renderer/LevelRenderer/rainSoundTime +FD: net/minecraft/client/renderer/LevelRenderer/f_109451_ net/minecraft/client/renderer/LevelRenderer/rainSizeX +FD: net/minecraft/client/renderer/LevelRenderer/f_109452_ net/minecraft/client/renderer/LevelRenderer/rainSizeZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109453_ net/minecraft/client/renderer/LevelRenderer/LOGGER +FD: net/minecraft/client/renderer/LevelRenderer/f_109454_ net/minecraft/client/renderer/LevelRenderer/MOON_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109455_ net/minecraft/client/renderer/LevelRenderer/SUN_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109456_ net/minecraft/client/renderer/LevelRenderer/CLOUDS_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109457_ net/minecraft/client/renderer/LevelRenderer/END_SKY_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109458_ net/minecraft/client/renderer/LevelRenderer/FORCEFIELD_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109459_ net/minecraft/client/renderer/LevelRenderer/RAIN_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109460_ net/minecraft/client/renderer/LevelRenderer/SNOW_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109461_ net/minecraft/client/renderer/LevelRenderer/minecraft +FD: net/minecraft/client/renderer/LevelRenderer/f_109463_ net/minecraft/client/renderer/LevelRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/LevelRenderer/f_109464_ net/minecraft/client/renderer/LevelRenderer/renderBuffers +FD: net/minecraft/client/renderer/LevelRenderer/f_109465_ net/minecraft/client/renderer/LevelRenderer/level +FD: net/minecraft/client/renderer/LevelRenderer/f_109468_ net/minecraft/client/renderer/LevelRenderer/globalBlockEntities +FD: net/minecraft/client/renderer/LevelRenderer/f_109469_ net/minecraft/client/renderer/LevelRenderer/viewArea +FD: net/minecraft/client/renderer/LevelRenderer/f_109471_ net/minecraft/client/renderer/LevelRenderer/starBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109472_ net/minecraft/client/renderer/LevelRenderer/skyBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109473_ net/minecraft/client/renderer/LevelRenderer/darkBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109474_ net/minecraft/client/renderer/LevelRenderer/generateClouds +FD: net/minecraft/client/renderer/LevelRenderer/f_109475_ net/minecraft/client/renderer/LevelRenderer/cloudBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109476_ net/minecraft/client/renderer/LevelRenderer/frameTimes +FD: net/minecraft/client/renderer/LevelRenderer/f_109477_ net/minecraft/client/renderer/LevelRenderer/ticks +FD: net/minecraft/client/renderer/LevelRenderer/f_172937_ net/minecraft/client/renderer/LevelRenderer/CHUNK_SIZE +FD: net/minecraft/client/renderer/LevelRenderer/f_172938_ net/minecraft/client/renderer/LevelRenderer/cullingFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_172941_ net/minecraft/client/renderer/LevelRenderer/SKY_DISC_RADIUS +FD: net/minecraft/client/renderer/LevelRenderer/f_172942_ net/minecraft/client/renderer/LevelRenderer/MIN_FOG_DISTANCE +FD: net/minecraft/client/renderer/LevelRenderer/f_172943_ net/minecraft/client/renderer/LevelRenderer/RAIN_RADIUS +FD: net/minecraft/client/renderer/LevelRenderer/f_172944_ net/minecraft/client/renderer/LevelRenderer/RAIN_DIAMETER +FD: net/minecraft/client/renderer/LevelRenderer/f_172945_ net/minecraft/client/renderer/LevelRenderer/TRANSPARENT_SORT_COUNT +FD: net/minecraft/client/renderer/LevelRenderer/f_172946_ net/minecraft/client/renderer/LevelRenderer/blockEntityRenderDispatcher +FD: net/minecraft/client/renderer/LevelRenderer/f_194297_ net/minecraft/client/renderer/LevelRenderer/renderChunksInFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_194298_ net/minecraft/client/renderer/LevelRenderer/lastFullRenderChunkUpdate +FD: net/minecraft/client/renderer/LevelRenderer/f_194299_ net/minecraft/client/renderer/LevelRenderer/needsFrustumUpdate +FD: net/minecraft/client/renderer/LevelRenderer/f_194300_ net/minecraft/client/renderer/LevelRenderer/needsFullRenderChunkUpdate +FD: net/minecraft/client/renderer/LevelRenderer/f_194301_ net/minecraft/client/renderer/LevelRenderer/nextFullUpdateMillis +FD: net/minecraft/client/renderer/LevelRenderer/f_194302_ net/minecraft/client/renderer/LevelRenderer/HALF_CHUNK_SIZE +FD: net/minecraft/client/renderer/LevelRenderer/f_194303_ net/minecraft/client/renderer/LevelRenderer/MINIMUM_ADVANCED_CULLING_DISTANCE +FD: net/minecraft/client/renderer/LevelRenderer/f_194304_ net/minecraft/client/renderer/LevelRenderer/CEILED_SECTION_DIAGONAL +FD: net/minecraft/client/renderer/LevelRenderer/f_194305_ net/minecraft/client/renderer/LevelRenderer/HALF_A_SECOND_IN_MILLIS +FD: net/minecraft/client/renderer/LevelRenderer/f_194306_ net/minecraft/client/renderer/LevelRenderer/recentlyCompiledChunks +FD: net/minecraft/client/renderer/LevelRenderer/f_194307_ net/minecraft/client/renderer/LevelRenderer/renderChunkStorage +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_109839_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/chunk +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_109841_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/directions +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_109842_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/step +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_173020_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/sourceDirections +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/f_194375_ net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/renderInfoMap +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/f_194376_ net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/renderChunks +FD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/f_173030_ net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/infos +FD: net/minecraft/client/renderer/LightTexture/f_109870_ net/minecraft/client/renderer/LightTexture/lightTexture +FD: net/minecraft/client/renderer/LightTexture/f_109871_ net/minecraft/client/renderer/LightTexture/lightPixels +FD: net/minecraft/client/renderer/LightTexture/f_109872_ net/minecraft/client/renderer/LightTexture/lightTextureLocation +FD: net/minecraft/client/renderer/LightTexture/f_109873_ net/minecraft/client/renderer/LightTexture/updateLightTexture +FD: net/minecraft/client/renderer/LightTexture/f_109874_ net/minecraft/client/renderer/LightTexture/blockLightRedFlicker +FD: net/minecraft/client/renderer/LightTexture/f_109875_ net/minecraft/client/renderer/LightTexture/renderer +FD: net/minecraft/client/renderer/LightTexture/f_109876_ net/minecraft/client/renderer/LightTexture/minecraft +FD: net/minecraft/client/renderer/LightTexture/f_173040_ net/minecraft/client/renderer/LightTexture/FULL_BRIGHT +FD: net/minecraft/client/renderer/LightTexture/f_173041_ net/minecraft/client/renderer/LightTexture/FULL_SKY +FD: net/minecraft/client/renderer/LightTexture/f_173042_ net/minecraft/client/renderer/LightTexture/FULL_BLOCK +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109904_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/builder +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109905_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/fixedBuffers +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109906_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/lastState +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109907_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/startedBuffers +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109920_ net/minecraft/client/renderer/OutlineBufferSource/bufferSource +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109921_ net/minecraft/client/renderer/OutlineBufferSource/outlineBufferSource +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109922_ net/minecraft/client/renderer/OutlineBufferSource/teamR +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109923_ net/minecraft/client/renderer/OutlineBufferSource/teamG +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109924_ net/minecraft/client/renderer/OutlineBufferSource/teamB +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109925_ net/minecraft/client/renderer/OutlineBufferSource/teamA +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109936_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/delegate +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109937_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/x +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109938_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/y +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109939_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/z +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109940_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/u +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109941_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/v +FD: net/minecraft/client/renderer/PanoramaRenderer/f_109998_ net/minecraft/client/renderer/PanoramaRenderer/minecraft +FD: net/minecraft/client/renderer/PanoramaRenderer/f_109999_ net/minecraft/client/renderer/PanoramaRenderer/cubeMap +FD: net/minecraft/client/renderer/PanoramaRenderer/f_244463_ net/minecraft/client/renderer/PanoramaRenderer/bob +FD: net/minecraft/client/renderer/PanoramaRenderer/f_244569_ net/minecraft/client/renderer/PanoramaRenderer/spin +FD: net/minecraft/client/renderer/PostChain/f_110006_ net/minecraft/client/renderer/PostChain/screenTarget +FD: net/minecraft/client/renderer/PostChain/f_110007_ net/minecraft/client/renderer/PostChain/resourceManager +FD: net/minecraft/client/renderer/PostChain/f_110008_ net/minecraft/client/renderer/PostChain/name +FD: net/minecraft/client/renderer/PostChain/f_110009_ net/minecraft/client/renderer/PostChain/passes +FD: net/minecraft/client/renderer/PostChain/f_110010_ net/minecraft/client/renderer/PostChain/customRenderTargets +FD: net/minecraft/client/renderer/PostChain/f_110011_ net/minecraft/client/renderer/PostChain/fullSizedTargets +FD: net/minecraft/client/renderer/PostChain/f_110012_ net/minecraft/client/renderer/PostChain/shaderOrthoMatrix +FD: net/minecraft/client/renderer/PostChain/f_110013_ net/minecraft/client/renderer/PostChain/screenWidth +FD: net/minecraft/client/renderer/PostChain/f_110014_ net/minecraft/client/renderer/PostChain/screenHeight +FD: net/minecraft/client/renderer/PostChain/f_110015_ net/minecraft/client/renderer/PostChain/time +FD: net/minecraft/client/renderer/PostChain/f_110016_ net/minecraft/client/renderer/PostChain/lastStamp +FD: net/minecraft/client/renderer/PostChain/f_173045_ net/minecraft/client/renderer/PostChain/MAIN_RENDER_TARGET +FD: net/minecraft/client/renderer/PostPass/f_110052_ net/minecraft/client/renderer/PostPass/inTarget +FD: net/minecraft/client/renderer/PostPass/f_110053_ net/minecraft/client/renderer/PostPass/outTarget +FD: net/minecraft/client/renderer/PostPass/f_110054_ net/minecraft/client/renderer/PostPass/effect +FD: net/minecraft/client/renderer/PostPass/f_110055_ net/minecraft/client/renderer/PostPass/auxAssets +FD: net/minecraft/client/renderer/PostPass/f_110056_ net/minecraft/client/renderer/PostPass/auxNames +FD: net/minecraft/client/renderer/PostPass/f_110057_ net/minecraft/client/renderer/PostPass/auxWidths +FD: net/minecraft/client/renderer/PostPass/f_110058_ net/minecraft/client/renderer/PostPass/auxHeights +FD: net/minecraft/client/renderer/PostPass/f_110059_ net/minecraft/client/renderer/PostPass/shaderOrthoMatrix +FD: net/minecraft/client/renderer/Rect2i/f_110076_ net/minecraft/client/renderer/Rect2i/xPos +FD: net/minecraft/client/renderer/Rect2i/f_110077_ net/minecraft/client/renderer/Rect2i/yPos +FD: net/minecraft/client/renderer/Rect2i/f_110078_ net/minecraft/client/renderer/Rect2i/width +FD: net/minecraft/client/renderer/Rect2i/f_110079_ net/minecraft/client/renderer/Rect2i/height +FD: net/minecraft/client/renderer/RenderBuffers/f_110092_ net/minecraft/client/renderer/RenderBuffers/fixedBufferPack +FD: net/minecraft/client/renderer/RenderBuffers/f_110093_ net/minecraft/client/renderer/RenderBuffers/fixedBuffers +FD: net/minecraft/client/renderer/RenderBuffers/f_110094_ net/minecraft/client/renderer/RenderBuffers/bufferSource +FD: net/minecraft/client/renderer/RenderBuffers/f_110095_ net/minecraft/client/renderer/RenderBuffers/crumblingBufferSource +FD: net/minecraft/client/renderer/RenderBuffers/f_110096_ net/minecraft/client/renderer/RenderBuffers/outlineBufferSource +FD: net/minecraft/client/renderer/RenderStateShard/f_110110_ net/minecraft/client/renderer/RenderStateShard/NO_CULL +FD: net/minecraft/client/renderer/RenderStateShard/f_110111_ net/minecraft/client/renderer/RenderStateShard/NO_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_110112_ net/minecraft/client/renderer/RenderStateShard/EQUAL_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_110113_ net/minecraft/client/renderer/RenderStateShard/LEQUAL_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_110114_ net/minecraft/client/renderer/RenderStateShard/COLOR_DEPTH_WRITE +FD: net/minecraft/client/renderer/RenderStateShard/f_110115_ net/minecraft/client/renderer/RenderStateShard/COLOR_WRITE +FD: net/minecraft/client/renderer/RenderStateShard/f_110116_ net/minecraft/client/renderer/RenderStateShard/DEPTH_WRITE +FD: net/minecraft/client/renderer/RenderStateShard/f_110117_ net/minecraft/client/renderer/RenderStateShard/NO_LAYERING +FD: net/minecraft/client/renderer/RenderStateShard/f_110118_ net/minecraft/client/renderer/RenderStateShard/POLYGON_OFFSET_LAYERING +FD: net/minecraft/client/renderer/RenderStateShard/f_110119_ net/minecraft/client/renderer/RenderStateShard/VIEW_OFFSET_Z_LAYERING +FD: net/minecraft/client/renderer/RenderStateShard/f_110123_ net/minecraft/client/renderer/RenderStateShard/MAIN_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110124_ net/minecraft/client/renderer/RenderStateShard/OUTLINE_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110125_ net/minecraft/client/renderer/RenderStateShard/TRANSLUCENT_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110126_ net/minecraft/client/renderer/RenderStateShard/PARTICLES_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110127_ net/minecraft/client/renderer/RenderStateShard/WEATHER_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110128_ net/minecraft/client/renderer/RenderStateShard/CLOUDS_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110129_ net/minecraft/client/renderer/RenderStateShard/ITEM_ENTITY_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110130_ net/minecraft/client/renderer/RenderStateShard/DEFAULT_LINE +FD: net/minecraft/client/renderer/RenderStateShard/f_110131_ net/minecraft/client/renderer/RenderStateShard/setupState +FD: net/minecraft/client/renderer/RenderStateShard/f_110132_ net/minecraft/client/renderer/RenderStateShard/clearState +FD: net/minecraft/client/renderer/RenderStateShard/f_110133_ net/minecraft/client/renderer/RenderStateShard/name +FD: net/minecraft/client/renderer/RenderStateShard/f_110134_ net/minecraft/client/renderer/RenderStateShard/NO_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110135_ net/minecraft/client/renderer/RenderStateShard/ADDITIVE_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110136_ net/minecraft/client/renderer/RenderStateShard/LIGHTNING_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110137_ net/minecraft/client/renderer/RenderStateShard/GLINT_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110138_ net/minecraft/client/renderer/RenderStateShard/CRUMBLING_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110139_ net/minecraft/client/renderer/RenderStateShard/TRANSLUCENT_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110145_ net/minecraft/client/renderer/RenderStateShard/BLOCK_SHEET_MIPPED +FD: net/minecraft/client/renderer/RenderStateShard/f_110146_ net/minecraft/client/renderer/RenderStateShard/BLOCK_SHEET +FD: net/minecraft/client/renderer/RenderStateShard/f_110147_ net/minecraft/client/renderer/RenderStateShard/NO_TEXTURE +FD: net/minecraft/client/renderer/RenderStateShard/f_110148_ net/minecraft/client/renderer/RenderStateShard/DEFAULT_TEXTURING +FD: net/minecraft/client/renderer/RenderStateShard/f_110150_ net/minecraft/client/renderer/RenderStateShard/GLINT_TEXTURING +FD: net/minecraft/client/renderer/RenderStateShard/f_110151_ net/minecraft/client/renderer/RenderStateShard/ENTITY_GLINT_TEXTURING +FD: net/minecraft/client/renderer/RenderStateShard/f_110152_ net/minecraft/client/renderer/RenderStateShard/LIGHTMAP +FD: net/minecraft/client/renderer/RenderStateShard/f_110153_ net/minecraft/client/renderer/RenderStateShard/NO_LIGHTMAP +FD: net/minecraft/client/renderer/RenderStateShard/f_110154_ net/minecraft/client/renderer/RenderStateShard/OVERLAY +FD: net/minecraft/client/renderer/RenderStateShard/f_110155_ net/minecraft/client/renderer/RenderStateShard/NO_OVERLAY +FD: net/minecraft/client/renderer/RenderStateShard/f_110158_ net/minecraft/client/renderer/RenderStateShard/CULL +FD: net/minecraft/client/renderer/RenderStateShard/f_173063_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_CUTOUT_NO_CULL_Z_OFFSET_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173064_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ITEM_ENTITY_TRANSLUCENT_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173065_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_TRANSLUCENT_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173066_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_TRANSLUCENT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173067_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_SMOOTH_CUTOUT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173068_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_BEACON_BEAM_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173069_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_DECAL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173070_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_NO_OUTLINE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173071_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_SHADOW_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173072_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_ALPHA_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173073_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_EYES_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173074_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENERGY_SWIRL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173075_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_LEASH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173076_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_WATER_MASK_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173077_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_OUTLINE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173078_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ARMOR_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173079_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ARMOR_ENTITY_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173080_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GLINT_TRANSLUCENT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173081_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173082_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GLINT_DIRECT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173083_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173084_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_GLINT_DIRECT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173085_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_CRUMBLING_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173086_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173087_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_INTENSITY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173088_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_SEE_THROUGH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173089_ net/minecraft/client/renderer/RenderStateShard/VIEW_SCALE_Z_EPSILON +FD: net/minecraft/client/renderer/RenderStateShard/f_173090_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_INTENSITY_SEE_THROUGH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173091_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_LIGHTNING_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173092_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRIPWIRE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173093_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_END_PORTAL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173094_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_END_GATEWAY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173095_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_LINES_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173096_ net/minecraft/client/renderer/RenderStateShard/NO_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173099_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_LIGHTMAP_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173100_ net/minecraft/client/renderer/RenderStateShard/POSITION_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173101_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_TEX_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173102_ net/minecraft/client/renderer/RenderStateShard/POSITION_TEX_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173103_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_TEX_LIGHTMAP_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173104_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173105_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_SOLID_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173106_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_CUTOUT_MIPPED_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173107_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_CUTOUT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173108_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRANSLUCENT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173109_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRANSLUCENT_MOVING_BLOCK_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173110_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRANSLUCENT_NO_CRUMBLING_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173111_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ARMOR_CUTOUT_NO_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173112_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_SOLID_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173113_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_CUTOUT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173114_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_CUTOUT_NO_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_234323_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_TRANSLUCENT_EMISSIVE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_267492_ net/minecraft/client/renderer/RenderStateShard/MAX_ENCHANTMENT_GLINT_SPEED_MILLIS +FD: net/minecraft/client/renderer/RenderStateShard/f_268491_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_BACKGROUND_SEE_THROUGH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_268568_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_BACKGROUND_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285573_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285579_ net/minecraft/client/renderer/RenderStateShard/GREATER_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_285582_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_GHOST_RECIPE_OVERLAY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285585_ net/minecraft/client/renderer/RenderStateShard/NO_COLOR_LOGIC +FD: net/minecraft/client/renderer/RenderStateShard/f_285603_ net/minecraft/client/renderer/RenderStateShard/OR_REVERSE_COLOR_LOGIC +FD: net/minecraft/client/renderer/RenderStateShard/f_285619_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_OVERLAY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285642_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_TEXT_HIGHLIGHT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/f_110227_ net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/enabled +FD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/f_110243_ net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/functionName +FD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/f_110276_ net/minecraft/client/renderer/RenderStateShard$LineStateShard/width +FD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/f_173121_ net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/cutoutTexture +FD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/f_173129_ net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/builder +FD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/f_173136_ net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/shader +FD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/f_110328_ net/minecraft/client/renderer/RenderStateShard$TextureStateShard/texture +FD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/f_110329_ net/minecraft/client/renderer/RenderStateShard$TextureStateShard/blur +FD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/f_110330_ net/minecraft/client/renderer/RenderStateShard$TextureStateShard/mipmap +FD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/f_110356_ net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/writeColor +FD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/f_110357_ net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/writeDepth +FD: net/minecraft/client/renderer/RenderType/f_110371_ net/minecraft/client/renderer/RenderType/LINES +FD: net/minecraft/client/renderer/RenderType/f_110372_ net/minecraft/client/renderer/RenderType/SOLID +FD: net/minecraft/client/renderer/RenderType/f_110373_ net/minecraft/client/renderer/RenderType/CUTOUT_MIPPED +FD: net/minecraft/client/renderer/RenderType/f_110374_ net/minecraft/client/renderer/RenderType/CUTOUT +FD: net/minecraft/client/renderer/RenderType/f_110375_ net/minecraft/client/renderer/RenderType/TRANSLUCENT +FD: net/minecraft/client/renderer/RenderType/f_110376_ net/minecraft/client/renderer/RenderType/TRANSLUCENT_MOVING_BLOCK +FD: net/minecraft/client/renderer/RenderType/f_110377_ net/minecraft/client/renderer/RenderType/TRANSLUCENT_NO_CRUMBLING +FD: net/minecraft/client/renderer/RenderType/f_110378_ net/minecraft/client/renderer/RenderType/LEASH +FD: net/minecraft/client/renderer/RenderType/f_110379_ net/minecraft/client/renderer/RenderType/WATER_MASK +FD: net/minecraft/client/renderer/RenderType/f_110380_ net/minecraft/client/renderer/RenderType/ARMOR_GLINT +FD: net/minecraft/client/renderer/RenderType/f_110381_ net/minecraft/client/renderer/RenderType/ARMOR_ENTITY_GLINT +FD: net/minecraft/client/renderer/RenderType/f_110382_ net/minecraft/client/renderer/RenderType/GLINT_TRANSLUCENT +FD: net/minecraft/client/renderer/RenderType/f_110383_ net/minecraft/client/renderer/RenderType/GLINT +FD: net/minecraft/client/renderer/RenderType/f_110384_ net/minecraft/client/renderer/RenderType/GLINT_DIRECT +FD: net/minecraft/client/renderer/RenderType/f_110385_ net/minecraft/client/renderer/RenderType/ENTITY_GLINT +FD: net/minecraft/client/renderer/RenderType/f_110386_ net/minecraft/client/renderer/RenderType/ENTITY_GLINT_DIRECT +FD: net/minecraft/client/renderer/RenderType/f_110387_ net/minecraft/client/renderer/RenderType/LIGHTNING +FD: net/minecraft/client/renderer/RenderType/f_110388_ net/minecraft/client/renderer/RenderType/TRIPWIRE +FD: net/minecraft/client/renderer/RenderType/f_110389_ net/minecraft/client/renderer/RenderType/format +FD: net/minecraft/client/renderer/RenderType/f_110390_ net/minecraft/client/renderer/RenderType/mode +FD: net/minecraft/client/renderer/RenderType/f_110391_ net/minecraft/client/renderer/RenderType/bufferSize +FD: net/minecraft/client/renderer/RenderType/f_110392_ net/minecraft/client/renderer/RenderType/affectsCrumbling +FD: net/minecraft/client/renderer/RenderType/f_110393_ net/minecraft/client/renderer/RenderType/sortOnUpload +FD: net/minecraft/client/renderer/RenderType/f_110394_ net/minecraft/client/renderer/RenderType/asOptional +FD: net/minecraft/client/renderer/RenderType/f_173148_ net/minecraft/client/renderer/RenderType/BIG_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173149_ net/minecraft/client/renderer/RenderType/MEDIUM_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173150_ net/minecraft/client/renderer/RenderType/SMALL_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173151_ net/minecraft/client/renderer/RenderType/TRANSIENT_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173152_ net/minecraft/client/renderer/RenderType/LINE_STRIP +FD: net/minecraft/client/renderer/RenderType/f_173153_ net/minecraft/client/renderer/RenderType/BYTES_IN_INT +FD: net/minecraft/client/renderer/RenderType/f_173154_ net/minecraft/client/renderer/RenderType/MEGABYTE +FD: net/minecraft/client/renderer/RenderType/f_173155_ net/minecraft/client/renderer/RenderType/ARMOR_CUTOUT_NO_CULL +FD: net/minecraft/client/renderer/RenderType/f_173156_ net/minecraft/client/renderer/RenderType/ENTITY_SOLID +FD: net/minecraft/client/renderer/RenderType/f_173157_ net/minecraft/client/renderer/RenderType/ENTITY_CUTOUT +FD: net/minecraft/client/renderer/RenderType/f_173158_ net/minecraft/client/renderer/RenderType/END_PORTAL +FD: net/minecraft/client/renderer/RenderType/f_173159_ net/minecraft/client/renderer/RenderType/END_GATEWAY +FD: net/minecraft/client/renderer/RenderType/f_173160_ net/minecraft/client/renderer/RenderType/ENTITY_CUTOUT_NO_CULL +FD: net/minecraft/client/renderer/RenderType/f_173161_ net/minecraft/client/renderer/RenderType/ENTITY_CUTOUT_NO_CULL_Z_OFFSET +FD: net/minecraft/client/renderer/RenderType/f_173162_ net/minecraft/client/renderer/RenderType/ITEM_ENTITY_TRANSLUCENT_CULL +FD: net/minecraft/client/renderer/RenderType/f_173163_ net/minecraft/client/renderer/RenderType/ENTITY_TRANSLUCENT_CULL +FD: net/minecraft/client/renderer/RenderType/f_173164_ net/minecraft/client/renderer/RenderType/ENTITY_TRANSLUCENT +FD: net/minecraft/client/renderer/RenderType/f_173165_ net/minecraft/client/renderer/RenderType/ENTITY_SMOOTH_CUTOUT +FD: net/minecraft/client/renderer/RenderType/f_173166_ net/minecraft/client/renderer/RenderType/BEACON_BEAM +FD: net/minecraft/client/renderer/RenderType/f_173167_ net/minecraft/client/renderer/RenderType/ENTITY_DECAL +FD: net/minecraft/client/renderer/RenderType/f_173168_ net/minecraft/client/renderer/RenderType/ENTITY_NO_OUTLINE +FD: net/minecraft/client/renderer/RenderType/f_173169_ net/minecraft/client/renderer/RenderType/ENTITY_SHADOW +FD: net/minecraft/client/renderer/RenderType/f_173170_ net/minecraft/client/renderer/RenderType/DRAGON_EXPLOSION_ALPHA +FD: net/minecraft/client/renderer/RenderType/f_173171_ net/minecraft/client/renderer/RenderType/EYES +FD: net/minecraft/client/renderer/RenderType/f_173172_ net/minecraft/client/renderer/RenderType/CRUMBLING +FD: net/minecraft/client/renderer/RenderType/f_173173_ net/minecraft/client/renderer/RenderType/TEXT +FD: net/minecraft/client/renderer/RenderType/f_173174_ net/minecraft/client/renderer/RenderType/TEXT_INTENSITY +FD: net/minecraft/client/renderer/RenderType/f_173175_ net/minecraft/client/renderer/RenderType/TEXT_SEE_THROUGH +FD: net/minecraft/client/renderer/RenderType/f_173176_ net/minecraft/client/renderer/RenderType/TEXT_INTENSITY_SEE_THROUGH +FD: net/minecraft/client/renderer/RenderType/f_181442_ net/minecraft/client/renderer/RenderType/TEXT_POLYGON_OFFSET +FD: net/minecraft/client/renderer/RenderType/f_181443_ net/minecraft/client/renderer/RenderType/TEXT_INTENSITY_POLYGON_OFFSET +FD: net/minecraft/client/renderer/RenderType/f_234324_ net/minecraft/client/renderer/RenderType/CHUNK_BUFFER_LAYERS +FD: net/minecraft/client/renderer/RenderType/f_234325_ net/minecraft/client/renderer/RenderType/ENTITY_TRANSLUCENT_EMISSIVE +FD: net/minecraft/client/renderer/RenderType/f_268519_ net/minecraft/client/renderer/RenderType/DEBUG_QUADS +FD: net/minecraft/client/renderer/RenderType/f_268540_ net/minecraft/client/renderer/RenderType/DEBUG_FILLED_BOX +FD: net/minecraft/client/renderer/RenderType/f_268619_ net/minecraft/client/renderer/RenderType/TEXT_BACKGROUND_SEE_THROUGH +FD: net/minecraft/client/renderer/RenderType/f_268665_ net/minecraft/client/renderer/RenderType/TEXT_BACKGROUND +FD: net/minecraft/client/renderer/RenderType/f_268753_ net/minecraft/client/renderer/RenderType/DEBUG_LINE_STRIP +FD: net/minecraft/client/renderer/RenderType/f_279582_ net/minecraft/client/renderer/RenderType/DEBUG_SECTION_QUADS +FD: net/minecraft/client/renderer/RenderType/f_285558_ net/minecraft/client/renderer/RenderType/GUI +FD: net/minecraft/client/renderer/RenderType/f_285624_ net/minecraft/client/renderer/RenderType/GUI_OVERLAY +FD: net/minecraft/client/renderer/RenderType/f_285639_ net/minecraft/client/renderer/RenderType/GUI_GHOST_RECIPE_OVERLAY +FD: net/minecraft/client/renderer/RenderType/f_285662_ net/minecraft/client/renderer/RenderType/GUI_TEXT_HIGHLIGHT +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_110511_ net/minecraft/client/renderer/RenderType$CompositeRenderType/state +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_110513_ net/minecraft/client/renderer/RenderType$CompositeRenderType/outline +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_110514_ net/minecraft/client/renderer/RenderType$CompositeRenderType/isOutline +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_173256_ net/minecraft/client/renderer/RenderType$CompositeRenderType/OUTLINE +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110576_ net/minecraft/client/renderer/RenderType$CompositeState/textureState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110577_ net/minecraft/client/renderer/RenderType$CompositeState/transparencyState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110581_ net/minecraft/client/renderer/RenderType$CompositeState/depthTestState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110582_ net/minecraft/client/renderer/RenderType$CompositeState/cullState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110583_ net/minecraft/client/renderer/RenderType$CompositeState/lightmapState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110584_ net/minecraft/client/renderer/RenderType$CompositeState/overlayState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110586_ net/minecraft/client/renderer/RenderType$CompositeState/layeringState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110587_ net/minecraft/client/renderer/RenderType$CompositeState/outputState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110588_ net/minecraft/client/renderer/RenderType$CompositeState/texturingState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110589_ net/minecraft/client/renderer/RenderType$CompositeState/writeMaskState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110590_ net/minecraft/client/renderer/RenderType$CompositeState/lineState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110591_ net/minecraft/client/renderer/RenderType$CompositeState/outlineProperty +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110592_ net/minecraft/client/renderer/RenderType$CompositeState/states +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_173274_ net/minecraft/client/renderer/RenderType$CompositeState/shaderState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_285566_ net/minecraft/client/renderer/RenderType$CompositeState/colorLogicState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110641_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/textureState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110642_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/transparencyState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110646_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/depthTestState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110647_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/cullState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110648_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/lightmapState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110649_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/overlayState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110651_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/layeringState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110652_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/outputState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110653_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/texturingState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110654_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/writeMaskState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110655_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/lineState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_173289_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/shaderState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_285600_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/colorLogicState +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/$VALUES net/minecraft/client/renderer/RenderType$OutlineProperty/$VALUES +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/AFFECTS_OUTLINE net/minecraft/client/renderer/RenderType$OutlineProperty/AFFECTS_OUTLINE +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/IS_OUTLINE net/minecraft/client/renderer/RenderType$OutlineProperty/IS_OUTLINE +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/NONE net/minecraft/client/renderer/RenderType$OutlineProperty/NONE +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/f_110696_ net/minecraft/client/renderer/RenderType$OutlineProperty/name +FD: net/minecraft/client/renderer/RunningTrimmedMean/f_110707_ net/minecraft/client/renderer/RunningTrimmedMean/values +FD: net/minecraft/client/renderer/RunningTrimmedMean/f_110708_ net/minecraft/client/renderer/RunningTrimmedMean/count +FD: net/minecraft/client/renderer/RunningTrimmedMean/f_110709_ net/minecraft/client/renderer/RunningTrimmedMean/cursor +FD: net/minecraft/client/renderer/ScreenEffectRenderer/f_110714_ net/minecraft/client/renderer/ScreenEffectRenderer/UNDERWATER_LOCATION +FD: net/minecraft/client/renderer/ShaderInstance/f_173299_ net/minecraft/client/renderer/ShaderInstance/programId +FD: net/minecraft/client/renderer/ShaderInstance/f_173300_ net/minecraft/client/renderer/ShaderInstance/name +FD: net/minecraft/client/renderer/ShaderInstance/f_173301_ net/minecraft/client/renderer/ShaderInstance/dirty +FD: net/minecraft/client/renderer/ShaderInstance/f_173302_ net/minecraft/client/renderer/ShaderInstance/blend +FD: net/minecraft/client/renderer/ShaderInstance/f_173303_ net/minecraft/client/renderer/ShaderInstance/attributes +FD: net/minecraft/client/renderer/ShaderInstance/f_173304_ net/minecraft/client/renderer/ShaderInstance/attributeNames +FD: net/minecraft/client/renderer/ShaderInstance/f_173305_ net/minecraft/client/renderer/ShaderInstance/vertexProgram +FD: net/minecraft/client/renderer/ShaderInstance/f_173306_ net/minecraft/client/renderer/ShaderInstance/fragmentProgram +FD: net/minecraft/client/renderer/ShaderInstance/f_173307_ net/minecraft/client/renderer/ShaderInstance/vertexFormat +FD: net/minecraft/client/renderer/ShaderInstance/f_173308_ net/minecraft/client/renderer/ShaderInstance/MODEL_VIEW_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_173309_ net/minecraft/client/renderer/ShaderInstance/PROJECTION_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_173310_ net/minecraft/client/renderer/ShaderInstance/TEXTURE_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_173311_ net/minecraft/client/renderer/ShaderInstance/SCREEN_SIZE +FD: net/minecraft/client/renderer/ShaderInstance/f_173312_ net/minecraft/client/renderer/ShaderInstance/COLOR_MODULATOR +FD: net/minecraft/client/renderer/ShaderInstance/f_173313_ net/minecraft/client/renderer/ShaderInstance/LIGHT0_DIRECTION +FD: net/minecraft/client/renderer/ShaderInstance/f_173314_ net/minecraft/client/renderer/ShaderInstance/LIGHT1_DIRECTION +FD: net/minecraft/client/renderer/ShaderInstance/f_173315_ net/minecraft/client/renderer/ShaderInstance/FOG_START +FD: net/minecraft/client/renderer/ShaderInstance/f_173316_ net/minecraft/client/renderer/ShaderInstance/FOG_END +FD: net/minecraft/client/renderer/ShaderInstance/f_173317_ net/minecraft/client/renderer/ShaderInstance/FOG_COLOR +FD: net/minecraft/client/renderer/ShaderInstance/f_173318_ net/minecraft/client/renderer/ShaderInstance/LINE_WIDTH +FD: net/minecraft/client/renderer/ShaderInstance/f_173319_ net/minecraft/client/renderer/ShaderInstance/GAME_TIME +FD: net/minecraft/client/renderer/ShaderInstance/f_173320_ net/minecraft/client/renderer/ShaderInstance/CHUNK_OFFSET +FD: net/minecraft/client/renderer/ShaderInstance/f_173321_ net/minecraft/client/renderer/ShaderInstance/SHADER_PATH +FD: net/minecraft/client/renderer/ShaderInstance/f_173322_ net/minecraft/client/renderer/ShaderInstance/SHADER_INCLUDE_PATH +FD: net/minecraft/client/renderer/ShaderInstance/f_173323_ net/minecraft/client/renderer/ShaderInstance/LOGGER +FD: net/minecraft/client/renderer/ShaderInstance/f_173324_ net/minecraft/client/renderer/ShaderInstance/DUMMY_UNIFORM +FD: net/minecraft/client/renderer/ShaderInstance/f_173325_ net/minecraft/client/renderer/ShaderInstance/ALWAYS_REAPPLY +FD: net/minecraft/client/renderer/ShaderInstance/f_173326_ net/minecraft/client/renderer/ShaderInstance/lastAppliedShader +FD: net/minecraft/client/renderer/ShaderInstance/f_173327_ net/minecraft/client/renderer/ShaderInstance/lastProgramId +FD: net/minecraft/client/renderer/ShaderInstance/f_173328_ net/minecraft/client/renderer/ShaderInstance/samplerMap +FD: net/minecraft/client/renderer/ShaderInstance/f_173329_ net/minecraft/client/renderer/ShaderInstance/samplerNames +FD: net/minecraft/client/renderer/ShaderInstance/f_173330_ net/minecraft/client/renderer/ShaderInstance/samplerLocations +FD: net/minecraft/client/renderer/ShaderInstance/f_173331_ net/minecraft/client/renderer/ShaderInstance/uniforms +FD: net/minecraft/client/renderer/ShaderInstance/f_173332_ net/minecraft/client/renderer/ShaderInstance/uniformLocations +FD: net/minecraft/client/renderer/ShaderInstance/f_173333_ net/minecraft/client/renderer/ShaderInstance/uniformMap +FD: net/minecraft/client/renderer/ShaderInstance/f_200956_ net/minecraft/client/renderer/ShaderInstance/INVERSE_VIEW_ROTATION_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_202432_ net/minecraft/client/renderer/ShaderInstance/FOG_SHAPE +FD: net/minecraft/client/renderer/ShaderInstance/f_244364_ net/minecraft/client/renderer/ShaderInstance/SHADER_CORE_PATH +FD: net/minecraft/client/renderer/ShaderInstance/f_267422_ net/minecraft/client/renderer/ShaderInstance/GLINT_ALPHA +FD: net/minecraft/client/renderer/ShaderInstance$1/f_173367_ net/minecraft/client/renderer/ShaderInstance$1/val$relativePath +FD: net/minecraft/client/renderer/ShaderInstance$1/f_173368_ net/minecraft/client/renderer/ShaderInstance$1/val$resourceProvider +FD: net/minecraft/client/renderer/ShaderInstance$1/f_173369_ net/minecraft/client/renderer/ShaderInstance$1/importedPaths +FD: net/minecraft/client/renderer/Sheets/f_110731_ net/minecraft/client/renderer/Sheets/SOLID_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110732_ net/minecraft/client/renderer/Sheets/CUTOUT_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110733_ net/minecraft/client/renderer/Sheets/TRANSLUCENT_ITEM_CULL_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110734_ net/minecraft/client/renderer/Sheets/TRANSLUCENT_CULL_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110735_ net/minecraft/client/renderer/Sheets/SHULKER_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110736_ net/minecraft/client/renderer/Sheets/BED_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110737_ net/minecraft/client/renderer/Sheets/BANNER_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110738_ net/minecraft/client/renderer/Sheets/SHIELD_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110739_ net/minecraft/client/renderer/Sheets/SIGN_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110740_ net/minecraft/client/renderer/Sheets/CHEST_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110741_ net/minecraft/client/renderer/Sheets/DEFAULT_SHULKER_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110742_ net/minecraft/client/renderer/Sheets/SHULKER_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110743_ net/minecraft/client/renderer/Sheets/SIGN_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_110744_ net/minecraft/client/renderer/Sheets/BED_TEXTURES +FD: net/minecraft/client/renderer/Sheets/f_110745_ net/minecraft/client/renderer/Sheets/CHEST_TRAP_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110746_ net/minecraft/client/renderer/Sheets/CHEST_TRAP_LOCATION_LEFT +FD: net/minecraft/client/renderer/Sheets/f_110747_ net/minecraft/client/renderer/Sheets/CHEST_TRAP_LOCATION_RIGHT +FD: net/minecraft/client/renderer/Sheets/f_110748_ net/minecraft/client/renderer/Sheets/CHEST_XMAS_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110749_ net/minecraft/client/renderer/Sheets/CHEST_XMAS_LOCATION_LEFT +FD: net/minecraft/client/renderer/Sheets/f_110750_ net/minecraft/client/renderer/Sheets/CHEST_XMAS_LOCATION_RIGHT +FD: net/minecraft/client/renderer/Sheets/f_110751_ net/minecraft/client/renderer/Sheets/CHEST_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110752_ net/minecraft/client/renderer/Sheets/CHEST_LOCATION_LEFT +FD: net/minecraft/client/renderer/Sheets/f_110753_ net/minecraft/client/renderer/Sheets/CHEST_LOCATION_RIGHT +FD: net/minecraft/client/renderer/Sheets/f_110754_ net/minecraft/client/renderer/Sheets/ENDER_CHEST_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110755_ net/minecraft/client/renderer/Sheets/SHULKER_BOX_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110756_ net/minecraft/client/renderer/Sheets/BED_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110757_ net/minecraft/client/renderer/Sheets/BANNER_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110758_ net/minecraft/client/renderer/Sheets/SHIELD_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110759_ net/minecraft/client/renderer/Sheets/SIGN_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110760_ net/minecraft/client/renderer/Sheets/CHEST_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_173376_ net/minecraft/client/renderer/Sheets/BANNER_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_173377_ net/minecraft/client/renderer/Sheets/SHIELD_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_244291_ net/minecraft/client/renderer/Sheets/HANGING_SIGN_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_265912_ net/minecraft/client/renderer/Sheets/ARMOR_TRIMS_SHEET +FD: net/minecraft/client/renderer/Sheets/f_266092_ net/minecraft/client/renderer/Sheets/ARMOR_TRIMS_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_271463_ net/minecraft/client/renderer/Sheets/DECORATED_POT_SHEET +FD: net/minecraft/client/renderer/Sheets/f_271486_ net/minecraft/client/renderer/Sheets/DECORATED_POT_MATERIALS +FD: net/minecraft/client/renderer/Sheets$1/f_110793_ net/minecraft/client/renderer/Sheets$1/$SwitchMap$net$minecraft$world$level$block$state$properties$ChestType +FD: net/minecraft/client/renderer/SpriteCoordinateExpander/f_110795_ net/minecraft/client/renderer/SpriteCoordinateExpander/delegate +FD: net/minecraft/client/renderer/SpriteCoordinateExpander/f_110796_ net/minecraft/client/renderer/SpriteCoordinateExpander/sprite +FD: net/minecraft/client/renderer/ViewArea/f_110838_ net/minecraft/client/renderer/ViewArea/levelRenderer +FD: net/minecraft/client/renderer/ViewArea/f_110839_ net/minecraft/client/renderer/ViewArea/level +FD: net/minecraft/client/renderer/ViewArea/f_110840_ net/minecraft/client/renderer/ViewArea/chunkGridSizeY +FD: net/minecraft/client/renderer/ViewArea/f_110841_ net/minecraft/client/renderer/ViewArea/chunkGridSizeX +FD: net/minecraft/client/renderer/ViewArea/f_110842_ net/minecraft/client/renderer/ViewArea/chunkGridSizeZ +FD: net/minecraft/client/renderer/ViewArea/f_110843_ net/minecraft/client/renderer/ViewArea/chunks +FD: net/minecraft/client/renderer/VirtualScreen/f_110868_ net/minecraft/client/renderer/VirtualScreen/minecraft +FD: net/minecraft/client/renderer/VirtualScreen/f_110869_ net/minecraft/client/renderer/VirtualScreen/screenManager +FD: net/minecraft/client/renderer/block/BlockModelShaper/f_110877_ net/minecraft/client/renderer/block/BlockModelShaper/modelByStateCache +FD: net/minecraft/client/renderer/block/BlockModelShaper/f_110878_ net/minecraft/client/renderer/block/BlockModelShaper/modelManager +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110899_ net/minecraft/client/renderer/block/BlockRenderDispatcher/blockModelShaper +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110900_ net/minecraft/client/renderer/block/BlockRenderDispatcher/modelRenderer +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110901_ net/minecraft/client/renderer/block/BlockRenderDispatcher/liquidBlockRenderer +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110902_ net/minecraft/client/renderer/block/BlockRenderDispatcher/random +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110903_ net/minecraft/client/renderer/block/BlockRenderDispatcher/blockColors +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_173397_ net/minecraft/client/renderer/block/BlockRenderDispatcher/blockEntityRenderer +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher$1/f_110938_ net/minecraft/client/renderer/block/BlockRenderDispatcher$1/$SwitchMap$net$minecraft$world$level$block$RenderShape +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_110940_ net/minecraft/client/renderer/block/LiquidBlockRenderer/lavaIcons +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_110941_ net/minecraft/client/renderer/block/LiquidBlockRenderer/waterIcons +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_110942_ net/minecraft/client/renderer/block/LiquidBlockRenderer/waterOverlay +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_173402_ net/minecraft/client/renderer/block/LiquidBlockRenderer/MAX_FLUID_HEIGHT +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer$1/f_203191_ net/minecraft/client/renderer/block/LiquidBlockRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_110995_ net/minecraft/client/renderer/block/ModelBlockRenderer/blockColors +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_110996_ net/minecraft/client/renderer/block/ModelBlockRenderer/CACHE +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173403_ net/minecraft/client/renderer/block/ModelBlockRenderer/FACE_CUBIC +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173404_ net/minecraft/client/renderer/block/ModelBlockRenderer/FACE_PARTIAL +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173405_ net/minecraft/client/renderer/block/ModelBlockRenderer/DIRECTIONS +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173406_ net/minecraft/client/renderer/block/ModelBlockRenderer/CACHE_SIZE +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$1/f_111102_ net/minecraft/client/renderer/block/ModelBlockRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/$VALUES net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/$VALUES +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/EAST net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/UP net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/WEST net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111110_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/corners +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111111_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/doNonCubicWeight +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111112_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert0Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111113_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert1Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111114_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert2Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111115_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert3Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111116_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/BY_FACING +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/f_111149_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/brightness +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/f_111150_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/lightmap +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/$VALUES net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/$VALUES +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/EAST net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/UP net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/WEST net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111185_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert0 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111186_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert1 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111187_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert2 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111188_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert3 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111189_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/BY_FACING +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/f_111214_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/enabled +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/f_111215_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/colorCache +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/f_111216_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/brightnessCache +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/f_111232_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/this$0 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/f_111239_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/this$0 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/$VALUES net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/$VALUES +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/EAST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_EAST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_UP net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_WEST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/UP net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/WEST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/f_111258_ net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/shape +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111292_ net/minecraft/client/renderer/block/model/BakedQuad/vertices +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111293_ net/minecraft/client/renderer/block/model/BakedQuad/tintIndex +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111294_ net/minecraft/client/renderer/block/model/BakedQuad/direction +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111295_ net/minecraft/client/renderer/block/model/BakedQuad/sprite +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111296_ net/minecraft/client/renderer/block/model/BakedQuad/shade +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111308_ net/minecraft/client/renderer/block/model/BlockElement/from +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111309_ net/minecraft/client/renderer/block/model/BlockElement/to +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111310_ net/minecraft/client/renderer/block/model/BlockElement/faces +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111311_ net/minecraft/client/renderer/block/model/BlockElement/rotation +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111312_ net/minecraft/client/renderer/block/model/BlockElement/shade +FD: net/minecraft/client/renderer/block/model/BlockElement/f_173411_ net/minecraft/client/renderer/block/model/BlockElement/DEFAULT_RESCALE +FD: net/minecraft/client/renderer/block/model/BlockElement/f_173412_ net/minecraft/client/renderer/block/model/BlockElement/MIN_EXTENT +FD: net/minecraft/client/renderer/block/model/BlockElement/f_173413_ net/minecraft/client/renderer/block/model/BlockElement/MAX_EXTENT +FD: net/minecraft/client/renderer/block/model/BlockElement$1/f_111322_ net/minecraft/client/renderer/block/model/BlockElement$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/f_173414_ net/minecraft/client/renderer/block/model/BlockElement$Deserializer/DEFAULT_SHADE +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111354_ net/minecraft/client/renderer/block/model/BlockElementFace/cullForDirection +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111355_ net/minecraft/client/renderer/block/model/BlockElementFace/tintIndex +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111356_ net/minecraft/client/renderer/block/model/BlockElementFace/texture +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111357_ net/minecraft/client/renderer/block/model/BlockElementFace/uv +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_173415_ net/minecraft/client/renderer/block/model/BlockElementFace/NO_TINT +FD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/f_173416_ net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/DEFAULT_TINT_INDEX +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111378_ net/minecraft/client/renderer/block/model/BlockElementRotation/origin +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111379_ net/minecraft/client/renderer/block/model/BlockElementRotation/axis +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111380_ net/minecraft/client/renderer/block/model/BlockElementRotation/angle +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111381_ net/minecraft/client/renderer/block/model/BlockElementRotation/rescale +FD: net/minecraft/client/renderer/block/model/BlockFaceUV/f_111387_ net/minecraft/client/renderer/block/model/BlockFaceUV/uvs +FD: net/minecraft/client/renderer/block/model/BlockFaceUV/f_111388_ net/minecraft/client/renderer/block/model/BlockFaceUV/rotation +FD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/f_173417_ net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/DEFAULT_ROTATION +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111415_ net/minecraft/client/renderer/block/model/BlockModel/GSON +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111416_ net/minecraft/client/renderer/block/model/BlockModel/name +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111417_ net/minecraft/client/renderer/block/model/BlockModel/textureMap +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111418_ net/minecraft/client/renderer/block/model/BlockModel/parent +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111419_ net/minecraft/client/renderer/block/model/BlockModel/parentLocation +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111420_ net/minecraft/client/renderer/block/model/BlockModel/LOGGER +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111421_ net/minecraft/client/renderer/block/model/BlockModel/FACE_BAKERY +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111422_ net/minecraft/client/renderer/block/model/BlockModel/elements +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111423_ net/minecraft/client/renderer/block/model/BlockModel/guiLight +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111424_ net/minecraft/client/renderer/block/model/BlockModel/hasAmbientOcclusion +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111425_ net/minecraft/client/renderer/block/model/BlockModel/transforms +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111426_ net/minecraft/client/renderer/block/model/BlockModel/overrides +FD: net/minecraft/client/renderer/block/model/BlockModel/f_173418_ net/minecraft/client/renderer/block/model/BlockModel/PARTICLE_TEXTURE_REFERENCE +FD: net/minecraft/client/renderer/block/model/BlockModel/f_173419_ net/minecraft/client/renderer/block/model/BlockModel/REFERENCE_CHAR +FD: net/minecraft/client/renderer/block/model/BlockModel/f_271537_ net/minecraft/client/renderer/block/model/BlockModel/DEFAULT_AMBIENT_OCCLUSION +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/$VALUES net/minecraft/client/renderer/block/model/BlockModel$GuiLight/$VALUES +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/FRONT net/minecraft/client/renderer/block/model/BlockModel$GuiLight/FRONT +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/SIDE net/minecraft/client/renderer/block/model/BlockModel$GuiLight/SIDE +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/f_111519_ net/minecraft/client/renderer/block/model/BlockModel$GuiLight/name +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition/f_111532_ net/minecraft/client/renderer/block/model/BlockModelDefinition/variants +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition/f_111533_ net/minecraft/client/renderer/block/model/BlockModelDefinition/multiPart +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/f_111548_ net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/gson +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/f_111549_ net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/definition +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/f_173430_ net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/this$0 +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_111569_ net/minecraft/client/renderer/block/model/FaceBakery/RESCALE_22_5 +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_111570_ net/minecraft/client/renderer/block/model/FaceBakery/RESCALE_45 +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173433_ net/minecraft/client/renderer/block/model/FaceBakery/VERTEX_INT_SIZE +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173434_ net/minecraft/client/renderer/block/model/FaceBakery/VERTEX_COUNT +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173435_ net/minecraft/client/renderer/block/model/FaceBakery/UV_INDEX +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173436_ net/minecraft/client/renderer/block/model/FaceBakery/COLOR_INDEX +FD: net/minecraft/client/renderer/block/model/FaceBakery$1/f_111633_ net/minecraft/client/renderer/block/model/FaceBakery$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator/f_111635_ net/minecraft/client/renderer/block/model/ItemModelGenerator/LAYERS +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator/f_173437_ net/minecraft/client/renderer/block/model/ItemModelGenerator/MIN_Z +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator/f_173438_ net/minecraft/client/renderer/block/model/ItemModelGenerator/MAX_Z +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$1/f_111673_ net/minecraft/client/renderer/block/model/ItemModelGenerator$1/$SwitchMap$net$minecraft$client$renderer$block$model$ItemModelGenerator$SpanFacing +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111675_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/facing +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111676_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/min +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111677_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/max +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111678_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/anchor +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/$VALUES net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/$VALUES +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/DOWN net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/DOWN +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/LEFT net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/LEFT +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/RIGHT net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/RIGHT +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/UP net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/UP +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/f_111693_ net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/direction +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/f_111694_ net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/xOffset +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/f_111695_ net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/yOffset +FD: net/minecraft/client/renderer/block/model/ItemOverride/f_111713_ net/minecraft/client/renderer/block/model/ItemOverride/model +FD: net/minecraft/client/renderer/block/model/ItemOverride/f_111714_ net/minecraft/client/renderer/block/model/ItemOverride/predicates +FD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/f_173454_ net/minecraft/client/renderer/block/model/ItemOverride$Predicate/property +FD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/f_173455_ net/minecraft/client/renderer/block/model/ItemOverride$Predicate/value +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_111734_ net/minecraft/client/renderer/block/model/ItemOverrides/EMPTY +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_111735_ net/minecraft/client/renderer/block/model/ItemOverrides/overrides +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_173461_ net/minecraft/client/renderer/block/model/ItemOverrides/properties +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_265997_ net/minecraft/client/renderer/block/model/ItemOverrides/NO_OVERRIDE +FD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/f_173480_ net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/matchers +FD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/f_173481_ net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/model +FD: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/f_173487_ net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/index +FD: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/f_173488_ net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/value +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111754_ net/minecraft/client/renderer/block/model/ItemTransform/NO_TRANSFORM +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111755_ net/minecraft/client/renderer/block/model/ItemTransform/rotation +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111756_ net/minecraft/client/renderer/block/model/ItemTransform/translation +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111757_ net/minecraft/client/renderer/block/model/ItemTransform/scale +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_111769_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/DEFAULT_ROTATION +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_111770_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/DEFAULT_TRANSLATION +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_111771_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/DEFAULT_SCALE +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_173492_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/MAX_TRANSLATION +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_173493_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/MAX_SCALE +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111786_ net/minecraft/client/renderer/block/model/ItemTransforms/NO_TRANSFORMS +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111787_ net/minecraft/client/renderer/block/model/ItemTransforms/thirdPersonLeftHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111788_ net/minecraft/client/renderer/block/model/ItemTransforms/thirdPersonRightHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111789_ net/minecraft/client/renderer/block/model/ItemTransforms/firstPersonLeftHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111790_ net/minecraft/client/renderer/block/model/ItemTransforms/firstPersonRightHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111791_ net/minecraft/client/renderer/block/model/ItemTransforms/head +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111792_ net/minecraft/client/renderer/block/model/ItemTransforms/gui +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111793_ net/minecraft/client/renderer/block/model/ItemTransforms/ground +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111794_ net/minecraft/client/renderer/block/model/ItemTransforms/fixed +FD: net/minecraft/client/renderer/block/model/ItemTransforms$1/f_268689_ net/minecraft/client/renderer/block/model/ItemTransforms$1/$SwitchMap$net$minecraft$world$item$ItemDisplayContext +FD: net/minecraft/client/renderer/block/model/MultiVariant/f_111845_ net/minecraft/client/renderer/block/model/MultiVariant/variants +FD: net/minecraft/client/renderer/block/model/Variant/f_111874_ net/minecraft/client/renderer/block/model/Variant/modelLocation +FD: net/minecraft/client/renderer/block/model/Variant/f_111875_ net/minecraft/client/renderer/block/model/Variant/rotation +FD: net/minecraft/client/renderer/block/model/Variant/f_111876_ net/minecraft/client/renderer/block/model/Variant/uvLock +FD: net/minecraft/client/renderer/block/model/Variant/f_111877_ net/minecraft/client/renderer/block/model/Variant/weight +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173495_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_UVLOCK +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173496_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_WEIGHT +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173497_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_X_ROTATION +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173498_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_Y_ROTATION +FD: net/minecraft/client/renderer/block/model/multipart/AndCondition/f_111908_ net/minecraft/client/renderer/block/model/multipart/AndCondition/conditions +FD: net/minecraft/client/renderer/block/model/multipart/AndCondition/f_173499_ net/minecraft/client/renderer/block/model/multipart/AndCondition/TOKEN +FD: net/minecraft/client/renderer/block/model/multipart/Condition/f_111922_ net/minecraft/client/renderer/block/model/multipart/Condition/TRUE +FD: net/minecraft/client/renderer/block/model/multipart/Condition/f_111923_ net/minecraft/client/renderer/block/model/multipart/Condition/FALSE +FD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/f_111934_ net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/PIPE_SPLITTER +FD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/f_111935_ net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/key +FD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/f_111936_ net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/value +FD: net/minecraft/client/renderer/block/model/multipart/MultiPart/f_111962_ net/minecraft/client/renderer/block/model/multipart/MultiPart/definition +FD: net/minecraft/client/renderer/block/model/multipart/MultiPart/f_111963_ net/minecraft/client/renderer/block/model/multipart/MultiPart/selectors +FD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/f_111987_ net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/context +FD: net/minecraft/client/renderer/block/model/multipart/OrCondition/f_112001_ net/minecraft/client/renderer/block/model/multipart/OrCondition/conditions +FD: net/minecraft/client/renderer/block/model/multipart/OrCondition/f_173510_ net/minecraft/client/renderer/block/model/multipart/OrCondition/TOKEN +FD: net/minecraft/client/renderer/block/model/multipart/Selector/f_112015_ net/minecraft/client/renderer/block/model/multipart/Selector/condition +FD: net/minecraft/client/renderer/block/model/multipart/Selector/f_112016_ net/minecraft/client/renderer/block/model/multipart/Selector/variant +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_112045_ net/minecraft/client/renderer/blockentity/BannerRenderer/flag +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_112046_ net/minecraft/client/renderer/blockentity/BannerRenderer/pole +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_112047_ net/minecraft/client/renderer/blockentity/BannerRenderer/bar +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173514_ net/minecraft/client/renderer/blockentity/BannerRenderer/FLAG +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173515_ net/minecraft/client/renderer/blockentity/BannerRenderer/BANNER_WIDTH +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173516_ net/minecraft/client/renderer/blockentity/BannerRenderer/BANNER_HEIGHT +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173517_ net/minecraft/client/renderer/blockentity/BannerRenderer/MAX_PATTERNS +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173518_ net/minecraft/client/renderer/blockentity/BannerRenderer/POLE +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173519_ net/minecraft/client/renderer/blockentity/BannerRenderer/BAR +FD: net/minecraft/client/renderer/blockentity/BeaconRenderer/f_112102_ net/minecraft/client/renderer/blockentity/BeaconRenderer/BEAM_LOCATION +FD: net/minecraft/client/renderer/blockentity/BeaconRenderer/f_173527_ net/minecraft/client/renderer/blockentity/BeaconRenderer/MAX_RENDER_Y +FD: net/minecraft/client/renderer/blockentity/BedRenderer/f_173537_ net/minecraft/client/renderer/blockentity/BedRenderer/headRoot +FD: net/minecraft/client/renderer/blockentity/BedRenderer/f_173538_ net/minecraft/client/renderer/blockentity/BedRenderer/footRoot +FD: net/minecraft/client/renderer/blockentity/BellRenderer/f_112227_ net/minecraft/client/renderer/blockentity/BellRenderer/BELL_RESOURCE_LOCATION +FD: net/minecraft/client/renderer/blockentity/BellRenderer/f_112228_ net/minecraft/client/renderer/blockentity/BellRenderer/bellBody +FD: net/minecraft/client/renderer/blockentity/BellRenderer/f_173552_ net/minecraft/client/renderer/blockentity/BellRenderer/BELL_BODY +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112248_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/level +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112249_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/camera +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112250_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/cameraHitResult +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112251_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/renderers +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112253_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/font +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_173556_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/entityModelSet +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_173557_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/blockRenderDispatcher +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_234429_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/itemRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_234430_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/entityRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173572_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/blockEntityRenderDispatcher +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173573_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/blockRenderDispatcher +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173574_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/modelSet +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173575_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/font +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_234437_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/itemRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_234438_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/entityRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/f_173587_ net/minecraft/client/renderer/blockentity/BlockEntityRenderers/PROVIDERS +FD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/f_276519_ net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/itemRenderer +FD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/f_276538_ net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/blockentity/CampfireRenderer/f_173600_ net/minecraft/client/renderer/blockentity/CampfireRenderer/SIZE +FD: net/minecraft/client/renderer/blockentity/CampfireRenderer/f_234448_ net/minecraft/client/renderer/blockentity/CampfireRenderer/itemRenderer +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112350_ net/minecraft/client/renderer/blockentity/ChestRenderer/lid +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112351_ net/minecraft/client/renderer/blockentity/ChestRenderer/bottom +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112352_ net/minecraft/client/renderer/blockentity/ChestRenderer/lock +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112353_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleLeftLid +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112354_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleLeftBottom +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112355_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleLeftLock +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112356_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleRightLid +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112357_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleRightBottom +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112358_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleRightLock +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112359_ net/minecraft/client/renderer/blockentity/ChestRenderer/xmasTextures +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_173603_ net/minecraft/client/renderer/blockentity/ChestRenderer/BOTTOM +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_173604_ net/minecraft/client/renderer/blockentity/ChestRenderer/LID +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_173605_ net/minecraft/client/renderer/blockentity/ChestRenderer/LOCK +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112378_ net/minecraft/client/renderer/blockentity/ConduitRenderer/SHELL_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112379_ net/minecraft/client/renderer/blockentity/ConduitRenderer/ACTIVE_SHELL_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112380_ net/minecraft/client/renderer/blockentity/ConduitRenderer/WIND_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112381_ net/minecraft/client/renderer/blockentity/ConduitRenderer/VERTICAL_WIND_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112382_ net/minecraft/client/renderer/blockentity/ConduitRenderer/OPEN_EYE_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112383_ net/minecraft/client/renderer/blockentity/ConduitRenderer/CLOSED_EYE_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112384_ net/minecraft/client/renderer/blockentity/ConduitRenderer/eye +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112385_ net/minecraft/client/renderer/blockentity/ConduitRenderer/wind +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112386_ net/minecraft/client/renderer/blockentity/ConduitRenderer/shell +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112387_ net/minecraft/client/renderer/blockentity/ConduitRenderer/cage +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_173611_ net/minecraft/client/renderer/blockentity/ConduitRenderer/renderer +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271097_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/BOTTOM +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271153_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/frontSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271161_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/rightSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271185_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/baseMaterial +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271233_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/TOP +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271240_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/RIGHT +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271260_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/neck +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271265_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/leftSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271321_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/backSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271413_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/top +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271422_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/BACK +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271443_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/bottom +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271482_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/LEFT +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271506_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/NECK +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271523_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/FRONT +FD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/f_112405_ net/minecraft/client/renderer/blockentity/EnchantTableRenderer/BOOK_LOCATION +FD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/f_112406_ net/minecraft/client/renderer/blockentity/EnchantTableRenderer/bookModel +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_243690_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_R_1 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244009_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/hangingSignModels +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244071_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/BOARD +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244072_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_L_1 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244095_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/V_CHAINS +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244118_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/NORMAL_CHAINS +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244131_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/PLANK +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244159_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_R_2 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244584_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_L_2 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_278461_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/MODEL_RENDER_SCALE +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_278477_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/TEXT_RENDER_SCALE +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_278502_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/TEXT_OFFSET +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_243977_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/normalChains +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_244294_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/plank +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_244373_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/vChains +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_244554_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/root +FD: net/minecraft/client/renderer/blockentity/LecternRenderer/f_112424_ net/minecraft/client/renderer/blockentity/LecternRenderer/bookModel +FD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/f_112441_ net/minecraft/client/renderer/blockentity/PistonHeadRenderer/blockRenderer +FD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/f_112466_ net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/model +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173629_ net/minecraft/client/renderer/blockentity/SignRenderer/STICK +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173630_ net/minecraft/client/renderer/blockentity/SignRenderer/BLACK_TEXT_OUTLINE_COLOR +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173631_ net/minecraft/client/renderer/blockentity/SignRenderer/OUTLINE_RENDER_DISTANCE +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173632_ net/minecraft/client/renderer/blockentity/SignRenderer/signModels +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173633_ net/minecraft/client/renderer/blockentity/SignRenderer/font +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_278459_ net/minecraft/client/renderer/blockentity/SignRenderer/TEXT_OFFSET +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_278501_ net/minecraft/client/renderer/blockentity/SignRenderer/RENDER_SCALE +FD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/f_112507_ net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/stick +FD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/f_173655_ net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/root +FD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/f_112519_ net/minecraft/client/renderer/blockentity/SkullBlockRenderer/SKIN_BY_TYPE +FD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/f_173658_ net/minecraft/client/renderer/blockentity/SkullBlockRenderer/modelByType +FD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/f_234449_ net/minecraft/client/renderer/blockentity/SpawnerRenderer/entityRenderer +FD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/f_112595_ net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/f_112596_ net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/f_112598_ net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/BEAM_LOCATION +FD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/f_112626_ net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/END_SKY_LOCATION +FD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/f_112627_ net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/END_PORTAL_LOCATION +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112672_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/LOGGER +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112674_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/freeBuffers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112675_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toUpload +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112676_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toBatchCount +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112677_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/freeBufferCount +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112678_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/fixedBuffers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112679_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/mailbox +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112680_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/executor +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112681_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/level +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112682_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/renderer +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112683_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/camera +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_173707_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/MAX_WORKERS_32_BIT +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_173708_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/VERTEX_FORMAT +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194400_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/MAX_HIGH_PRIORITY_QUOTA +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194401_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toBatchHighPriority +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194402_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toBatchLowPriority +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194403_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/highPriorityQuota +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/$VALUES net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/$VALUES +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/CANCELLED net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/CANCELLED +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/SUCCESSFUL net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/SUCCESSFUL +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112748_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/UNCOMPILED +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112749_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/hasBlocks +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112752_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/renderableBlockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112753_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/visibilitySet +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112754_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/transparencyState +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112784_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/compiled +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112785_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/bb +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112786_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/this$0 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112787_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lastRebuildTask +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112788_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lastResortTransparencyTask +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112789_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/globalBlockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112790_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/buffers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112792_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/dirty +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112793_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/origin +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112794_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/relativeOrigins +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112795_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/playerChanged +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_173716_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/SIZE +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_173717_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/index +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_202433_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/initialCompilationCancelCount +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_112847_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/distAtCreation +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_112848_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/isCancelled +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_112849_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/this$1 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_194420_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/isHighPriority +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/f_112858_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/region +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/f_112859_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/this$1 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234484_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/globalBlockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234485_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/blockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234486_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/renderedLayers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234487_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/visibilitySet +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234488_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/transparencyState +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/f_112885_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/this$1 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/f_112886_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/compiledChunk +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200441_ net/minecraft/client/renderer/chunk/RenderChunk/blockEntities +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200442_ net/minecraft/client/renderer/chunk/RenderChunk/sections +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200443_ net/minecraft/client/renderer/chunk/RenderChunk/debug +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200444_ net/minecraft/client/renderer/chunk/RenderChunk/wrapped +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112899_ net/minecraft/client/renderer/chunk/RenderChunkRegion/centerX +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112900_ net/minecraft/client/renderer/chunk/RenderChunkRegion/centerZ +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112905_ net/minecraft/client/renderer/chunk/RenderChunkRegion/chunks +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112908_ net/minecraft/client/renderer/chunk/RenderChunkRegion/level +FD: net/minecraft/client/renderer/chunk/RenderRegionCache/f_200460_ net/minecraft/client/renderer/chunk/RenderRegionCache/chunkInfoCache +FD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/f_200476_ net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/chunk +FD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/f_200477_ net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/renderChunk +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112949_ net/minecraft/client/renderer/chunk/VisGraph/DX +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112950_ net/minecraft/client/renderer/chunk/VisGraph/DZ +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112951_ net/minecraft/client/renderer/chunk/VisGraph/DY +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112952_ net/minecraft/client/renderer/chunk/VisGraph/DIRECTIONS +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112953_ net/minecraft/client/renderer/chunk/VisGraph/bitSet +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112954_ net/minecraft/client/renderer/chunk/VisGraph/INDEX_OF_EDGES +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112955_ net/minecraft/client/renderer/chunk/VisGraph/empty +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173723_ net/minecraft/client/renderer/chunk/VisGraph/SIZE_IN_BITS +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173724_ net/minecraft/client/renderer/chunk/VisGraph/LEN +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173725_ net/minecraft/client/renderer/chunk/VisGraph/MASK +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173726_ net/minecraft/client/renderer/chunk/VisGraph/SIZE +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173727_ net/minecraft/client/renderer/chunk/VisGraph/X_SHIFT +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173728_ net/minecraft/client/renderer/chunk/VisGraph/Z_SHIFT +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173729_ net/minecraft/client/renderer/chunk/VisGraph/Y_SHIFT +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173730_ net/minecraft/client/renderer/chunk/VisGraph/INVALID_INDEX +FD: net/minecraft/client/renderer/chunk/VisGraph$1/f_112977_ net/minecraft/client/renderer/chunk/VisGraph$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/chunk/VisibilitySet/f_112979_ net/minecraft/client/renderer/chunk/VisibilitySet/FACINGS +FD: net/minecraft/client/renderer/chunk/VisibilitySet/f_112980_ net/minecraft/client/renderer/chunk/VisibilitySet/data +FD: net/minecraft/client/renderer/culling/Frustum/f_112996_ net/minecraft/client/renderer/culling/Frustum/camX +FD: net/minecraft/client/renderer/culling/Frustum/f_112997_ net/minecraft/client/renderer/culling/Frustum/camY +FD: net/minecraft/client/renderer/culling/Frustum/f_112998_ net/minecraft/client/renderer/culling/Frustum/camZ +FD: net/minecraft/client/renderer/culling/Frustum/f_194437_ net/minecraft/client/renderer/culling/Frustum/OFFSET_STEP +FD: net/minecraft/client/renderer/culling/Frustum/f_194438_ net/minecraft/client/renderer/culling/Frustum/viewVector +FD: net/minecraft/client/renderer/culling/Frustum/f_252406_ net/minecraft/client/renderer/culling/Frustum/matrix +FD: net/minecraft/client/renderer/culling/Frustum/f_252531_ net/minecraft/client/renderer/culling/Frustum/intersection +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113048_ net/minecraft/client/renderer/debug/BeeDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113049_ net/minecraft/client/renderer/debug/BeeDebugRenderer/hives +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113050_ net/minecraft/client/renderer/debug/BeeDebugRenderer/beeInfosPerEntity +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113051_ net/minecraft/client/renderer/debug/BeeDebugRenderer/lastLookedAtUuid +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173737_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_GOAL_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173738_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_NAME_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173739_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_HIVE_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173740_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_FLOWER_POS_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173741_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_TRAVEL_TICKS_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173742_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_PATH_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173743_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_GOAL_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173744_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_NAME_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173745_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_HIVE_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173746_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_FLOWER_POS_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173747_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_TRAVEL_TICKS_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173748_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_PATH_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173749_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_HIVE_MEMBERS +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173750_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_BLACKLISTS +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173751_ net/minecraft/client/renderer/debug/BeeDebugRenderer/MAX_RENDER_DIST_FOR_HIVE_OVERLAY +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173752_ net/minecraft/client/renderer/debug/BeeDebugRenderer/MAX_RENDER_DIST_FOR_BEE_OVERLAY +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173753_ net/minecraft/client/renderer/debug/BeeDebugRenderer/MAX_TARGETING_DIST +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173754_ net/minecraft/client/renderer/debug/BeeDebugRenderer/HIVE_TIMEOUT +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173755_ net/minecraft/client/renderer/debug/BeeDebugRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173756_ net/minecraft/client/renderer/debug/BeeDebugRenderer/WHITE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173757_ net/minecraft/client/renderer/debug/BeeDebugRenderer/YELLOW +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173758_ net/minecraft/client/renderer/debug/BeeDebugRenderer/ORANGE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173759_ net/minecraft/client/renderer/debug/BeeDebugRenderer/GREEN +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173760_ net/minecraft/client/renderer/debug/BeeDebugRenderer/GRAY +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173761_ net/minecraft/client/renderer/debug/BeeDebugRenderer/PINK +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173762_ net/minecraft/client/renderer/debug/BeeDebugRenderer/RED +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113157_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/uuid +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113158_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/id +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113159_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/pos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113160_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/path +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113161_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/hivePos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113162_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/flowerPos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113163_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/travelTicks +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113164_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/goals +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113165_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/blacklistedHives +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113180_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/pos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113181_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/hiveType +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113182_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/occupantCount +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113183_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/honeyLevel +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113184_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/sedated +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113185_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/lastSeen +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113193_ net/minecraft/client/renderer/debug/BrainDebugRenderer/LOGGER +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113194_ net/minecraft/client/renderer/debug/BrainDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113195_ net/minecraft/client/renderer/debug/BrainDebugRenderer/pois +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113196_ net/minecraft/client/renderer/debug/BrainDebugRenderer/brainDumpsPerEntity +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113197_ net/minecraft/client/renderer/debug/BrainDebugRenderer/lastLookedAtUuid +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173778_ net/minecraft/client/renderer/debug/BrainDebugRenderer/YELLOW +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173779_ net/minecraft/client/renderer/debug/BrainDebugRenderer/CYAN +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173780_ net/minecraft/client/renderer/debug/BrainDebugRenderer/GREEN +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173781_ net/minecraft/client/renderer/debug/BrainDebugRenderer/GRAY +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173782_ net/minecraft/client/renderer/debug/BrainDebugRenderer/PINK +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173783_ net/minecraft/client/renderer/debug/BrainDebugRenderer/RED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173784_ net/minecraft/client/renderer/debug/BrainDebugRenderer/ORANGE +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173785_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_NAME_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173786_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PROFESSION_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173787_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_BEHAVIORS_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173788_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ACTIVITIES_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173789_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_INVENTORY_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173790_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_GOSSIPS_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173791_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PATH_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173792_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_HEALTH_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173793_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_WANTS_GOLEM_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173794_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_NAME_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173795_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PROFESSION_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173796_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_BEHAVIORS_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173797_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ACTIVITIES_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173798_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_MEMORIES_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173799_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_INVENTORY_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173800_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_GOSSIPS_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173801_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PATH_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173802_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_HEALTH_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173803_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_WANTS_GOLEM_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173804_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_POI_INFO +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173805_ net/minecraft/client/renderer/debug/BrainDebugRenderer/MAX_RENDER_DIST_FOR_BRAIN_INFO +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173806_ net/minecraft/client/renderer/debug/BrainDebugRenderer/MAX_RENDER_DIST_FOR_POI_INFO +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173807_ net/minecraft/client/renderer/debug/BrainDebugRenderer/MAX_TARGETING_DIST +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173808_ net/minecraft/client/renderer/debug/BrainDebugRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173809_ net/minecraft/client/renderer/debug/BrainDebugRenderer/WHITE +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_234493_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ANGER_LEVEL_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_234494_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ANGER_LEVEL_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113293_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/uuid +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113294_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/id +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113295_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/name +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113296_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/profession +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113297_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/xp +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113298_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/health +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113299_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/maxHealth +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113300_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/pos +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113301_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/inventory +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113302_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/path +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113303_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/wantsGolem +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113304_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/activities +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113305_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/behaviors +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113306_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/memories +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113307_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/gossips +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113308_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/pois +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113309_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/potentialPois +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_234495_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/angerLevel +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/f_113333_ net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/pos +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/f_113334_ net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/type +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/f_113335_ net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/freeTicketCount +FD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/f_113354_ net/minecraft/client/renderer/debug/ChunkBorderRenderer/minecraft +FD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/f_194450_ net/minecraft/client/renderer/debug/ChunkBorderRenderer/CELL_BORDER +FD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/f_194451_ net/minecraft/client/renderer/debug/ChunkBorderRenderer/YELLOW +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113363_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113364_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113365_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/radius +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113366_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/data +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/f_113377_ net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/this$0 +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/f_113378_ net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/clientData +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/f_113379_ net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/serverData +FD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/f_113400_ net/minecraft/client/renderer/debug/CollisionBoxRenderer/minecraft +FD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/f_113401_ net/minecraft/client/renderer/debug/CollisionBoxRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/f_113402_ net/minecraft/client/renderer/debug/CollisionBoxRenderer/shapes +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113413_ net/minecraft/client/renderer/debug/DebugRenderer/pathfindingRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113414_ net/minecraft/client/renderer/debug/DebugRenderer/waterDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113415_ net/minecraft/client/renderer/debug/DebugRenderer/chunkBorderRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113416_ net/minecraft/client/renderer/debug/DebugRenderer/heightMapRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113417_ net/minecraft/client/renderer/debug/DebugRenderer/collisionBoxRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113418_ net/minecraft/client/renderer/debug/DebugRenderer/neighborsUpdateRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113420_ net/minecraft/client/renderer/debug/DebugRenderer/structureRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113421_ net/minecraft/client/renderer/debug/DebugRenderer/lightDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113422_ net/minecraft/client/renderer/debug/DebugRenderer/worldGenAttemptRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113423_ net/minecraft/client/renderer/debug/DebugRenderer/solidFaceRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113424_ net/minecraft/client/renderer/debug/DebugRenderer/chunkRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113425_ net/minecraft/client/renderer/debug/DebugRenderer/brainDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113426_ net/minecraft/client/renderer/debug/DebugRenderer/villageSectionsDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113427_ net/minecraft/client/renderer/debug/DebugRenderer/beeDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113428_ net/minecraft/client/renderer/debug/DebugRenderer/raidDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113429_ net/minecraft/client/renderer/debug/DebugRenderer/goalSelectorRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113430_ net/minecraft/client/renderer/debug/DebugRenderer/gameTestDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113431_ net/minecraft/client/renderer/debug/DebugRenderer/renderChunkborder +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_173815_ net/minecraft/client/renderer/debug/DebugRenderer/gameEventListenerRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_279550_ net/minecraft/client/renderer/debug/DebugRenderer/skyLightSectionDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_285648_ net/minecraft/client/renderer/debug/DebugRenderer/supportBlockRenderer +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173816_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/minecraft +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173817_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/LISTENER_RENDER_DIST +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173818_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/BOX_HEIGHT +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173819_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackedGameEvents +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173820_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackedListeners +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173861_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/timeStamp +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173862_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/gameEvent +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173863_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/position +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/f_173869_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/listenerSource +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/f_173870_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/listenerRange +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/f_113512_ net/minecraft/client/renderer/debug/GameTestDebugRenderer/markers +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/f_173886_ net/minecraft/client/renderer/debug/GameTestDebugRenderer/PADDING +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/f_113532_ net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/color +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/f_113533_ net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/text +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/f_113534_ net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/removeAtTime +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/f_113543_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/f_113544_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/goalSelectors +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/f_173887_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113561_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/pos +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113562_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/priority +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113563_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/name +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113564_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/isRunning +FD: net/minecraft/client/renderer/debug/HeightMapRenderer/f_113570_ net/minecraft/client/renderer/debug/HeightMapRenderer/minecraft +FD: net/minecraft/client/renderer/debug/HeightMapRenderer/f_173890_ net/minecraft/client/renderer/debug/HeightMapRenderer/CHUNK_DIST +FD: net/minecraft/client/renderer/debug/HeightMapRenderer/f_173891_ net/minecraft/client/renderer/debug/HeightMapRenderer/BOX_HEIGHT +FD: net/minecraft/client/renderer/debug/HeightMapRenderer$1/f_113581_ net/minecraft/client/renderer/debug/HeightMapRenderer$1/$SwitchMap$net$minecraft$world$level$levelgen$Heightmap$Types +FD: net/minecraft/client/renderer/debug/LightDebugRenderer/f_113583_ net/minecraft/client/renderer/debug/LightDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/LightDebugRenderer/f_173892_ net/minecraft/client/renderer/debug/LightDebugRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279524_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279526_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/REFRESH_INTERVAL +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279532_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/data +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279558_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lightLayer +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279566_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279579_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/LIGHT_ONLY_COLOR +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279653_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/LIGHT_AND_BLOCKS_COLOR +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279660_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/RADIUS +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/f_279556_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/f_279546_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/minPos +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/f_279596_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/lightShape +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/f_279657_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/lightAndBlocksShape +FD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/f_113592_ net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/minecraft +FD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/f_113593_ net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/lastUpdate +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_113607_ net/minecraft/client/renderer/debug/PathfindingRenderer/pathMap +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_113608_ net/minecraft/client/renderer/debug/PathfindingRenderer/pathMaxDist +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_113609_ net/minecraft/client/renderer/debug/PathfindingRenderer/creationMap +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173893_ net/minecraft/client/renderer/debug/PathfindingRenderer/TIMEOUT +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173894_ net/minecraft/client/renderer/debug/PathfindingRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173895_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173896_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED_COST_MALUS +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173897_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED_NODE_TYPE_WITH_TEXT +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173898_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED_NODE_TYPE_WITH_BOX +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173899_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_GROUND_LABELS +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173900_ net/minecraft/client/renderer/debug/PathfindingRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_113647_ net/minecraft/client/renderer/debug/RaidDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_113648_ net/minecraft/client/renderer/debug/RaidDebugRenderer/raidCenters +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_173901_ net/minecraft/client/renderer/debug/RaidDebugRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_173902_ net/minecraft/client/renderer/debug/RaidDebugRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/SolidFaceRenderer/f_113666_ net/minecraft/client/renderer/debug/SolidFaceRenderer/minecraft +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113675_ net/minecraft/client/renderer/debug/StructureRenderer/minecraft +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113676_ net/minecraft/client/renderer/debug/StructureRenderer/postMainBoxes +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113677_ net/minecraft/client/renderer/debug/StructureRenderer/postPiecesBoxes +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113678_ net/minecraft/client/renderer/debug/StructureRenderer/startPiecesMap +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_173903_ net/minecraft/client/renderer/debug/StructureRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/SupportBlockRenderer/f_285572_ net/minecraft/client/renderer/debug/SupportBlockRenderer/surroundEntities +FD: net/minecraft/client/renderer/debug/SupportBlockRenderer/f_285602_ net/minecraft/client/renderer/debug/SupportBlockRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/SupportBlockRenderer/f_285628_ net/minecraft/client/renderer/debug/SupportBlockRenderer/minecraft +FD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/f_113693_ net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/villageSections +FD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/f_173904_ net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/MAX_RENDER_DIST_FOR_VILLAGE_SECTIONS +FD: net/minecraft/client/renderer/debug/WaterDebugRenderer/f_113715_ net/minecraft/client/renderer/debug/WaterDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113724_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/toRender +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113725_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/scales +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113726_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/alphas +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113727_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/reds +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113728_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/greens +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113729_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/blues +FD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/f_113744_ net/minecraft/client/renderer/entity/AbstractHorseRenderer/scale +FD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/f_113757_ net/minecraft/client/renderer/entity/AbstractZombieRenderer/ZOMBIE_LOCATION +FD: net/minecraft/client/renderer/entity/AllayRenderer/f_234548_ net/minecraft/client/renderer/entity/AllayRenderer/ALLAY_TEXTURE +FD: net/minecraft/client/renderer/entity/ArmorStandRenderer/f_113780_ net/minecraft/client/renderer/entity/ArmorStandRenderer/DEFAULT_SKIN_LOCATION +FD: net/minecraft/client/renderer/entity/AxolotlRenderer/f_173918_ net/minecraft/client/renderer/entity/AxolotlRenderer/TEXTURE_BY_TYPE +FD: net/minecraft/client/renderer/entity/BatRenderer/f_113859_ net/minecraft/client/renderer/entity/BatRenderer/BAT_LOCATION +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113887_ net/minecraft/client/renderer/entity/BeeRenderer/ANGRY_BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113888_ net/minecraft/client/renderer/entity/BeeRenderer/ANGRY_NECTAR_BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113889_ net/minecraft/client/renderer/entity/BeeRenderer/BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113890_ net/minecraft/client/renderer/entity/BeeRenderer/NECTAR_BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BlazeRenderer/f_113898_ net/minecraft/client/renderer/entity/BlazeRenderer/BLAZE_LOCATION +FD: net/minecraft/client/renderer/entity/BoatRenderer/f_173934_ net/minecraft/client/renderer/entity/BoatRenderer/boatResources +FD: net/minecraft/client/renderer/entity/CamelRenderer/f_244220_ net/minecraft/client/renderer/entity/CamelRenderer/CAMEL_LOCATION +FD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/f_113961_ net/minecraft/client/renderer/entity/CaveSpiderRenderer/CAVE_SPIDER_LOCATION +FD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/f_173944_ net/minecraft/client/renderer/entity/CaveSpiderRenderer/SCALE +FD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/f_113979_ net/minecraft/client/renderer/entity/ChestedHorseRenderer/MAP +FD: net/minecraft/client/renderer/entity/ChickenRenderer/f_113988_ net/minecraft/client/renderer/entity/ChickenRenderer/CHICKEN_LOCATION +FD: net/minecraft/client/renderer/entity/CodRenderer/f_114002_ net/minecraft/client/renderer/entity/CodRenderer/COD_LOCATION +FD: net/minecraft/client/renderer/entity/CowRenderer/f_114022_ net/minecraft/client/renderer/entity/CowRenderer/COW_LOCATION +FD: net/minecraft/client/renderer/entity/CreeperRenderer/f_114030_ net/minecraft/client/renderer/entity/CreeperRenderer/CREEPER_LOCATION +FD: net/minecraft/client/renderer/entity/DisplayRenderer/f_268749_ net/minecraft/client/renderer/entity/DisplayRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/entity/DisplayRenderer$1/f_268432_ net/minecraft/client/renderer/entity/DisplayRenderer$1/$SwitchMap$net$minecraft$world$entity$Display$BillboardConstraints +FD: net/minecraft/client/renderer/entity/DisplayRenderer$1/f_268734_ net/minecraft/client/renderer/entity/DisplayRenderer$1/$SwitchMap$net$minecraft$world$entity$Display$TextDisplay$Align +FD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/f_268487_ net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/f_268604_ net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/f_268575_ net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/font +FD: net/minecraft/client/renderer/entity/DolphinRenderer/f_114052_ net/minecraft/client/renderer/entity/DolphinRenderer/DOLPHIN_LOCATION +FD: net/minecraft/client/renderer/entity/DragonFireballRenderer/f_114060_ net/minecraft/client/renderer/entity/DragonFireballRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/DragonFireballRenderer/f_114061_ net/minecraft/client/renderer/entity/DragonFireballRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/DrownedRenderer/f_114098_ net/minecraft/client/renderer/entity/DrownedRenderer/DROWNED_LOCATION +FD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/f_114116_ net/minecraft/client/renderer/entity/ElderGuardianRenderer/GUARDIAN_ELDER_LOCATION +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114132_ net/minecraft/client/renderer/entity/EndCrystalRenderer/END_CRYSTAL_LOCATION +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114133_ net/minecraft/client/renderer/entity/EndCrystalRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114134_ net/minecraft/client/renderer/entity/EndCrystalRenderer/SIN_45 +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114135_ net/minecraft/client/renderer/entity/EndCrystalRenderer/cube +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114136_ net/minecraft/client/renderer/entity/EndCrystalRenderer/glass +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114137_ net/minecraft/client/renderer/entity/EndCrystalRenderer/base +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_173967_ net/minecraft/client/renderer/entity/EndCrystalRenderer/GLASS +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_173968_ net/minecraft/client/renderer/entity/EndCrystalRenderer/BASE +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114174_ net/minecraft/client/renderer/entity/EnderDragonRenderer/CRYSTAL_BEAM_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114175_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DRAGON_EXPLODING_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114176_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DRAGON_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114177_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DRAGON_EYES_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114178_ net/minecraft/client/renderer/entity/EnderDragonRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114179_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DECAL +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114180_ net/minecraft/client/renderer/entity/EnderDragonRenderer/EYES +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114181_ net/minecraft/client/renderer/entity/EnderDragonRenderer/BEAM +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114182_ net/minecraft/client/renderer/entity/EnderDragonRenderer/HALF_SQRT_3 +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114183_ net/minecraft/client/renderer/entity/EnderDragonRenderer/model +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114233_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/entity +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114234_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/a +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114235_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/head +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114236_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/neck +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114237_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/jaw +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114238_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/body +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114239_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftWing +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114240_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftWingTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114241_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftFrontLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114242_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftFrontLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114243_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftFrontFoot +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114244_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftRearLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114245_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftRearLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114246_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftRearFoot +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114247_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightWing +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114248_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightWingTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114249_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightFrontLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114250_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightFrontLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114251_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightFrontFoot +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114252_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightRearLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114253_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightRearLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114254_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightRearFoot +FD: net/minecraft/client/renderer/entity/EndermanRenderer/f_114302_ net/minecraft/client/renderer/entity/EndermanRenderer/ENDERMAN_LOCATION +FD: net/minecraft/client/renderer/entity/EndermanRenderer/f_114303_ net/minecraft/client/renderer/entity/EndermanRenderer/random +FD: net/minecraft/client/renderer/entity/EndermiteRenderer/f_114345_ net/minecraft/client/renderer/entity/EndermiteRenderer/ENDERMITE_LOCATION +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114357_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/textureManager +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114358_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/camera +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114359_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/crosshairPickEntity +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114360_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/options +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114361_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/SHADOW_RENDER_TYPE +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114362_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderers +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114363_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/playerRenderers +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114365_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/font +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114366_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/level +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114367_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/cameraOrientation +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114368_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/shouldRenderShadow +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114369_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderHitBoxes +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_173995_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/itemRenderer +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_173996_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/entityModels +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_234576_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/blockRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_234577_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_276493_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/MAX_SHADOW_RADIUS +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_276586_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/SHADOW_POWER_FALLOFF_Y +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_114476_ net/minecraft/client/renderer/entity/EntityRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_114477_ net/minecraft/client/renderer/entity/EntityRenderer/shadowRadius +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_114478_ net/minecraft/client/renderer/entity/EntityRenderer/shadowStrength +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_174005_ net/minecraft/client/renderer/entity/EntityRenderer/font +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_174006_ net/minecraft/client/renderer/entity/EntityRenderer/NAMETAG_SCALE +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174011_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/entityRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174012_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/itemRenderer +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174013_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/resourceManager +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174014_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/modelSet +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174015_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/font +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_234587_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/blockRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_234588_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174029_ net/minecraft/client/renderer/entity/EntityRenderers/DEFAULT_PLAYER_MODEL +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174030_ net/minecraft/client/renderer/entity/EntityRenderers/LOGGER +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174031_ net/minecraft/client/renderer/entity/EntityRenderers/PROVIDERS +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174032_ net/minecraft/client/renderer/entity/EntityRenderers/PLAYER_PROVIDERS +FD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/f_114511_ net/minecraft/client/renderer/entity/EvokerFangsRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/f_114512_ net/minecraft/client/renderer/entity/EvokerFangsRenderer/model +FD: net/minecraft/client/renderer/entity/EvokerRenderer/f_114534_ net/minecraft/client/renderer/entity/EvokerRenderer/EVOKER_ILLAGER +FD: net/minecraft/client/renderer/entity/EvokerRenderer$1/f_114542_ net/minecraft/client/renderer/entity/EvokerRenderer$1/this$0 +FD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/f_114579_ net/minecraft/client/renderer/entity/ExperienceOrbRenderer/EXPERIENCE_ORB_LOCATION +FD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/f_114580_ net/minecraft/client/renderer/entity/ExperienceOrbRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/FallingBlockRenderer/f_234617_ net/minecraft/client/renderer/entity/FallingBlockRenderer/dispatcher +FD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/f_114640_ net/minecraft/client/renderer/entity/FireworkEntityRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/FishingHookRenderer/f_114678_ net/minecraft/client/renderer/entity/FishingHookRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/FishingHookRenderer/f_114679_ net/minecraft/client/renderer/entity/FishingHookRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/FishingHookRenderer/f_174115_ net/minecraft/client/renderer/entity/FishingHookRenderer/VIEW_BOBBING_SCALE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114720_ net/minecraft/client/renderer/entity/FoxRenderer/RED_FOX_TEXTURE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114721_ net/minecraft/client/renderer/entity/FoxRenderer/RED_FOX_SLEEP_TEXTURE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114722_ net/minecraft/client/renderer/entity/FoxRenderer/SNOW_FOX_TEXTURE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114723_ net/minecraft/client/renderer/entity/FoxRenderer/SNOW_FOX_SLEEP_TEXTURE +FD: net/minecraft/client/renderer/entity/GhastRenderer/f_114743_ net/minecraft/client/renderer/entity/GhastRenderer/GHAST_LOCATION +FD: net/minecraft/client/renderer/entity/GhastRenderer/f_114744_ net/minecraft/client/renderer/entity/GhastRenderer/GHAST_SHOOTING_LOCATION +FD: net/minecraft/client/renderer/entity/GiantMobRenderer/f_114760_ net/minecraft/client/renderer/entity/GiantMobRenderer/ZOMBIE_LOCATION +FD: net/minecraft/client/renderer/entity/GiantMobRenderer/f_114761_ net/minecraft/client/renderer/entity/GiantMobRenderer/scale +FD: net/minecraft/client/renderer/entity/GlowSquidRenderer/f_174133_ net/minecraft/client/renderer/entity/GlowSquidRenderer/GLOW_SQUID_LOCATION +FD: net/minecraft/client/renderer/entity/GoatRenderer/f_174150_ net/minecraft/client/renderer/entity/GoatRenderer/GOAT_LOCATION +FD: net/minecraft/client/renderer/entity/GuardianRenderer/f_114778_ net/minecraft/client/renderer/entity/GuardianRenderer/GUARDIAN_LOCATION +FD: net/minecraft/client/renderer/entity/GuardianRenderer/f_114779_ net/minecraft/client/renderer/entity/GuardianRenderer/GUARDIAN_BEAM_LOCATION +FD: net/minecraft/client/renderer/entity/GuardianRenderer/f_114780_ net/minecraft/client/renderer/entity/GuardianRenderer/BEAM_RENDER_TYPE +FD: net/minecraft/client/renderer/entity/HoglinRenderer/f_114853_ net/minecraft/client/renderer/entity/HoglinRenderer/HOGLIN_LOCATION +FD: net/minecraft/client/renderer/entity/HorseRenderer/f_114865_ net/minecraft/client/renderer/entity/HorseRenderer/LOCATION_BY_VARIANT +FD: net/minecraft/client/renderer/entity/HuskRenderer/f_114892_ net/minecraft/client/renderer/entity/HuskRenderer/HUSK_LOCATION +FD: net/minecraft/client/renderer/entity/IllusionerRenderer/f_114922_ net/minecraft/client/renderer/entity/IllusionerRenderer/ILLUSIONER +FD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/f_114962_ net/minecraft/client/renderer/entity/IllusionerRenderer$1/this$0 +FD: net/minecraft/client/renderer/entity/IronGolemRenderer/f_114999_ net/minecraft/client/renderer/entity/IronGolemRenderer/GOLEM_LOCATION +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_115019_ net/minecraft/client/renderer/entity/ItemEntityRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_115020_ net/minecraft/client/renderer/entity/ItemEntityRenderer/random +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174189_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_BUNDLE_OFFSET_SCALE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174190_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_5_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174191_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_4_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174192_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_3_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174193_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_2_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174194_ net/minecraft/client/renderer/entity/ItemEntityRenderer/FLAT_ITEM_BUNDLE_OFFSET_X +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174195_ net/minecraft/client/renderer/entity/ItemEntityRenderer/FLAT_ITEM_BUNDLE_OFFSET_Y +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174196_ net/minecraft/client/renderer/entity/ItemEntityRenderer/FLAT_ITEM_BUNDLE_OFFSET_Z +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_115044_ net/minecraft/client/renderer/entity/ItemFrameRenderer/FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_115045_ net/minecraft/client/renderer/entity/ItemFrameRenderer/MAP_FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_115047_ net/minecraft/client/renderer/entity/ItemFrameRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174199_ net/minecraft/client/renderer/entity/ItemFrameRenderer/GLOW_FRAME_BRIGHTNESS +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174200_ net/minecraft/client/renderer/entity/ItemFrameRenderer/BRIGHT_MAP_LIGHT_ADJUSTMENT +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174201_ net/minecraft/client/renderer/entity/ItemFrameRenderer/GLOW_FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174202_ net/minecraft/client/renderer/entity/ItemFrameRenderer/GLOW_MAP_FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_234645_ net/minecraft/client/renderer/entity/ItemFrameRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115094_ net/minecraft/client/renderer/entity/ItemRenderer/IGNORED +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115095_ net/minecraft/client/renderer/entity/ItemRenderer/itemModelShaper +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115096_ net/minecraft/client/renderer/entity/ItemRenderer/textureManager +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115097_ net/minecraft/client/renderer/entity/ItemRenderer/itemColors +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174218_ net/minecraft/client/renderer/entity/ItemRenderer/ITEM_COUNT_BLIT_OFFSET +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174219_ net/minecraft/client/renderer/entity/ItemRenderer/COMPASS_FOIL_UI_SCALE +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174220_ net/minecraft/client/renderer/entity/ItemRenderer/COMPASS_FOIL_FIRST_PERSON_SCALE +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174221_ net/minecraft/client/renderer/entity/ItemRenderer/GUI_SLOT_CENTER_X +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174222_ net/minecraft/client/renderer/entity/ItemRenderer/GUI_SLOT_CENTER_Y +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174223_ net/minecraft/client/renderer/entity/ItemRenderer/blockEntityRenderer +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_243706_ net/minecraft/client/renderer/entity/ItemRenderer/SPYGLASS_IN_HAND_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_244055_ net/minecraft/client/renderer/entity/ItemRenderer/TRIDENT_IN_HAND_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_244324_ net/minecraft/client/renderer/entity/ItemRenderer/TRIDENT_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_244537_ net/minecraft/client/renderer/entity/ItemRenderer/SPYGLASS_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_256734_ net/minecraft/client/renderer/entity/ItemRenderer/COMPASS_FOIL_TEXTURE_SCALE +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_265848_ net/minecraft/client/renderer/entity/ItemRenderer/minecraft +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_273833_ net/minecraft/client/renderer/entity/ItemRenderer/ENCHANTED_GLINT_ITEM +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_273897_ net/minecraft/client/renderer/entity/ItemRenderer/ENCHANTED_GLINT_ENTITY +FD: net/minecraft/client/renderer/entity/LeashKnotRenderer/f_115229_ net/minecraft/client/renderer/entity/LeashKnotRenderer/KNOT_LOCATION +FD: net/minecraft/client/renderer/entity/LeashKnotRenderer/f_115230_ net/minecraft/client/renderer/entity/LeashKnotRenderer/model +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_115289_ net/minecraft/client/renderer/entity/LivingEntityRenderer/LOGGER +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_115290_ net/minecraft/client/renderer/entity/LivingEntityRenderer/model +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_115291_ net/minecraft/client/renderer/entity/LivingEntityRenderer/layers +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_174287_ net/minecraft/client/renderer/entity/LivingEntityRenderer/EYE_BED_OFFSET +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer$1/f_115345_ net/minecraft/client/renderer/entity/LivingEntityRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer$1/f_115346_ net/minecraft/client/renderer/entity/LivingEntityRenderer$1/$SwitchMap$net$minecraft$world$scores$Team$Visibility +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262241_ net/minecraft/client/renderer/entity/LlamaRenderer/BROWN +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262249_ net/minecraft/client/renderer/entity/LlamaRenderer/CREAMY +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262269_ net/minecraft/client/renderer/entity/LlamaRenderer/WHITE +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262320_ net/minecraft/client/renderer/entity/LlamaRenderer/GRAY +FD: net/minecraft/client/renderer/entity/LlamaRenderer$1/f_262225_ net/minecraft/client/renderer/entity/LlamaRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$horse$Llama$Variant +FD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/f_115356_ net/minecraft/client/renderer/entity/LlamaSpitRenderer/LLAMA_SPIT_LOCATION +FD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/f_115357_ net/minecraft/client/renderer/entity/LlamaSpitRenderer/model +FD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/f_115379_ net/minecraft/client/renderer/entity/MagmaCubeRenderer/MAGMACUBE_LOCATION +FD: net/minecraft/client/renderer/entity/MinecartRenderer/f_115401_ net/minecraft/client/renderer/entity/MinecartRenderer/model +FD: net/minecraft/client/renderer/entity/MinecartRenderer/f_115402_ net/minecraft/client/renderer/entity/MinecartRenderer/MINECART_LOCATION +FD: net/minecraft/client/renderer/entity/MinecartRenderer/f_234646_ net/minecraft/client/renderer/entity/MinecartRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/MobRenderer/f_174302_ net/minecraft/client/renderer/entity/MobRenderer/LEASH_RENDER_STEPS +FD: net/minecraft/client/renderer/entity/MushroomCowRenderer/f_115507_ net/minecraft/client/renderer/entity/MushroomCowRenderer/TEXTURES +FD: net/minecraft/client/renderer/entity/OcelotRenderer/f_115517_ net/minecraft/client/renderer/entity/OcelotRenderer/CAT_OCELOT_LOCATION +FD: net/minecraft/client/renderer/entity/PandaRenderer/f_115620_ net/minecraft/client/renderer/entity/PandaRenderer/TEXTURES +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262196_ net/minecraft/client/renderer/entity/ParrotRenderer/RED_BLUE +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262214_ net/minecraft/client/renderer/entity/ParrotRenderer/BLUE +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262242_ net/minecraft/client/renderer/entity/ParrotRenderer/YELLOW_BLUE +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262263_ net/minecraft/client/renderer/entity/ParrotRenderer/GREEN +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262278_ net/minecraft/client/renderer/entity/ParrotRenderer/GREY +FD: net/minecraft/client/renderer/entity/ParrotRenderer$1/f_262232_ net/minecraft/client/renderer/entity/ParrotRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$Parrot$Variant +FD: net/minecraft/client/renderer/entity/PhantomRenderer/f_115662_ net/minecraft/client/renderer/entity/PhantomRenderer/PHANTOM_LOCATION +FD: net/minecraft/client/renderer/entity/PigRenderer/f_115690_ net/minecraft/client/renderer/entity/PigRenderer/PIG_LOCATION +FD: net/minecraft/client/renderer/entity/PiglinRenderer/f_174341_ net/minecraft/client/renderer/entity/PiglinRenderer/TEXTURES +FD: net/minecraft/client/renderer/entity/PiglinRenderer/f_174342_ net/minecraft/client/renderer/entity/PiglinRenderer/PIGLIN_CUSTOM_HEAD_SCALE +FD: net/minecraft/client/renderer/entity/PillagerRenderer/f_115713_ net/minecraft/client/renderer/entity/PillagerRenderer/PILLAGER +FD: net/minecraft/client/renderer/entity/PolarBearRenderer/f_115721_ net/minecraft/client/renderer/entity/PolarBearRenderer/BEAR_LOCATION +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115737_ net/minecraft/client/renderer/entity/PufferfishRenderer/PUFFER_LOCATION +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115738_ net/minecraft/client/renderer/entity/PufferfishRenderer/puffStateO +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115739_ net/minecraft/client/renderer/entity/PufferfishRenderer/small +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115740_ net/minecraft/client/renderer/entity/PufferfishRenderer/mid +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115741_ net/minecraft/client/renderer/entity/PufferfishRenderer/big +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115789_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_BROWN_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115790_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_WHITE_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115791_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_BLACK_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115792_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_GOLD_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115793_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_SALT_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115794_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_WHITE_SPLOTCHED_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115795_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_TOAST_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115796_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_EVIL_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer$1/f_262283_ net/minecraft/client/renderer/entity/RabbitRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$Rabbit$Variant +FD: net/minecraft/client/renderer/entity/RavagerRenderer/f_115804_ net/minecraft/client/renderer/entity/RavagerRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/SalmonRenderer/f_115813_ net/minecraft/client/renderer/entity/SalmonRenderer/SALMON_LOCATION +FD: net/minecraft/client/renderer/entity/SheepRenderer/f_115833_ net/minecraft/client/renderer/entity/SheepRenderer/SHEEP_LOCATION +FD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/f_115841_ net/minecraft/client/renderer/entity/ShulkerBulletRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/f_115842_ net/minecraft/client/renderer/entity/ShulkerBulletRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/f_115843_ net/minecraft/client/renderer/entity/ShulkerBulletRenderer/model +FD: net/minecraft/client/renderer/entity/ShulkerRenderer/f_115871_ net/minecraft/client/renderer/entity/ShulkerRenderer/DEFAULT_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/ShulkerRenderer/f_115872_ net/minecraft/client/renderer/entity/ShulkerRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/SilverfishRenderer/f_115920_ net/minecraft/client/renderer/entity/SilverfishRenderer/SILVERFISH_LOCATION +FD: net/minecraft/client/renderer/entity/SkeletonRenderer/f_115932_ net/minecraft/client/renderer/entity/SkeletonRenderer/SKELETON_LOCATION +FD: net/minecraft/client/renderer/entity/SlimeRenderer/f_115942_ net/minecraft/client/renderer/entity/SlimeRenderer/SLIME_LOCATION +FD: net/minecraft/client/renderer/entity/SnifferRenderer/f_271201_ net/minecraft/client/renderer/entity/SnifferRenderer/SNIFFER_LOCATION +FD: net/minecraft/client/renderer/entity/SnowGolemRenderer/f_115986_ net/minecraft/client/renderer/entity/SnowGolemRenderer/SNOW_GOLEM_LOCATION +FD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/f_115994_ net/minecraft/client/renderer/entity/SpectralArrowRenderer/SPECTRAL_ARROW_LOCATION +FD: net/minecraft/client/renderer/entity/SpiderRenderer/f_116002_ net/minecraft/client/renderer/entity/SpiderRenderer/SPIDER_LOCATION +FD: net/minecraft/client/renderer/entity/SquidRenderer/f_116014_ net/minecraft/client/renderer/entity/SquidRenderer/SQUID_LOCATION +FD: net/minecraft/client/renderer/entity/StrayRenderer/f_116040_ net/minecraft/client/renderer/entity/StrayRenderer/STRAY_SKELETON_LOCATION +FD: net/minecraft/client/renderer/entity/StriderRenderer/f_116050_ net/minecraft/client/renderer/entity/StriderRenderer/STRIDER_LOCATION +FD: net/minecraft/client/renderer/entity/StriderRenderer/f_116051_ net/minecraft/client/renderer/entity/StriderRenderer/COLD_LOCATION +FD: net/minecraft/client/renderer/entity/TadpoleRenderer/f_234652_ net/minecraft/client/renderer/entity/TadpoleRenderer/TADPOLE_TEXTURE +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_116071_ net/minecraft/client/renderer/entity/ThrownItemRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_116072_ net/minecraft/client/renderer/entity/ThrownItemRenderer/scale +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_116073_ net/minecraft/client/renderer/entity/ThrownItemRenderer/fullBright +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_174412_ net/minecraft/client/renderer/entity/ThrownItemRenderer/MIN_CAMERA_DISTANCE_SQUARED +FD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/f_116094_ net/minecraft/client/renderer/entity/ThrownTridentRenderer/TRIDENT_LOCATION +FD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/f_116095_ net/minecraft/client/renderer/entity/ThrownTridentRenderer/model +FD: net/minecraft/client/renderer/entity/TippableArrowRenderer/f_116132_ net/minecraft/client/renderer/entity/TippableArrowRenderer/NORMAL_ARROW_LOCATION +FD: net/minecraft/client/renderer/entity/TippableArrowRenderer/f_116133_ net/minecraft/client/renderer/entity/TippableArrowRenderer/TIPPED_ARROW_LOCATION +FD: net/minecraft/client/renderer/entity/TntMinecartRenderer/f_234660_ net/minecraft/client/renderer/entity/TntMinecartRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/TntRenderer/f_234668_ net/minecraft/client/renderer/entity/TntRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_116183_ net/minecraft/client/renderer/entity/TropicalFishRenderer/modelA +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_116184_ net/minecraft/client/renderer/entity/TropicalFishRenderer/modelB +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_262236_ net/minecraft/client/renderer/entity/TropicalFishRenderer/MODEL_B_TEXTURE +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_262282_ net/minecraft/client/renderer/entity/TropicalFishRenderer/MODEL_A_TEXTURE +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer$1/f_262201_ net/minecraft/client/renderer/entity/TropicalFishRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$TropicalFish$Base +FD: net/minecraft/client/renderer/entity/TurtleRenderer/f_116231_ net/minecraft/client/renderer/entity/TurtleRenderer/TURTLE_LOCATION +FD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/f_116267_ net/minecraft/client/renderer/entity/UndeadHorseRenderer/MAP +FD: net/minecraft/client/renderer/entity/VexRenderer/f_116275_ net/minecraft/client/renderer/entity/VexRenderer/VEX_LOCATION +FD: net/minecraft/client/renderer/entity/VexRenderer/f_116276_ net/minecraft/client/renderer/entity/VexRenderer/VEX_CHARGING_LOCATION +FD: net/minecraft/client/renderer/entity/VillagerRenderer/f_116300_ net/minecraft/client/renderer/entity/VillagerRenderer/VILLAGER_BASE_SKIN +FD: net/minecraft/client/renderer/entity/VindicatorRenderer/f_116317_ net/minecraft/client/renderer/entity/VindicatorRenderer/VINDICATOR +FD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/f_116325_ net/minecraft/client/renderer/entity/VindicatorRenderer$1/this$0 +FD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/f_116362_ net/minecraft/client/renderer/entity/WanderingTraderRenderer/VILLAGER_BASE_SKIN +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234780_ net/minecraft/client/renderer/entity/WardenRenderer/TEXTURE +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234781_ net/minecraft/client/renderer/entity/WardenRenderer/BIOLUMINESCENT_LAYER_TEXTURE +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234782_ net/minecraft/client/renderer/entity/WardenRenderer/HEART_TEXTURE +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234783_ net/minecraft/client/renderer/entity/WardenRenderer/PULSATING_SPOTS_TEXTURE_1 +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234784_ net/minecraft/client/renderer/entity/WardenRenderer/PULSATING_SPOTS_TEXTURE_2 +FD: net/minecraft/client/renderer/entity/WitchRenderer/f_116378_ net/minecraft/client/renderer/entity/WitchRenderer/WITCH_LOCATION +FD: net/minecraft/client/renderer/entity/WitherBossRenderer/f_116422_ net/minecraft/client/renderer/entity/WitherBossRenderer/WITHER_INVULNERABLE_LOCATION +FD: net/minecraft/client/renderer/entity/WitherBossRenderer/f_116423_ net/minecraft/client/renderer/entity/WitherBossRenderer/WITHER_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/f_116445_ net/minecraft/client/renderer/entity/WitherSkeletonRenderer/WITHER_SKELETON_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkullRenderer/f_116463_ net/minecraft/client/renderer/entity/WitherSkullRenderer/WITHER_INVULNERABLE_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkullRenderer/f_116464_ net/minecraft/client/renderer/entity/WitherSkullRenderer/WITHER_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkullRenderer/f_116465_ net/minecraft/client/renderer/entity/WitherSkullRenderer/model +FD: net/minecraft/client/renderer/entity/WolfRenderer/f_116493_ net/minecraft/client/renderer/entity/WolfRenderer/WOLF_LOCATION +FD: net/minecraft/client/renderer/entity/WolfRenderer/f_116494_ net/minecraft/client/renderer/entity/WolfRenderer/WOLF_TAME_LOCATION +FD: net/minecraft/client/renderer/entity/WolfRenderer/f_116495_ net/minecraft/client/renderer/entity/WolfRenderer/WOLF_ANGRY_LOCATION +FD: net/minecraft/client/renderer/entity/ZoglinRenderer/f_116537_ net/minecraft/client/renderer/entity/ZoglinRenderer/ZOGLIN_LOCATION +FD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/f_116547_ net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ZOMBIE_VILLAGER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/ArrowLayer/f_116562_ net/minecraft/client/renderer/entity/layers/ArrowLayer/dispatcher +FD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/f_116577_ net/minecraft/client/renderer/entity/layers/BeeStingerLayer/BEE_STINGER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/f_234812_ net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/f_116649_ net/minecraft/client/renderer/entity/layers/CatCollarLayer/CAT_COLLAR_LOCATION +FD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/f_116650_ net/minecraft/client/renderer/entity/layers/CatCollarLayer/catModel +FD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/f_116676_ net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/POWER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/f_116677_ net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/model +FD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/f_234816_ net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_116709_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/scaleX +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_116710_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/scaleY +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_116711_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/scaleZ +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_174473_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/skullModels +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_234820_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/f_234832_ net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/f_116907_ net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/DROWNED_OUTER_LAYER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/f_116908_ net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/model +FD: net/minecraft/client/renderer/entity/layers/ElytraLayer/f_116934_ net/minecraft/client/renderer/entity/layers/ElytraLayer/WINGS_LOCATION +FD: net/minecraft/client/renderer/entity/layers/ElytraLayer/f_116935_ net/minecraft/client/renderer/entity/layers/ElytraLayer/elytraModel +FD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/f_116961_ net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ENDERMAN_EYES +FD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/f_234836_ net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/f_117017_ net/minecraft/client/renderer/entity/layers/HorseArmorLayer/model +FD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/f_117042_ net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/LOCATION_BY_MARKINGS +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_117070_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ARMOR_LOCATION_CACHE +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_117071_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/innerModel +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_117072_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/outerModel +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_266073_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/armorTrimAtlas +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/f_117130_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot +FD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/f_117132_ net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/resourceLocations +FD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/f_234840_ net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/f_234844_ net/minecraft/client/renderer/entity/layers/ItemInHandLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/f_117214_ net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/f_117215_ net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/TRADER_LLAMA +FD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/f_117216_ net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/model +FD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/f_234848_ net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/f_234860_ net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/f_117290_ net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/model +FD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/f_117339_ net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/PHANTOM_EYES +FD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/f_174513_ net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/X_ROT_MIN +FD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/f_174514_ net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/X_ROT_MAX +FD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/f_234864_ net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/RenderLayer/f_117344_ net/minecraft/client/renderer/entity/layers/RenderLayer/renderer +FD: net/minecraft/client/renderer/entity/layers/SaddleLayer/f_117387_ net/minecraft/client/renderer/entity/layers/SaddleLayer/textureLocation +FD: net/minecraft/client/renderer/entity/layers/SaddleLayer/f_117388_ net/minecraft/client/renderer/entity/layers/SaddleLayer/model +FD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/f_117404_ net/minecraft/client/renderer/entity/layers/SheepFurLayer/SHEEP_FUR_LOCATION +FD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/f_117405_ net/minecraft/client/renderer/entity/layers/SheepFurLayer/model +FD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/f_117455_ net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/model +FD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/f_234868_ net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/f_234869_ net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/itemRenderer +FD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/f_117504_ net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/SPIDER_EYES +FD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/f_117509_ net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/TEXTURE +FD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/f_117510_ net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/box +FD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/f_174538_ net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/BOX +FD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/f_117536_ net/minecraft/client/renderer/entity/layers/StrayClothingLayer/STRAY_CLOTHES_LOCATION +FD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/f_117537_ net/minecraft/client/renderer/entity/layers/StrayClothingLayer/layerModel +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_117596_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/modelA +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_117597_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/modelB +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262197_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/GLITTER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262199_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/SUNSTREAK_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262230_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/CLAYFISH_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262234_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/SNOOPER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262260_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/SPOTTY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262261_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/BETTY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262267_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/KOB_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262270_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/DASHER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262284_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/BLOCKFISH_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262290_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/FLOPPER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262297_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/STRIPEY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262298_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/BRINELY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/f_262220_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/$SwitchMap$net$minecraft$world$entity$animal$TropicalFish$Base +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/f_262237_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/$SwitchMap$net$minecraft$world$entity$animal$TropicalFish$Pattern +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117622_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/LEVEL_LOCATIONS +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117623_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/typeHatCache +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117624_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/professionHatCache +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117625_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/resourceManager +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117626_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/path +FD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/f_234881_ net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/texture +FD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/f_234882_ net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/alphaFunction +FD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/f_234883_ net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/drawSelector +FD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/f_117695_ net/minecraft/client/renderer/entity/layers/WitherArmorLayer/WITHER_ARMOR_LOCATION +FD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/f_117696_ net/minecraft/client/renderer/entity/layers/WitherArmorLayer/model +FD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/f_117704_ net/minecraft/client/renderer/entity/layers/WolfCollarLayer/WOLF_COLLAR_LOCATION +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234928_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/DEFAULT_ROTATION +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234929_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/compassTarget +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234930_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/wobble +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234931_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/wobbleRandom +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/f_234968_ net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/rotation +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/f_234969_ net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/deltaRotation +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/f_234970_ net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/lastUpdateTick +FD: net/minecraft/client/renderer/item/ItemProperties/f_117820_ net/minecraft/client/renderer/item/ItemProperties/GENERIC_PROPERTIES +FD: net/minecraft/client/renderer/item/ItemProperties/f_117821_ net/minecraft/client/renderer/item/ItemProperties/DAMAGED +FD: net/minecraft/client/renderer/item/ItemProperties/f_117822_ net/minecraft/client/renderer/item/ItemProperties/DAMAGE +FD: net/minecraft/client/renderer/item/ItemProperties/f_117823_ net/minecraft/client/renderer/item/ItemProperties/PROPERTY_DAMAGED +FD: net/minecraft/client/renderer/item/ItemProperties/f_117824_ net/minecraft/client/renderer/item/ItemProperties/PROPERTY_DAMAGE +FD: net/minecraft/client/renderer/item/ItemProperties/f_117825_ net/minecraft/client/renderer/item/ItemProperties/PROPERTIES +FD: net/minecraft/client/renderer/item/ItemProperties/f_174568_ net/minecraft/client/renderer/item/ItemProperties/TAG_CUSTOM_MODEL_DATA +FD: net/minecraft/client/renderer/item/ItemProperties$1/f_117899_ net/minecraft/client/renderer/item/ItemProperties$1/rotation +FD: net/minecraft/client/renderer/item/ItemProperties$1/f_117900_ net/minecraft/client/renderer/item/ItemProperties$1/rota +FD: net/minecraft/client/renderer/item/ItemProperties$1/f_117901_ net/minecraft/client/renderer/item/ItemProperties$1/lastUpdateTick +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_117950_ net/minecraft/client/renderer/texture/AbstractTexture/id +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_117951_ net/minecraft/client/renderer/texture/AbstractTexture/blur +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_117952_ net/minecraft/client/renderer/texture/AbstractTexture/mipmap +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_174680_ net/minecraft/client/renderer/texture/AbstractTexture/NOT_ASSIGNED +FD: net/minecraft/client/renderer/texture/DynamicTexture/f_117976_ net/minecraft/client/renderer/texture/DynamicTexture/LOGGER +FD: net/minecraft/client/renderer/texture/DynamicTexture/f_117977_ net/minecraft/client/renderer/texture/DynamicTexture/pixels +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117993_ net/minecraft/client/renderer/texture/HttpTexture/LOGGER +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117994_ net/minecraft/client/renderer/texture/HttpTexture/file +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117995_ net/minecraft/client/renderer/texture/HttpTexture/urlString +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117996_ net/minecraft/client/renderer/texture/HttpTexture/processLegacySkin +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117997_ net/minecraft/client/renderer/texture/HttpTexture/onDownloaded +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117998_ net/minecraft/client/renderer/texture/HttpTexture/future +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117999_ net/minecraft/client/renderer/texture/HttpTexture/uploaded +FD: net/minecraft/client/renderer/texture/HttpTexture/f_181889_ net/minecraft/client/renderer/texture/HttpTexture/SKIN_WIDTH +FD: net/minecraft/client/renderer/texture/HttpTexture/f_181890_ net/minecraft/client/renderer/texture/HttpTexture/SKIN_HEIGHT +FD: net/minecraft/client/renderer/texture/HttpTexture/f_181891_ net/minecraft/client/renderer/texture/HttpTexture/LEGACY_SKIN_HEIGHT +FD: net/minecraft/client/renderer/texture/MipmapGenerator/f_118038_ net/minecraft/client/renderer/texture/MipmapGenerator/POW22 +FD: net/minecraft/client/renderer/texture/MipmapGenerator/f_174686_ net/minecraft/client/renderer/texture/MipmapGenerator/ALPHA_CUTOUT_CUTOFF +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_118059_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_118060_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/missingTexture +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_174688_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_IMAGE_WIDTH +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_174689_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_IMAGE_HEIGHT +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_174690_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_TEXTURE_NAME +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_244401_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/EMPTY_ANIMATION_META +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_118083_ net/minecraft/client/renderer/texture/OverlayTexture/NO_OVERLAY +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_118084_ net/minecraft/client/renderer/texture/OverlayTexture/texture +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174691_ net/minecraft/client/renderer/texture/OverlayTexture/NO_WHITE_U +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174692_ net/minecraft/client/renderer/texture/OverlayTexture/RED_OVERLAY_V +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174693_ net/minecraft/client/renderer/texture/OverlayTexture/WHITE_OVERLAY_V +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174694_ net/minecraft/client/renderer/texture/OverlayTexture/SIZE +FD: net/minecraft/client/renderer/texture/PreloadedTexture/f_118100_ net/minecraft/client/renderer/texture/PreloadedTexture/future +FD: net/minecraft/client/renderer/texture/SimpleTexture/f_118129_ net/minecraft/client/renderer/texture/SimpleTexture/location +FD: net/minecraft/client/renderer/texture/SimpleTexture/f_118130_ net/minecraft/client/renderer/texture/SimpleTexture/LOGGER +FD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/f_118146_ net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/metadata +FD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/f_118147_ net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/image +FD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/f_118148_ net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/exception +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243663_ net/minecraft/client/renderer/texture/SpriteContents/LOGGER +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243731_ net/minecraft/client/renderer/texture/SpriteContents/byMipLevel +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243877_ net/minecraft/client/renderer/texture/SpriteContents/name +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243904_ net/minecraft/client/renderer/texture/SpriteContents/originalImage +FD: net/minecraft/client/renderer/texture/SpriteContents/f_244302_ net/minecraft/client/renderer/texture/SpriteContents/width +FD: net/minecraft/client/renderer/texture/SpriteContents/f_244575_ net/minecraft/client/renderer/texture/SpriteContents/animatedTexture +FD: net/minecraft/client/renderer/texture/SpriteContents/f_244600_ net/minecraft/client/renderer/texture/SpriteContents/height +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_243714_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/frames +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_244229_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/frameRowSize +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_244317_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/interpolateFrames +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_244362_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/this$0 +FD: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/f_243751_ net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/index +FD: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/f_244553_ net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/time +FD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/f_244452_ net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/this$0 +FD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/f_244527_ net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/activeFrame +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_243791_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/this$0 +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_243921_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/animationInfo +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_244511_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/subFrame +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_244570_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/interpolationData +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_244631_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/frame +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_243676_ net/minecraft/client/renderer/texture/SpriteLoader/maxSupportedTextureSize +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_244357_ net/minecraft/client/renderer/texture/SpriteLoader/LOGGER +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_244500_ net/minecraft/client/renderer/texture/SpriteLoader/location +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_276068_ net/minecraft/client/renderer/texture/SpriteLoader/minHeight +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_276071_ net/minecraft/client/renderer/texture/SpriteLoader/minWidth +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243669_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/width +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243807_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/regions +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243912_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/missing +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244353_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/mipLevel +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244415_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/readyForUpload +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244632_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/height +FD: net/minecraft/client/renderer/texture/Stitcher/f_118161_ net/minecraft/client/renderer/texture/Stitcher/HOLDER_COMPARATOR +FD: net/minecraft/client/renderer/texture/Stitcher/f_118162_ net/minecraft/client/renderer/texture/Stitcher/mipLevel +FD: net/minecraft/client/renderer/texture/Stitcher/f_118163_ net/minecraft/client/renderer/texture/Stitcher/texturesToBeStitched +FD: net/minecraft/client/renderer/texture/Stitcher/f_118164_ net/minecraft/client/renderer/texture/Stitcher/storage +FD: net/minecraft/client/renderer/texture/Stitcher/f_118165_ net/minecraft/client/renderer/texture/Stitcher/storageX +FD: net/minecraft/client/renderer/texture/Stitcher/f_118166_ net/minecraft/client/renderer/texture/Stitcher/storageY +FD: net/minecraft/client/renderer/texture/Stitcher/f_118167_ net/minecraft/client/renderer/texture/Stitcher/maxWidth +FD: net/minecraft/client/renderer/texture/Stitcher/f_118168_ net/minecraft/client/renderer/texture/Stitcher/maxHeight +FD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118203_ net/minecraft/client/renderer/texture/Stitcher$Holder/width +FD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118204_ net/minecraft/client/renderer/texture/Stitcher$Holder/height +FD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_244486_ net/minecraft/client/renderer/texture/Stitcher$Holder/entry +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118209_ net/minecraft/client/renderer/texture/Stitcher$Region/originX +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118210_ net/minecraft/client/renderer/texture/Stitcher$Region/originY +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118211_ net/minecraft/client/renderer/texture/Stitcher$Region/width +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118212_ net/minecraft/client/renderer/texture/Stitcher$Region/height +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118213_ net/minecraft/client/renderer/texture/Stitcher$Region/subSlots +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118214_ net/minecraft/client/renderer/texture/Stitcher$Region/holder +FD: net/minecraft/client/renderer/texture/StitcherException/f_118254_ net/minecraft/client/renderer/texture/StitcherException/allSprites +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118259_ net/minecraft/client/renderer/texture/TextureAtlas/LOCATION_BLOCKS +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118260_ net/minecraft/client/renderer/texture/TextureAtlas/LOCATION_PARTICLES +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118261_ net/minecraft/client/renderer/texture/TextureAtlas/LOGGER +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118262_ net/minecraft/client/renderer/texture/TextureAtlas/animatedTextures +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118263_ net/minecraft/client/renderer/texture/TextureAtlas/sprites +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118264_ net/minecraft/client/renderer/texture/TextureAtlas/texturesByName +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118265_ net/minecraft/client/renderer/texture/TextureAtlas/location +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118266_ net/minecraft/client/renderer/texture/TextureAtlas/maxSupportedTextureSize +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_276067_ net/minecraft/client/renderer/texture/TextureAtlas/width +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_276070_ net/minecraft/client/renderer/texture/TextureAtlas/height +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_276072_ net/minecraft/client/renderer/texture/TextureAtlas/mipLevel +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118349_ net/minecraft/client/renderer/texture/TextureAtlasSprite/x +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118350_ net/minecraft/client/renderer/texture/TextureAtlasSprite/y +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118351_ net/minecraft/client/renderer/texture/TextureAtlasSprite/u0 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118352_ net/minecraft/client/renderer/texture/TextureAtlasSprite/u1 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118353_ net/minecraft/client/renderer/texture/TextureAtlasSprite/v0 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118354_ net/minecraft/client/renderer/texture/TextureAtlasSprite/v1 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_244141_ net/minecraft/client/renderer/texture/TextureAtlasSprite/atlasLocation +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_244165_ net/minecraft/client/renderer/texture/TextureAtlasSprite/contents +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/f_243752_ net/minecraft/client/renderer/texture/TextureAtlasSprite$1/val$ticker +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/f_243782_ net/minecraft/client/renderer/texture/TextureAtlasSprite$1/this$0 +FD: net/minecraft/client/renderer/texture/TextureManager/f_118466_ net/minecraft/client/renderer/texture/TextureManager/INTENTIONAL_MISSING_TEXTURE +FD: net/minecraft/client/renderer/texture/TextureManager/f_118467_ net/minecraft/client/renderer/texture/TextureManager/LOGGER +FD: net/minecraft/client/renderer/texture/TextureManager/f_118468_ net/minecraft/client/renderer/texture/TextureManager/byPath +FD: net/minecraft/client/renderer/texture/TextureManager/f_118469_ net/minecraft/client/renderer/texture/TextureManager/tickableTextures +FD: net/minecraft/client/renderer/texture/TextureManager/f_118470_ net/minecraft/client/renderer/texture/TextureManager/prefixRegister +FD: net/minecraft/client/renderer/texture/TextureManager/f_118471_ net/minecraft/client/renderer/texture/TextureManager/resourceManager +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/f_260445_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ATLAS_INFO_CONVERTER +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/f_260482_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/f_260697_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/sources +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/f_260443_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/val$sprites +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/f_260614_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/this$0 +FD: net/minecraft/client/renderer/texture/atlas/SpriteSource/f_266012_ net/minecraft/client/renderer/texture/atlas/SpriteSource/TEXTURE_ID_CONVERTER +FD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/f_260449_ net/minecraft/client/renderer/texture/atlas/SpriteSourceType/codec +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260457_ net/minecraft/client/renderer/texture/atlas/SpriteSources/SINGLE_FILE +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260490_ net/minecraft/client/renderer/texture/atlas/SpriteSources/DIRECTORY +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260500_ net/minecraft/client/renderer/texture/atlas/SpriteSources/CODEC +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260540_ net/minecraft/client/renderer/texture/atlas/SpriteSources/TYPE_CODEC +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260546_ net/minecraft/client/renderer/texture/atlas/SpriteSources/UNSTITCHER +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260548_ net/minecraft/client/renderer/texture/atlas/SpriteSources/TYPES +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260551_ net/minecraft/client/renderer/texture/atlas/SpriteSources/FILE_CODEC +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260627_ net/minecraft/client/renderer/texture/atlas/SpriteSources/FILTER +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_266099_ net/minecraft/client/renderer/texture/atlas/SpriteSources/PALETTED_PERMUTATIONS +FD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/f_260442_ net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/sourcePath +FD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/f_260464_ net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/idPrefix +FD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/f_260655_ net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_265874_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/id +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_265889_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/resource +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_266070_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/image +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_266109_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/referenceCount +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_265853_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_265884_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/paletteKey +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_265956_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/textures +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_266003_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/permutations +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_266028_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_265892_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/permutationLocation +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266004_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/baseImage +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266059_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/palette +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260456_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/resourceId +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260566_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260609_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260731_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/spriteId +FD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/f_260515_ net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/f_260543_ net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/filter +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260484_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260518_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/xDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260559_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/resource +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260565_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/regions +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260650_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/yDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260712_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260480_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/y +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260527_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260547_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/x +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260568_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/sprite +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260610_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/height +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260701_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/width +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260587_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/image +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260604_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/xDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260617_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/yDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260703_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/region +FD: net/minecraft/client/resources/ClientPackSource/f_243857_ net/minecraft/client/resources/ClientPackSource/VANILLA_NAME +FD: net/minecraft/client/resources/ClientPackSource/f_244267_ net/minecraft/client/resources/ClientPackSource/externalAssetDir +FD: net/minecraft/client/resources/ClientPackSource/f_244290_ net/minecraft/client/resources/ClientPackSource/PACKS_DIR +FD: net/minecraft/client/resources/ClientPackSource/f_244333_ net/minecraft/client/resources/ClientPackSource/BUILT_IN_METADATA +FD: net/minecraft/client/resources/ClientPackSource/f_244347_ net/minecraft/client/resources/ClientPackSource/VERSION_METADATA_SECTION +FD: net/minecraft/client/resources/ClientPackSource/f_244581_ net/minecraft/client/resources/ClientPackSource/SPECIAL_PACK_NAMES +FD: net/minecraft/client/resources/ClientPackSource/f_273850_ net/minecraft/client/resources/ClientPackSource/HIGH_CONTRAST_PACK +FD: net/minecraft/client/resources/DefaultPlayerSkin/f_257041_ net/minecraft/client/resources/DefaultPlayerSkin/DEFAULT_SKINS +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/$VALUES net/minecraft/client/resources/DefaultPlayerSkin$ModelType/$VALUES +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/SLIM net/minecraft/client/resources/DefaultPlayerSkin$ModelType/SLIM +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/WIDE net/minecraft/client/resources/DefaultPlayerSkin$ModelType/WIDE +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/f_256945_ net/minecraft/client/resources/DefaultPlayerSkin$ModelType/id +FD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256814_ net/minecraft/client/resources/DefaultPlayerSkin$SkinType/texture +FD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256901_ net/minecraft/client/resources/DefaultPlayerSkin$SkinType/model +FD: net/minecraft/client/resources/DownloadedPackSource/f_243667_ net/minecraft/client/resources/DownloadedPackSource/LOGGER +FD: net/minecraft/client/resources/DownloadedPackSource/f_243680_ net/minecraft/client/resources/DownloadedPackSource/currentDownload +FD: net/minecraft/client/resources/DownloadedPackSource/f_243735_ net/minecraft/client/resources/DownloadedPackSource/MAX_PACK_SIZE_BYTES +FD: net/minecraft/client/resources/DownloadedPackSource/f_243792_ net/minecraft/client/resources/DownloadedPackSource/SERVER_NAME +FD: net/minecraft/client/resources/DownloadedPackSource/f_244023_ net/minecraft/client/resources/DownloadedPackSource/APPLYING_PACK_TEXT +FD: net/minecraft/client/resources/DownloadedPackSource/f_244074_ net/minecraft/client/resources/DownloadedPackSource/serverPackDir +FD: net/minecraft/client/resources/DownloadedPackSource/f_244082_ net/minecraft/client/resources/DownloadedPackSource/serverPack +FD: net/minecraft/client/resources/DownloadedPackSource/f_244475_ net/minecraft/client/resources/DownloadedPackSource/SERVER_ID +FD: net/minecraft/client/resources/DownloadedPackSource/f_244551_ net/minecraft/client/resources/DownloadedPackSource/SHA1 +FD: net/minecraft/client/resources/DownloadedPackSource/f_244572_ net/minecraft/client/resources/DownloadedPackSource/downloadLock +FD: net/minecraft/client/resources/DownloadedPackSource/f_244627_ net/minecraft/client/resources/DownloadedPackSource/MAX_KEPT_PACKS +FD: net/minecraft/client/resources/FoliageColorReloadListener/f_118656_ net/minecraft/client/resources/FoliageColorReloadListener/LOCATION +FD: net/minecraft/client/resources/GrassColorReloadListener/f_118673_ net/minecraft/client/resources/GrassColorReloadListener/LOCATION +FD: net/minecraft/client/resources/IndexedAssetSource/f_244445_ net/minecraft/client/resources/IndexedAssetSource/LOGGER +FD: net/minecraft/client/resources/IndexedAssetSource/f_244611_ net/minecraft/client/resources/IndexedAssetSource/PATH_SPLITTER +FD: net/minecraft/client/resources/PaintingTextureManager/f_118799_ net/minecraft/client/resources/PaintingTextureManager/BACK_SPRITE_LOCATION +FD: net/minecraft/client/resources/SkinManager/f_118807_ net/minecraft/client/resources/SkinManager/textureManager +FD: net/minecraft/client/resources/SkinManager/f_118808_ net/minecraft/client/resources/SkinManager/skinsDirectory +FD: net/minecraft/client/resources/SkinManager/f_118809_ net/minecraft/client/resources/SkinManager/sessionService +FD: net/minecraft/client/resources/SkinManager/f_118810_ net/minecraft/client/resources/SkinManager/insecureSkinCache +FD: net/minecraft/client/resources/SkinManager/f_174841_ net/minecraft/client/resources/SkinManager/PROPERTY_TEXTURES +FD: net/minecraft/client/resources/SkinManager$1/f_118847_ net/minecraft/client/resources/SkinManager$1/val$sessionService +FD: net/minecraft/client/resources/SkinManager$1/f_118848_ net/minecraft/client/resources/SkinManager$1/this$0 +FD: net/minecraft/client/resources/SkinManager$2/f_242484_ net/minecraft/client/resources/SkinManager$2/$SwitchMap$com$mojang$authlib$minecraft$MinecraftProfileTexture$Type +FD: net/minecraft/client/resources/SplashManager/f_118860_ net/minecraft/client/resources/SplashManager/SPLASHES_LOCATION +FD: net/minecraft/client/resources/SplashManager/f_118861_ net/minecraft/client/resources/SplashManager/RANDOM +FD: net/minecraft/client/resources/SplashManager/f_118862_ net/minecraft/client/resources/SplashManager/splashes +FD: net/minecraft/client/resources/SplashManager/f_118863_ net/minecraft/client/resources/SplashManager/user +FD: net/minecraft/client/resources/TextureAtlasHolder/f_118884_ net/minecraft/client/resources/TextureAtlasHolder/textureAtlas +FD: net/minecraft/client/resources/TextureAtlasHolder/f_260648_ net/minecraft/client/resources/TextureAtlasHolder/atlasInfoLocation +FD: net/minecraft/client/resources/language/ClientLanguage/f_118909_ net/minecraft/client/resources/language/ClientLanguage/LOGGER +FD: net/minecraft/client/resources/language/ClientLanguage/f_118910_ net/minecraft/client/resources/language/ClientLanguage/storage +FD: net/minecraft/client/resources/language/ClientLanguage/f_118911_ net/minecraft/client/resources/language/ClientLanguage/defaultRightToLeft +FD: net/minecraft/client/resources/language/I18n/f_118934_ net/minecraft/client/resources/language/I18n/language +FD: net/minecraft/client/resources/language/LanguageInfo/f_118944_ net/minecraft/client/resources/language/LanguageInfo/region +FD: net/minecraft/client/resources/language/LanguageInfo/f_118945_ net/minecraft/client/resources/language/LanguageInfo/name +FD: net/minecraft/client/resources/language/LanguageInfo/f_118946_ net/minecraft/client/resources/language/LanguageInfo/bidirectional +FD: net/minecraft/client/resources/language/LanguageInfo/f_263742_ net/minecraft/client/resources/language/LanguageInfo/CODEC +FD: net/minecraft/client/resources/language/LanguageManager/f_118964_ net/minecraft/client/resources/language/LanguageManager/LOGGER +FD: net/minecraft/client/resources/language/LanguageManager/f_118965_ net/minecraft/client/resources/language/LanguageManager/DEFAULT_LANGUAGE +FD: net/minecraft/client/resources/language/LanguageManager/f_118966_ net/minecraft/client/resources/language/LanguageManager/languages +FD: net/minecraft/client/resources/language/LanguageManager/f_118967_ net/minecraft/client/resources/language/LanguageManager/currentCode +FD: net/minecraft/client/resources/language/LanguageManager/f_174854_ net/minecraft/client/resources/language/LanguageManager/DEFAULT_LANGUAGE_CODE +FD: net/minecraft/client/resources/metadata/animation/AnimationFrame/f_119001_ net/minecraft/client/resources/metadata/animation/AnimationFrame/index +FD: net/minecraft/client/resources/metadata/animation/AnimationFrame/f_119002_ net/minecraft/client/resources/metadata/animation/AnimationFrame/time +FD: net/minecraft/client/resources/metadata/animation/AnimationFrame/f_174855_ net/minecraft/client/resources/metadata/animation/AnimationFrame/UNKNOWN_FRAME_TIME +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119011_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/SERIALIZER +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119012_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/EMPTY +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119013_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/frames +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119014_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/frameWidth +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119015_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/frameHeight +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119016_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/defaultFrameTime +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119017_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/interpolatedFrames +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_174858_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/SECTION_NAME +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_174859_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/DEFAULT_FRAME_TIME +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_174860_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/UNKNOWN_SIZE +FD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244129_ net/minecraft/client/resources/metadata/animation/FrameSize/width +FD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244503_ net/minecraft/client/resources/metadata/animation/FrameSize/height +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/f_119065_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/SERIALIZER +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/f_119066_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/hat +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/f_174866_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/SECTION_NAME +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/$VALUES net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/$VALUES +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/FULL net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/FULL +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/NONE net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/NONE +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/PARTIAL net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/PARTIAL +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/f_119074_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/BY_NAME +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/f_119075_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/name +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_119097_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/languages +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_263724_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/TYPE +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_263762_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/CODEC +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_263769_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/LANGUAGE_CODE_CODEC +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_119108_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/SERIALIZER +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_119109_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/blur +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_119110_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/clamp +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_174870_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/DEFAULT_BLUR +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_174871_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/DEFAULT_CLAMP +FD: net/minecraft/client/resources/model/AtlasSet/f_244518_ net/minecraft/client/resources/model/AtlasSet/atlases +FD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_244361_ net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlas +FD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_260723_ net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlasInfoLocation +FD: net/minecraft/client/resources/model/AtlasSet$StitchResult/f_244080_ net/minecraft/client/resources/model/AtlasSet$StitchResult/atlas +FD: net/minecraft/client/resources/model/AtlasSet$StitchResult/f_244211_ net/minecraft/client/resources/model/AtlasSet$StitchResult/preparations +FD: net/minecraft/client/resources/model/BlockModelRotation/$VALUES net/minecraft/client/resources/model/BlockModelRotation/$VALUES +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y0 net/minecraft/client/resources/model/BlockModelRotation/X0_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y180 net/minecraft/client/resources/model/BlockModelRotation/X0_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y270 net/minecraft/client/resources/model/BlockModelRotation/X0_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y90 net/minecraft/client/resources/model/BlockModelRotation/X0_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y0 net/minecraft/client/resources/model/BlockModelRotation/X180_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y180 net/minecraft/client/resources/model/BlockModelRotation/X180_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y270 net/minecraft/client/resources/model/BlockModelRotation/X180_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y90 net/minecraft/client/resources/model/BlockModelRotation/X180_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y0 net/minecraft/client/resources/model/BlockModelRotation/X270_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y180 net/minecraft/client/resources/model/BlockModelRotation/X270_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y270 net/minecraft/client/resources/model/BlockModelRotation/X270_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y90 net/minecraft/client/resources/model/BlockModelRotation/X270_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y0 net/minecraft/client/resources/model/BlockModelRotation/X90_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y180 net/minecraft/client/resources/model/BlockModelRotation/X90_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y270 net/minecraft/client/resources/model/BlockModelRotation/X90_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y90 net/minecraft/client/resources/model/BlockModelRotation/X90_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119142_ net/minecraft/client/resources/model/BlockModelRotation/BY_INDEX +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119143_ net/minecraft/client/resources/model/BlockModelRotation/transformation +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119144_ net/minecraft/client/resources/model/BlockModelRotation/actualRotation +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119145_ net/minecraft/client/resources/model/BlockModelRotation/index +FD: net/minecraft/client/resources/model/BlockModelRotation/f_174872_ net/minecraft/client/resources/model/BlockModelRotation/DEGREES +FD: net/minecraft/client/resources/model/BuiltInModel/f_119167_ net/minecraft/client/resources/model/BuiltInModel/itemTransforms +FD: net/minecraft/client/resources/model/BuiltInModel/f_119168_ net/minecraft/client/resources/model/BuiltInModel/overrides +FD: net/minecraft/client/resources/model/BuiltInModel/f_119169_ net/minecraft/client/resources/model/BuiltInModel/particleTexture +FD: net/minecraft/client/resources/model/BuiltInModel/f_119170_ net/minecraft/client/resources/model/BuiltInModel/usesBlockLight +FD: net/minecraft/client/resources/model/Material/f_119187_ net/minecraft/client/resources/model/Material/atlasLocation +FD: net/minecraft/client/resources/model/Material/f_119188_ net/minecraft/client/resources/model/Material/texture +FD: net/minecraft/client/resources/model/Material/f_119189_ net/minecraft/client/resources/model/Material/renderType +FD: net/minecraft/client/resources/model/Material/f_244523_ net/minecraft/client/resources/model/Material/COMPARATOR +FD: net/minecraft/client/resources/model/ModelBakery/f_119209_ net/minecraft/client/resources/model/ModelBakery/blockColors +FD: net/minecraft/client/resources/model/ModelBakery/f_119210_ net/minecraft/client/resources/model/ModelBakery/loadingStack +FD: net/minecraft/client/resources/model/ModelBakery/f_119211_ net/minecraft/client/resources/model/ModelBakery/context +FD: net/minecraft/client/resources/model/ModelBakery/f_119212_ net/minecraft/client/resources/model/ModelBakery/unbakedCache +FD: net/minecraft/client/resources/model/ModelBakery/f_119213_ net/minecraft/client/resources/model/ModelBakery/bakedCache +FD: net/minecraft/client/resources/model/ModelBakery/f_119214_ net/minecraft/client/resources/model/ModelBakery/topLevelModels +FD: net/minecraft/client/resources/model/ModelBakery/f_119215_ net/minecraft/client/resources/model/ModelBakery/bakedTopLevelModels +FD: net/minecraft/client/resources/model/ModelBakery/f_119217_ net/minecraft/client/resources/model/ModelBakery/nextModelGroup +FD: net/minecraft/client/resources/model/ModelBakery/f_119218_ net/minecraft/client/resources/model/ModelBakery/modelGroups +FD: net/minecraft/client/resources/model/ModelBakery/f_119219_ net/minecraft/client/resources/model/ModelBakery/FIRE_0 +FD: net/minecraft/client/resources/model/ModelBakery/f_119220_ net/minecraft/client/resources/model/ModelBakery/FIRE_1 +FD: net/minecraft/client/resources/model/ModelBakery/f_119221_ net/minecraft/client/resources/model/ModelBakery/LAVA_FLOW +FD: net/minecraft/client/resources/model/ModelBakery/f_119222_ net/minecraft/client/resources/model/ModelBakery/WATER_FLOW +FD: net/minecraft/client/resources/model/ModelBakery/f_119223_ net/minecraft/client/resources/model/ModelBakery/WATER_OVERLAY +FD: net/minecraft/client/resources/model/ModelBakery/f_119224_ net/minecraft/client/resources/model/ModelBakery/BANNER_BASE +FD: net/minecraft/client/resources/model/ModelBakery/f_119225_ net/minecraft/client/resources/model/ModelBakery/SHIELD_BASE +FD: net/minecraft/client/resources/model/ModelBakery/f_119226_ net/minecraft/client/resources/model/ModelBakery/NO_PATTERN_SHIELD +FD: net/minecraft/client/resources/model/ModelBakery/f_119227_ net/minecraft/client/resources/model/ModelBakery/DESTROY_STAGES +FD: net/minecraft/client/resources/model/ModelBakery/f_119228_ net/minecraft/client/resources/model/ModelBakery/BREAKING_LOCATIONS +FD: net/minecraft/client/resources/model/ModelBakery/f_119229_ net/minecraft/client/resources/model/ModelBakery/DESTROY_TYPES +FD: net/minecraft/client/resources/model/ModelBakery/f_119230_ net/minecraft/client/resources/model/ModelBakery/MISSING_MODEL_LOCATION +FD: net/minecraft/client/resources/model/ModelBakery/f_119231_ net/minecraft/client/resources/model/ModelBakery/MISSING_MODEL_MESH +FD: net/minecraft/client/resources/model/ModelBakery/f_119232_ net/minecraft/client/resources/model/ModelBakery/GENERATION_MARKER +FD: net/minecraft/client/resources/model/ModelBakery/f_119233_ net/minecraft/client/resources/model/ModelBakery/BLOCK_ENTITY_MARKER +FD: net/minecraft/client/resources/model/ModelBakery/f_119235_ net/minecraft/client/resources/model/ModelBakery/LOGGER +FD: net/minecraft/client/resources/model/ModelBakery/f_119237_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_MODELS +FD: net/minecraft/client/resources/model/ModelBakery/f_119238_ net/minecraft/client/resources/model/ModelBakery/COMMA_SPLITTER +FD: net/minecraft/client/resources/model/ModelBakery/f_119239_ net/minecraft/client/resources/model/ModelBakery/EQUAL_SPLITTER +FD: net/minecraft/client/resources/model/ModelBakery/f_119240_ net/minecraft/client/resources/model/ModelBakery/ITEM_FRAME_FAKE_DEFINITION +FD: net/minecraft/client/resources/model/ModelBakery/f_119241_ net/minecraft/client/resources/model/ModelBakery/ITEM_MODEL_GENERATOR +FD: net/minecraft/client/resources/model/ModelBakery/f_119242_ net/minecraft/client/resources/model/ModelBakery/STATIC_DEFINITIONS +FD: net/minecraft/client/resources/model/ModelBakery/f_174875_ net/minecraft/client/resources/model/ModelBakery/DESTROY_STAGE_COUNT +FD: net/minecraft/client/resources/model/ModelBakery/f_174876_ net/minecraft/client/resources/model/ModelBakery/SINGLETON_MODEL_GROUP +FD: net/minecraft/client/resources/model/ModelBakery/f_174877_ net/minecraft/client/resources/model/ModelBakery/INVISIBLE_MODEL_GROUP +FD: net/minecraft/client/resources/model/ModelBakery/f_174878_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_SLASH +FD: net/minecraft/client/resources/model/ModelBakery/f_174879_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_SLASH_GENERATED +FD: net/minecraft/client/resources/model/ModelBakery/f_174880_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_BLOCK_ENTITY +FD: net/minecraft/client/resources/model/ModelBakery/f_174881_ net/minecraft/client/resources/model/ModelBakery/MISSING_MODEL_NAME +FD: net/minecraft/client/resources/model/ModelBakery/f_243866_ net/minecraft/client/resources/model/ModelBakery/blockStateResources +FD: net/minecraft/client/resources/model/ModelBakery/f_244132_ net/minecraft/client/resources/model/ModelBakery/modelResources +FD: net/minecraft/client/resources/model/ModelBakery/f_244202_ net/minecraft/client/resources/model/ModelBakery/BLOCKSTATE_LISTER +FD: net/minecraft/client/resources/model/ModelBakery/f_244378_ net/minecraft/client/resources/model/ModelBakery/MODEL_LISTER +FD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243798_ net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/transformation +FD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243915_ net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/isUvLocked +FD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243934_ net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/id +FD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_243774_ net/minecraft/client/resources/model/ModelBakery$LoadedJson/source +FD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_244212_ net/minecraft/client/resources/model/ModelBakery$LoadedJson/data +FD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/f_243920_ net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/modelTextureGetter +FD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/f_243927_ net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/this$0 +FD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/f_119374_ net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/models +FD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/f_119375_ net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/coloringValues +FD: net/minecraft/client/resources/model/ModelManager/f_119397_ net/minecraft/client/resources/model/ModelManager/bakedRegistry +FD: net/minecraft/client/resources/model/ModelManager/f_119398_ net/minecraft/client/resources/model/ModelManager/atlases +FD: net/minecraft/client/resources/model/ModelManager/f_119399_ net/minecraft/client/resources/model/ModelManager/blockModelShaper +FD: net/minecraft/client/resources/model/ModelManager/f_119401_ net/minecraft/client/resources/model/ModelManager/blockColors +FD: net/minecraft/client/resources/model/ModelManager/f_119402_ net/minecraft/client/resources/model/ModelManager/maxMipmapLevels +FD: net/minecraft/client/resources/model/ModelManager/f_119403_ net/minecraft/client/resources/model/ModelManager/missingModel +FD: net/minecraft/client/resources/model/ModelManager/f_119404_ net/minecraft/client/resources/model/ModelManager/modelGroups +FD: net/minecraft/client/resources/model/ModelManager/f_243848_ net/minecraft/client/resources/model/ModelManager/LOGGER +FD: net/minecraft/client/resources/model/ModelManager/f_244614_ net/minecraft/client/resources/model/ModelManager/VANILLA_ATLASES +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244037_ net/minecraft/client/resources/model/ModelManager$ReloadState/readyForUpload +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244177_ net/minecraft/client/resources/model/ModelManager$ReloadState/atlasPreparations +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244394_ net/minecraft/client/resources/model/ModelManager$ReloadState/modelBakery +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244561_ net/minecraft/client/resources/model/ModelManager$ReloadState/modelCache +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244619_ net/minecraft/client/resources/model/ModelManager$ReloadState/missingModel +FD: net/minecraft/client/resources/model/ModelResourceLocation/f_119435_ net/minecraft/client/resources/model/ModelResourceLocation/variant +FD: net/minecraft/client/resources/model/ModelResourceLocation/f_174906_ net/minecraft/client/resources/model/ModelResourceLocation/VARIANT_SEPARATOR +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119453_ net/minecraft/client/resources/model/MultiPartBakedModel/hasAmbientOcclusion +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119454_ net/minecraft/client/resources/model/MultiPartBakedModel/isGui3d +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119455_ net/minecraft/client/resources/model/MultiPartBakedModel/usesBlockLight +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119456_ net/minecraft/client/resources/model/MultiPartBakedModel/particleIcon +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119457_ net/minecraft/client/resources/model/MultiPartBakedModel/transforms +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119458_ net/minecraft/client/resources/model/MultiPartBakedModel/overrides +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119459_ net/minecraft/client/resources/model/MultiPartBakedModel/selectors +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119460_ net/minecraft/client/resources/model/MultiPartBakedModel/selectorCache +FD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/f_119474_ net/minecraft/client/resources/model/MultiPartBakedModel$Builder/selectors +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119480_ net/minecraft/client/resources/model/SimpleBakedModel/unculledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119481_ net/minecraft/client/resources/model/SimpleBakedModel/culledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119482_ net/minecraft/client/resources/model/SimpleBakedModel/hasAmbientOcclusion +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119483_ net/minecraft/client/resources/model/SimpleBakedModel/isGui3d +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119484_ net/minecraft/client/resources/model/SimpleBakedModel/usesBlockLight +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119485_ net/minecraft/client/resources/model/SimpleBakedModel/particleIcon +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119486_ net/minecraft/client/resources/model/SimpleBakedModel/transforms +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119487_ net/minecraft/client/resources/model/SimpleBakedModel/overrides +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119508_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/unculledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119509_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/culledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119510_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/overrides +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119511_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/hasAmbientOcclusion +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119512_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/particleIcon +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119513_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/usesBlockLight +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119514_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/isGui3d +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119515_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/transforms +FD: net/minecraft/client/resources/model/WeightedBakedModel/f_119540_ net/minecraft/client/resources/model/WeightedBakedModel/totalWeight +FD: net/minecraft/client/resources/model/WeightedBakedModel/f_119541_ net/minecraft/client/resources/model/WeightedBakedModel/list +FD: net/minecraft/client/resources/model/WeightedBakedModel/f_119542_ net/minecraft/client/resources/model/WeightedBakedModel/wrapped +FD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/f_119556_ net/minecraft/client/resources/model/WeightedBakedModel$Builder/list +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119570_ net/minecraft/client/resources/sounds/AbstractSoundInstance/sound +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119571_ net/minecraft/client/resources/sounds/AbstractSoundInstance/source +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119572_ net/minecraft/client/resources/sounds/AbstractSoundInstance/location +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119573_ net/minecraft/client/resources/sounds/AbstractSoundInstance/volume +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119574_ net/minecraft/client/resources/sounds/AbstractSoundInstance/pitch +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119575_ net/minecraft/client/resources/sounds/AbstractSoundInstance/x +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119576_ net/minecraft/client/resources/sounds/AbstractSoundInstance/y +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119577_ net/minecraft/client/resources/sounds/AbstractSoundInstance/z +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119578_ net/minecraft/client/resources/sounds/AbstractSoundInstance/looping +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119579_ net/minecraft/client/resources/sounds/AbstractSoundInstance/delay +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119580_ net/minecraft/client/resources/sounds/AbstractSoundInstance/attenuation +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119582_ net/minecraft/client/resources/sounds/AbstractSoundInstance/relative +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_235066_ net/minecraft/client/resources/sounds/AbstractSoundInstance/random +FD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/f_119604_ net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/stopped +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_119618_ net/minecraft/client/resources/sounds/BeeSoundInstance/bee +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_119619_ net/minecraft/client/resources/sounds/BeeSoundInstance/hasSwitched +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_174917_ net/minecraft/client/resources/sounds/BeeSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_174918_ net/minecraft/client/resources/sounds/BeeSoundInstance/VOLUME_MAX +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_174919_ net/minecraft/client/resources/sounds/BeeSoundInstance/PITCH_MIN +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119629_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/player +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119630_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/soundManager +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119631_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/biomeManager +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119632_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/random +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119633_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/loopSounds +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119634_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/moodSettings +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119635_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/additionsSettings +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119636_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/moodiness +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119637_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/previousBiome +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_174920_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/LOOP_SOUND_CROSS_FADE_TIME +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_174921_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/SKY_MOOD_RECOVERY_RATE +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/f_119655_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fadeDirection +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/f_119656_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fade +FD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/f_119662_ net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/player +FD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/f_119663_ net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/wasInBubbleColumn +FD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/f_119664_ net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/firstTick +FD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/f_119670_ net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/player +FD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/f_119671_ net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/time +FD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/f_174926_ net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/DELAY +FD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/f_119675_ net/minecraft/client/resources/sounds/EntityBoundSoundInstance/entity +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_119688_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/guardian +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174927_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174928_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/VOLUME_SCALE +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174929_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/PITCH_MIN +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174930_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/PITCH_SCALE +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_119693_ net/minecraft/client/resources/sounds/MinecartSoundInstance/minecart +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_119694_ net/minecraft/client/resources/sounds/MinecartSoundInstance/pitch +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174931_ net/minecraft/client/resources/sounds/MinecartSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174932_ net/minecraft/client/resources/sounds/MinecartSoundInstance/VOLUME_MAX +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174933_ net/minecraft/client/resources/sounds/MinecartSoundInstance/PITCH_MIN +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174934_ net/minecraft/client/resources/sounds/MinecartSoundInstance/PITCH_MAX +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174935_ net/minecraft/client/resources/sounds/MinecartSoundInstance/PITCH_DELTA +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_119700_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/player +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_119701_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/minecart +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_174936_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_174937_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/VOLUME_MAX +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_174938_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/underwaterSound +FD: net/minecraft/client/resources/sounds/SnifferSoundInstance/f_271261_ net/minecraft/client/resources/sounds/SnifferSoundInstance/PITCH +FD: net/minecraft/client/resources/sounds/SnifferSoundInstance/f_271268_ net/minecraft/client/resources/sounds/SnifferSoundInstance/VOLUME +FD: net/minecraft/client/resources/sounds/SnifferSoundInstance/f_271453_ net/minecraft/client/resources/sounds/SnifferSoundInstance/sniffer +FD: net/minecraft/client/resources/sounds/Sound/f_119770_ net/minecraft/client/resources/sounds/Sound/location +FD: net/minecraft/client/resources/sounds/Sound/f_119771_ net/minecraft/client/resources/sounds/Sound/volume +FD: net/minecraft/client/resources/sounds/Sound/f_119772_ net/minecraft/client/resources/sounds/Sound/pitch +FD: net/minecraft/client/resources/sounds/Sound/f_119773_ net/minecraft/client/resources/sounds/Sound/weight +FD: net/minecraft/client/resources/sounds/Sound/f_119774_ net/minecraft/client/resources/sounds/Sound/type +FD: net/minecraft/client/resources/sounds/Sound/f_119775_ net/minecraft/client/resources/sounds/Sound/stream +FD: net/minecraft/client/resources/sounds/Sound/f_119776_ net/minecraft/client/resources/sounds/Sound/preload +FD: net/minecraft/client/resources/sounds/Sound/f_119777_ net/minecraft/client/resources/sounds/Sound/attenuationDistance +FD: net/minecraft/client/resources/sounds/Sound/f_244492_ net/minecraft/client/resources/sounds/Sound/SOUND_LISTER +FD: net/minecraft/client/resources/sounds/Sound$Type/$VALUES net/minecraft/client/resources/sounds/Sound$Type/$VALUES +FD: net/minecraft/client/resources/sounds/Sound$Type/FILE net/minecraft/client/resources/sounds/Sound$Type/FILE +FD: net/minecraft/client/resources/sounds/Sound$Type/SOUND_EVENT net/minecraft/client/resources/sounds/Sound$Type/SOUND_EVENT +FD: net/minecraft/client/resources/sounds/Sound$Type/f_119803_ net/minecraft/client/resources/sounds/Sound$Type/name +FD: net/minecraft/client/resources/sounds/SoundEventRegistration/f_119815_ net/minecraft/client/resources/sounds/SoundEventRegistration/sounds +FD: net/minecraft/client/resources/sounds/SoundEventRegistration/f_119816_ net/minecraft/client/resources/sounds/SoundEventRegistration/replace +FD: net/minecraft/client/resources/sounds/SoundEventRegistration/f_119817_ net/minecraft/client/resources/sounds/SoundEventRegistration/subtitle +FD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/f_235148_ net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/DEFAULT_FLOAT +FD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/$VALUES net/minecraft/client/resources/sounds/SoundInstance$Attenuation/$VALUES +FD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/LINEAR net/minecraft/client/resources/sounds/SoundInstance$Attenuation/LINEAR +FD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/NONE net/minecraft/client/resources/sounds/SoundInstance$Attenuation/NONE +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_119852_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/player +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_119853_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/soundManager +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_119854_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/tickDelay +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174957_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/CHANCE_PER_TICK +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174958_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/RARE_CHANCE_PER_TICK +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174959_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/ULTRA_RARE_CHANCE_PER_TICK +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174960_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/MINIMUM_TICK_DELAY +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/f_119859_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/player +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/f_119864_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/player +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/f_119865_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/fade +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/f_174962_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/FADE_DURATION +FD: net/minecraft/client/searchtree/FullTextSearchTree/f_235151_ net/minecraft/client/searchtree/FullTextSearchTree/contents +FD: net/minecraft/client/searchtree/FullTextSearchTree/f_235152_ net/minecraft/client/searchtree/FullTextSearchTree/filler +FD: net/minecraft/client/searchtree/FullTextSearchTree/f_235153_ net/minecraft/client/searchtree/FullTextSearchTree/plainTextSearchTree +FD: net/minecraft/client/searchtree/IdSearchTree/f_235164_ net/minecraft/client/searchtree/IdSearchTree/additionOrder +FD: net/minecraft/client/searchtree/IdSearchTree/f_235165_ net/minecraft/client/searchtree/IdSearchTree/resourceLocationSearchTree +FD: net/minecraft/client/searchtree/IntersectionIterator/f_235174_ net/minecraft/client/searchtree/IntersectionIterator/firstIterator +FD: net/minecraft/client/searchtree/IntersectionIterator/f_235175_ net/minecraft/client/searchtree/IntersectionIterator/secondIterator +FD: net/minecraft/client/searchtree/IntersectionIterator/f_235176_ net/minecraft/client/searchtree/IntersectionIterator/comparator +FD: net/minecraft/client/searchtree/MergingUniqueIterator/f_235182_ net/minecraft/client/searchtree/MergingUniqueIterator/firstIterator +FD: net/minecraft/client/searchtree/MergingUniqueIterator/f_235183_ net/minecraft/client/searchtree/MergingUniqueIterator/secondIterator +FD: net/minecraft/client/searchtree/MergingUniqueIterator/f_235184_ net/minecraft/client/searchtree/MergingUniqueIterator/comparator +FD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/f_235221_ net/minecraft/client/searchtree/ResourceLocationSearchTree$2/val$namespaceTree +FD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/f_235222_ net/minecraft/client/searchtree/ResourceLocationSearchTree$2/val$pathTree +FD: net/minecraft/client/searchtree/SearchRegistry/f_119941_ net/minecraft/client/searchtree/SearchRegistry/CREATIVE_NAMES +FD: net/minecraft/client/searchtree/SearchRegistry/f_119942_ net/minecraft/client/searchtree/SearchRegistry/CREATIVE_TAGS +FD: net/minecraft/client/searchtree/SearchRegistry/f_119943_ net/minecraft/client/searchtree/SearchRegistry/RECIPE_COLLECTIONS +FD: net/minecraft/client/searchtree/SearchRegistry/f_119944_ net/minecraft/client/searchtree/SearchRegistry/searchTrees +FD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/f_235240_ net/minecraft/client/searchtree/SearchRegistry$TreeEntry/factory +FD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/f_235241_ net/minecraft/client/searchtree/SearchRegistry$TreeEntry/tree +FD: net/minecraft/client/searchtree/SuffixArray/f_119956_ net/minecraft/client/searchtree/SuffixArray/list +FD: net/minecraft/client/searchtree/SuffixArray/f_119957_ net/minecraft/client/searchtree/SuffixArray/DEBUG_COMPARISONS +FD: net/minecraft/client/searchtree/SuffixArray/f_119958_ net/minecraft/client/searchtree/SuffixArray/DEBUG_ARRAY +FD: net/minecraft/client/searchtree/SuffixArray/f_119959_ net/minecraft/client/searchtree/SuffixArray/LOGGER +FD: net/minecraft/client/searchtree/SuffixArray/f_119960_ net/minecraft/client/searchtree/SuffixArray/chars +FD: net/minecraft/client/searchtree/SuffixArray/f_119961_ net/minecraft/client/searchtree/SuffixArray/wordStarts +FD: net/minecraft/client/searchtree/SuffixArray/f_119962_ net/minecraft/client/searchtree/SuffixArray/suffixToT +FD: net/minecraft/client/searchtree/SuffixArray/f_119963_ net/minecraft/client/searchtree/SuffixArray/offsets +FD: net/minecraft/client/searchtree/SuffixArray/f_119964_ net/minecraft/client/searchtree/SuffixArray/maxStringLength +FD: net/minecraft/client/searchtree/SuffixArray/f_174963_ net/minecraft/client/searchtree/SuffixArray/END_OF_TEXT_MARKER +FD: net/minecraft/client/searchtree/SuffixArray/f_174964_ net/minecraft/client/searchtree/SuffixArray/END_OF_DATA +FD: net/minecraft/client/server/IntegratedPlayerList/f_120001_ net/minecraft/client/server/IntegratedPlayerList/playerData +FD: net/minecraft/client/server/IntegratedServer/f_120014_ net/minecraft/client/server/IntegratedServer/LOGGER +FD: net/minecraft/client/server/IntegratedServer/f_120015_ net/minecraft/client/server/IntegratedServer/minecraft +FD: net/minecraft/client/server/IntegratedServer/f_120016_ net/minecraft/client/server/IntegratedServer/paused +FD: net/minecraft/client/server/IntegratedServer/f_120017_ net/minecraft/client/server/IntegratedServer/publishedPort +FD: net/minecraft/client/server/IntegratedServer/f_120018_ net/minecraft/client/server/IntegratedServer/lanPinger +FD: net/minecraft/client/server/IntegratedServer/f_120019_ net/minecraft/client/server/IntegratedServer/uuid +FD: net/minecraft/client/server/IntegratedServer/f_174966_ net/minecraft/client/server/IntegratedServer/publishedGameType +FD: net/minecraft/client/server/IntegratedServer/f_194466_ net/minecraft/client/server/IntegratedServer/MIN_SIM_DISTANCE +FD: net/minecraft/client/server/IntegratedServer/f_194467_ net/minecraft/client/server/IntegratedServer/previousSimulationDistance +FD: net/minecraft/client/server/LanServer/f_120072_ net/minecraft/client/server/LanServer/motd +FD: net/minecraft/client/server/LanServer/f_120073_ net/minecraft/client/server/LanServer/address +FD: net/minecraft/client/server/LanServer/f_120074_ net/minecraft/client/server/LanServer/pingTime +FD: net/minecraft/client/server/LanServerDetection/f_120081_ net/minecraft/client/server/LanServerDetection/UNIQUE_THREAD_ID +FD: net/minecraft/client/server/LanServerDetection/f_120082_ net/minecraft/client/server/LanServerDetection/LOGGER +FD: net/minecraft/client/server/LanServerDetection$LanServerDetector/f_120086_ net/minecraft/client/server/LanServerDetection$LanServerDetector/serverList +FD: net/minecraft/client/server/LanServerDetection$LanServerDetector/f_120087_ net/minecraft/client/server/LanServerDetection$LanServerDetector/pingGroup +FD: net/minecraft/client/server/LanServerDetection$LanServerDetector/f_120088_ net/minecraft/client/server/LanServerDetection$LanServerDetector/socket +FD: net/minecraft/client/server/LanServerDetection$LanServerList/f_120092_ net/minecraft/client/server/LanServerDetection$LanServerList/servers +FD: net/minecraft/client/server/LanServerDetection$LanServerList/f_120093_ net/minecraft/client/server/LanServerDetection$LanServerList/isDirty +FD: net/minecraft/client/server/LanServerPinger/f_120101_ net/minecraft/client/server/LanServerPinger/UNIQUE_THREAD_ID +FD: net/minecraft/client/server/LanServerPinger/f_120102_ net/minecraft/client/server/LanServerPinger/LOGGER +FD: net/minecraft/client/server/LanServerPinger/f_120103_ net/minecraft/client/server/LanServerPinger/motd +FD: net/minecraft/client/server/LanServerPinger/f_120104_ net/minecraft/client/server/LanServerPinger/socket +FD: net/minecraft/client/server/LanServerPinger/f_120105_ net/minecraft/client/server/LanServerPinger/isRunning +FD: net/minecraft/client/server/LanServerPinger/f_120106_ net/minecraft/client/server/LanServerPinger/serverAddress +FD: net/minecraft/client/server/LanServerPinger/f_174974_ net/minecraft/client/server/LanServerPinger/MULTICAST_GROUP +FD: net/minecraft/client/server/LanServerPinger/f_174975_ net/minecraft/client/server/LanServerPinger/PING_PORT +FD: net/minecraft/client/server/LanServerPinger/f_174976_ net/minecraft/client/server/LanServerPinger/PING_INTERVAL +FD: net/minecraft/client/sounds/ChannelAccess/f_120121_ net/minecraft/client/sounds/ChannelAccess/channels +FD: net/minecraft/client/sounds/ChannelAccess/f_120122_ net/minecraft/client/sounds/ChannelAccess/library +FD: net/minecraft/client/sounds/ChannelAccess/f_120123_ net/minecraft/client/sounds/ChannelAccess/executor +FD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/f_120145_ net/minecraft/client/sounds/ChannelAccess$ChannelHandle/this$0 +FD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/f_120146_ net/minecraft/client/sounds/ChannelAccess$ChannelHandle/channel +FD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/f_120147_ net/minecraft/client/sounds/ChannelAccess$ChannelHandle/stopped +FD: net/minecraft/client/sounds/LoopingAudioStream/f_120159_ net/minecraft/client/sounds/LoopingAudioStream/provider +FD: net/minecraft/client/sounds/LoopingAudioStream/f_120160_ net/minecraft/client/sounds/LoopingAudioStream/stream +FD: net/minecraft/client/sounds/LoopingAudioStream/f_120161_ net/minecraft/client/sounds/LoopingAudioStream/bufferedInputStream +FD: net/minecraft/client/sounds/MusicManager/f_120177_ net/minecraft/client/sounds/MusicManager/random +FD: net/minecraft/client/sounds/MusicManager/f_120178_ net/minecraft/client/sounds/MusicManager/minecraft +FD: net/minecraft/client/sounds/MusicManager/f_120179_ net/minecraft/client/sounds/MusicManager/currentMusic +FD: net/minecraft/client/sounds/MusicManager/f_120180_ net/minecraft/client/sounds/MusicManager/nextSongDelay +FD: net/minecraft/client/sounds/MusicManager/f_174979_ net/minecraft/client/sounds/MusicManager/STARTING_DELAY +FD: net/minecraft/client/sounds/SoundBufferLibrary/f_120189_ net/minecraft/client/sounds/SoundBufferLibrary/resourceManager +FD: net/minecraft/client/sounds/SoundBufferLibrary/f_120190_ net/minecraft/client/sounds/SoundBufferLibrary/cache +FD: net/minecraft/client/sounds/SoundEngine/f_120214_ net/minecraft/client/sounds/SoundEngine/MARKER +FD: net/minecraft/client/sounds/SoundEngine/f_120215_ net/minecraft/client/sounds/SoundEngine/LOGGER +FD: net/minecraft/client/sounds/SoundEngine/f_120216_ net/minecraft/client/sounds/SoundEngine/ONLY_WARN_ONCE +FD: net/minecraft/client/sounds/SoundEngine/f_120217_ net/minecraft/client/sounds/SoundEngine/soundManager +FD: net/minecraft/client/sounds/SoundEngine/f_120218_ net/minecraft/client/sounds/SoundEngine/options +FD: net/minecraft/client/sounds/SoundEngine/f_120219_ net/minecraft/client/sounds/SoundEngine/loaded +FD: net/minecraft/client/sounds/SoundEngine/f_120220_ net/minecraft/client/sounds/SoundEngine/library +FD: net/minecraft/client/sounds/SoundEngine/f_120221_ net/minecraft/client/sounds/SoundEngine/listener +FD: net/minecraft/client/sounds/SoundEngine/f_120222_ net/minecraft/client/sounds/SoundEngine/soundBuffers +FD: net/minecraft/client/sounds/SoundEngine/f_120223_ net/minecraft/client/sounds/SoundEngine/executor +FD: net/minecraft/client/sounds/SoundEngine/f_120224_ net/minecraft/client/sounds/SoundEngine/channelAccess +FD: net/minecraft/client/sounds/SoundEngine/f_120225_ net/minecraft/client/sounds/SoundEngine/tickCount +FD: net/minecraft/client/sounds/SoundEngine/f_120226_ net/minecraft/client/sounds/SoundEngine/instanceToChannel +FD: net/minecraft/client/sounds/SoundEngine/f_120227_ net/minecraft/client/sounds/SoundEngine/instanceBySource +FD: net/minecraft/client/sounds/SoundEngine/f_120228_ net/minecraft/client/sounds/SoundEngine/tickingSounds +FD: net/minecraft/client/sounds/SoundEngine/f_120229_ net/minecraft/client/sounds/SoundEngine/queuedSounds +FD: net/minecraft/client/sounds/SoundEngine/f_120230_ net/minecraft/client/sounds/SoundEngine/soundDeleteTime +FD: net/minecraft/client/sounds/SoundEngine/f_120231_ net/minecraft/client/sounds/SoundEngine/listeners +FD: net/minecraft/client/sounds/SoundEngine/f_120232_ net/minecraft/client/sounds/SoundEngine/queuedTickableSounds +FD: net/minecraft/client/sounds/SoundEngine/f_120233_ net/minecraft/client/sounds/SoundEngine/preloadQueue +FD: net/minecraft/client/sounds/SoundEngine/f_174982_ net/minecraft/client/sounds/SoundEngine/MISSING_SOUND +FD: net/minecraft/client/sounds/SoundEngine/f_174983_ net/minecraft/client/sounds/SoundEngine/PITCH_MIN +FD: net/minecraft/client/sounds/SoundEngine/f_174984_ net/minecraft/client/sounds/SoundEngine/PITCH_MAX +FD: net/minecraft/client/sounds/SoundEngine/f_174985_ net/minecraft/client/sounds/SoundEngine/VOLUME_MIN +FD: net/minecraft/client/sounds/SoundEngine/f_174986_ net/minecraft/client/sounds/SoundEngine/VOLUME_MAX +FD: net/minecraft/client/sounds/SoundEngine/f_174987_ net/minecraft/client/sounds/SoundEngine/MIN_SOURCE_LIFETIME +FD: net/minecraft/client/sounds/SoundEngine/f_194469_ net/minecraft/client/sounds/SoundEngine/OPEN_AL_SOFT_PREFIX +FD: net/minecraft/client/sounds/SoundEngine/f_194470_ net/minecraft/client/sounds/SoundEngine/OPEN_AL_SOFT_PREFIX_LENGTH +FD: net/minecraft/client/sounds/SoundEngine/f_194471_ net/minecraft/client/sounds/SoundEngine/DEFAULT_DEVICE_CHECK_INTERVAL_MS +FD: net/minecraft/client/sounds/SoundEngine/f_194472_ net/minecraft/client/sounds/SoundEngine/lastDeviceCheckTime +FD: net/minecraft/client/sounds/SoundEngine/f_194473_ net/minecraft/client/sounds/SoundEngine/devicePoolState +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/$VALUES net/minecraft/client/sounds/SoundEngine$DeviceCheckState/$VALUES +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/CHANGE_DETECTED net/minecraft/client/sounds/SoundEngine$DeviceCheckState/CHANGE_DETECTED +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/NO_CHANGE net/minecraft/client/sounds/SoundEngine$DeviceCheckState/NO_CHANGE +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ONGOING net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ONGOING +FD: net/minecraft/client/sounds/SoundEngineExecutor/f_120329_ net/minecraft/client/sounds/SoundEngineExecutor/thread +FD: net/minecraft/client/sounds/SoundEngineExecutor/f_120330_ net/minecraft/client/sounds/SoundEngineExecutor/shutdown +FD: net/minecraft/client/sounds/SoundManager/f_120344_ net/minecraft/client/sounds/SoundManager/EMPTY_SOUND +FD: net/minecraft/client/sounds/SoundManager/f_120345_ net/minecraft/client/sounds/SoundManager/LOGGER +FD: net/minecraft/client/sounds/SoundManager/f_120346_ net/minecraft/client/sounds/SoundManager/GSON +FD: net/minecraft/client/sounds/SoundManager/f_120347_ net/minecraft/client/sounds/SoundManager/SOUND_EVENT_REGISTRATION_TYPE +FD: net/minecraft/client/sounds/SoundManager/f_120348_ net/minecraft/client/sounds/SoundManager/registry +FD: net/minecraft/client/sounds/SoundManager/f_120349_ net/minecraft/client/sounds/SoundManager/soundEngine +FD: net/minecraft/client/sounds/SoundManager/f_174997_ net/minecraft/client/sounds/SoundManager/SOUNDS_PATH +FD: net/minecraft/client/sounds/SoundManager/f_244170_ net/minecraft/client/sounds/SoundManager/soundCache +FD: net/minecraft/client/sounds/SoundManager/f_271159_ net/minecraft/client/sounds/SoundManager/INTENTIONALLY_EMPTY_SOUND_EVENT +FD: net/minecraft/client/sounds/SoundManager/f_271442_ net/minecraft/client/sounds/SoundManager/INTENTIONALLY_EMPTY_SOUND_LOCATION +FD: net/minecraft/client/sounds/SoundManager/f_271451_ net/minecraft/client/sounds/SoundManager/INTENTIONALLY_EMPTY_SOUND +FD: net/minecraft/client/sounds/SoundManager$2/f_120411_ net/minecraft/client/sounds/SoundManager$2/$SwitchMap$net$minecraft$client$resources$sounds$Sound$Type +FD: net/minecraft/client/sounds/SoundManager$Preparations/f_120413_ net/minecraft/client/sounds/SoundManager$Preparations/registry +FD: net/minecraft/client/sounds/SoundManager$Preparations/f_244128_ net/minecraft/client/sounds/SoundManager$Preparations/soundCache +FD: net/minecraft/client/sounds/SoundManager$Preparations$1/f_120429_ net/minecraft/client/sounds/SoundManager$Preparations$1/val$soundLocation +FD: net/minecraft/client/sounds/SoundManager$Preparations$1/f_120430_ net/minecraft/client/sounds/SoundManager$Preparations$1/val$sound +FD: net/minecraft/client/sounds/SoundManager$Preparations$1/f_120431_ net/minecraft/client/sounds/SoundManager$Preparations$1/this$0 +FD: net/minecraft/client/sounds/WeighedSoundEvents/f_120441_ net/minecraft/client/sounds/WeighedSoundEvents/list +FD: net/minecraft/client/sounds/WeighedSoundEvents/f_120444_ net/minecraft/client/sounds/WeighedSoundEvents/subtitle +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260581_ net/minecraft/client/telemetry/ClientTelemetryManager/EXECUTOR +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260615_ net/minecraft/client/telemetry/ClientTelemetryManager/userApiService +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260616_ net/minecraft/client/telemetry/ClientTelemetryManager/logManager +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260661_ net/minecraft/client/telemetry/ClientTelemetryManager/deviceSessionProperties +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260680_ net/minecraft/client/telemetry/ClientTelemetryManager/THREAD_COUNT +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260682_ net/minecraft/client/telemetry/ClientTelemetryManager/logDirectory +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_285581_ net/minecraft/client/telemetry/ClientTelemetryManager/outsideSessionSender +FD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260460_ net/minecraft/client/telemetry/TelemetryEventInstance/type +FD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260534_ net/minecraft/client/telemetry/TelemetryEventInstance/CODEC +FD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260563_ net/minecraft/client/telemetry/TelemetryEventInstance/properties +FD: net/minecraft/client/telemetry/TelemetryEventLog/f_260494_ net/minecraft/client/telemetry/TelemetryEventLog/LOGGER +FD: net/minecraft/client/telemetry/TelemetryEventLog/f_260691_ net/minecraft/client/telemetry/TelemetryEventLog/mailbox +FD: net/minecraft/client/telemetry/TelemetryEventLog/f_260709_ net/minecraft/client/telemetry/TelemetryEventLog/log +FD: net/minecraft/client/telemetry/TelemetryEventSender/f_260501_ net/minecraft/client/telemetry/TelemetryEventSender/DISABLED +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260446_ net/minecraft/client/telemetry/TelemetryEventType/GLOBAL_PROPERTIES +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260473_ net/minecraft/client/telemetry/TelemetryEventType/isOptIn +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260492_ net/minecraft/client/telemetry/TelemetryEventType/properties +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260564_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_SESSION_PROPERTIES +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260573_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_LOADED +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260600_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_LOAD_TIMES +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260620_ net/minecraft/client/telemetry/TelemetryEventType/PERFORMANCE_METRICS +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260629_ net/minecraft/client/telemetry/TelemetryEventType/id +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260654_ net/minecraft/client/telemetry/TelemetryEventType/exportKey +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260686_ net/minecraft/client/telemetry/TelemetryEventType/REGISTRY +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260690_ net/minecraft/client/telemetry/TelemetryEventType/CODEC +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260708_ net/minecraft/client/telemetry/TelemetryEventType/codec +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260729_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_UNLOADED +FD: net/minecraft/client/telemetry/TelemetryEventType/f_285568_ net/minecraft/client/telemetry/TelemetryEventType/ADVANCEMENT_MADE +FD: net/minecraft/client/telemetry/TelemetryEventType/f_285589_ net/minecraft/client/telemetry/TelemetryEventType/GAME_LOAD_TIMES +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260469_ net/minecraft/client/telemetry/TelemetryEventType$Builder/id +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260516_ net/minecraft/client/telemetry/TelemetryEventType$Builder/exportKey +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260544_ net/minecraft/client/telemetry/TelemetryEventType$Builder/isOptIn +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260674_ net/minecraft/client/telemetry/TelemetryEventType$Builder/properties +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260465_ net/minecraft/client/telemetry/TelemetryLogManager/directory +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260510_ net/minecraft/client/telemetry/TelemetryLogManager/EXPIRY_DAYS +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260526_ net/minecraft/client/telemetry/TelemetryLogManager/sessionLog +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260574_ net/minecraft/client/telemetry/TelemetryLogManager/LOGGER +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260596_ net/minecraft/client/telemetry/TelemetryLogManager/RAW_EXTENSION +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260437_ net/minecraft/client/telemetry/TelemetryProperty/NEW_WORLD +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260441_ net/minecraft/client/telemetry/TelemetryProperty/OPERATING_SYSTEM +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260452_ net/minecraft/client/telemetry/TelemetryProperty/SECONDS_SINCE_LOAD +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260453_ net/minecraft/client/telemetry/TelemetryProperty/OPT_IN +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260475_ net/minecraft/client/telemetry/TelemetryProperty/CLIENT_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260499_ net/minecraft/client/telemetry/TelemetryProperty/SERVER_MODDED +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260511_ net/minecraft/client/telemetry/TelemetryProperty/WORLD_SESSION_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260530_ net/minecraft/client/telemetry/TelemetryProperty/MINECRAFT_SESSION_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260557_ net/minecraft/client/telemetry/TelemetryProperty/FRAME_RATE_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260562_ net/minecraft/client/telemetry/TelemetryProperty/CLIENT_MODDED +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260571_ net/minecraft/client/telemetry/TelemetryProperty/WORLD_LOAD_TIME_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260586_ net/minecraft/client/telemetry/TelemetryProperty/PLATFORM +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260588_ net/minecraft/client/telemetry/TelemetryProperty/exportKey +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260597_ net/minecraft/client/telemetry/TelemetryProperty/GAME_VERSION +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260625_ net/minecraft/client/telemetry/TelemetryProperty/exporter +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260635_ net/minecraft/client/telemetry/TelemetryProperty/SERVER_TYPE +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260638_ net/minecraft/client/telemetry/TelemetryProperty/TICKS_SINCE_LOAD +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260645_ net/minecraft/client/telemetry/TelemetryProperty/USED_MEMORY_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260649_ net/minecraft/client/telemetry/TelemetryProperty/NUMBER_OF_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260659_ net/minecraft/client/telemetry/TelemetryProperty/USER_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260683_ net/minecraft/client/telemetry/TelemetryProperty/RENDER_DISTANCE +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260684_ net/minecraft/client/telemetry/TelemetryProperty/TIMESTAMP_FORMATTER +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260687_ net/minecraft/client/telemetry/TelemetryProperty/id +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260700_ net/minecraft/client/telemetry/TelemetryProperty/DEDICATED_MEMORY_KB +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260704_ net/minecraft/client/telemetry/TelemetryProperty/GAME_MODE +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260706_ net/minecraft/client/telemetry/TelemetryProperty/codec +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260713_ net/minecraft/client/telemetry/TelemetryProperty/RENDER_TIME_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260726_ net/minecraft/client/telemetry/TelemetryProperty/EVENT_TIMESTAMP_UTC +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285565_ net/minecraft/client/telemetry/TelemetryProperty/ADVANCEMENT_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285586_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_BOOTSTRAP_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285605_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_TOTAL_TIME_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285625_ net/minecraft/client/telemetry/TelemetryProperty/ADVANCEMENT_GAME_TIME +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285629_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_LOADING_OVERLAY_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285634_ net/minecraft/client/telemetry/TelemetryProperty/REALMS_MAP_CONTENT +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285649_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_PRE_WINDOW_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285658_ net/minecraft/client/telemetry/TelemetryProperty/LAUNCHER_NAME +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/$VALUES net/minecraft/client/telemetry/TelemetryProperty$GameMode/$VALUES +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/ADVENTURE net/minecraft/client/telemetry/TelemetryProperty$GameMode/ADVENTURE +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/CREATIVE net/minecraft/client/telemetry/TelemetryProperty$GameMode/CREATIVE +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/HARDCORE net/minecraft/client/telemetry/TelemetryProperty$GameMode/HARDCORE +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/SPECTATOR net/minecraft/client/telemetry/TelemetryProperty$GameMode/SPECTATOR +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/SURVIVAL net/minecraft/client/telemetry/TelemetryProperty$GameMode/SURVIVAL +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/f_260532_ net/minecraft/client/telemetry/TelemetryProperty$GameMode/CODEC +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/f_260535_ net/minecraft/client/telemetry/TelemetryProperty$GameMode/key +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/f_260720_ net/minecraft/client/telemetry/TelemetryProperty$GameMode/id +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/$VALUES net/minecraft/client/telemetry/TelemetryProperty$ServerType/$VALUES +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/LOCAL net/minecraft/client/telemetry/TelemetryProperty$ServerType/LOCAL +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/OTHER net/minecraft/client/telemetry/TelemetryProperty$ServerType/OTHER +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/REALM net/minecraft/client/telemetry/TelemetryProperty$ServerType/REALM +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/f_260545_ net/minecraft/client/telemetry/TelemetryProperty$ServerType/key +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/f_260675_ net/minecraft/client/telemetry/TelemetryProperty$ServerType/CODEC +FD: net/minecraft/client/telemetry/TelemetryPropertyMap/f_260483_ net/minecraft/client/telemetry/TelemetryPropertyMap/entries +FD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/f_260681_ net/minecraft/client/telemetry/TelemetryPropertyMap$1/val$properties +FD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/f_260436_ net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/entries +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260450_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/eventSender +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260533_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldLoadTimesEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260570_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldLoadEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260578_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/performanceMetricsEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260593_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldUnloadEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260685_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldSessionId +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260454_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/SAMPLES_PER_EVENT +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260520_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/ticking +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260549_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/SAMPLE_INTERVAL_MS +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260572_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/sampleCount +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260699_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/lastSampleTime +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285561_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/LOGGER +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285635_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/INSTANCE +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285636_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/timeSource +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285644_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/bootstrapTime +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285659_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/measurements +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/f_285578_ net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/millis +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/f_285618_ net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/CODEC +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260487_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/frameTimeSamples +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260536_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/DEDICATED_MEMORY_KB +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260632_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/fpsSamples +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260646_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/usedMemorySamples +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_260554_ net/minecraft/client/telemetry/events/WorldLoadEvent/gameMode +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_260599_ net/minecraft/client/telemetry/events/WorldLoadEvent/serverBrand +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_260710_ net/minecraft/client/telemetry/events/WorldLoadEvent/eventSent +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_285620_ net/minecraft/client/telemetry/events/WorldLoadEvent/minigameName +FD: net/minecraft/client/telemetry/events/WorldLoadEvent$1/f_260506_ net/minecraft/client/telemetry/events/WorldLoadEvent$1/$SwitchMap$net$minecraft$world$level$GameType +FD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/f_260580_ net/minecraft/client/telemetry/events/WorldLoadTimesEvent/newWorld +FD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/f_260669_ net/minecraft/client/telemetry/events/WorldLoadTimesEvent/worldLoadDuration +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_260539_ net/minecraft/client/telemetry/events/WorldUnloadEvent/worldLoadedTime +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_260583_ net/minecraft/client/telemetry/events/WorldUnloadEvent/lastGameTime +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_260639_ net/minecraft/client/telemetry/events/WorldUnloadEvent/totalTicks +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_263131_ net/minecraft/client/telemetry/events/WorldUnloadEvent/NOT_TRACKING_TIME +FD: net/minecraft/client/tutorial/BundleTutorial/f_174999_ net/minecraft/client/tutorial/BundleTutorial/tutorial +FD: net/minecraft/client/tutorial/BundleTutorial/f_175000_ net/minecraft/client/tutorial/BundleTutorial/options +FD: net/minecraft/client/tutorial/BundleTutorial/f_175001_ net/minecraft/client/tutorial/BundleTutorial/toast +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120460_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/CRAFT_TITLE +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120461_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/CRAFT_DESCRIPTION +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120462_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/tutorial +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120463_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/toast +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120464_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/timeWaiting +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_175011_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/HINT_DELAY +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120489_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/TITLE +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120490_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/DESCRIPTION +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120491_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/tutorial +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120492_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/toast +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120493_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/timeWaiting +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_175012_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/HINT_DELAY +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120506_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MOVE_TITLE +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120507_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MOVE_DESCRIPTION +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120508_ net/minecraft/client/tutorial/MovementTutorialStepInstance/LOOK_TITLE +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120509_ net/minecraft/client/tutorial/MovementTutorialStepInstance/LOOK_DESCRIPTION +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120510_ net/minecraft/client/tutorial/MovementTutorialStepInstance/tutorial +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120511_ net/minecraft/client/tutorial/MovementTutorialStepInstance/moveToast +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120512_ net/minecraft/client/tutorial/MovementTutorialStepInstance/lookToast +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120513_ net/minecraft/client/tutorial/MovementTutorialStepInstance/timeWaiting +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120514_ net/minecraft/client/tutorial/MovementTutorialStepInstance/timeMoved +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120515_ net/minecraft/client/tutorial/MovementTutorialStepInstance/timeLooked +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120516_ net/minecraft/client/tutorial/MovementTutorialStepInstance/moved +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120517_ net/minecraft/client/tutorial/MovementTutorialStepInstance/turned +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120518_ net/minecraft/client/tutorial/MovementTutorialStepInstance/moveCompleted +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120519_ net/minecraft/client/tutorial/MovementTutorialStepInstance/lookCompleted +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175013_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MINIMUM_TIME_MOVED +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175014_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MINIMUM_TIME_LOOKED +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175015_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MOVE_HINT_DELAY +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175016_ net/minecraft/client/tutorial/MovementTutorialStepInstance/LOOK_HINT_DELAY +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175017_ net/minecraft/client/tutorial/MovementTutorialStepInstance/INCOMPLETE +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120530_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/TITLE +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120531_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/DESCRIPTION +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120532_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/tutorial +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120533_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/toast +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120534_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/timeWaiting +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_175018_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/HINT_DELAY +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120541_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/TITLE +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120542_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/DESCRIPTION +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120543_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/tutorial +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120544_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/toast +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120545_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/timeWaiting +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120546_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/resetCount +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_175019_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/HINT_DELAY +FD: net/minecraft/client/tutorial/Tutorial/f_120559_ net/minecraft/client/tutorial/Tutorial/minecraft +FD: net/minecraft/client/tutorial/Tutorial/f_120560_ net/minecraft/client/tutorial/Tutorial/instance +FD: net/minecraft/client/tutorial/Tutorial/f_120561_ net/minecraft/client/tutorial/Tutorial/timedToasts +FD: net/minecraft/client/tutorial/Tutorial/f_175020_ net/minecraft/client/tutorial/Tutorial/bundleTutorial +FD: net/minecraft/client/tutorial/Tutorial$TimedToast/f_120599_ net/minecraft/client/tutorial/Tutorial$TimedToast/toast +FD: net/minecraft/client/tutorial/Tutorial$TimedToast/f_120600_ net/minecraft/client/tutorial/Tutorial$TimedToast/durationTicks +FD: net/minecraft/client/tutorial/Tutorial$TimedToast/f_120601_ net/minecraft/client/tutorial/Tutorial$TimedToast/progress +FD: net/minecraft/client/tutorial/TutorialSteps/$VALUES net/minecraft/client/tutorial/TutorialSteps/$VALUES +FD: net/minecraft/client/tutorial/TutorialSteps/CRAFT_PLANKS net/minecraft/client/tutorial/TutorialSteps/CRAFT_PLANKS +FD: net/minecraft/client/tutorial/TutorialSteps/FIND_TREE net/minecraft/client/tutorial/TutorialSteps/FIND_TREE +FD: net/minecraft/client/tutorial/TutorialSteps/MOVEMENT net/minecraft/client/tutorial/TutorialSteps/MOVEMENT +FD: net/minecraft/client/tutorial/TutorialSteps/NONE net/minecraft/client/tutorial/TutorialSteps/NONE +FD: net/minecraft/client/tutorial/TutorialSteps/OPEN_INVENTORY net/minecraft/client/tutorial/TutorialSteps/OPEN_INVENTORY +FD: net/minecraft/client/tutorial/TutorialSteps/PUNCH_TREE net/minecraft/client/tutorial/TutorialSteps/PUNCH_TREE +FD: net/minecraft/client/tutorial/TutorialSteps/f_120630_ net/minecraft/client/tutorial/TutorialSteps/name +FD: net/minecraft/client/tutorial/TutorialSteps/f_120631_ net/minecraft/client/tutorial/TutorialSteps/constructor +FD: net/minecraft/commands/BrigadierExceptions/f_77128_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_PARSE_EXCEPTION +FD: net/minecraft/commands/BrigadierExceptions/f_77129_ net/minecraft/commands/BrigadierExceptions/DOUBLE_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77130_ net/minecraft/commands/BrigadierExceptions/DOUBLE_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77131_ net/minecraft/commands/BrigadierExceptions/FLOAT_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77132_ net/minecraft/commands/BrigadierExceptions/FLOAT_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77133_ net/minecraft/commands/BrigadierExceptions/INTEGER_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77134_ net/minecraft/commands/BrigadierExceptions/INTEGER_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77135_ net/minecraft/commands/BrigadierExceptions/LONG_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77136_ net/minecraft/commands/BrigadierExceptions/LONG_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77137_ net/minecraft/commands/BrigadierExceptions/LITERAL_INCORRECT +FD: net/minecraft/commands/BrigadierExceptions/f_77138_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_START_OF_QUOTE +FD: net/minecraft/commands/BrigadierExceptions/f_77139_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_END_OF_QUOTE +FD: net/minecraft/commands/BrigadierExceptions/f_77140_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_ESCAPE +FD: net/minecraft/commands/BrigadierExceptions/f_77141_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_BOOL +FD: net/minecraft/commands/BrigadierExceptions/f_77142_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_INT +FD: net/minecraft/commands/BrigadierExceptions/f_77143_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_INT +FD: net/minecraft/commands/BrigadierExceptions/f_77144_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_LONG +FD: net/minecraft/commands/BrigadierExceptions/f_77145_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_LONG +FD: net/minecraft/commands/BrigadierExceptions/f_77146_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_DOUBLE +FD: net/minecraft/commands/BrigadierExceptions/f_77147_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_DOUBLE +FD: net/minecraft/commands/BrigadierExceptions/f_77148_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_FLOAT +FD: net/minecraft/commands/BrigadierExceptions/f_77149_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_FLOAT +FD: net/minecraft/commands/BrigadierExceptions/f_77150_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_BOOL +FD: net/minecraft/commands/BrigadierExceptions/f_77151_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_SYMBOL +FD: net/minecraft/commands/BrigadierExceptions/f_77152_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_UNKNOWN_COMMAND +FD: net/minecraft/commands/BrigadierExceptions/f_77153_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_UNKNOWN_ARGUMENT +FD: net/minecraft/commands/BrigadierExceptions/f_77154_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_EXPECTED_ARGUMENT_SEPARATOR +FD: net/minecraft/commands/CommandBuildContext$1/f_254659_ net/minecraft/commands/CommandBuildContext$1/val$enabledFeatures +FD: net/minecraft/commands/CommandBuildContext$1/f_254736_ net/minecraft/commands/CommandBuildContext$1/val$access +FD: net/minecraft/commands/CommandBuildContext$2/f_254623_ net/minecraft/commands/CommandBuildContext$2/missingTagAccessPolicy +FD: net/minecraft/commands/CommandBuildContext$2/f_254628_ net/minecraft/commands/CommandBuildContext$2/val$enabledFeatures +FD: net/minecraft/commands/CommandBuildContext$2/f_254691_ net/minecraft/commands/CommandBuildContext$2/val$registryAccess +FD: net/minecraft/commands/CommandBuildContext$2$1/f_254660_ net/minecraft/commands/CommandBuildContext$2$1/val$originalLookup +FD: net/minecraft/commands/CommandBuildContext$2$1/f_254666_ net/minecraft/commands/CommandBuildContext$2$1/this$0 +FD: net/minecraft/commands/CommandBuildContext$2$1/f_254686_ net/minecraft/commands/CommandBuildContext$2$1/val$originalTagAddingLookup +FD: net/minecraft/commands/CommandBuildContext$3/f_254651_ net/minecraft/commands/CommandBuildContext$3/$SwitchMap$net$minecraft$commands$CommandBuildContext$MissingTagAccessPolicy +FD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/$VALUES net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/$VALUES +FD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/CREATE_NEW net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/CREATE_NEW +FD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/FAIL net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/FAIL +FD: net/minecraft/commands/CommandFunction/f_77976_ net/minecraft/commands/CommandFunction/entries +FD: net/minecraft/commands/CommandFunction/f_77977_ net/minecraft/commands/CommandFunction/id +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77990_ net/minecraft/commands/CommandFunction$CacheableFunction/NONE +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77991_ net/minecraft/commands/CommandFunction$CacheableFunction/id +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77992_ net/minecraft/commands/CommandFunction$CacheableFunction/resolved +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77993_ net/minecraft/commands/CommandFunction$CacheableFunction/function +FD: net/minecraft/commands/CommandFunction$CommandEntry/f_78004_ net/minecraft/commands/CommandFunction$CommandEntry/parse +FD: net/minecraft/commands/CommandFunction$FunctionEntry/f_78017_ net/minecraft/commands/CommandFunction$FunctionEntry/function +FD: net/minecraft/commands/CommandRuntimeException/f_79223_ net/minecraft/commands/CommandRuntimeException/message +FD: net/minecraft/commands/CommandSigningContext/f_242494_ net/minecraft/commands/CommandSigningContext/ANONYMOUS +FD: net/minecraft/commands/CommandSigningContext$SignedArguments/f_242498_ net/minecraft/commands/CommandSigningContext$SignedArguments/arguments +FD: net/minecraft/commands/CommandSource/f_80164_ net/minecraft/commands/CommandSource/NULL +FD: net/minecraft/commands/CommandSourceStack/f_230878_ net/minecraft/commands/CommandSourceStack/signingContext +FD: net/minecraft/commands/CommandSourceStack/f_241659_ net/minecraft/commands/CommandSourceStack/chatMessageChainer +FD: net/minecraft/commands/CommandSourceStack/f_279552_ net/minecraft/commands/CommandSourceStack/returnValueConsumer +FD: net/minecraft/commands/CommandSourceStack/f_81286_ net/minecraft/commands/CommandSourceStack/ERROR_NOT_PLAYER +FD: net/minecraft/commands/CommandSourceStack/f_81287_ net/minecraft/commands/CommandSourceStack/ERROR_NOT_ENTITY +FD: net/minecraft/commands/CommandSourceStack/f_81288_ net/minecraft/commands/CommandSourceStack/source +FD: net/minecraft/commands/CommandSourceStack/f_81289_ net/minecraft/commands/CommandSourceStack/worldPosition +FD: net/minecraft/commands/CommandSourceStack/f_81290_ net/minecraft/commands/CommandSourceStack/level +FD: net/minecraft/commands/CommandSourceStack/f_81291_ net/minecraft/commands/CommandSourceStack/permissionLevel +FD: net/minecraft/commands/CommandSourceStack/f_81292_ net/minecraft/commands/CommandSourceStack/textName +FD: net/minecraft/commands/CommandSourceStack/f_81293_ net/minecraft/commands/CommandSourceStack/displayName +FD: net/minecraft/commands/CommandSourceStack/f_81294_ net/minecraft/commands/CommandSourceStack/server +FD: net/minecraft/commands/CommandSourceStack/f_81295_ net/minecraft/commands/CommandSourceStack/silent +FD: net/minecraft/commands/CommandSourceStack/f_81296_ net/minecraft/commands/CommandSourceStack/entity +FD: net/minecraft/commands/CommandSourceStack/f_81297_ net/minecraft/commands/CommandSourceStack/consumer +FD: net/minecraft/commands/CommandSourceStack/f_81298_ net/minecraft/commands/CommandSourceStack/anchor +FD: net/minecraft/commands/CommandSourceStack/f_81299_ net/minecraft/commands/CommandSourceStack/rotation +FD: net/minecraft/commands/Commands/f_165682_ net/minecraft/commands/Commands/LEVEL_ALL +FD: net/minecraft/commands/Commands/f_165683_ net/minecraft/commands/Commands/LEVEL_MODERATORS +FD: net/minecraft/commands/Commands/f_165684_ net/minecraft/commands/Commands/LEVEL_GAMEMASTERS +FD: net/minecraft/commands/Commands/f_165685_ net/minecraft/commands/Commands/LEVEL_ADMINS +FD: net/minecraft/commands/Commands/f_165686_ net/minecraft/commands/Commands/LEVEL_OWNERS +FD: net/minecraft/commands/Commands/f_82089_ net/minecraft/commands/Commands/LOGGER +FD: net/minecraft/commands/Commands/f_82090_ net/minecraft/commands/Commands/dispatcher +FD: net/minecraft/commands/Commands$1/f_254752_ net/minecraft/commands/Commands$1/val$registries +FD: net/minecraft/commands/Commands$1$1/f_254699_ net/minecraft/commands/Commands$1$1/val$original +FD: net/minecraft/commands/Commands$1$1/f_254721_ net/minecraft/commands/Commands$1$1/this$0 +FD: net/minecraft/commands/Commands$CommandSelection/$VALUES net/minecraft/commands/Commands$CommandSelection/$VALUES +FD: net/minecraft/commands/Commands$CommandSelection/ALL net/minecraft/commands/Commands$CommandSelection/ALL +FD: net/minecraft/commands/Commands$CommandSelection/DEDICATED net/minecraft/commands/Commands$CommandSelection/DEDICATED +FD: net/minecraft/commands/Commands$CommandSelection/INTEGRATED net/minecraft/commands/Commands$CommandSelection/INTEGRATED +FD: net/minecraft/commands/Commands$CommandSelection/f_82144_ net/minecraft/commands/Commands$CommandSelection/includeIntegrated +FD: net/minecraft/commands/Commands$CommandSelection/f_82145_ net/minecraft/commands/Commands$CommandSelection/includeDedicated +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/$VALUES net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/$VALUES +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ALL net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ALL +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ELEMENTS net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ELEMENTS +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/TAGS net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/TAGS +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82987_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/DEFAULT_LOCAL +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82988_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/DEFAULT_GLOBAL +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82989_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/x +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82990_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/y +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82991_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/z +FD: net/minecraft/commands/arguments/AngleArgument/f_166217_ net/minecraft/commands/arguments/AngleArgument/ERROR_INVALID_ANGLE +FD: net/minecraft/commands/arguments/AngleArgument/f_83803_ net/minecraft/commands/arguments/AngleArgument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/AngleArgument/f_83804_ net/minecraft/commands/arguments/AngleArgument/EXAMPLES +FD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/f_83816_ net/minecraft/commands/arguments/AngleArgument$SingleAngle/angle +FD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/f_83817_ net/minecraft/commands/arguments/AngleArgument$SingleAngle/isRelative +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_231046_ net/minecraft/commands/arguments/ArgumentSignatures/MAX_ARGUMENT_COUNT +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_231047_ net/minecraft/commands/arguments/ArgumentSignatures/MAX_ARGUMENT_NAME_LENGTH +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_240907_ net/minecraft/commands/arguments/ArgumentSignatures/EMPTY +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_240908_ net/minecraft/commands/arguments/ArgumentSignatures/entries +FD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240879_ net/minecraft/commands/arguments/ArgumentSignatures$Entry/signature +FD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240910_ net/minecraft/commands/arguments/ArgumentSignatures$Entry/name +FD: net/minecraft/commands/arguments/ColorArgument/f_85459_ net/minecraft/commands/arguments/ColorArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/ColorArgument/f_85460_ net/minecraft/commands/arguments/ColorArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ComponentArgument/f_87110_ net/minecraft/commands/arguments/ComponentArgument/ERROR_INVALID_JSON +FD: net/minecraft/commands/arguments/ComponentArgument/f_87111_ net/minecraft/commands/arguments/ComponentArgument/EXAMPLES +FD: net/minecraft/commands/arguments/CompoundTagArgument/f_87654_ net/minecraft/commands/arguments/CompoundTagArgument/EXAMPLES +FD: net/minecraft/commands/arguments/DimensionArgument/f_88801_ net/minecraft/commands/arguments/DimensionArgument/EXAMPLES +FD: net/minecraft/commands/arguments/DimensionArgument/f_88802_ net/minecraft/commands/arguments/DimensionArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/EntityAnchorArgument/f_90346_ net/minecraft/commands/arguments/EntityAnchorArgument/EXAMPLES +FD: net/minecraft/commands/arguments/EntityAnchorArgument/f_90347_ net/minecraft/commands/arguments/EntityAnchorArgument/ERROR_INVALID +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/$VALUES net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/$VALUES +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/EYES net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/EYES +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/FEET net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/FEET +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/f_90366_ net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/BY_NAME +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/f_90367_ net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/name +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/f_90368_ net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/transform +FD: net/minecraft/commands/arguments/EntityArgument/f_91436_ net/minecraft/commands/arguments/EntityArgument/ERROR_NOT_SINGLE_ENTITY +FD: net/minecraft/commands/arguments/EntityArgument/f_91437_ net/minecraft/commands/arguments/EntityArgument/ERROR_NOT_SINGLE_PLAYER +FD: net/minecraft/commands/arguments/EntityArgument/f_91438_ net/minecraft/commands/arguments/EntityArgument/ERROR_ONLY_PLAYERS_ALLOWED +FD: net/minecraft/commands/arguments/EntityArgument/f_91439_ net/minecraft/commands/arguments/EntityArgument/NO_ENTITIES_FOUND +FD: net/minecraft/commands/arguments/EntityArgument/f_91440_ net/minecraft/commands/arguments/EntityArgument/NO_PLAYERS_FOUND +FD: net/minecraft/commands/arguments/EntityArgument/f_91441_ net/minecraft/commands/arguments/EntityArgument/ERROR_SELECTORS_NOT_ALLOWED +FD: net/minecraft/commands/arguments/EntityArgument/f_91442_ net/minecraft/commands/arguments/EntityArgument/EXAMPLES +FD: net/minecraft/commands/arguments/EntityArgument/f_91443_ net/minecraft/commands/arguments/EntityArgument/single +FD: net/minecraft/commands/arguments/EntityArgument/f_91444_ net/minecraft/commands/arguments/EntityArgument/playersOnly +FD: net/minecraft/commands/arguments/EntityArgument$Info/f_231262_ net/minecraft/commands/arguments/EntityArgument$Info/FLAG_SINGLE +FD: net/minecraft/commands/arguments/EntityArgument$Info/f_231263_ net/minecraft/commands/arguments/EntityArgument$Info/FLAG_PLAYERS_ONLY +FD: net/minecraft/commands/arguments/EntityArgument$Info$Template/f_231285_ net/minecraft/commands/arguments/EntityArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/EntityArgument$Info$Template/f_231286_ net/minecraft/commands/arguments/EntityArgument$Info$Template/single +FD: net/minecraft/commands/arguments/EntityArgument$Info$Template/f_231287_ net/minecraft/commands/arguments/EntityArgument$Info$Template/playersOnly +FD: net/minecraft/commands/arguments/GameModeArgument/f_256859_ net/minecraft/commands/arguments/GameModeArgument/ERROR_INVALID +FD: net/minecraft/commands/arguments/GameModeArgument/f_256868_ net/minecraft/commands/arguments/GameModeArgument/VALUES +FD: net/minecraft/commands/arguments/GameModeArgument/f_257050_ net/minecraft/commands/arguments/GameModeArgument/EXAMPLES +FD: net/minecraft/commands/arguments/GameProfileArgument/f_94580_ net/minecraft/commands/arguments/GameProfileArgument/ERROR_UNKNOWN_PLAYER +FD: net/minecraft/commands/arguments/GameProfileArgument/f_94581_ net/minecraft/commands/arguments/GameProfileArgument/EXAMPLES +FD: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/f_94603_ net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/selector +FD: net/minecraft/commands/arguments/HeightmapTypeArgument/f_273851_ net/minecraft/commands/arguments/HeightmapTypeArgument/LOWER_CASE_CODEC +FD: net/minecraft/commands/arguments/MessageArgument/f_96829_ net/minecraft/commands/arguments/MessageArgument/EXAMPLES +FD: net/minecraft/commands/arguments/MessageArgument$Message/f_96841_ net/minecraft/commands/arguments/MessageArgument$Message/text +FD: net/minecraft/commands/arguments/MessageArgument$Message/f_96842_ net/minecraft/commands/arguments/MessageArgument$Message/parts +FD: net/minecraft/commands/arguments/MessageArgument$Part/f_96852_ net/minecraft/commands/arguments/MessageArgument$Part/start +FD: net/minecraft/commands/arguments/MessageArgument$Part/f_96853_ net/minecraft/commands/arguments/MessageArgument$Part/end +FD: net/minecraft/commands/arguments/MessageArgument$Part/f_96854_ net/minecraft/commands/arguments/MessageArgument$Part/selector +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169530_ net/minecraft/commands/arguments/NbtPathArgument/INDEX_MATCH_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169531_ net/minecraft/commands/arguments/NbtPathArgument/INDEX_MATCH_END +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169532_ net/minecraft/commands/arguments/NbtPathArgument/KEY_MATCH_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169533_ net/minecraft/commands/arguments/NbtPathArgument/KEY_MATCH_END +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169534_ net/minecraft/commands/arguments/NbtPathArgument/QUOTED_KEY_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_263128_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_INVALID_INDEX +FD: net/minecraft/commands/arguments/NbtPathArgument/f_263133_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_DATA_TOO_DEEP +FD: net/minecraft/commands/arguments/NbtPathArgument/f_263135_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_EXPECTED_LIST +FD: net/minecraft/commands/arguments/NbtPathArgument/f_287792_ net/minecraft/commands/arguments/NbtPathArgument/SINGLE_QUOTED_KEY_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_99482_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_INVALID_NODE +FD: net/minecraft/commands/arguments/NbtPathArgument/f_99483_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_NOTHING_FOUND +FD: net/minecraft/commands/arguments/NbtPathArgument/f_99484_ net/minecraft/commands/arguments/NbtPathArgument/EXAMPLES +FD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/f_99515_ net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/INSTANCE +FD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/f_99531_ net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/name +FD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/f_99547_ net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/index +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/f_99563_ net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/pattern +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/f_99564_ net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/predicate +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/f_99584_ net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/name +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/f_99585_ net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/pattern +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/f_99586_ net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/predicate +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/f_99603_ net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/predicate +FD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/f_99619_ net/minecraft/commands/arguments/NbtPathArgument$NbtPath/original +FD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/f_99620_ net/minecraft/commands/arguments/NbtPathArgument$NbtPath/nodeToOriginalPosition +FD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/f_99621_ net/minecraft/commands/arguments/NbtPathArgument$NbtPath/nodes +FD: net/minecraft/commands/arguments/NbtTagArgument/f_100656_ net/minecraft/commands/arguments/NbtTagArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ObjectiveArgument/f_101952_ net/minecraft/commands/arguments/ObjectiveArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ObjectiveArgument/f_101953_ net/minecraft/commands/arguments/ObjectiveArgument/ERROR_OBJECTIVE_NOT_FOUND +FD: net/minecraft/commands/arguments/ObjectiveArgument/f_101954_ net/minecraft/commands/arguments/ObjectiveArgument/ERROR_OBJECTIVE_READ_ONLY +FD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/f_102551_ net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/f_102552_ net/minecraft/commands/arguments/ObjectiveCriteriaArgument/EXAMPLES +FD: net/minecraft/commands/arguments/OperationArgument/f_103264_ net/minecraft/commands/arguments/OperationArgument/EXAMPLES +FD: net/minecraft/commands/arguments/OperationArgument/f_103265_ net/minecraft/commands/arguments/OperationArgument/ERROR_INVALID_OPERATION +FD: net/minecraft/commands/arguments/OperationArgument/f_103266_ net/minecraft/commands/arguments/OperationArgument/ERROR_DIVIDE_BY_ZERO +FD: net/minecraft/commands/arguments/ParticleArgument/f_103927_ net/minecraft/commands/arguments/ParticleArgument/ERROR_UNKNOWN_PARTICLE +FD: net/minecraft/commands/arguments/ParticleArgument/f_103928_ net/minecraft/commands/arguments/ParticleArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ParticleArgument/f_243802_ net/minecraft/commands/arguments/ParticleArgument/particles +FD: net/minecraft/commands/arguments/RangeArgument$Floats/f_105406_ net/minecraft/commands/arguments/RangeArgument$Floats/EXAMPLES +FD: net/minecraft/commands/arguments/RangeArgument$Ints/f_105414_ net/minecraft/commands/arguments/RangeArgument$Ints/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceArgument/f_243861_ net/minecraft/commands/arguments/ResourceArgument/registryLookup +FD: net/minecraft/commands/arguments/ResourceArgument/f_243885_ net/minecraft/commands/arguments/ResourceArgument/ERROR_INVALID_RESOURCE_TYPE +FD: net/minecraft/commands/arguments/ResourceArgument/f_244234_ net/minecraft/commands/arguments/ResourceArgument/ERROR_NOT_SUMMONABLE_ENTITY +FD: net/minecraft/commands/arguments/ResourceArgument/f_244450_ net/minecraft/commands/arguments/ResourceArgument/ERROR_UNKNOWN_RESOURCE +FD: net/minecraft/commands/arguments/ResourceArgument/f_244573_ net/minecraft/commands/arguments/ResourceArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceArgument/f_244609_ net/minecraft/commands/arguments/ResourceArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/f_244442_ net/minecraft/commands/arguments/ResourceArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/f_244472_ net/minecraft/commands/arguments/ResourceArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_212361_ net/minecraft/commands/arguments/ResourceKeyArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_212363_ net/minecraft/commands/arguments/ResourceKeyArgument/ERROR_INVALID_FEATURE +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_212364_ net/minecraft/commands/arguments/ResourceKeyArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_233246_ net/minecraft/commands/arguments/ResourceKeyArgument/ERROR_INVALID_STRUCTURE +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_233247_ net/minecraft/commands/arguments/ResourceKeyArgument/ERROR_INVALID_TEMPLATE_POOL +FD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/f_233292_ net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/f_233293_ net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106977_ net/minecraft/commands/arguments/ResourceLocationArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106978_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_ADVANCEMENT +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106979_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_RECIPE +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106980_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_PREDICATE +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_171024_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_ITEM_MODIFIER +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_243664_ net/minecraft/commands/arguments/ResourceOrTagArgument/registryLookup +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_243833_ net/minecraft/commands/arguments/ResourceOrTagArgument/ERROR_INVALID_TAG_TYPE +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_244158_ net/minecraft/commands/arguments/ResourceOrTagArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_244215_ net/minecraft/commands/arguments/ResourceOrTagArgument/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_244398_ net/minecraft/commands/arguments/ResourceOrTagArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/f_244221_ net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/f_244454_ net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/f_243689_ net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/value +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/f_244078_ net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/tag +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/f_243745_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/f_244586_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/f_243844_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/f_244288_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/f_243909_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/key +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/f_244059_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/key +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108210_ net/minecraft/commands/arguments/ScoreHolderArgument/SUGGEST_SCORE_HOLDERS +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108211_ net/minecraft/commands/arguments/ScoreHolderArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108212_ net/minecraft/commands/arguments/ScoreHolderArgument/ERROR_NO_RESULTS +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108213_ net/minecraft/commands/arguments/ScoreHolderArgument/multiple +FD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/f_233461_ net/minecraft/commands/arguments/ScoreHolderArgument$Info/FLAG_MULTIPLE +FD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/f_233483_ net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/f_233484_ net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/multiple +FD: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/f_108254_ net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/selector +FD: net/minecraft/commands/arguments/ScoreboardSlotArgument/f_109192_ net/minecraft/commands/arguments/ScoreboardSlotArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/ScoreboardSlotArgument/f_109193_ net/minecraft/commands/arguments/ScoreboardSlotArgument/EXAMPLES +FD: net/minecraft/commands/arguments/SlotArgument/f_111271_ net/minecraft/commands/arguments/SlotArgument/EXAMPLES +FD: net/minecraft/commands/arguments/SlotArgument/f_111272_ net/minecraft/commands/arguments/SlotArgument/ERROR_UNKNOWN_SLOT +FD: net/minecraft/commands/arguments/SlotArgument/f_111273_ net/minecraft/commands/arguments/SlotArgument/SLOTS +FD: net/minecraft/commands/arguments/StringRepresentableArgument/f_234055_ net/minecraft/commands/arguments/StringRepresentableArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/StringRepresentableArgument/f_234056_ net/minecraft/commands/arguments/StringRepresentableArgument/codec +FD: net/minecraft/commands/arguments/StringRepresentableArgument/f_234057_ net/minecraft/commands/arguments/StringRepresentableArgument/values +FD: net/minecraft/commands/arguments/TeamArgument/f_112084_ net/minecraft/commands/arguments/TeamArgument/EXAMPLES +FD: net/minecraft/commands/arguments/TeamArgument/f_112085_ net/minecraft/commands/arguments/TeamArgument/ERROR_TEAM_NOT_FOUND +FD: net/minecraft/commands/arguments/TimeArgument/f_113031_ net/minecraft/commands/arguments/TimeArgument/EXAMPLES +FD: net/minecraft/commands/arguments/TimeArgument/f_113032_ net/minecraft/commands/arguments/TimeArgument/ERROR_INVALID_UNIT +FD: net/minecraft/commands/arguments/TimeArgument/f_113034_ net/minecraft/commands/arguments/TimeArgument/UNITS +FD: net/minecraft/commands/arguments/TimeArgument/f_263648_ net/minecraft/commands/arguments/TimeArgument/ERROR_TICK_COUNT_TOO_LOW +FD: net/minecraft/commands/arguments/TimeArgument/f_263655_ net/minecraft/commands/arguments/TimeArgument/minimum +FD: net/minecraft/commands/arguments/TimeArgument$Info$Template/f_263698_ net/minecraft/commands/arguments/TimeArgument$Info$Template/min +FD: net/minecraft/commands/arguments/TimeArgument$Info$Template/f_263741_ net/minecraft/commands/arguments/TimeArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/UuidArgument/f_113845_ net/minecraft/commands/arguments/UuidArgument/ERROR_INVALID_UUID +FD: net/minecraft/commands/arguments/UuidArgument/f_113846_ net/minecraft/commands/arguments/UuidArgument/EXAMPLES +FD: net/minecraft/commands/arguments/UuidArgument/f_113847_ net/minecraft/commands/arguments/UuidArgument/ALLOWED_CHARACTERS +FD: net/minecraft/commands/arguments/blocks/BlockInput/f_114662_ net/minecraft/commands/arguments/blocks/BlockInput/state +FD: net/minecraft/commands/arguments/blocks/BlockInput/f_114663_ net/minecraft/commands/arguments/blocks/BlockInput/properties +FD: net/minecraft/commands/arguments/blocks/BlockInput/f_114664_ net/minecraft/commands/arguments/blocks/BlockInput/tag +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/f_115566_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument/EXAMPLES +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/f_234624_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument/blocks +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/f_115591_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/state +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/f_115592_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/properties +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/f_115593_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/nbt +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/f_115604_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/tag +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/f_115605_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/nbt +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/f_115606_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/vagueProperties +FD: net/minecraft/commands/arguments/blocks/BlockStateArgument/f_116117_ net/minecraft/commands/arguments/blocks/BlockStateArgument/EXAMPLES +FD: net/minecraft/commands/arguments/blocks/BlockStateArgument/f_234647_ net/minecraft/commands/arguments/blocks/BlockStateArgument/blocks +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116741_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_NO_TAGS_ALLOWED +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116742_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_UNKNOWN_BLOCK +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116743_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_UNKNOWN_PROPERTY +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116744_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_DUPLICATE_PROPERTY +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116745_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116746_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_EXPECTED_VALUE +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116747_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_EXPECTED_END_OF_PROPERTIES +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116748_ net/minecraft/commands/arguments/blocks/BlockStateParser/SUGGEST_NOTHING +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116749_ net/minecraft/commands/arguments/blocks/BlockStateParser/reader +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116750_ net/minecraft/commands/arguments/blocks/BlockStateParser/forTesting +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116751_ net/minecraft/commands/arguments/blocks/BlockStateParser/properties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116752_ net/minecraft/commands/arguments/blocks/BlockStateParser/vagueProperties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116753_ net/minecraft/commands/arguments/blocks/BlockStateParser/id +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116754_ net/minecraft/commands/arguments/blocks/BlockStateParser/definition +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116755_ net/minecraft/commands/arguments/blocks/BlockStateParser/state +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116756_ net/minecraft/commands/arguments/blocks/BlockStateParser/nbt +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116757_ net/minecraft/commands/arguments/blocks/BlockStateParser/tag +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116759_ net/minecraft/commands/arguments/blocks/BlockStateParser/suggestions +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174101_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_START_PROPERTIES +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174102_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_START_NBT +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174103_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_END_PROPERTIES +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174104_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_EQUALS +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174105_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_PROPERTY_SEPARATOR +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174106_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_TAG +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_234669_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_234670_ net/minecraft/commands/arguments/blocks/BlockStateParser/blocks +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_234671_ net/minecraft/commands/arguments/blocks/BlockStateParser/allowNbt +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234748_ net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/blockState +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234749_ net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/properties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234750_ net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/nbt +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234762_ net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/tag +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234763_ net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/vagueProperties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234764_ net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/nbt +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_118234_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/ERROR_NOT_LOADED +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_118235_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/ERROR_OUT_OF_WORLD +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_118236_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_174394_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/ERROR_OUT_OF_BOUNDS +FD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/f_118985_ net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/f_118986_ net/minecraft/commands/arguments/coordinates/ColumnPosArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_119898_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/left +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_119899_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/up +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_119900_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/forwards +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_174681_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/PREFIX_LOCAL_COORDINATE +FD: net/minecraft/commands/arguments/coordinates/RotationArgument/f_120475_ net/minecraft/commands/arguments/coordinates/RotationArgument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/RotationArgument/f_120476_ net/minecraft/commands/arguments/coordinates/RotationArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/f_120803_ net/minecraft/commands/arguments/coordinates/SwizzleArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/f_120804_ net/minecraft/commands/arguments/coordinates/SwizzleArgument/ERROR_INVALID +FD: net/minecraft/commands/arguments/coordinates/Vec2Argument/f_120816_ net/minecraft/commands/arguments/coordinates/Vec2Argument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/Vec2Argument/f_120817_ net/minecraft/commands/arguments/coordinates/Vec2Argument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/Vec2Argument/f_120818_ net/minecraft/commands/arguments/coordinates/Vec2Argument/centerCorrect +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120834_ net/minecraft/commands/arguments/coordinates/Vec3Argument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120835_ net/minecraft/commands/arguments/coordinates/Vec3Argument/ERROR_MIXED_TYPE +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120836_ net/minecraft/commands/arguments/coordinates/Vec3Argument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120837_ net/minecraft/commands/arguments/coordinates/Vec3Argument/centerCorrect +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120858_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/ERROR_EXPECTED_DOUBLE +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120859_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/ERROR_EXPECTED_INT +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120860_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/relative +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120861_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/value +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_175084_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/PREFIX_RELATIVE +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/f_120879_ net/minecraft/commands/arguments/coordinates/WorldCoordinates/x +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/f_120880_ net/minecraft/commands/arguments/coordinates/WorldCoordinates/y +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/f_120881_ net/minecraft/commands/arguments/coordinates/WorldCoordinates/z +FD: net/minecraft/commands/arguments/item/FunctionArgument/f_120902_ net/minecraft/commands/arguments/item/FunctionArgument/EXAMPLES +FD: net/minecraft/commands/arguments/item/FunctionArgument/f_120903_ net/minecraft/commands/arguments/item/FunctionArgument/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/item/FunctionArgument/f_120904_ net/minecraft/commands/arguments/item/FunctionArgument/ERROR_UNKNOWN_FUNCTION +FD: net/minecraft/commands/arguments/item/FunctionArgument$1/f_120937_ net/minecraft/commands/arguments/item/FunctionArgument$1/val$id +FD: net/minecraft/commands/arguments/item/FunctionArgument$1/f_120938_ net/minecraft/commands/arguments/item/FunctionArgument$1/this$0 +FD: net/minecraft/commands/arguments/item/FunctionArgument$2/f_120946_ net/minecraft/commands/arguments/item/FunctionArgument$2/val$id +FD: net/minecraft/commands/arguments/item/FunctionArgument$2/f_120947_ net/minecraft/commands/arguments/item/FunctionArgument$2/this$0 +FD: net/minecraft/commands/arguments/item/ItemArgument/f_120957_ net/minecraft/commands/arguments/item/ItemArgument/EXAMPLES +FD: net/minecraft/commands/arguments/item/ItemArgument/f_235276_ net/minecraft/commands/arguments/item/ItemArgument/items +FD: net/minecraft/commands/arguments/item/ItemInput/f_120972_ net/minecraft/commands/arguments/item/ItemInput/ERROR_STACK_TOO_BIG +FD: net/minecraft/commands/arguments/item/ItemInput/f_120973_ net/minecraft/commands/arguments/item/ItemInput/item +FD: net/minecraft/commands/arguments/item/ItemInput/f_120974_ net/minecraft/commands/arguments/item/ItemInput/tag +FD: net/minecraft/commands/arguments/item/ItemParser/f_120991_ net/minecraft/commands/arguments/item/ItemParser/ERROR_NO_TAGS_ALLOWED +FD: net/minecraft/commands/arguments/item/ItemParser/f_120992_ net/minecraft/commands/arguments/item/ItemParser/ERROR_UNKNOWN_ITEM +FD: net/minecraft/commands/arguments/item/ItemParser/f_120993_ net/minecraft/commands/arguments/item/ItemParser/SUGGEST_NOTHING +FD: net/minecraft/commands/arguments/item/ItemParser/f_120994_ net/minecraft/commands/arguments/item/ItemParser/reader +FD: net/minecraft/commands/arguments/item/ItemParser/f_120998_ net/minecraft/commands/arguments/item/ItemParser/nbt +FD: net/minecraft/commands/arguments/item/ItemParser/f_121001_ net/minecraft/commands/arguments/item/ItemParser/suggestions +FD: net/minecraft/commands/arguments/item/ItemParser/f_175091_ net/minecraft/commands/arguments/item/ItemParser/SYNTAX_START_NBT +FD: net/minecraft/commands/arguments/item/ItemParser/f_175092_ net/minecraft/commands/arguments/item/ItemParser/SYNTAX_TAG +FD: net/minecraft/commands/arguments/item/ItemParser/f_235286_ net/minecraft/commands/arguments/item/ItemParser/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/item/ItemParser/f_235287_ net/minecraft/commands/arguments/item/ItemParser/items +FD: net/minecraft/commands/arguments/item/ItemParser/f_235288_ net/minecraft/commands/arguments/item/ItemParser/allowTags +FD: net/minecraft/commands/arguments/item/ItemParser/f_235289_ net/minecraft/commands/arguments/item/ItemParser/result +FD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235328_ net/minecraft/commands/arguments/item/ItemParser$ItemResult/item +FD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235329_ net/minecraft/commands/arguments/item/ItemParser$ItemResult/nbt +FD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235339_ net/minecraft/commands/arguments/item/ItemParser$TagResult/tag +FD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235340_ net/minecraft/commands/arguments/item/ItemParser$TagResult/nbt +FD: net/minecraft/commands/arguments/item/ItemPredicateArgument/f_121033_ net/minecraft/commands/arguments/item/ItemPredicateArgument/EXAMPLES +FD: net/minecraft/commands/arguments/item/ItemPredicateArgument/f_235350_ net/minecraft/commands/arguments/item/ItemPredicateArgument/items +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121111_ net/minecraft/commands/arguments/selector/EntitySelector/maxResults +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121112_ net/minecraft/commands/arguments/selector/EntitySelector/includesEntities +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121113_ net/minecraft/commands/arguments/selector/EntitySelector/worldLimited +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121114_ net/minecraft/commands/arguments/selector/EntitySelector/predicate +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121115_ net/minecraft/commands/arguments/selector/EntitySelector/range +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121116_ net/minecraft/commands/arguments/selector/EntitySelector/position +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121117_ net/minecraft/commands/arguments/selector/EntitySelector/aabb +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121118_ net/minecraft/commands/arguments/selector/EntitySelector/order +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121119_ net/minecraft/commands/arguments/selector/EntitySelector/currentEntity +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121120_ net/minecraft/commands/arguments/selector/EntitySelector/playerName +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121121_ net/minecraft/commands/arguments/selector/EntitySelector/entityUUID +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121122_ net/minecraft/commands/arguments/selector/EntitySelector/type +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121123_ net/minecraft/commands/arguments/selector/EntitySelector/usesSelector +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_175099_ net/minecraft/commands/arguments/selector/EntitySelector/INFINITE +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_175100_ net/minecraft/commands/arguments/selector/EntitySelector/ANY_TYPE +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_260598_ net/minecraft/commands/arguments/selector/EntitySelector/ORDER_ARBITRARY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121170_ net/minecraft/commands/arguments/selector/EntitySelectorParser/predicate +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121171_ net/minecraft/commands/arguments/selector/EntitySelectorParser/order +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121172_ net/minecraft/commands/arguments/selector/EntitySelectorParser/currentEntity +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121173_ net/minecraft/commands/arguments/selector/EntitySelectorParser/playerName +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121174_ net/minecraft/commands/arguments/selector/EntitySelectorParser/startPosition +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121175_ net/minecraft/commands/arguments/selector/EntitySelectorParser/entityUUID +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121176_ net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestions +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121177_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121178_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameNotEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121179_ net/minecraft/commands/arguments/selector/EntitySelectorParser/isLimited +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121180_ net/minecraft/commands/arguments/selector/EntitySelectorParser/isSorted +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121181_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121182_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeNotEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121183_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121184_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamNotEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121185_ net/minecraft/commands/arguments/selector/EntitySelectorParser/type +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121186_ net/minecraft/commands/arguments/selector/EntitySelectorParser/typeInverse +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121187_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasScores +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121188_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasAdvancements +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121189_ net/minecraft/commands/arguments/selector/EntitySelectorParser/usesSelectors +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121190_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_INVALID_NAME_OR_UUID +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121191_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_UNKNOWN_SELECTOR_TYPE +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121192_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_SELECTORS_NOT_ALLOWED +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121193_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_MISSING_SELECTOR_TYPE +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121194_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_EXPECTED_END_OF_OPTIONS +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121195_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_EXPECTED_OPTION_VALUE +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121197_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ORDER_NEAREST +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121198_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ORDER_FURTHEST +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121199_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ORDER_RANDOM +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121200_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SUGGEST_NOTHING +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121201_ net/minecraft/commands/arguments/selector/EntitySelectorParser/reader +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121202_ net/minecraft/commands/arguments/selector/EntitySelectorParser/allowSelectors +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121203_ net/minecraft/commands/arguments/selector/EntitySelectorParser/maxResults +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121204_ net/minecraft/commands/arguments/selector/EntitySelectorParser/includesEntities +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121205_ net/minecraft/commands/arguments/selector/EntitySelectorParser/worldLimited +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121206_ net/minecraft/commands/arguments/selector/EntitySelectorParser/distance +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121207_ net/minecraft/commands/arguments/selector/EntitySelectorParser/level +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121208_ net/minecraft/commands/arguments/selector/EntitySelectorParser/x +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121209_ net/minecraft/commands/arguments/selector/EntitySelectorParser/y +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121210_ net/minecraft/commands/arguments/selector/EntitySelectorParser/z +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121211_ net/minecraft/commands/arguments/selector/EntitySelectorParser/deltaX +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121212_ net/minecraft/commands/arguments/selector/EntitySelectorParser/deltaY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121213_ net/minecraft/commands/arguments/selector/EntitySelectorParser/deltaZ +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121214_ net/minecraft/commands/arguments/selector/EntitySelectorParser/rotX +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121215_ net/minecraft/commands/arguments/selector/EntitySelectorParser/rotY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175112_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_SELECTOR_START +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175113_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_KEY_VALUE_SEPARATOR +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175114_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_NOT +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175115_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_TAG +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175116_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_START +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175117_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_END +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175118_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_SEPARATOR +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175119_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_NEAREST_PLAYER +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175120_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_ALL_PLAYERS +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175121_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_RANDOM_PLAYERS +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175122_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_CURRENT_ENTITY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175123_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_ALL_ENTITIES +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121384_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_UNKNOWN_OPTION +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121385_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_INAPPLICABLE_OPTION +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121386_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_RANGE_NEGATIVE +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121387_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_LEVEL_NEGATIVE +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121388_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_LIMIT_TOO_SMALL +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121389_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_SORT_UNKNOWN +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121390_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_GAME_MODE_INVALID +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121391_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_ENTITY_TYPE_INVALID +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121392_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/OPTIONS +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121565_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/modifier +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121567_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/description +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_243902_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/canUse +FD: net/minecraft/commands/synchronization/ArgumentTypeInfos/f_235379_ net/minecraft/commands/synchronization/ArgumentTypeInfos/BY_CLASS +FD: net/minecraft/commands/synchronization/ArgumentUtils/f_235397_ net/minecraft/commands/synchronization/ArgumentUtils/LOGGER +FD: net/minecraft/commands/synchronization/ArgumentUtils/f_235398_ net/minecraft/commands/synchronization/ArgumentUtils/NUMBER_FLAG_MIN +FD: net/minecraft/commands/synchronization/ArgumentUtils/f_235399_ net/minecraft/commands/synchronization/ArgumentUtils/NUMBER_FLAG_MAX +FD: net/minecraft/commands/synchronization/SingletonArgumentInfo/f_235432_ net/minecraft/commands/synchronization/SingletonArgumentInfo/template +FD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/f_235462_ net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/f_235463_ net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/constructor +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121641_ net/minecraft/commands/synchronization/SuggestionProviders/ASK_SERVER +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121642_ net/minecraft/commands/synchronization/SuggestionProviders/ALL_RECIPES +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121643_ net/minecraft/commands/synchronization/SuggestionProviders/AVAILABLE_SOUNDS +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121645_ net/minecraft/commands/synchronization/SuggestionProviders/SUMMONABLE_ENTITIES +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121646_ net/minecraft/commands/synchronization/SuggestionProviders/PROVIDERS_BY_NAME +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121647_ net/minecraft/commands/synchronization/SuggestionProviders/DEFAULT_NAME +FD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/f_121675_ net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/delegate +FD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/f_121676_ net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/name +FD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/f_235491_ net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/f_235492_ net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/f_235493_ net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/f_235524_ net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/f_235525_ net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/f_235526_ net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/f_235557_ net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/f_235558_ net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/f_235559_ net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/f_235590_ net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/f_235591_ net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/f_235592_ net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/f_121778_ net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/$SwitchMap$com$mojang$brigadier$arguments$StringArgumentType$StringType +FD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/f_235622_ net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/f_235623_ net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/type +FD: net/minecraft/core/AxisCycle/$VALUES net/minecraft/core/AxisCycle/$VALUES +FD: net/minecraft/core/AxisCycle/BACKWARD net/minecraft/core/AxisCycle/BACKWARD +FD: net/minecraft/core/AxisCycle/FORWARD net/minecraft/core/AxisCycle/FORWARD +FD: net/minecraft/core/AxisCycle/NONE net/minecraft/core/AxisCycle/NONE +FD: net/minecraft/core/AxisCycle/f_121783_ net/minecraft/core/AxisCycle/AXIS_VALUES +FD: net/minecraft/core/AxisCycle/f_121784_ net/minecraft/core/AxisCycle/VALUES +FD: net/minecraft/core/BlockMath/f_121840_ net/minecraft/core/BlockMath/LOGGER +FD: net/minecraft/core/BlockMath/f_175256_ net/minecraft/core/BlockMath/VANILLA_UV_TRANSFORM_LOCAL_TO_GLOBAL +FD: net/minecraft/core/BlockMath/f_175257_ net/minecraft/core/BlockMath/VANILLA_UV_TRANSFORM_GLOBAL_TO_LOCAL +FD: net/minecraft/core/BlockPos/f_121852_ net/minecraft/core/BlockPos/CODEC +FD: net/minecraft/core/BlockPos/f_121853_ net/minecraft/core/BlockPos/ZERO +FD: net/minecraft/core/BlockPos/f_121854_ net/minecraft/core/BlockPos/LOGGER +FD: net/minecraft/core/BlockPos/f_121855_ net/minecraft/core/BlockPos/PACKED_X_LENGTH +FD: net/minecraft/core/BlockPos/f_121856_ net/minecraft/core/BlockPos/PACKED_Z_LENGTH +FD: net/minecraft/core/BlockPos/f_121857_ net/minecraft/core/BlockPos/PACKED_Y_LENGTH +FD: net/minecraft/core/BlockPos/f_121858_ net/minecraft/core/BlockPos/PACKED_X_MASK +FD: net/minecraft/core/BlockPos/f_121859_ net/minecraft/core/BlockPos/PACKED_Y_MASK +FD: net/minecraft/core/BlockPos/f_121860_ net/minecraft/core/BlockPos/PACKED_Z_MASK +FD: net/minecraft/core/BlockPos/f_121861_ net/minecraft/core/BlockPos/Z_OFFSET +FD: net/minecraft/core/BlockPos/f_121862_ net/minecraft/core/BlockPos/X_OFFSET +FD: net/minecraft/core/BlockPos/f_175261_ net/minecraft/core/BlockPos/Y_OFFSET +FD: net/minecraft/core/BlockPos$1/f_122039_ net/minecraft/core/BlockPos$1/nextPos +FD: net/minecraft/core/BlockPos$1/f_122040_ net/minecraft/core/BlockPos$1/counter +FD: net/minecraft/core/BlockPos$1/f_122041_ net/minecraft/core/BlockPos$1/val$limit +FD: net/minecraft/core/BlockPos$1/f_122042_ net/minecraft/core/BlockPos$1/val$minX +FD: net/minecraft/core/BlockPos$1/f_122043_ net/minecraft/core/BlockPos$1/val$random +FD: net/minecraft/core/BlockPos$1/f_122044_ net/minecraft/core/BlockPos$1/val$width +FD: net/minecraft/core/BlockPos$1/f_122045_ net/minecraft/core/BlockPos$1/val$minY +FD: net/minecraft/core/BlockPos$1/f_122046_ net/minecraft/core/BlockPos$1/val$height +FD: net/minecraft/core/BlockPos$1/f_122047_ net/minecraft/core/BlockPos$1/val$minZ +FD: net/minecraft/core/BlockPos$1/f_122048_ net/minecraft/core/BlockPos$1/val$depth +FD: net/minecraft/core/BlockPos$2/f_122060_ net/minecraft/core/BlockPos$2/val$originZ +FD: net/minecraft/core/BlockPos$2/f_122061_ net/minecraft/core/BlockPos$2/val$maxDepth +FD: net/minecraft/core/BlockPos$2/f_122062_ net/minecraft/core/BlockPos$2/val$reachX +FD: net/minecraft/core/BlockPos$2/f_122063_ net/minecraft/core/BlockPos$2/val$reachY +FD: net/minecraft/core/BlockPos$2/f_122064_ net/minecraft/core/BlockPos$2/val$reachZ +FD: net/minecraft/core/BlockPos$2/f_122065_ net/minecraft/core/BlockPos$2/val$originX +FD: net/minecraft/core/BlockPos$2/f_122066_ net/minecraft/core/BlockPos$2/val$originY +FD: net/minecraft/core/BlockPos$2/f_122067_ net/minecraft/core/BlockPos$2/cursor +FD: net/minecraft/core/BlockPos$2/f_122068_ net/minecraft/core/BlockPos$2/currentDepth +FD: net/minecraft/core/BlockPos$2/f_122069_ net/minecraft/core/BlockPos$2/maxX +FD: net/minecraft/core/BlockPos$2/f_122070_ net/minecraft/core/BlockPos$2/maxY +FD: net/minecraft/core/BlockPos$2/f_122071_ net/minecraft/core/BlockPos$2/x +FD: net/minecraft/core/BlockPos$2/f_122072_ net/minecraft/core/BlockPos$2/y +FD: net/minecraft/core/BlockPos$2/f_122073_ net/minecraft/core/BlockPos$2/zMirror +FD: net/minecraft/core/BlockPos$3/f_122084_ net/minecraft/core/BlockPos$3/val$end +FD: net/minecraft/core/BlockPos$3/f_122085_ net/minecraft/core/BlockPos$3/val$width +FD: net/minecraft/core/BlockPos$3/f_122086_ net/minecraft/core/BlockPos$3/val$height +FD: net/minecraft/core/BlockPos$3/f_122087_ net/minecraft/core/BlockPos$3/val$minX +FD: net/minecraft/core/BlockPos$3/f_122088_ net/minecraft/core/BlockPos$3/val$minY +FD: net/minecraft/core/BlockPos$3/f_122089_ net/minecraft/core/BlockPos$3/val$minZ +FD: net/minecraft/core/BlockPos$3/f_122090_ net/minecraft/core/BlockPos$3/cursor +FD: net/minecraft/core/BlockPos$3/f_122091_ net/minecraft/core/BlockPos$3/index +FD: net/minecraft/core/BlockPos$4/f_122101_ net/minecraft/core/BlockPos$4/val$firstDirection +FD: net/minecraft/core/BlockPos$4/f_122102_ net/minecraft/core/BlockPos$4/val$secondDirection +FD: net/minecraft/core/BlockPos$4/f_122103_ net/minecraft/core/BlockPos$4/val$center +FD: net/minecraft/core/BlockPos$4/f_122104_ net/minecraft/core/BlockPos$4/val$radius +FD: net/minecraft/core/BlockPos$4/f_122105_ net/minecraft/core/BlockPos$4/directions +FD: net/minecraft/core/BlockPos$4/f_122106_ net/minecraft/core/BlockPos$4/cursor +FD: net/minecraft/core/BlockPos$4/f_122107_ net/minecraft/core/BlockPos$4/legs +FD: net/minecraft/core/BlockPos$4/f_122108_ net/minecraft/core/BlockPos$4/leg +FD: net/minecraft/core/BlockPos$4/f_122109_ net/minecraft/core/BlockPos$4/legSize +FD: net/minecraft/core/BlockPos$4/f_122110_ net/minecraft/core/BlockPos$4/legIndex +FD: net/minecraft/core/BlockPos$4/f_122111_ net/minecraft/core/BlockPos$4/lastX +FD: net/minecraft/core/BlockPos$4/f_122112_ net/minecraft/core/BlockPos$4/lastY +FD: net/minecraft/core/BlockPos$4/f_122113_ net/minecraft/core/BlockPos$4/lastZ +FD: net/minecraft/core/BlockPos$5/f_122121_ net/minecraft/core/BlockPos$5/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/core/BlockPos$5/f_122122_ net/minecraft/core/BlockPos$5/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/core/BlockSourceImpl/f_122210_ net/minecraft/core/BlockSourceImpl/level +FD: net/minecraft/core/BlockSourceImpl/f_122211_ net/minecraft/core/BlockSourceImpl/pos +FD: net/minecraft/core/Cursor3D/f_122286_ net/minecraft/core/Cursor3D/originX +FD: net/minecraft/core/Cursor3D/f_122287_ net/minecraft/core/Cursor3D/originY +FD: net/minecraft/core/Cursor3D/f_122288_ net/minecraft/core/Cursor3D/originZ +FD: net/minecraft/core/Cursor3D/f_122289_ net/minecraft/core/Cursor3D/width +FD: net/minecraft/core/Cursor3D/f_122290_ net/minecraft/core/Cursor3D/height +FD: net/minecraft/core/Cursor3D/f_122291_ net/minecraft/core/Cursor3D/depth +FD: net/minecraft/core/Cursor3D/f_122292_ net/minecraft/core/Cursor3D/end +FD: net/minecraft/core/Cursor3D/f_122293_ net/minecraft/core/Cursor3D/index +FD: net/minecraft/core/Cursor3D/f_122294_ net/minecraft/core/Cursor3D/x +FD: net/minecraft/core/Cursor3D/f_122295_ net/minecraft/core/Cursor3D/y +FD: net/minecraft/core/Cursor3D/f_122296_ net/minecraft/core/Cursor3D/z +FD: net/minecraft/core/Cursor3D/f_175352_ net/minecraft/core/Cursor3D/TYPE_INSIDE +FD: net/minecraft/core/Cursor3D/f_175353_ net/minecraft/core/Cursor3D/TYPE_FACE +FD: net/minecraft/core/Cursor3D/f_175354_ net/minecraft/core/Cursor3D/TYPE_EDGE +FD: net/minecraft/core/Cursor3D/f_175355_ net/minecraft/core/Cursor3D/TYPE_CORNER +FD: net/minecraft/core/DefaultedMappedRegistry/f_256918_ net/minecraft/core/DefaultedMappedRegistry/defaultKey +FD: net/minecraft/core/DefaultedMappedRegistry/f_256925_ net/minecraft/core/DefaultedMappedRegistry/defaultValue +FD: net/minecraft/core/Direction/$VALUES net/minecraft/core/Direction/$VALUES +FD: net/minecraft/core/Direction/DOWN net/minecraft/core/Direction/DOWN +FD: net/minecraft/core/Direction/EAST net/minecraft/core/Direction/EAST +FD: net/minecraft/core/Direction/NORTH net/minecraft/core/Direction/NORTH +FD: net/minecraft/core/Direction/SOUTH net/minecraft/core/Direction/SOUTH +FD: net/minecraft/core/Direction/UP net/minecraft/core/Direction/UP +FD: net/minecraft/core/Direction/WEST net/minecraft/core/Direction/WEST +FD: net/minecraft/core/Direction/f_122339_ net/minecraft/core/Direction/data3d +FD: net/minecraft/core/Direction/f_122340_ net/minecraft/core/Direction/oppositeIndex +FD: net/minecraft/core/Direction/f_122341_ net/minecraft/core/Direction/data2d +FD: net/minecraft/core/Direction/f_122342_ net/minecraft/core/Direction/name +FD: net/minecraft/core/Direction/f_122343_ net/minecraft/core/Direction/axis +FD: net/minecraft/core/Direction/f_122344_ net/minecraft/core/Direction/axisDirection +FD: net/minecraft/core/Direction/f_122345_ net/minecraft/core/Direction/normal +FD: net/minecraft/core/Direction/f_122346_ net/minecraft/core/Direction/VALUES +FD: net/minecraft/core/Direction/f_122348_ net/minecraft/core/Direction/BY_3D_DATA +FD: net/minecraft/core/Direction/f_122349_ net/minecraft/core/Direction/BY_2D_DATA +FD: net/minecraft/core/Direction/f_175356_ net/minecraft/core/Direction/CODEC +FD: net/minecraft/core/Direction/f_194527_ net/minecraft/core/Direction/VERTICAL_CODEC +FD: net/minecraft/core/Direction$1/f_122441_ net/minecraft/core/Direction$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/core/Direction$1/f_122442_ net/minecraft/core/Direction$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/core/Direction$Axis/$VALUES net/minecraft/core/Direction$Axis/$VALUES +FD: net/minecraft/core/Direction$Axis/X net/minecraft/core/Direction$Axis/X +FD: net/minecraft/core/Direction$Axis/Y net/minecraft/core/Direction$Axis/Y +FD: net/minecraft/core/Direction$Axis/Z net/minecraft/core/Direction$Axis/Z +FD: net/minecraft/core/Direction$Axis/f_122447_ net/minecraft/core/Direction$Axis/CODEC +FD: net/minecraft/core/Direction$Axis/f_122448_ net/minecraft/core/Direction$Axis/VALUES +FD: net/minecraft/core/Direction$Axis/f_122450_ net/minecraft/core/Direction$Axis/name +FD: net/minecraft/core/Direction$AxisDirection/$VALUES net/minecraft/core/Direction$AxisDirection/$VALUES +FD: net/minecraft/core/Direction$AxisDirection/NEGATIVE net/minecraft/core/Direction$AxisDirection/NEGATIVE +FD: net/minecraft/core/Direction$AxisDirection/POSITIVE net/minecraft/core/Direction$AxisDirection/POSITIVE +FD: net/minecraft/core/Direction$AxisDirection/f_122531_ net/minecraft/core/Direction$AxisDirection/step +FD: net/minecraft/core/Direction$AxisDirection/f_122532_ net/minecraft/core/Direction$AxisDirection/name +FD: net/minecraft/core/Direction$Plane/$VALUES net/minecraft/core/Direction$Plane/$VALUES +FD: net/minecraft/core/Direction$Plane/HORIZONTAL net/minecraft/core/Direction$Plane/HORIZONTAL +FD: net/minecraft/core/Direction$Plane/VERTICAL net/minecraft/core/Direction$Plane/VERTICAL +FD: net/minecraft/core/Direction$Plane/f_122548_ net/minecraft/core/Direction$Plane/faces +FD: net/minecraft/core/Direction$Plane/f_122549_ net/minecraft/core/Direction$Plane/axis +FD: net/minecraft/core/Direction8/$VALUES net/minecraft/core/Direction8/$VALUES +FD: net/minecraft/core/Direction8/EAST net/minecraft/core/Direction8/EAST +FD: net/minecraft/core/Direction8/NORTH net/minecraft/core/Direction8/NORTH +FD: net/minecraft/core/Direction8/NORTH_EAST net/minecraft/core/Direction8/NORTH_EAST +FD: net/minecraft/core/Direction8/NORTH_WEST net/minecraft/core/Direction8/NORTH_WEST +FD: net/minecraft/core/Direction8/SOUTH net/minecraft/core/Direction8/SOUTH +FD: net/minecraft/core/Direction8/SOUTH_EAST net/minecraft/core/Direction8/SOUTH_EAST +FD: net/minecraft/core/Direction8/SOUTH_WEST net/minecraft/core/Direction8/SOUTH_WEST +FD: net/minecraft/core/Direction8/WEST net/minecraft/core/Direction8/WEST +FD: net/minecraft/core/Direction8/f_122586_ net/minecraft/core/Direction8/directions +FD: net/minecraft/core/Direction8/f_235696_ net/minecraft/core/Direction8/step +FD: net/minecraft/core/FrontAndTop/$VALUES net/minecraft/core/FrontAndTop/$VALUES +FD: net/minecraft/core/FrontAndTop/DOWN_EAST net/minecraft/core/FrontAndTop/DOWN_EAST +FD: net/minecraft/core/FrontAndTop/DOWN_NORTH net/minecraft/core/FrontAndTop/DOWN_NORTH +FD: net/minecraft/core/FrontAndTop/DOWN_SOUTH net/minecraft/core/FrontAndTop/DOWN_SOUTH +FD: net/minecraft/core/FrontAndTop/DOWN_WEST net/minecraft/core/FrontAndTop/DOWN_WEST +FD: net/minecraft/core/FrontAndTop/EAST_UP net/minecraft/core/FrontAndTop/EAST_UP +FD: net/minecraft/core/FrontAndTop/NORTH_UP net/minecraft/core/FrontAndTop/NORTH_UP +FD: net/minecraft/core/FrontAndTop/SOUTH_UP net/minecraft/core/FrontAndTop/SOUTH_UP +FD: net/minecraft/core/FrontAndTop/UP_EAST net/minecraft/core/FrontAndTop/UP_EAST +FD: net/minecraft/core/FrontAndTop/UP_NORTH net/minecraft/core/FrontAndTop/UP_NORTH +FD: net/minecraft/core/FrontAndTop/UP_SOUTH net/minecraft/core/FrontAndTop/UP_SOUTH +FD: net/minecraft/core/FrontAndTop/UP_WEST net/minecraft/core/FrontAndTop/UP_WEST +FD: net/minecraft/core/FrontAndTop/WEST_UP net/minecraft/core/FrontAndTop/WEST_UP +FD: net/minecraft/core/FrontAndTop/f_122609_ net/minecraft/core/FrontAndTop/LOOKUP_TOP_FRONT +FD: net/minecraft/core/FrontAndTop/f_122610_ net/minecraft/core/FrontAndTop/name +FD: net/minecraft/core/FrontAndTop/f_122611_ net/minecraft/core/FrontAndTop/top +FD: net/minecraft/core/FrontAndTop/f_122612_ net/minecraft/core/FrontAndTop/front +FD: net/minecraft/core/GlobalPos/f_122633_ net/minecraft/core/GlobalPos/CODEC +FD: net/minecraft/core/GlobalPos/f_122634_ net/minecraft/core/GlobalPos/dimension +FD: net/minecraft/core/GlobalPos/f_122635_ net/minecraft/core/GlobalPos/pos +FD: net/minecraft/core/Holder$Direct/f_205714_ net/minecraft/core/Holder$Direct/value +FD: net/minecraft/core/Holder$Kind/$VALUES net/minecraft/core/Holder$Kind/$VALUES +FD: net/minecraft/core/Holder$Kind/DIRECT net/minecraft/core/Holder$Kind/DIRECT +FD: net/minecraft/core/Holder$Kind/REFERENCE net/minecraft/core/Holder$Kind/REFERENCE +FD: net/minecraft/core/Holder$Reference/f_205749_ net/minecraft/core/Holder$Reference/tags +FD: net/minecraft/core/Holder$Reference/f_205750_ net/minecraft/core/Holder$Reference/type +FD: net/minecraft/core/Holder$Reference/f_205751_ net/minecraft/core/Holder$Reference/key +FD: net/minecraft/core/Holder$Reference/f_205752_ net/minecraft/core/Holder$Reference/value +FD: net/minecraft/core/Holder$Reference/f_254697_ net/minecraft/core/Holder$Reference/owner +FD: net/minecraft/core/Holder$Reference$Type/$VALUES net/minecraft/core/Holder$Reference$Type/$VALUES +FD: net/minecraft/core/Holder$Reference$Type/INTRUSIVE net/minecraft/core/Holder$Reference$Type/INTRUSIVE +FD: net/minecraft/core/Holder$Reference$Type/STAND_ALONE net/minecraft/core/Holder$Reference$Type/STAND_ALONE +FD: net/minecraft/core/HolderLookup$1/f_254633_ net/minecraft/core/HolderLookup$1/this$0 +FD: net/minecraft/core/HolderLookup$1/f_254636_ net/minecraft/core/HolderLookup$1/val$filter +FD: net/minecraft/core/HolderLookup$Delegate/f_254653_ net/minecraft/core/HolderLookup$Delegate/parent +FD: net/minecraft/core/HolderLookup$Provider$1/f_254657_ net/minecraft/core/HolderLookup$Provider$1/this$0 +FD: net/minecraft/core/HolderLookup$Provider$2/f_254702_ net/minecraft/core/HolderLookup$Provider$2/val$map +FD: net/minecraft/core/HolderSet$Direct/f_205811_ net/minecraft/core/HolderSet$Direct/contents +FD: net/minecraft/core/HolderSet$Direct/f_205812_ net/minecraft/core/HolderSet$Direct/contentsSet +FD: net/minecraft/core/HolderSet$Named/f_205829_ net/minecraft/core/HolderSet$Named/key +FD: net/minecraft/core/HolderSet$Named/f_205830_ net/minecraft/core/HolderSet$Named/contents +FD: net/minecraft/core/HolderSet$Named/f_254711_ net/minecraft/core/HolderSet$Named/owner +FD: net/minecraft/core/IdMap/f_194530_ net/minecraft/core/IdMap/DEFAULT +FD: net/minecraft/core/IdMapper/f_122653_ net/minecraft/core/IdMapper/nextId +FD: net/minecraft/core/IdMapper/f_122654_ net/minecraft/core/IdMapper/tToId +FD: net/minecraft/core/IdMapper/f_122655_ net/minecraft/core/IdMapper/idToT +FD: net/minecraft/core/LayeredRegistryAccess/f_244050_ net/minecraft/core/LayeredRegistryAccess/values +FD: net/minecraft/core/LayeredRegistryAccess/f_244063_ net/minecraft/core/LayeredRegistryAccess/composite +FD: net/minecraft/core/LayeredRegistryAccess/f_244209_ net/minecraft/core/LayeredRegistryAccess/keys +FD: net/minecraft/core/MappedRegistry/f_122672_ net/minecraft/core/MappedRegistry/byId +FD: net/minecraft/core/MappedRegistry/f_122673_ net/minecraft/core/MappedRegistry/toId +FD: net/minecraft/core/MappedRegistry/f_122676_ net/minecraft/core/MappedRegistry/lifecycles +FD: net/minecraft/core/MappedRegistry/f_122678_ net/minecraft/core/MappedRegistry/nextId +FD: net/minecraft/core/MappedRegistry/f_205841_ net/minecraft/core/MappedRegistry/byLocation +FD: net/minecraft/core/MappedRegistry/f_205842_ net/minecraft/core/MappedRegistry/byKey +FD: net/minecraft/core/MappedRegistry/f_205843_ net/minecraft/core/MappedRegistry/byValue +FD: net/minecraft/core/MappedRegistry/f_205844_ net/minecraft/core/MappedRegistry/tags +FD: net/minecraft/core/MappedRegistry/f_205845_ net/minecraft/core/MappedRegistry/frozen +FD: net/minecraft/core/MappedRegistry/f_211050_ net/minecraft/core/MappedRegistry/LOGGER +FD: net/minecraft/core/MappedRegistry/f_211051_ net/minecraft/core/MappedRegistry/holdersInOrder +FD: net/minecraft/core/MappedRegistry/f_244282_ net/minecraft/core/MappedRegistry/unregisteredIntrusiveHolders +FD: net/minecraft/core/MappedRegistry/f_256817_ net/minecraft/core/MappedRegistry/key +FD: net/minecraft/core/MappedRegistry/f_256971_ net/minecraft/core/MappedRegistry/lookup +FD: net/minecraft/core/MappedRegistry/f_256989_ net/minecraft/core/MappedRegistry/registryLifecycle +FD: net/minecraft/core/MappedRegistry$1/f_254673_ net/minecraft/core/MappedRegistry$1/this$0 +FD: net/minecraft/core/MappedRegistry$2/f_256893_ net/minecraft/core/MappedRegistry$2/this$0 +FD: net/minecraft/core/NonNullList/f_122773_ net/minecraft/core/NonNullList/list +FD: net/minecraft/core/NonNullList/f_122774_ net/minecraft/core/NonNullList/defaultValue +FD: net/minecraft/core/PositionImpl/f_122798_ net/minecraft/core/PositionImpl/x +FD: net/minecraft/core/PositionImpl/f_122799_ net/minecraft/core/PositionImpl/y +FD: net/minecraft/core/PositionImpl/f_122800_ net/minecraft/core/PositionImpl/z +FD: net/minecraft/core/QuartPos/f_175396_ net/minecraft/core/QuartPos/BITS +FD: net/minecraft/core/QuartPos/f_175397_ net/minecraft/core/QuartPos/SIZE +FD: net/minecraft/core/QuartPos/f_175398_ net/minecraft/core/QuartPos/SECTION_TO_QUARTS_BITS +FD: net/minecraft/core/QuartPos/f_194564_ net/minecraft/core/QuartPos/MASK +FD: net/minecraft/core/Registry$1/f_206134_ net/minecraft/core/Registry$1/this$0 +FD: net/minecraft/core/Registry$2/f_254694_ net/minecraft/core/Registry$2/this$0 +FD: net/minecraft/core/RegistryAccess/f_123047_ net/minecraft/core/RegistryAccess/LOGGER +FD: net/minecraft/core/RegistryAccess/f_243945_ net/minecraft/core/RegistryAccess/EMPTY +FD: net/minecraft/core/RegistryAccess$1/f_206216_ net/minecraft/core/RegistryAccess$1/val$registries +FD: net/minecraft/core/RegistryAccess$1FrozenAccess/f_244254_ net/minecraft/core/RegistryAccess$1FrozenAccess/this$0 +FD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/f_206223_ net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/registries +FD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206233_ net/minecraft/core/RegistryAccess$RegistryEntry/key +FD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206234_ net/minecraft/core/RegistryAccess$RegistryEntry/value +FD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206354_ net/minecraft/core/RegistryCodecs$RegistryEntry/key +FD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206355_ net/minecraft/core/RegistryCodecs$RegistryEntry/id +FD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206356_ net/minecraft/core/RegistryCodecs$RegistryEntry/value +FD: net/minecraft/core/RegistrySetBuilder/f_254732_ net/minecraft/core/RegistrySetBuilder/entries +FD: net/minecraft/core/RegistrySetBuilder$1/f_254693_ net/minecraft/core/RegistrySetBuilder$1/val$original +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254627_ net/minecraft/core/RegistrySetBuilder$BuildState/errors +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254644_ net/minecraft/core/RegistrySetBuilder$BuildState/registeredValues +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254680_ net/minecraft/core/RegistrySetBuilder$BuildState/owner +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254690_ net/minecraft/core/RegistrySetBuilder$BuildState/registries +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254749_ net/minecraft/core/RegistrySetBuilder$BuildState/lookup +FD: net/minecraft/core/RegistrySetBuilder$BuildState$1/f_254676_ net/minecraft/core/RegistrySetBuilder$BuildState$1/this$0 +FD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/f_254663_ net/minecraft/core/RegistrySetBuilder$CompositeOwner/owners +FD: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/f_254742_ net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/owner +FD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254641_ net/minecraft/core/RegistrySetBuilder$RegisteredValue/lifecycle +FD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254685_ net/minecraft/core/RegistrySetBuilder$RegisteredValue/value +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_254715_ net/minecraft/core/RegistrySetBuilder$RegistryContents/values +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271144_ net/minecraft/core/RegistrySetBuilder$RegistryContents/lifecycle +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271195_ net/minecraft/core/RegistrySetBuilder$RegistryContents/key +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/f_254643_ net/minecraft/core/RegistrySetBuilder$RegistryContents$1/entries +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/f_254722_ net/minecraft/core/RegistrySetBuilder$RegistryContents$1/this$0 +FD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254689_ net/minecraft/core/RegistrySetBuilder$RegistryStub/bootstrap +FD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254728_ net/minecraft/core/RegistrySetBuilder$RegistryStub/lifecycle +FD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254738_ net/minecraft/core/RegistrySetBuilder$RegistryStub/key +FD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/f_254730_ net/minecraft/core/RegistrySetBuilder$UniversalLookup/holders +FD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254632_ net/minecraft/core/RegistrySetBuilder$ValueAndHolder/holder +FD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254683_ net/minecraft/core/RegistrySetBuilder$ValueAndHolder/value +FD: net/minecraft/core/RegistrySynchronization/f_244380_ net/minecraft/core/RegistrySynchronization/NETWORK_CODEC +FD: net/minecraft/core/RegistrySynchronization/f_244438_ net/minecraft/core/RegistrySynchronization/NETWORKABLE_REGISTRIES +FD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244392_ net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/networkCodec +FD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244545_ net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/key +FD: net/minecraft/core/Rotations/f_123146_ net/minecraft/core/Rotations/x +FD: net/minecraft/core/Rotations/f_123147_ net/minecraft/core/Rotations/y +FD: net/minecraft/core/Rotations/f_123148_ net/minecraft/core/Rotations/z +FD: net/minecraft/core/SectionPos/f_175535_ net/minecraft/core/SectionPos/SECTION_BITS +FD: net/minecraft/core/SectionPos/f_175536_ net/minecraft/core/SectionPos/SECTION_SIZE +FD: net/minecraft/core/SectionPos/f_175537_ net/minecraft/core/SectionPos/SECTION_HALF_SIZE +FD: net/minecraft/core/SectionPos/f_175538_ net/minecraft/core/SectionPos/SECTION_MAX_INDEX +FD: net/minecraft/core/SectionPos/f_175539_ net/minecraft/core/SectionPos/SECTION_MASK +FD: net/minecraft/core/SectionPos/f_175540_ net/minecraft/core/SectionPos/PACKED_X_LENGTH +FD: net/minecraft/core/SectionPos/f_175541_ net/minecraft/core/SectionPos/PACKED_Y_LENGTH +FD: net/minecraft/core/SectionPos/f_175542_ net/minecraft/core/SectionPos/PACKED_Z_LENGTH +FD: net/minecraft/core/SectionPos/f_175543_ net/minecraft/core/SectionPos/PACKED_X_MASK +FD: net/minecraft/core/SectionPos/f_175544_ net/minecraft/core/SectionPos/PACKED_Y_MASK +FD: net/minecraft/core/SectionPos/f_175545_ net/minecraft/core/SectionPos/PACKED_Z_MASK +FD: net/minecraft/core/SectionPos/f_175546_ net/minecraft/core/SectionPos/Y_OFFSET +FD: net/minecraft/core/SectionPos/f_175547_ net/minecraft/core/SectionPos/Z_OFFSET +FD: net/minecraft/core/SectionPos/f_175548_ net/minecraft/core/SectionPos/X_OFFSET +FD: net/minecraft/core/SectionPos/f_175549_ net/minecraft/core/SectionPos/RELATIVE_X_SHIFT +FD: net/minecraft/core/SectionPos/f_175550_ net/minecraft/core/SectionPos/RELATIVE_Y_SHIFT +FD: net/minecraft/core/SectionPos/f_175551_ net/minecraft/core/SectionPos/RELATIVE_Z_SHIFT +FD: net/minecraft/core/SectionPos$1/f_123254_ net/minecraft/core/SectionPos$1/cursor +FD: net/minecraft/core/SectionPos$1/f_123255_ net/minecraft/core/SectionPos$1/val$minX +FD: net/minecraft/core/SectionPos$1/f_123256_ net/minecraft/core/SectionPos$1/val$minY +FD: net/minecraft/core/SectionPos$1/f_123257_ net/minecraft/core/SectionPos$1/val$minZ +FD: net/minecraft/core/SectionPos$1/f_123258_ net/minecraft/core/SectionPos$1/val$maxX +FD: net/minecraft/core/SectionPos$1/f_123259_ net/minecraft/core/SectionPos$1/val$maxY +FD: net/minecraft/core/SectionPos$1/f_123260_ net/minecraft/core/SectionPos$1/val$maxZ +FD: net/minecraft/core/UUIDUtil/f_235867_ net/minecraft/core/UUIDUtil/CODEC +FD: net/minecraft/core/UUIDUtil/f_235868_ net/minecraft/core/UUIDUtil/UUID_BYTES +FD: net/minecraft/core/UUIDUtil/f_235869_ net/minecraft/core/UUIDUtil/UUID_PREFIX_OFFLINE_PLAYER +FD: net/minecraft/core/UUIDUtil/f_252480_ net/minecraft/core/UUIDUtil/AUTHLIB_CODEC +FD: net/minecraft/core/UUIDUtil/f_260719_ net/minecraft/core/UUIDUtil/STRING_CODEC +FD: net/minecraft/core/Vec3i/f_123285_ net/minecraft/core/Vec3i/x +FD: net/minecraft/core/Vec3i/f_123286_ net/minecraft/core/Vec3i/y +FD: net/minecraft/core/Vec3i/f_123287_ net/minecraft/core/Vec3i/CODEC +FD: net/minecraft/core/Vec3i/f_123288_ net/minecraft/core/Vec3i/ZERO +FD: net/minecraft/core/Vec3i/f_123289_ net/minecraft/core/Vec3i/z +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175606_ net/minecraft/core/cauldron/CauldronInteraction/EMPTY +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175607_ net/minecraft/core/cauldron/CauldronInteraction/WATER +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175608_ net/minecraft/core/cauldron/CauldronInteraction/LAVA +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175609_ net/minecraft/core/cauldron/CauldronInteraction/POWDER_SNOW +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175610_ net/minecraft/core/cauldron/CauldronInteraction/FILL_WATER +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175611_ net/minecraft/core/cauldron/CauldronInteraction/FILL_LAVA +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175612_ net/minecraft/core/cauldron/CauldronInteraction/FILL_POWDER_SNOW +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175613_ net/minecraft/core/cauldron/CauldronInteraction/SHULKER_BOX +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175614_ net/minecraft/core/cauldron/CauldronInteraction/BANNER +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175615_ net/minecraft/core/cauldron/CauldronInteraction/DYED_ITEM +FD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/f_123368_ net/minecraft/core/dispenser/BoatDispenseItemBehavior/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/f_123369_ net/minecraft/core/dispenser/BoatDispenseItemBehavior/type +FD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/f_235889_ net/minecraft/core/dispenser/BoatDispenseItemBehavior/isChestBoat +FD: net/minecraft/core/dispenser/DispenseItemBehavior/f_123393_ net/minecraft/core/dispenser/DispenseItemBehavior/NOOP +FD: net/minecraft/core/dispenser/DispenseItemBehavior/f_181892_ net/minecraft/core/dispenser/DispenseItemBehavior/LOGGER +FD: net/minecraft/core/dispenser/DispenseItemBehavior$16/f_123558_ net/minecraft/core/dispenser/DispenseItemBehavior$16/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$17/f_123563_ net/minecraft/core/dispenser/DispenseItemBehavior$17/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$24/f_123439_ net/minecraft/core/dispenser/DispenseItemBehavior$24/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$27/f_235893_ net/minecraft/core/dispenser/DispenseItemBehavior$27/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/f_123493_ net/minecraft/core/dispenser/DispenseItemBehavior$7$1/this$0 +FD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/f_123509_ net/minecraft/core/dispenser/DispenseItemBehavior$8$1/this$0 +FD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/f_123568_ net/minecraft/core/dispenser/OptionalDispenseItemBehavior/success +FD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/f_175749_ net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/LOGGER +FD: net/minecraft/core/particles/BlockParticleOption/f_123624_ net/minecraft/core/particles/BlockParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/BlockParticleOption/f_123625_ net/minecraft/core/particles/BlockParticleOption/type +FD: net/minecraft/core/particles/BlockParticleOption/f_123626_ net/minecraft/core/particles/BlockParticleOption/state +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175751_ net/minecraft/core/particles/DustColorTransitionOptions/SCULK_PARTICLE_COLOR +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175752_ net/minecraft/core/particles/DustColorTransitionOptions/SCULK_TO_REDSTONE +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175753_ net/minecraft/core/particles/DustColorTransitionOptions/CODEC +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175754_ net/minecraft/core/particles/DustColorTransitionOptions/DESERIALIZER +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175755_ net/minecraft/core/particles/DustColorTransitionOptions/toColor +FD: net/minecraft/core/particles/DustParticleOptions/f_123656_ net/minecraft/core/particles/DustParticleOptions/REDSTONE +FD: net/minecraft/core/particles/DustParticleOptions/f_123657_ net/minecraft/core/particles/DustParticleOptions/CODEC +FD: net/minecraft/core/particles/DustParticleOptions/f_123658_ net/minecraft/core/particles/DustParticleOptions/DESERIALIZER +FD: net/minecraft/core/particles/DustParticleOptions/f_175788_ net/minecraft/core/particles/DustParticleOptions/REDSTONE_PARTICLE_COLOR +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175798_ net/minecraft/core/particles/DustParticleOptionsBase/MIN_SCALE +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175799_ net/minecraft/core/particles/DustParticleOptionsBase/MAX_SCALE +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175800_ net/minecraft/core/particles/DustParticleOptionsBase/color +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175801_ net/minecraft/core/particles/DustParticleOptionsBase/scale +FD: net/minecraft/core/particles/ItemParticleOption/f_123700_ net/minecraft/core/particles/ItemParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/ItemParticleOption/f_123701_ net/minecraft/core/particles/ItemParticleOption/type +FD: net/minecraft/core/particles/ItemParticleOption/f_123702_ net/minecraft/core/particles/ItemParticleOption/itemStack +FD: net/minecraft/core/particles/ParticleGroup/f_175814_ net/minecraft/core/particles/ParticleGroup/SPORE_BLOSSOM +FD: net/minecraft/core/particles/ParticleGroup/f_175815_ net/minecraft/core/particles/ParticleGroup/limit +FD: net/minecraft/core/particles/ParticleType/f_123737_ net/minecraft/core/particles/ParticleType/overrideLimiter +FD: net/minecraft/core/particles/ParticleType/f_123738_ net/minecraft/core/particles/ParticleType/deserializer +FD: net/minecraft/core/particles/ParticleTypes/f_123744_ net/minecraft/core/particles/ParticleTypes/FLAME +FD: net/minecraft/core/particles/ParticleTypes/f_123745_ net/minecraft/core/particles/ParticleTypes/SOUL_FIRE_FLAME +FD: net/minecraft/core/particles/ParticleTypes/f_123746_ net/minecraft/core/particles/ParticleTypes/SOUL +FD: net/minecraft/core/particles/ParticleTypes/f_123747_ net/minecraft/core/particles/ParticleTypes/FLASH +FD: net/minecraft/core/particles/ParticleTypes/f_123748_ net/minecraft/core/particles/ParticleTypes/HAPPY_VILLAGER +FD: net/minecraft/core/particles/ParticleTypes/f_123749_ net/minecraft/core/particles/ParticleTypes/COMPOSTER +FD: net/minecraft/core/particles/ParticleTypes/f_123750_ net/minecraft/core/particles/ParticleTypes/HEART +FD: net/minecraft/core/particles/ParticleTypes/f_123751_ net/minecraft/core/particles/ParticleTypes/INSTANT_EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123752_ net/minecraft/core/particles/ParticleTypes/ITEM +FD: net/minecraft/core/particles/ParticleTypes/f_123753_ net/minecraft/core/particles/ParticleTypes/ITEM_SLIME +FD: net/minecraft/core/particles/ParticleTypes/f_123754_ net/minecraft/core/particles/ParticleTypes/ITEM_SNOWBALL +FD: net/minecraft/core/particles/ParticleTypes/f_123755_ net/minecraft/core/particles/ParticleTypes/LARGE_SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123756_ net/minecraft/core/particles/ParticleTypes/LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123757_ net/minecraft/core/particles/ParticleTypes/MYCELIUM +FD: net/minecraft/core/particles/ParticleTypes/f_123758_ net/minecraft/core/particles/ParticleTypes/NOTE +FD: net/minecraft/core/particles/ParticleTypes/f_123759_ net/minecraft/core/particles/ParticleTypes/POOF +FD: net/minecraft/core/particles/ParticleTypes/f_123760_ net/minecraft/core/particles/ParticleTypes/PORTAL +FD: net/minecraft/core/particles/ParticleTypes/f_123761_ net/minecraft/core/particles/ParticleTypes/RAIN +FD: net/minecraft/core/particles/ParticleTypes/f_123762_ net/minecraft/core/particles/ParticleTypes/SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123763_ net/minecraft/core/particles/ParticleTypes/SNEEZE +FD: net/minecraft/core/particles/ParticleTypes/f_123764_ net/minecraft/core/particles/ParticleTypes/SPIT +FD: net/minecraft/core/particles/ParticleTypes/f_123765_ net/minecraft/core/particles/ParticleTypes/SQUID_INK +FD: net/minecraft/core/particles/ParticleTypes/f_123766_ net/minecraft/core/particles/ParticleTypes/SWEEP_ATTACK +FD: net/minecraft/core/particles/ParticleTypes/f_123767_ net/minecraft/core/particles/ParticleTypes/TOTEM_OF_UNDYING +FD: net/minecraft/core/particles/ParticleTypes/f_123768_ net/minecraft/core/particles/ParticleTypes/UNDERWATER +FD: net/minecraft/core/particles/ParticleTypes/f_123769_ net/minecraft/core/particles/ParticleTypes/SPLASH +FD: net/minecraft/core/particles/ParticleTypes/f_123770_ net/minecraft/core/particles/ParticleTypes/AMBIENT_ENTITY_EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123771_ net/minecraft/core/particles/ParticleTypes/WITCH +FD: net/minecraft/core/particles/ParticleTypes/f_123772_ net/minecraft/core/particles/ParticleTypes/BUBBLE_POP +FD: net/minecraft/core/particles/ParticleTypes/f_123773_ net/minecraft/core/particles/ParticleTypes/CURRENT_DOWN +FD: net/minecraft/core/particles/ParticleTypes/f_123774_ net/minecraft/core/particles/ParticleTypes/BUBBLE_COLUMN_UP +FD: net/minecraft/core/particles/ParticleTypes/f_123775_ net/minecraft/core/particles/ParticleTypes/NAUTILUS +FD: net/minecraft/core/particles/ParticleTypes/f_123776_ net/minecraft/core/particles/ParticleTypes/DOLPHIN +FD: net/minecraft/core/particles/ParticleTypes/f_123777_ net/minecraft/core/particles/ParticleTypes/CAMPFIRE_COSY_SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123778_ net/minecraft/core/particles/ParticleTypes/CAMPFIRE_SIGNAL_SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123779_ net/minecraft/core/particles/ParticleTypes/DRIPPING_HONEY +FD: net/minecraft/core/particles/ParticleTypes/f_123780_ net/minecraft/core/particles/ParticleTypes/FALLING_HONEY +FD: net/minecraft/core/particles/ParticleTypes/f_123781_ net/minecraft/core/particles/ParticleTypes/LANDING_HONEY +FD: net/minecraft/core/particles/ParticleTypes/f_123782_ net/minecraft/core/particles/ParticleTypes/FALLING_NECTAR +FD: net/minecraft/core/particles/ParticleTypes/f_123783_ net/minecraft/core/particles/ParticleTypes/ASH +FD: net/minecraft/core/particles/ParticleTypes/f_123784_ net/minecraft/core/particles/ParticleTypes/CRIMSON_SPORE +FD: net/minecraft/core/particles/ParticleTypes/f_123785_ net/minecraft/core/particles/ParticleTypes/WARPED_SPORE +FD: net/minecraft/core/particles/ParticleTypes/f_123786_ net/minecraft/core/particles/ParticleTypes/DRIPPING_OBSIDIAN_TEAR +FD: net/minecraft/core/particles/ParticleTypes/f_123787_ net/minecraft/core/particles/ParticleTypes/FALLING_OBSIDIAN_TEAR +FD: net/minecraft/core/particles/ParticleTypes/f_123788_ net/minecraft/core/particles/ParticleTypes/LANDING_OBSIDIAN_TEAR +FD: net/minecraft/core/particles/ParticleTypes/f_123789_ net/minecraft/core/particles/ParticleTypes/REVERSE_PORTAL +FD: net/minecraft/core/particles/ParticleTypes/f_123790_ net/minecraft/core/particles/ParticleTypes/WHITE_ASH +FD: net/minecraft/core/particles/ParticleTypes/f_123791_ net/minecraft/core/particles/ParticleTypes/CODEC +FD: net/minecraft/core/particles/ParticleTypes/f_123792_ net/minecraft/core/particles/ParticleTypes/ANGRY_VILLAGER +FD: net/minecraft/core/particles/ParticleTypes/f_123794_ net/minecraft/core/particles/ParticleTypes/BLOCK +FD: net/minecraft/core/particles/ParticleTypes/f_123795_ net/minecraft/core/particles/ParticleTypes/BUBBLE +FD: net/minecraft/core/particles/ParticleTypes/f_123796_ net/minecraft/core/particles/ParticleTypes/CLOUD +FD: net/minecraft/core/particles/ParticleTypes/f_123797_ net/minecraft/core/particles/ParticleTypes/CRIT +FD: net/minecraft/core/particles/ParticleTypes/f_123798_ net/minecraft/core/particles/ParticleTypes/DAMAGE_INDICATOR +FD: net/minecraft/core/particles/ParticleTypes/f_123799_ net/minecraft/core/particles/ParticleTypes/DRAGON_BREATH +FD: net/minecraft/core/particles/ParticleTypes/f_123800_ net/minecraft/core/particles/ParticleTypes/DRIPPING_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123801_ net/minecraft/core/particles/ParticleTypes/FALLING_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123802_ net/minecraft/core/particles/ParticleTypes/LANDING_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123803_ net/minecraft/core/particles/ParticleTypes/DRIPPING_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_123804_ net/minecraft/core/particles/ParticleTypes/FALLING_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_123805_ net/minecraft/core/particles/ParticleTypes/DUST +FD: net/minecraft/core/particles/ParticleTypes/f_123806_ net/minecraft/core/particles/ParticleTypes/EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123807_ net/minecraft/core/particles/ParticleTypes/ELDER_GUARDIAN +FD: net/minecraft/core/particles/ParticleTypes/f_123808_ net/minecraft/core/particles/ParticleTypes/ENCHANTED_HIT +FD: net/minecraft/core/particles/ParticleTypes/f_123809_ net/minecraft/core/particles/ParticleTypes/ENCHANT +FD: net/minecraft/core/particles/ParticleTypes/f_123810_ net/minecraft/core/particles/ParticleTypes/END_ROD +FD: net/minecraft/core/particles/ParticleTypes/f_123811_ net/minecraft/core/particles/ParticleTypes/ENTITY_EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123812_ net/minecraft/core/particles/ParticleTypes/EXPLOSION_EMITTER +FD: net/minecraft/core/particles/ParticleTypes/f_123813_ net/minecraft/core/particles/ParticleTypes/EXPLOSION +FD: net/minecraft/core/particles/ParticleTypes/f_123814_ net/minecraft/core/particles/ParticleTypes/FALLING_DUST +FD: net/minecraft/core/particles/ParticleTypes/f_123815_ net/minecraft/core/particles/ParticleTypes/FIREWORK +FD: net/minecraft/core/particles/ParticleTypes/f_123816_ net/minecraft/core/particles/ParticleTypes/FISHING +FD: net/minecraft/core/particles/ParticleTypes/f_175820_ net/minecraft/core/particles/ParticleTypes/VIBRATION +FD: net/minecraft/core/particles/ParticleTypes/f_175821_ net/minecraft/core/particles/ParticleTypes/SNOWFLAKE +FD: net/minecraft/core/particles/ParticleTypes/f_175822_ net/minecraft/core/particles/ParticleTypes/DRIPPING_DRIPSTONE_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_175823_ net/minecraft/core/particles/ParticleTypes/FALLING_DRIPSTONE_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_175824_ net/minecraft/core/particles/ParticleTypes/DRIPPING_DRIPSTONE_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_175825_ net/minecraft/core/particles/ParticleTypes/FALLING_DRIPSTONE_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_175826_ net/minecraft/core/particles/ParticleTypes/GLOW_SQUID_INK +FD: net/minecraft/core/particles/ParticleTypes/f_175827_ net/minecraft/core/particles/ParticleTypes/GLOW +FD: net/minecraft/core/particles/ParticleTypes/f_175828_ net/minecraft/core/particles/ParticleTypes/WAX_ON +FD: net/minecraft/core/particles/ParticleTypes/f_175829_ net/minecraft/core/particles/ParticleTypes/WAX_OFF +FD: net/minecraft/core/particles/ParticleTypes/f_175830_ net/minecraft/core/particles/ParticleTypes/ELECTRIC_SPARK +FD: net/minecraft/core/particles/ParticleTypes/f_175831_ net/minecraft/core/particles/ParticleTypes/SCRAPE +FD: net/minecraft/core/particles/ParticleTypes/f_175832_ net/minecraft/core/particles/ParticleTypes/FALLING_SPORE_BLOSSOM +FD: net/minecraft/core/particles/ParticleTypes/f_175833_ net/minecraft/core/particles/ParticleTypes/SPORE_BLOSSOM_AIR +FD: net/minecraft/core/particles/ParticleTypes/f_175834_ net/minecraft/core/particles/ParticleTypes/SMALL_FLAME +FD: net/minecraft/core/particles/ParticleTypes/f_175836_ net/minecraft/core/particles/ParticleTypes/DUST_COLOR_TRANSITION +FD: net/minecraft/core/particles/ParticleTypes/f_194652_ net/minecraft/core/particles/ParticleTypes/BLOCK_MARKER +FD: net/minecraft/core/particles/ParticleTypes/f_235898_ net/minecraft/core/particles/ParticleTypes/SCULK_SOUL +FD: net/minecraft/core/particles/ParticleTypes/f_235899_ net/minecraft/core/particles/ParticleTypes/SCULK_CHARGE +FD: net/minecraft/core/particles/ParticleTypes/f_235900_ net/minecraft/core/particles/ParticleTypes/SCULK_CHARGE_POP +FD: net/minecraft/core/particles/ParticleTypes/f_235901_ net/minecraft/core/particles/ParticleTypes/SHRIEK +FD: net/minecraft/core/particles/ParticleTypes/f_235902_ net/minecraft/core/particles/ParticleTypes/SONIC_BOOM +FD: net/minecraft/core/particles/ParticleTypes/f_276452_ net/minecraft/core/particles/ParticleTypes/CHERRY_LEAVES +FD: net/minecraft/core/particles/ParticleTypes/f_276512_ net/minecraft/core/particles/ParticleTypes/EGG_CRACK +FD: net/minecraft/core/particles/ParticleTypes$1/f_123827_ net/minecraft/core/particles/ParticleTypes$1/val$codec +FD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235912_ net/minecraft/core/particles/SculkChargeParticleOptions/CODEC +FD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235913_ net/minecraft/core/particles/SculkChargeParticleOptions/DESERIALIZER +FD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235914_ net/minecraft/core/particles/SculkChargeParticleOptions/roll +FD: net/minecraft/core/particles/ShriekParticleOption/f_235944_ net/minecraft/core/particles/ShriekParticleOption/CODEC +FD: net/minecraft/core/particles/ShriekParticleOption/f_235945_ net/minecraft/core/particles/ShriekParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/ShriekParticleOption/f_235946_ net/minecraft/core/particles/ShriekParticleOption/delay +FD: net/minecraft/core/particles/SimpleParticleType/f_123833_ net/minecraft/core/particles/SimpleParticleType/DESERIALIZER +FD: net/minecraft/core/particles/SimpleParticleType/f_123834_ net/minecraft/core/particles/SimpleParticleType/codec +FD: net/minecraft/core/particles/VibrationParticleOption/f_175842_ net/minecraft/core/particles/VibrationParticleOption/CODEC +FD: net/minecraft/core/particles/VibrationParticleOption/f_175843_ net/minecraft/core/particles/VibrationParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/VibrationParticleOption/f_235972_ net/minecraft/core/particles/VibrationParticleOption/destination +FD: net/minecraft/core/particles/VibrationParticleOption/f_235973_ net/minecraft/core/particles/VibrationParticleOption/arrivalInTicks +FD: net/minecraft/core/registries/BuiltInRegistries/f_256719_ net/minecraft/core/registries/BuiltInRegistries/LOOT_SCORE_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256726_ net/minecraft/core/registries/BuiltInRegistries/GAME_EVENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256733_ net/minecraft/core/registries/BuiltInRegistries/SENSOR_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256735_ net/minecraft/core/registries/BuiltInRegistries/VILLAGER_PROFESSION +FD: net/minecraft/core/registries/BuiltInRegistries/f_256736_ net/minecraft/core/registries/BuiltInRegistries/LOOT_NBT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256737_ net/minecraft/core/registries/BuiltInRegistries/BIOME_SOURCE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256742_ net/minecraft/core/registries/BuiltInRegistries/ROOT_PLACER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256744_ net/minecraft/core/registries/BuiltInRegistries/LOGGER +FD: net/minecraft/core/registries/BuiltInRegistries/f_256751_ net/minecraft/core/registries/BuiltInRegistries/LOADERS +FD: net/minecraft/core/registries/BuiltInRegistries/f_256753_ net/minecraft/core/registries/BuiltInRegistries/LOOT_FUNCTION_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256754_ net/minecraft/core/registries/BuiltInRegistries/CAT_VARIANT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256760_ net/minecraft/core/registries/BuiltInRegistries/BLOCKSTATE_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256763_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256769_ net/minecraft/core/registries/BuiltInRegistries/RECIPE_SERIALIZER +FD: net/minecraft/core/registries/BuiltInRegistries/f_256770_ net/minecraft/core/registries/BuiltInRegistries/FROG_VARIANT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256771_ net/minecraft/core/registries/BuiltInRegistries/CUSTOM_STAT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256779_ net/minecraft/core/registries/BuiltInRegistries/ROOT_REGISTRY_NAME +FD: net/minecraft/core/registries/BuiltInRegistries/f_256780_ net/minecraft/core/registries/BuiltInRegistries/ENTITY_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256784_ net/minecraft/core/registries/BuiltInRegistries/MEMORY_MODULE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256785_ net/minecraft/core/registries/BuiltInRegistries/ACTIVITY +FD: net/minecraft/core/registries/BuiltInRegistries/f_256810_ net/minecraft/core/registries/BuiltInRegistries/FEATURE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256818_ net/minecraft/core/registries/BuiltInRegistries/MENU +FD: net/minecraft/core/registries/BuiltInRegistries/f_256846_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_POOL_ELEMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256861_ net/minecraft/core/registries/BuiltInRegistries/FOLIAGE_PLACER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256870_ net/minecraft/core/registries/BuiltInRegistries/HEIGHT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256876_ net/minecraft/core/registries/BuiltInRegistries/ENCHANTMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256878_ net/minecraft/core/registries/BuiltInRegistries/BANNER_PATTERN +FD: net/minecraft/core/registries/BuiltInRegistries/f_256885_ net/minecraft/core/registries/BuiltInRegistries/MATERIAL_CONDITION +FD: net/minecraft/core/registries/BuiltInRegistries/f_256894_ net/minecraft/core/registries/BuiltInRegistries/SOUND_EVENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256896_ net/minecraft/core/registries/BuiltInRegistries/INSTRUMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256897_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_PROCESSOR +FD: net/minecraft/core/registries/BuiltInRegistries/f_256898_ net/minecraft/core/registries/BuiltInRegistries/MATERIAL_RULE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256899_ net/minecraft/core/registries/BuiltInRegistries/STAT_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256906_ net/minecraft/core/registries/BuiltInRegistries/BLOCK_PREDICATE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256914_ net/minecraft/core/registries/BuiltInRegistries/CHUNK_GENERATOR +FD: net/minecraft/core/registries/BuiltInRegistries/f_256920_ net/minecraft/core/registries/BuiltInRegistries/TRUNK_PLACER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256926_ net/minecraft/core/registries/BuiltInRegistries/FLOAT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256934_ net/minecraft/core/registries/BuiltInRegistries/VILLAGER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256935_ net/minecraft/core/registries/BuiltInRegistries/WRITABLE_REGISTRY +FD: net/minecraft/core/registries/BuiltInRegistries/f_256940_ net/minecraft/core/registries/BuiltInRegistries/CHUNK_STATUS +FD: net/minecraft/core/registries/BuiltInRegistries/f_256941_ net/minecraft/core/registries/BuiltInRegistries/POINT_OF_INTEREST_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256942_ net/minecraft/core/registries/BuiltInRegistries/INT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256950_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_PLACEMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256951_ net/minecraft/core/registries/BuiltInRegistries/ATTRIBUTE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256957_ net/minecraft/core/registries/BuiltInRegistries/POS_RULE_TEST +FD: net/minecraft/core/registries/BuiltInRegistries/f_256958_ net/minecraft/core/registries/BuiltInRegistries/FEATURE_SIZE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256962_ net/minecraft/core/registries/BuiltInRegistries/SCHEDULE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256972_ net/minecraft/core/registries/BuiltInRegistries/POSITION_SOURCE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256974_ net/minecraft/core/registries/BuiltInRegistries/MOB_EFFECT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256975_ net/minecraft/core/registries/BuiltInRegistries/BLOCK +FD: net/minecraft/core/registries/BuiltInRegistries/f_256978_ net/minecraft/core/registries/BuiltInRegistries/RULE_TEST +FD: net/minecraft/core/registries/BuiltInRegistries/f_256979_ net/minecraft/core/registries/BuiltInRegistries/COMMAND_ARGUMENT_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256980_ net/minecraft/core/registries/BuiltInRegistries/POTION +FD: net/minecraft/core/registries/BuiltInRegistries/f_256986_ net/minecraft/core/registries/BuiltInRegistries/PLACEMENT_MODIFIER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256987_ net/minecraft/core/registries/BuiltInRegistries/TREE_DECORATOR_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256990_ net/minecraft/core/registries/BuiltInRegistries/RECIPE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256991_ net/minecraft/core/registries/BuiltInRegistries/LOOT_CONDITION_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257001_ net/minecraft/core/registries/BuiltInRegistries/CARVER +FD: net/minecraft/core/registries/BuiltInRegistries/f_257002_ net/minecraft/core/registries/BuiltInRegistries/DENSITY_FUNCTION_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257014_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_PIECE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257020_ net/minecraft/core/registries/BuiltInRegistries/FLUID +FD: net/minecraft/core/registries/BuiltInRegistries/f_257029_ net/minecraft/core/registries/BuiltInRegistries/LOOT_NUMBER_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257033_ net/minecraft/core/registries/BuiltInRegistries/ITEM +FD: net/minecraft/core/registries/BuiltInRegistries/f_257034_ net/minecraft/core/registries/BuiltInRegistries/PARTICLE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257035_ net/minecraft/core/registries/BuiltInRegistries/LOOT_POOL_ENTRY_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257047_ net/minecraft/core/registries/BuiltInRegistries/REGISTRY +FD: net/minecraft/core/registries/BuiltInRegistries/f_257049_ net/minecraft/core/registries/BuiltInRegistries/BLOCK_ENTITY_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257051_ net/minecraft/core/registries/BuiltInRegistries/PAINTING_VARIANT +FD: net/minecraft/core/registries/BuiltInRegistries/f_271353_ net/minecraft/core/registries/BuiltInRegistries/DECORATED_POT_PATTERNS +FD: net/minecraft/core/registries/BuiltInRegistries/f_276464_ net/minecraft/core/registries/BuiltInRegistries/RULE_BLOCK_ENTITY_MODIFIER +FD: net/minecraft/core/registries/BuiltInRegistries/f_279662_ net/minecraft/core/registries/BuiltInRegistries/CREATIVE_MODE_TAB +FD: net/minecraft/core/registries/Registries/f_256720_ net/minecraft/core/registries/Registries/FEATURE_SIZE_TYPE +FD: net/minecraft/core/registries/Registries/f_256723_ net/minecraft/core/registries/Registries/SCHEDULE +FD: net/minecraft/core/registries/Registries/f_256724_ net/minecraft/core/registries/Registries/FLAT_LEVEL_GENERATOR_PRESET +FD: net/minecraft/core/registries/Registries/f_256728_ net/minecraft/core/registries/Registries/ATTRIBUTE +FD: net/minecraft/core/registries/Registries/f_256729_ net/minecraft/core/registries/Registries/WORLD_PRESET +FD: net/minecraft/core/registries/Registries/f_256732_ net/minecraft/core/registries/Registries/FROG_VARIANT +FD: net/minecraft/core/registries/Registries/f_256746_ net/minecraft/core/registries/Registries/DENSITY_FUNCTION_TYPE +FD: net/minecraft/core/registries/Registries/f_256747_ net/minecraft/core/registries/Registries/BLOCK +FD: net/minecraft/core/registries/Registries/f_256749_ net/minecraft/core/registries/Registries/VILLAGER_PROFESSION +FD: net/minecraft/core/registries/Registries/f_256755_ net/minecraft/core/registries/Registries/CHUNK_STATUS +FD: net/minecraft/core/registries/Registries/f_256757_ net/minecraft/core/registries/Registries/HEIGHT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256762_ net/minecraft/core/registries/Registries/ENCHANTMENT +FD: net/minecraft/core/registries/Registries/f_256764_ net/minecraft/core/registries/Registries/RECIPE_SERIALIZER +FD: net/minecraft/core/registries/Registries/f_256768_ net/minecraft/core/registries/Registries/ROOT_PLACER_TYPE +FD: net/minecraft/core/registries/Registries/f_256774_ net/minecraft/core/registries/Registries/BLOCK_PREDICATE_TYPE +FD: net/minecraft/core/registries/Registries/f_256783_ net/minecraft/core/registries/Registries/CHUNK_GENERATOR +FD: net/minecraft/core/registries/Registries/f_256786_ net/minecraft/core/registries/Registries/STRUCTURE_PIECE +FD: net/minecraft/core/registries/Registries/f_256787_ net/minecraft/core/registries/Registries/DIMENSION_TYPE +FD: net/minecraft/core/registries/Registries/f_256792_ net/minecraft/core/registries/Registries/POSITION_SOURCE_TYPE +FD: net/minecraft/core/registries/Registries/f_256793_ net/minecraft/core/registries/Registries/MATERIAL_CONDITION +FD: net/minecraft/core/registries/Registries/f_256798_ net/minecraft/core/registries/Registries/MENU +FD: net/minecraft/core/registries/Registries/f_256805_ net/minecraft/core/registries/Registries/POINT_OF_INTEREST_TYPE +FD: net/minecraft/core/registries/Registries/f_256808_ net/minecraft/core/registries/Registries/FLUID +FD: net/minecraft/core/registries/Registries/f_256812_ net/minecraft/core/registries/Registries/CARVER +FD: net/minecraft/core/registries/Registries/f_256815_ net/minecraft/core/registries/Registries/MATERIAL_RULE +FD: net/minecraft/core/registries/Registries/f_256826_ net/minecraft/core/registries/Registries/BIOME_SOURCE +FD: net/minecraft/core/registries/Registries/f_256827_ net/minecraft/core/registries/Registries/GAME_EVENT +FD: net/minecraft/core/registries/Registries/f_256829_ net/minecraft/core/registries/Registries/LOOT_NUMBER_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256833_ net/minecraft/core/registries/Registries/FEATURE +FD: net/minecraft/core/registries/Registries/f_256836_ net/minecraft/core/registries/Registries/PAINTING_VARIANT +FD: net/minecraft/core/registries/Registries/f_256840_ net/minecraft/core/registries/Registries/SOUND_EVENT +FD: net/minecraft/core/registries/Registries/f_256843_ net/minecraft/core/registries/Registries/PLACEMENT_MODIFIER_TYPE +FD: net/minecraft/core/registries/Registries/f_256845_ net/minecraft/core/registries/Registries/TREE_DECORATOR_TYPE +FD: net/minecraft/core/registries/Registries/f_256849_ net/minecraft/core/registries/Registries/STAT_TYPE +FD: net/minecraft/core/registries/Registries/f_256858_ net/minecraft/core/registries/Registries/DIMENSION +FD: net/minecraft/core/registries/Registries/f_256862_ net/minecraft/core/registries/Registries/LEVEL_STEM +FD: net/minecraft/core/registries/Registries/f_256865_ net/minecraft/core/registries/Registries/NOISE +FD: net/minecraft/core/registries/Registries/f_256871_ net/minecraft/core/registries/Registries/LOOT_NBT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256873_ net/minecraft/core/registries/Registries/CHAT_TYPE +FD: net/minecraft/core/registries/Registries/f_256887_ net/minecraft/core/registries/Registries/CUSTOM_STAT +FD: net/minecraft/core/registries/Registries/f_256888_ net/minecraft/core/registries/Registries/STRUCTURE_PLACEMENT +FD: net/minecraft/core/registries/Registries/f_256890_ net/minecraft/core/registries/Registries/PARTICLE_TYPE +FD: net/minecraft/core/registries/Registries/f_256891_ net/minecraft/core/registries/Registries/BLOCK_STATE_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256892_ net/minecraft/core/registries/Registries/FLOAT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256905_ net/minecraft/core/registries/Registries/FOLIAGE_PLACER_TYPE +FD: net/minecraft/core/registries/Registries/f_256911_ net/minecraft/core/registries/Registries/CONFIGURED_FEATURE +FD: net/minecraft/core/registries/Registries/f_256913_ net/minecraft/core/registries/Registries/ITEM +FD: net/minecraft/core/registries/Registries/f_256922_ net/minecraft/core/registries/Registries/BLOCK_ENTITY_TYPE +FD: net/minecraft/core/registries/Registries/f_256924_ net/minecraft/core/registries/Registries/LOOT_SCORE_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256929_ net/minecraft/core/registries/Registries/MOB_EFFECT +FD: net/minecraft/core/registries/Registries/f_256932_ net/minecraft/core/registries/Registries/NOISE_SETTINGS +FD: net/minecraft/core/registries/Registries/f_256937_ net/minecraft/core/registries/Registries/SENSOR_TYPE +FD: net/minecraft/core/registries/Registries/f_256938_ net/minecraft/core/registries/Registries/STRUCTURE_TYPE +FD: net/minecraft/core/registries/Registries/f_256939_ net/minecraft/core/registries/Registries/ENTITY_TYPE +FD: net/minecraft/core/registries/Registries/f_256944_ net/minecraft/core/registries/Registries/STRUCTURE +FD: net/minecraft/core/registries/Registries/f_256947_ net/minecraft/core/registries/Registries/RULE_TEST +FD: net/minecraft/core/registries/Registries/f_256948_ net/minecraft/core/registries/Registries/TEMPLATE_POOL +FD: net/minecraft/core/registries/Registries/f_256949_ net/minecraft/core/registries/Registries/INT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256952_ net/minecraft/core/registries/Registries/BIOME +FD: net/minecraft/core/registries/Registries/f_256954_ net/minecraft/core/registries/Registries/RECIPE_TYPE +FD: net/minecraft/core/registries/Registries/f_256963_ net/minecraft/core/registries/Registries/TRUNK_PLACER_TYPE +FD: net/minecraft/core/registries/Registries/f_256969_ net/minecraft/core/registries/Registries/BANNER_PATTERN +FD: net/minecraft/core/registries/Registries/f_256973_ net/minecraft/core/registries/Registries/POTION +FD: net/minecraft/core/registries/Registries/f_256976_ net/minecraft/core/registries/Registries/LOOT_CONDITION_TYPE +FD: net/minecraft/core/registries/Registries/f_256982_ net/minecraft/core/registries/Registries/COMMAND_ARGUMENT_TYPE +FD: net/minecraft/core/registries/Registries/f_256983_ net/minecraft/core/registries/Registries/STRUCTURE_PROCESSOR +FD: net/minecraft/core/registries/Registries/f_256988_ net/minecraft/core/registries/Registries/PLACED_FEATURE +FD: net/minecraft/core/registries/Registries/f_256998_ net/minecraft/core/registries/Registries/STRUCTURE_SET +FD: net/minecraft/core/registries/Registries/f_257003_ net/minecraft/core/registries/Registries/CONFIGURED_CARVER +FD: net/minecraft/core/registries/Registries/f_257006_ net/minecraft/core/registries/Registries/CAT_VARIANT +FD: net/minecraft/core/registries/Registries/f_257009_ net/minecraft/core/registries/Registries/POS_RULE_TEST +FD: net/minecraft/core/registries/Registries/f_257010_ net/minecraft/core/registries/Registries/INSTRUMENT +FD: net/minecraft/core/registries/Registries/f_257011_ net/minecraft/core/registries/Registries/PROCESSOR_LIST +FD: net/minecraft/core/registries/Registries/f_257015_ net/minecraft/core/registries/Registries/LOOT_FUNCTION_TYPE +FD: net/minecraft/core/registries/Registries/f_257019_ net/minecraft/core/registries/Registries/VILLAGER_TYPE +FD: net/minecraft/core/registries/Registries/f_257023_ net/minecraft/core/registries/Registries/MEMORY_MODULE_TYPE +FD: net/minecraft/core/registries/Registries/f_257024_ net/minecraft/core/registries/Registries/STRUCTURE_POOL_ELEMENT +FD: net/minecraft/core/registries/Registries/f_257025_ net/minecraft/core/registries/Registries/ACTIVITY +FD: net/minecraft/core/registries/Registries/f_257032_ net/minecraft/core/registries/Registries/LOOT_POOL_ENTRY_TYPE +FD: net/minecraft/core/registries/Registries/f_257040_ net/minecraft/core/registries/Registries/DENSITY_FUNCTION +FD: net/minecraft/core/registries/Registries/f_266063_ net/minecraft/core/registries/Registries/TRIM_PATTERN +FD: net/minecraft/core/registries/Registries/f_266076_ net/minecraft/core/registries/Registries/TRIM_MATERIAL +FD: net/minecraft/core/registries/Registries/f_268580_ net/minecraft/core/registries/Registries/DAMAGE_TYPE +FD: net/minecraft/core/registries/Registries/f_271200_ net/minecraft/core/registries/Registries/DECORATED_POT_PATTERNS +FD: net/minecraft/core/registries/Registries/f_273919_ net/minecraft/core/registries/Registries/MULTI_NOISE_BIOME_SOURCE_PARAMETER_LIST +FD: net/minecraft/core/registries/Registries/f_276428_ net/minecraft/core/registries/Registries/RULE_BLOCK_ENTITY_MODIFIER +FD: net/minecraft/core/registries/Registries/f_279569_ net/minecraft/core/registries/Registries/CREATIVE_MODE_TAB +FD: net/minecraft/data/BlockFamilies/f_175870_ net/minecraft/data/BlockFamilies/WAXED_WEATHERED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175871_ net/minecraft/data/BlockFamilies/WAXED_WEATHERED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175872_ net/minecraft/data/BlockFamilies/OXIDIZED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175873_ net/minecraft/data/BlockFamilies/OXIDIZED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175874_ net/minecraft/data/BlockFamilies/WAXED_OXIDIZED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175875_ net/minecraft/data/BlockFamilies/WAXED_OXIDIZED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175876_ net/minecraft/data/BlockFamilies/COBBLESTONE +FD: net/minecraft/data/BlockFamilies/f_175877_ net/minecraft/data/BlockFamilies/MOSSY_COBBLESTONE +FD: net/minecraft/data/BlockFamilies/f_175878_ net/minecraft/data/BlockFamilies/DIORITE +FD: net/minecraft/data/BlockFamilies/f_175879_ net/minecraft/data/BlockFamilies/POLISHED_DIORITE +FD: net/minecraft/data/BlockFamilies/f_175880_ net/minecraft/data/BlockFamilies/GRANITE +FD: net/minecraft/data/BlockFamilies/f_175881_ net/minecraft/data/BlockFamilies/POLISHED_GRANITE +FD: net/minecraft/data/BlockFamilies/f_175882_ net/minecraft/data/BlockFamilies/NETHER_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175883_ net/minecraft/data/BlockFamilies/RED_NETHER_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175884_ net/minecraft/data/BlockFamilies/PRISMARINE +FD: net/minecraft/data/BlockFamilies/f_175885_ net/minecraft/data/BlockFamilies/PURPUR +FD: net/minecraft/data/BlockFamilies/f_175886_ net/minecraft/data/BlockFamilies/PRISMARINE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175887_ net/minecraft/data/BlockFamilies/DARK_PRISMARINE +FD: net/minecraft/data/BlockFamilies/f_175888_ net/minecraft/data/BlockFamilies/QUARTZ +FD: net/minecraft/data/BlockFamilies/f_175889_ net/minecraft/data/BlockFamilies/SMOOTH_QUARTZ +FD: net/minecraft/data/BlockFamilies/f_175890_ net/minecraft/data/BlockFamilies/SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175891_ net/minecraft/data/BlockFamilies/CUT_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175892_ net/minecraft/data/BlockFamilies/SMOOTH_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175893_ net/minecraft/data/BlockFamilies/RED_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175894_ net/minecraft/data/BlockFamilies/CUT_RED_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175895_ net/minecraft/data/BlockFamilies/SMOOTH_RED_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175896_ net/minecraft/data/BlockFamilies/ACACIA_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175897_ net/minecraft/data/BlockFamilies/STONE +FD: net/minecraft/data/BlockFamilies/f_175898_ net/minecraft/data/BlockFamilies/STONE_BRICK +FD: net/minecraft/data/BlockFamilies/f_175899_ net/minecraft/data/BlockFamilies/DEEPSLATE +FD: net/minecraft/data/BlockFamilies/f_175900_ net/minecraft/data/BlockFamilies/COBBLED_DEEPSLATE +FD: net/minecraft/data/BlockFamilies/f_175901_ net/minecraft/data/BlockFamilies/POLISHED_DEEPSLATE +FD: net/minecraft/data/BlockFamilies/f_175902_ net/minecraft/data/BlockFamilies/DEEPSLATE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175903_ net/minecraft/data/BlockFamilies/DEEPSLATE_TILES +FD: net/minecraft/data/BlockFamilies/f_175904_ net/minecraft/data/BlockFamilies/MAP +FD: net/minecraft/data/BlockFamilies/f_175905_ net/minecraft/data/BlockFamilies/RECIPE_GROUP_PREFIX_WOODEN +FD: net/minecraft/data/BlockFamilies/f_175906_ net/minecraft/data/BlockFamilies/RECIPE_UNLOCKED_BY_HAS_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175907_ net/minecraft/data/BlockFamilies/BIRCH_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175908_ net/minecraft/data/BlockFamilies/CRIMSON_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175909_ net/minecraft/data/BlockFamilies/JUNGLE_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175910_ net/minecraft/data/BlockFamilies/OAK_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175911_ net/minecraft/data/BlockFamilies/DARK_OAK_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175912_ net/minecraft/data/BlockFamilies/SPRUCE_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175913_ net/minecraft/data/BlockFamilies/WARPED_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175914_ net/minecraft/data/BlockFamilies/ANDESITE +FD: net/minecraft/data/BlockFamilies/f_175915_ net/minecraft/data/BlockFamilies/POLISHED_ANDESITE +FD: net/minecraft/data/BlockFamilies/f_175916_ net/minecraft/data/BlockFamilies/BLACKSTONE +FD: net/minecraft/data/BlockFamilies/f_175917_ net/minecraft/data/BlockFamilies/POLISHED_BLACKSTONE +FD: net/minecraft/data/BlockFamilies/f_175918_ net/minecraft/data/BlockFamilies/POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175919_ net/minecraft/data/BlockFamilies/BRICKS +FD: net/minecraft/data/BlockFamilies/f_175920_ net/minecraft/data/BlockFamilies/END_STONE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175921_ net/minecraft/data/BlockFamilies/MOSSY_STONE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175922_ net/minecraft/data/BlockFamilies/COPPER_BLOCK +FD: net/minecraft/data/BlockFamilies/f_175923_ net/minecraft/data/BlockFamilies/CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175924_ net/minecraft/data/BlockFamilies/WAXED_COPPER_BLOCK +FD: net/minecraft/data/BlockFamilies/f_175925_ net/minecraft/data/BlockFamilies/WAXED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175926_ net/minecraft/data/BlockFamilies/EXPOSED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175927_ net/minecraft/data/BlockFamilies/EXPOSED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175928_ net/minecraft/data/BlockFamilies/WAXED_EXPOSED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175929_ net/minecraft/data/BlockFamilies/WAXED_EXPOSED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175930_ net/minecraft/data/BlockFamilies/WEATHERED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175931_ net/minecraft/data/BlockFamilies/WEATHERED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_235985_ net/minecraft/data/BlockFamilies/MANGROVE_PLANKS +FD: net/minecraft/data/BlockFamilies/f_235986_ net/minecraft/data/BlockFamilies/MUD_BRICKS +FD: net/minecraft/data/BlockFamilies/f_244520_ net/minecraft/data/BlockFamilies/BAMBOO_MOSAIC +FD: net/minecraft/data/BlockFamilies/f_244546_ net/minecraft/data/BlockFamilies/BAMBOO_PLANKS +FD: net/minecraft/data/BlockFamilies/f_271218_ net/minecraft/data/BlockFamilies/CHERRY_PLANKS +FD: net/minecraft/data/BlockFamily/f_175943_ net/minecraft/data/BlockFamily/baseBlock +FD: net/minecraft/data/BlockFamily/f_175944_ net/minecraft/data/BlockFamily/variants +FD: net/minecraft/data/BlockFamily/f_175945_ net/minecraft/data/BlockFamily/generateModel +FD: net/minecraft/data/BlockFamily/f_175946_ net/minecraft/data/BlockFamily/generateRecipe +FD: net/minecraft/data/BlockFamily/f_175947_ net/minecraft/data/BlockFamily/recipeGroupPrefix +FD: net/minecraft/data/BlockFamily/f_175948_ net/minecraft/data/BlockFamily/recipeUnlockedBy +FD: net/minecraft/data/BlockFamily/f_244407_ net/minecraft/data/BlockFamily/requiredFeatures +FD: net/minecraft/data/BlockFamily$Builder/f_175959_ net/minecraft/data/BlockFamily$Builder/family +FD: net/minecraft/data/BlockFamily$Variant/$VALUES net/minecraft/data/BlockFamily$Variant/$VALUES +FD: net/minecraft/data/BlockFamily$Variant/BUTTON net/minecraft/data/BlockFamily$Variant/BUTTON +FD: net/minecraft/data/BlockFamily$Variant/CHISELED net/minecraft/data/BlockFamily$Variant/CHISELED +FD: net/minecraft/data/BlockFamily$Variant/CRACKED net/minecraft/data/BlockFamily$Variant/CRACKED +FD: net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE +FD: net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE_GATE net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE_GATE +FD: net/minecraft/data/BlockFamily$Variant/CUT net/minecraft/data/BlockFamily$Variant/CUT +FD: net/minecraft/data/BlockFamily$Variant/DOOR net/minecraft/data/BlockFamily$Variant/DOOR +FD: net/minecraft/data/BlockFamily$Variant/FENCE net/minecraft/data/BlockFamily$Variant/FENCE +FD: net/minecraft/data/BlockFamily$Variant/FENCE_GATE net/minecraft/data/BlockFamily$Variant/FENCE_GATE +FD: net/minecraft/data/BlockFamily$Variant/MOSAIC net/minecraft/data/BlockFamily$Variant/MOSAIC +FD: net/minecraft/data/BlockFamily$Variant/POLISHED net/minecraft/data/BlockFamily$Variant/POLISHED +FD: net/minecraft/data/BlockFamily$Variant/PRESSURE_PLATE net/minecraft/data/BlockFamily$Variant/PRESSURE_PLATE +FD: net/minecraft/data/BlockFamily$Variant/SIGN net/minecraft/data/BlockFamily$Variant/SIGN +FD: net/minecraft/data/BlockFamily$Variant/SLAB net/minecraft/data/BlockFamily$Variant/SLAB +FD: net/minecraft/data/BlockFamily$Variant/STAIRS net/minecraft/data/BlockFamily$Variant/STAIRS +FD: net/minecraft/data/BlockFamily$Variant/TRAPDOOR net/minecraft/data/BlockFamily$Variant/TRAPDOOR +FD: net/minecraft/data/BlockFamily$Variant/WALL net/minecraft/data/BlockFamily$Variant/WALL +FD: net/minecraft/data/BlockFamily$Variant/WALL_SIGN net/minecraft/data/BlockFamily$Variant/WALL_SIGN +FD: net/minecraft/data/BlockFamily$Variant/f_176013_ net/minecraft/data/BlockFamily$Variant/name +FD: net/minecraft/data/CachedOutput/f_236016_ net/minecraft/data/CachedOutput/NO_CACHE +FD: net/minecraft/data/DataGenerator/f_123905_ net/minecraft/data/DataGenerator/LOGGER +FD: net/minecraft/data/DataGenerator/f_236026_ net/minecraft/data/DataGenerator/providersToRun +FD: net/minecraft/data/DataGenerator/f_236027_ net/minecraft/data/DataGenerator/version +FD: net/minecraft/data/DataGenerator/f_236028_ net/minecraft/data/DataGenerator/alwaysGenerate +FD: net/minecraft/data/DataGenerator/f_243753_ net/minecraft/data/DataGenerator/rootOutputFolder +FD: net/minecraft/data/DataGenerator/f_244116_ net/minecraft/data/DataGenerator/vanillaPackOutput +FD: net/minecraft/data/DataGenerator/f_252429_ net/minecraft/data/DataGenerator/allProviderIds +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252435_ net/minecraft/data/DataGenerator$PackGenerator/toRun +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252464_ net/minecraft/data/DataGenerator$PackGenerator/providerPrefix +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252503_ net/minecraft/data/DataGenerator$PackGenerator/output +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252527_ net/minecraft/data/DataGenerator$PackGenerator/this$0 +FD: net/minecraft/data/DataProvider/f_236067_ net/minecraft/data/DataProvider/FIXED_ORDER_FIELDS +FD: net/minecraft/data/DataProvider/f_236068_ net/minecraft/data/DataProvider/KEY_COMPARATOR +FD: net/minecraft/data/DataProvider/f_252483_ net/minecraft/data/DataProvider/LOGGER +FD: net/minecraft/data/HashCache/f_123926_ net/minecraft/data/HashCache/LOGGER +FD: net/minecraft/data/HashCache/f_236078_ net/minecraft/data/HashCache/HEADER_MARKER +FD: net/minecraft/data/HashCache/f_236079_ net/minecraft/data/HashCache/rootDir +FD: net/minecraft/data/HashCache/f_236080_ net/minecraft/data/HashCache/cacheDir +FD: net/minecraft/data/HashCache/f_236081_ net/minecraft/data/HashCache/versionId +FD: net/minecraft/data/HashCache/f_236083_ net/minecraft/data/HashCache/cachesToWrite +FD: net/minecraft/data/HashCache/f_236084_ net/minecraft/data/HashCache/cachePaths +FD: net/minecraft/data/HashCache/f_236085_ net/minecraft/data/HashCache/initialCount +FD: net/minecraft/data/HashCache/f_252434_ net/minecraft/data/HashCache/writes +FD: net/minecraft/data/HashCache/f_252445_ net/minecraft/data/HashCache/caches +FD: net/minecraft/data/HashCache$CacheUpdater/f_236113_ net/minecraft/data/HashCache$CacheUpdater/oldCache +FD: net/minecraft/data/HashCache$CacheUpdater/f_236114_ net/minecraft/data/HashCache$CacheUpdater/newCache +FD: net/minecraft/data/HashCache$CacheUpdater/f_236115_ net/minecraft/data/HashCache$CacheUpdater/writes +FD: net/minecraft/data/HashCache$CacheUpdater/f_252426_ net/minecraft/data/HashCache$CacheUpdater/this$0 +FD: net/minecraft/data/HashCache$CacheUpdater/f_252460_ net/minecraft/data/HashCache$CacheUpdater/closed +FD: net/minecraft/data/HashCache$CacheUpdater/f_252505_ net/minecraft/data/HashCache$CacheUpdater/provider +FD: net/minecraft/data/HashCache$ProviderCache/f_236126_ net/minecraft/data/HashCache$ProviderCache/version +FD: net/minecraft/data/HashCache$ProviderCache/f_236127_ net/minecraft/data/HashCache$ProviderCache/data +FD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252424_ net/minecraft/data/HashCache$ProviderCacheBuilder/version +FD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252466_ net/minecraft/data/HashCache$ProviderCacheBuilder/data +FD: net/minecraft/data/HashCache$UpdateResult/f_252422_ net/minecraft/data/HashCache$UpdateResult/providerId +FD: net/minecraft/data/HashCache$UpdateResult/f_252492_ net/minecraft/data/HashCache$UpdateResult/writes +FD: net/minecraft/data/HashCache$UpdateResult/f_252528_ net/minecraft/data/HashCache$UpdateResult/cache +FD: net/minecraft/data/PackOutput/f_243723_ net/minecraft/data/PackOutput/outputFolder +FD: net/minecraft/data/PackOutput$PathProvider/f_244198_ net/minecraft/data/PackOutput$PathProvider/kind +FD: net/minecraft/data/PackOutput$PathProvider/f_244594_ net/minecraft/data/PackOutput$PathProvider/root +FD: net/minecraft/data/PackOutput$Target/$VALUES net/minecraft/data/PackOutput$Target/$VALUES +FD: net/minecraft/data/PackOutput$Target/DATA_PACK net/minecraft/data/PackOutput$Target/DATA_PACK +FD: net/minecraft/data/PackOutput$Target/REPORTS net/minecraft/data/PackOutput$Target/REPORTS +FD: net/minecraft/data/PackOutput$Target/RESOURCE_PACK net/minecraft/data/PackOutput$Target/RESOURCE_PACK +FD: net/minecraft/data/PackOutput$Target/f_244334_ net/minecraft/data/PackOutput$Target/directory +FD: net/minecraft/data/advancements/AdvancementProvider/f_236156_ net/minecraft/data/advancements/AdvancementProvider/pathProvider +FD: net/minecraft/data/advancements/AdvancementProvider/f_244266_ net/minecraft/data/advancements/AdvancementProvider/subProviders +FD: net/minecraft/data/advancements/AdvancementProvider/f_254664_ net/minecraft/data/advancements/AdvancementProvider/registries +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_243785_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/DISTANCE_FROM_BOTTOM_TO_TOP +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_243873_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/Y_COORDINATE_AT_TOP +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_244108_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/Y_COORDINATE_AT_BOTTOM +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_244488_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/MOBS_TO_KILL +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_244595_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/BEDROCK_THICKNESS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_243832_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/BREEDABLE_ANIMALS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_243834_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/WAX_SCRAPING_TOOLS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244058_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/FISH +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244171_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/FISH_BUCKETS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244235_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/EDIBLE_ITEMS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244418_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/INDIRECTLY_BREEDABLE_ANIMALS +FD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/f_244374_ net/minecraft/data/advancements/packs/VanillaNetherAdvancements/DISTRACT_PIGLIN_PLAYER_ARMOR_PREDICATE +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_236172_ net/minecraft/data/info/BiomeParametersDumpReport/LOGGER +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_236173_ net/minecraft/data/info/BiomeParametersDumpReport/topPath +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_254649_ net/minecraft/data/info/BiomeParametersDumpReport/registries +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_273829_ net/minecraft/data/info/BiomeParametersDumpReport/ENTRY_CODEC +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_273888_ net/minecraft/data/info/BiomeParametersDumpReport/CODEC +FD: net/minecraft/data/info/BlockListReport/f_243884_ net/minecraft/data/info/BlockListReport/output +FD: net/minecraft/data/info/CommandsReport/f_244606_ net/minecraft/data/info/CommandsReport/output +FD: net/minecraft/data/info/CommandsReport/f_254639_ net/minecraft/data/info/CommandsReport/registries +FD: net/minecraft/data/info/RegistryDumpReport/f_244388_ net/minecraft/data/info/RegistryDumpReport/output +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243678_ net/minecraft/data/loot/BlockLootSubProvider/HAS_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243739_ net/minecraft/data/loot/BlockLootSubProvider/enabledFeatures +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243865_ net/minecraft/data/loot/BlockLootSubProvider/explosionResistant +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243905_ net/minecraft/data/loot/BlockLootSubProvider/HAS_SHEARS +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244217_ net/minecraft/data/loot/BlockLootSubProvider/HAS_NO_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244248_ net/minecraft/data/loot/BlockLootSubProvider/HAS_NO_SHEARS_OR_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244301_ net/minecraft/data/loot/BlockLootSubProvider/HAS_SHEARS_OR_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244441_ net/minecraft/data/loot/BlockLootSubProvider/map +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244509_ net/minecraft/data/loot/BlockLootSubProvider/NORMAL_LEAVES_SAPLING_CHANCES +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244531_ net/minecraft/data/loot/BlockLootSubProvider/NORMAL_LEAVES_STICK_CHANCES +FD: net/minecraft/data/loot/EntityLootSubProvider/f_244213_ net/minecraft/data/loot/EntityLootSubProvider/map +FD: net/minecraft/data/loot/EntityLootSubProvider/f_244460_ net/minecraft/data/loot/EntityLootSubProvider/ENTITY_ON_FIRE +FD: net/minecraft/data/loot/EntityLootSubProvider/f_244591_ net/minecraft/data/loot/EntityLootSubProvider/SPECIAL_LOOT_TABLE_TYPES +FD: net/minecraft/data/loot/EntityLootSubProvider/f_265862_ net/minecraft/data/loot/EntityLootSubProvider/allowed +FD: net/minecraft/data/loot/EntityLootSubProvider/f_266009_ net/minecraft/data/loot/EntityLootSubProvider/required +FD: net/minecraft/data/loot/LootTableProvider/f_124431_ net/minecraft/data/loot/LootTableProvider/LOGGER +FD: net/minecraft/data/loot/LootTableProvider/f_124434_ net/minecraft/data/loot/LootTableProvider/subProviders +FD: net/minecraft/data/loot/LootTableProvider/f_236267_ net/minecraft/data/loot/LootTableProvider/pathProvider +FD: net/minecraft/data/loot/LootTableProvider/f_243940_ net/minecraft/data/loot/LootTableProvider/requiredTables +FD: net/minecraft/data/loot/LootTableProvider$1/f_278445_ net/minecraft/data/loot/LootTableProvider$1/val$tables +FD: net/minecraft/data/loot/LootTableProvider$1/f_278446_ net/minecraft/data/loot/LootTableProvider$1/this$0 +FD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_243941_ net/minecraft/data/loot/LootTableProvider$SubProviderEntry/provider +FD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_244144_ net/minecraft/data/loot/LootTableProvider$SubProviderEntry/paramSet +FD: net/minecraft/data/loot/packs/VanillaBlockLoot/f_243668_ net/minecraft/data/loot/packs/VanillaBlockLoot/JUNGLE_LEAVES_SAPLING_CHANGES +FD: net/minecraft/data/loot/packs/VanillaBlockLoot/f_244490_ net/minecraft/data/loot/packs/VanillaBlockLoot/EXPLOSION_RESISTANT +FD: net/minecraft/data/loot/packs/VanillaFishingLoot/f_243701_ net/minecraft/data/loot/packs/VanillaFishingLoot/IN_BAMBOO_JUNGLE +FD: net/minecraft/data/loot/packs/VanillaFishingLoot/f_244228_ net/minecraft/data/loot/packs/VanillaFishingLoot/IN_JUNGLE +FD: net/minecraft/data/loot/packs/VanillaFishingLoot/f_244590_ net/minecraft/data/loot/packs/VanillaFishingLoot/IN_SPARSE_JUNGLE +FD: net/minecraft/data/metadata/PackMetadataGenerator/f_243851_ net/minecraft/data/metadata/PackMetadataGenerator/output +FD: net/minecraft/data/metadata/PackMetadataGenerator/f_244307_ net/minecraft/data/metadata/PackMetadataGenerator/elements +FD: net/minecraft/data/models/BlockModelGenerators/f_124477_ net/minecraft/data/models/BlockModelGenerators/blockStateOutput +FD: net/minecraft/data/models/BlockModelGenerators/f_124478_ net/minecraft/data/models/BlockModelGenerators/modelOutput +FD: net/minecraft/data/models/BlockModelGenerators/f_124479_ net/minecraft/data/models/BlockModelGenerators/skippedAutoModelsOutput +FD: net/minecraft/data/models/BlockModelGenerators/f_176079_ net/minecraft/data/models/BlockModelGenerators/MULTIFACE_GENERATOR +FD: net/minecraft/data/models/BlockModelGenerators/f_176080_ net/minecraft/data/models/BlockModelGenerators/nonOrientableTrapdoor +FD: net/minecraft/data/models/BlockModelGenerators/f_176081_ net/minecraft/data/models/BlockModelGenerators/fullBlockModelCustomGenerators +FD: net/minecraft/data/models/BlockModelGenerators/f_176082_ net/minecraft/data/models/BlockModelGenerators/texturedModels +FD: net/minecraft/data/models/BlockModelGenerators/f_176083_ net/minecraft/data/models/BlockModelGenerators/SHAPE_CONSUMERS +FD: net/minecraft/data/models/BlockModelGenerators/f_260595_ net/minecraft/data/models/BlockModelGenerators/CHISELED_BOOKSHELF_SLOT_MODEL_CACHE +FD: net/minecraft/data/models/BlockModelGenerators$1/f_125013_ net/minecraft/data/models/BlockModelGenerators$1/$SwitchMap$net$minecraft$core$FrontAndTop +FD: net/minecraft/data/models/BlockModelGenerators$1/f_125014_ net/minecraft/data/models/BlockModelGenerators$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/data/models/BlockModelGenerators$1/f_276602_ net/minecraft/data/models/BlockModelGenerators$1/$SwitchMap$net$minecraft$world$level$block$state$properties$DoubleBlockHalf +FD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/f_125016_ net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/this$0 +FD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/f_125017_ net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/baseModel +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_125029_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/this$0 +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_125030_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/mapping +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_125031_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlock +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_176254_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/models +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_176255_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/family +FD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260626_ net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/modelSuffix +FD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260721_ net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/template +FD: net/minecraft/data/models/BlockModelGenerators$TintState/$VALUES net/minecraft/data/models/BlockModelGenerators$TintState/$VALUES +FD: net/minecraft/data/models/BlockModelGenerators$TintState/NOT_TINTED net/minecraft/data/models/BlockModelGenerators$TintState/NOT_TINTED +FD: net/minecraft/data/models/BlockModelGenerators$TintState/TINTED net/minecraft/data/models/BlockModelGenerators$TintState/TINTED +FD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/f_125069_ net/minecraft/data/models/BlockModelGenerators$WoodProvider/this$0 +FD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/f_125070_ net/minecraft/data/models/BlockModelGenerators$WoodProvider/logMapping +FD: net/minecraft/data/models/ItemModelGenerators/f_125080_ net/minecraft/data/models/ItemModelGenerators/output +FD: net/minecraft/data/models/ItemModelGenerators/f_265922_ net/minecraft/data/models/ItemModelGenerators/TRIM_TYPE_PREDICATE_ID +FD: net/minecraft/data/models/ItemModelGenerators/f_265952_ net/minecraft/data/models/ItemModelGenerators/GENERATED_TRIM_MODELS +FD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265849_ net/minecraft/data/models/ItemModelGenerators$TrimModelData/itemModelIndex +FD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265890_ net/minecraft/data/models/ItemModelGenerators$TrimModelData/name +FD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_267444_ net/minecraft/data/models/ItemModelGenerators$TrimModelData/overrideArmorMaterials +FD: net/minecraft/data/models/ModelProvider/f_236325_ net/minecraft/data/models/ModelProvider/blockStatePathProvider +FD: net/minecraft/data/models/ModelProvider/f_236326_ net/minecraft/data/models/ModelProvider/modelPathProvider +FD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/f_125139_ net/minecraft/data/models/blockstates/Condition$CompositeCondition/operation +FD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/f_125140_ net/minecraft/data/models/blockstates/Condition$CompositeCondition/subconditions +FD: net/minecraft/data/models/blockstates/Condition$Operation/$VALUES net/minecraft/data/models/blockstates/Condition$Operation/$VALUES +FD: net/minecraft/data/models/blockstates/Condition$Operation/AND net/minecraft/data/models/blockstates/Condition$Operation/AND +FD: net/minecraft/data/models/blockstates/Condition$Operation/OR net/minecraft/data/models/blockstates/Condition$Operation/OR +FD: net/minecraft/data/models/blockstates/Condition$Operation/f_125157_ net/minecraft/data/models/blockstates/Condition$Operation/id +FD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/f_125169_ net/minecraft/data/models/blockstates/Condition$TerminalCondition/terms +FD: net/minecraft/data/models/blockstates/MultiPartGenerator/f_125199_ net/minecraft/data/models/blockstates/MultiPartGenerator/block +FD: net/minecraft/data/models/blockstates/MultiPartGenerator/f_125200_ net/minecraft/data/models/blockstates/MultiPartGenerator/parts +FD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/f_125224_ net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/condition +FD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/f_125236_ net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/variants +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125246_ net/minecraft/data/models/blockstates/MultiVariantGenerator/block +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125247_ net/minecraft/data/models/blockstates/MultiVariantGenerator/baseVariants +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125248_ net/minecraft/data/models/blockstates/MultiVariantGenerator/seenProperties +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125249_ net/minecraft/data/models/blockstates/MultiVariantGenerator/declaredPropertySets +FD: net/minecraft/data/models/blockstates/PropertyDispatch/f_125291_ net/minecraft/data/models/blockstates/PropertyDispatch/values +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/f_125323_ net/minecraft/data/models/blockstates/PropertyDispatch$C1/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/f_125341_ net/minecraft/data/models/blockstates/PropertyDispatch$C2/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/f_125342_ net/minecraft/data/models/blockstates/PropertyDispatch$C2/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/f_125377_ net/minecraft/data/models/blockstates/PropertyDispatch$C3/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/f_125378_ net/minecraft/data/models/blockstates/PropertyDispatch$C3/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/f_125379_ net/minecraft/data/models/blockstates/PropertyDispatch$C3/property3 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125414_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125415_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125416_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property3 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125417_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property4 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125442_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125443_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125444_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property3 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125445_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property4 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125446_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property5 +FD: net/minecraft/data/models/blockstates/Selector/f_125479_ net/minecraft/data/models/blockstates/Selector/EMPTY +FD: net/minecraft/data/models/blockstates/Selector/f_125480_ net/minecraft/data/models/blockstates/Selector/COMPARE_BY_NAME +FD: net/minecraft/data/models/blockstates/Selector/f_125481_ net/minecraft/data/models/blockstates/Selector/values +FD: net/minecraft/data/models/blockstates/Variant/f_125499_ net/minecraft/data/models/blockstates/Variant/values +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125518_ net/minecraft/data/models/blockstates/VariantProperties/X_ROT +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125519_ net/minecraft/data/models/blockstates/VariantProperties/Y_ROT +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125520_ net/minecraft/data/models/blockstates/VariantProperties/MODEL +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125521_ net/minecraft/data/models/blockstates/VariantProperties/UV_LOCK +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125522_ net/minecraft/data/models/blockstates/VariantProperties/WEIGHT +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/$VALUES net/minecraft/data/models/blockstates/VariantProperties$Rotation/$VALUES +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R0 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R0 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R180 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R180 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R270 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R270 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R90 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R90 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/f_125534_ net/minecraft/data/models/blockstates/VariantProperties$Rotation/value +FD: net/minecraft/data/models/blockstates/VariantProperty/f_125546_ net/minecraft/data/models/blockstates/VariantProperty/key +FD: net/minecraft/data/models/blockstates/VariantProperty/f_125547_ net/minecraft/data/models/blockstates/VariantProperty/serializer +FD: net/minecraft/data/models/blockstates/VariantProperty$Value/f_125558_ net/minecraft/data/models/blockstates/VariantProperty$Value/this$0 +FD: net/minecraft/data/models/blockstates/VariantProperty$Value/f_125559_ net/minecraft/data/models/blockstates/VariantProperty$Value/value +FD: net/minecraft/data/models/model/DelegatedModel/f_125566_ net/minecraft/data/models/model/DelegatedModel/parent +FD: net/minecraft/data/models/model/ModelTemplate/f_125585_ net/minecraft/data/models/model/ModelTemplate/model +FD: net/minecraft/data/models/model/ModelTemplate/f_125586_ net/minecraft/data/models/model/ModelTemplate/requiredSlots +FD: net/minecraft/data/models/model/ModelTemplate/f_125587_ net/minecraft/data/models/model/ModelTemplate/suffix +FD: net/minecraft/data/models/model/ModelTemplates/f_125621_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125622_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_WALL_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_125623_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_WALL_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125624_ net/minecraft/data/models/model/ModelTemplates/PRESSURE_PLATE_UP +FD: net/minecraft/data/models/model/ModelTemplates/f_125625_ net/minecraft/data/models/model/ModelTemplates/PRESSURE_PLATE_DOWN +FD: net/minecraft/data/models/model/ModelTemplates/f_125626_ net/minecraft/data/models/model/ModelTemplates/PARTICLE_ONLY +FD: net/minecraft/data/models/model/ModelTemplates/f_125627_ net/minecraft/data/models/model/ModelTemplates/SLAB_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125628_ net/minecraft/data/models/model/ModelTemplates/SLAB_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125629_ net/minecraft/data/models/model/ModelTemplates/LEAVES +FD: net/minecraft/data/models/model/ModelTemplates/f_125630_ net/minecraft/data/models/model/ModelTemplates/STAIRS_STRAIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_125631_ net/minecraft/data/models/model/ModelTemplates/STAIRS_INNER +FD: net/minecraft/data/models/model/ModelTemplates/f_125632_ net/minecraft/data/models/model/ModelTemplates/STAIRS_OUTER +FD: net/minecraft/data/models/model/ModelTemplates/f_125633_ net/minecraft/data/models/model/ModelTemplates/TRAPDOOR_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125634_ net/minecraft/data/models/model/ModelTemplates/TRAPDOOR_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125635_ net/minecraft/data/models/model/ModelTemplates/TRAPDOOR_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125636_ net/minecraft/data/models/model/ModelTemplates/ORIENTABLE_TRAPDOOR_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125637_ net/minecraft/data/models/model/ModelTemplates/ORIENTABLE_TRAPDOOR_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125638_ net/minecraft/data/models/model/ModelTemplates/ORIENTABLE_TRAPDOOR_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125639_ net/minecraft/data/models/model/ModelTemplates/CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125640_ net/minecraft/data/models/model/ModelTemplates/TINTED_CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125641_ net/minecraft/data/models/model/ModelTemplates/FLOWER_POT_CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125642_ net/minecraft/data/models/model/ModelTemplates/TINTED_FLOWER_POT_CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125643_ net/minecraft/data/models/model/ModelTemplates/RAIL_FLAT +FD: net/minecraft/data/models/model/ModelTemplates/f_125644_ net/minecraft/data/models/model/ModelTemplates/RAIL_CURVED +FD: net/minecraft/data/models/model/ModelTemplates/f_125645_ net/minecraft/data/models/model/ModelTemplates/RAIL_RAISED_NE +FD: net/minecraft/data/models/model/ModelTemplates/f_125646_ net/minecraft/data/models/model/ModelTemplates/RAIL_RAISED_SW +FD: net/minecraft/data/models/model/ModelTemplates/f_125647_ net/minecraft/data/models/model/ModelTemplates/CUBE +FD: net/minecraft/data/models/model/ModelTemplates/f_125648_ net/minecraft/data/models/model/ModelTemplates/WALL_TORCH +FD: net/minecraft/data/models/model/ModelTemplates/f_125649_ net/minecraft/data/models/model/ModelTemplates/PISTON +FD: net/minecraft/data/models/model/ModelTemplates/f_125650_ net/minecraft/data/models/model/ModelTemplates/PISTON_HEAD +FD: net/minecraft/data/models/model/ModelTemplates/f_125651_ net/minecraft/data/models/model/ModelTemplates/PISTON_HEAD_SHORT +FD: net/minecraft/data/models/model/ModelTemplates/f_125652_ net/minecraft/data/models/model/ModelTemplates/SEAGRASS +FD: net/minecraft/data/models/model/ModelTemplates/f_125653_ net/minecraft/data/models/model/ModelTemplates/TURTLE_EGG +FD: net/minecraft/data/models/model/ModelTemplates/f_125654_ net/minecraft/data/models/model/ModelTemplates/TWO_TURTLE_EGGS +FD: net/minecraft/data/models/model/ModelTemplates/f_125655_ net/minecraft/data/models/model/ModelTemplates/THREE_TURTLE_EGGS +FD: net/minecraft/data/models/model/ModelTemplates/f_125656_ net/minecraft/data/models/model/ModelTemplates/FOUR_TURTLE_EGGS +FD: net/minecraft/data/models/model/ModelTemplates/f_125657_ net/minecraft/data/models/model/ModelTemplates/SINGLE_FACE +FD: net/minecraft/data/models/model/ModelTemplates/f_125658_ net/minecraft/data/models/model/ModelTemplates/FLAT_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125659_ net/minecraft/data/models/model/ModelTemplates/FLAT_HANDHELD_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125660_ net/minecraft/data/models/model/ModelTemplates/FLAT_HANDHELD_ROD_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125661_ net/minecraft/data/models/model/ModelTemplates/SHULKER_BOX_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125662_ net/minecraft/data/models/model/ModelTemplates/BED_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125663_ net/minecraft/data/models/model/ModelTemplates/BANNER_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125664_ net/minecraft/data/models/model/ModelTemplates/SKULL_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125665_ net/minecraft/data/models/model/ModelTemplates/CARPET +FD: net/minecraft/data/models/model/ModelTemplates/f_125666_ net/minecraft/data/models/model/ModelTemplates/CORAL_FAN +FD: net/minecraft/data/models/model/ModelTemplates/f_125667_ net/minecraft/data/models/model/ModelTemplates/CORAL_WALL_FAN +FD: net/minecraft/data/models/model/ModelTemplates/f_125668_ net/minecraft/data/models/model/ModelTemplates/GLAZED_TERRACOTTA +FD: net/minecraft/data/models/model/ModelTemplates/f_125669_ net/minecraft/data/models/model/ModelTemplates/CHORUS_FLOWER +FD: net/minecraft/data/models/model/ModelTemplates/f_125670_ net/minecraft/data/models/model/ModelTemplates/DAYLIGHT_DETECTOR +FD: net/minecraft/data/models/model/ModelTemplates/f_125671_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_NOSIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125672_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_NOSIDE_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125673_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_125674_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125675_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_SIDE_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125676_ net/minecraft/data/models/model/ModelTemplates/COMMAND_BLOCK +FD: net/minecraft/data/models/model/ModelTemplates/f_125677_ net/minecraft/data/models/model/ModelTemplates/ANVIL +FD: net/minecraft/data/models/model/ModelTemplates/f_125678_ net/minecraft/data/models/model/ModelTemplates/STEMS +FD: net/minecraft/data/models/model/ModelTemplates/f_125679_ net/minecraft/data/models/model/ModelTemplates/ATTACHED_STEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125680_ net/minecraft/data/models/model/ModelTemplates/CROP +FD: net/minecraft/data/models/model/ModelTemplates/f_125681_ net/minecraft/data/models/model/ModelTemplates/FARMLAND +FD: net/minecraft/data/models/model/ModelTemplates/f_125682_ net/minecraft/data/models/model/ModelTemplates/FIRE_FLOOR +FD: net/minecraft/data/models/model/ModelTemplates/f_125683_ net/minecraft/data/models/model/ModelTemplates/FIRE_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125684_ net/minecraft/data/models/model/ModelTemplates/FIRE_SIDE_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125685_ net/minecraft/data/models/model/ModelTemplates/FIRE_UP +FD: net/minecraft/data/models/model/ModelTemplates/f_125686_ net/minecraft/data/models/model/ModelTemplates/FIRE_UP_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125687_ net/minecraft/data/models/model/ModelTemplates/CAMPFIRE +FD: net/minecraft/data/models/model/ModelTemplates/f_125688_ net/minecraft/data/models/model/ModelTemplates/LANTERN +FD: net/minecraft/data/models/model/ModelTemplates/f_125689_ net/minecraft/data/models/model/ModelTemplates/HANGING_LANTERN +FD: net/minecraft/data/models/model/ModelTemplates/f_125690_ net/minecraft/data/models/model/ModelTemplates/TORCH +FD: net/minecraft/data/models/model/ModelTemplates/f_125691_ net/minecraft/data/models/model/ModelTemplates/CUBE_DIRECTIONAL +FD: net/minecraft/data/models/model/ModelTemplates/f_125692_ net/minecraft/data/models/model/ModelTemplates/CUBE_ALL +FD: net/minecraft/data/models/model/ModelTemplates/f_125693_ net/minecraft/data/models/model/ModelTemplates/CUBE_MIRRORED_ALL +FD: net/minecraft/data/models/model/ModelTemplates/f_125694_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN +FD: net/minecraft/data/models/model/ModelTemplates/f_125695_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_HORIZONTAL +FD: net/minecraft/data/models/model/ModelTemplates/f_125696_ net/minecraft/data/models/model/ModelTemplates/CUBE_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125697_ net/minecraft/data/models/model/ModelTemplates/CUBE_BOTTOM_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125698_ net/minecraft/data/models/model/ModelTemplates/CUBE_ORIENTABLE +FD: net/minecraft/data/models/model/ModelTemplates/f_125699_ net/minecraft/data/models/model/ModelTemplates/CUBE_ORIENTABLE_TOP_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125700_ net/minecraft/data/models/model/ModelTemplates/CUBE_ORIENTABLE_VERTICAL +FD: net/minecraft/data/models/model/ModelTemplates/f_125701_ net/minecraft/data/models/model/ModelTemplates/BUTTON +FD: net/minecraft/data/models/model/ModelTemplates/f_125702_ net/minecraft/data/models/model/ModelTemplates/BUTTON_PRESSED +FD: net/minecraft/data/models/model/ModelTemplates/f_125703_ net/minecraft/data/models/model/ModelTemplates/BUTTON_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125708_ net/minecraft/data/models/model/ModelTemplates/FENCE_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_125709_ net/minecraft/data/models/model/ModelTemplates/FENCE_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125710_ net/minecraft/data/models/model/ModelTemplates/FENCE_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125711_ net/minecraft/data/models/model/ModelTemplates/WALL_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_125712_ net/minecraft/data/models/model/ModelTemplates/WALL_LOW_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125713_ net/minecraft/data/models/model/ModelTemplates/WALL_TALL_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125714_ net/minecraft/data/models/model/ModelTemplates/WALL_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125715_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_176462_ net/minecraft/data/models/model/ModelTemplates/POINTED_DRIPSTONE +FD: net/minecraft/data/models/model/ModelTemplates/f_176463_ net/minecraft/data/models/model/ModelTemplates/CAULDRON_LEVEL1 +FD: net/minecraft/data/models/model/ModelTemplates/f_176464_ net/minecraft/data/models/model/ModelTemplates/CAULDRON_LEVEL2 +FD: net/minecraft/data/models/model/ModelTemplates/f_176465_ net/minecraft/data/models/model/ModelTemplates/CAULDRON_FULL +FD: net/minecraft/data/models/model/ModelTemplates/f_176466_ net/minecraft/data/models/model/ModelTemplates/AZALEA +FD: net/minecraft/data/models/model/ModelTemplates/f_176467_ net/minecraft/data/models/model/ModelTemplates/POTTED_AZALEA +FD: net/minecraft/data/models/model/ModelTemplates/f_176468_ net/minecraft/data/models/model/ModelTemplates/CANDLE +FD: net/minecraft/data/models/model/ModelTemplates/f_176469_ net/minecraft/data/models/model/ModelTemplates/TWO_CANDLES +FD: net/minecraft/data/models/model/ModelTemplates/f_176470_ net/minecraft/data/models/model/ModelTemplates/THREE_CANDLES +FD: net/minecraft/data/models/model/ModelTemplates/f_176471_ net/minecraft/data/models/model/ModelTemplates/FOUR_CANDLES +FD: net/minecraft/data/models/model/ModelTemplates/f_176472_ net/minecraft/data/models/model/ModelTemplates/CANDLE_CAKE +FD: net/minecraft/data/models/model/ModelTemplates/f_176473_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_MIRRORED +FD: net/minecraft/data/models/model/ModelTemplates/f_236340_ net/minecraft/data/models/model/ModelTemplates/SCULK_SHRIEKER +FD: net/minecraft/data/models/model/ModelTemplates/f_236341_ net/minecraft/data/models/model/ModelTemplates/CUBE_NORTH_WEST_MIRRORED_ALL +FD: net/minecraft/data/models/model/ModelTemplates/f_236342_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_236343_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_LEFT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_236344_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_236345_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_RIGHT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_236346_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_236347_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_LEFT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_236348_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_236349_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_RIGHT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_243715_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_243784_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_243831_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_243867_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_243925_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_WALL_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_243943_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_WEST +FD: net/minecraft/data/models/model/ModelTemplates/f_244191_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_NORTH +FD: net/minecraft/data/models/model/ModelTemplates/f_244216_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_SOUTH +FD: net/minecraft/data/models/model/ModelTemplates/f_244273_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_WALL_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_244408_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_EAST +FD: net/minecraft/data/models/model/ModelTemplates/f_256809_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_UV_LOCKED_Y +FD: net/minecraft/data/models/model/ModelTemplates/f_256886_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_UV_LOCKED_X +FD: net/minecraft/data/models/model/ModelTemplates/f_256910_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_UV_LOCKED_Z +FD: net/minecraft/data/models/model/ModelTemplates/f_260440_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_BOTTOM_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_260577_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_TOP_MID +FD: net/minecraft/data/models/model/ModelTemplates/f_260613_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_BOTTOM_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_260622_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_BOTTOM_MID +FD: net/minecraft/data/models/model/ModelTemplates/f_260631_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_TOP_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_260688_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_TOP_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_267487_ net/minecraft/data/models/model/ModelTemplates/THREE_LAYERED_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_267493_ net/minecraft/data/models/model/ModelTemplates/TWO_LAYERED_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_271172_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_4 +FD: net/minecraft/data/models/model/ModelTemplates/f_271241_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_1 +FD: net/minecraft/data/models/model/ModelTemplates/f_271276_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_3 +FD: net/minecraft/data/models/model/ModelTemplates/f_271417_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_2 +FD: net/minecraft/data/models/model/ModelTemplates/f_276458_ net/minecraft/data/models/model/ModelTemplates/SNIFFER_EGG +FD: net/minecraft/data/models/model/ModelTemplates/f_278116_ net/minecraft/data/models/model/ModelTemplates/POTTED_FLOWERING_AZALEA +FD: net/minecraft/data/models/model/ModelTemplates/f_278495_ net/minecraft/data/models/model/ModelTemplates/MUSIC_DISC +FD: net/minecraft/data/models/model/TextureMapping/f_125733_ net/minecraft/data/models/model/TextureMapping/slots +FD: net/minecraft/data/models/model/TextureMapping/f_125734_ net/minecraft/data/models/model/TextureMapping/forcedSlots +FD: net/minecraft/data/models/model/TextureSlot/f_125856_ net/minecraft/data/models/model/TextureSlot/CROP +FD: net/minecraft/data/models/model/TextureSlot/f_125857_ net/minecraft/data/models/model/TextureSlot/DIRT +FD: net/minecraft/data/models/model/TextureSlot/f_125858_ net/minecraft/data/models/model/TextureSlot/FIRE +FD: net/minecraft/data/models/model/TextureSlot/f_125859_ net/minecraft/data/models/model/TextureSlot/LANTERN +FD: net/minecraft/data/models/model/TextureSlot/f_125860_ net/minecraft/data/models/model/TextureSlot/PLATFORM +FD: net/minecraft/data/models/model/TextureSlot/f_125861_ net/minecraft/data/models/model/TextureSlot/UNSTICKY +FD: net/minecraft/data/models/model/TextureSlot/f_125862_ net/minecraft/data/models/model/TextureSlot/TORCH +FD: net/minecraft/data/models/model/TextureSlot/f_125863_ net/minecraft/data/models/model/TextureSlot/LAYER0 +FD: net/minecraft/data/models/model/TextureSlot/f_125864_ net/minecraft/data/models/model/TextureSlot/LIT_LOG +FD: net/minecraft/data/models/model/TextureSlot/f_125865_ net/minecraft/data/models/model/TextureSlot/id +FD: net/minecraft/data/models/model/TextureSlot/f_125866_ net/minecraft/data/models/model/TextureSlot/parent +FD: net/minecraft/data/models/model/TextureSlot/f_125867_ net/minecraft/data/models/model/TextureSlot/ALL +FD: net/minecraft/data/models/model/TextureSlot/f_125868_ net/minecraft/data/models/model/TextureSlot/TEXTURE +FD: net/minecraft/data/models/model/TextureSlot/f_125869_ net/minecraft/data/models/model/TextureSlot/PARTICLE +FD: net/minecraft/data/models/model/TextureSlot/f_125870_ net/minecraft/data/models/model/TextureSlot/END +FD: net/minecraft/data/models/model/TextureSlot/f_125871_ net/minecraft/data/models/model/TextureSlot/BOTTOM +FD: net/minecraft/data/models/model/TextureSlot/f_125872_ net/minecraft/data/models/model/TextureSlot/TOP +FD: net/minecraft/data/models/model/TextureSlot/f_125873_ net/minecraft/data/models/model/TextureSlot/FRONT +FD: net/minecraft/data/models/model/TextureSlot/f_125874_ net/minecraft/data/models/model/TextureSlot/BACK +FD: net/minecraft/data/models/model/TextureSlot/f_125875_ net/minecraft/data/models/model/TextureSlot/SIDE +FD: net/minecraft/data/models/model/TextureSlot/f_125876_ net/minecraft/data/models/model/TextureSlot/NORTH +FD: net/minecraft/data/models/model/TextureSlot/f_125877_ net/minecraft/data/models/model/TextureSlot/SOUTH +FD: net/minecraft/data/models/model/TextureSlot/f_125878_ net/minecraft/data/models/model/TextureSlot/EAST +FD: net/minecraft/data/models/model/TextureSlot/f_125879_ net/minecraft/data/models/model/TextureSlot/WEST +FD: net/minecraft/data/models/model/TextureSlot/f_125880_ net/minecraft/data/models/model/TextureSlot/UP +FD: net/minecraft/data/models/model/TextureSlot/f_125881_ net/minecraft/data/models/model/TextureSlot/DOWN +FD: net/minecraft/data/models/model/TextureSlot/f_125882_ net/minecraft/data/models/model/TextureSlot/CROSS +FD: net/minecraft/data/models/model/TextureSlot/f_125883_ net/minecraft/data/models/model/TextureSlot/PLANT +FD: net/minecraft/data/models/model/TextureSlot/f_125884_ net/minecraft/data/models/model/TextureSlot/WALL +FD: net/minecraft/data/models/model/TextureSlot/f_125885_ net/minecraft/data/models/model/TextureSlot/RAIL +FD: net/minecraft/data/models/model/TextureSlot/f_125886_ net/minecraft/data/models/model/TextureSlot/WOOL +FD: net/minecraft/data/models/model/TextureSlot/f_125887_ net/minecraft/data/models/model/TextureSlot/PATTERN +FD: net/minecraft/data/models/model/TextureSlot/f_125888_ net/minecraft/data/models/model/TextureSlot/PANE +FD: net/minecraft/data/models/model/TextureSlot/f_125889_ net/minecraft/data/models/model/TextureSlot/EDGE +FD: net/minecraft/data/models/model/TextureSlot/f_125890_ net/minecraft/data/models/model/TextureSlot/FAN +FD: net/minecraft/data/models/model/TextureSlot/f_125891_ net/minecraft/data/models/model/TextureSlot/STEM +FD: net/minecraft/data/models/model/TextureSlot/f_125892_ net/minecraft/data/models/model/TextureSlot/UPPER_STEM +FD: net/minecraft/data/models/model/TextureSlot/f_176490_ net/minecraft/data/models/model/TextureSlot/CANDLE +FD: net/minecraft/data/models/model/TextureSlot/f_176491_ net/minecraft/data/models/model/TextureSlot/INSIDE +FD: net/minecraft/data/models/model/TextureSlot/f_176492_ net/minecraft/data/models/model/TextureSlot/CONTENT +FD: net/minecraft/data/models/model/TextureSlot/f_236352_ net/minecraft/data/models/model/TextureSlot/INNER_TOP +FD: net/minecraft/data/models/model/TextureSlot/f_265929_ net/minecraft/data/models/model/TextureSlot/LAYER1 +FD: net/minecraft/data/models/model/TextureSlot/f_267385_ net/minecraft/data/models/model/TextureSlot/LAYER2 +FD: net/minecraft/data/models/model/TextureSlot/f_271285_ net/minecraft/data/models/model/TextureSlot/FLOWERBED +FD: net/minecraft/data/models/model/TexturedModel/f_125905_ net/minecraft/data/models/model/TexturedModel/CUBE +FD: net/minecraft/data/models/model/TexturedModel/f_125906_ net/minecraft/data/models/model/TexturedModel/CUBE_MIRRORED +FD: net/minecraft/data/models/model/TexturedModel/f_125907_ net/minecraft/data/models/model/TexturedModel/COLUMN +FD: net/minecraft/data/models/model/TexturedModel/f_125908_ net/minecraft/data/models/model/TexturedModel/COLUMN_HORIZONTAL +FD: net/minecraft/data/models/model/TexturedModel/f_125909_ net/minecraft/data/models/model/TexturedModel/CUBE_TOP_BOTTOM +FD: net/minecraft/data/models/model/TexturedModel/f_125910_ net/minecraft/data/models/model/TexturedModel/CUBE_TOP +FD: net/minecraft/data/models/model/TexturedModel/f_125911_ net/minecraft/data/models/model/TexturedModel/ORIENTABLE_ONLY_TOP +FD: net/minecraft/data/models/model/TexturedModel/f_125912_ net/minecraft/data/models/model/TexturedModel/ORIENTABLE +FD: net/minecraft/data/models/model/TexturedModel/f_125913_ net/minecraft/data/models/model/TexturedModel/CARPET +FD: net/minecraft/data/models/model/TexturedModel/f_125914_ net/minecraft/data/models/model/TexturedModel/GLAZED_TERRACOTTA +FD: net/minecraft/data/models/model/TexturedModel/f_125915_ net/minecraft/data/models/model/TexturedModel/CORAL_FAN +FD: net/minecraft/data/models/model/TexturedModel/f_125916_ net/minecraft/data/models/model/TexturedModel/PARTICLE_ONLY +FD: net/minecraft/data/models/model/TexturedModel/f_125917_ net/minecraft/data/models/model/TexturedModel/ANVIL +FD: net/minecraft/data/models/model/TexturedModel/f_125918_ net/minecraft/data/models/model/TexturedModel/LEAVES +FD: net/minecraft/data/models/model/TexturedModel/f_125919_ net/minecraft/data/models/model/TexturedModel/LANTERN +FD: net/minecraft/data/models/model/TexturedModel/f_125920_ net/minecraft/data/models/model/TexturedModel/HANGING_LANTERN +FD: net/minecraft/data/models/model/TexturedModel/f_125921_ net/minecraft/data/models/model/TexturedModel/SEAGRASS +FD: net/minecraft/data/models/model/TexturedModel/f_125922_ net/minecraft/data/models/model/TexturedModel/COLUMN_ALT +FD: net/minecraft/data/models/model/TexturedModel/f_125923_ net/minecraft/data/models/model/TexturedModel/COLUMN_HORIZONTAL_ALT +FD: net/minecraft/data/models/model/TexturedModel/f_125924_ net/minecraft/data/models/model/TexturedModel/TOP_BOTTOM_WITH_WALL +FD: net/minecraft/data/models/model/TexturedModel/f_125925_ net/minecraft/data/models/model/TexturedModel/COLUMN_WITH_WALL +FD: net/minecraft/data/models/model/TexturedModel/f_125926_ net/minecraft/data/models/model/TexturedModel/mapping +FD: net/minecraft/data/models/model/TexturedModel/f_125927_ net/minecraft/data/models/model/TexturedModel/template +FD: net/minecraft/data/models/model/TexturedModel/f_271226_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_4 +FD: net/minecraft/data/models/model/TexturedModel/f_271277_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_1 +FD: net/minecraft/data/models/model/TexturedModel/f_271345_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_2 +FD: net/minecraft/data/models/model/TexturedModel/f_271514_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_3 +FD: net/minecraft/data/recipes/CraftingRecipeBuilder$1/f_244028_ net/minecraft/data/recipes/CraftingRecipeBuilder$1/$SwitchMap$net$minecraft$data$recipes$RecipeCategory +FD: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/f_244639_ net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/category +FD: net/minecraft/data/recipes/RecipeBuilder/f_236353_ net/minecraft/data/recipes/RecipeBuilder/ROOT_RECIPE_ADVANCEMENT +FD: net/minecraft/data/recipes/RecipeCategory/$VALUES net/minecraft/data/recipes/RecipeCategory/$VALUES +FD: net/minecraft/data/recipes/RecipeCategory/BREWING net/minecraft/data/recipes/RecipeCategory/BREWING +FD: net/minecraft/data/recipes/RecipeCategory/BUILDING_BLOCKS net/minecraft/data/recipes/RecipeCategory/BUILDING_BLOCKS +FD: net/minecraft/data/recipes/RecipeCategory/COMBAT net/minecraft/data/recipes/RecipeCategory/COMBAT +FD: net/minecraft/data/recipes/RecipeCategory/DECORATIONS net/minecraft/data/recipes/RecipeCategory/DECORATIONS +FD: net/minecraft/data/recipes/RecipeCategory/FOOD net/minecraft/data/recipes/RecipeCategory/FOOD +FD: net/minecraft/data/recipes/RecipeCategory/MISC net/minecraft/data/recipes/RecipeCategory/MISC +FD: net/minecraft/data/recipes/RecipeCategory/REDSTONE net/minecraft/data/recipes/RecipeCategory/REDSTONE +FD: net/minecraft/data/recipes/RecipeCategory/TOOLS net/minecraft/data/recipes/RecipeCategory/TOOLS +FD: net/minecraft/data/recipes/RecipeCategory/TRANSPORTATION net/minecraft/data/recipes/RecipeCategory/TRANSPORTATION +FD: net/minecraft/data/recipes/RecipeCategory/f_244582_ net/minecraft/data/recipes/RecipeCategory/recipeFolderName +FD: net/minecraft/data/recipes/RecipeProvider/f_236355_ net/minecraft/data/recipes/RecipeProvider/recipePathProvider +FD: net/minecraft/data/recipes/RecipeProvider/f_236356_ net/minecraft/data/recipes/RecipeProvider/advancementPathProvider +FD: net/minecraft/data/recipes/RecipeProvider/f_244077_ net/minecraft/data/recipes/RecipeProvider/SHAPE_BUILDERS +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126106_ net/minecraft/data/recipes/ShapedRecipeBuilder/result +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126107_ net/minecraft/data/recipes/ShapedRecipeBuilder/count +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126108_ net/minecraft/data/recipes/ShapedRecipeBuilder/rows +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126109_ net/minecraft/data/recipes/ShapedRecipeBuilder/key +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126110_ net/minecraft/data/recipes/ShapedRecipeBuilder/advancement +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126111_ net/minecraft/data/recipes/ShapedRecipeBuilder/group +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_243672_ net/minecraft/data/recipes/ShapedRecipeBuilder/category +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_271093_ net/minecraft/data/recipes/ShapedRecipeBuilder/showNotification +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126148_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126149_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126150_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/count +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126151_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126152_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/pattern +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126153_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/key +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126154_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126155_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_271297_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/showNotification +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126173_ net/minecraft/data/recipes/ShapelessRecipeBuilder/result +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126174_ net/minecraft/data/recipes/ShapelessRecipeBuilder/count +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126175_ net/minecraft/data/recipes/ShapelessRecipeBuilder/ingredients +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126176_ net/minecraft/data/recipes/ShapelessRecipeBuilder/advancement +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126177_ net/minecraft/data/recipes/ShapelessRecipeBuilder/group +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_244182_ net/minecraft/data/recipes/ShapelessRecipeBuilder/category +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126214_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126215_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126216_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/count +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126217_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126218_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/ingredients +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126219_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126220_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126235_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/result +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126236_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ingredient +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126237_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/experience +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126238_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/cookingTime +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126239_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126240_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/group +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126241_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/serializer +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_244246_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/category +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_244540_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/bookCategory +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126277_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126278_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126279_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/ingredient +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126280_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126281_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/experience +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126282_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/cookingTime +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126283_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126284_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126285_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/serializer +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_244427_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/category +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126302_ net/minecraft/data/recipes/SingleItemRecipeBuilder/result +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126303_ net/minecraft/data/recipes/SingleItemRecipeBuilder/ingredient +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126304_ net/minecraft/data/recipes/SingleItemRecipeBuilder/count +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126305_ net/minecraft/data/recipes/SingleItemRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126306_ net/minecraft/data/recipes/SingleItemRecipeBuilder/group +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126307_ net/minecraft/data/recipes/SingleItemRecipeBuilder/type +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_244239_ net/minecraft/data/recipes/SingleItemRecipeBuilder/category +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126331_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126332_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126333_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/ingredient +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126334_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126335_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/count +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126336_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126337_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126338_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/type +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_265893_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/base +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_265959_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/addition +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266005_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/result +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266006_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/type +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266018_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/category +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266030_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/template +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266090_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265855_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265903_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/addition +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265962_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/type +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265972_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266002_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/template +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266011_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266094_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266112_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/base +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_265915_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/type +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_265957_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266042_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/base +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266046_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/addition +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266051_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/template +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266062_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/category +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265865_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/template +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265882_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265961_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265963_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266016_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/addition +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266032_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/base +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266055_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/type +FD: net/minecraft/data/recipes/SpecialRecipeBuilder/f_126354_ net/minecraft/data/recipes/SpecialRecipeBuilder/serializer +FD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/f_126364_ net/minecraft/data/recipes/SpecialRecipeBuilder$1/val$id +FD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/f_126365_ net/minecraft/data/recipes/SpecialRecipeBuilder$1/this$0 +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243671_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/COAL_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243779_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/IRON_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243908_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/COPPER_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243974_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/DIAMOND_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244369_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/GOLD_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244430_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/EMERALD_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244565_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/REDSTONE_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244628_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/LAPIS_SMELTABLES +FD: net/minecraft/data/registries/RegistriesDatapackGenerator/f_254654_ net/minecraft/data/registries/RegistriesDatapackGenerator/LOGGER +FD: net/minecraft/data/registries/RegistriesDatapackGenerator/f_254743_ net/minecraft/data/registries/RegistriesDatapackGenerator/output +FD: net/minecraft/data/registries/RegistriesDatapackGenerator/f_254747_ net/minecraft/data/registries/RegistriesDatapackGenerator/registries +FD: net/minecraft/data/registries/VanillaRegistries/f_254635_ net/minecraft/data/registries/VanillaRegistries/BUILDER +FD: net/minecraft/data/structures/NbtToSnbt/f_126421_ net/minecraft/data/structures/NbtToSnbt/LOGGER +FD: net/minecraft/data/structures/NbtToSnbt/f_243685_ net/minecraft/data/structures/NbtToSnbt/output +FD: net/minecraft/data/structures/NbtToSnbt/f_243763_ net/minecraft/data/structures/NbtToSnbt/inputFolders +FD: net/minecraft/data/structures/SnbtToNbt/f_126443_ net/minecraft/data/structures/SnbtToNbt/LOGGER +FD: net/minecraft/data/structures/SnbtToNbt/f_126445_ net/minecraft/data/structures/SnbtToNbt/filters +FD: net/minecraft/data/structures/SnbtToNbt/f_176815_ net/minecraft/data/structures/SnbtToNbt/DUMP_SNBT_TO +FD: net/minecraft/data/structures/SnbtToNbt/f_243879_ net/minecraft/data/structures/SnbtToNbt/output +FD: net/minecraft/data/structures/SnbtToNbt/f_244258_ net/minecraft/data/structures/SnbtToNbt/inputFolders +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126482_ net/minecraft/data/structures/SnbtToNbt$TaskResult/name +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126483_ net/minecraft/data/structures/SnbtToNbt$TaskResult/payload +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126484_ net/minecraft/data/structures/SnbtToNbt$TaskResult/snbtPayload +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126485_ net/minecraft/data/structures/SnbtToNbt$TaskResult/hash +FD: net/minecraft/data/structures/StructureUpdater/f_126499_ net/minecraft/data/structures/StructureUpdater/LOGGER +FD: net/minecraft/data/tags/GameEventTagsProvider/f_236425_ net/minecraft/data/tags/GameEventTagsProvider/VIBRATIONS_EXCEPT_FLAP +FD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/f_254687_ net/minecraft/data/tags/IntrinsicHolderTagsProvider/keyExtractor +FD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/f_254707_ net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/keyExtractor +FD: net/minecraft/data/tags/ItemTagsProvider/f_126528_ net/minecraft/data/tags/ItemTagsProvider/blockTags +FD: net/minecraft/data/tags/ItemTagsProvider/f_273814_ net/minecraft/data/tags/ItemTagsProvider/tagsToCopy +FD: net/minecraft/data/tags/TagsProvider/f_126541_ net/minecraft/data/tags/TagsProvider/LOGGER +FD: net/minecraft/data/tags/TagsProvider/f_126543_ net/minecraft/data/tags/TagsProvider/builders +FD: net/minecraft/data/tags/TagsProvider/f_236439_ net/minecraft/data/tags/TagsProvider/pathProvider +FD: net/minecraft/data/tags/TagsProvider/f_254716_ net/minecraft/data/tags/TagsProvider/registryKey +FD: net/minecraft/data/tags/TagsProvider/f_273855_ net/minecraft/data/tags/TagsProvider/parentProvider +FD: net/minecraft/data/tags/TagsProvider/f_275752_ net/minecraft/data/tags/TagsProvider/lookupProvider +FD: net/minecraft/data/tags/TagsProvider/f_275754_ net/minecraft/data/tags/TagsProvider/contentsDone +FD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273819_ net/minecraft/data/tags/TagsProvider$1CombinedData/parent +FD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273893_ net/minecraft/data/tags/TagsProvider$1CombinedData/contents +FD: net/minecraft/data/tags/TagsProvider$TagAppender/f_126568_ net/minecraft/data/tags/TagsProvider$TagAppender/builder +FD: net/minecraft/data/worldgen/AncientCityStructurePieces/f_236459_ net/minecraft/data/worldgen/AncientCityStructurePieces/START +FD: net/minecraft/data/worldgen/BastionPieces/f_126673_ net/minecraft/data/worldgen/BastionPieces/START +FD: net/minecraft/data/worldgen/Carvers/f_126848_ net/minecraft/data/worldgen/Carvers/CAVE +FD: net/minecraft/data/worldgen/Carvers/f_126849_ net/minecraft/data/worldgen/Carvers/CANYON +FD: net/minecraft/data/worldgen/Carvers/f_126853_ net/minecraft/data/worldgen/Carvers/NETHER_CAVE +FD: net/minecraft/data/worldgen/Carvers/f_194741_ net/minecraft/data/worldgen/Carvers/CAVE_EXTRA_UNDERGROUND +FD: net/minecraft/data/worldgen/DesertVillagePools/f_126858_ net/minecraft/data/worldgen/DesertVillagePools/START +FD: net/minecraft/data/worldgen/DesertVillagePools/f_254709_ net/minecraft/data/worldgen/DesertVillagePools/ZOMBIE_TERMINATORS_KEY +FD: net/minecraft/data/worldgen/DesertVillagePools/f_254714_ net/minecraft/data/worldgen/DesertVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/NoiseData/f_254655_ net/minecraft/data/worldgen/NoiseData/DEFAULT_SHIFT +FD: net/minecraft/data/worldgen/PillagerOutpostPools/f_127180_ net/minecraft/data/worldgen/PillagerOutpostPools/START +FD: net/minecraft/data/worldgen/PlainVillagePools/f_127183_ net/minecraft/data/worldgen/PlainVillagePools/START +FD: net/minecraft/data/worldgen/PlainVillagePools/f_254748_ net/minecraft/data/worldgen/PlainVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/Pools/f_127186_ net/minecraft/data/worldgen/Pools/EMPTY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127192_ net/minecraft/data/worldgen/ProcessorLists/BRIDGE +FD: net/minecraft/data/worldgen/ProcessorLists/f_127193_ net/minecraft/data/worldgen/ProcessorLists/ROOF +FD: net/minecraft/data/worldgen/ProcessorLists/f_127194_ net/minecraft/data/worldgen/ProcessorLists/HIGH_WALL +FD: net/minecraft/data/worldgen/ProcessorLists/f_127195_ net/minecraft/data/worldgen/ProcessorLists/HIGH_RAMPART +FD: net/minecraft/data/worldgen/ProcessorLists/f_127198_ net/minecraft/data/worldgen/ProcessorLists/EMPTY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127199_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_PLAINS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127200_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_SAVANNA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127201_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_SNOWY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127202_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_TAIGA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127203_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_DESERT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127204_ net/minecraft/data/worldgen/ProcessorLists/MOSSIFY_10_PERCENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127205_ net/minecraft/data/worldgen/ProcessorLists/MOSSIFY_20_PERCENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127206_ net/minecraft/data/worldgen/ProcessorLists/MOSSIFY_70_PERCENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127207_ net/minecraft/data/worldgen/ProcessorLists/STREET_PLAINS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127208_ net/minecraft/data/worldgen/ProcessorLists/STREET_SAVANNA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127209_ net/minecraft/data/worldgen/ProcessorLists/STREET_SNOWY_OR_TAIGA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127210_ net/minecraft/data/worldgen/ProcessorLists/FARM_PLAINS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127211_ net/minecraft/data/worldgen/ProcessorLists/FARM_SAVANNA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127212_ net/minecraft/data/worldgen/ProcessorLists/FARM_SNOWY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127213_ net/minecraft/data/worldgen/ProcessorLists/FARM_TAIGA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127214_ net/minecraft/data/worldgen/ProcessorLists/FARM_DESERT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127215_ net/minecraft/data/worldgen/ProcessorLists/OUTPOST_ROT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127216_ net/minecraft/data/worldgen/ProcessorLists/BOTTOM_RAMPART +FD: net/minecraft/data/worldgen/ProcessorLists/f_127217_ net/minecraft/data/worldgen/ProcessorLists/TREASURE_ROOMS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127218_ net/minecraft/data/worldgen/ProcessorLists/HOUSING +FD: net/minecraft/data/worldgen/ProcessorLists/f_127219_ net/minecraft/data/worldgen/ProcessorLists/SIDE_WALL_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127220_ net/minecraft/data/worldgen/ProcessorLists/STABLE_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127221_ net/minecraft/data/worldgen/ProcessorLists/BASTION_GENERIC_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127222_ net/minecraft/data/worldgen/ProcessorLists/RAMPART_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127223_ net/minecraft/data/worldgen/ProcessorLists/ENTRANCE_REPLACEMENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_177022_ net/minecraft/data/worldgen/ProcessorLists/FOSSIL_ROT +FD: net/minecraft/data/worldgen/ProcessorLists/f_177023_ net/minecraft/data/worldgen/ProcessorLists/FOSSIL_COAL +FD: net/minecraft/data/worldgen/ProcessorLists/f_177024_ net/minecraft/data/worldgen/ProcessorLists/FOSSIL_DIAMONDS +FD: net/minecraft/data/worldgen/ProcessorLists/f_236493_ net/minecraft/data/worldgen/ProcessorLists/ANCIENT_CITY_START_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_236494_ net/minecraft/data/worldgen/ProcessorLists/ANCIENT_CITY_GENERIC_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_236495_ net/minecraft/data/worldgen/ProcessorLists/ANCIENT_CITY_WALLS_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_279575_ net/minecraft/data/worldgen/ProcessorLists/TRAIL_RUINS_ROADS_ARCHAEOLOGY +FD: net/minecraft/data/worldgen/ProcessorLists/f_279605_ net/minecraft/data/worldgen/ProcessorLists/TRAIL_RUINS_TOWER_TOP_ARCHAEOLOGY +FD: net/minecraft/data/worldgen/ProcessorLists/f_279666_ net/minecraft/data/worldgen/ProcessorLists/TRAIL_RUINS_HOUSES_ARCHAEOLOGY +FD: net/minecraft/data/worldgen/SavannaVillagePools/f_127228_ net/minecraft/data/worldgen/SavannaVillagePools/START +FD: net/minecraft/data/worldgen/SavannaVillagePools/f_254638_ net/minecraft/data/worldgen/SavannaVillagePools/ZOMBIE_TERMINATORS_KEY +FD: net/minecraft/data/worldgen/SavannaVillagePools/f_254665_ net/minecraft/data/worldgen/SavannaVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/SnowyVillagePools/f_127231_ net/minecraft/data/worldgen/SnowyVillagePools/START +FD: net/minecraft/data/worldgen/SnowyVillagePools/f_254720_ net/minecraft/data/worldgen/SnowyVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194771_ net/minecraft/data/worldgen/SurfaceRuleData/SOUL_SOIL +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194772_ net/minecraft/data/worldgen/SurfaceRuleData/BASALT +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194773_ net/minecraft/data/worldgen/SurfaceRuleData/BLACKSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194774_ net/minecraft/data/worldgen/SurfaceRuleData/WARPED_WART_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194775_ net/minecraft/data/worldgen/SurfaceRuleData/WARPED_NYLIUM +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194776_ net/minecraft/data/worldgen/SurfaceRuleData/NETHER_WART_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194777_ net/minecraft/data/worldgen/SurfaceRuleData/CRIMSON_NYLIUM +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194778_ net/minecraft/data/worldgen/SurfaceRuleData/ENDSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194779_ net/minecraft/data/worldgen/SurfaceRuleData/AIR +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194780_ net/minecraft/data/worldgen/SurfaceRuleData/BEDROCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194781_ net/minecraft/data/worldgen/SurfaceRuleData/WHITE_TERRACOTTA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194782_ net/minecraft/data/worldgen/SurfaceRuleData/ORANGE_TERRACOTTA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194783_ net/minecraft/data/worldgen/SurfaceRuleData/TERRACOTTA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194784_ net/minecraft/data/worldgen/SurfaceRuleData/RED_SAND +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194785_ net/minecraft/data/worldgen/SurfaceRuleData/RED_SANDSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194786_ net/minecraft/data/worldgen/SurfaceRuleData/STONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194787_ net/minecraft/data/worldgen/SurfaceRuleData/DEEPSLATE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194788_ net/minecraft/data/worldgen/SurfaceRuleData/DIRT +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194789_ net/minecraft/data/worldgen/SurfaceRuleData/PODZOL +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194790_ net/minecraft/data/worldgen/SurfaceRuleData/COARSE_DIRT +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194791_ net/minecraft/data/worldgen/SurfaceRuleData/MYCELIUM +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194792_ net/minecraft/data/worldgen/SurfaceRuleData/GRASS_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194793_ net/minecraft/data/worldgen/SurfaceRuleData/CALCITE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194794_ net/minecraft/data/worldgen/SurfaceRuleData/GRAVEL +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194795_ net/minecraft/data/worldgen/SurfaceRuleData/SAND +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194796_ net/minecraft/data/worldgen/SurfaceRuleData/SANDSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194797_ net/minecraft/data/worldgen/SurfaceRuleData/PACKED_ICE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194798_ net/minecraft/data/worldgen/SurfaceRuleData/SNOW_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194799_ net/minecraft/data/worldgen/SurfaceRuleData/POWDER_SNOW +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194800_ net/minecraft/data/worldgen/SurfaceRuleData/ICE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194801_ net/minecraft/data/worldgen/SurfaceRuleData/WATER +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194802_ net/minecraft/data/worldgen/SurfaceRuleData/LAVA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194803_ net/minecraft/data/worldgen/SurfaceRuleData/NETHERRACK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194804_ net/minecraft/data/worldgen/SurfaceRuleData/SOUL_SAND +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_236556_ net/minecraft/data/worldgen/SurfaceRuleData/MUD +FD: net/minecraft/data/worldgen/TaigaVillagePools/f_127303_ net/minecraft/data/worldgen/TaigaVillagePools/START +FD: net/minecraft/data/worldgen/TaigaVillagePools/f_254670_ net/minecraft/data/worldgen/TaigaVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/TerrainProvider/f_236557_ net/minecraft/data/worldgen/TerrainProvider/DEEP_OCEAN_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236558_ net/minecraft/data/worldgen/TerrainProvider/OCEAN_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236559_ net/minecraft/data/worldgen/TerrainProvider/PLAINS_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236560_ net/minecraft/data/worldgen/TerrainProvider/BEACH_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236561_ net/minecraft/data/worldgen/TerrainProvider/NO_TRANSFORM +FD: net/minecraft/data/worldgen/TerrainProvider/f_236562_ net/minecraft/data/worldgen/TerrainProvider/AMPLIFIED_OFFSET +FD: net/minecraft/data/worldgen/TerrainProvider/f_236563_ net/minecraft/data/worldgen/TerrainProvider/AMPLIFIED_FACTOR +FD: net/minecraft/data/worldgen/TerrainProvider/f_236564_ net/minecraft/data/worldgen/TerrainProvider/AMPLIFIED_JAGGEDNESS +FD: net/minecraft/data/worldgen/TrailRuinsStructurePools/f_276659_ net/minecraft/data/worldgen/TrailRuinsStructurePools/START +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194836_ net/minecraft/data/worldgen/biome/OverworldBiomes/NORMAL_WATER_COLOR +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194837_ net/minecraft/data/worldgen/biome/OverworldBiomes/NORMAL_WATER_FOG_COLOR +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194838_ net/minecraft/data/worldgen/biome/OverworldBiomes/OVERWORLD_FOG_COLOR +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194839_ net/minecraft/data/worldgen/biome/OverworldBiomes/NORMAL_MUSIC +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194925_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_SHORT +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194926_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_SLIGHTLY_LESS_SHORT +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194927_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_MID +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194928_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_TALL +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194929_ net/minecraft/data/worldgen/features/AquaticFeatures/SEA_PICKLE +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194930_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_SIMPLE +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194931_ net/minecraft/data/worldgen/features/AquaticFeatures/KELP +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194932_ net/minecraft/data/worldgen/features/AquaticFeatures/WARM_OCEAN_VEGETATION +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194938_ net/minecraft/data/worldgen/features/CaveFeatures/MONSTER_ROOM +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194939_ net/minecraft/data/worldgen/features/CaveFeatures/FOSSIL_COAL +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194940_ net/minecraft/data/worldgen/features/CaveFeatures/FOSSIL_DIAMONDS +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194941_ net/minecraft/data/worldgen/features/CaveFeatures/DRIPSTONE_CLUSTER +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194942_ net/minecraft/data/worldgen/features/CaveFeatures/LARGE_DRIPSTONE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194943_ net/minecraft/data/worldgen/features/CaveFeatures/POINTED_DRIPSTONE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194944_ net/minecraft/data/worldgen/features/CaveFeatures/UNDERWATER_MAGMA +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194945_ net/minecraft/data/worldgen/features/CaveFeatures/GLOW_LICHEN +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194946_ net/minecraft/data/worldgen/features/CaveFeatures/ROOTED_AZALEA_TREE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194947_ net/minecraft/data/worldgen/features/CaveFeatures/CAVE_VINE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194948_ net/minecraft/data/worldgen/features/CaveFeatures/CAVE_VINE_IN_MOSS +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194949_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_VEGETATION +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194950_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_PATCH +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194951_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_PATCH_BONEMEAL +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194952_ net/minecraft/data/worldgen/features/CaveFeatures/DRIPLEAF +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194953_ net/minecraft/data/worldgen/features/CaveFeatures/CLAY_WITH_DRIPLEAVES +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194954_ net/minecraft/data/worldgen/features/CaveFeatures/CLAY_POOL_WITH_DRIPLEAVES +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194955_ net/minecraft/data/worldgen/features/CaveFeatures/LUSH_CAVES_CLAY +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194956_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_PATCH_CEILING +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194957_ net/minecraft/data/worldgen/features/CaveFeatures/SPORE_BLOSSOM +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194958_ net/minecraft/data/worldgen/features/CaveFeatures/AMETHYST_GEODE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_236674_ net/minecraft/data/worldgen/features/CaveFeatures/SCULK_PATCH_DEEP_DARK +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_236675_ net/minecraft/data/worldgen/features/CaveFeatures/SCULK_PATCH_ANCIENT_CITY +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_236676_ net/minecraft/data/worldgen/features/CaveFeatures/SCULK_VEIN +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194982_ net/minecraft/data/worldgen/features/EndFeatures/END_SPIKE +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194983_ net/minecraft/data/worldgen/features/EndFeatures/END_GATEWAY_RETURN +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194984_ net/minecraft/data/worldgen/features/EndFeatures/END_GATEWAY_DELAYED +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194985_ net/minecraft/data/worldgen/features/EndFeatures/CHORUS_PLANT +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194986_ net/minecraft/data/worldgen/features/EndFeatures/END_ISLAND +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195010_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICE_SPIKE +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195011_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICE_PATCH +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195012_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/FOREST_ROCK +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195013_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICEBERG_PACKED +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195014_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICEBERG_BLUE +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195015_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/BLUE_ICE +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195016_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/LAKE_LAVA +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195017_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_CLAY +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195018_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_GRAVEL +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195019_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_SAND +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195020_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/FREEZE_TOP_LAYER +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195021_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/BONUS_CHEST +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195022_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/VOID_START_PLATFORM +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195023_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DESERT_WELL +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195024_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/SPRING_LAVA_OVERWORLD +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195025_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/SPRING_LAVA_FROZEN +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195026_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/SPRING_WATER +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_236760_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_GRASS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195029_ net/minecraft/data/worldgen/features/NetherFeatures/DELTA +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195030_ net/minecraft/data/worldgen/features/NetherFeatures/SMALL_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195031_ net/minecraft/data/worldgen/features/NetherFeatures/LARGE_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195032_ net/minecraft/data/worldgen/features/NetherFeatures/BASALT_BLOBS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195033_ net/minecraft/data/worldgen/features/NetherFeatures/BLACKSTONE_BLOBS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195034_ net/minecraft/data/worldgen/features/NetherFeatures/GLOWSTONE_EXTRA +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195036_ net/minecraft/data/worldgen/features/NetherFeatures/CRIMSON_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195037_ net/minecraft/data/worldgen/features/NetherFeatures/CRIMSON_FOREST_VEGETATION_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195039_ net/minecraft/data/worldgen/features/NetherFeatures/WARPED_FOREST_VEGETION +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195040_ net/minecraft/data/worldgen/features/NetherFeatures/WARPED_FOREST_VEGETATION_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195041_ net/minecraft/data/worldgen/features/NetherFeatures/NETHER_SPROUTS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195042_ net/minecraft/data/worldgen/features/NetherFeatures/NETHER_SPROUTS_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195043_ net/minecraft/data/worldgen/features/NetherFeatures/TWISTING_VINES +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195044_ net/minecraft/data/worldgen/features/NetherFeatures/TWISTING_VINES_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195045_ net/minecraft/data/worldgen/features/NetherFeatures/WEEPING_VINES +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195046_ net/minecraft/data/worldgen/features/NetherFeatures/PATCH_CRIMSON_ROOTS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195047_ net/minecraft/data/worldgen/features/NetherFeatures/BASALT_PILLAR +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195048_ net/minecraft/data/worldgen/features/NetherFeatures/SPRING_LAVA_NETHER +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195049_ net/minecraft/data/worldgen/features/NetherFeatures/SPRING_NETHER_CLOSED +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195050_ net/minecraft/data/worldgen/features/NetherFeatures/SPRING_NETHER_OPEN +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195051_ net/minecraft/data/worldgen/features/NetherFeatures/PATCH_FIRE +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195052_ net/minecraft/data/worldgen/features/NetherFeatures/PATCH_SOUL_FIRE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195055_ net/minecraft/data/worldgen/features/OreFeatures/ORE_IRON_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195056_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GOLD +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195057_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GOLD_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195058_ net/minecraft/data/worldgen/features/OreFeatures/ORE_REDSTONE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195059_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIAMOND_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195060_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIAMOND_LARGE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195061_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIAMOND_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195062_ net/minecraft/data/worldgen/features/OreFeatures/ORE_LAPIS +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195063_ net/minecraft/data/worldgen/features/OreFeatures/ORE_LAPIS_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195064_ net/minecraft/data/worldgen/features/OreFeatures/ORE_INFESTED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195065_ net/minecraft/data/worldgen/features/OreFeatures/ORE_EMERALD +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195066_ net/minecraft/data/worldgen/features/OreFeatures/ORE_ANCIENT_DEBRIS_LARGE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195067_ net/minecraft/data/worldgen/features/OreFeatures/ORE_ANCIENT_DEBRIS_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195068_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COPPPER_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195069_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COPPER_LARGE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195070_ net/minecraft/data/worldgen/features/OreFeatures/ORE_CLAY +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195082_ net/minecraft/data/worldgen/features/OreFeatures/ORE_MAGMA +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195083_ net/minecraft/data/worldgen/features/OreFeatures/ORE_SOUL_SAND +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195084_ net/minecraft/data/worldgen/features/OreFeatures/ORE_NETHER_GOLD +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195085_ net/minecraft/data/worldgen/features/OreFeatures/ORE_QUARTZ +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195086_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GRAVEL_NETHER +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195087_ net/minecraft/data/worldgen/features/OreFeatures/ORE_BLACKSTONE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195088_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIRT +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195089_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GRAVEL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195090_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GRANITE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195091_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIORITE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195092_ net/minecraft/data/worldgen/features/OreFeatures/ORE_ANDESITE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195093_ net/minecraft/data/worldgen/features/OreFeatures/ORE_TUFF +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195094_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COAL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195095_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COAL_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195096_ net/minecraft/data/worldgen/features/OreFeatures/ORE_IRON +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195099_ net/minecraft/data/worldgen/features/PileFeatures/PILE_HAY +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195100_ net/minecraft/data/worldgen/features/PileFeatures/PILE_MELON +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195101_ net/minecraft/data/worldgen/features/PileFeatures/PILE_SNOW +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195102_ net/minecraft/data/worldgen/features/PileFeatures/PILE_ICE +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195103_ net/minecraft/data/worldgen/features/PileFeatures/PILE_PUMPKIN +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195106_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195107_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH_BEES_002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195108_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH_BEES_005 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195109_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195110_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES_002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195111_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES_005 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195112_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195117_ net/minecraft/data/worldgen/features/TreeFeatures/CRIMSON_FUNGUS +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195118_ net/minecraft/data/worldgen/features/TreeFeatures/CRIMSON_FUNGUS_PLANTED +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195119_ net/minecraft/data/worldgen/features/TreeFeatures/WARPED_FUNGUS +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195120_ net/minecraft/data/worldgen/features/TreeFeatures/WARPED_FUNGUS_PLANTED +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195121_ net/minecraft/data/worldgen/features/TreeFeatures/HUGE_BROWN_MUSHROOM +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195122_ net/minecraft/data/worldgen/features/TreeFeatures/HUGE_RED_MUSHROOM +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195123_ net/minecraft/data/worldgen/features/TreeFeatures/OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195124_ net/minecraft/data/worldgen/features/TreeFeatures/DARK_OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195125_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195126_ net/minecraft/data/worldgen/features/TreeFeatures/ACACIA +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195127_ net/minecraft/data/worldgen/features/TreeFeatures/SPRUCE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195128_ net/minecraft/data/worldgen/features/TreeFeatures/PINE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195129_ net/minecraft/data/worldgen/features/TreeFeatures/JUNGLE_TREE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195130_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195131_ net/minecraft/data/worldgen/features/TreeFeatures/JUNGLE_TREE_NO_VINE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195132_ net/minecraft/data/worldgen/features/TreeFeatures/MEGA_JUNGLE_TREE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195133_ net/minecraft/data/worldgen/features/TreeFeatures/MEGA_SPRUCE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195134_ net/minecraft/data/worldgen/features/TreeFeatures/MEGA_PINE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195135_ net/minecraft/data/worldgen/features/TreeFeatures/SUPER_BIRCH_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195136_ net/minecraft/data/worldgen/features/TreeFeatures/SUPER_BIRCH_BEES +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195137_ net/minecraft/data/worldgen/features/TreeFeatures/SWAMP_OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195138_ net/minecraft/data/worldgen/features/TreeFeatures/JUNGLE_BUSH +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195139_ net/minecraft/data/worldgen/features/TreeFeatures/AZALEA_TREE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195140_ net/minecraft/data/worldgen/features/TreeFeatures/OAK_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195141_ net/minecraft/data/worldgen/features/TreeFeatures/OAK_BEES_002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195142_ net/minecraft/data/worldgen/features/TreeFeatures/OAK_BEES_005 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_236762_ net/minecraft/data/worldgen/features/TreeFeatures/MANGROVE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_236763_ net/minecraft/data/worldgen/features/TreeFeatures/TALL_MANGROVE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_271469_ net/minecraft/data/worldgen/features/TreeFeatures/CHERRY +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_271485_ net/minecraft/data/worldgen/features/TreeFeatures/CHERRY_BEES_005 +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195157_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_FLOWER_FOREST +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195158_ net/minecraft/data/worldgen/features/VegetationFeatures/MEADOW_TREES +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195159_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_TAIGA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195160_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_GROVE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195161_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_SAVANNA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195162_ net/minecraft/data/worldgen/features/VegetationFeatures/BIRCH_TALL +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195163_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_WINDSWEPT_HILLS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195164_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_WATER +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195165_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_BIRCH_AND_OAK +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195166_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_PLAINS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195167_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_SPARSE_JUNGLE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195168_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_OLD_GROWTH_SPRUCE_TAIGA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195169_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_OLD_GROWTH_PINE_TAIGA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195170_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_JUNGLE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195171_ net/minecraft/data/worldgen/features/VegetationFeatures/BAMBOO_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195172_ net/minecraft/data/worldgen/features/VegetationFeatures/MUSHROOM_ISLAND_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195173_ net/minecraft/data/worldgen/features/VegetationFeatures/BAMBOO_NO_PODZOL +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195174_ net/minecraft/data/worldgen/features/VegetationFeatures/BAMBOO_SOME_PODZOL +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195175_ net/minecraft/data/worldgen/features/VegetationFeatures/VINES +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195176_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_BROWN_MUSHROOM +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195177_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_RED_MUSHROOM +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195178_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_SUNFLOWER +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195179_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_PUMPKIN +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195180_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_BERRY_BUSH +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195181_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_TAIGA_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195182_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195183_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_GRASS_JUNGLE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195184_ net/minecraft/data/worldgen/features/VegetationFeatures/SINGLE_PIECE_OF_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195185_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_DEAD_BUSH +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195186_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_MELON +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195187_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_WATERLILY +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195188_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_TALL_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195189_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_LARGE_FERN +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195190_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_CACTUS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195191_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_SUGAR_CANE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195192_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_DEFAULT +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195193_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_FLOWER_FOREST +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195194_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_SWAMP +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195195_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_PLAIN +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195196_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_MEADOW +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195197_ net/minecraft/data/worldgen/features/VegetationFeatures/FOREST_FLOWERS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195198_ net/minecraft/data/worldgen/features/VegetationFeatures/DARK_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_236764_ net/minecraft/data/worldgen/features/VegetationFeatures/MANGROVE_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_271409_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_CHERRY +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195218_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_WARM +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195219_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_NORMAL +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195220_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_COLD +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195221_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_RIVER +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195222_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_SWAMP +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195223_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_DEEP_WARM +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195224_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_DEEP +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195225_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_DEEP_COLD +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195226_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_SIMPLE +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195227_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEA_PICKLE +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195228_ net/minecraft/data/worldgen/placement/AquaticPlacements/KELP_COLD +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195229_ net/minecraft/data/worldgen/placement/AquaticPlacements/KELP_WARM +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195230_ net/minecraft/data/worldgen/placement/AquaticPlacements/WARM_OCEAN_VEGETATION +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195235_ net/minecraft/data/worldgen/placement/CavePlacements/MONSTER_ROOM +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195236_ net/minecraft/data/worldgen/placement/CavePlacements/MONSTER_ROOM_DEEP +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195237_ net/minecraft/data/worldgen/placement/CavePlacements/FOSSIL_UPPER +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195238_ net/minecraft/data/worldgen/placement/CavePlacements/FOSSIL_LOWER +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195239_ net/minecraft/data/worldgen/placement/CavePlacements/DRIPSTONE_CLUSTER +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195240_ net/minecraft/data/worldgen/placement/CavePlacements/LARGE_DRIPSTONE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195241_ net/minecraft/data/worldgen/placement/CavePlacements/POINTED_DRIPSTONE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195242_ net/minecraft/data/worldgen/placement/CavePlacements/UNDERWATER_MAGMA +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195243_ net/minecraft/data/worldgen/placement/CavePlacements/GLOW_LICHEN +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195244_ net/minecraft/data/worldgen/placement/CavePlacements/ROOTED_AZALEA_TREE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195245_ net/minecraft/data/worldgen/placement/CavePlacements/CAVE_VINES +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195246_ net/minecraft/data/worldgen/placement/CavePlacements/LUSH_CAVES_VEGETATION +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195247_ net/minecraft/data/worldgen/placement/CavePlacements/LUSH_CAVES_CLAY +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195248_ net/minecraft/data/worldgen/placement/CavePlacements/LUSH_CAVES_CEILING_VEGETATION +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195249_ net/minecraft/data/worldgen/placement/CavePlacements/SPORE_BLOSSOM +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195250_ net/minecraft/data/worldgen/placement/CavePlacements/CLASSIC_VINES +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195251_ net/minecraft/data/worldgen/placement/CavePlacements/AMETHYST_GEODE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_236765_ net/minecraft/data/worldgen/placement/CavePlacements/SCULK_PATCH_DEEP_DARK +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_236766_ net/minecraft/data/worldgen/placement/CavePlacements/SCULK_PATCH_ANCIENT_CITY +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_236767_ net/minecraft/data/worldgen/placement/CavePlacements/SCULK_VEIN +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195254_ net/minecraft/data/worldgen/placement/EndPlacements/END_SPIKE +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195255_ net/minecraft/data/worldgen/placement/EndPlacements/END_GATEWAY_RETURN +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195256_ net/minecraft/data/worldgen/placement/EndPlacements/CHORUS_PLANT +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195257_ net/minecraft/data/worldgen/placement/EndPlacements/END_ISLAND_DECORATED +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195260_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICE_SPIKE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195261_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICE_PATCH +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195262_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/FOREST_ROCK +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195263_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICEBERG_PACKED +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195264_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICEBERG_BLUE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195265_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/BLUE_ICE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195266_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/LAKE_LAVA_UNDERGROUND +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195267_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/LAKE_LAVA_SURFACE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195268_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_CLAY +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195269_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_GRAVEL +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195270_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_SAND +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195271_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/FREEZE_TOP_LAYER +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195272_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/VOID_START_PLATFORM +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195273_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DESERT_WELL +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195274_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/SPRING_LAVA +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195275_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/SPRING_LAVA_FROZEN +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195276_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/SPRING_WATER +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_236768_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_GRASS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195279_ net/minecraft/data/worldgen/placement/NetherPlacements/DELTA +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195280_ net/minecraft/data/worldgen/placement/NetherPlacements/SMALL_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195281_ net/minecraft/data/worldgen/placement/NetherPlacements/LARGE_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195282_ net/minecraft/data/worldgen/placement/NetherPlacements/BASALT_BLOBS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195283_ net/minecraft/data/worldgen/placement/NetherPlacements/BLACKSTONE_BLOBS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195284_ net/minecraft/data/worldgen/placement/NetherPlacements/GLOWSTONE_EXTRA +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195285_ net/minecraft/data/worldgen/placement/NetherPlacements/GLOWSTONE +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195286_ net/minecraft/data/worldgen/placement/NetherPlacements/CRIMSON_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195287_ net/minecraft/data/worldgen/placement/NetherPlacements/WARPED_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195288_ net/minecraft/data/worldgen/placement/NetherPlacements/NETHER_SPROUTS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195289_ net/minecraft/data/worldgen/placement/NetherPlacements/TWISTING_VINES +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195290_ net/minecraft/data/worldgen/placement/NetherPlacements/WEEPING_VINES +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195291_ net/minecraft/data/worldgen/placement/NetherPlacements/PATCH_CRIMSON_ROOTS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195292_ net/minecraft/data/worldgen/placement/NetherPlacements/BASALT_PILLAR +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195293_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_DELTA +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195294_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_CLOSED +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195295_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_CLOSED_DOUBLE +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195296_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_OPEN +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195298_ net/minecraft/data/worldgen/placement/NetherPlacements/PATCH_SOUL_FIRE +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195299_ net/minecraft/data/worldgen/placement/NetherPlacements/PATCH_FIRE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195302_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_REDSTONE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195303_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIAMOND +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195304_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIAMOND_LARGE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195305_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIAMOND_BURIED +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195306_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_LAPIS +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195307_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_LAPIS_BURIED +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195308_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_INFESTED +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195309_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_EMERALD +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195310_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANCIENT_DEBRIS_LARGE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195311_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANCIENT_DEBRIS_SMALL +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195312_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195313_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COPPER_LARGE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195314_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_CLAY +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195315_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_MAGMA +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195316_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_SOUL_SAND +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195317_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_DELTAS +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195318_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_QUARTZ_DELTAS +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195319_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_NETHER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195320_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_QUARTZ_NETHER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195321_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRAVEL_NETHER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195322_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_BLACKSTONE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195323_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIRT +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195324_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRAVEL +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195325_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRANITE_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195326_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRANITE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195327_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIORITE_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195328_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIORITE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195329_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANDESITE_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195330_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANDESITE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195331_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_TUFF +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195332_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COAL_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195333_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COAL_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195334_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_IRON_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195335_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_IRON_MIDDLE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195336_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_IRON_SMALL +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195337_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_EXTRA +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195338_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195339_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195340_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_REDSTONE +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195352_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195353_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP_TOP_SOLID +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195354_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP_WORLD_SURFACE +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195355_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP_OCEAN_FLOOR +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195356_ net/minecraft/data/worldgen/placement/PlacementUtils/FULL_RANGE +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195357_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_10_10 +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195358_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_8_8 +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195359_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_4_4 +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195360_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_BOTTOM_TO_MAX_TERRAIN_HEIGHT +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195371_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_BEES +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195372_ net/minecraft/data/worldgen/placement/TreePlacements/CRIMSON_FUNGI +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195373_ net/minecraft/data/worldgen/placement/TreePlacements/WARPED_FUNGI +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195374_ net/minecraft/data/worldgen/placement/TreePlacements/OAK_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195375_ net/minecraft/data/worldgen/placement/TreePlacements/DARK_OAK_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195376_ net/minecraft/data/worldgen/placement/TreePlacements/BIRCH_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195377_ net/minecraft/data/worldgen/placement/TreePlacements/ACACIA_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195378_ net/minecraft/data/worldgen/placement/TreePlacements/SPRUCE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195381_ net/minecraft/data/worldgen/placement/TreePlacements/PINE_ON_SNOW +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195382_ net/minecraft/data/worldgen/placement/TreePlacements/SPRUCE_ON_SNOW +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195383_ net/minecraft/data/worldgen/placement/TreePlacements/PINE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195384_ net/minecraft/data/worldgen/placement/TreePlacements/JUNGLE_TREE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195385_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195386_ net/minecraft/data/worldgen/placement/TreePlacements/MEGA_JUNGLE_TREE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195387_ net/minecraft/data/worldgen/placement/TreePlacements/MEGA_SPRUCE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195388_ net/minecraft/data/worldgen/placement/TreePlacements/MEGA_PINE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195389_ net/minecraft/data/worldgen/placement/TreePlacements/JUNGLE_BUSH +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195390_ net/minecraft/data/worldgen/placement/TreePlacements/SUPER_BIRCH_BEES_0002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195391_ net/minecraft/data/worldgen/placement/TreePlacements/SUPER_BIRCH_BEES +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195392_ net/minecraft/data/worldgen/placement/TreePlacements/OAK_BEES_0002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195393_ net/minecraft/data/worldgen/placement/TreePlacements/OAK_BEES_002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195394_ net/minecraft/data/worldgen/placement/TreePlacements/BIRCH_BEES_0002_PLACED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195395_ net/minecraft/data/worldgen/placement/TreePlacements/BIRCH_BEES_002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195396_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_BEES_0002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195397_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_BEES_002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_236771_ net/minecraft/data/worldgen/placement/TreePlacements/MANGROVE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_236772_ net/minecraft/data/worldgen/placement/TreePlacements/TALL_MANGROVE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_271177_ net/minecraft/data/worldgen/placement/TreePlacements/CHERRY_BEES_005 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_271402_ net/minecraft/data/worldgen/placement/TreePlacements/CHERRY_CHECKED +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195400_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195401_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE_DESERT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195402_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195403_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195404_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_NETHER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195405_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_NETHER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195406_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_NORMAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195407_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_NORMAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195408_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195409_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195410_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_OLD_GROWTH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195411_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_OLD_GROWTH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195412_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195413_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195414_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_WARM +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195415_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_DEFAULT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195416_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_FLOWER_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195417_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195419_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_MEADOW +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195420_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREE_THRESHOLD +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195421_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_PLAINS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195422_ net/minecraft/data/worldgen/placement/VegetationPlacements/DARK_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195423_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_FOREST_FLOWERS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195424_ net/minecraft/data/worldgen/placement/VegetationPlacements/FOREST_FLOWERS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195425_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_FLOWER_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195426_ net/minecraft/data/worldgen/placement/VegetationPlacements/BAMBOO_LIGHT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195427_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_MEADOW +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195428_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195429_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_GROVE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195430_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195431_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SNOWY +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195432_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195433_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WINDSWEPT_SAVANNA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195434_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SAVANNA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195435_ net/minecraft/data/worldgen/placement/VegetationPlacements/BIRCH_TALL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195436_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_BIRCH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195437_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WINDSWEPT_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195438_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WINDSWEPT_HILLS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195439_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WATER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195440_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_BIRCH_AND_OAK +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195441_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SPARSE_JUNGLE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195442_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_OLD_GROWTH_SPRUCE_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195443_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_OLD_GROWTH_PINE_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195444_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_JUNGLE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195445_ net/minecraft/data/worldgen/placement/VegetationPlacements/BAMBOO_VEGETATION +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195446_ net/minecraft/data/worldgen/placement/VegetationPlacements/MUSHROOM_ISLAND_VEGETATION +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195447_ net/minecraft/data/worldgen/placement/VegetationPlacements/BAMBOO +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195448_ net/minecraft/data/worldgen/placement/VegetationPlacements/VINES +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195449_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUNFLOWER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195450_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_PUMPKIN +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195451_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_PLAIN +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195452_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195453_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195454_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_SAVANNA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195455_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_NORMAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195456_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_TAIGA_2 +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195457_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195458_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_JUNGLE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195459_ net/minecraft/data/worldgen/placement/VegetationPlacements/GRASS_BONEMEAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195460_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_DEAD_BUSH_2 +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195461_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_DEAD_BUSH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195462_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_DEAD_BUSH_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195463_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_MELON +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195464_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_BERRY_COMMON +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195465_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_BERRY_RARE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195466_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_WATERLILY +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195467_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_TALL_GRASS_2 +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195468_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_TALL_GRASS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195469_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_LARGE_FERN +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195470_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_CACTUS_DESERT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195471_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_CACTUS_DECORATED +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_197412_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_PLAINS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_198935_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_MELON_SPARSE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_236773_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_MANGROVE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_271098_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_CHERRY +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_271183_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_CHERRY +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197413_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_HAY_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197414_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_MELON_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197415_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_SNOW_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197416_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_ICE_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197417_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_PUMPKIN_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197418_ net/minecraft/data/worldgen/placement/VillagePlacements/OAK_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197419_ net/minecraft/data/worldgen/placement/VillagePlacements/ACACIA_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197420_ net/minecraft/data/worldgen/placement/VillagePlacements/SPRUCE_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197421_ net/minecraft/data/worldgen/placement/VillagePlacements/PINE_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197422_ net/minecraft/data/worldgen/placement/VillagePlacements/PATCH_CACTUS_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197423_ net/minecraft/data/worldgen/placement/VillagePlacements/FLOWER_PLAIN_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197424_ net/minecraft/data/worldgen/placement/VillagePlacements/PATCH_TAIGA_GRASS_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197425_ net/minecraft/data/worldgen/placement/VillagePlacements/PATCH_BERRY_BUSH_VILLAGE +FD: net/minecraft/gametest/framework/GameTestAssertPosException/f_127493_ net/minecraft/gametest/framework/GameTestAssertPosException/absolutePos +FD: net/minecraft/gametest/framework/GameTestAssertPosException/f_127494_ net/minecraft/gametest/framework/GameTestAssertPosException/relativePos +FD: net/minecraft/gametest/framework/GameTestAssertPosException/f_127495_ net/minecraft/gametest/framework/GameTestAssertPosException/tick +FD: net/minecraft/gametest/framework/GameTestBatch/f_127539_ net/minecraft/gametest/framework/GameTestBatch/name +FD: net/minecraft/gametest/framework/GameTestBatch/f_127540_ net/minecraft/gametest/framework/GameTestBatch/testFunctions +FD: net/minecraft/gametest/framework/GameTestBatch/f_127541_ net/minecraft/gametest/framework/GameTestBatch/beforeBatchFunction +FD: net/minecraft/gametest/framework/GameTestBatch/f_177056_ net/minecraft/gametest/framework/GameTestBatch/DEFAULT_BATCH_NAME +FD: net/minecraft/gametest/framework/GameTestBatch/f_177057_ net/minecraft/gametest/framework/GameTestBatch/afterBatchFunction +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127550_ net/minecraft/gametest/framework/GameTestBatchRunner/LOGGER +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127551_ net/minecraft/gametest/framework/GameTestBatchRunner/firstTestNorthWestCorner +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127552_ net/minecraft/gametest/framework/GameTestBatchRunner/level +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127553_ net/minecraft/gametest/framework/GameTestBatchRunner/testTicker +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127554_ net/minecraft/gametest/framework/GameTestBatchRunner/testsPerRow +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127555_ net/minecraft/gametest/framework/GameTestBatchRunner/allTestInfos +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127557_ net/minecraft/gametest/framework/GameTestBatchRunner/batches +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127560_ net/minecraft/gametest/framework/GameTestBatchRunner/nextTestNorthWestCorner +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_127586_ net/minecraft/gametest/framework/GameTestBatchRunner$1/this$0 +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_177080_ net/minecraft/gametest/framework/GameTestBatchRunner$1/val$currentBatchTracker +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_177081_ net/minecraft/gametest/framework/GameTestBatchRunner$1/val$currentBatch +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_177082_ net/minecraft/gametest/framework/GameTestBatchRunner$1/val$batchIndex +FD: net/minecraft/gametest/framework/GameTestEvent/f_127593_ net/minecraft/gametest/framework/GameTestEvent/expectedDelay +FD: net/minecraft/gametest/framework/GameTestEvent/f_127594_ net/minecraft/gametest/framework/GameTestEvent/assertion +FD: net/minecraft/gametest/framework/GameTestHelper/f_127595_ net/minecraft/gametest/framework/GameTestHelper/testInfo +FD: net/minecraft/gametest/framework/GameTestHelper/f_177099_ net/minecraft/gametest/framework/GameTestHelper/finalCheckAdded +FD: net/minecraft/gametest/framework/GameTestHelper$1/f_177460_ net/minecraft/gametest/framework/GameTestHelper$1/this$0 +FD: net/minecraft/gametest/framework/GameTestHelper$2/f_244589_ net/minecraft/gametest/framework/GameTestHelper$2/this$0 +FD: net/minecraft/gametest/framework/GameTestHelper$3/f_286944_ net/minecraft/gametest/framework/GameTestHelper$3/this$0 +FD: net/minecraft/gametest/framework/GameTestInfo/f_127598_ net/minecraft/gametest/framework/GameTestInfo/testFunction +FD: net/minecraft/gametest/framework/GameTestInfo/f_127599_ net/minecraft/gametest/framework/GameTestInfo/structureBlockPos +FD: net/minecraft/gametest/framework/GameTestInfo/f_127600_ net/minecraft/gametest/framework/GameTestInfo/level +FD: net/minecraft/gametest/framework/GameTestInfo/f_127601_ net/minecraft/gametest/framework/GameTestInfo/listeners +FD: net/minecraft/gametest/framework/GameTestInfo/f_127602_ net/minecraft/gametest/framework/GameTestInfo/timeoutTicks +FD: net/minecraft/gametest/framework/GameTestInfo/f_127603_ net/minecraft/gametest/framework/GameTestInfo/sequences +FD: net/minecraft/gametest/framework/GameTestInfo/f_127604_ net/minecraft/gametest/framework/GameTestInfo/runAtTickTimeMap +FD: net/minecraft/gametest/framework/GameTestInfo/f_127605_ net/minecraft/gametest/framework/GameTestInfo/startTick +FD: net/minecraft/gametest/framework/GameTestInfo/f_127606_ net/minecraft/gametest/framework/GameTestInfo/tickCount +FD: net/minecraft/gametest/framework/GameTestInfo/f_127607_ net/minecraft/gametest/framework/GameTestInfo/started +FD: net/minecraft/gametest/framework/GameTestInfo/f_127608_ net/minecraft/gametest/framework/GameTestInfo/timer +FD: net/minecraft/gametest/framework/GameTestInfo/f_127609_ net/minecraft/gametest/framework/GameTestInfo/done +FD: net/minecraft/gametest/framework/GameTestInfo/f_127610_ net/minecraft/gametest/framework/GameTestInfo/rotation +FD: net/minecraft/gametest/framework/GameTestInfo/f_127611_ net/minecraft/gametest/framework/GameTestInfo/error +FD: net/minecraft/gametest/framework/GameTestInfo/f_177469_ net/minecraft/gametest/framework/GameTestInfo/structureBlockEntity +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177495_ net/minecraft/gametest/framework/GameTestRegistry/TEST_FUNCTIONS +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177496_ net/minecraft/gametest/framework/GameTestRegistry/TEST_CLASS_NAMES +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177497_ net/minecraft/gametest/framework/GameTestRegistry/BEFORE_BATCH_FUNCTIONS +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177498_ net/minecraft/gametest/framework/GameTestRegistry/AFTER_BATCH_FUNCTIONS +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177499_ net/minecraft/gametest/framework/GameTestRegistry/LAST_FAILED_TESTS +FD: net/minecraft/gametest/framework/GameTestRunner/f_177521_ net/minecraft/gametest/framework/GameTestRunner/PADDING_AROUND_EACH_STRUCTURE +FD: net/minecraft/gametest/framework/GameTestRunner/f_177522_ net/minecraft/gametest/framework/GameTestRunner/SPACE_BETWEEN_COLUMNS +FD: net/minecraft/gametest/framework/GameTestRunner/f_177523_ net/minecraft/gametest/framework/GameTestRunner/SPACE_BETWEEN_ROWS +FD: net/minecraft/gametest/framework/GameTestRunner/f_177524_ net/minecraft/gametest/framework/GameTestRunner/DEFAULT_TESTS_PER_ROW +FD: net/minecraft/gametest/framework/GameTestRunner/f_177525_ net/minecraft/gametest/framework/GameTestRunner/MAX_TESTS_PER_BATCH +FD: net/minecraft/gametest/framework/GameTestSequence/f_127774_ net/minecraft/gametest/framework/GameTestSequence/parent +FD: net/minecraft/gametest/framework/GameTestSequence/f_127775_ net/minecraft/gametest/framework/GameTestSequence/events +FD: net/minecraft/gametest/framework/GameTestSequence/f_127776_ net/minecraft/gametest/framework/GameTestSequence/lastTick +FD: net/minecraft/gametest/framework/GameTestSequence$Condition/f_177577_ net/minecraft/gametest/framework/GameTestSequence$Condition/this$0 +FD: net/minecraft/gametest/framework/GameTestSequence$Condition/f_177578_ net/minecraft/gametest/framework/GameTestSequence$Condition/NOT_TRIGGERED +FD: net/minecraft/gametest/framework/GameTestSequence$Condition/f_177579_ net/minecraft/gametest/framework/GameTestSequence$Condition/triggerTime +FD: net/minecraft/gametest/framework/GameTestServer/f_177585_ net/minecraft/gametest/framework/GameTestServer/LOGGER +FD: net/minecraft/gametest/framework/GameTestServer/f_177586_ net/minecraft/gametest/framework/GameTestServer/PROGRESS_REPORT_INTERVAL +FD: net/minecraft/gametest/framework/GameTestServer/f_177587_ net/minecraft/gametest/framework/GameTestServer/testBatches +FD: net/minecraft/gametest/framework/GameTestServer/f_177588_ net/minecraft/gametest/framework/GameTestServer/spawnPos +FD: net/minecraft/gametest/framework/GameTestServer/f_177589_ net/minecraft/gametest/framework/GameTestServer/TEST_GAME_RULES +FD: net/minecraft/gametest/framework/GameTestServer/f_177591_ net/minecraft/gametest/framework/GameTestServer/testTracker +FD: net/minecraft/gametest/framework/GameTestServer/f_236789_ net/minecraft/gametest/framework/GameTestServer/NO_SERVICES +FD: net/minecraft/gametest/framework/GameTestServer/f_243964_ net/minecraft/gametest/framework/GameTestServer/WORLD_OPTIONS +FD: net/minecraft/gametest/framework/GameTestServer$1/f_177641_ net/minecraft/gametest/framework/GameTestServer$1/this$0 +FD: net/minecraft/gametest/framework/GameTestTicker/f_127784_ net/minecraft/gametest/framework/GameTestTicker/testInfos +FD: net/minecraft/gametest/framework/GameTestTicker/f_177648_ net/minecraft/gametest/framework/GameTestTicker/SINGLETON +FD: net/minecraft/gametest/framework/GlobalTestReporter/f_177649_ net/minecraft/gametest/framework/GlobalTestReporter/DELEGATE +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177659_ net/minecraft/gametest/framework/JUnitLikeTestReporter/document +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177660_ net/minecraft/gametest/framework/JUnitLikeTestReporter/testSuite +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177661_ net/minecraft/gametest/framework/JUnitLikeTestReporter/stopwatch +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177662_ net/minecraft/gametest/framework/JUnitLikeTestReporter/destination +FD: net/minecraft/gametest/framework/LogTestReporter/f_127793_ net/minecraft/gametest/framework/LogTestReporter/LOGGER +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_127798_ net/minecraft/gametest/framework/MultipleTestTracker/tests +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_127799_ net/minecraft/gametest/framework/MultipleTestTracker/listeners +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177677_ net/minecraft/gametest/framework/MultipleTestTracker/NOT_STARTED_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177678_ net/minecraft/gametest/framework/MultipleTestTracker/ONGOING_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177679_ net/minecraft/gametest/framework/MultipleTestTracker/SUCCESSFUL_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177680_ net/minecraft/gametest/framework/MultipleTestTracker/FAILED_OPTIONAL_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177681_ net/minecraft/gametest/framework/MultipleTestTracker/FAILED_REQUIRED_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker$1/f_127824_ net/minecraft/gametest/framework/MultipleTestTracker$1/val$listener +FD: net/minecraft/gametest/framework/MultipleTestTracker$1/f_127825_ net/minecraft/gametest/framework/MultipleTestTracker$1/this$0 +FD: net/minecraft/gametest/framework/ReportGameListener/f_177686_ net/minecraft/gametest/framework/ReportGameListener/attempts +FD: net/minecraft/gametest/framework/ReportGameListener/f_177687_ net/minecraft/gametest/framework/ReportGameListener/successes +FD: net/minecraft/gametest/framework/ReportGameListener/f_177688_ net/minecraft/gametest/framework/ReportGameListener/originalTestInfo +FD: net/minecraft/gametest/framework/ReportGameListener/f_177689_ net/minecraft/gametest/framework/ReportGameListener/testTicker +FD: net/minecraft/gametest/framework/ReportGameListener/f_177690_ net/minecraft/gametest/framework/ReportGameListener/structurePos +FD: net/minecraft/gametest/framework/StructureUtils/f_127833_ net/minecraft/gametest/framework/StructureUtils/testStructuresDir +FD: net/minecraft/gametest/framework/StructureUtils/f_177741_ net/minecraft/gametest/framework/StructureUtils/DEFAULT_TEST_STRUCTURES_DIR +FD: net/minecraft/gametest/framework/StructureUtils/f_177742_ net/minecraft/gametest/framework/StructureUtils/LOGGER +FD: net/minecraft/gametest/framework/StructureUtils/f_177743_ net/minecraft/gametest/framework/StructureUtils/HOW_MANY_CHUNKS_TO_LOAD_IN_EACH_DIRECTION_OF_STRUCTURE +FD: net/minecraft/gametest/framework/StructureUtils$1/f_177776_ net/minecraft/gametest/framework/StructureUtils$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/gametest/framework/TeamcityTestReporter/f_177778_ net/minecraft/gametest/framework/TeamcityTestReporter/LOGGER +FD: net/minecraft/gametest/framework/TeamcityTestReporter/f_177779_ net/minecraft/gametest/framework/TeamcityTestReporter/ESCAPER +FD: net/minecraft/gametest/framework/TestClassNameArgument/f_127914_ net/minecraft/gametest/framework/TestClassNameArgument/EXAMPLES +FD: net/minecraft/gametest/framework/TestCommand/f_177786_ net/minecraft/gametest/framework/TestCommand/DEFAULT_CLEAR_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177787_ net/minecraft/gametest/framework/TestCommand/MAX_CLEAR_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177788_ net/minecraft/gametest/framework/TestCommand/STRUCTURE_BLOCK_NEARBY_SEARCH_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177789_ net/minecraft/gametest/framework/TestCommand/STRUCTURE_BLOCK_FULL_SEARCH_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177790_ net/minecraft/gametest/framework/TestCommand/TEST_POS_Z_OFFSET_FROM_PLAYER +FD: net/minecraft/gametest/framework/TestCommand/f_177791_ net/minecraft/gametest/framework/TestCommand/SHOW_POS_DURATION_MS +FD: net/minecraft/gametest/framework/TestCommand/f_177792_ net/minecraft/gametest/framework/TestCommand/DEFAULT_X_SIZE +FD: net/minecraft/gametest/framework/TestCommand/f_177793_ net/minecraft/gametest/framework/TestCommand/DEFAULT_Y_SIZE +FD: net/minecraft/gametest/framework/TestCommand/f_177794_ net/minecraft/gametest/framework/TestCommand/DEFAULT_Z_SIZE +FD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/f_128058_ net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/level +FD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/f_128059_ net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/tracker +FD: net/minecraft/gametest/framework/TestFunction/f_128067_ net/minecraft/gametest/framework/TestFunction/batchName +FD: net/minecraft/gametest/framework/TestFunction/f_128068_ net/minecraft/gametest/framework/TestFunction/testName +FD: net/minecraft/gametest/framework/TestFunction/f_128069_ net/minecraft/gametest/framework/TestFunction/structureName +FD: net/minecraft/gametest/framework/TestFunction/f_128070_ net/minecraft/gametest/framework/TestFunction/required +FD: net/minecraft/gametest/framework/TestFunction/f_128071_ net/minecraft/gametest/framework/TestFunction/function +FD: net/minecraft/gametest/framework/TestFunction/f_128072_ net/minecraft/gametest/framework/TestFunction/maxTicks +FD: net/minecraft/gametest/framework/TestFunction/f_128073_ net/minecraft/gametest/framework/TestFunction/setupTicks +FD: net/minecraft/gametest/framework/TestFunction/f_128074_ net/minecraft/gametest/framework/TestFunction/rotation +FD: net/minecraft/gametest/framework/TestFunction/f_177798_ net/minecraft/gametest/framework/TestFunction/maxAttempts +FD: net/minecraft/gametest/framework/TestFunction/f_177799_ net/minecraft/gametest/framework/TestFunction/requiredSuccesses +FD: net/minecraft/gametest/framework/TestFunctionArgument/f_128085_ net/minecraft/gametest/framework/TestFunctionArgument/EXAMPLES +FD: net/minecraft/locale/Language/f_128101_ net/minecraft/locale/Language/LOGGER +FD: net/minecraft/locale/Language/f_128102_ net/minecraft/locale/Language/GSON +FD: net/minecraft/locale/Language/f_128103_ net/minecraft/locale/Language/UNSUPPORTED_FORMAT_PATTERN +FD: net/minecraft/locale/Language/f_128104_ net/minecraft/locale/Language/instance +FD: net/minecraft/locale/Language/f_177832_ net/minecraft/locale/Language/DEFAULT +FD: net/minecraft/locale/Language$1/f_128119_ net/minecraft/locale/Language$1/val$storage +FD: net/minecraft/nbt/ByteArrayTag/f_128185_ net/minecraft/nbt/ByteArrayTag/TYPE +FD: net/minecraft/nbt/ByteArrayTag/f_128186_ net/minecraft/nbt/ByteArrayTag/data +FD: net/minecraft/nbt/ByteArrayTag/f_263438_ net/minecraft/nbt/ByteArrayTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ByteTag/f_128255_ net/minecraft/nbt/ByteTag/TYPE +FD: net/minecraft/nbt/ByteTag/f_128256_ net/minecraft/nbt/ByteTag/ZERO +FD: net/minecraft/nbt/ByteTag/f_128257_ net/minecraft/nbt/ByteTag/ONE +FD: net/minecraft/nbt/ByteTag/f_128258_ net/minecraft/nbt/ByteTag/data +FD: net/minecraft/nbt/ByteTag/f_263439_ net/minecraft/nbt/ByteTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ByteTag$Cache/f_128301_ net/minecraft/nbt/ByteTag$Cache/cache +FD: net/minecraft/nbt/CompoundTag/f_128325_ net/minecraft/nbt/CompoundTag/CODEC +FD: net/minecraft/nbt/CompoundTag/f_128326_ net/minecraft/nbt/CompoundTag/TYPE +FD: net/minecraft/nbt/CompoundTag/f_128329_ net/minecraft/nbt/CompoundTag/tags +FD: net/minecraft/nbt/CompoundTag/f_263436_ net/minecraft/nbt/CompoundTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/CompoundTag/f_263443_ net/minecraft/nbt/CompoundTag/MAP_ENTRY_SIZE_IN_BYTES +FD: net/minecraft/nbt/CompoundTag$2/f_197448_ net/minecraft/nbt/CompoundTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$EntryResult +FD: net/minecraft/nbt/CompoundTag$2/f_197449_ net/minecraft/nbt/CompoundTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/DoubleTag/f_128493_ net/minecraft/nbt/DoubleTag/ZERO +FD: net/minecraft/nbt/DoubleTag/f_128494_ net/minecraft/nbt/DoubleTag/TYPE +FD: net/minecraft/nbt/DoubleTag/f_128495_ net/minecraft/nbt/DoubleTag/data +FD: net/minecraft/nbt/DoubleTag/f_263442_ net/minecraft/nbt/DoubleTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/EndTag/f_128533_ net/minecraft/nbt/EndTag/TYPE +FD: net/minecraft/nbt/EndTag/f_128534_ net/minecraft/nbt/EndTag/INSTANCE +FD: net/minecraft/nbt/EndTag/f_263430_ net/minecraft/nbt/EndTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/FloatTag/f_128559_ net/minecraft/nbt/FloatTag/ZERO +FD: net/minecraft/nbt/FloatTag/f_128560_ net/minecraft/nbt/FloatTag/TYPE +FD: net/minecraft/nbt/FloatTag/f_128561_ net/minecraft/nbt/FloatTag/data +FD: net/minecraft/nbt/FloatTag/f_263444_ net/minecraft/nbt/FloatTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/IntArrayTag/f_128599_ net/minecraft/nbt/IntArrayTag/TYPE +FD: net/minecraft/nbt/IntArrayTag/f_128600_ net/minecraft/nbt/IntArrayTag/data +FD: net/minecraft/nbt/IntArrayTag/f_263434_ net/minecraft/nbt/IntArrayTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/IntTag/f_128670_ net/minecraft/nbt/IntTag/TYPE +FD: net/minecraft/nbt/IntTag/f_128671_ net/minecraft/nbt/IntTag/data +FD: net/minecraft/nbt/IntTag/f_263440_ net/minecraft/nbt/IntTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/IntTag$Cache/f_128712_ net/minecraft/nbt/IntTag$Cache/cache +FD: net/minecraft/nbt/IntTag$Cache/f_177985_ net/minecraft/nbt/IntTag$Cache/HIGH +FD: net/minecraft/nbt/IntTag$Cache/f_177986_ net/minecraft/nbt/IntTag$Cache/LOW +FD: net/minecraft/nbt/ListTag/f_128714_ net/minecraft/nbt/ListTag/TYPE +FD: net/minecraft/nbt/ListTag/f_128716_ net/minecraft/nbt/ListTag/list +FD: net/minecraft/nbt/ListTag/f_128717_ net/minecraft/nbt/ListTag/type +FD: net/minecraft/nbt/ListTag/f_263445_ net/minecraft/nbt/ListTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ListTag$2/f_197493_ net/minecraft/nbt/ListTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/ListTag$2/f_197494_ net/minecraft/nbt/ListTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$EntryResult +FD: net/minecraft/nbt/LongArrayTag/f_128800_ net/minecraft/nbt/LongArrayTag/TYPE +FD: net/minecraft/nbt/LongArrayTag/f_128801_ net/minecraft/nbt/LongArrayTag/data +FD: net/minecraft/nbt/LongArrayTag/f_263437_ net/minecraft/nbt/LongArrayTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/LongTag/f_128873_ net/minecraft/nbt/LongTag/TYPE +FD: net/minecraft/nbt/LongTag/f_128874_ net/minecraft/nbt/LongTag/data +FD: net/minecraft/nbt/LongTag/f_263435_ net/minecraft/nbt/LongTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/LongTag$Cache/f_128915_ net/minecraft/nbt/LongTag$Cache/cache +FD: net/minecraft/nbt/LongTag$Cache/f_177999_ net/minecraft/nbt/LongTag$Cache/HIGH +FD: net/minecraft/nbt/LongTag$Cache/f_178000_ net/minecraft/nbt/LongTag$Cache/LOW +FD: net/minecraft/nbt/NbtAccounter/f_128917_ net/minecraft/nbt/NbtAccounter/UNLIMITED +FD: net/minecraft/nbt/NbtAccounter/f_128918_ net/minecraft/nbt/NbtAccounter/quota +FD: net/minecraft/nbt/NbtAccounter/f_128919_ net/minecraft/nbt/NbtAccounter/usage +FD: net/minecraft/nbt/NbtIo$1/f_197512_ net/minecraft/nbt/NbtIo$1/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/NbtOps/f_128958_ net/minecraft/nbt/NbtOps/INSTANCE +FD: net/minecraft/nbt/NbtOps/f_244338_ net/minecraft/nbt/NbtOps/WRAPPER_MARKER +FD: net/minecraft/nbt/NbtOps$1/f_129163_ net/minecraft/nbt/NbtOps$1/val$tag +FD: net/minecraft/nbt/NbtOps$1/f_129164_ net/minecraft/nbt/NbtOps$1/this$0 +FD: net/minecraft/nbt/NbtOps$ByteListCollector/f_243771_ net/minecraft/nbt/NbtOps$ByteListCollector/values +FD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/f_244100_ net/minecraft/nbt/NbtOps$HeterogenousListCollector/result +FD: net/minecraft/nbt/NbtOps$HomogenousListCollector/f_244352_ net/minecraft/nbt/NbtOps$HomogenousListCollector/result +FD: net/minecraft/nbt/NbtOps$InitialListCollector/f_243778_ net/minecraft/nbt/NbtOps$InitialListCollector/INSTANCE +FD: net/minecraft/nbt/NbtOps$IntListCollector/f_244530_ net/minecraft/nbt/NbtOps$IntListCollector/values +FD: net/minecraft/nbt/NbtOps$LongListCollector/f_244231_ net/minecraft/nbt/NbtOps$LongListCollector/values +FD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/f_129181_ net/minecraft/nbt/NbtOps$NbtRecordBuilder/this$0 +FD: net/minecraft/nbt/NbtUtils/f_129200_ net/minecraft/nbt/NbtUtils/LOGGER +FD: net/minecraft/nbt/NbtUtils/f_178007_ net/minecraft/nbt/NbtUtils/SNBT_DATA_TAG +FD: net/minecraft/nbt/NbtUtils/f_178008_ net/minecraft/nbt/NbtUtils/YXZ_LISTTAG_INT_COMPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178009_ net/minecraft/nbt/NbtUtils/YXZ_LISTTAG_DOUBLE_COMPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178010_ net/minecraft/nbt/NbtUtils/PROPERTIES_START +FD: net/minecraft/nbt/NbtUtils/f_178011_ net/minecraft/nbt/NbtUtils/PROPERTIES_END +FD: net/minecraft/nbt/NbtUtils/f_178012_ net/minecraft/nbt/NbtUtils/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178013_ net/minecraft/nbt/NbtUtils/KEY_VALUE_SEPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178014_ net/minecraft/nbt/NbtUtils/COMMA_SPLITTER +FD: net/minecraft/nbt/NbtUtils/f_178015_ net/minecraft/nbt/NbtUtils/COLON_SPLITTER +FD: net/minecraft/nbt/NbtUtils/f_178016_ net/minecraft/nbt/NbtUtils/INDENT +FD: net/minecraft/nbt/NbtUtils/f_178017_ net/minecraft/nbt/NbtUtils/NOT_FOUND +FD: net/minecraft/nbt/ShortTag/f_129244_ net/minecraft/nbt/ShortTag/TYPE +FD: net/minecraft/nbt/ShortTag/f_129245_ net/minecraft/nbt/ShortTag/data +FD: net/minecraft/nbt/ShortTag/f_263431_ net/minecraft/nbt/ShortTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ShortTag$Cache/f_129286_ net/minecraft/nbt/ShortTag$Cache/cache +FD: net/minecraft/nbt/ShortTag$Cache/f_178085_ net/minecraft/nbt/ShortTag$Cache/HIGH +FD: net/minecraft/nbt/ShortTag$Cache/f_178086_ net/minecraft/nbt/ShortTag$Cache/LOW +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178088_ net/minecraft/nbt/SnbtPrinterTagVisitor/KEY_ORDER +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178089_ net/minecraft/nbt/SnbtPrinterTagVisitor/NO_INDENTATION +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178090_ net/minecraft/nbt/SnbtPrinterTagVisitor/SIMPLE_VALUE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178091_ net/minecraft/nbt/SnbtPrinterTagVisitor/NAME_VALUE_SEPARATOR +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178092_ net/minecraft/nbt/SnbtPrinterTagVisitor/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178093_ net/minecraft/nbt/SnbtPrinterTagVisitor/LIST_OPEN +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178094_ net/minecraft/nbt/SnbtPrinterTagVisitor/LIST_CLOSE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178095_ net/minecraft/nbt/SnbtPrinterTagVisitor/LIST_TYPE_SEPARATOR +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178096_ net/minecraft/nbt/SnbtPrinterTagVisitor/ELEMENT_SPACING +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178097_ net/minecraft/nbt/SnbtPrinterTagVisitor/STRUCT_OPEN +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178098_ net/minecraft/nbt/SnbtPrinterTagVisitor/STRUCT_CLOSE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178099_ net/minecraft/nbt/SnbtPrinterTagVisitor/NEWLINE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178100_ net/minecraft/nbt/SnbtPrinterTagVisitor/indentation +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178101_ net/minecraft/nbt/SnbtPrinterTagVisitor/depth +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178102_ net/minecraft/nbt/SnbtPrinterTagVisitor/path +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178103_ net/minecraft/nbt/SnbtPrinterTagVisitor/result +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/$VALUES net/minecraft/nbt/StreamTagVisitor$EntryResult/$VALUES +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/BREAK net/minecraft/nbt/StreamTagVisitor$EntryResult/BREAK +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/ENTER net/minecraft/nbt/StreamTagVisitor$EntryResult/ENTER +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/HALT net/minecraft/nbt/StreamTagVisitor$EntryResult/HALT +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/SKIP net/minecraft/nbt/StreamTagVisitor$EntryResult/SKIP +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/$VALUES net/minecraft/nbt/StreamTagVisitor$ValueResult/$VALUES +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/BREAK net/minecraft/nbt/StreamTagVisitor$ValueResult/BREAK +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/CONTINUE net/minecraft/nbt/StreamTagVisitor$ValueResult/CONTINUE +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/HALT net/minecraft/nbt/StreamTagVisitor$ValueResult/HALT +FD: net/minecraft/nbt/StringTag/f_129288_ net/minecraft/nbt/StringTag/TYPE +FD: net/minecraft/nbt/StringTag/f_129289_ net/minecraft/nbt/StringTag/EMPTY +FD: net/minecraft/nbt/StringTag/f_129290_ net/minecraft/nbt/StringTag/data +FD: net/minecraft/nbt/StringTag/f_178149_ net/minecraft/nbt/StringTag/DOUBLE_QUOTE +FD: net/minecraft/nbt/StringTag/f_178150_ net/minecraft/nbt/StringTag/SINGLE_QUOTE +FD: net/minecraft/nbt/StringTag/f_178151_ net/minecraft/nbt/StringTag/ESCAPE +FD: net/minecraft/nbt/StringTag/f_178152_ net/minecraft/nbt/StringTag/NOT_SET +FD: net/minecraft/nbt/StringTag/f_263432_ net/minecraft/nbt/StringTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/StringTagVisitor/f_178155_ net/minecraft/nbt/StringTagVisitor/SIMPLE_VALUE +FD: net/minecraft/nbt/StringTagVisitor/f_178156_ net/minecraft/nbt/StringTagVisitor/builder +FD: net/minecraft/nbt/Tag/f_178189_ net/minecraft/nbt/Tag/OBJECT_HEADER +FD: net/minecraft/nbt/Tag/f_178190_ net/minecraft/nbt/Tag/ARRAY_HEADER +FD: net/minecraft/nbt/Tag/f_178191_ net/minecraft/nbt/Tag/OBJECT_REFERENCE +FD: net/minecraft/nbt/Tag/f_178192_ net/minecraft/nbt/Tag/STRING_SIZE +FD: net/minecraft/nbt/Tag/f_178193_ net/minecraft/nbt/Tag/TAG_END +FD: net/minecraft/nbt/Tag/f_178194_ net/minecraft/nbt/Tag/TAG_BYTE +FD: net/minecraft/nbt/Tag/f_178195_ net/minecraft/nbt/Tag/TAG_SHORT +FD: net/minecraft/nbt/Tag/f_178196_ net/minecraft/nbt/Tag/TAG_INT +FD: net/minecraft/nbt/Tag/f_178197_ net/minecraft/nbt/Tag/TAG_LONG +FD: net/minecraft/nbt/Tag/f_178198_ net/minecraft/nbt/Tag/TAG_FLOAT +FD: net/minecraft/nbt/Tag/f_178199_ net/minecraft/nbt/Tag/TAG_DOUBLE +FD: net/minecraft/nbt/Tag/f_178200_ net/minecraft/nbt/Tag/TAG_BYTE_ARRAY +FD: net/minecraft/nbt/Tag/f_178201_ net/minecraft/nbt/Tag/TAG_STRING +FD: net/minecraft/nbt/Tag/f_178202_ net/minecraft/nbt/Tag/TAG_LIST +FD: net/minecraft/nbt/Tag/f_178203_ net/minecraft/nbt/Tag/TAG_COMPOUND +FD: net/minecraft/nbt/Tag/f_178204_ net/minecraft/nbt/Tag/TAG_INT_ARRAY +FD: net/minecraft/nbt/Tag/f_178205_ net/minecraft/nbt/Tag/TAG_LONG_ARRAY +FD: net/minecraft/nbt/Tag/f_178206_ net/minecraft/nbt/Tag/TAG_ANY_NUMERIC +FD: net/minecraft/nbt/Tag/f_178207_ net/minecraft/nbt/Tag/MAX_DEPTH +FD: net/minecraft/nbt/TagParser/f_129334_ net/minecraft/nbt/TagParser/ERROR_TRAILING_DATA +FD: net/minecraft/nbt/TagParser/f_129335_ net/minecraft/nbt/TagParser/ERROR_EXPECTED_KEY +FD: net/minecraft/nbt/TagParser/f_129336_ net/minecraft/nbt/TagParser/ERROR_EXPECTED_VALUE +FD: net/minecraft/nbt/TagParser/f_129337_ net/minecraft/nbt/TagParser/ERROR_INSERT_MIXED_LIST +FD: net/minecraft/nbt/TagParser/f_129338_ net/minecraft/nbt/TagParser/ERROR_INSERT_MIXED_ARRAY +FD: net/minecraft/nbt/TagParser/f_129339_ net/minecraft/nbt/TagParser/ERROR_INVALID_ARRAY +FD: net/minecraft/nbt/TagParser/f_129340_ net/minecraft/nbt/TagParser/DOUBLE_PATTERN_NOSUFFIX +FD: net/minecraft/nbt/TagParser/f_129341_ net/minecraft/nbt/TagParser/DOUBLE_PATTERN +FD: net/minecraft/nbt/TagParser/f_129342_ net/minecraft/nbt/TagParser/FLOAT_PATTERN +FD: net/minecraft/nbt/TagParser/f_129343_ net/minecraft/nbt/TagParser/BYTE_PATTERN +FD: net/minecraft/nbt/TagParser/f_129344_ net/minecraft/nbt/TagParser/LONG_PATTERN +FD: net/minecraft/nbt/TagParser/f_129345_ net/minecraft/nbt/TagParser/SHORT_PATTERN +FD: net/minecraft/nbt/TagParser/f_129346_ net/minecraft/nbt/TagParser/INT_PATTERN +FD: net/minecraft/nbt/TagParser/f_129347_ net/minecraft/nbt/TagParser/reader +FD: net/minecraft/nbt/TagParser/f_178209_ net/minecraft/nbt/TagParser/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/TagParser/f_178210_ net/minecraft/nbt/TagParser/NAME_VALUE_SEPARATOR +FD: net/minecraft/nbt/TagParser/f_178211_ net/minecraft/nbt/TagParser/LIST_OPEN +FD: net/minecraft/nbt/TagParser/f_178212_ net/minecraft/nbt/TagParser/LIST_CLOSE +FD: net/minecraft/nbt/TagParser/f_178213_ net/minecraft/nbt/TagParser/STRUCT_CLOSE +FD: net/minecraft/nbt/TagParser/f_178214_ net/minecraft/nbt/TagParser/STRUCT_OPEN +FD: net/minecraft/nbt/TagType$1/f_129382_ net/minecraft/nbt/TagType$1/val$id +FD: net/minecraft/nbt/TagType$2/f_197592_ net/minecraft/nbt/TagType$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/TagTypes/f_129395_ net/minecraft/nbt/TagTypes/TYPES +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178229_ net/minecraft/nbt/TextComponentTagVisitor/LOGGER +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178230_ net/minecraft/nbt/TextComponentTagVisitor/INLINE_LIST_THRESHOLD +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178231_ net/minecraft/nbt/TextComponentTagVisitor/INLINE_ELEMENT_TYPES +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178232_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_KEY +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178233_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_STRING +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178234_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_NUMBER +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178235_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_NUMBER_TYPE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178236_ net/minecraft/nbt/TextComponentTagVisitor/SIMPLE_VALUE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178237_ net/minecraft/nbt/TextComponentTagVisitor/NAME_VALUE_SEPARATOR +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178238_ net/minecraft/nbt/TextComponentTagVisitor/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178239_ net/minecraft/nbt/TextComponentTagVisitor/LIST_OPEN +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178240_ net/minecraft/nbt/TextComponentTagVisitor/LIST_CLOSE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178241_ net/minecraft/nbt/TextComponentTagVisitor/LIST_TYPE_SEPARATOR +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178242_ net/minecraft/nbt/TextComponentTagVisitor/ELEMENT_SPACING +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178243_ net/minecraft/nbt/TextComponentTagVisitor/STRUCT_OPEN +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178244_ net/minecraft/nbt/TextComponentTagVisitor/STRUCT_CLOSE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178245_ net/minecraft/nbt/TextComponentTagVisitor/NEWLINE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178246_ net/minecraft/nbt/TextComponentTagVisitor/indentation +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178247_ net/minecraft/nbt/TextComponentTagVisitor/depth +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178248_ net/minecraft/nbt/TextComponentTagVisitor/result +FD: net/minecraft/nbt/visitors/CollectFields/f_197602_ net/minecraft/nbt/visitors/CollectFields/fieldsToGetCount +FD: net/minecraft/nbt/visitors/CollectFields/f_197603_ net/minecraft/nbt/visitors/CollectFields/wantedTypes +FD: net/minecraft/nbt/visitors/CollectFields/f_197604_ net/minecraft/nbt/visitors/CollectFields/stack +FD: net/minecraft/nbt/visitors/CollectToTag/f_197662_ net/minecraft/nbt/visitors/CollectToTag/lastId +FD: net/minecraft/nbt/visitors/CollectToTag/f_197663_ net/minecraft/nbt/visitors/CollectToTag/rootTag +FD: net/minecraft/nbt/visitors/CollectToTag/f_197664_ net/minecraft/nbt/visitors/CollectToTag/consumerStack +FD: net/minecraft/nbt/visitors/FieldSelector/f_202497_ net/minecraft/nbt/visitors/FieldSelector/path +FD: net/minecraft/nbt/visitors/FieldSelector/f_202498_ net/minecraft/nbt/visitors/FieldSelector/type +FD: net/minecraft/nbt/visitors/FieldSelector/f_202499_ net/minecraft/nbt/visitors/FieldSelector/name +FD: net/minecraft/nbt/visitors/FieldTree/f_202523_ net/minecraft/nbt/visitors/FieldTree/depth +FD: net/minecraft/nbt/visitors/FieldTree/f_202524_ net/minecraft/nbt/visitors/FieldTree/selectedFields +FD: net/minecraft/nbt/visitors/FieldTree/f_202525_ net/minecraft/nbt/visitors/FieldTree/fieldsToRecurse +FD: net/minecraft/nbt/visitors/SkipAll/f_197715_ net/minecraft/nbt/visitors/SkipAll/INSTANCE +FD: net/minecraft/nbt/visitors/SkipFields/f_202547_ net/minecraft/nbt/visitors/SkipFields/stack +FD: net/minecraft/network/CipherBase/f_129399_ net/minecraft/network/CipherBase/cipher +FD: net/minecraft/network/CipherBase/f_129400_ net/minecraft/network/CipherBase/heapIn +FD: net/minecraft/network/CipherBase/f_129401_ net/minecraft/network/CipherBase/heapOut +FD: net/minecraft/network/CipherDecoder/f_129412_ net/minecraft/network/CipherDecoder/cipher +FD: net/minecraft/network/CipherEncoder/f_129423_ net/minecraft/network/CipherEncoder/cipher +FD: net/minecraft/network/CompressionDecoder/f_129434_ net/minecraft/network/CompressionDecoder/inflater +FD: net/minecraft/network/CompressionDecoder/f_129435_ net/minecraft/network/CompressionDecoder/threshold +FD: net/minecraft/network/CompressionDecoder/f_182671_ net/minecraft/network/CompressionDecoder/MAXIMUM_COMPRESSED_LENGTH +FD: net/minecraft/network/CompressionDecoder/f_182672_ net/minecraft/network/CompressionDecoder/MAXIMUM_UNCOMPRESSED_LENGTH +FD: net/minecraft/network/CompressionDecoder/f_182673_ net/minecraft/network/CompressionDecoder/validateDecompressed +FD: net/minecraft/network/CompressionEncoder/f_129444_ net/minecraft/network/CompressionEncoder/encodeBuf +FD: net/minecraft/network/CompressionEncoder/f_129445_ net/minecraft/network/CompressionEncoder/deflater +FD: net/minecraft/network/CompressionEncoder/f_129446_ net/minecraft/network/CompressionEncoder/threshold +FD: net/minecraft/network/Connection/f_129459_ net/minecraft/network/Connection/ROOT_MARKER +FD: net/minecraft/network/Connection/f_129460_ net/minecraft/network/Connection/PACKET_MARKER +FD: net/minecraft/network/Connection/f_129461_ net/minecraft/network/Connection/ATTRIBUTE_PROTOCOL +FD: net/minecraft/network/Connection/f_129462_ net/minecraft/network/Connection/NETWORK_WORKER_GROUP +FD: net/minecraft/network/Connection/f_129463_ net/minecraft/network/Connection/NETWORK_EPOLL_WORKER_GROUP +FD: net/minecraft/network/Connection/f_129464_ net/minecraft/network/Connection/LOCAL_WORKER_GROUP +FD: net/minecraft/network/Connection/f_129465_ net/minecraft/network/Connection/LOGGER +FD: net/minecraft/network/Connection/f_129466_ net/minecraft/network/Connection/receiving +FD: net/minecraft/network/Connection/f_129467_ net/minecraft/network/Connection/queue +FD: net/minecraft/network/Connection/f_129468_ net/minecraft/network/Connection/channel +FD: net/minecraft/network/Connection/f_129469_ net/minecraft/network/Connection/address +FD: net/minecraft/network/Connection/f_129470_ net/minecraft/network/Connection/packetListener +FD: net/minecraft/network/Connection/f_129471_ net/minecraft/network/Connection/disconnectedReason +FD: net/minecraft/network/Connection/f_129472_ net/minecraft/network/Connection/encrypted +FD: net/minecraft/network/Connection/f_129473_ net/minecraft/network/Connection/disconnectionHandled +FD: net/minecraft/network/Connection/f_129474_ net/minecraft/network/Connection/receivedPackets +FD: net/minecraft/network/Connection/f_129475_ net/minecraft/network/Connection/sentPackets +FD: net/minecraft/network/Connection/f_129476_ net/minecraft/network/Connection/averageReceivedPackets +FD: net/minecraft/network/Connection/f_129477_ net/minecraft/network/Connection/averageSentPackets +FD: net/minecraft/network/Connection/f_129478_ net/minecraft/network/Connection/tickCount +FD: net/minecraft/network/Connection/f_129479_ net/minecraft/network/Connection/handlingFault +FD: net/minecraft/network/Connection/f_178299_ net/minecraft/network/Connection/AVERAGE_PACKETS_SMOOTHING +FD: net/minecraft/network/Connection/f_202554_ net/minecraft/network/Connection/PACKET_RECEIVED_MARKER +FD: net/minecraft/network/Connection/f_202555_ net/minecraft/network/Connection/PACKET_SENT_MARKER +FD: net/minecraft/network/Connection/f_290021_ net/minecraft/network/Connection/delayedDisconnect +FD: net/minecraft/network/Connection$1/f_129548_ net/minecraft/network/Connection$1/val$connection +FD: net/minecraft/network/Connection$2/f_129553_ net/minecraft/network/Connection$2/val$connection +FD: net/minecraft/network/Connection$PacketHolder/f_129558_ net/minecraft/network/Connection$PacketHolder/packet +FD: net/minecraft/network/Connection$PacketHolder/f_129559_ net/minecraft/network/Connection$PacketHolder/listener +FD: net/minecraft/network/ConnectionProtocol/$VALUES net/minecraft/network/ConnectionProtocol/$VALUES +FD: net/minecraft/network/ConnectionProtocol/HANDSHAKING net/minecraft/network/ConnectionProtocol/HANDSHAKING +FD: net/minecraft/network/ConnectionProtocol/LOGIN net/minecraft/network/ConnectionProtocol/LOGIN +FD: net/minecraft/network/ConnectionProtocol/PLAY net/minecraft/network/ConnectionProtocol/PLAY +FD: net/minecraft/network/ConnectionProtocol/STATUS net/minecraft/network/ConnectionProtocol/STATUS +FD: net/minecraft/network/ConnectionProtocol/f_129571_ net/minecraft/network/ConnectionProtocol/LOOKUP +FD: net/minecraft/network/ConnectionProtocol/f_129572_ net/minecraft/network/ConnectionProtocol/PROTOCOL_BY_PACKET +FD: net/minecraft/network/ConnectionProtocol/f_129573_ net/minecraft/network/ConnectionProtocol/id +FD: net/minecraft/network/ConnectionProtocol/f_129574_ net/minecraft/network/ConnectionProtocol/flows +FD: net/minecraft/network/ConnectionProtocol/f_178316_ net/minecraft/network/ConnectionProtocol/MIN_PROTOCOL_ID +FD: net/minecraft/network/ConnectionProtocol/f_178317_ net/minecraft/network/ConnectionProtocol/MAX_PROTOCOL_ID +FD: net/minecraft/network/ConnectionProtocol/f_263799_ net/minecraft/network/ConnectionProtocol/NOT_REGISTERED +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_129604_ net/minecraft/network/ConnectionProtocol$PacketSet/classToId +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_178326_ net/minecraft/network/ConnectionProtocol$PacketSet/idToDeserializer +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_202573_ net/minecraft/network/ConnectionProtocol$PacketSet/LOGGER +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_263664_ net/minecraft/network/ConnectionProtocol$PacketSet/bundlerInfo +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_263747_ net/minecraft/network/ConnectionProtocol$PacketSet/extraClasses +FD: net/minecraft/network/ConnectionProtocol$ProtocolBuilder/f_129619_ net/minecraft/network/ConnectionProtocol$ProtocolBuilder/flows +FD: net/minecraft/network/FriendlyByteBuf/f_130049_ net/minecraft/network/FriendlyByteBuf/source +FD: net/minecraft/network/FriendlyByteBuf/f_178333_ net/minecraft/network/FriendlyByteBuf/MAX_STRING_LENGTH +FD: net/minecraft/network/FriendlyByteBuf/f_178334_ net/minecraft/network/FriendlyByteBuf/MAX_COMPONENT_STRING_LENGTH +FD: net/minecraft/network/FriendlyByteBuf/f_178335_ net/minecraft/network/FriendlyByteBuf/MAX_VARINT_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_178336_ net/minecraft/network/FriendlyByteBuf/MAX_VARLONG_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_178337_ net/minecraft/network/FriendlyByteBuf/DEFAULT_NBT_QUOTA +FD: net/minecraft/network/FriendlyByteBuf/f_236798_ net/minecraft/network/FriendlyByteBuf/PUBLIC_KEY_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_236799_ net/minecraft/network/FriendlyByteBuf/MAX_PUBLIC_KEY_HEADER_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_236800_ net/minecraft/network/FriendlyByteBuf/MAX_PUBLIC_KEY_LENGTH +FD: net/minecraft/network/FriendlyByteBuf/f_271126_ net/minecraft/network/FriendlyByteBuf/GSON +FD: net/minecraft/network/FriendlyByteBuf$1/f_263134_ net/minecraft/network/FriendlyByteBuf$1/$SwitchMap$net$minecraft$core$Holder$Kind +FD: net/minecraft/network/PacketBundlePacker/f_263732_ net/minecraft/network/PacketBundlePacker/infoForCurrentBundler +FD: net/minecraft/network/PacketBundlePacker/f_263798_ net/minecraft/network/PacketBundlePacker/flow +FD: net/minecraft/network/PacketBundlePacker/f_263847_ net/minecraft/network/PacketBundlePacker/currentBundler +FD: net/minecraft/network/PacketBundleUnpacker/f_263776_ net/minecraft/network/PacketBundleUnpacker/flow +FD: net/minecraft/network/PacketDecoder/f_130528_ net/minecraft/network/PacketDecoder/LOGGER +FD: net/minecraft/network/PacketDecoder/f_130530_ net/minecraft/network/PacketDecoder/flow +FD: net/minecraft/network/PacketEncoder/f_130538_ net/minecraft/network/PacketEncoder/LOGGER +FD: net/minecraft/network/PacketEncoder/f_130540_ net/minecraft/network/PacketEncoder/flow +FD: net/minecraft/network/PacketSendListener$1/f_243012_ net/minecraft/network/PacketSendListener$1/val$runnable +FD: net/minecraft/network/PacketSendListener$2/f_243001_ net/minecraft/network/PacketSendListener$2/val$handler +FD: net/minecraft/network/RateKickingConnection/f_130553_ net/minecraft/network/RateKickingConnection/LOGGER +FD: net/minecraft/network/RateKickingConnection/f_130554_ net/minecraft/network/RateKickingConnection/EXCEED_REASON +FD: net/minecraft/network/RateKickingConnection/f_130555_ net/minecraft/network/RateKickingConnection/rateLimitPacketsPerSecond +FD: net/minecraft/network/Varint21LengthFieldPrepender/f_178385_ net/minecraft/network/Varint21LengthFieldPrepender/MAX_BYTES +FD: net/minecraft/network/chat/ChatDecorator/f_236947_ net/minecraft/network/chat/ChatDecorator/PLAIN +FD: net/minecraft/network/chat/ChatType/f_130598_ net/minecraft/network/chat/ChatType/CHAT +FD: net/minecraft/network/chat/ChatType/f_237005_ net/minecraft/network/chat/ChatType/CODEC +FD: net/minecraft/network/chat/ChatType/f_237006_ net/minecraft/network/chat/ChatType/SAY_COMMAND +FD: net/minecraft/network/chat/ChatType/f_237009_ net/minecraft/network/chat/ChatType/EMOTE_COMMAND +FD: net/minecraft/network/chat/ChatType/f_237011_ net/minecraft/network/chat/ChatType/chat +FD: net/minecraft/network/chat/ChatType/f_237013_ net/minecraft/network/chat/ChatType/narration +FD: net/minecraft/network/chat/ChatType/f_238668_ net/minecraft/network/chat/ChatType/DEFAULT_CHAT_DECORATION +FD: net/minecraft/network/chat/ChatType/f_240668_ net/minecraft/network/chat/ChatType/MSG_COMMAND_OUTGOING +FD: net/minecraft/network/chat/ChatType/f_240674_ net/minecraft/network/chat/ChatType/MSG_COMMAND_INCOMING +FD: net/minecraft/network/chat/ChatType/f_241626_ net/minecraft/network/chat/ChatType/TEAM_MSG_COMMAND_OUTGOING +FD: net/minecraft/network/chat/ChatType/f_241694_ net/minecraft/network/chat/ChatType/TEAM_MSG_COMMAND_INCOMING +FD: net/minecraft/network/chat/ChatType$Bound/f_240859_ net/minecraft/network/chat/ChatType$Bound/chatType +FD: net/minecraft/network/chat/ChatType$Bound/f_240886_ net/minecraft/network/chat/ChatType$Bound/name +FD: net/minecraft/network/chat/ChatType$Bound/f_240896_ net/minecraft/network/chat/ChatType$Bound/targetName +FD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240862_ net/minecraft/network/chat/ChatType$BoundNetwork/name +FD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240865_ net/minecraft/network/chat/ChatType$BoundNetwork/targetName +FD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240870_ net/minecraft/network/chat/ChatType$BoundNetwork/chatType +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238580_ net/minecraft/network/chat/ChatTypeDecoration/CODEC +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238656_ net/minecraft/network/chat/ChatTypeDecoration/parameters +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238694_ net/minecraft/network/chat/ChatTypeDecoration/style +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238741_ net/minecraft/network/chat/ChatTypeDecoration/translationKey +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/$VALUES net/minecraft/network/chat/ChatTypeDecoration$Parameter/$VALUES +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/CONTENT net/minecraft/network/chat/ChatTypeDecoration$Parameter/CONTENT +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/SENDER net/minecraft/network/chat/ChatTypeDecoration$Parameter/SENDER +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/TARGET net/minecraft/network/chat/ChatTypeDecoration$Parameter/TARGET +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/f_238673_ net/minecraft/network/chat/ChatTypeDecoration$Parameter/name +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/f_238789_ net/minecraft/network/chat/ChatTypeDecoration$Parameter/selector +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/f_238794_ net/minecraft/network/chat/ChatTypeDecoration$Parameter/CODEC +FD: net/minecraft/network/chat/ClickEvent/f_130617_ net/minecraft/network/chat/ClickEvent/action +FD: net/minecraft/network/chat/ClickEvent/f_130618_ net/minecraft/network/chat/ClickEvent/value +FD: net/minecraft/network/chat/ClickEvent$Action/$VALUES net/minecraft/network/chat/ClickEvent$Action/$VALUES +FD: net/minecraft/network/chat/ClickEvent$Action/CHANGE_PAGE net/minecraft/network/chat/ClickEvent$Action/CHANGE_PAGE +FD: net/minecraft/network/chat/ClickEvent$Action/COPY_TO_CLIPBOARD net/minecraft/network/chat/ClickEvent$Action/COPY_TO_CLIPBOARD +FD: net/minecraft/network/chat/ClickEvent$Action/OPEN_FILE net/minecraft/network/chat/ClickEvent$Action/OPEN_FILE +FD: net/minecraft/network/chat/ClickEvent$Action/OPEN_URL net/minecraft/network/chat/ClickEvent$Action/OPEN_URL +FD: net/minecraft/network/chat/ClickEvent$Action/RUN_COMMAND net/minecraft/network/chat/ClickEvent$Action/RUN_COMMAND +FD: net/minecraft/network/chat/ClickEvent$Action/SUGGEST_COMMAND net/minecraft/network/chat/ClickEvent$Action/SUGGEST_COMMAND +FD: net/minecraft/network/chat/ClickEvent$Action/f_130634_ net/minecraft/network/chat/ClickEvent$Action/LOOKUP +FD: net/minecraft/network/chat/ClickEvent$Action/f_130635_ net/minecraft/network/chat/ClickEvent$Action/allowFromServer +FD: net/minecraft/network/chat/ClickEvent$Action/f_130636_ net/minecraft/network/chat/ClickEvent$Action/name +FD: net/minecraft/network/chat/CommonComponents/f_130653_ net/minecraft/network/chat/CommonComponents/OPTION_ON +FD: net/minecraft/network/chat/CommonComponents/f_130654_ net/minecraft/network/chat/CommonComponents/OPTION_OFF +FD: net/minecraft/network/chat/CommonComponents/f_130655_ net/minecraft/network/chat/CommonComponents/GUI_DONE +FD: net/minecraft/network/chat/CommonComponents/f_130656_ net/minecraft/network/chat/CommonComponents/GUI_CANCEL +FD: net/minecraft/network/chat/CommonComponents/f_130657_ net/minecraft/network/chat/CommonComponents/GUI_YES +FD: net/minecraft/network/chat/CommonComponents/f_130658_ net/minecraft/network/chat/CommonComponents/GUI_NO +FD: net/minecraft/network/chat/CommonComponents/f_130659_ net/minecraft/network/chat/CommonComponents/GUI_PROCEED +FD: net/minecraft/network/chat/CommonComponents/f_130660_ net/minecraft/network/chat/CommonComponents/GUI_BACK +FD: net/minecraft/network/chat/CommonComponents/f_130661_ net/minecraft/network/chat/CommonComponents/CONNECT_FAILED +FD: net/minecraft/network/chat/CommonComponents/f_178388_ net/minecraft/network/chat/CommonComponents/NEW_LINE +FD: net/minecraft/network/chat/CommonComponents/f_178389_ net/minecraft/network/chat/CommonComponents/NARRATION_SEPARATOR +FD: net/minecraft/network/chat/CommonComponents/f_237098_ net/minecraft/network/chat/CommonComponents/EMPTY +FD: net/minecraft/network/chat/CommonComponents/f_238584_ net/minecraft/network/chat/CommonComponents/GUI_ACKNOWLEDGE +FD: net/minecraft/network/chat/CommonComponents/f_238772_ net/minecraft/network/chat/CommonComponents/ELLIPSIS +FD: net/minecraft/network/chat/CommonComponents/f_263701_ net/minecraft/network/chat/CommonComponents/SPACE +FD: net/minecraft/network/chat/CommonComponents/f_263736_ net/minecraft/network/chat/CommonComponents/GUI_CONTINUE +FD: net/minecraft/network/chat/CommonComponents/f_275759_ net/minecraft/network/chat/CommonComponents/GUI_TO_TITLE +FD: net/minecraft/network/chat/CommonComponents/f_286989_ net/minecraft/network/chat/CommonComponents/GUI_OK +FD: net/minecraft/network/chat/CommonComponents/f_289829_ net/minecraft/network/chat/CommonComponents/GUI_OPEN_IN_BROWSER +FD: net/minecraft/network/chat/CommonComponents/f_289837_ net/minecraft/network/chat/CommonComponents/GUI_COPY_LINK_TO_CLIPBOARD +FD: net/minecraft/network/chat/Component$Serializer/f_130685_ net/minecraft/network/chat/Component$Serializer/GSON +FD: net/minecraft/network/chat/Component$Serializer/f_130686_ net/minecraft/network/chat/Component$Serializer/JSON_READER_POS +FD: net/minecraft/network/chat/Component$Serializer/f_130687_ net/minecraft/network/chat/Component$Serializer/JSON_READER_LINESTART +FD: net/minecraft/network/chat/ComponentContents/f_237124_ net/minecraft/network/chat/ComponentContents/EMPTY +FD: net/minecraft/network/chat/ComponentUtils/f_178419_ net/minecraft/network/chat/ComponentUtils/DEFAULT_SEPARATOR_TEXT +FD: net/minecraft/network/chat/ComponentUtils/f_178420_ net/minecraft/network/chat/ComponentUtils/DEFAULT_SEPARATOR +FD: net/minecraft/network/chat/ComponentUtils/f_178421_ net/minecraft/network/chat/ComponentUtils/DEFAULT_NO_STYLE_SEPARATOR +FD: net/minecraft/network/chat/FilterMask/f_242988_ net/minecraft/network/chat/FilterMask/mask +FD: net/minecraft/network/chat/FilterMask/f_242996_ net/minecraft/network/chat/FilterMask/type +FD: net/minecraft/network/chat/FilterMask/f_242999_ net/minecraft/network/chat/FilterMask/PASS_THROUGH +FD: net/minecraft/network/chat/FilterMask/f_243007_ net/minecraft/network/chat/FilterMask/FULLY_FILTERED +FD: net/minecraft/network/chat/FilterMask/f_243009_ net/minecraft/network/chat/FilterMask/HASH +FD: net/minecraft/network/chat/FilterMask/f_244521_ net/minecraft/network/chat/FilterMask/FILTERED_STYLE +FD: net/minecraft/network/chat/FilterMask/f_252450_ net/minecraft/network/chat/FilterMask/PARTIALLY_FILTERED_CODEC +FD: net/minecraft/network/chat/FilterMask/f_252488_ net/minecraft/network/chat/FilterMask/PASS_THROUGH_CODEC +FD: net/minecraft/network/chat/FilterMask/f_252493_ net/minecraft/network/chat/FilterMask/FULLY_FILTERED_CODEC +FD: net/minecraft/network/chat/FilterMask/f_252533_ net/minecraft/network/chat/FilterMask/CODEC +FD: net/minecraft/network/chat/FilterMask$1/f_243008_ net/minecraft/network/chat/FilterMask$1/$SwitchMap$net$minecraft$network$chat$FilterMask$Type +FD: net/minecraft/network/chat/FilterMask$Type/$VALUES net/minecraft/network/chat/FilterMask$Type/$VALUES +FD: net/minecraft/network/chat/FilterMask$Type/FULLY_FILTERED net/minecraft/network/chat/FilterMask$Type/FULLY_FILTERED +FD: net/minecraft/network/chat/FilterMask$Type/PARTIALLY_FILTERED net/minecraft/network/chat/FilterMask$Type/PARTIALLY_FILTERED +FD: net/minecraft/network/chat/FilterMask$Type/PASS_THROUGH net/minecraft/network/chat/FilterMask$Type/PASS_THROUGH +FD: net/minecraft/network/chat/FilterMask$Type/f_252467_ net/minecraft/network/chat/FilterMask$Type/codec +FD: net/minecraft/network/chat/FilterMask$Type/f_252490_ net/minecraft/network/chat/FilterMask$Type/serializedName +FD: net/minecraft/network/chat/FormattedText/f_130759_ net/minecraft/network/chat/FormattedText/STOP_ITERATION +FD: net/minecraft/network/chat/FormattedText/f_130760_ net/minecraft/network/chat/FormattedText/EMPTY +FD: net/minecraft/network/chat/FormattedText$2/f_130783_ net/minecraft/network/chat/FormattedText$2/val$text +FD: net/minecraft/network/chat/FormattedText$3/f_130791_ net/minecraft/network/chat/FormattedText$3/val$text +FD: net/minecraft/network/chat/FormattedText$3/f_130792_ net/minecraft/network/chat/FormattedText$3/val$style +FD: net/minecraft/network/chat/FormattedText$4/f_130801_ net/minecraft/network/chat/FormattedText$4/val$parts +FD: net/minecraft/network/chat/HoverEvent/f_130813_ net/minecraft/network/chat/HoverEvent/LOGGER +FD: net/minecraft/network/chat/HoverEvent/f_130814_ net/minecraft/network/chat/HoverEvent/action +FD: net/minecraft/network/chat/HoverEvent/f_130815_ net/minecraft/network/chat/HoverEvent/value +FD: net/minecraft/network/chat/HoverEvent$Action/f_130831_ net/minecraft/network/chat/HoverEvent$Action/SHOW_TEXT +FD: net/minecraft/network/chat/HoverEvent$Action/f_130832_ net/minecraft/network/chat/HoverEvent$Action/SHOW_ITEM +FD: net/minecraft/network/chat/HoverEvent$Action/f_130833_ net/minecraft/network/chat/HoverEvent$Action/SHOW_ENTITY +FD: net/minecraft/network/chat/HoverEvent$Action/f_130834_ net/minecraft/network/chat/HoverEvent$Action/LOOKUP +FD: net/minecraft/network/chat/HoverEvent$Action/f_130835_ net/minecraft/network/chat/HoverEvent$Action/name +FD: net/minecraft/network/chat/HoverEvent$Action/f_130836_ net/minecraft/network/chat/HoverEvent$Action/allowFromServer +FD: net/minecraft/network/chat/HoverEvent$Action/f_130837_ net/minecraft/network/chat/HoverEvent$Action/argDeserializer +FD: net/minecraft/network/chat/HoverEvent$Action/f_130838_ net/minecraft/network/chat/HoverEvent$Action/argSerializer +FD: net/minecraft/network/chat/HoverEvent$Action/f_130839_ net/minecraft/network/chat/HoverEvent$Action/legacyArgDeserializer +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130871_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/type +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130872_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/id +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130873_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/name +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130874_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/linesCache +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130888_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/item +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130889_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/count +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130890_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/tag +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130891_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/itemStack +FD: net/minecraft/network/chat/LastSeenMessages/f_241617_ net/minecraft/network/chat/LastSeenMessages/LAST_SEEN_MESSAGES_MAX_LENGTH +FD: net/minecraft/network/chat/LastSeenMessages/f_241630_ net/minecraft/network/chat/LastSeenMessages/entries +FD: net/minecraft/network/chat/LastSeenMessages/f_241634_ net/minecraft/network/chat/LastSeenMessages/EMPTY +FD: net/minecraft/network/chat/LastSeenMessages/f_252509_ net/minecraft/network/chat/LastSeenMessages/CODEC +FD: net/minecraft/network/chat/LastSeenMessages$Packed/f_244256_ net/minecraft/network/chat/LastSeenMessages$Packed/EMPTY +FD: net/minecraft/network/chat/LastSeenMessages$Packed/f_244613_ net/minecraft/network/chat/LastSeenMessages$Packed/entries +FD: net/minecraft/network/chat/LastSeenMessages$Update/f_243843_ net/minecraft/network/chat/LastSeenMessages$Update/offset +FD: net/minecraft/network/chat/LastSeenMessages$Update/f_244446_ net/minecraft/network/chat/LastSeenMessages$Update/acknowledged +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_243823_ net/minecraft/network/chat/LastSeenMessagesTracker/lastTrackedMessage +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_244505_ net/minecraft/network/chat/LastSeenMessagesTracker/trackedMessages +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_244552_ net/minecraft/network/chat/LastSeenMessagesTracker/offset +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_244578_ net/minecraft/network/chat/LastSeenMessagesTracker/tail +FD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_243872_ net/minecraft/network/chat/LastSeenMessagesTracker$Update/lastSeen +FD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_244473_ net/minecraft/network/chat/LastSeenMessagesTracker$Update/update +FD: net/minecraft/network/chat/LastSeenMessagesValidator/f_243950_ net/minecraft/network/chat/LastSeenMessagesValidator/trackedMessages +FD: net/minecraft/network/chat/LastSeenMessagesValidator/f_244339_ net/minecraft/network/chat/LastSeenMessagesValidator/lastPendingMessage +FD: net/minecraft/network/chat/LastSeenMessagesValidator/f_244465_ net/minecraft/network/chat/LastSeenMessagesValidator/lastSeenCount +FD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243846_ net/minecraft/network/chat/LastSeenTrackedEntry/signature +FD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243942_ net/minecraft/network/chat/LastSeenTrackedEntry/pending +FD: net/minecraft/network/chat/LocalChatSession/f_243926_ net/minecraft/network/chat/LocalChatSession/keyPair +FD: net/minecraft/network/chat/LocalChatSession/f_244284_ net/minecraft/network/chat/LocalChatSession/sessionId +FD: net/minecraft/network/chat/MessageSignature/f_240884_ net/minecraft/network/chat/MessageSignature/bytes +FD: net/minecraft/network/chat/MessageSignature/f_244417_ net/minecraft/network/chat/MessageSignature/BYTES +FD: net/minecraft/network/chat/MessageSignature/f_252463_ net/minecraft/network/chat/MessageSignature/CODEC +FD: net/minecraft/network/chat/MessageSignature$Packed/f_244020_ net/minecraft/network/chat/MessageSignature$Packed/fullSignature +FD: net/minecraft/network/chat/MessageSignature$Packed/f_244111_ net/minecraft/network/chat/MessageSignature$Packed/id +FD: net/minecraft/network/chat/MessageSignature$Packed/f_244178_ net/minecraft/network/chat/MessageSignature$Packed/FULL_SIGNATURE +FD: net/minecraft/network/chat/MessageSignatureCache/f_243760_ net/minecraft/network/chat/MessageSignatureCache/DEFAULT_CAPACITY +FD: net/minecraft/network/chat/MessageSignatureCache/f_243958_ net/minecraft/network/chat/MessageSignatureCache/entries +FD: net/minecraft/network/chat/MessageSignatureCache/f_252441_ net/minecraft/network/chat/MessageSignatureCache/NOT_FOUND +FD: net/minecraft/network/chat/MutableComponent/f_237194_ net/minecraft/network/chat/MutableComponent/contents +FD: net/minecraft/network/chat/MutableComponent/f_237195_ net/minecraft/network/chat/MutableComponent/siblings +FD: net/minecraft/network/chat/MutableComponent/f_237196_ net/minecraft/network/chat/MutableComponent/style +FD: net/minecraft/network/chat/MutableComponent/f_237197_ net/minecraft/network/chat/MutableComponent/visualOrderText +FD: net/minecraft/network/chat/MutableComponent/f_237198_ net/minecraft/network/chat/MutableComponent/decomposedWith +FD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/f_244003_ net/minecraft/network/chat/OutgoingChatMessage$Disguised/content +FD: net/minecraft/network/chat/OutgoingChatMessage$Player/f_243697_ net/minecraft/network/chat/OutgoingChatMessage$Player/message +FD: net/minecraft/network/chat/PlayerChatMessage/f_237215_ net/minecraft/network/chat/PlayerChatMessage/unsignedContent +FD: net/minecraft/network/chat/PlayerChatMessage/f_240359_ net/minecraft/network/chat/PlayerChatMessage/MESSAGE_EXPIRES_AFTER_SERVER +FD: net/minecraft/network/chat/PlayerChatMessage/f_240369_ net/minecraft/network/chat/PlayerChatMessage/MESSAGE_EXPIRES_AFTER_CLIENT +FD: net/minecraft/network/chat/PlayerChatMessage/f_240885_ net/minecraft/network/chat/PlayerChatMessage/signedBody +FD: net/minecraft/network/chat/PlayerChatMessage/f_242992_ net/minecraft/network/chat/PlayerChatMessage/filterMask +FD: net/minecraft/network/chat/PlayerChatMessage/f_243787_ net/minecraft/network/chat/PlayerChatMessage/SYSTEM_SENDER +FD: net/minecraft/network/chat/PlayerChatMessage/f_243882_ net/minecraft/network/chat/PlayerChatMessage/link +FD: net/minecraft/network/chat/PlayerChatMessage/f_244279_ net/minecraft/network/chat/PlayerChatMessage/signature +FD: net/minecraft/network/chat/PlayerChatMessage/f_252410_ net/minecraft/network/chat/PlayerChatMessage/MAP_CODEC +FD: net/minecraft/network/chat/RemoteChatSession/f_243855_ net/minecraft/network/chat/RemoteChatSession/profilePublicKey +FD: net/minecraft/network/chat/RemoteChatSession/f_244448_ net/minecraft/network/chat/RemoteChatSession/sessionId +FD: net/minecraft/network/chat/RemoteChatSession$Data/f_243937_ net/minecraft/network/chat/RemoteChatSession$Data/profilePublicKey +FD: net/minecraft/network/chat/RemoteChatSession$Data/f_244232_ net/minecraft/network/chat/RemoteChatSession$Data/sessionId +FD: net/minecraft/network/chat/SignableCommand/f_244150_ net/minecraft/network/chat/SignableCommand/arguments +FD: net/minecraft/network/chat/SignableCommand$Argument/f_243965_ net/minecraft/network/chat/SignableCommand$Argument/node +FD: net/minecraft/network/chat/SignableCommand$Argument/f_244218_ net/minecraft/network/chat/SignableCommand$Argument/value +FD: net/minecraft/network/chat/SignedMessageBody/f_240856_ net/minecraft/network/chat/SignedMessageBody/content +FD: net/minecraft/network/chat/SignedMessageBody/f_240863_ net/minecraft/network/chat/SignedMessageBody/timeStamp +FD: net/minecraft/network/chat/SignedMessageBody/f_240868_ net/minecraft/network/chat/SignedMessageBody/lastSeen +FD: net/minecraft/network/chat/SignedMessageBody/f_240873_ net/minecraft/network/chat/SignedMessageBody/salt +FD: net/minecraft/network/chat/SignedMessageBody/f_252412_ net/minecraft/network/chat/SignedMessageBody/MAP_CODEC +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243660_ net/minecraft/network/chat/SignedMessageBody$Packed/content +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243790_ net/minecraft/network/chat/SignedMessageBody$Packed/salt +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244137_ net/minecraft/network/chat/SignedMessageBody$Packed/lastSeen +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244314_ net/minecraft/network/chat/SignedMessageBody$Packed/timeStamp +FD: net/minecraft/network/chat/SignedMessageChain/f_243812_ net/minecraft/network/chat/SignedMessageChain/LOGGER +FD: net/minecraft/network/chat/SignedMessageChain/f_244563_ net/minecraft/network/chat/SignedMessageChain/nextLink +FD: net/minecraft/network/chat/SignedMessageChain$DecodeException/f_244583_ net/minecraft/network/chat/SignedMessageChain$DecodeException/shouldDisconnect +FD: net/minecraft/network/chat/SignedMessageChain$Decoder/f_252472_ net/minecraft/network/chat/SignedMessageChain$Decoder/REJECT_ALL +FD: net/minecraft/network/chat/SignedMessageChain$Encoder/f_243849_ net/minecraft/network/chat/SignedMessageChain$Encoder/UNSIGNED +FD: net/minecraft/network/chat/SignedMessageLink/f_244066_ net/minecraft/network/chat/SignedMessageLink/index +FD: net/minecraft/network/chat/SignedMessageLink/f_244370_ net/minecraft/network/chat/SignedMessageLink/sessionId +FD: net/minecraft/network/chat/SignedMessageLink/f_244443_ net/minecraft/network/chat/SignedMessageLink/sender +FD: net/minecraft/network/chat/SignedMessageLink/f_252474_ net/minecraft/network/chat/SignedMessageLink/CODEC +FD: net/minecraft/network/chat/SignedMessageValidator/f_243754_ net/minecraft/network/chat/SignedMessageValidator/REJECT_ALL +FD: net/minecraft/network/chat/SignedMessageValidator/f_244130_ net/minecraft/network/chat/SignedMessageValidator/ACCEPT_UNSIGNED +FD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/f_240903_ net/minecraft/network/chat/SignedMessageValidator$KeyBased/validator +FD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/f_243954_ net/minecraft/network/chat/SignedMessageValidator$KeyBased/isChainValid +FD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/f_244265_ net/minecraft/network/chat/SignedMessageValidator$KeyBased/lastMessage +FD: net/minecraft/network/chat/Style/f_131099_ net/minecraft/network/chat/Style/EMPTY +FD: net/minecraft/network/chat/Style/f_131100_ net/minecraft/network/chat/Style/DEFAULT_FONT +FD: net/minecraft/network/chat/Style/f_131101_ net/minecraft/network/chat/Style/color +FD: net/minecraft/network/chat/Style/f_131102_ net/minecraft/network/chat/Style/bold +FD: net/minecraft/network/chat/Style/f_131103_ net/minecraft/network/chat/Style/italic +FD: net/minecraft/network/chat/Style/f_131104_ net/minecraft/network/chat/Style/underlined +FD: net/minecraft/network/chat/Style/f_131105_ net/minecraft/network/chat/Style/strikethrough +FD: net/minecraft/network/chat/Style/f_131106_ net/minecraft/network/chat/Style/obfuscated +FD: net/minecraft/network/chat/Style/f_131107_ net/minecraft/network/chat/Style/clickEvent +FD: net/minecraft/network/chat/Style/f_131108_ net/minecraft/network/chat/Style/hoverEvent +FD: net/minecraft/network/chat/Style/f_131109_ net/minecraft/network/chat/Style/insertion +FD: net/minecraft/network/chat/Style/f_131110_ net/minecraft/network/chat/Style/font +FD: net/minecraft/network/chat/Style/f_237254_ net/minecraft/network/chat/Style/FORMATTING_CODEC +FD: net/minecraft/network/chat/Style$1/f_131196_ net/minecraft/network/chat/Style$1/$SwitchMap$net$minecraft$ChatFormatting +FD: net/minecraft/network/chat/Style$1Collector/f_237282_ net/minecraft/network/chat/Style$1Collector/val$result +FD: net/minecraft/network/chat/Style$1Collector/f_237283_ net/minecraft/network/chat/Style$1Collector/this$0 +FD: net/minecraft/network/chat/Style$1Collector/f_237284_ net/minecraft/network/chat/Style$1Collector/isNotFirst +FD: net/minecraft/network/chat/SubStringSource/f_131228_ net/minecraft/network/chat/SubStringSource/plainText +FD: net/minecraft/network/chat/SubStringSource/f_131229_ net/minecraft/network/chat/SubStringSource/charStyles +FD: net/minecraft/network/chat/SubStringSource/f_131230_ net/minecraft/network/chat/SubStringSource/reverseCharModifier +FD: net/minecraft/network/chat/TextColor/f_131255_ net/minecraft/network/chat/TextColor/LEGACY_FORMAT_TO_COLOR +FD: net/minecraft/network/chat/TextColor/f_131256_ net/minecraft/network/chat/TextColor/NAMED_COLORS +FD: net/minecraft/network/chat/TextColor/f_131257_ net/minecraft/network/chat/TextColor/value +FD: net/minecraft/network/chat/TextColor/f_131258_ net/minecraft/network/chat/TextColor/name +FD: net/minecraft/network/chat/TextColor/f_178538_ net/minecraft/network/chat/TextColor/CUSTOM_COLOR_PREFIX +FD: net/minecraft/network/chat/TextColor/f_237295_ net/minecraft/network/chat/TextColor/CODEC +FD: net/minecraft/network/chat/ThrowingComponent/f_237302_ net/minecraft/network/chat/ThrowingComponent/component +FD: net/minecraft/network/chat/contents/BlockDataSource/f_237309_ net/minecraft/network/chat/contents/BlockDataSource/posPattern +FD: net/minecraft/network/chat/contents/BlockDataSource/f_237310_ net/minecraft/network/chat/contents/BlockDataSource/compiledPos +FD: net/minecraft/network/chat/contents/EntityDataSource/f_237327_ net/minecraft/network/chat/contents/EntityDataSource/selectorPattern +FD: net/minecraft/network/chat/contents/EntityDataSource/f_237328_ net/minecraft/network/chat/contents/EntityDataSource/compiledSelector +FD: net/minecraft/network/chat/contents/KeybindContents/f_237344_ net/minecraft/network/chat/contents/KeybindContents/name +FD: net/minecraft/network/chat/contents/KeybindContents/f_237345_ net/minecraft/network/chat/contents/KeybindContents/nameResolver +FD: net/minecraft/network/chat/contents/KeybindResolver/f_237359_ net/minecraft/network/chat/contents/KeybindResolver/keyResolver +FD: net/minecraft/network/chat/contents/LiteralContents/f_237368_ net/minecraft/network/chat/contents/LiteralContents/text +FD: net/minecraft/network/chat/contents/NbtContents/f_237381_ net/minecraft/network/chat/contents/NbtContents/compiledNbtPath +FD: net/minecraft/network/chat/contents/NbtContents/f_237382_ net/minecraft/network/chat/contents/NbtContents/LOGGER +FD: net/minecraft/network/chat/contents/NbtContents/f_237383_ net/minecraft/network/chat/contents/NbtContents/interpreting +FD: net/minecraft/network/chat/contents/NbtContents/f_237384_ net/minecraft/network/chat/contents/NbtContents/separator +FD: net/minecraft/network/chat/contents/NbtContents/f_237385_ net/minecraft/network/chat/contents/NbtContents/nbtPathPattern +FD: net/minecraft/network/chat/contents/NbtContents/f_237386_ net/minecraft/network/chat/contents/NbtContents/dataSource +FD: net/minecraft/network/chat/contents/ScoreContents/f_237433_ net/minecraft/network/chat/contents/ScoreContents/SCORER_PLACEHOLDER +FD: net/minecraft/network/chat/contents/ScoreContents/f_237434_ net/minecraft/network/chat/contents/ScoreContents/name +FD: net/minecraft/network/chat/contents/ScoreContents/f_237435_ net/minecraft/network/chat/contents/ScoreContents/selector +FD: net/minecraft/network/chat/contents/ScoreContents/f_237436_ net/minecraft/network/chat/contents/ScoreContents/objective +FD: net/minecraft/network/chat/contents/SelectorContents/f_237458_ net/minecraft/network/chat/contents/SelectorContents/separator +FD: net/minecraft/network/chat/contents/SelectorContents/f_237459_ net/minecraft/network/chat/contents/SelectorContents/LOGGER +FD: net/minecraft/network/chat/contents/SelectorContents/f_237460_ net/minecraft/network/chat/contents/SelectorContents/pattern +FD: net/minecraft/network/chat/contents/SelectorContents/f_237461_ net/minecraft/network/chat/contents/SelectorContents/selector +FD: net/minecraft/network/chat/contents/StorageDataSource/f_237484_ net/minecraft/network/chat/contents/StorageDataSource/id +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237494_ net/minecraft/network/chat/contents/TranslatableContents/NO_ARGS +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237495_ net/minecraft/network/chat/contents/TranslatableContents/TEXT_PERCENT +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237496_ net/minecraft/network/chat/contents/TranslatableContents/TEXT_NULL +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237497_ net/minecraft/network/chat/contents/TranslatableContents/key +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237498_ net/minecraft/network/chat/contents/TranslatableContents/args +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237499_ net/minecraft/network/chat/contents/TranslatableContents/decomposedWith +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237500_ net/minecraft/network/chat/contents/TranslatableContents/decomposedParts +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237501_ net/minecraft/network/chat/contents/TranslatableContents/FORMAT_PATTERN +FD: net/minecraft/network/chat/contents/TranslatableContents/f_263792_ net/minecraft/network/chat/contents/TranslatableContents/fallback +FD: net/minecraft/network/protocol/BundlePacket/f_263700_ net/minecraft/network/protocol/BundlePacket/packets +FD: net/minecraft/network/protocol/BundlerInfo/f_263663_ net/minecraft/network/protocol/BundlerInfo/EMPTY +FD: net/minecraft/network/protocol/BundlerInfo/f_263688_ net/minecraft/network/protocol/BundlerInfo/BUNDLE_SIZE_LIMIT +FD: net/minecraft/network/protocol/BundlerInfo/f_263730_ net/minecraft/network/protocol/BundlerInfo/BUNDLER_PROVIDER +FD: net/minecraft/network/protocol/BundlerInfo$2/f_263671_ net/minecraft/network/protocol/BundlerInfo$2/val$bundlePacketCls +FD: net/minecraft/network/protocol/BundlerInfo$2/f_263691_ net/minecraft/network/protocol/BundlerInfo$2/val$delimiterPacket +FD: net/minecraft/network/protocol/BundlerInfo$2/f_263787_ net/minecraft/network/protocol/BundlerInfo$2/val$constructor +FD: net/minecraft/network/protocol/BundlerInfo$2$1/f_263710_ net/minecraft/network/protocol/BundlerInfo$2$1/bundlePackets +FD: net/minecraft/network/protocol/BundlerInfo$2$1/f_263768_ net/minecraft/network/protocol/BundlerInfo$2$1/this$0 +FD: net/minecraft/network/protocol/PacketFlow/$VALUES net/minecraft/network/protocol/PacketFlow/$VALUES +FD: net/minecraft/network/protocol/PacketFlow/CLIENTBOUND net/minecraft/network/protocol/PacketFlow/CLIENTBOUND +FD: net/minecraft/network/protocol/PacketFlow/SERVERBOUND net/minecraft/network/protocol/PacketFlow/SERVERBOUND +FD: net/minecraft/network/protocol/PacketUtils/f_131354_ net/minecraft/network/protocol/PacketUtils/LOGGER +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131456_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/id +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131457_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/uuid +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131458_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/x +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131459_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/y +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131460_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/z +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131461_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/xa +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131462_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ya +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131463_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/za +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131464_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131465_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131466_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/type +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131467_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/data +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_178559_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/MAGICAL_QUANTIZATION +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_178560_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/LIMIT +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_237544_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/yHeadRot +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131510_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/id +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131511_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/x +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131512_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/y +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131513_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/z +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131514_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/value +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131587_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131588_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131589_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/x +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131590_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/y +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131591_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/z +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131592_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131593_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_131612_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/id +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_131613_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/action +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178583_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/SWING_MAIN_HAND +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178585_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/WAKE_UP +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178586_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/SWING_OFF_HAND +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178587_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/CRITICAL_HIT +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178588_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/MAGIC_CRITICAL_HIT +FD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/f_131628_ net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/stats +FD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/f_237578_ net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/sequence +FD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/f_131671_ net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/id +FD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/f_131672_ net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/f_131673_ net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/progress +FD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/f_131690_ net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/f_131691_ net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/type +FD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/f_131692_ net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/tag +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131709_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131710_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/b0 +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131711_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/b1 +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131712_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/block +FD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/f_131731_ net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/f_131732_ net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/blockState +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_131750_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/id +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_131751_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/operation +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178629_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/FLAG_DARKEN +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178630_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/FLAG_MUSIC +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178631_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/FLAG_FOG +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178632_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/REMOVE_OPERATION +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178664_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/name +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178665_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/progress +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178666_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/color +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178667_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/overlay +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178668_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/darkenScreen +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178669_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/playMusic +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178670_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/createWorldFog +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/$VALUES net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ADD net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ADD +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/REMOVE net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_NAME net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_NAME +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROGRESS net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROGRESS +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROPERTIES net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROPERTIES +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_STYLE net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_STYLE +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/f_178710_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/reader +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/f_178723_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/name +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/f_178734_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/progress +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/f_178745_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/darkenScreen +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/f_178746_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/playMusic +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/f_178747_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/createWorldFog +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/f_178760_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/color +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/f_178761_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/overlay +FD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/f_131805_ net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/difficulty +FD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/f_131806_ net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/locked +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/f_273816_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/chunkBiomeData +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/f_273892_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/TWO_MEGABYTES +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273848_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/buffer +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273927_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/pos +FD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/f_178777_ net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/resetTimes +FD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/f_131842_ net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/id +FD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/f_131843_ net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/suggestions +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178797_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/MASK_TYPE +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178798_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/FLAG_EXECUTABLE +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178799_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/FLAG_REDIRECT +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178800_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/FLAG_CUSTOM_SUGGESTIONS +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178801_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/TYPE_ROOT +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178802_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/TYPE_LITERAL +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178803_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/TYPE_ARGUMENT +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_237619_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/rootIndex +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_237620_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/entries +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/f_237644_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/id +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/f_237645_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/argumentType +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/f_237646_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/suggestionId +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_131890_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/flags +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_131891_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/redirect +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_131892_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/children +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_237666_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/stub +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/f_237678_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/id +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/f_237685_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/context +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/f_237686_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/entries +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/f_237687_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/nodes +FD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/f_131930_ net/minecraft/network/protocol/game/ClientboundContainerClosePacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_131942_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_131943_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/items +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_182701_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/stateId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_182702_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/carriedItem +FD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/f_131958_ net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/f_131959_ net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/id +FD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/f_131960_ net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/value +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_131977_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_131978_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/slot +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_131979_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/itemStack +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_178826_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/CARRIED_ITEM +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_178827_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/PLAYER_INVENTORY +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_182710_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/stateId +FD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/f_131996_ net/minecraft/network/protocol/game/ClientboundCooldownPacket/item +FD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/f_131997_ net/minecraft/network/protocol/game/ClientboundCooldownPacket/duration +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240661_ net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/action +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240663_ net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/entries +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/$VALUES net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ADD net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ADD +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/REMOVE net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/SET net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/SET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132012_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/BRAND +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132013_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_PATHFINDING_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132014_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_NEIGHBORSUPDATE_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132016_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_STRUCTURES_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132017_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_WORLDGENATTEMPT_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132018_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_POI_TICKET_COUNT_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132019_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_POI_ADDED_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132020_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_POI_REMOVED_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132021_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_VILLAGE_SECTIONS +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132022_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GOAL_SELECTOR +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132023_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_BRAIN +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132024_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_BEE +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132025_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_HIVE +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132026_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_TEST_ADD_MARKER +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132027_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_TEST_CLEAR +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132028_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_RAIDS +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132029_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/identifier +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132030_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/data +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_178832_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_EVENT +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_178833_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_EVENT_LISTENER +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_178834_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268504_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268559_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceCauseId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268584_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceTypeId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268649_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceDirectId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268712_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourcePosition +FD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/f_240904_ net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/messageSignature +FD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/f_132075_ net/minecraft/network/protocol/game/ClientboundDisconnectPacket/reason +FD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244252_ net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/chatType +FD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244491_ net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/message +FD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/f_132088_ net/minecraft/network/protocol/game/ClientboundEntityEventPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/f_132089_ net/minecraft/network/protocol/game/ClientboundEntityEventPacket/eventId +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132105_ net/minecraft/network/protocol/game/ClientboundExplodePacket/x +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132106_ net/minecraft/network/protocol/game/ClientboundExplodePacket/y +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132107_ net/minecraft/network/protocol/game/ClientboundExplodePacket/z +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132108_ net/minecraft/network/protocol/game/ClientboundExplodePacket/power +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132109_ net/minecraft/network/protocol/game/ClientboundExplodePacket/toBlow +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132110_ net/minecraft/network/protocol/game/ClientboundExplodePacket/knockbackX +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132111_ net/minecraft/network/protocol/game/ClientboundExplodePacket/knockbackY +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132112_ net/minecraft/network/protocol/game/ClientboundExplodePacket/knockbackZ +FD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/f_132137_ net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/x +FD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/f_132138_ net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/z +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132153_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/NO_RESPAWN_BLOCK_AVAILABLE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132154_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/START_RAINING +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132155_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/STOP_RAINING +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132156_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/CHANGE_GAME_MODE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132157_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/WIN_GAME +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132158_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_EVENT +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132159_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/ARROW_HIT_PLAYER +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132160_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/RAIN_LEVEL_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132161_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/THUNDER_LEVEL_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132162_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/PUFFER_FISH_STING +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132163_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/GUARDIAN_ELDER_EFFECT +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132164_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/IMMEDIATE_RESPAWN +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132165_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/event +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132166_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/param +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178859_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_INTRO +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178860_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_1 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178861_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_2 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178862_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_3 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178863_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_4 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/f_132182_ net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/TYPES +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/f_132183_ net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/id +FD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/f_132190_ net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/f_132191_ net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/size +FD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/f_132192_ net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263825_ net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/id +FD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263826_ net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/yaw +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178868_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newCenterX +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178869_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newCenterZ +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178870_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/oldSize +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178871_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newSize +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178872_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/lerpTime +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178873_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newAbsoluteMaxSize +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178874_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/warningBlocks +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178875_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/warningTime +FD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/f_132209_ net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/id +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195646_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/TWO_MEGABYTES +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195647_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/heightmaps +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195648_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/buffer +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195649_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/blockEntitiesData +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195680_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/packedXZ +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195681_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/y +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195682_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/type +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195683_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/tag +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195699_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/x +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195700_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/z +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195701_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/chunkData +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195702_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/lightData +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132258_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/type +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132259_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132260_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/data +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132261_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/globalEvent +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132280_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/x +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132281_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/y +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132282_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/z +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132283_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/xDist +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132284_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/yDist +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132285_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/zDist +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132286_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/maxSpeed +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132287_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/count +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132288_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/overrideLimiter +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132289_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/particle +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/f_132323_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/x +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/f_132324_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/z +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/f_195721_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/lightData +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195723_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/skyYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195724_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/blockYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195725_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/emptySkyYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195726_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/emptyBlockYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195727_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/skyUpdates +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195728_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/blockUpdates +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132360_ net/minecraft/network/protocol/game/ClientboundLoginPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132361_ net/minecraft/network/protocol/game/ClientboundLoginPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132362_ net/minecraft/network/protocol/game/ClientboundLoginPacket/hardcore +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132363_ net/minecraft/network/protocol/game/ClientboundLoginPacket/gameType +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132364_ net/minecraft/network/protocol/game/ClientboundLoginPacket/previousGameType +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132365_ net/minecraft/network/protocol/game/ClientboundLoginPacket/levels +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132366_ net/minecraft/network/protocol/game/ClientboundLoginPacket/registryHolder +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132367_ net/minecraft/network/protocol/game/ClientboundLoginPacket/dimensionType +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132368_ net/minecraft/network/protocol/game/ClientboundLoginPacket/dimension +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132369_ net/minecraft/network/protocol/game/ClientboundLoginPacket/maxPlayers +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132370_ net/minecraft/network/protocol/game/ClientboundLoginPacket/chunkRadius +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132371_ net/minecraft/network/protocol/game/ClientboundLoginPacket/reducedDebugInfo +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132372_ net/minecraft/network/protocol/game/ClientboundLoginPacket/showDeathScreen +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132373_ net/minecraft/network/protocol/game/ClientboundLoginPacket/isDebug +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132374_ net/minecraft/network/protocol/game/ClientboundLoginPacket/isFlat +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_195761_ net/minecraft/network/protocol/game/ClientboundLoginPacket/simulationDistance +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_238174_ net/minecraft/network/protocol/game/ClientboundLoginPacket/lastDeathLocation +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_266064_ net/minecraft/network/protocol/game/ClientboundLoginPacket/BUILTIN_CONTEXT_OPS +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_286971_ net/minecraft/network/protocol/game/ClientboundLoginPacket/portalCooldown +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132415_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/mapId +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132416_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/scale +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132418_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/locked +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132419_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/decorations +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_178968_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/colorPatch +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132448_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132449_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/offers +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132450_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/villagerLevel +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132451_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/villagerXp +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132452_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/showProgress +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132453_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/canRestock +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132499_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132500_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/xa +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132501_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/ya +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132502_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/za +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132503_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132504_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132505_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/onGround +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132506_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasRot +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132507_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasPos +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132577_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/x +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132578_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/y +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132579_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/z +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132580_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132581_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/f_132598_ net/minecraft/network/protocol/game/ClientboundOpenBookPacket/hand +FD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/f_132611_ net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/f_132612_ net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/type +FD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/f_132613_ net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/title +FD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/f_132630_ net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/f_276459_ net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/isFrontText +FD: net/minecraft/network/protocol/game/ClientboundPingPacket/f_179014_ net/minecraft/network/protocol/game/ClientboundPingPacket/id +FD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/f_132643_ net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/f_132644_ net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/recipe +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132659_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/invulnerable +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132660_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/isFlying +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132661_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/canFly +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132662_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/instabuild +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132663_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/flyingSpeed +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132664_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/walkingSpeed +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179028_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_INVULNERABLE +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179029_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_FLYING +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179030_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_CAN_FLY +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179031_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_INSTABUILD +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_240897_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/chatType +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243686_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/unsignedContent +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243744_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/filterMask +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243836_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/signature +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243918_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/sender +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244090_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/body +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244283_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/index +FD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/f_179035_ net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/duration +FD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/f_179058_ net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/f_179060_ net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/message +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/f_244383_ net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/profileIds +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/f_243795_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/actions +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/f_244436_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/entries +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/$VALUES net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ADD_PLAYER net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ADD_PLAYER +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/INITIALIZE_CHAT net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/INITIALIZE_CHAT +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_DISPLAY_NAME net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_DISPLAY_NAME +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_GAME_MODE net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_GAME_MODE +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LATENCY net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LATENCY +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LISTED net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LISTED +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/f_243738_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/writer +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/f_243887_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/reader +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243688_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profile +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243700_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/listed +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244142_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profileId +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244153_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/chatSession +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244162_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/gameMode +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244322_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/latency +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244512_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/displayName +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243762_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/latency +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243856_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/profileId +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243869_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/displayName +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243955_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/listed +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_244042_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/profile +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_244148_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/gameMode +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_244393_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/chatSession +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132768_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/x +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132769_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/y +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132770_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/z +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132771_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/entity +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132772_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/fromAnchor +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132773_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/toAnchor +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132774_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/atEntity +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132796_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/x +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132797_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/y +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132798_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/z +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132799_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132800_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132801_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/relativeArguments +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132802_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/id +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132849_ net/minecraft/network/protocol/game/ClientboundRecipePacket/state +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132850_ net/minecraft/network/protocol/game/ClientboundRecipePacket/recipes +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132851_ net/minecraft/network/protocol/game/ClientboundRecipePacket/toHighlight +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132852_ net/minecraft/network/protocol/game/ClientboundRecipePacket/bookSettings +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/$VALUES net/minecraft/network/protocol/game/ClientboundRecipePacket$State/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ADD net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ADD +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/INIT net/minecraft/network/protocol/game/ClientboundRecipePacket$State/INIT +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/REMOVE net/minecraft/network/protocol/game/ClientboundRecipePacket$State/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/f_182717_ net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/entityIds +FD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/f_132895_ net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/f_132896_ net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/effect +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_132912_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/url +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_132913_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/hash +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_179178_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/MAX_HASH_LENGTH +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_179179_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/required +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_179180_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/prompt +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132928_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/dimensionType +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132929_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/dimension +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132930_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132931_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/playerGameType +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132932_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/previousPlayerGameType +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132933_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/isDebug +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132934_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/isFlat +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_238183_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/lastDeathLocation +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263551_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/KEEP_ATTRIBUTES +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263552_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/KEEP_ENTITY_DATA +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263553_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/dataToKeep +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263554_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/KEEP_ALL_DATA +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_286981_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/portalCooldown +FD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/f_132963_ net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/f_132964_ net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/yHeadRot +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_132980_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/sectionPos +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_132981_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/positions +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_132982_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/states +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_179194_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/POS_IN_SECTION_BITS +FD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/f_133003_ net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/tab +FD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/f_237795_ net/minecraft/network/protocol/game/ClientboundServerDataPacket/motd +FD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/f_242954_ net/minecraft/network/protocol/game/ClientboundServerDataPacket/enforcesSecureChat +FD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/f_271248_ net/minecraft/network/protocol/game/ClientboundServerDataPacket/iconBytes +FD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/f_179199_ net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/text +FD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/f_179211_ net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/newCenterX +FD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/f_179212_ net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/newCenterZ +FD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/f_179225_ net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/oldSize +FD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/f_179226_ net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/newSize +FD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/f_179227_ net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/lerpTime +FD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/f_179241_ net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/size +FD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/f_179253_ net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/warningDelay +FD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/f_179265_ net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/warningBlocks +FD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/f_133055_ net/minecraft/network/protocol/game/ClientboundSetCameraPacket/cameraId +FD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/f_133069_ net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/slot +FD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/f_133082_ net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/x +FD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/f_133083_ net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/z +FD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/f_133098_ net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/radius +FD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/f_133111_ net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/f_133112_ net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/angle +FD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/f_133127_ net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/slot +FD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/f_133128_ net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/objectiveName +FD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133143_ net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/id +FD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133144_ net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/packedItems +FD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_252513_ net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/EOF_MARKER +FD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/f_133160_ net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/sourceId +FD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/f_133161_ net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/destId +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133176_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/id +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133177_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/xa +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133178_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ya +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133179_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/za +FD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/f_133198_ net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/entity +FD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/f_133199_ net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/slots +FD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/f_179295_ net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/CONTINUE_MASK +FD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/f_133214_ net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/experienceProgress +FD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/f_133215_ net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/totalExperience +FD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/f_133216_ net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/experienceLevel +FD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/f_133233_ net/minecraft/network/protocol/game/ClientboundSetHealthPacket/health +FD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/f_133234_ net/minecraft/network/protocol/game/ClientboundSetHealthPacket/food +FD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/f_133235_ net/minecraft/network/protocol/game/ClientboundSetHealthPacket/saturation +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133252_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/objectiveName +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133253_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/displayName +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133254_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/renderType +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133255_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/method +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_179302_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/METHOD_ADD +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_179303_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/METHOD_REMOVE +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_179304_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/METHOD_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/f_133272_ net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/vehicle +FD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/f_133273_ net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/passengers +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_133287_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/name +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_133294_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/players +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_133295_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/method +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179309_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_ADD +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179310_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_REMOVE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179311_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179312_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_JOIN +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179313_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_LEAVE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179314_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/MAX_VISIBILITY_LENGTH +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179315_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/MAX_COLLISION_LENGTH +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179316_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/parameters +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/$VALUES net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ADD net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ADD +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/REMOVE net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179352_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/displayName +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179353_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/playerPrefix +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179354_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/playerSuffix +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179355_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/nametagVisibility +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179356_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/collisionRule +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179357_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/color +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179358_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/options +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133323_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/owner +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133324_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/objectiveName +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133325_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/score +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133326_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/method +FD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/f_195796_ net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/simulationDistance +FD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/f_179374_ net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/text +FD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/f_133345_ net/minecraft/network/protocol/game/ClientboundSetTimePacket/gameTime +FD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/f_133346_ net/minecraft/network/protocol/game/ClientboundSetTimePacket/dayTime +FD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/f_179388_ net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/text +FD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/f_179400_ net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/fadeIn +FD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/f_179401_ net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/stay +FD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/f_179402_ net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/fadeOut +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133408_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/sound +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133409_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/source +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133410_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/id +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133411_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/volume +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133412_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/pitch +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_237829_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133433_ net/minecraft/network/protocol/game/ClientboundSoundPacket/sound +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133434_ net/minecraft/network/protocol/game/ClientboundSoundPacket/source +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133435_ net/minecraft/network/protocol/game/ClientboundSoundPacket/x +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133436_ net/minecraft/network/protocol/game/ClientboundSoundPacket/y +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133437_ net/minecraft/network/protocol/game/ClientboundSoundPacket/z +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133438_ net/minecraft/network/protocol/game/ClientboundSoundPacket/volume +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133439_ net/minecraft/network/protocol/game/ClientboundSoundPacket/pitch +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_179420_ net/minecraft/network/protocol/game/ClientboundSoundPacket/LOCATION_ACCURACY +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_237838_ net/minecraft/network/protocol/game/ClientboundSoundPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_133464_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/name +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_133465_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/source +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_179423_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/HAS_SOURCE +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_179424_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/HAS_SOUND +FD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_237849_ net/minecraft/network/protocol/game/ClientboundSystemChatPacket/content +FD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_240374_ net/minecraft/network/protocol/game/ClientboundSystemChatPacket/overlay +FD: net/minecraft/network/protocol/game/ClientboundTabListPacket/f_133480_ net/minecraft/network/protocol/game/ClientboundTabListPacket/header +FD: net/minecraft/network/protocol/game/ClientboundTabListPacket/f_133481_ net/minecraft/network/protocol/game/ClientboundTabListPacket/footer +FD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/f_133493_ net/minecraft/network/protocol/game/ClientboundTagQueryPacket/transactionId +FD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/f_133494_ net/minecraft/network/protocol/game/ClientboundTagQueryPacket/tag +FD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/f_133510_ net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/itemId +FD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/f_133511_ net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/f_133512_ net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/amount +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133529_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/id +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133530_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/x +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133531_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/y +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133532_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/z +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133533_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133534_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133535_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/onGround +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133554_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/reset +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133555_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/added +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133556_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/removed +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133557_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/progress +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/f_133576_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/f_133577_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/attributes +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/f_133593_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/attribute +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/f_133594_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/base +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/f_133595_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/modifiers +FD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/f_244610_ net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/features +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133604_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133606_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effectAmplifier +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133607_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effectDurationTicks +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133608_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/flags +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_179462_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/FLAG_AMBIENT +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_179463_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/FLAG_VISIBLE +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_179464_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/FLAG_SHOW_ICON +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_237871_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effect +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_237872_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/factorData +FD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/f_133629_ net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/recipes +FD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/f_133649_ net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/tags +FD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/f_133662_ net/minecraft/network/protocol/game/DebugEntityNameGenerator/NAMES_FIRST_PART +FD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/f_133663_ net/minecraft/network/protocol/game/DebugEntityNameGenerator/NAMES_SECOND_PART +FD: net/minecraft/network/protocol/game/DebugPackets/f_133672_ net/minecraft/network/protocol/game/DebugPackets/LOGGER +FD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/f_133785_ net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/id +FD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/f_133798_ net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/transactionId +FD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/f_133799_ net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/pos +FD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/f_133814_ net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/difficulty +FD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/f_244085_ net/minecraft/network/protocol/game/ServerboundChatAckPacket/offset +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237922_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/command +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237923_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/timeStamp +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237924_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/argumentSignatures +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_240858_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/salt +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_241638_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/lastSeenMessages +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_133827_ net/minecraft/network/protocol/game/ServerboundChatPacket/message +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_237950_ net/minecraft/network/protocol/game/ServerboundChatPacket/timeStamp +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240898_ net/minecraft/network/protocol/game/ServerboundChatPacket/signature +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240906_ net/minecraft/network/protocol/game/ServerboundChatPacket/salt +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_241662_ net/minecraft/network/protocol/game/ServerboundChatPacket/lastSeenMessages +FD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/f_252446_ net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/chatSession +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/f_133840_ net/minecraft/network/protocol/game/ServerboundClientCommandPacket/action +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/PERFORM_RESPAWN net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/PERFORM_RESPAWN +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/REQUEST_STATS net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/REQUEST_STATS +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133863_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/language +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133864_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/viewDistance +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133865_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatVisibility +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133866_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatColors +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133867_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/modelCustomisation +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133868_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/mainHand +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_179549_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/MAX_LANGUAGE_LENGTH +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_179550_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/textFilteringEnabled +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_195812_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/allowsListing +FD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/f_133889_ net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/id +FD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/f_133890_ net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/command +FD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/f_133923_ net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/f_133924_ net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/buttonId +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133939_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133940_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/slotNum +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133941_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/buttonNum +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133944_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/clickType +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_179568_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/carriedItem +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_179569_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/changedSlots +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_182731_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/MAX_SLOT_COUNT +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_182732_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/stateId +FD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/f_133967_ net/minecraft/network/protocol/game/ServerboundContainerClosePacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_133979_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/BRAND +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_133980_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/identifier +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_133981_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/data +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_179586_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_133997_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/slot +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182742_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/MAX_BYTES_PER_CHAR +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182743_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/TITLE_MAX_CHARS +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182744_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/PAGE_MAX_CHARS +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182745_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/MAX_PAGES_COUNT +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182746_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/pages +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182747_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/title +FD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/f_134014_ net/minecraft/network/protocol/game/ServerboundEntityTagQuery/transactionId +FD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/f_134015_ net/minecraft/network/protocol/game/ServerboundEntityTagQuery/entityId +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_134030_ net/minecraft/network/protocol/game/ServerboundInteractPacket/entityId +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_134031_ net/minecraft/network/protocol/game/ServerboundInteractPacket/action +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_134034_ net/minecraft/network/protocol/game/ServerboundInteractPacket/usingSecondaryAction +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_179595_ net/minecraft/network/protocol/game/ServerboundInteractPacket/ATTACK_ACTION +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/$VALUES net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ATTACK net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ATTACK +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT_AT net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT_AT +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/f_179630_ net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/reader +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/f_179646_ net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/hand +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/f_179656_ net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/hand +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/f_179657_ net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/location +FD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/f_134073_ net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/pos +FD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/f_134074_ net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/levels +FD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/f_134075_ net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/keepJigsaws +FD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/f_134092_ net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/id +FD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/f_134105_ net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/locked +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134118_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/x +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134119_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/y +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134120_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/z +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134121_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/yRot +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134122_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/xRot +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134123_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/onGround +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134124_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasPos +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134125_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasRot +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134185_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/x +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134186_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/y +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134187_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/z +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134188_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/yRot +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134189_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/xRot +FD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/f_134206_ net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/left +FD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/f_134207_ net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/right +FD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/f_134222_ net/minecraft/network/protocol/game/ServerboundPickItemPacket/slot +FD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/f_134235_ net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/f_134236_ net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/recipe +FD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/f_134237_ net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/shiftDown +FD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/f_134254_ net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/isFlying +FD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/f_179707_ net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/FLAG_FLYING +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_134267_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_134268_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/direction +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_134269_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/action +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_237981_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/sequence +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ABORT_DESTROY_BLOCK net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ABORT_DESTROY_BLOCK +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ALL_ITEMS net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ALL_ITEMS +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ITEM net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ITEM +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/RELEASE_USE_ITEM net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/RELEASE_USE_ITEM +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/START_DESTROY_BLOCK net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/START_DESTROY_BLOCK +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/STOP_DESTROY_BLOCK net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/STOP_DESTROY_BLOCK +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/SWAP_ITEM_WITH_OFFHAND net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/SWAP_ITEM_WITH_OFFHAND +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/f_134301_ net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/id +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/f_134302_ net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/action +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/f_134303_ net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/data +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/OPEN_INVENTORY net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/OPEN_INVENTORY +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/PRESS_SHIFT_KEY net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/PRESS_SHIFT_KEY +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/RELEASE_SHIFT_KEY net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/RELEASE_SHIFT_KEY +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_FALL_FLYING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_FALL_FLYING +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_RIDING_JUMP net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_RIDING_JUMP +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_SPRINTING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_SPRINTING +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_RIDING_JUMP net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_RIDING_JUMP +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SLEEPING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SLEEPING +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SPRINTING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SPRINTING +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134339_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/xxa +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134340_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/zza +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134341_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isJumping +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134342_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isShiftKeyDown +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_179717_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/FLAG_JUMPING +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_179718_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/FLAG_SHIFT_KEY_DOWN +FD: net/minecraft/network/protocol/game/ServerboundPongPacket/f_179721_ net/minecraft/network/protocol/game/ServerboundPongPacket/id +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/f_134361_ net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/bookType +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/f_134362_ net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isOpen +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/f_134363_ net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isFiltering +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/f_134380_ net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/recipe +FD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/f_134393_ net/minecraft/network/protocol/game/ServerboundRenameItemPacket/name +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/f_134406_ net/minecraft/network/protocol/game/ServerboundResourcePackPacket/action +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ACCEPTED net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ACCEPTED +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/DECLINED net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/DECLINED +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/FAILED_DOWNLOAD net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/FAILED_DOWNLOAD +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/SUCCESSFULLY_LOADED net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/SUCCESSFULLY_LOADED +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/f_134430_ net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/action +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/f_134431_ net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/tab +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/CLOSED_SCREEN net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/CLOSED_SCREEN +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/OPENED_TAB net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/OPENED_TAB +FD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/f_134459_ net/minecraft/network/protocol/game/ServerboundSelectTradePacket/item +FD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/f_134472_ net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/primary +FD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/f_134473_ net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/secondary +FD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/f_134488_ net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/slot +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134501_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134502_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/command +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134503_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/trackOutput +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134504_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/conditional +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134505_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/automatic +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134506_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/mode +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_179752_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/FLAG_TRACK_OUTPUT +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_179753_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/FLAG_CONDITIONAL +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_179754_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/FLAG_AUTOMATIC +FD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/f_134529_ net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/entity +FD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/f_134530_ net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/command +FD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/f_134531_ net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/trackOutput +FD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/f_134549_ net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/slotNum +FD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/f_134550_ net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/itemStack +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134565_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134566_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/name +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134567_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/target +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134568_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/pool +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134569_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/finalState +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134570_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/joint +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134593_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134594_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/updateType +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134595_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/mode +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134596_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/name +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134597_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/offset +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134598_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/size +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134599_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/mirror +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134600_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/rotation +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134601_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/data +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134602_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ignoreEntities +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134603_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/showAir +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134604_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/showBoundingBox +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134605_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/integrity +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134606_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/seed +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_179767_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/FLAG_IGNORE_ENTITIES +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_179768_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/FLAG_SHOW_AIR +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_179769_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/FLAG_SHOW_BOUNDING_BOX +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_134645_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_134646_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/lines +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_179788_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/MAX_STRING_LENGTH +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_276680_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/isFrontText +FD: net/minecraft/network/protocol/game/ServerboundSwingPacket/f_134664_ net/minecraft/network/protocol/game/ServerboundSwingPacket/hand +FD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/f_134677_ net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/uuid +FD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/f_134691_ net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/blockHit +FD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/f_134692_ net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/hand +FD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/f_238003_ net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/sequence +FD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/f_134707_ net/minecraft/network/protocol/game/ServerboundUseItemPacket/hand +FD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/f_238009_ net/minecraft/network/protocol/game/ServerboundUseItemPacket/sequence +FD: net/minecraft/network/protocol/game/VecDeltaCodec/f_238014_ net/minecraft/network/protocol/game/VecDeltaCodec/TRUNCATION_STEPS +FD: net/minecraft/network/protocol/game/VecDeltaCodec/f_238015_ net/minecraft/network/protocol/game/VecDeltaCodec/base +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134720_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/protocolVersion +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134721_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/hostName +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134722_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/port +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134723_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/intention +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_179799_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/MAX_HOST_LENGTH +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_134745_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/transactionId +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_134746_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/identifier +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_134747_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/data +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_179804_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/f_134764_ net/minecraft/network/protocol/login/ClientboundGameProfilePacket/gameProfile +FD: net/minecraft/network/protocol/login/ClientboundHelloPacket/f_134777_ net/minecraft/network/protocol/login/ClientboundHelloPacket/serverId +FD: net/minecraft/network/protocol/login/ClientboundHelloPacket/f_134778_ net/minecraft/network/protocol/login/ClientboundHelloPacket/publicKey +FD: net/minecraft/network/protocol/login/ClientboundHelloPacket/f_252397_ net/minecraft/network/protocol/login/ClientboundHelloPacket/challenge +FD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/f_134796_ net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/compressionThreshold +FD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/f_134809_ net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/reason +FD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/f_134825_ net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/transactionId +FD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/f_134826_ net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/data +FD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/f_179821_ net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_238040_ net/minecraft/network/protocol/login/ServerboundHelloPacket/name +FD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_240375_ net/minecraft/network/protocol/login/ServerboundHelloPacket/profileId +FD: net/minecraft/network/protocol/login/ServerboundKeyPacket/f_134852_ net/minecraft/network/protocol/login/ServerboundKeyPacket/keybytes +FD: net/minecraft/network/protocol/login/ServerboundKeyPacket/f_252408_ net/minecraft/network/protocol/login/ServerboundKeyPacket/encryptedChallenge +FD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/f_134873_ net/minecraft/network/protocol/status/ClientboundPongResponsePacket/time +FD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/f_134886_ net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/status +FD: net/minecraft/network/protocol/status/ServerStatus/f_134900_ net/minecraft/network/protocol/status/ServerStatus/description +FD: net/minecraft/network/protocol/status/ServerStatus/f_134901_ net/minecraft/network/protocol/status/ServerStatus/players +FD: net/minecraft/network/protocol/status/ServerStatus/f_134902_ net/minecraft/network/protocol/status/ServerStatus/version +FD: net/minecraft/network/protocol/status/ServerStatus/f_134903_ net/minecraft/network/protocol/status/ServerStatus/favicon +FD: net/minecraft/network/protocol/status/ServerStatus/f_242955_ net/minecraft/network/protocol/status/ServerStatus/enforcesSecureChat +FD: net/minecraft/network/protocol/status/ServerStatus/f_271163_ net/minecraft/network/protocol/status/ServerStatus/CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271186_ net/minecraft/network/protocol/status/ServerStatus$Favicon/PREFIX +FD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271281_ net/minecraft/network/protocol/status/ServerStatus$Favicon/CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271462_ net/minecraft/network/protocol/status/ServerStatus$Favicon/iconBytes +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_134919_ net/minecraft/network/protocol/status/ServerStatus$Players/sample +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271178_ net/minecraft/network/protocol/status/ServerStatus$Players/online +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271466_ net/minecraft/network/protocol/status/ServerStatus$Players/PROFILE_CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271480_ net/minecraft/network/protocol/status/ServerStatus$Players/CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271503_ net/minecraft/network/protocol/status/ServerStatus$Players/max +FD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134962_ net/minecraft/network/protocol/status/ServerStatus$Version/name +FD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134963_ net/minecraft/network/protocol/status/ServerStatus$Version/protocol +FD: net/minecraft/network/protocol/status/ServerStatus$Version/f_271272_ net/minecraft/network/protocol/status/ServerStatus$Version/CODEC +FD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/f_134988_ net/minecraft/network/protocol/status/ServerboundPingRequestPacket/time +FD: net/minecraft/network/syncher/EntityDataAccessor/f_135010_ net/minecraft/network/syncher/EntityDataAccessor/id +FD: net/minecraft/network/syncher/EntityDataAccessor/f_135011_ net/minecraft/network/syncher/EntityDataAccessor/serializer +FD: net/minecraft/network/syncher/EntityDataSerializer$1/f_238101_ net/minecraft/network/syncher/EntityDataSerializer$1/val$writer +FD: net/minecraft/network/syncher/EntityDataSerializer$1/f_238102_ net/minecraft/network/syncher/EntityDataSerializer$1/val$reader +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135027_ net/minecraft/network/syncher/EntityDataSerializers/BYTE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135028_ net/minecraft/network/syncher/EntityDataSerializers/INT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135029_ net/minecraft/network/syncher/EntityDataSerializers/FLOAT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135030_ net/minecraft/network/syncher/EntityDataSerializers/STRING +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135031_ net/minecraft/network/syncher/EntityDataSerializers/COMPONENT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135032_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_COMPONENT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135033_ net/minecraft/network/syncher/EntityDataSerializers/ITEM_STACK +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135034_ net/minecraft/network/syncher/EntityDataSerializers/BLOCK_STATE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135035_ net/minecraft/network/syncher/EntityDataSerializers/BOOLEAN +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135036_ net/minecraft/network/syncher/EntityDataSerializers/PARTICLE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135037_ net/minecraft/network/syncher/EntityDataSerializers/ROTATIONS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135038_ net/minecraft/network/syncher/EntityDataSerializers/BLOCK_POS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135039_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_BLOCK_POS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135040_ net/minecraft/network/syncher/EntityDataSerializers/DIRECTION +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135041_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_UUID +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135042_ net/minecraft/network/syncher/EntityDataSerializers/COMPOUND_TAG +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135043_ net/minecraft/network/syncher/EntityDataSerializers/VILLAGER_DATA +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135044_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_UNSIGNED_INT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135045_ net/minecraft/network/syncher/EntityDataSerializers/POSE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135046_ net/minecraft/network/syncher/EntityDataSerializers/SERIALIZERS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238113_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_GLOBAL_POS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238114_ net/minecraft/network/syncher/EntityDataSerializers/CAT_VARIANT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238115_ net/minecraft/network/syncher/EntityDataSerializers/FROG_VARIANT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238116_ net/minecraft/network/syncher/EntityDataSerializers/PAINTING_VARIANT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_244073_ net/minecraft/network/syncher/EntityDataSerializers/LONG +FD: net/minecraft/network/syncher/EntityDataSerializers/f_268618_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_BLOCK_STATE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_268624_ net/minecraft/network/syncher/EntityDataSerializers/QUATERNION +FD: net/minecraft/network/syncher/EntityDataSerializers/f_268676_ net/minecraft/network/syncher/EntityDataSerializers/VECTOR3 +FD: net/minecraft/network/syncher/EntityDataSerializers/f_271344_ net/minecraft/network/syncher/EntityDataSerializers/SNIFFER_STATE +FD: net/minecraft/network/syncher/SynchedEntityData/f_135342_ net/minecraft/network/syncher/SynchedEntityData/LOGGER +FD: net/minecraft/network/syncher/SynchedEntityData/f_135343_ net/minecraft/network/syncher/SynchedEntityData/ENTITY_ID_POOL +FD: net/minecraft/network/syncher/SynchedEntityData/f_135344_ net/minecraft/network/syncher/SynchedEntityData/entity +FD: net/minecraft/network/syncher/SynchedEntityData/f_135345_ net/minecraft/network/syncher/SynchedEntityData/itemsById +FD: net/minecraft/network/syncher/SynchedEntityData/f_135346_ net/minecraft/network/syncher/SynchedEntityData/lock +FD: net/minecraft/network/syncher/SynchedEntityData/f_135348_ net/minecraft/network/syncher/SynchedEntityData/isDirty +FD: net/minecraft/network/syncher/SynchedEntityData/f_179843_ net/minecraft/network/syncher/SynchedEntityData/MAX_ID_VALUE +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_135390_ net/minecraft/network/syncher/SynchedEntityData$DataItem/accessor +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_135391_ net/minecraft/network/syncher/SynchedEntityData$DataItem/value +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_135392_ net/minecraft/network/syncher/SynchedEntityData$DataItem/dirty +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_252454_ net/minecraft/network/syncher/SynchedEntityData$DataItem/initialValue +FD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252469_ net/minecraft/network/syncher/SynchedEntityData$DataValue/id +FD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252511_ net/minecraft/network/syncher/SynchedEntityData$DataValue/serializer +FD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252525_ net/minecraft/network/syncher/SynchedEntityData$DataValue/value +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120648_ net/minecraft/realms/DisconnectedRealmsScreen/reason +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120649_ net/minecraft/realms/DisconnectedRealmsScreen/message +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120650_ net/minecraft/realms/DisconnectedRealmsScreen/parent +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120651_ net/minecraft/realms/DisconnectedRealmsScreen/textHeight +FD: net/minecraft/realms/RealmsConnect/f_120687_ net/minecraft/realms/RealmsConnect/LOGGER +FD: net/minecraft/realms/RealmsConnect/f_120688_ net/minecraft/realms/RealmsConnect/onlineScreen +FD: net/minecraft/realms/RealmsConnect/f_120689_ net/minecraft/realms/RealmsConnect/aborted +FD: net/minecraft/realms/RealmsConnect/f_120690_ net/minecraft/realms/RealmsConnect/connection +FD: net/minecraft/realms/RealmsConnect$1/f_120710_ net/minecraft/realms/RealmsConnect$1/val$hostname +FD: net/minecraft/realms/RealmsConnect$1/f_120711_ net/minecraft/realms/RealmsConnect$1/val$port +FD: net/minecraft/realms/RealmsConnect$1/f_120712_ net/minecraft/realms/RealmsConnect$1/val$minecraft +FD: net/minecraft/realms/RealmsConnect$1/f_120713_ net/minecraft/realms/RealmsConnect$1/val$server +FD: net/minecraft/realms/RealmsConnect$1/f_120714_ net/minecraft/realms/RealmsConnect$1/this$0 +FD: net/minecraft/realms/RealmsLabel/f_120731_ net/minecraft/realms/RealmsLabel/text +FD: net/minecraft/realms/RealmsLabel/f_120732_ net/minecraft/realms/RealmsLabel/x +FD: net/minecraft/realms/RealmsLabel/f_120733_ net/minecraft/realms/RealmsLabel/y +FD: net/minecraft/realms/RealmsLabel/f_120734_ net/minecraft/realms/RealmsLabel/color +FD: net/minecraft/realms/RealmsScreen/f_175040_ net/minecraft/realms/RealmsScreen/COLOR_YELLOW +FD: net/minecraft/realms/RealmsScreen/f_175041_ net/minecraft/realms/RealmsScreen/COLOR_BRIGHT_YELLOW +FD: net/minecraft/realms/RealmsScreen/f_175042_ net/minecraft/realms/RealmsScreen/COLOR_LINK +FD: net/minecraft/realms/RealmsScreen/f_175043_ net/minecraft/realms/RealmsScreen/COLOR_LINK_HOVER +FD: net/minecraft/realms/RealmsScreen/f_175044_ net/minecraft/realms/RealmsScreen/COLOR_INFO +FD: net/minecraft/realms/RealmsScreen/f_175045_ net/minecraft/realms/RealmsScreen/COLOR_BUTTON_YELLOW +FD: net/minecraft/realms/RealmsScreen/f_175046_ net/minecraft/realms/RealmsScreen/UPDATE_BREAKS_ADVENTURE_URL +FD: net/minecraft/realms/RealmsScreen/f_175057_ net/minecraft/realms/RealmsScreen/labels +FD: net/minecraft/realms/RealmsScreen/f_175058_ net/minecraft/realms/RealmsScreen/TITLE_HEIGHT +FD: net/minecraft/realms/RealmsScreen/f_175059_ net/minecraft/realms/RealmsScreen/COMPONENT_HEIGHT +FD: net/minecraft/realms/RealmsScreen/f_175060_ net/minecraft/realms/RealmsScreen/EXPIRATION_NOTIFICATION_DAYS +FD: net/minecraft/realms/RealmsScreen/f_175061_ net/minecraft/realms/RealmsScreen/SIZE_LIMIT +FD: net/minecraft/realms/RealmsScreen/f_175062_ net/minecraft/realms/RealmsScreen/COLOR_WHITE +FD: net/minecraft/realms/RealmsScreen/f_175063_ net/minecraft/realms/RealmsScreen/COLOR_GRAY +FD: net/minecraft/realms/RealmsScreen/f_175064_ net/minecraft/realms/RealmsScreen/COLOR_DARK_GRAY +FD: net/minecraft/realms/RealmsScreen/f_175065_ net/minecraft/realms/RealmsScreen/COLOR_MEDIUM_GRAY +FD: net/minecraft/realms/RealmsScreen/f_175066_ net/minecraft/realms/RealmsScreen/COLOR_GREEN +FD: net/minecraft/realms/RealmsScreen/f_175067_ net/minecraft/realms/RealmsScreen/COLOR_DARK_GREEN +FD: net/minecraft/realms/RealmsScreen/f_175068_ net/minecraft/realms/RealmsScreen/COLOR_RED +FD: net/minecraft/realms/RealmsScreen/f_175069_ net/minecraft/realms/RealmsScreen/COLOR_RED_FADE +FD: net/minecraft/realms/RealmsScreen/f_175070_ net/minecraft/realms/RealmsScreen/COLOR_BLACK +FD: net/minecraft/realms/RealmsScreen/f_238765_ net/minecraft/realms/RealmsScreen/SKIN_FACE_SIZE +FD: net/minecraft/realms/RepeatedNarrator/f_120785_ net/minecraft/realms/RepeatedNarrator/permitsPerSecond +FD: net/minecraft/realms/RepeatedNarrator/f_120786_ net/minecraft/realms/RepeatedNarrator/params +FD: net/minecraft/realms/RepeatedNarrator$Params/f_120794_ net/minecraft/realms/RepeatedNarrator$Params/narration +FD: net/minecraft/realms/RepeatedNarrator$Params/f_120795_ net/minecraft/realms/RepeatedNarrator$Params/rateLimiter +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135425_ net/minecraft/recipebook/ServerPlaceRecipe/LOGGER +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135426_ net/minecraft/recipebook/ServerPlaceRecipe/stackedContents +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135427_ net/minecraft/recipebook/ServerPlaceRecipe/inventory +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135428_ net/minecraft/recipebook/ServerPlaceRecipe/menu +FD: net/minecraft/resources/DelegatingOps/f_135465_ net/minecraft/resources/DelegatingOps/delegate +FD: net/minecraft/resources/FileToIdConverter/f_244199_ net/minecraft/resources/FileToIdConverter/extension +FD: net/minecraft/resources/FileToIdConverter/f_244233_ net/minecraft/resources/FileToIdConverter/prefix +FD: net/minecraft/resources/HolderSetCodec/f_206655_ net/minecraft/resources/HolderSetCodec/registryKey +FD: net/minecraft/resources/HolderSetCodec/f_206656_ net/minecraft/resources/HolderSetCodec/elementCodec +FD: net/minecraft/resources/HolderSetCodec/f_206657_ net/minecraft/resources/HolderSetCodec/homogenousListCodec +FD: net/minecraft/resources/HolderSetCodec/f_206658_ net/minecraft/resources/HolderSetCodec/registryAwareCodec +FD: net/minecraft/resources/RegistryDataLoader/f_243803_ net/minecraft/resources/RegistryDataLoader/WORLDGEN_REGISTRIES +FD: net/minecraft/resources/RegistryDataLoader/f_243935_ net/minecraft/resources/RegistryDataLoader/LOGGER +FD: net/minecraft/resources/RegistryDataLoader/f_244547_ net/minecraft/resources/RegistryDataLoader/DIMENSION_REGISTRIES +FD: net/minecraft/resources/RegistryDataLoader$1/f_254620_ net/minecraft/resources/RegistryDataLoader$1/val$result +FD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_243794_ net/minecraft/resources/RegistryDataLoader$RegistryData/key +FD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_244580_ net/minecraft/resources/RegistryDataLoader$RegistryData/elementCodec +FD: net/minecraft/resources/RegistryFileCodec/f_135570_ net/minecraft/resources/RegistryFileCodec/registryKey +FD: net/minecraft/resources/RegistryFileCodec/f_135571_ net/minecraft/resources/RegistryFileCodec/elementCodec +FD: net/minecraft/resources/RegistryFileCodec/f_135572_ net/minecraft/resources/RegistryFileCodec/allowInline +FD: net/minecraft/resources/RegistryFixedCodec/f_206721_ net/minecraft/resources/RegistryFixedCodec/registryKey +FD: net/minecraft/resources/RegistryOps/f_254668_ net/minecraft/resources/RegistryOps/lookupProvider +FD: net/minecraft/resources/RegistryOps$1/f_254621_ net/minecraft/resources/RegistryOps$1/lookups +FD: net/minecraft/resources/RegistryOps$1/f_254712_ net/minecraft/resources/RegistryOps$1/val$original +FD: net/minecraft/resources/RegistryOps$2/f_254704_ net/minecraft/resources/RegistryOps$2/val$lookupProvider +FD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254675_ net/minecraft/resources/RegistryOps$RegistryInfo/owner +FD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254724_ net/minecraft/resources/RegistryOps$RegistryInfo/getter +FD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254751_ net/minecraft/resources/RegistryOps$RegistryInfo/elementsLifecycle +FD: net/minecraft/resources/ResourceKey/f_135775_ net/minecraft/resources/ResourceKey/VALUES +FD: net/minecraft/resources/ResourceKey/f_135776_ net/minecraft/resources/ResourceKey/registryName +FD: net/minecraft/resources/ResourceKey/f_135777_ net/minecraft/resources/ResourceKey/location +FD: net/minecraft/resources/ResourceKey$InternKey/f_256880_ net/minecraft/resources/ResourceKey$InternKey/registry +FD: net/minecraft/resources/ResourceKey$InternKey/f_257046_ net/minecraft/resources/ResourceKey$InternKey/location +FD: net/minecraft/resources/ResourceLocation/f_135803_ net/minecraft/resources/ResourceLocation/CODEC +FD: net/minecraft/resources/ResourceLocation/f_135804_ net/minecraft/resources/ResourceLocation/namespace +FD: net/minecraft/resources/ResourceLocation/f_135805_ net/minecraft/resources/ResourceLocation/path +FD: net/minecraft/resources/ResourceLocation/f_135806_ net/minecraft/resources/ResourceLocation/ERROR_INVALID +FD: net/minecraft/resources/ResourceLocation/f_179907_ net/minecraft/resources/ResourceLocation/NAMESPACE_SEPARATOR +FD: net/minecraft/resources/ResourceLocation/f_179908_ net/minecraft/resources/ResourceLocation/DEFAULT_NAMESPACE +FD: net/minecraft/resources/ResourceLocation/f_179909_ net/minecraft/resources/ResourceLocation/REALMS_NAMESPACE +FD: net/minecraft/server/Bootstrap/f_135866_ net/minecraft/server/Bootstrap/STDOUT +FD: net/minecraft/server/Bootstrap/f_135867_ net/minecraft/server/Bootstrap/isBootstrapped +FD: net/minecraft/server/Bootstrap/f_135868_ net/minecraft/server/Bootstrap/LOGGER +FD: net/minecraft/server/Bootstrap/f_285608_ net/minecraft/server/Bootstrap/bootstrapDuration +FD: net/minecraft/server/Bootstrap$1/f_135891_ net/minecraft/server/Bootstrap$1/val$language +FD: net/minecraft/server/Bootstrap$1/f_135892_ net/minecraft/server/Bootstrap$1/val$missing +FD: net/minecraft/server/ChainedJsonException/f_135899_ net/minecraft/server/ChainedJsonException/entries +FD: net/minecraft/server/ChainedJsonException/f_135900_ net/minecraft/server/ChainedJsonException/message +FD: net/minecraft/server/ChainedJsonException$Entry/f_135913_ net/minecraft/server/ChainedJsonException$Entry/filename +FD: net/minecraft/server/ChainedJsonException$Entry/f_135914_ net/minecraft/server/ChainedJsonException$Entry/jsonKeys +FD: net/minecraft/server/ConsoleInput/f_135928_ net/minecraft/server/ConsoleInput/msg +FD: net/minecraft/server/ConsoleInput/f_135929_ net/minecraft/server/ConsoleInput/source +FD: net/minecraft/server/DebugLoggedPrintStream/f_202580_ net/minecraft/server/DebugLoggedPrintStream/LOGGER +FD: net/minecraft/server/Eula/f_135938_ net/minecraft/server/Eula/LOGGER +FD: net/minecraft/server/Eula/f_135939_ net/minecraft/server/Eula/file +FD: net/minecraft/server/Eula/f_135940_ net/minecraft/server/Eula/agreed +FD: net/minecraft/server/LoggedPrintStream/f_135947_ net/minecraft/server/LoggedPrintStream/LOGGER +FD: net/minecraft/server/LoggedPrintStream/f_135948_ net/minecraft/server/LoggedPrintStream/name +FD: net/minecraft/server/Main/f_129670_ net/minecraft/server/Main/LOGGER +FD: net/minecraft/server/Main$1/f_129700_ net/minecraft/server/Main$1/val$dedicatedServer +FD: net/minecraft/server/MinecraftServer/f_129705_ net/minecraft/server/MinecraftServer/onlineMode +FD: net/minecraft/server/MinecraftServer/f_129706_ net/minecraft/server/MinecraftServer/preventProxyConnections +FD: net/minecraft/server/MinecraftServer/f_129707_ net/minecraft/server/MinecraftServer/pvp +FD: net/minecraft/server/MinecraftServer/f_129708_ net/minecraft/server/MinecraftServer/allowFlight +FD: net/minecraft/server/MinecraftServer/f_129709_ net/minecraft/server/MinecraftServer/motd +FD: net/minecraft/server/MinecraftServer/f_129711_ net/minecraft/server/MinecraftServer/playerIdleTimeout +FD: net/minecraft/server/MinecraftServer/f_129712_ net/minecraft/server/MinecraftServer/keyPair +FD: net/minecraft/server/MinecraftServer/f_129714_ net/minecraft/server/MinecraftServer/isDemo +FD: net/minecraft/server/MinecraftServer/f_129717_ net/minecraft/server/MinecraftServer/isReady +FD: net/minecraft/server/MinecraftServer/f_129718_ net/minecraft/server/MinecraftServer/lastOverloadWarning +FD: net/minecraft/server/MinecraftServer/f_129724_ net/minecraft/server/MinecraftServer/lastServerStatus +FD: net/minecraft/server/MinecraftServer/f_129725_ net/minecraft/server/MinecraftServer/serverThread +FD: net/minecraft/server/MinecraftServer/f_129726_ net/minecraft/server/MinecraftServer/nextTickTime +FD: net/minecraft/server/MinecraftServer/f_129727_ net/minecraft/server/MinecraftServer/delayedTasksMaxNextTickTime +FD: net/minecraft/server/MinecraftServer/f_129728_ net/minecraft/server/MinecraftServer/mayHaveDelayedTasks +FD: net/minecraft/server/MinecraftServer/f_129730_ net/minecraft/server/MinecraftServer/packRepository +FD: net/minecraft/server/MinecraftServer/f_129731_ net/minecraft/server/MinecraftServer/scoreboard +FD: net/minecraft/server/MinecraftServer/f_129732_ net/minecraft/server/MinecraftServer/commandStorage +FD: net/minecraft/server/MinecraftServer/f_129733_ net/minecraft/server/MinecraftServer/customBossEvents +FD: net/minecraft/server/MinecraftServer/f_129734_ net/minecraft/server/MinecraftServer/functionManager +FD: net/minecraft/server/MinecraftServer/f_129735_ net/minecraft/server/MinecraftServer/frameTimer +FD: net/minecraft/server/MinecraftServer/f_129736_ net/minecraft/server/MinecraftServer/enforceWhitelist +FD: net/minecraft/server/MinecraftServer/f_129737_ net/minecraft/server/MinecraftServer/averageTickTime +FD: net/minecraft/server/MinecraftServer/f_129738_ net/minecraft/server/MinecraftServer/executor +FD: net/minecraft/server/MinecraftServer/f_129739_ net/minecraft/server/MinecraftServer/serverId +FD: net/minecraft/server/MinecraftServer/f_129740_ net/minecraft/server/MinecraftServer/resources +FD: net/minecraft/server/MinecraftServer/f_129743_ net/minecraft/server/MinecraftServer/DEMO_SETTINGS +FD: net/minecraft/server/MinecraftServer/f_129744_ net/minecraft/server/MinecraftServer/storageSource +FD: net/minecraft/server/MinecraftServer/f_129745_ net/minecraft/server/MinecraftServer/playerDataStorage +FD: net/minecraft/server/MinecraftServer/f_129747_ net/minecraft/server/MinecraftServer/proxy +FD: net/minecraft/server/MinecraftServer/f_129748_ net/minecraft/server/MinecraftServer/tickTimes +FD: net/minecraft/server/MinecraftServer/f_129749_ net/minecraft/server/MinecraftServer/worldData +FD: net/minecraft/server/MinecraftServer/f_129750_ net/minecraft/server/MinecraftServer/LOGGER +FD: net/minecraft/server/MinecraftServer/f_129752_ net/minecraft/server/MinecraftServer/tickables +FD: net/minecraft/server/MinecraftServer/f_129754_ net/minecraft/server/MinecraftServer/profiler +FD: net/minecraft/server/MinecraftServer/f_129755_ net/minecraft/server/MinecraftServer/connection +FD: net/minecraft/server/MinecraftServer/f_129756_ net/minecraft/server/MinecraftServer/progressListenerFactory +FD: net/minecraft/server/MinecraftServer/f_129757_ net/minecraft/server/MinecraftServer/status +FD: net/minecraft/server/MinecraftServer/f_129758_ net/minecraft/server/MinecraftServer/random +FD: net/minecraft/server/MinecraftServer/f_129759_ net/minecraft/server/MinecraftServer/fixerUpper +FD: net/minecraft/server/MinecraftServer/f_129760_ net/minecraft/server/MinecraftServer/localIp +FD: net/minecraft/server/MinecraftServer/f_129761_ net/minecraft/server/MinecraftServer/port +FD: net/minecraft/server/MinecraftServer/f_129762_ net/minecraft/server/MinecraftServer/levels +FD: net/minecraft/server/MinecraftServer/f_129763_ net/minecraft/server/MinecraftServer/playerList +FD: net/minecraft/server/MinecraftServer/f_129764_ net/minecraft/server/MinecraftServer/running +FD: net/minecraft/server/MinecraftServer/f_129765_ net/minecraft/server/MinecraftServer/stopped +FD: net/minecraft/server/MinecraftServer/f_129766_ net/minecraft/server/MinecraftServer/tickCount +FD: net/minecraft/server/MinecraftServer/f_177871_ net/minecraft/server/MinecraftServer/DELAYED_TASKS_TICK_EXTENSION +FD: net/minecraft/server/MinecraftServer/f_177872_ net/minecraft/server/MinecraftServer/metricsRecorder +FD: net/minecraft/server/MinecraftServer/f_177873_ net/minecraft/server/MinecraftServer/onMetricsRecordingStopped +FD: net/minecraft/server/MinecraftServer/f_177874_ net/minecraft/server/MinecraftServer/onMetricsRecordingFinished +FD: net/minecraft/server/MinecraftServer/f_177875_ net/minecraft/server/MinecraftServer/willStartRecordingMetrics +FD: net/minecraft/server/MinecraftServer/f_177876_ net/minecraft/server/MinecraftServer/debugCommandProfiler +FD: net/minecraft/server/MinecraftServer/f_177877_ net/minecraft/server/MinecraftServer/debugCommandProfilerDelayStart +FD: net/minecraft/server/MinecraftServer/f_177878_ net/minecraft/server/MinecraftServer/MS_PER_TICK +FD: net/minecraft/server/MinecraftServer/f_177882_ net/minecraft/server/MinecraftServer/START_CHUNK_RADIUS +FD: net/minecraft/server/MinecraftServer/f_177883_ net/minecraft/server/MinecraftServer/ABSOLUTE_MAX_WORLD_SIZE +FD: net/minecraft/server/MinecraftServer/f_177884_ net/minecraft/server/MinecraftServer/AVERAGE_TICK_TIME_SMOOTHING +FD: net/minecraft/server/MinecraftServer/f_177885_ net/minecraft/server/MinecraftServer/TICK_STATS_SPAN +FD: net/minecraft/server/MinecraftServer/f_177887_ net/minecraft/server/MinecraftServer/OVERLOADED_THRESHOLD +FD: net/minecraft/server/MinecraftServer/f_177888_ net/minecraft/server/MinecraftServer/OVERLOADED_WARNING_INTERVAL +FD: net/minecraft/server/MinecraftServer/f_177889_ net/minecraft/server/MinecraftServer/STATUS_EXPIRE_TIME_NS +FD: net/minecraft/server/MinecraftServer/f_177890_ net/minecraft/server/MinecraftServer/MAX_STATUS_PLAYER_SAMPLE +FD: net/minecraft/server/MinecraftServer/f_177891_ net/minecraft/server/MinecraftServer/START_TICKING_CHUNK_COUNT +FD: net/minecraft/server/MinecraftServer/f_177892_ net/minecraft/server/MinecraftServer/AUTOSAVE_INTERVAL +FD: net/minecraft/server/MinecraftServer/f_177893_ net/minecraft/server/MinecraftServer/MAX_TICK_LATENCY +FD: net/minecraft/server/MinecraftServer/f_195494_ net/minecraft/server/MinecraftServer/isSaving +FD: net/minecraft/server/MinecraftServer/f_195495_ net/minecraft/server/MinecraftServer/VANILLA_BRAND +FD: net/minecraft/server/MinecraftServer/f_195496_ net/minecraft/server/MinecraftServer/ANONYMOUS_PLAYER_PROFILE +FD: net/minecraft/server/MinecraftServer/f_236719_ net/minecraft/server/MinecraftServer/singleplayerProfile +FD: net/minecraft/server/MinecraftServer/f_236720_ net/minecraft/server/MinecraftServer/structureTemplateManager +FD: net/minecraft/server/MinecraftServer/f_236721_ net/minecraft/server/MinecraftServer/services +FD: net/minecraft/server/MinecraftServer/f_244176_ net/minecraft/server/MinecraftServer/registries +FD: net/minecraft/server/MinecraftServer/f_271173_ net/minecraft/server/MinecraftServer/statusIcon +FD: net/minecraft/server/MinecraftServer$1/f_195523_ net/minecraft/server/MinecraftServer$1/val$entries +FD: net/minecraft/server/MinecraftServer$1/f_195524_ net/minecraft/server/MinecraftServer$1/val$gameRules +FD: net/minecraft/server/MinecraftServer$1/f_195525_ net/minecraft/server/MinecraftServer$1/this$0 +FD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206584_ net/minecraft/server/MinecraftServer$ReloadableResources/resourceManager +FD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206585_ net/minecraft/server/MinecraftServer$ReloadableResources/managers +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236743_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/url +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236744_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hash +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236745_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/isRequired +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236746_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/prompt +FD: net/minecraft/server/MinecraftServer$TimeProfiler/f_177955_ net/minecraft/server/MinecraftServer$TimeProfiler/startNanos +FD: net/minecraft/server/MinecraftServer$TimeProfiler/f_177956_ net/minecraft/server/MinecraftServer$TimeProfiler/startTick +FD: net/minecraft/server/MinecraftServer$TimeProfiler$1/f_177963_ net/minecraft/server/MinecraftServer$TimeProfiler$1/val$stopNanos +FD: net/minecraft/server/MinecraftServer$TimeProfiler$1/f_177964_ net/minecraft/server/MinecraftServer$TimeProfiler$1/val$stopTick +FD: net/minecraft/server/MinecraftServer$TimeProfiler$1/f_177965_ net/minecraft/server/MinecraftServer$TimeProfiler$1/this$0 +FD: net/minecraft/server/PlayerAdvancements/f_135958_ net/minecraft/server/PlayerAdvancements/LOGGER +FD: net/minecraft/server/PlayerAdvancements/f_135959_ net/minecraft/server/PlayerAdvancements/GSON +FD: net/minecraft/server/PlayerAdvancements/f_135960_ net/minecraft/server/PlayerAdvancements/TYPE_TOKEN +FD: net/minecraft/server/PlayerAdvancements/f_135961_ net/minecraft/server/PlayerAdvancements/dataFixer +FD: net/minecraft/server/PlayerAdvancements/f_135962_ net/minecraft/server/PlayerAdvancements/playerList +FD: net/minecraft/server/PlayerAdvancements/f_135965_ net/minecraft/server/PlayerAdvancements/visible +FD: net/minecraft/server/PlayerAdvancements/f_135967_ net/minecraft/server/PlayerAdvancements/progressChanged +FD: net/minecraft/server/PlayerAdvancements/f_135968_ net/minecraft/server/PlayerAdvancements/player +FD: net/minecraft/server/PlayerAdvancements/f_135969_ net/minecraft/server/PlayerAdvancements/lastSelectedTab +FD: net/minecraft/server/PlayerAdvancements/f_135970_ net/minecraft/server/PlayerAdvancements/isFirstPacket +FD: net/minecraft/server/PlayerAdvancements/f_263740_ net/minecraft/server/PlayerAdvancements/progress +FD: net/minecraft/server/PlayerAdvancements/f_263766_ net/minecraft/server/PlayerAdvancements/playerSavePath +FD: net/minecraft/server/PlayerAdvancements/f_263821_ net/minecraft/server/PlayerAdvancements/rootsToUpdate +FD: net/minecraft/server/RegistryLayer/$VALUES net/minecraft/server/RegistryLayer/$VALUES +FD: net/minecraft/server/RegistryLayer/DIMENSIONS net/minecraft/server/RegistryLayer/DIMENSIONS +FD: net/minecraft/server/RegistryLayer/RELOADABLE net/minecraft/server/RegistryLayer/RELOADABLE +FD: net/minecraft/server/RegistryLayer/STATIC net/minecraft/server/RegistryLayer/STATIC +FD: net/minecraft/server/RegistryLayer/WORLDGEN net/minecraft/server/RegistryLayer/WORLDGEN +FD: net/minecraft/server/RegistryLayer/f_244179_ net/minecraft/server/RegistryLayer/STATIC_ACCESS +FD: net/minecraft/server/RegistryLayer/f_244343_ net/minecraft/server/RegistryLayer/VALUES +FD: net/minecraft/server/ReloadableServerResources/f_206845_ net/minecraft/server/ReloadableServerResources/LOGGER +FD: net/minecraft/server/ReloadableServerResources/f_206846_ net/minecraft/server/ReloadableServerResources/DATA_RELOAD_INITIAL_TASK +FD: net/minecraft/server/ReloadableServerResources/f_206847_ net/minecraft/server/ReloadableServerResources/commands +FD: net/minecraft/server/ReloadableServerResources/f_206848_ net/minecraft/server/ReloadableServerResources/recipes +FD: net/minecraft/server/ReloadableServerResources/f_206849_ net/minecraft/server/ReloadableServerResources/tagManager +FD: net/minecraft/server/ReloadableServerResources/f_206853_ net/minecraft/server/ReloadableServerResources/advancements +FD: net/minecraft/server/ReloadableServerResources/f_206854_ net/minecraft/server/ReloadableServerResources/functionLibrary +FD: net/minecraft/server/ReloadableServerResources/f_214300_ net/minecraft/server/ReloadableServerResources/commandBuildContext +FD: net/minecraft/server/ReloadableServerResources/f_278467_ net/minecraft/server/ReloadableServerResources/lootData +FD: net/minecraft/server/RunningOnDifferentThreadException/f_136017_ net/minecraft/server/RunningOnDifferentThreadException/RUNNING_ON_DIFFERENT_THREAD +FD: net/minecraft/server/ServerAdvancementManager/f_136021_ net/minecraft/server/ServerAdvancementManager/LOGGER +FD: net/minecraft/server/ServerAdvancementManager/f_136022_ net/minecraft/server/ServerAdvancementManager/GSON +FD: net/minecraft/server/ServerAdvancementManager/f_136023_ net/minecraft/server/ServerAdvancementManager/advancements +FD: net/minecraft/server/ServerAdvancementManager/f_278379_ net/minecraft/server/ServerAdvancementManager/lootData +FD: net/minecraft/server/ServerFunctionLibrary/f_136043_ net/minecraft/server/ServerFunctionLibrary/LOGGER +FD: net/minecraft/server/ServerFunctionLibrary/f_136046_ net/minecraft/server/ServerFunctionLibrary/functions +FD: net/minecraft/server/ServerFunctionLibrary/f_136047_ net/minecraft/server/ServerFunctionLibrary/tagsLoader +FD: net/minecraft/server/ServerFunctionLibrary/f_136048_ net/minecraft/server/ServerFunctionLibrary/tags +FD: net/minecraft/server/ServerFunctionLibrary/f_136049_ net/minecraft/server/ServerFunctionLibrary/functionCompilationLevel +FD: net/minecraft/server/ServerFunctionLibrary/f_136050_ net/minecraft/server/ServerFunctionLibrary/dispatcher +FD: net/minecraft/server/ServerFunctionLibrary/f_244053_ net/minecraft/server/ServerFunctionLibrary/LISTER +FD: net/minecraft/server/ServerFunctionManager/f_136099_ net/minecraft/server/ServerFunctionManager/TICK_FUNCTION_TAG +FD: net/minecraft/server/ServerFunctionManager/f_136100_ net/minecraft/server/ServerFunctionManager/LOAD_FUNCTION_TAG +FD: net/minecraft/server/ServerFunctionManager/f_136101_ net/minecraft/server/ServerFunctionManager/server +FD: net/minecraft/server/ServerFunctionManager/f_136105_ net/minecraft/server/ServerFunctionManager/ticking +FD: net/minecraft/server/ServerFunctionManager/f_136106_ net/minecraft/server/ServerFunctionManager/postReload +FD: net/minecraft/server/ServerFunctionManager/f_136107_ net/minecraft/server/ServerFunctionManager/library +FD: net/minecraft/server/ServerFunctionManager/f_179958_ net/minecraft/server/ServerFunctionManager/NO_RECURSIVE_TRACES +FD: net/minecraft/server/ServerFunctionManager/f_179959_ net/minecraft/server/ServerFunctionManager/context +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179964_ net/minecraft/server/ServerFunctionManager$ExecutionContext/this$0 +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179965_ net/minecraft/server/ServerFunctionManager$ExecutionContext/depth +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179966_ net/minecraft/server/ServerFunctionManager$ExecutionContext/tracer +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179967_ net/minecraft/server/ServerFunctionManager$ExecutionContext/commandQueue +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179968_ net/minecraft/server/ServerFunctionManager$ExecutionContext/nestedCalls +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_279555_ net/minecraft/server/ServerFunctionManager$ExecutionContext/abortCurrentDepth +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/f_279539_ net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/wrapped +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/f_279625_ net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/this$1 +FD: net/minecraft/server/ServerFunctionManager$QueuedCommand/f_136133_ net/minecraft/server/ServerFunctionManager$QueuedCommand/sender +FD: net/minecraft/server/ServerFunctionManager$QueuedCommand/f_136134_ net/minecraft/server/ServerFunctionManager$QueuedCommand/entry +FD: net/minecraft/server/ServerFunctionManager$QueuedCommand/f_179980_ net/minecraft/server/ServerFunctionManager$QueuedCommand/depth +FD: net/minecraft/server/ServerScoreboard/f_136193_ net/minecraft/server/ServerScoreboard/server +FD: net/minecraft/server/ServerScoreboard/f_136194_ net/minecraft/server/ServerScoreboard/trackedObjectives +FD: net/minecraft/server/ServerScoreboard/f_136195_ net/minecraft/server/ServerScoreboard/dirtyListeners +FD: net/minecraft/server/ServerScoreboard$Method/$VALUES net/minecraft/server/ServerScoreboard$Method/$VALUES +FD: net/minecraft/server/ServerScoreboard$Method/CHANGE net/minecraft/server/ServerScoreboard$Method/CHANGE +FD: net/minecraft/server/ServerScoreboard$Method/REMOVE net/minecraft/server/ServerScoreboard$Method/REMOVE +FD: net/minecraft/server/Services/f_214333_ net/minecraft/server/Services/sessionService +FD: net/minecraft/server/Services/f_214335_ net/minecraft/server/Services/profileRepository +FD: net/minecraft/server/Services/f_214336_ net/minecraft/server/Services/profileCache +FD: net/minecraft/server/Services/f_214337_ net/minecraft/server/Services/USERID_CACHE_FILE +FD: net/minecraft/server/Services/f_283795_ net/minecraft/server/Services/servicesKeySet +FD: net/minecraft/server/TickTask/f_136249_ net/minecraft/server/TickTask/tick +FD: net/minecraft/server/TickTask/f_136250_ net/minecraft/server/TickTask/runnable +FD: net/minecraft/server/WorldLoader/f_244206_ net/minecraft/server/WorldLoader/LOGGER +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_243759_ net/minecraft/server/WorldLoader$DataLoadContext/datapackDimensions +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_244104_ net/minecraft/server/WorldLoader$DataLoadContext/datapackWorldgen +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_244127_ net/minecraft/server/WorldLoader$DataLoadContext/dataConfiguration +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_244187_ net/minecraft/server/WorldLoader$DataLoadContext/resources +FD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244143_ net/minecraft/server/WorldLoader$DataLoadOutput/finalDimensions +FD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244458_ net/minecraft/server/WorldLoader$DataLoadOutput/cookie +FD: net/minecraft/server/WorldLoader$InitConfig/f_214378_ net/minecraft/server/WorldLoader$InitConfig/packConfig +FD: net/minecraft/server/WorldLoader$InitConfig/f_214379_ net/minecraft/server/WorldLoader$InitConfig/commandSelection +FD: net/minecraft/server/WorldLoader$InitConfig/f_214380_ net/minecraft/server/WorldLoader$InitConfig/functionCompilationLevel +FD: net/minecraft/server/WorldLoader$PackConfig/f_214392_ net/minecraft/server/WorldLoader$PackConfig/packRepository +FD: net/minecraft/server/WorldLoader$PackConfig/f_214394_ net/minecraft/server/WorldLoader$PackConfig/safeMode +FD: net/minecraft/server/WorldLoader$PackConfig/f_244133_ net/minecraft/server/WorldLoader$PackConfig/initMode +FD: net/minecraft/server/WorldLoader$PackConfig/f_244366_ net/minecraft/server/WorldLoader$PackConfig/initialDataConfig +FD: net/minecraft/server/WorldStem/f_206892_ net/minecraft/server/WorldStem/resourceManager +FD: net/minecraft/server/WorldStem/f_206893_ net/minecraft/server/WorldStem/dataPackResources +FD: net/minecraft/server/WorldStem/f_206895_ net/minecraft/server/WorldStem/worldData +FD: net/minecraft/server/WorldStem/f_244542_ net/minecraft/server/WorldStem/registries +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/f_263793_ net/minecraft/server/advancements/AdvancementVisibilityEvaluator/VISIBILITY_DEPTH +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/$VALUES net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/$VALUES +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/HIDE net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/HIDE +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/NO_CHANGE net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/NO_CHANGE +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/SHOW net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/SHOW +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136256_ net/minecraft/server/bossevents/CustomBossEvent/id +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136257_ net/minecraft/server/bossevents/CustomBossEvent/players +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136258_ net/minecraft/server/bossevents/CustomBossEvent/value +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136259_ net/minecraft/server/bossevents/CustomBossEvent/max +FD: net/minecraft/server/bossevents/CustomBossEvents/f_136290_ net/minecraft/server/bossevents/CustomBossEvents/events +FD: net/minecraft/server/chase/ChaseClient/f_195980_ net/minecraft/server/chase/ChaseClient/LOGGER +FD: net/minecraft/server/chase/ChaseClient/f_195981_ net/minecraft/server/chase/ChaseClient/RECONNECT_INTERVAL_SECONDS +FD: net/minecraft/server/chase/ChaseClient/f_195982_ net/minecraft/server/chase/ChaseClient/serverHost +FD: net/minecraft/server/chase/ChaseClient/f_195983_ net/minecraft/server/chase/ChaseClient/serverPort +FD: net/minecraft/server/chase/ChaseClient/f_195984_ net/minecraft/server/chase/ChaseClient/server +FD: net/minecraft/server/chase/ChaseClient/f_195985_ net/minecraft/server/chase/ChaseClient/wantsToRun +FD: net/minecraft/server/chase/ChaseClient/f_195986_ net/minecraft/server/chase/ChaseClient/socket +FD: net/minecraft/server/chase/ChaseClient/f_195987_ net/minecraft/server/chase/ChaseClient/thread +FD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196008_ net/minecraft/server/chase/ChaseClient$TeleportTarget/level +FD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196009_ net/minecraft/server/chase/ChaseClient$TeleportTarget/pos +FD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196010_ net/minecraft/server/chase/ChaseClient$TeleportTarget/rot +FD: net/minecraft/server/chase/ChaseServer/f_196022_ net/minecraft/server/chase/ChaseServer/LOGGER +FD: net/minecraft/server/chase/ChaseServer/f_196023_ net/minecraft/server/chase/ChaseServer/serverBindAddress +FD: net/minecraft/server/chase/ChaseServer/f_196024_ net/minecraft/server/chase/ChaseServer/serverPort +FD: net/minecraft/server/chase/ChaseServer/f_196025_ net/minecraft/server/chase/ChaseServer/playerList +FD: net/minecraft/server/chase/ChaseServer/f_196026_ net/minecraft/server/chase/ChaseServer/broadcastIntervalMs +FD: net/minecraft/server/chase/ChaseServer/f_196027_ net/minecraft/server/chase/ChaseServer/wantsToRun +FD: net/minecraft/server/chase/ChaseServer/f_196028_ net/minecraft/server/chase/ChaseServer/serverSocket +FD: net/minecraft/server/chase/ChaseServer/f_196029_ net/minecraft/server/chase/ChaseServer/clientSockets +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196044_ net/minecraft/server/chase/ChaseServer$PlayerPosition/dimensionName +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196045_ net/minecraft/server/chase/ChaseServer$PlayerPosition/x +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196046_ net/minecraft/server/chase/ChaseServer$PlayerPosition/y +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196047_ net/minecraft/server/chase/ChaseServer$PlayerPosition/z +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196048_ net/minecraft/server/chase/ChaseServer$PlayerPosition/yRot +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196049_ net/minecraft/server/chase/ChaseServer$PlayerPosition/xRot +FD: net/minecraft/server/commands/AdvancementCommands/f_136308_ net/minecraft/server/commands/AdvancementCommands/SUGGEST_ADVANCEMENTS +FD: net/minecraft/server/commands/AdvancementCommands$Action/$VALUES net/minecraft/server/commands/AdvancementCommands$Action/$VALUES +FD: net/minecraft/server/commands/AdvancementCommands$Action/GRANT net/minecraft/server/commands/AdvancementCommands$Action/GRANT +FD: net/minecraft/server/commands/AdvancementCommands$Action/REVOKE net/minecraft/server/commands/AdvancementCommands$Action/REVOKE +FD: net/minecraft/server/commands/AdvancementCommands$Action/f_136366_ net/minecraft/server/commands/AdvancementCommands$Action/key +FD: net/minecraft/server/commands/AdvancementCommands$Mode/$VALUES net/minecraft/server/commands/AdvancementCommands$Mode/$VALUES +FD: net/minecraft/server/commands/AdvancementCommands$Mode/EVERYTHING net/minecraft/server/commands/AdvancementCommands$Mode/EVERYTHING +FD: net/minecraft/server/commands/AdvancementCommands$Mode/FROM net/minecraft/server/commands/AdvancementCommands$Mode/FROM +FD: net/minecraft/server/commands/AdvancementCommands$Mode/ONLY net/minecraft/server/commands/AdvancementCommands$Mode/ONLY +FD: net/minecraft/server/commands/AdvancementCommands$Mode/THROUGH net/minecraft/server/commands/AdvancementCommands$Mode/THROUGH +FD: net/minecraft/server/commands/AdvancementCommands$Mode/UNTIL net/minecraft/server/commands/AdvancementCommands$Mode/UNTIL +FD: net/minecraft/server/commands/AdvancementCommands$Mode/f_136417_ net/minecraft/server/commands/AdvancementCommands$Mode/parents +FD: net/minecraft/server/commands/AdvancementCommands$Mode/f_136418_ net/minecraft/server/commands/AdvancementCommands$Mode/children +FD: net/minecraft/server/commands/AttributeCommand/f_136434_ net/minecraft/server/commands/AttributeCommand/ERROR_NOT_LIVING_ENTITY +FD: net/minecraft/server/commands/AttributeCommand/f_136435_ net/minecraft/server/commands/AttributeCommand/ERROR_NO_SUCH_ATTRIBUTE +FD: net/minecraft/server/commands/AttributeCommand/f_136436_ net/minecraft/server/commands/AttributeCommand/ERROR_NO_SUCH_MODIFIER +FD: net/minecraft/server/commands/AttributeCommand/f_136437_ net/minecraft/server/commands/AttributeCommand/ERROR_MODIFIER_ALREADY_PRESENT +FD: net/minecraft/server/commands/BanIpCommands/f_136524_ net/minecraft/server/commands/BanIpCommands/ERROR_INVALID_IP +FD: net/minecraft/server/commands/BanIpCommands/f_136525_ net/minecraft/server/commands/BanIpCommands/ERROR_ALREADY_BANNED +FD: net/minecraft/server/commands/BanPlayerCommands/f_136556_ net/minecraft/server/commands/BanPlayerCommands/ERROR_ALREADY_BANNED +FD: net/minecraft/server/commands/BossBarCommands/f_136570_ net/minecraft/server/commands/BossBarCommands/SUGGEST_BOSS_BAR +FD: net/minecraft/server/commands/BossBarCommands/f_136571_ net/minecraft/server/commands/BossBarCommands/ERROR_ALREADY_EXISTS +FD: net/minecraft/server/commands/BossBarCommands/f_136572_ net/minecraft/server/commands/BossBarCommands/ERROR_DOESNT_EXIST +FD: net/minecraft/server/commands/BossBarCommands/f_136573_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_PLAYER_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136574_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_NAME_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136575_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_COLOR_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136576_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_STYLE_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136577_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_VALUE_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136578_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_MAX_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136579_ net/minecraft/server/commands/BossBarCommands/ERROR_ALREADY_HIDDEN +FD: net/minecraft/server/commands/BossBarCommands/f_136580_ net/minecraft/server/commands/BossBarCommands/ERROR_ALREADY_VISIBLE +FD: net/minecraft/server/commands/ChaseCommand/f_196068_ net/minecraft/server/commands/ChaseCommand/DIMENSION_NAMES +FD: net/minecraft/server/commands/ChaseCommand/f_196069_ net/minecraft/server/commands/ChaseCommand/DEFAULT_CONNECT_HOST +FD: net/minecraft/server/commands/ChaseCommand/f_196070_ net/minecraft/server/commands/ChaseCommand/DEFAULT_BIND_ADDRESS +FD: net/minecraft/server/commands/ChaseCommand/f_196071_ net/minecraft/server/commands/ChaseCommand/DEFAULT_PORT +FD: net/minecraft/server/commands/ChaseCommand/f_196072_ net/minecraft/server/commands/ChaseCommand/BROADCAST_INTERVAL_MS +FD: net/minecraft/server/commands/ChaseCommand/f_196073_ net/minecraft/server/commands/ChaseCommand/chaseServer +FD: net/minecraft/server/commands/ChaseCommand/f_196074_ net/minecraft/server/commands/ChaseCommand/chaseClient +FD: net/minecraft/server/commands/ClearInventoryCommands/f_136694_ net/minecraft/server/commands/ClearInventoryCommands/ERROR_SINGLE +FD: net/minecraft/server/commands/ClearInventoryCommands/f_136695_ net/minecraft/server/commands/ClearInventoryCommands/ERROR_MULTIPLE +FD: net/minecraft/server/commands/CloneCommands/f_136722_ net/minecraft/server/commands/CloneCommands/FILTER_AIR +FD: net/minecraft/server/commands/CloneCommands/f_136723_ net/minecraft/server/commands/CloneCommands/ERROR_OVERLAP +FD: net/minecraft/server/commands/CloneCommands/f_136724_ net/minecraft/server/commands/CloneCommands/ERROR_AREA_TOO_LARGE +FD: net/minecraft/server/commands/CloneCommands/f_136725_ net/minecraft/server/commands/CloneCommands/ERROR_FAILED +FD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/f_136779_ net/minecraft/server/commands/CloneCommands$CloneBlockInfo/pos +FD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/f_136780_ net/minecraft/server/commands/CloneCommands$CloneBlockInfo/state +FD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/f_136781_ net/minecraft/server/commands/CloneCommands$CloneBlockInfo/tag +FD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263735_ net/minecraft/server/commands/CloneCommands$DimensionAndPosition/dimension +FD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263824_ net/minecraft/server/commands/CloneCommands$DimensionAndPosition/position +FD: net/minecraft/server/commands/CloneCommands$Mode/$VALUES net/minecraft/server/commands/CloneCommands$Mode/$VALUES +FD: net/minecraft/server/commands/CloneCommands$Mode/FORCE net/minecraft/server/commands/CloneCommands$Mode/FORCE +FD: net/minecraft/server/commands/CloneCommands$Mode/MOVE net/minecraft/server/commands/CloneCommands$Mode/MOVE +FD: net/minecraft/server/commands/CloneCommands$Mode/NORMAL net/minecraft/server/commands/CloneCommands$Mode/NORMAL +FD: net/minecraft/server/commands/CloneCommands$Mode/f_136789_ net/minecraft/server/commands/CloneCommands$Mode/canOverlap +FD: net/minecraft/server/commands/DamageCommand/f_268498_ net/minecraft/server/commands/DamageCommand/ERROR_INVULNERABLE +FD: net/minecraft/server/commands/DataPackCommand/f_136800_ net/minecraft/server/commands/DataPackCommand/ERROR_UNKNOWN_PACK +FD: net/minecraft/server/commands/DataPackCommand/f_136801_ net/minecraft/server/commands/DataPackCommand/ERROR_PACK_ALREADY_ENABLED +FD: net/minecraft/server/commands/DataPackCommand/f_136802_ net/minecraft/server/commands/DataPackCommand/ERROR_PACK_ALREADY_DISABLED +FD: net/minecraft/server/commands/DataPackCommand/f_136803_ net/minecraft/server/commands/DataPackCommand/SELECTED_PACKS +FD: net/minecraft/server/commands/DataPackCommand/f_136804_ net/minecraft/server/commands/DataPackCommand/UNSELECTED_PACKS +FD: net/minecraft/server/commands/DataPackCommand/f_244087_ net/minecraft/server/commands/DataPackCommand/ERROR_PACK_FEATURES_NOT_ENABLED +FD: net/minecraft/server/commands/DeOpCommands/f_136886_ net/minecraft/server/commands/DeOpCommands/ERROR_NOT_OP +FD: net/minecraft/server/commands/DebugCommand/f_136900_ net/minecraft/server/commands/DebugCommand/LOGGER +FD: net/minecraft/server/commands/DebugCommand/f_136901_ net/minecraft/server/commands/DebugCommand/ERROR_NOT_RUNNING +FD: net/minecraft/server/commands/DebugCommand/f_136902_ net/minecraft/server/commands/DebugCommand/ERROR_ALREADY_RUNNING +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180074_ net/minecraft/server/commands/DebugCommand$Tracer/INDENT_OFFSET +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180075_ net/minecraft/server/commands/DebugCommand$Tracer/output +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180076_ net/minecraft/server/commands/DebugCommand$Tracer/lastIndent +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180077_ net/minecraft/server/commands/DebugCommand$Tracer/waitingForResult +FD: net/minecraft/server/commands/DebugPathCommand/f_180118_ net/minecraft/server/commands/DebugPathCommand/ERROR_NOT_MOB +FD: net/minecraft/server/commands/DebugPathCommand/f_180119_ net/minecraft/server/commands/DebugPathCommand/ERROR_NO_PATH +FD: net/minecraft/server/commands/DebugPathCommand/f_180120_ net/minecraft/server/commands/DebugPathCommand/ERROR_NOT_COMPLETE +FD: net/minecraft/server/commands/DifficultyCommand/f_136933_ net/minecraft/server/commands/DifficultyCommand/ERROR_ALREADY_DIFFICULT +FD: net/minecraft/server/commands/EffectCommands/f_136949_ net/minecraft/server/commands/EffectCommands/ERROR_GIVE_FAILED +FD: net/minecraft/server/commands/EffectCommands/f_136950_ net/minecraft/server/commands/EffectCommands/ERROR_CLEAR_EVERYTHING_FAILED +FD: net/minecraft/server/commands/EffectCommands/f_136951_ net/minecraft/server/commands/EffectCommands/ERROR_CLEAR_SPECIFIC_FAILED +FD: net/minecraft/server/commands/EnchantCommand/f_137002_ net/minecraft/server/commands/EnchantCommand/ERROR_NOT_LIVING_ENTITY +FD: net/minecraft/server/commands/EnchantCommand/f_137003_ net/minecraft/server/commands/EnchantCommand/ERROR_NO_ITEM +FD: net/minecraft/server/commands/EnchantCommand/f_137004_ net/minecraft/server/commands/EnchantCommand/ERROR_INCOMPATIBLE +FD: net/minecraft/server/commands/EnchantCommand/f_137005_ net/minecraft/server/commands/EnchantCommand/ERROR_LEVEL_TOO_HIGH +FD: net/minecraft/server/commands/EnchantCommand/f_137006_ net/minecraft/server/commands/EnchantCommand/ERROR_NOTHING_HAPPENED +FD: net/minecraft/server/commands/ExecuteCommand/f_137030_ net/minecraft/server/commands/ExecuteCommand/ERROR_AREA_TOO_LARGE +FD: net/minecraft/server/commands/ExecuteCommand/f_137031_ net/minecraft/server/commands/ExecuteCommand/ERROR_CONDITIONAL_FAILED +FD: net/minecraft/server/commands/ExecuteCommand/f_137032_ net/minecraft/server/commands/ExecuteCommand/ERROR_CONDITIONAL_FAILED_COUNT +FD: net/minecraft/server/commands/ExecuteCommand/f_137033_ net/minecraft/server/commands/ExecuteCommand/CALLBACK_CHAINER +FD: net/minecraft/server/commands/ExecuteCommand/f_137034_ net/minecraft/server/commands/ExecuteCommand/SUGGEST_PREDICATE +FD: net/minecraft/server/commands/ExecuteCommand/f_180148_ net/minecraft/server/commands/ExecuteCommand/MAX_TEST_AREA +FD: net/minecraft/server/commands/ExperienceCommand/f_137304_ net/minecraft/server/commands/ExperienceCommand/ERROR_SET_POINTS_INVALID +FD: net/minecraft/server/commands/ExperienceCommand$Type/$VALUES net/minecraft/server/commands/ExperienceCommand$Type/$VALUES +FD: net/minecraft/server/commands/ExperienceCommand$Type/LEVELS net/minecraft/server/commands/ExperienceCommand$Type/LEVELS +FD: net/minecraft/server/commands/ExperienceCommand$Type/POINTS net/minecraft/server/commands/ExperienceCommand$Type/POINTS +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137344_ net/minecraft/server/commands/ExperienceCommand$Type/add +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137345_ net/minecraft/server/commands/ExperienceCommand$Type/set +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137346_ net/minecraft/server/commands/ExperienceCommand$Type/name +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137347_ net/minecraft/server/commands/ExperienceCommand$Type/query +FD: net/minecraft/server/commands/FillBiomeCommand/f_260575_ net/minecraft/server/commands/FillBiomeCommand/ERROR_VOLUME_TOO_LARGE +FD: net/minecraft/server/commands/FillBiomeCommand/f_260663_ net/minecraft/server/commands/FillBiomeCommand/ERROR_NOT_LOADED +FD: net/minecraft/server/commands/FillCommand/f_137372_ net/minecraft/server/commands/FillCommand/ERROR_AREA_TOO_LARGE +FD: net/minecraft/server/commands/FillCommand/f_137373_ net/minecraft/server/commands/FillCommand/HOLLOW_CORE +FD: net/minecraft/server/commands/FillCommand/f_137374_ net/minecraft/server/commands/FillCommand/ERROR_FAILED +FD: net/minecraft/server/commands/FillCommand$Mode/$VALUES net/minecraft/server/commands/FillCommand$Mode/$VALUES +FD: net/minecraft/server/commands/FillCommand$Mode/DESTROY net/minecraft/server/commands/FillCommand$Mode/DESTROY +FD: net/minecraft/server/commands/FillCommand$Mode/HOLLOW net/minecraft/server/commands/FillCommand$Mode/HOLLOW +FD: net/minecraft/server/commands/FillCommand$Mode/OUTLINE net/minecraft/server/commands/FillCommand$Mode/OUTLINE +FD: net/minecraft/server/commands/FillCommand$Mode/REPLACE net/minecraft/server/commands/FillCommand$Mode/REPLACE +FD: net/minecraft/server/commands/FillCommand$Mode/f_137410_ net/minecraft/server/commands/FillCommand$Mode/filter +FD: net/minecraft/server/commands/ForceLoadCommand/f_137668_ net/minecraft/server/commands/ForceLoadCommand/ERROR_TOO_MANY_CHUNKS +FD: net/minecraft/server/commands/ForceLoadCommand/f_137669_ net/minecraft/server/commands/ForceLoadCommand/ERROR_NOT_TICKING +FD: net/minecraft/server/commands/ForceLoadCommand/f_137670_ net/minecraft/server/commands/ForceLoadCommand/ERROR_ALL_ADDED +FD: net/minecraft/server/commands/ForceLoadCommand/f_137671_ net/minecraft/server/commands/ForceLoadCommand/ERROR_NONE_REMOVED +FD: net/minecraft/server/commands/ForceLoadCommand/f_180227_ net/minecraft/server/commands/ForceLoadCommand/MAX_CHUNK_LIMIT +FD: net/minecraft/server/commands/FunctionCommand/f_137712_ net/minecraft/server/commands/FunctionCommand/SUGGEST_FUNCTION +FD: net/minecraft/server/commands/GameModeCommand/f_180230_ net/minecraft/server/commands/GameModeCommand/PERMISSION_LEVEL +FD: net/minecraft/server/commands/GameRuleCommand$1/f_137760_ net/minecraft/server/commands/GameRuleCommand$1/val$base +FD: net/minecraft/server/commands/GiveCommand/f_180233_ net/minecraft/server/commands/GiveCommand/MAX_ALLOWED_ITEMSTACKS +FD: net/minecraft/server/commands/HelpCommand/f_137785_ net/minecraft/server/commands/HelpCommand/ERROR_FAILED +FD: net/minecraft/server/commands/ItemCommands/f_180236_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_NOT_A_CONTAINER +FD: net/minecraft/server/commands/ItemCommands/f_180237_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_INAPPLICABLE_SLOT +FD: net/minecraft/server/commands/ItemCommands/f_180238_ net/minecraft/server/commands/ItemCommands/ERROR_SOURCE_NOT_A_CONTAINER +FD: net/minecraft/server/commands/ItemCommands/f_180239_ net/minecraft/server/commands/ItemCommands/ERROR_SOURCE_INAPPLICABLE_SLOT +FD: net/minecraft/server/commands/ItemCommands/f_180240_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_NO_CHANGES +FD: net/minecraft/server/commands/ItemCommands/f_180241_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_NO_CHANGES_KNOWN_ITEM +FD: net/minecraft/server/commands/ItemCommands/f_180242_ net/minecraft/server/commands/ItemCommands/SUGGEST_MODIFIER +FD: net/minecraft/server/commands/JfrCommand/f_183641_ net/minecraft/server/commands/JfrCommand/START_FAILED +FD: net/minecraft/server/commands/JfrCommand/f_183642_ net/minecraft/server/commands/JfrCommand/DUMP_FAILED +FD: net/minecraft/server/commands/LocateCommand/f_214451_ net/minecraft/server/commands/LocateCommand/ERROR_STRUCTURE_NOT_FOUND +FD: net/minecraft/server/commands/LocateCommand/f_214452_ net/minecraft/server/commands/LocateCommand/ERROR_STRUCTURE_INVALID +FD: net/minecraft/server/commands/LocateCommand/f_214453_ net/minecraft/server/commands/LocateCommand/ERROR_BIOME_NOT_FOUND +FD: net/minecraft/server/commands/LocateCommand/f_214455_ net/minecraft/server/commands/LocateCommand/ERROR_POI_NOT_FOUND +FD: net/minecraft/server/commands/LocateCommand/f_214457_ net/minecraft/server/commands/LocateCommand/MAX_STRUCTURE_SEARCH_RADIUS +FD: net/minecraft/server/commands/LocateCommand/f_214458_ net/minecraft/server/commands/LocateCommand/MAX_BIOME_SEARCH_RADIUS +FD: net/minecraft/server/commands/LocateCommand/f_214459_ net/minecraft/server/commands/LocateCommand/BIOME_SAMPLE_RESOLUTION_HORIZONTAL +FD: net/minecraft/server/commands/LocateCommand/f_214460_ net/minecraft/server/commands/LocateCommand/BIOME_SAMPLE_RESOLUTION_VERTICAL +FD: net/minecraft/server/commands/LocateCommand/f_214461_ net/minecraft/server/commands/LocateCommand/POI_SEARCH_RADIUS +FD: net/minecraft/server/commands/LocateCommand/f_262750_ net/minecraft/server/commands/LocateCommand/LOGGER +FD: net/minecraft/server/commands/LootCommand/f_137877_ net/minecraft/server/commands/LootCommand/SUGGEST_LOOT_TABLE +FD: net/minecraft/server/commands/LootCommand/f_137878_ net/minecraft/server/commands/LootCommand/ERROR_NO_HELD_ITEMS +FD: net/minecraft/server/commands/LootCommand/f_137879_ net/minecraft/server/commands/LootCommand/ERROR_NO_LOOT_TABLE +FD: net/minecraft/server/commands/OpCommand/f_138072_ net/minecraft/server/commands/OpCommand/ERROR_ALREADY_OP +FD: net/minecraft/server/commands/PardonCommand/f_138091_ net/minecraft/server/commands/PardonCommand/ERROR_NOT_BANNED +FD: net/minecraft/server/commands/PardonIpCommand/f_138105_ net/minecraft/server/commands/PardonIpCommand/ERROR_INVALID +FD: net/minecraft/server/commands/PardonIpCommand/f_138106_ net/minecraft/server/commands/PardonIpCommand/ERROR_NOT_BANNED +FD: net/minecraft/server/commands/ParticleCommand/f_138120_ net/minecraft/server/commands/ParticleCommand/ERROR_FAILED +FD: net/minecraft/server/commands/PerfCommand/f_180432_ net/minecraft/server/commands/PerfCommand/LOGGER +FD: net/minecraft/server/commands/PerfCommand/f_180433_ net/minecraft/server/commands/PerfCommand/ERROR_NOT_RUNNING +FD: net/minecraft/server/commands/PerfCommand/f_180434_ net/minecraft/server/commands/PerfCommand/ERROR_ALREADY_RUNNING +FD: net/minecraft/server/commands/PlaceCommand/f_214530_ net/minecraft/server/commands/PlaceCommand/ERROR_FEATURE_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214531_ net/minecraft/server/commands/PlaceCommand/ERROR_JIGSAW_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214532_ net/minecraft/server/commands/PlaceCommand/ERROR_STRUCTURE_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214533_ net/minecraft/server/commands/PlaceCommand/ERROR_TEMPLATE_INVALID +FD: net/minecraft/server/commands/PlaceCommand/f_214534_ net/minecraft/server/commands/PlaceCommand/ERROR_TEMPLATE_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214535_ net/minecraft/server/commands/PlaceCommand/SUGGEST_TEMPLATES +FD: net/minecraft/server/commands/PlaySoundCommand/f_138149_ net/minecraft/server/commands/PlaySoundCommand/ERROR_TOO_FAR +FD: net/minecraft/server/commands/PublishCommand/f_138181_ net/minecraft/server/commands/PublishCommand/ERROR_FAILED +FD: net/minecraft/server/commands/PublishCommand/f_138182_ net/minecraft/server/commands/PublishCommand/ERROR_ALREADY_PUBLISHED +FD: net/minecraft/server/commands/RecipeCommand/f_138197_ net/minecraft/server/commands/RecipeCommand/ERROR_GIVE_FAILED +FD: net/minecraft/server/commands/RecipeCommand/f_138198_ net/minecraft/server/commands/RecipeCommand/ERROR_TAKE_FAILED +FD: net/minecraft/server/commands/ReloadCommand/f_138220_ net/minecraft/server/commands/ReloadCommand/LOGGER +FD: net/minecraft/server/commands/ResetChunksCommand/f_183662_ net/minecraft/server/commands/ResetChunksCommand/LOGGER +FD: net/minecraft/server/commands/RideCommand/f_263682_ net/minecraft/server/commands/RideCommand/ERROR_ALREADY_RIDING +FD: net/minecraft/server/commands/RideCommand/f_263721_ net/minecraft/server/commands/RideCommand/ERROR_MOUNT_FAILED +FD: net/minecraft/server/commands/RideCommand/f_263778_ net/minecraft/server/commands/RideCommand/ERROR_MOUNTING_PLAYER +FD: net/minecraft/server/commands/RideCommand/f_263780_ net/minecraft/server/commands/RideCommand/ERROR_NOT_RIDING +FD: net/minecraft/server/commands/RideCommand/f_263832_ net/minecraft/server/commands/RideCommand/ERROR_MOUNTING_LOOP +FD: net/minecraft/server/commands/RideCommand/f_268657_ net/minecraft/server/commands/RideCommand/ERROR_WRONG_DIMENSION +FD: net/minecraft/server/commands/SaveAllCommand/f_138269_ net/minecraft/server/commands/SaveAllCommand/ERROR_FAILED +FD: net/minecraft/server/commands/SaveOffCommand/f_138282_ net/minecraft/server/commands/SaveOffCommand/ERROR_ALREADY_OFF +FD: net/minecraft/server/commands/SaveOnCommand/f_138290_ net/minecraft/server/commands/SaveOnCommand/ERROR_ALREADY_ON +FD: net/minecraft/server/commands/ScheduleCommand/f_138415_ net/minecraft/server/commands/ScheduleCommand/ERROR_SAME_TICK +FD: net/minecraft/server/commands/ScheduleCommand/f_138416_ net/minecraft/server/commands/ScheduleCommand/ERROR_CANT_REMOVE +FD: net/minecraft/server/commands/ScheduleCommand/f_138417_ net/minecraft/server/commands/ScheduleCommand/SUGGEST_SCHEDULE +FD: net/minecraft/server/commands/ScoreboardCommand/f_138460_ net/minecraft/server/commands/ScoreboardCommand/ERROR_OBJECTIVE_ALREADY_EXISTS +FD: net/minecraft/server/commands/ScoreboardCommand/f_138461_ net/minecraft/server/commands/ScoreboardCommand/ERROR_DISPLAY_SLOT_ALREADY_EMPTY +FD: net/minecraft/server/commands/ScoreboardCommand/f_138462_ net/minecraft/server/commands/ScoreboardCommand/ERROR_DISPLAY_SLOT_ALREADY_SET +FD: net/minecraft/server/commands/ScoreboardCommand/f_138463_ net/minecraft/server/commands/ScoreboardCommand/ERROR_TRIGGER_ALREADY_ENABLED +FD: net/minecraft/server/commands/ScoreboardCommand/f_138464_ net/minecraft/server/commands/ScoreboardCommand/ERROR_NOT_TRIGGER +FD: net/minecraft/server/commands/ScoreboardCommand/f_138465_ net/minecraft/server/commands/ScoreboardCommand/ERROR_NO_VALUE +FD: net/minecraft/server/commands/SetBlockCommand/f_138597_ net/minecraft/server/commands/SetBlockCommand/ERROR_FAILED +FD: net/minecraft/server/commands/SetBlockCommand$Mode/$VALUES net/minecraft/server/commands/SetBlockCommand$Mode/$VALUES +FD: net/minecraft/server/commands/SetBlockCommand$Mode/DESTROY net/minecraft/server/commands/SetBlockCommand$Mode/DESTROY +FD: net/minecraft/server/commands/SetBlockCommand$Mode/REPLACE net/minecraft/server/commands/SetBlockCommand$Mode/REPLACE +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_265845_ net/minecraft/server/commands/SpawnArmorTrimsCommand/MATERIAL_AND_SLOT_TO_ITEM +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266001_ net/minecraft/server/commands/SpawnArmorTrimsCommand/TRIM_PATTERN_ORDER +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266057_ net/minecraft/server/commands/SpawnArmorTrimsCommand/VANILLA_TRIM_MATERIALS +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266100_ net/minecraft/server/commands/SpawnArmorTrimsCommand/TRIM_MATERIAL_ORDER +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266107_ net/minecraft/server/commands/SpawnArmorTrimsCommand/VANILLA_TRIM_PATTERNS +FD: net/minecraft/server/commands/SpectateCommand/f_138674_ net/minecraft/server/commands/SpectateCommand/ERROR_SELF +FD: net/minecraft/server/commands/SpectateCommand/f_138675_ net/minecraft/server/commands/SpectateCommand/ERROR_NOT_SPECTATOR +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_138693_ net/minecraft/server/commands/SpreadPlayersCommand/ERROR_FAILED_TO_SPREAD_TEAMS +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_138694_ net/minecraft/server/commands/SpreadPlayersCommand/ERROR_FAILED_TO_SPREAD_ENTITIES +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_180523_ net/minecraft/server/commands/SpreadPlayersCommand/MAX_ITERATION_COUNT +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_201848_ net/minecraft/server/commands/SpreadPlayersCommand/ERROR_INVALID_MAX_HEIGHT +FD: net/minecraft/server/commands/SpreadPlayersCommand$Position/f_138749_ net/minecraft/server/commands/SpreadPlayersCommand$Position/x +FD: net/minecraft/server/commands/SpreadPlayersCommand$Position/f_138750_ net/minecraft/server/commands/SpreadPlayersCommand$Position/z +FD: net/minecraft/server/commands/SummonCommand/f_138810_ net/minecraft/server/commands/SummonCommand/ERROR_FAILED +FD: net/minecraft/server/commands/SummonCommand/f_138811_ net/minecraft/server/commands/SummonCommand/ERROR_DUPLICATE_UUID +FD: net/minecraft/server/commands/SummonCommand/f_138812_ net/minecraft/server/commands/SummonCommand/INVALID_POSITION +FD: net/minecraft/server/commands/TagCommand/f_138833_ net/minecraft/server/commands/TagCommand/ERROR_ADD_FAILED +FD: net/minecraft/server/commands/TagCommand/f_138834_ net/minecraft/server/commands/TagCommand/ERROR_REMOVE_FAILED +FD: net/minecraft/server/commands/TeamCommand/f_138862_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_EXISTS +FD: net/minecraft/server/commands/TeamCommand/f_138864_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_EMPTY +FD: net/minecraft/server/commands/TeamCommand/f_138865_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_NAME +FD: net/minecraft/server/commands/TeamCommand/f_138866_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_COLOR +FD: net/minecraft/server/commands/TeamCommand/f_138867_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYFIRE_ENABLED +FD: net/minecraft/server/commands/TeamCommand/f_138868_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYFIRE_DISABLED +FD: net/minecraft/server/commands/TeamCommand/f_138869_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYINVISIBLES_ENABLED +FD: net/minecraft/server/commands/TeamCommand/f_138870_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYINVISIBLES_DISABLED +FD: net/minecraft/server/commands/TeamCommand/f_138871_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_NAMETAG_VISIBLITY_UNCHANGED +FD: net/minecraft/server/commands/TeamCommand/f_138872_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_DEATH_MESSAGE_VISIBLITY_UNCHANGED +FD: net/minecraft/server/commands/TeamCommand/f_138873_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_COLLISION_UNCHANGED +FD: net/minecraft/server/commands/TeamMsgCommand/f_138996_ net/minecraft/server/commands/TeamMsgCommand/SUGGEST_STYLE +FD: net/minecraft/server/commands/TeamMsgCommand/f_138997_ net/minecraft/server/commands/TeamMsgCommand/ERROR_NOT_ON_TEAM +FD: net/minecraft/server/commands/TeleportCommand/f_139006_ net/minecraft/server/commands/TeleportCommand/INVALID_POSITION +FD: net/minecraft/server/commands/TeleportCommand$LookAt/f_139052_ net/minecraft/server/commands/TeleportCommand$LookAt/position +FD: net/minecraft/server/commands/TeleportCommand$LookAt/f_139053_ net/minecraft/server/commands/TeleportCommand$LookAt/entity +FD: net/minecraft/server/commands/TeleportCommand$LookAt/f_139054_ net/minecraft/server/commands/TeleportCommand$LookAt/anchor +FD: net/minecraft/server/commands/TriggerCommand/f_139135_ net/minecraft/server/commands/TriggerCommand/ERROR_NOT_PRIMED +FD: net/minecraft/server/commands/TriggerCommand/f_139136_ net/minecraft/server/commands/TriggerCommand/ERROR_INVALID_OBJECTIVE +FD: net/minecraft/server/commands/WeatherCommand/f_142787_ net/minecraft/server/commands/WeatherCommand/DEFAULT_TIME +FD: net/minecraft/server/commands/WhitelistCommand/f_139191_ net/minecraft/server/commands/WhitelistCommand/ERROR_ALREADY_ENABLED +FD: net/minecraft/server/commands/WhitelistCommand/f_139192_ net/minecraft/server/commands/WhitelistCommand/ERROR_ALREADY_DISABLED +FD: net/minecraft/server/commands/WhitelistCommand/f_139193_ net/minecraft/server/commands/WhitelistCommand/ERROR_ALREADY_WHITELISTED +FD: net/minecraft/server/commands/WhitelistCommand/f_139194_ net/minecraft/server/commands/WhitelistCommand/ERROR_NOT_WHITELISTED +FD: net/minecraft/server/commands/WorldBorderCommand/f_139237_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_CENTER +FD: net/minecraft/server/commands/WorldBorderCommand/f_139238_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_SIZE +FD: net/minecraft/server/commands/WorldBorderCommand/f_139239_ net/minecraft/server/commands/WorldBorderCommand/ERROR_TOO_SMALL +FD: net/minecraft/server/commands/WorldBorderCommand/f_139240_ net/minecraft/server/commands/WorldBorderCommand/ERROR_TOO_BIG +FD: net/minecraft/server/commands/WorldBorderCommand/f_139241_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_WARNING_TIME +FD: net/minecraft/server/commands/WorldBorderCommand/f_139242_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_WARNING_DISTANCE +FD: net/minecraft/server/commands/WorldBorderCommand/f_139243_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_DAMAGE_BUFFER +FD: net/minecraft/server/commands/WorldBorderCommand/f_139244_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_DAMAGE_AMOUNT +FD: net/minecraft/server/commands/WorldBorderCommand/f_196554_ net/minecraft/server/commands/WorldBorderCommand/ERROR_TOO_FAR_OUT +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139291_ net/minecraft/server/commands/data/BlockDataAccessor/PROVIDER +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139292_ net/minecraft/server/commands/data/BlockDataAccessor/ERROR_NOT_A_BLOCK_ENTITY +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139293_ net/minecraft/server/commands/data/BlockDataAccessor/entity +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139294_ net/minecraft/server/commands/data/BlockDataAccessor/pos +FD: net/minecraft/server/commands/data/BlockDataAccessor$1/f_139312_ net/minecraft/server/commands/data/BlockDataAccessor$1/val$argPrefix +FD: net/minecraft/server/commands/data/DataCommands/f_139349_ net/minecraft/server/commands/data/DataCommands/ALL_PROVIDERS +FD: net/minecraft/server/commands/data/DataCommands/f_139350_ net/minecraft/server/commands/data/DataCommands/TARGET_PROVIDERS +FD: net/minecraft/server/commands/data/DataCommands/f_139351_ net/minecraft/server/commands/data/DataCommands/SOURCE_PROVIDERS +FD: net/minecraft/server/commands/data/DataCommands/f_139352_ net/minecraft/server/commands/data/DataCommands/ERROR_MERGE_UNCHANGED +FD: net/minecraft/server/commands/data/DataCommands/f_139353_ net/minecraft/server/commands/data/DataCommands/ERROR_GET_NOT_NUMBER +FD: net/minecraft/server/commands/data/DataCommands/f_139354_ net/minecraft/server/commands/data/DataCommands/ERROR_GET_NON_EXISTENT +FD: net/minecraft/server/commands/data/DataCommands/f_139355_ net/minecraft/server/commands/data/DataCommands/ERROR_MULTIPLE_TAGS +FD: net/minecraft/server/commands/data/DataCommands/f_139357_ net/minecraft/server/commands/data/DataCommands/ERROR_EXPECTED_OBJECT +FD: net/minecraft/server/commands/data/DataCommands/f_263767_ net/minecraft/server/commands/data/DataCommands/ERROR_EXPECTED_VALUE +FD: net/minecraft/server/commands/data/DataCommands/f_287793_ net/minecraft/server/commands/data/DataCommands/ERROR_INVALID_SUBSTRING +FD: net/minecraft/server/commands/data/EntityDataAccessor/f_139505_ net/minecraft/server/commands/data/EntityDataAccessor/PROVIDER +FD: net/minecraft/server/commands/data/EntityDataAccessor/f_139506_ net/minecraft/server/commands/data/EntityDataAccessor/ERROR_NO_PLAYERS +FD: net/minecraft/server/commands/data/EntityDataAccessor/f_139507_ net/minecraft/server/commands/data/EntityDataAccessor/entity +FD: net/minecraft/server/commands/data/EntityDataAccessor$1/f_139523_ net/minecraft/server/commands/data/EntityDataAccessor$1/val$arg +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139531_ net/minecraft/server/commands/data/StorageDataAccessor/PROVIDER +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139532_ net/minecraft/server/commands/data/StorageDataAccessor/SUGGEST_STORAGE +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139533_ net/minecraft/server/commands/data/StorageDataAccessor/storage +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139534_ net/minecraft/server/commands/data/StorageDataAccessor/id +FD: net/minecraft/server/commands/data/StorageDataAccessor$1/f_139563_ net/minecraft/server/commands/data/StorageDataAccessor$1/val$arg +FD: net/minecraft/server/dedicated/DedicatedPlayerList/f_139571_ net/minecraft/server/dedicated/DedicatedPlayerList/LOGGER +FD: net/minecraft/server/dedicated/DedicatedServer/f_139598_ net/minecraft/server/dedicated/DedicatedServer/LOGGER +FD: net/minecraft/server/dedicated/DedicatedServer/f_139600_ net/minecraft/server/dedicated/DedicatedServer/consoleInput +FD: net/minecraft/server/dedicated/DedicatedServer/f_139601_ net/minecraft/server/dedicated/DedicatedServer/queryThreadGs4 +FD: net/minecraft/server/dedicated/DedicatedServer/f_139602_ net/minecraft/server/dedicated/DedicatedServer/rconConsoleSource +FD: net/minecraft/server/dedicated/DedicatedServer/f_139603_ net/minecraft/server/dedicated/DedicatedServer/rconThread +FD: net/minecraft/server/dedicated/DedicatedServer/f_139604_ net/minecraft/server/dedicated/DedicatedServer/settings +FD: net/minecraft/server/dedicated/DedicatedServer/f_139605_ net/minecraft/server/dedicated/DedicatedServer/gui +FD: net/minecraft/server/dedicated/DedicatedServer/f_139606_ net/minecraft/server/dedicated/DedicatedServer/textFilterClient +FD: net/minecraft/server/dedicated/DedicatedServer/f_142864_ net/minecraft/server/dedicated/DedicatedServer/CONVERSION_RETRY_DELAY_MS +FD: net/minecraft/server/dedicated/DedicatedServer/f_142865_ net/minecraft/server/dedicated/DedicatedServer/CONVERSION_RETRIES +FD: net/minecraft/server/dedicated/DedicatedServer$1/f_139700_ net/minecraft/server/dedicated/DedicatedServer$1/this$0 +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139705_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnMonsters +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139707_ net/minecraft/server/dedicated/DedicatedServerProperties/useNativeTransport +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139708_ net/minecraft/server/dedicated/DedicatedServerProperties/enableCommandBlock +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139709_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnProtection +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139710_ net/minecraft/server/dedicated/DedicatedServerProperties/opPermissionLevel +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139711_ net/minecraft/server/dedicated/DedicatedServerProperties/functionPermissionLevel +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139712_ net/minecraft/server/dedicated/DedicatedServerProperties/maxTickTime +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139713_ net/minecraft/server/dedicated/DedicatedServerProperties/rateLimitPacketsPerSecond +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139714_ net/minecraft/server/dedicated/DedicatedServerProperties/viewDistance +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139715_ net/minecraft/server/dedicated/DedicatedServerProperties/maxPlayers +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139716_ net/minecraft/server/dedicated/DedicatedServerProperties/networkCompressionThreshold +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139717_ net/minecraft/server/dedicated/DedicatedServerProperties/broadcastRconToOps +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139718_ net/minecraft/server/dedicated/DedicatedServerProperties/broadcastConsoleToOps +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139719_ net/minecraft/server/dedicated/DedicatedServerProperties/maxWorldSize +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139720_ net/minecraft/server/dedicated/DedicatedServerProperties/syncChunkWrites +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139721_ net/minecraft/server/dedicated/DedicatedServerProperties/enableJmxMonitoring +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139722_ net/minecraft/server/dedicated/DedicatedServerProperties/enableStatus +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139723_ net/minecraft/server/dedicated/DedicatedServerProperties/entityBroadcastRangePercentage +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139724_ net/minecraft/server/dedicated/DedicatedServerProperties/textFilteringConfig +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139725_ net/minecraft/server/dedicated/DedicatedServerProperties/playerIdleTimeout +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139726_ net/minecraft/server/dedicated/DedicatedServerProperties/whiteList +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139728_ net/minecraft/server/dedicated/DedicatedServerProperties/onlineMode +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139729_ net/minecraft/server/dedicated/DedicatedServerProperties/preventProxyConnections +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139730_ net/minecraft/server/dedicated/DedicatedServerProperties/serverIp +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139731_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnAnimals +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139732_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnNpcs +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139733_ net/minecraft/server/dedicated/DedicatedServerProperties/pvp +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139734_ net/minecraft/server/dedicated/DedicatedServerProperties/allowFlight +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139736_ net/minecraft/server/dedicated/DedicatedServerProperties/motd +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139737_ net/minecraft/server/dedicated/DedicatedServerProperties/forceGameMode +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139738_ net/minecraft/server/dedicated/DedicatedServerProperties/enforceWhitelist +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139739_ net/minecraft/server/dedicated/DedicatedServerProperties/difficulty +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139740_ net/minecraft/server/dedicated/DedicatedServerProperties/gamemode +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139741_ net/minecraft/server/dedicated/DedicatedServerProperties/levelName +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139742_ net/minecraft/server/dedicated/DedicatedServerProperties/serverPort +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139744_ net/minecraft/server/dedicated/DedicatedServerProperties/announcePlayerAchievements +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139745_ net/minecraft/server/dedicated/DedicatedServerProperties/enableQuery +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139746_ net/minecraft/server/dedicated/DedicatedServerProperties/queryPort +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139747_ net/minecraft/server/dedicated/DedicatedServerProperties/enableRcon +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139748_ net/minecraft/server/dedicated/DedicatedServerProperties/rconPort +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139749_ net/minecraft/server/dedicated/DedicatedServerProperties/rconPassword +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139752_ net/minecraft/server/dedicated/DedicatedServerProperties/hardcore +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139753_ net/minecraft/server/dedicated/DedicatedServerProperties/allowNether +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_183715_ net/minecraft/server/dedicated/DedicatedServerProperties/simulationDistance +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_183716_ net/minecraft/server/dedicated/DedicatedServerProperties/hideOnlinePlayers +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214801_ net/minecraft/server/dedicated/DedicatedServerProperties/maxChainedNeighborUpdates +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214802_ net/minecraft/server/dedicated/DedicatedServerProperties/serverResourcePackInfo +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214804_ net/minecraft/server/dedicated/DedicatedServerProperties/enforceSecureProfile +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214805_ net/minecraft/server/dedicated/DedicatedServerProperties/LOGGER +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214806_ net/minecraft/server/dedicated/DedicatedServerProperties/SHA1 +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_243824_ net/minecraft/server/dedicated/DedicatedServerProperties/worldOptions +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_243988_ net/minecraft/server/dedicated/DedicatedServerProperties/COMMA_SPLITTER +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_243997_ net/minecraft/server/dedicated/DedicatedServerProperties/initialDataPackConfiguration +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_244504_ net/minecraft/server/dedicated/DedicatedServerProperties/worldDimensionData +FD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_243780_ net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/levelType +FD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_244358_ net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/LEGACY_PRESET_NAMES +FD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_244404_ net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/generatorSettings +FD: net/minecraft/server/dedicated/DedicatedServerSettings/f_139772_ net/minecraft/server/dedicated/DedicatedServerSettings/source +FD: net/minecraft/server/dedicated/DedicatedServerSettings/f_139773_ net/minecraft/server/dedicated/DedicatedServerSettings/properties +FD: net/minecraft/server/dedicated/ServerWatchdog/f_139781_ net/minecraft/server/dedicated/ServerWatchdog/LOGGER +FD: net/minecraft/server/dedicated/ServerWatchdog/f_139782_ net/minecraft/server/dedicated/ServerWatchdog/server +FD: net/minecraft/server/dedicated/ServerWatchdog/f_139783_ net/minecraft/server/dedicated/ServerWatchdog/maxTickTime +FD: net/minecraft/server/dedicated/ServerWatchdog/f_142880_ net/minecraft/server/dedicated/ServerWatchdog/MAX_SHUTDOWN_TIME +FD: net/minecraft/server/dedicated/ServerWatchdog/f_142881_ net/minecraft/server/dedicated/ServerWatchdog/SHUTDOWN_STATUS +FD: net/minecraft/server/dedicated/ServerWatchdog$1/f_139793_ net/minecraft/server/dedicated/ServerWatchdog$1/this$0 +FD: net/minecraft/server/dedicated/Settings/f_139797_ net/minecraft/server/dedicated/Settings/LOGGER +FD: net/minecraft/server/dedicated/Settings/f_139798_ net/minecraft/server/dedicated/Settings/properties +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139880_ net/minecraft/server/dedicated/Settings$MutableValue/this$0 +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139881_ net/minecraft/server/dedicated/Settings$MutableValue/key +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139882_ net/minecraft/server/dedicated/Settings$MutableValue/value +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139883_ net/minecraft/server/dedicated/Settings$MutableValue/serializer +FD: net/minecraft/server/gui/MinecraftServerGui/f_139899_ net/minecraft/server/gui/MinecraftServerGui/MONOSPACED +FD: net/minecraft/server/gui/MinecraftServerGui/f_139900_ net/minecraft/server/gui/MinecraftServerGui/LOGGER +FD: net/minecraft/server/gui/MinecraftServerGui/f_139901_ net/minecraft/server/gui/MinecraftServerGui/server +FD: net/minecraft/server/gui/MinecraftServerGui/f_139902_ net/minecraft/server/gui/MinecraftServerGui/logAppenderThread +FD: net/minecraft/server/gui/MinecraftServerGui/f_139903_ net/minecraft/server/gui/MinecraftServerGui/finalizers +FD: net/minecraft/server/gui/MinecraftServerGui/f_139904_ net/minecraft/server/gui/MinecraftServerGui/isClosing +FD: net/minecraft/server/gui/MinecraftServerGui/f_142884_ net/minecraft/server/gui/MinecraftServerGui/TITLE +FD: net/minecraft/server/gui/MinecraftServerGui/f_142885_ net/minecraft/server/gui/MinecraftServerGui/SHUTDOWN_TITLE +FD: net/minecraft/server/gui/MinecraftServerGui$1/f_139936_ net/minecraft/server/gui/MinecraftServerGui$1/val$gui +FD: net/minecraft/server/gui/MinecraftServerGui$1/f_139937_ net/minecraft/server/gui/MinecraftServerGui$1/val$frame +FD: net/minecraft/server/gui/MinecraftServerGui$1/f_139938_ net/minecraft/server/gui/MinecraftServerGui$1/val$server +FD: net/minecraft/server/gui/MinecraftServerGui$2/f_139945_ net/minecraft/server/gui/MinecraftServerGui$2/this$0 +FD: net/minecraft/server/gui/PlayerListComponent/f_139950_ net/minecraft/server/gui/PlayerListComponent/server +FD: net/minecraft/server/gui/PlayerListComponent/f_139951_ net/minecraft/server/gui/PlayerListComponent/tickCount +FD: net/minecraft/server/gui/StatsComponent/f_139955_ net/minecraft/server/gui/StatsComponent/DECIMAL_FORMAT +FD: net/minecraft/server/gui/StatsComponent/f_139956_ net/minecraft/server/gui/StatsComponent/values +FD: net/minecraft/server/gui/StatsComponent/f_139957_ net/minecraft/server/gui/StatsComponent/vp +FD: net/minecraft/server/gui/StatsComponent/f_139958_ net/minecraft/server/gui/StatsComponent/msgs +FD: net/minecraft/server/gui/StatsComponent/f_139959_ net/minecraft/server/gui/StatsComponent/server +FD: net/minecraft/server/gui/StatsComponent/f_139960_ net/minecraft/server/gui/StatsComponent/timer +FD: net/minecraft/server/level/BlockDestructionProgress/f_139974_ net/minecraft/server/level/BlockDestructionProgress/id +FD: net/minecraft/server/level/BlockDestructionProgress/f_139975_ net/minecraft/server/level/BlockDestructionProgress/pos +FD: net/minecraft/server/level/BlockDestructionProgress/f_139976_ net/minecraft/server/level/BlockDestructionProgress/progress +FD: net/minecraft/server/level/BlockDestructionProgress/f_139977_ net/minecraft/server/level/BlockDestructionProgress/updatedRenderTick +FD: net/minecraft/server/level/ChunkHolder/f_139995_ net/minecraft/server/level/ChunkHolder/UNLOADED_CHUNK +FD: net/minecraft/server/level/ChunkHolder/f_139996_ net/minecraft/server/level/ChunkHolder/UNLOADED_CHUNK_FUTURE +FD: net/minecraft/server/level/ChunkHolder/f_139997_ net/minecraft/server/level/ChunkHolder/UNLOADED_LEVEL_CHUNK +FD: net/minecraft/server/level/ChunkHolder/f_139998_ net/minecraft/server/level/ChunkHolder/UNLOADED_LEVEL_CHUNK_FUTURE +FD: net/minecraft/server/level/ChunkHolder/f_139999_ net/minecraft/server/level/ChunkHolder/CHUNK_STATUSES +FD: net/minecraft/server/level/ChunkHolder/f_140001_ net/minecraft/server/level/ChunkHolder/futures +FD: net/minecraft/server/level/ChunkHolder/f_140002_ net/minecraft/server/level/ChunkHolder/fullChunkFuture +FD: net/minecraft/server/level/ChunkHolder/f_140003_ net/minecraft/server/level/ChunkHolder/tickingChunkFuture +FD: net/minecraft/server/level/ChunkHolder/f_140004_ net/minecraft/server/level/ChunkHolder/entityTickingChunkFuture +FD: net/minecraft/server/level/ChunkHolder/f_140005_ net/minecraft/server/level/ChunkHolder/chunkToSave +FD: net/minecraft/server/level/ChunkHolder/f_140006_ net/minecraft/server/level/ChunkHolder/oldTicketLevel +FD: net/minecraft/server/level/ChunkHolder/f_140007_ net/minecraft/server/level/ChunkHolder/ticketLevel +FD: net/minecraft/server/level/ChunkHolder/f_140008_ net/minecraft/server/level/ChunkHolder/queueLevel +FD: net/minecraft/server/level/ChunkHolder/f_140009_ net/minecraft/server/level/ChunkHolder/pos +FD: net/minecraft/server/level/ChunkHolder/f_140010_ net/minecraft/server/level/ChunkHolder/hasChangedSections +FD: net/minecraft/server/level/ChunkHolder/f_140011_ net/minecraft/server/level/ChunkHolder/changedBlocksPerSection +FD: net/minecraft/server/level/ChunkHolder/f_140012_ net/minecraft/server/level/ChunkHolder/blockChangedLightSectionFilter +FD: net/minecraft/server/level/ChunkHolder/f_140013_ net/minecraft/server/level/ChunkHolder/skyChangedLightSectionFilter +FD: net/minecraft/server/level/ChunkHolder/f_140014_ net/minecraft/server/level/ChunkHolder/lightEngine +FD: net/minecraft/server/level/ChunkHolder/f_140015_ net/minecraft/server/level/ChunkHolder/onLevelChange +FD: net/minecraft/server/level/ChunkHolder/f_140016_ net/minecraft/server/level/ChunkHolder/playerProvider +FD: net/minecraft/server/level/ChunkHolder/f_140017_ net/minecraft/server/level/ChunkHolder/wasAccessibleSinceLastSave +FD: net/minecraft/server/level/ChunkHolder/f_142981_ net/minecraft/server/level/ChunkHolder/pendingFullStateConfirmation +FD: net/minecraft/server/level/ChunkHolder/f_142983_ net/minecraft/server/level/ChunkHolder/levelHeightAccessor +FD: net/minecraft/server/level/ChunkHolder/f_142984_ net/minecraft/server/level/ChunkHolder/chunkToSaveHistory +FD: net/minecraft/server/level/ChunkHolder/f_203750_ net/minecraft/server/level/ChunkHolder/NOT_DONE_YET +FD: net/minecraft/server/level/ChunkHolder$1/f_140097_ net/minecraft/server/level/ChunkHolder$1/this$0 +FD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/f_140101_ net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/UNLOADED +FD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/f_143023_ net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/thread +FD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/f_143024_ net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/future +FD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/f_143025_ net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/source +FD: net/minecraft/server/level/ChunkLevel/f_286937_ net/minecraft/server/level/ChunkLevel/ENTITY_TICKING_LEVEL +FD: net/minecraft/server/level/ChunkLevel/f_286967_ net/minecraft/server/level/ChunkLevel/MAX_LEVEL +FD: net/minecraft/server/level/ChunkLevel/f_286976_ net/minecraft/server/level/ChunkLevel/BLOCK_TICKING_LEVEL +FD: net/minecraft/server/level/ChunkLevel/f_287007_ net/minecraft/server/level/ChunkLevel/FULL_CHUNK_LEVEL +FD: net/minecraft/server/level/ChunkLevel$1/f_286966_ net/minecraft/server/level/ChunkLevel$1/$SwitchMap$net$minecraft$server$level$FullChunkStatus +FD: net/minecraft/server/level/ChunkMap/f_140125_ net/minecraft/server/level/ChunkMap/unloadQueue +FD: net/minecraft/server/level/ChunkMap/f_140126_ net/minecraft/server/level/ChunkMap/viewDistance +FD: net/minecraft/server/level/ChunkMap/f_140128_ net/minecraft/server/level/ChunkMap/LOGGER +FD: net/minecraft/server/level/ChunkMap/f_140129_ net/minecraft/server/level/ChunkMap/updatingChunkMap +FD: net/minecraft/server/level/ChunkMap/f_140130_ net/minecraft/server/level/ChunkMap/visibleChunkMap +FD: net/minecraft/server/level/ChunkMap/f_140131_ net/minecraft/server/level/ChunkMap/pendingUnloads +FD: net/minecraft/server/level/ChunkMap/f_140132_ net/minecraft/server/level/ChunkMap/entitiesInLevel +FD: net/minecraft/server/level/ChunkMap/f_140133_ net/minecraft/server/level/ChunkMap/level +FD: net/minecraft/server/level/ChunkMap/f_140134_ net/minecraft/server/level/ChunkMap/lightEngine +FD: net/minecraft/server/level/ChunkMap/f_140135_ net/minecraft/server/level/ChunkMap/mainThreadExecutor +FD: net/minecraft/server/level/ChunkMap/f_140136_ net/minecraft/server/level/ChunkMap/generator +FD: net/minecraft/server/level/ChunkMap/f_140137_ net/minecraft/server/level/ChunkMap/overworldDataStorage +FD: net/minecraft/server/level/ChunkMap/f_140138_ net/minecraft/server/level/ChunkMap/poiManager +FD: net/minecraft/server/level/ChunkMap/f_140139_ net/minecraft/server/level/ChunkMap/toDrop +FD: net/minecraft/server/level/ChunkMap/f_140140_ net/minecraft/server/level/ChunkMap/modified +FD: net/minecraft/server/level/ChunkMap/f_140141_ net/minecraft/server/level/ChunkMap/queueSorter +FD: net/minecraft/server/level/ChunkMap/f_140142_ net/minecraft/server/level/ChunkMap/worldgenMailbox +FD: net/minecraft/server/level/ChunkMap/f_140143_ net/minecraft/server/level/ChunkMap/mainThreadMailbox +FD: net/minecraft/server/level/ChunkMap/f_140144_ net/minecraft/server/level/ChunkMap/progressListener +FD: net/minecraft/server/level/ChunkMap/f_140145_ net/minecraft/server/level/ChunkMap/distanceManager +FD: net/minecraft/server/level/ChunkMap/f_140146_ net/minecraft/server/level/ChunkMap/tickingGenerated +FD: net/minecraft/server/level/ChunkMap/f_140149_ net/minecraft/server/level/ChunkMap/playerMap +FD: net/minecraft/server/level/ChunkMap/f_140150_ net/minecraft/server/level/ChunkMap/entityMap +FD: net/minecraft/server/level/ChunkMap/f_140151_ net/minecraft/server/level/ChunkMap/chunkTypeCache +FD: net/minecraft/server/level/ChunkMap/f_143031_ net/minecraft/server/level/ChunkMap/chunkStatusListener +FD: net/minecraft/server/level/ChunkMap/f_143032_ net/minecraft/server/level/ChunkMap/MAX_VIEW_DISTANCE +FD: net/minecraft/server/level/ChunkMap/f_143033_ net/minecraft/server/level/ChunkMap/FORCED_TICKET_LEVEL +FD: net/minecraft/server/level/ChunkMap/f_143034_ net/minecraft/server/level/ChunkMap/CHUNK_TYPE_REPLACEABLE +FD: net/minecraft/server/level/ChunkMap/f_143035_ net/minecraft/server/level/ChunkMap/CHUNK_TYPE_UNKNOWN +FD: net/minecraft/server/level/ChunkMap/f_143036_ net/minecraft/server/level/ChunkMap/CHUNK_TYPE_FULL +FD: net/minecraft/server/level/ChunkMap/f_143037_ net/minecraft/server/level/ChunkMap/CHUNK_SAVED_PER_TICK +FD: net/minecraft/server/level/ChunkMap/f_143038_ net/minecraft/server/level/ChunkMap/MIN_VIEW_DISTANCE +FD: net/minecraft/server/level/ChunkMap/f_182284_ net/minecraft/server/level/ChunkMap/storageName +FD: net/minecraft/server/level/ChunkMap/f_198789_ net/minecraft/server/level/ChunkMap/CHUNK_SAVED_EAGERLY_PER_TICK +FD: net/minecraft/server/level/ChunkMap/f_202981_ net/minecraft/server/level/ChunkMap/chunkSaveCooldowns +FD: net/minecraft/server/level/ChunkMap/f_202982_ net/minecraft/server/level/ChunkMap/EAGER_CHUNK_SAVE_COOLDOWN_IN_MILLIS +FD: net/minecraft/server/level/ChunkMap/f_214833_ net/minecraft/server/level/ChunkMap/structureTemplateManager +FD: net/minecraft/server/level/ChunkMap/f_214834_ net/minecraft/server/level/ChunkMap/randomState +FD: net/minecraft/server/level/ChunkMap/f_254626_ net/minecraft/server/level/ChunkMap/chunkGeneratorState +FD: net/minecraft/server/level/ChunkMap$1/f_140436_ net/minecraft/server/level/ChunkMap$1/val$k +FD: net/minecraft/server/level/ChunkMap$1/f_140437_ net/minecraft/server/level/ChunkMap$1/this$0 +FD: net/minecraft/server/level/ChunkMap$2/f_140442_ net/minecraft/server/level/ChunkMap$2/val$startX +FD: net/minecraft/server/level/ChunkMap$2/f_140443_ net/minecraft/server/level/ChunkMap$2/val$finalI +FD: net/minecraft/server/level/ChunkMap$2/f_140444_ net/minecraft/server/level/ChunkMap$2/val$range +FD: net/minecraft/server/level/ChunkMap$2/f_140445_ net/minecraft/server/level/ChunkMap$2/val$startZ +FD: net/minecraft/server/level/ChunkMap$2/f_140446_ net/minecraft/server/level/ChunkMap$2/val$either +FD: net/minecraft/server/level/ChunkMap$2/f_140447_ net/minecraft/server/level/ChunkMap$2/this$0 +FD: net/minecraft/server/level/ChunkMap$DistanceManager/f_140456_ net/minecraft/server/level/ChunkMap$DistanceManager/this$0 +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140470_ net/minecraft/server/level/ChunkMap$TrackedEntity/this$0 +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140471_ net/minecraft/server/level/ChunkMap$TrackedEntity/serverEntity +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140472_ net/minecraft/server/level/ChunkMap$TrackedEntity/entity +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140473_ net/minecraft/server/level/ChunkMap$TrackedEntity/range +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140474_ net/minecraft/server/level/ChunkMap$TrackedEntity/lastSectionPos +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140475_ net/minecraft/server/level/ChunkMap$TrackedEntity/seenBy +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140508_ net/minecraft/server/level/ChunkTaskPriorityQueue/PRIORITY_LEVEL_COUNT +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140509_ net/minecraft/server/level/ChunkTaskPriorityQueue/taskQueue +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140510_ net/minecraft/server/level/ChunkTaskPriorityQueue/firstQueue +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140511_ net/minecraft/server/level/ChunkTaskPriorityQueue/name +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140512_ net/minecraft/server/level/ChunkTaskPriorityQueue/acquired +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140513_ net/minecraft/server/level/ChunkTaskPriorityQueue/maxTasks +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140549_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/LOGGER +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140550_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/queues +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140551_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/sleeping +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140552_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/mailbox +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/f_140664_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/task +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/f_140665_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/pos +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/f_140666_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/level +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/f_140682_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/task +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/f_140683_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/pos +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/f_140684_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/clearQueue +FD: net/minecraft/server/level/ColumnPos/f_140723_ net/minecraft/server/level/ColumnPos/x +FD: net/minecraft/server/level/ColumnPos/f_140724_ net/minecraft/server/level/ColumnPos/z +FD: net/minecraft/server/level/ColumnPos/f_143191_ net/minecraft/server/level/ColumnPos/COORD_BITS +FD: net/minecraft/server/level/ColumnPos/f_143192_ net/minecraft/server/level/ColumnPos/COORD_MASK +FD: net/minecraft/server/level/DemoMode/f_140734_ net/minecraft/server/level/DemoMode/displayedIntro +FD: net/minecraft/server/level/DemoMode/f_140735_ net/minecraft/server/level/DemoMode/demoHasEnded +FD: net/minecraft/server/level/DemoMode/f_140736_ net/minecraft/server/level/DemoMode/demoEndedReminder +FD: net/minecraft/server/level/DemoMode/f_140737_ net/minecraft/server/level/DemoMode/gameModeTicks +FD: net/minecraft/server/level/DemoMode/f_143201_ net/minecraft/server/level/DemoMode/DEMO_DAYS +FD: net/minecraft/server/level/DemoMode/f_143202_ net/minecraft/server/level/DemoMode/TOTAL_PLAY_TICKS +FD: net/minecraft/server/level/DistanceManager/f_140758_ net/minecraft/server/level/DistanceManager/LOGGER +FD: net/minecraft/server/level/DistanceManager/f_140759_ net/minecraft/server/level/DistanceManager/PLAYER_TICKET_LEVEL +FD: net/minecraft/server/level/DistanceManager/f_140760_ net/minecraft/server/level/DistanceManager/playersPerChunk +FD: net/minecraft/server/level/DistanceManager/f_140761_ net/minecraft/server/level/DistanceManager/tickets +FD: net/minecraft/server/level/DistanceManager/f_140762_ net/minecraft/server/level/DistanceManager/ticketTracker +FD: net/minecraft/server/level/DistanceManager/f_140763_ net/minecraft/server/level/DistanceManager/naturalSpawnChunkCounter +FD: net/minecraft/server/level/DistanceManager/f_140764_ net/minecraft/server/level/DistanceManager/playerTicketManager +FD: net/minecraft/server/level/DistanceManager/f_140765_ net/minecraft/server/level/DistanceManager/chunksToUpdateFutures +FD: net/minecraft/server/level/DistanceManager/f_140766_ net/minecraft/server/level/DistanceManager/ticketThrottler +FD: net/minecraft/server/level/DistanceManager/f_140767_ net/minecraft/server/level/DistanceManager/ticketThrottlerInput +FD: net/minecraft/server/level/DistanceManager/f_140768_ net/minecraft/server/level/DistanceManager/ticketThrottlerReleaser +FD: net/minecraft/server/level/DistanceManager/f_140769_ net/minecraft/server/level/DistanceManager/ticketsToRelease +FD: net/minecraft/server/level/DistanceManager/f_140770_ net/minecraft/server/level/DistanceManager/mainThreadExecutor +FD: net/minecraft/server/level/DistanceManager/f_140771_ net/minecraft/server/level/DistanceManager/ticketTickCounter +FD: net/minecraft/server/level/DistanceManager/f_143206_ net/minecraft/server/level/DistanceManager/INITIAL_TICKET_LIST_CAPACITY +FD: net/minecraft/server/level/DistanceManager/f_183901_ net/minecraft/server/level/DistanceManager/tickingTicketsTracker +FD: net/minecraft/server/level/DistanceManager/f_183902_ net/minecraft/server/level/DistanceManager/simulationDistance +FD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/f_140874_ net/minecraft/server/level/DistanceManager$ChunkTicketTracker/this$0 +FD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/f_286988_ net/minecraft/server/level/DistanceManager$ChunkTicketTracker/MAX_LEVEL +FD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/f_140886_ net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/chunks +FD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/f_140887_ net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/maxDistance +FD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/f_140888_ net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/this$0 +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140904_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/this$0 +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140905_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/viewDistance +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140906_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/queueLevels +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140907_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/toUpdate +FD: net/minecraft/server/level/FullChunkStatus/$VALUES net/minecraft/server/level/FullChunkStatus/$VALUES +FD: net/minecraft/server/level/FullChunkStatus/BLOCK_TICKING net/minecraft/server/level/FullChunkStatus/BLOCK_TICKING +FD: net/minecraft/server/level/FullChunkStatus/ENTITY_TICKING net/minecraft/server/level/FullChunkStatus/ENTITY_TICKING +FD: net/minecraft/server/level/FullChunkStatus/FULL net/minecraft/server/level/FullChunkStatus/FULL +FD: net/minecraft/server/level/FullChunkStatus/INACCESSIBLE net/minecraft/server/level/FullChunkStatus/INACCESSIBLE +FD: net/minecraft/server/level/PlayerMap/f_8241_ net/minecraft/server/level/PlayerMap/players +FD: net/minecraft/server/level/ServerBossEvent/f_8296_ net/minecraft/server/level/ServerBossEvent/players +FD: net/minecraft/server/level/ServerBossEvent/f_8297_ net/minecraft/server/level/ServerBossEvent/unmodifiablePlayers +FD: net/minecraft/server/level/ServerBossEvent/f_8298_ net/minecraft/server/level/ServerBossEvent/visible +FD: net/minecraft/server/level/ServerChunkCache/f_143226_ net/minecraft/server/level/ServerChunkCache/CACHE_SIZE +FD: net/minecraft/server/level/ServerChunkCache/f_8325_ net/minecraft/server/level/ServerChunkCache/chunkMap +FD: net/minecraft/server/level/ServerChunkCache/f_8326_ net/minecraft/server/level/ServerChunkCache/CHUNK_STATUSES +FD: net/minecraft/server/level/ServerChunkCache/f_8327_ net/minecraft/server/level/ServerChunkCache/distanceManager +FD: net/minecraft/server/level/ServerChunkCache/f_8329_ net/minecraft/server/level/ServerChunkCache/level +FD: net/minecraft/server/level/ServerChunkCache/f_8330_ net/minecraft/server/level/ServerChunkCache/mainThread +FD: net/minecraft/server/level/ServerChunkCache/f_8331_ net/minecraft/server/level/ServerChunkCache/lightEngine +FD: net/minecraft/server/level/ServerChunkCache/f_8332_ net/minecraft/server/level/ServerChunkCache/mainThreadProcessor +FD: net/minecraft/server/level/ServerChunkCache/f_8333_ net/minecraft/server/level/ServerChunkCache/dataStorage +FD: net/minecraft/server/level/ServerChunkCache/f_8334_ net/minecraft/server/level/ServerChunkCache/lastInhabitedUpdate +FD: net/minecraft/server/level/ServerChunkCache/f_8335_ net/minecraft/server/level/ServerChunkCache/spawnEnemies +FD: net/minecraft/server/level/ServerChunkCache/f_8336_ net/minecraft/server/level/ServerChunkCache/spawnFriendlies +FD: net/minecraft/server/level/ServerChunkCache/f_8337_ net/minecraft/server/level/ServerChunkCache/lastChunkPos +FD: net/minecraft/server/level/ServerChunkCache/f_8338_ net/minecraft/server/level/ServerChunkCache/lastChunkStatus +FD: net/minecraft/server/level/ServerChunkCache/f_8339_ net/minecraft/server/level/ServerChunkCache/lastChunk +FD: net/minecraft/server/level/ServerChunkCache/f_8340_ net/minecraft/server/level/ServerChunkCache/lastSpawnState +FD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184028_ net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/chunk +FD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184029_ net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/holder +FD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/f_8491_ net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/this$0 +FD: net/minecraft/server/level/ServerEntity/f_143241_ net/minecraft/server/level/ServerEntity/TOLERANCE_LEVEL_ROTATION +FD: net/minecraft/server/level/ServerEntity/f_214995_ net/minecraft/server/level/ServerEntity/positionCodec +FD: net/minecraft/server/level/ServerEntity/f_263120_ net/minecraft/server/level/ServerEntity/trackedDataValues +FD: net/minecraft/server/level/ServerEntity/f_8508_ net/minecraft/server/level/ServerEntity/LOGGER +FD: net/minecraft/server/level/ServerEntity/f_8509_ net/minecraft/server/level/ServerEntity/level +FD: net/minecraft/server/level/ServerEntity/f_8510_ net/minecraft/server/level/ServerEntity/entity +FD: net/minecraft/server/level/ServerEntity/f_8511_ net/minecraft/server/level/ServerEntity/updateInterval +FD: net/minecraft/server/level/ServerEntity/f_8512_ net/minecraft/server/level/ServerEntity/trackDelta +FD: net/minecraft/server/level/ServerEntity/f_8513_ net/minecraft/server/level/ServerEntity/broadcast +FD: net/minecraft/server/level/ServerEntity/f_8517_ net/minecraft/server/level/ServerEntity/yRotp +FD: net/minecraft/server/level/ServerEntity/f_8518_ net/minecraft/server/level/ServerEntity/xRotp +FD: net/minecraft/server/level/ServerEntity/f_8519_ net/minecraft/server/level/ServerEntity/yHeadRotp +FD: net/minecraft/server/level/ServerEntity/f_8520_ net/minecraft/server/level/ServerEntity/ap +FD: net/minecraft/server/level/ServerEntity/f_8521_ net/minecraft/server/level/ServerEntity/tickCount +FD: net/minecraft/server/level/ServerEntity/f_8522_ net/minecraft/server/level/ServerEntity/teleportDelay +FD: net/minecraft/server/level/ServerEntity/f_8523_ net/minecraft/server/level/ServerEntity/lastPassengers +FD: net/minecraft/server/level/ServerEntity/f_8524_ net/minecraft/server/level/ServerEntity/wasRiding +FD: net/minecraft/server/level/ServerEntity/f_8525_ net/minecraft/server/level/ServerEntity/wasOnGround +FD: net/minecraft/server/level/ServerLevel/f_143242_ net/minecraft/server/level/ServerLevel/EMPTY_TIME_NO_TICK +FD: net/minecraft/server/level/ServerLevel/f_143243_ net/minecraft/server/level/ServerLevel/entityTickList +FD: net/minecraft/server/level/ServerLevel/f_143244_ net/minecraft/server/level/ServerLevel/entityManager +FD: net/minecraft/server/level/ServerLevel/f_143245_ net/minecraft/server/level/ServerLevel/sleepStatus +FD: net/minecraft/server/level/ServerLevel/f_143246_ net/minecraft/server/level/ServerLevel/navigatingMobs +FD: net/minecraft/server/level/ServerLevel/f_143247_ net/minecraft/server/level/ServerLevel/dragonParts +FD: net/minecraft/server/level/ServerLevel/f_184046_ net/minecraft/server/level/ServerLevel/MAX_SCHEDULED_TICKS_PER_TICK +FD: net/minecraft/server/level/ServerLevel/f_184047_ net/minecraft/server/level/ServerLevel/fluidTicks +FD: net/minecraft/server/level/ServerLevel/f_184048_ net/minecraft/server/level/ServerLevel/blockEventsToReschedule +FD: net/minecraft/server/level/ServerLevel/f_196556_ net/minecraft/server/level/ServerLevel/structureCheck +FD: net/minecraft/server/level/ServerLevel/f_200893_ net/minecraft/server/level/ServerLevel/isUpdatingNavigations +FD: net/minecraft/server/level/ServerLevel/f_214997_ net/minecraft/server/level/ServerLevel/structureManager +FD: net/minecraft/server/level/ServerLevel/f_243695_ net/minecraft/server/level/ServerLevel/gameEventDispatcher +FD: net/minecraft/server/level/ServerLevel/f_263681_ net/minecraft/server/level/ServerLevel/RAIN_DURATION +FD: net/minecraft/server/level/ServerLevel/f_263684_ net/minecraft/server/level/ServerLevel/THUNDER_DELAY +FD: net/minecraft/server/level/ServerLevel/f_263704_ net/minecraft/server/level/ServerLevel/RAIN_DELAY +FD: net/minecraft/server/level/ServerLevel/f_263755_ net/minecraft/server/level/ServerLevel/THUNDER_DURATION +FD: net/minecraft/server/level/ServerLevel/f_286969_ net/minecraft/server/level/ServerLevel/randomSequences +FD: net/minecraft/server/level/ServerLevel/f_8546_ net/minecraft/server/level/ServerLevel/players +FD: net/minecraft/server/level/ServerLevel/f_8547_ net/minecraft/server/level/ServerLevel/chunkSource +FD: net/minecraft/server/level/ServerLevel/f_8548_ net/minecraft/server/level/ServerLevel/server +FD: net/minecraft/server/level/ServerLevel/f_8549_ net/minecraft/server/level/ServerLevel/serverLevelData +FD: net/minecraft/server/level/ServerLevel/f_8551_ net/minecraft/server/level/ServerLevel/emptyTime +FD: net/minecraft/server/level/ServerLevel/f_8552_ net/minecraft/server/level/ServerLevel/portalForcer +FD: net/minecraft/server/level/ServerLevel/f_8553_ net/minecraft/server/level/ServerLevel/blockTicks +FD: net/minecraft/server/level/ServerLevel/f_8556_ net/minecraft/server/level/ServerLevel/blockEvents +FD: net/minecraft/server/level/ServerLevel/f_8557_ net/minecraft/server/level/ServerLevel/handlingTick +FD: net/minecraft/server/level/ServerLevel/f_8558_ net/minecraft/server/level/ServerLevel/customSpawners +FD: net/minecraft/server/level/ServerLevel/f_8559_ net/minecraft/server/level/ServerLevel/dragonFight +FD: net/minecraft/server/level/ServerLevel/f_8561_ net/minecraft/server/level/ServerLevel/tickTime +FD: net/minecraft/server/level/ServerLevel/f_8562_ net/minecraft/server/level/ServerLevel/END_SPAWN_POINT +FD: net/minecraft/server/level/ServerLevel/f_8564_ net/minecraft/server/level/ServerLevel/noSave +FD: net/minecraft/server/level/ServerLevel/f_8565_ net/minecraft/server/level/ServerLevel/raids +FD: net/minecraft/server/level/ServerLevel/f_8566_ net/minecraft/server/level/ServerLevel/LOGGER +FD: net/minecraft/server/level/ServerLevel$EntityCallbacks/f_143351_ net/minecraft/server/level/ServerLevel$EntityCallbacks/this$0 +FD: net/minecraft/server/level/ServerPlayer/f_143378_ net/minecraft/server/level/ServerPlayer/textFilteringEnabled +FD: net/minecraft/server/level/ServerPlayer/f_143379_ net/minecraft/server/level/ServerPlayer/containerSynchronizer +FD: net/minecraft/server/level/ServerPlayer/f_143380_ net/minecraft/server/level/ServerPlayer/containerListener +FD: net/minecraft/server/level/ServerPlayer/f_143381_ net/minecraft/server/level/ServerPlayer/NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_XZ +FD: net/minecraft/server/level/ServerPlayer/f_143382_ net/minecraft/server/level/ServerPlayer/NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_Y +FD: net/minecraft/server/level/ServerPlayer/f_184125_ net/minecraft/server/level/ServerPlayer/startingToFallPosition +FD: net/minecraft/server/level/ServerPlayer/f_184126_ net/minecraft/server/level/ServerPlayer/enteredLavaOnVehiclePosition +FD: net/minecraft/server/level/ServerPlayer/f_184127_ net/minecraft/server/level/ServerPlayer/allowsListing +FD: net/minecraft/server/level/ServerPlayer/f_244040_ net/minecraft/server/level/ServerPlayer/chatSession +FD: net/minecraft/server/level/ServerPlayer/f_244516_ net/minecraft/server/level/ServerPlayer/wardenSpawnTracker +FD: net/minecraft/server/level/ServerPlayer/f_8906_ net/minecraft/server/level/ServerPlayer/connection +FD: net/minecraft/server/level/ServerPlayer/f_8907_ net/minecraft/server/level/ServerPlayer/LOGGER +FD: net/minecraft/server/level/ServerPlayer/f_8909_ net/minecraft/server/level/ServerPlayer/advancements +FD: net/minecraft/server/level/ServerPlayer/f_8910_ net/minecraft/server/level/ServerPlayer/stats +FD: net/minecraft/server/level/ServerPlayer/f_8911_ net/minecraft/server/level/ServerPlayer/lastRecordedHealthAndAbsorption +FD: net/minecraft/server/level/ServerPlayer/f_8912_ net/minecraft/server/level/ServerPlayer/lastRecordedFoodLevel +FD: net/minecraft/server/level/ServerPlayer/f_8913_ net/minecraft/server/level/ServerPlayer/lastRecordedAirLevel +FD: net/minecraft/server/level/ServerPlayer/f_8914_ net/minecraft/server/level/ServerPlayer/lastRecordedArmor +FD: net/minecraft/server/level/ServerPlayer/f_8915_ net/minecraft/server/level/ServerPlayer/lastRecordedLevel +FD: net/minecraft/server/level/ServerPlayer/f_8916_ net/minecraft/server/level/ServerPlayer/lastRecordedExperience +FD: net/minecraft/server/level/ServerPlayer/f_8917_ net/minecraft/server/level/ServerPlayer/lastSentHealth +FD: net/minecraft/server/level/ServerPlayer/f_8918_ net/minecraft/server/level/ServerPlayer/lastSentFood +FD: net/minecraft/server/level/ServerPlayer/f_8919_ net/minecraft/server/level/ServerPlayer/lastFoodSaturationZero +FD: net/minecraft/server/level/ServerPlayer/f_8920_ net/minecraft/server/level/ServerPlayer/lastSentExp +FD: net/minecraft/server/level/ServerPlayer/f_8921_ net/minecraft/server/level/ServerPlayer/spawnInvulnerableTime +FD: net/minecraft/server/level/ServerPlayer/f_8922_ net/minecraft/server/level/ServerPlayer/chatVisibility +FD: net/minecraft/server/level/ServerPlayer/f_8923_ net/minecraft/server/level/ServerPlayer/canChatColor +FD: net/minecraft/server/level/ServerPlayer/f_8924_ net/minecraft/server/level/ServerPlayer/server +FD: net/minecraft/server/level/ServerPlayer/f_8925_ net/minecraft/server/level/ServerPlayer/lastActionTime +FD: net/minecraft/server/level/ServerPlayer/f_8926_ net/minecraft/server/level/ServerPlayer/camera +FD: net/minecraft/server/level/ServerPlayer/f_8927_ net/minecraft/server/level/ServerPlayer/isChangingDimension +FD: net/minecraft/server/level/ServerPlayer/f_8928_ net/minecraft/server/level/ServerPlayer/seenCredits +FD: net/minecraft/server/level/ServerPlayer/f_8929_ net/minecraft/server/level/ServerPlayer/recipeBook +FD: net/minecraft/server/level/ServerPlayer/f_8930_ net/minecraft/server/level/ServerPlayer/levitationStartPos +FD: net/minecraft/server/level/ServerPlayer/f_8931_ net/minecraft/server/level/ServerPlayer/levitationStartTime +FD: net/minecraft/server/level/ServerPlayer/f_8932_ net/minecraft/server/level/ServerPlayer/disconnected +FD: net/minecraft/server/level/ServerPlayer/f_8933_ net/minecraft/server/level/ServerPlayer/enteredNetherPosition +FD: net/minecraft/server/level/ServerPlayer/f_8934_ net/minecraft/server/level/ServerPlayer/lastSectionPos +FD: net/minecraft/server/level/ServerPlayer/f_8935_ net/minecraft/server/level/ServerPlayer/respawnDimension +FD: net/minecraft/server/level/ServerPlayer/f_8936_ net/minecraft/server/level/ServerPlayer/respawnPosition +FD: net/minecraft/server/level/ServerPlayer/f_8937_ net/minecraft/server/level/ServerPlayer/respawnForced +FD: net/minecraft/server/level/ServerPlayer/f_8938_ net/minecraft/server/level/ServerPlayer/respawnAngle +FD: net/minecraft/server/level/ServerPlayer/f_8939_ net/minecraft/server/level/ServerPlayer/textFilter +FD: net/minecraft/server/level/ServerPlayer/f_8940_ net/minecraft/server/level/ServerPlayer/containerCounter +FD: net/minecraft/server/level/ServerPlayer/f_8941_ net/minecraft/server/level/ServerPlayer/gameMode +FD: net/minecraft/server/level/ServerPlayer/f_8943_ net/minecraft/server/level/ServerPlayer/latency +FD: net/minecraft/server/level/ServerPlayer/f_8944_ net/minecraft/server/level/ServerPlayer/wonGame +FD: net/minecraft/server/level/ServerPlayer$1/f_143433_ net/minecraft/server/level/ServerPlayer$1/this$0 +FD: net/minecraft/server/level/ServerPlayer$2/f_143458_ net/minecraft/server/level/ServerPlayer$2/this$0 +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9244_ net/minecraft/server/level/ServerPlayerGameMode/level +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9245_ net/minecraft/server/level/ServerPlayerGameMode/player +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9246_ net/minecraft/server/level/ServerPlayerGameMode/LOGGER +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9247_ net/minecraft/server/level/ServerPlayerGameMode/gameModeForPlayer +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9248_ net/minecraft/server/level/ServerPlayerGameMode/previousGameModeForPlayer +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9249_ net/minecraft/server/level/ServerPlayerGameMode/isDestroyingBlock +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9250_ net/minecraft/server/level/ServerPlayerGameMode/destroyProgressStart +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9251_ net/minecraft/server/level/ServerPlayerGameMode/destroyPos +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9252_ net/minecraft/server/level/ServerPlayerGameMode/gameTicks +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9253_ net/minecraft/server/level/ServerPlayerGameMode/hasDelayedDestroy +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9254_ net/minecraft/server/level/ServerPlayerGameMode/delayedDestroyPos +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9255_ net/minecraft/server/level/ServerPlayerGameMode/delayedTickStart +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9256_ net/minecraft/server/level/ServerPlayerGameMode/lastSentState +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_283844_ net/minecraft/server/level/ThreadedLevelLightEngine/DEFAULT_BATCH_SIZE +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9296_ net/minecraft/server/level/ThreadedLevelLightEngine/LOGGER +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9297_ net/minecraft/server/level/ThreadedLevelLightEngine/taskMailbox +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9298_ net/minecraft/server/level/ThreadedLevelLightEngine/lightTasks +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9299_ net/minecraft/server/level/ThreadedLevelLightEngine/chunkMap +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9300_ net/minecraft/server/level/ThreadedLevelLightEngine/sorterMailbox +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9301_ net/minecraft/server/level/ThreadedLevelLightEngine/taskPerBatch +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9302_ net/minecraft/server/level/ThreadedLevelLightEngine/scheduled +FD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/$VALUES net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/$VALUES +FD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/POST_UPDATE net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/POST_UPDATE +FD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/PRE_UPDATE net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/PRE_UPDATE +FD: net/minecraft/server/level/Ticket/f_9420_ net/minecraft/server/level/Ticket/type +FD: net/minecraft/server/level/Ticket/f_9421_ net/minecraft/server/level/Ticket/ticketLevel +FD: net/minecraft/server/level/Ticket/f_9422_ net/minecraft/server/level/Ticket/key +FD: net/minecraft/server/level/Ticket/f_9423_ net/minecraft/server/level/Ticket/createdTick +FD: net/minecraft/server/level/TicketType/f_9442_ net/minecraft/server/level/TicketType/START +FD: net/minecraft/server/level/TicketType/f_9443_ net/minecraft/server/level/TicketType/DRAGON +FD: net/minecraft/server/level/TicketType/f_9444_ net/minecraft/server/level/TicketType/PLAYER +FD: net/minecraft/server/level/TicketType/f_9445_ net/minecraft/server/level/TicketType/FORCED +FD: net/minecraft/server/level/TicketType/f_9446_ net/minecraft/server/level/TicketType/LIGHT +FD: net/minecraft/server/level/TicketType/f_9447_ net/minecraft/server/level/TicketType/PORTAL +FD: net/minecraft/server/level/TicketType/f_9448_ net/minecraft/server/level/TicketType/POST_TELEPORT +FD: net/minecraft/server/level/TicketType/f_9449_ net/minecraft/server/level/TicketType/UNKNOWN +FD: net/minecraft/server/level/TicketType/f_9450_ net/minecraft/server/level/TicketType/name +FD: net/minecraft/server/level/TicketType/f_9451_ net/minecraft/server/level/TicketType/comparator +FD: net/minecraft/server/level/TicketType/f_9452_ net/minecraft/server/level/TicketType/timeout +FD: net/minecraft/server/level/TickingTracker/f_184141_ net/minecraft/server/level/TickingTracker/chunks +FD: net/minecraft/server/level/TickingTracker/f_184142_ net/minecraft/server/level/TickingTracker/INITIAL_TICKET_LIST_CAPACITY +FD: net/minecraft/server/level/TickingTracker/f_184143_ net/minecraft/server/level/TickingTracker/tickets +FD: net/minecraft/server/level/TickingTracker/f_286949_ net/minecraft/server/level/TickingTracker/MAX_LEVEL +FD: net/minecraft/server/level/WorldGenRegion/f_143479_ net/minecraft/server/level/WorldGenRegion/center +FD: net/minecraft/server/level/WorldGenRegion/f_143480_ net/minecraft/server/level/WorldGenRegion/generatingStatus +FD: net/minecraft/server/level/WorldGenRegion/f_143481_ net/minecraft/server/level/WorldGenRegion/writeRadiusCutoff +FD: net/minecraft/server/level/WorldGenRegion/f_143482_ net/minecraft/server/level/WorldGenRegion/currentlyGenerating +FD: net/minecraft/server/level/WorldGenRegion/f_184181_ net/minecraft/server/level/WorldGenRegion/fluidTicks +FD: net/minecraft/server/level/WorldGenRegion/f_184182_ net/minecraft/server/level/WorldGenRegion/subTickCount +FD: net/minecraft/server/level/WorldGenRegion/f_215157_ net/minecraft/server/level/WorldGenRegion/structureManager +FD: net/minecraft/server/level/WorldGenRegion/f_215158_ net/minecraft/server/level/WorldGenRegion/WORLDGEN_REGION_RANDOM +FD: net/minecraft/server/level/WorldGenRegion/f_9474_ net/minecraft/server/level/WorldGenRegion/LOGGER +FD: net/minecraft/server/level/WorldGenRegion/f_9475_ net/minecraft/server/level/WorldGenRegion/cache +FD: net/minecraft/server/level/WorldGenRegion/f_9478_ net/minecraft/server/level/WorldGenRegion/size +FD: net/minecraft/server/level/WorldGenRegion/f_9479_ net/minecraft/server/level/WorldGenRegion/level +FD: net/minecraft/server/level/WorldGenRegion/f_9480_ net/minecraft/server/level/WorldGenRegion/seed +FD: net/minecraft/server/level/WorldGenRegion/f_9481_ net/minecraft/server/level/WorldGenRegion/levelData +FD: net/minecraft/server/level/WorldGenRegion/f_9482_ net/minecraft/server/level/WorldGenRegion/random +FD: net/minecraft/server/level/WorldGenRegion/f_9483_ net/minecraft/server/level/WorldGenRegion/dimensionType +FD: net/minecraft/server/level/WorldGenRegion/f_9484_ net/minecraft/server/level/WorldGenRegion/blockTicks +FD: net/minecraft/server/level/WorldGenRegion/f_9486_ net/minecraft/server/level/WorldGenRegion/biomeManager +FD: net/minecraft/server/level/WorldGenRegion/f_9487_ net/minecraft/server/level/WorldGenRegion/firstPos +FD: net/minecraft/server/level/WorldGenRegion/f_9488_ net/minecraft/server/level/WorldGenRegion/lastPos +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9622_ net/minecraft/server/level/progress/LoggerChunkProgressListener/LOGGER +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9623_ net/minecraft/server/level/progress/LoggerChunkProgressListener/maxCount +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9624_ net/minecraft/server/level/progress/LoggerChunkProgressListener/count +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9625_ net/minecraft/server/level/progress/LoggerChunkProgressListener/startTime +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9626_ net/minecraft/server/level/progress/LoggerChunkProgressListener/nextTickTime +FD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/f_9637_ net/minecraft/server/level/progress/ProcessorChunkProgressListener/delegate +FD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/f_9638_ net/minecraft/server/level/progress/ProcessorChunkProgressListener/mailbox +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9653_ net/minecraft/server/level/progress/StoringChunkProgressListener/delegate +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9654_ net/minecraft/server/level/progress/StoringChunkProgressListener/statuses +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9655_ net/minecraft/server/level/progress/StoringChunkProgressListener/spawnPos +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9656_ net/minecraft/server/level/progress/StoringChunkProgressListener/fullDiameter +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9657_ net/minecraft/server/level/progress/StoringChunkProgressListener/radius +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9658_ net/minecraft/server/level/progress/StoringChunkProgressListener/diameter +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9659_ net/minecraft/server/level/progress/StoringChunkProgressListener/started +FD: net/minecraft/server/network/FilteredText/f_215168_ net/minecraft/server/network/FilteredText/raw +FD: net/minecraft/server/network/FilteredText/f_243010_ net/minecraft/server/network/FilteredText/mask +FD: net/minecraft/server/network/FilteredText/f_243020_ net/minecraft/server/network/FilteredText/EMPTY +FD: net/minecraft/server/network/LegacyQueryHandler/f_143586_ net/minecraft/server/network/LegacyQueryHandler/FAKE_PROTOCOL_VERSION +FD: net/minecraft/server/network/LegacyQueryHandler/f_9675_ net/minecraft/server/network/LegacyQueryHandler/LOGGER +FD: net/minecraft/server/network/LegacyQueryHandler/f_9676_ net/minecraft/server/network/LegacyQueryHandler/serverConnectionListener +FD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/f_9688_ net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/server +FD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/f_9689_ net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/connection +FD: net/minecraft/server/network/ServerConnectionListener/f_9698_ net/minecraft/server/network/ServerConnectionListener/SERVER_EVENT_GROUP +FD: net/minecraft/server/network/ServerConnectionListener/f_9699_ net/minecraft/server/network/ServerConnectionListener/SERVER_EPOLL_EVENT_GROUP +FD: net/minecraft/server/network/ServerConnectionListener/f_9700_ net/minecraft/server/network/ServerConnectionListener/running +FD: net/minecraft/server/network/ServerConnectionListener/f_9701_ net/minecraft/server/network/ServerConnectionListener/LOGGER +FD: net/minecraft/server/network/ServerConnectionListener/f_9702_ net/minecraft/server/network/ServerConnectionListener/server +FD: net/minecraft/server/network/ServerConnectionListener/f_9703_ net/minecraft/server/network/ServerConnectionListener/channels +FD: net/minecraft/server/network/ServerConnectionListener/f_9704_ net/minecraft/server/network/ServerConnectionListener/connections +FD: net/minecraft/server/network/ServerConnectionListener$1/f_9725_ net/minecraft/server/network/ServerConnectionListener$1/this$0 +FD: net/minecraft/server/network/ServerConnectionListener$2/f_9730_ net/minecraft/server/network/ServerConnectionListener$2/this$0 +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143587_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/TIMER +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143588_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/delay +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143589_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/jitter +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143590_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/queuedMessages +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/f_143603_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/ctx +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/f_143604_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/msg +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_143608_ net/minecraft/server/network/ServerGamePacketListenerImpl/LATENCY_CHECK_INTERVAL +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215197_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastChatTimeStamp +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215198_ net/minecraft/server/network/ServerGamePacketListenerImpl/MAX_INTERACTION_DISTANCE +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215199_ net/minecraft/server/network/ServerGamePacketListenerImpl/NO_BLOCK_UPDATES_TO_ACK +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215200_ net/minecraft/server/network/ServerGamePacketListenerImpl/ackBlockChangesUpTo +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_240889_ net/minecraft/server/network/ServerGamePacketListenerImpl/signedMessageDecoder +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_241681_ net/minecraft/server/network/ServerGamePacketListenerImpl/chatMessageChain +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_243718_ net/minecraft/server/network/ServerGamePacketListenerImpl/messageSignatureCache +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_244262_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastSeenMessages +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_244304_ net/minecraft/server/network/ServerGamePacketListenerImpl/CHAT_VALIDATION_FAILED +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_244471_ net/minecraft/server/network/ServerGamePacketListenerImpl/TRACKED_MESSAGE_DISCONNECT_THRESHOLD +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_252494_ net/minecraft/server/network/ServerGamePacketListenerImpl/chatSession +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9735_ net/minecraft/server/network/ServerGamePacketListenerImpl/awaitingTeleportTime +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9736_ net/minecraft/server/network/ServerGamePacketListenerImpl/clientIsFloating +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9737_ net/minecraft/server/network/ServerGamePacketListenerImpl/aboveGroundTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9738_ net/minecraft/server/network/ServerGamePacketListenerImpl/clientVehicleIsFloating +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9739_ net/minecraft/server/network/ServerGamePacketListenerImpl/aboveGroundVehicleTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9740_ net/minecraft/server/network/ServerGamePacketListenerImpl/receivedMovePacketCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9741_ net/minecraft/server/network/ServerGamePacketListenerImpl/knownMovePacketCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9742_ net/minecraft/server/network/ServerGamePacketListenerImpl/connection +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9743_ net/minecraft/server/network/ServerGamePacketListenerImpl/player +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9744_ net/minecraft/server/network/ServerGamePacketListenerImpl/LOGGER +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9745_ net/minecraft/server/network/ServerGamePacketListenerImpl/server +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9746_ net/minecraft/server/network/ServerGamePacketListenerImpl/tickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9747_ net/minecraft/server/network/ServerGamePacketListenerImpl/keepAliveTime +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9748_ net/minecraft/server/network/ServerGamePacketListenerImpl/keepAlivePending +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9749_ net/minecraft/server/network/ServerGamePacketListenerImpl/keepAliveChallenge +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9750_ net/minecraft/server/network/ServerGamePacketListenerImpl/chatSpamTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9751_ net/minecraft/server/network/ServerGamePacketListenerImpl/dropSpamTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9753_ net/minecraft/server/network/ServerGamePacketListenerImpl/firstGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9754_ net/minecraft/server/network/ServerGamePacketListenerImpl/firstGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9755_ net/minecraft/server/network/ServerGamePacketListenerImpl/firstGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9756_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9757_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9758_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9759_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastVehicle +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9760_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleFirstGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9761_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleFirstGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9762_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleFirstGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9763_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleLastGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9764_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleLastGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9765_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleLastGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9766_ net/minecraft/server/network/ServerGamePacketListenerImpl/awaitingPositionFromClient +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9767_ net/minecraft/server/network/ServerGamePacketListenerImpl/awaitingTeleport +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/f_143670_ net/minecraft/server/network/ServerGamePacketListenerImpl$1/val$target +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/f_143671_ net/minecraft/server/network/ServerGamePacketListenerImpl$1/this$0 +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/f_243930_ net/minecraft/server/network/ServerGamePacketListenerImpl$1/val$level +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143689_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$world$level$block$entity$CommandBlockEntity$Mode +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143690_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$network$protocol$game$ServerboundPlayerActionPacket$Action +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143691_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$network$protocol$game$ServerboundPlayerCommandPacket$Action +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143692_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$network$protocol$game$ServerboundClientCommandPacket$Action +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/f_9964_ net/minecraft/server/network/ServerHandshakePacketListenerImpl/IGNORE_STATUS_REASON +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/f_9965_ net/minecraft/server/network/ServerHandshakePacketListenerImpl/server +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/f_9966_ net/minecraft/server/network/ServerHandshakePacketListenerImpl/connection +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/f_9976_ net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/$SwitchMap$net$minecraft$network$ConnectionProtocol +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10013_ net/minecraft/server/network/ServerLoginPacketListenerImpl/connection +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10014_ net/minecraft/server/network/ServerLoginPacketListenerImpl/UNIQUE_THREAD_ID +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10015_ net/minecraft/server/network/ServerLoginPacketListenerImpl/LOGGER +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10016_ net/minecraft/server/network/ServerLoginPacketListenerImpl/RANDOM +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10018_ net/minecraft/server/network/ServerLoginPacketListenerImpl/server +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10019_ net/minecraft/server/network/ServerLoginPacketListenerImpl/state +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10020_ net/minecraft/server/network/ServerLoginPacketListenerImpl/tick +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10021_ net/minecraft/server/network/ServerLoginPacketListenerImpl/gameProfile +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10022_ net/minecraft/server/network/ServerLoginPacketListenerImpl/serverId +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10024_ net/minecraft/server/network/ServerLoginPacketListenerImpl/delayedAcceptPlayer +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_143698_ net/minecraft/server/network/ServerLoginPacketListenerImpl/MAX_TICKS_BEFORE_LOGIN +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_252396_ net/minecraft/server/network/ServerLoginPacketListenerImpl/challenge +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/f_10058_ net/minecraft/server/network/ServerLoginPacketListenerImpl$1/val$digest +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/f_10059_ net/minecraft/server/network/ServerLoginPacketListenerImpl$1/this$0 +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/$VALUES net/minecraft/server/network/ServerLoginPacketListenerImpl$State/$VALUES +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ACCEPTED net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ACCEPTED +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/AUTHENTICATING net/minecraft/server/network/ServerLoginPacketListenerImpl$State/AUTHENTICATING +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/DELAY_ACCEPT net/minecraft/server/network/ServerLoginPacketListenerImpl$State/DELAY_ACCEPT +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/HELLO net/minecraft/server/network/ServerLoginPacketListenerImpl$State/HELLO +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/KEY net/minecraft/server/network/ServerLoginPacketListenerImpl$State/KEY +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/NEGOTIATING net/minecraft/server/network/ServerLoginPacketListenerImpl$State/NEGOTIATING +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/READY_TO_ACCEPT net/minecraft/server/network/ServerLoginPacketListenerImpl$State/READY_TO_ACCEPT +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_10081_ net/minecraft/server/network/ServerStatusPacketListenerImpl/DISCONNECT_REASON +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_10083_ net/minecraft/server/network/ServerStatusPacketListenerImpl/connection +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_10084_ net/minecraft/server/network/ServerStatusPacketListenerImpl/hasRequestedStatus +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_271204_ net/minecraft/server/network/ServerStatusPacketListenerImpl/status +FD: net/minecraft/server/network/TextFilter/f_143703_ net/minecraft/server/network/TextFilter/DUMMY +FD: net/minecraft/server/network/TextFilterClient/f_10098_ net/minecraft/server/network/TextFilterClient/LOGGER +FD: net/minecraft/server/network/TextFilterClient/f_10099_ net/minecraft/server/network/TextFilterClient/WORKER_COUNT +FD: net/minecraft/server/network/TextFilterClient/f_10100_ net/minecraft/server/network/TextFilterClient/THREAD_FACTORY +FD: net/minecraft/server/network/TextFilterClient/f_10101_ net/minecraft/server/network/TextFilterClient/chatEndpoint +FD: net/minecraft/server/network/TextFilterClient/f_10102_ net/minecraft/server/network/TextFilterClient/joinEndpoint +FD: net/minecraft/server/network/TextFilterClient/f_10103_ net/minecraft/server/network/TextFilterClient/leaveEndpoint +FD: net/minecraft/server/network/TextFilterClient/f_10104_ net/minecraft/server/network/TextFilterClient/authKey +FD: net/minecraft/server/network/TextFilterClient/f_10107_ net/minecraft/server/network/TextFilterClient/chatIgnoreStrategy +FD: net/minecraft/server/network/TextFilterClient/f_10108_ net/minecraft/server/network/TextFilterClient/workerPool +FD: net/minecraft/server/network/TextFilterClient/f_215270_ net/minecraft/server/network/TextFilterClient/DEFAULT_ENDPOINT +FD: net/minecraft/server/network/TextFilterClient/f_215271_ net/minecraft/server/network/TextFilterClient/chatEncoder +FD: net/minecraft/server/network/TextFilterClient/f_215272_ net/minecraft/server/network/TextFilterClient/joinEncoder +FD: net/minecraft/server/network/TextFilterClient/f_215273_ net/minecraft/server/network/TextFilterClient/leaveEncoder +FD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/f_10162_ net/minecraft/server/network/TextFilterClient$IgnoreStrategy/NEVER_IGNORE +FD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/f_10163_ net/minecraft/server/network/TextFilterClient$IgnoreStrategy/IGNORE_FULLY_FILTERED +FD: net/minecraft/server/network/TextFilterClient$PlayerContext/f_10174_ net/minecraft/server/network/TextFilterClient$PlayerContext/this$0 +FD: net/minecraft/server/network/TextFilterClient$PlayerContext/f_10175_ net/minecraft/server/network/TextFilterClient$PlayerContext/profile +FD: net/minecraft/server/network/TextFilterClient$PlayerContext/f_10176_ net/minecraft/server/network/TextFilterClient$PlayerContext/streamExecutor +FD: net/minecraft/server/packs/AbstractPackResources/f_10204_ net/minecraft/server/packs/AbstractPackResources/LOGGER +FD: net/minecraft/server/packs/AbstractPackResources/f_243737_ net/minecraft/server/packs/AbstractPackResources/name +FD: net/minecraft/server/packs/AbstractPackResources/f_254645_ net/minecraft/server/packs/AbstractPackResources/isBuiltin +FD: net/minecraft/server/packs/BuiltInMetadata/f_243980_ net/minecraft/server/packs/BuiltInMetadata/values +FD: net/minecraft/server/packs/BuiltInMetadata/f_244025_ net/minecraft/server/packs/BuiltInMetadata/EMPTY +FD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244197_ net/minecraft/server/packs/FeatureFlagsMetadataSection/flags +FD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244224_ net/minecraft/server/packs/FeatureFlagsMetadataSection/CODEC +FD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244642_ net/minecraft/server/packs/FeatureFlagsMetadataSection/TYPE +FD: net/minecraft/server/packs/FilePackResources/f_10232_ net/minecraft/server/packs/FilePackResources/SPLITTER +FD: net/minecraft/server/packs/FilePackResources/f_10233_ net/minecraft/server/packs/FilePackResources/zipFile +FD: net/minecraft/server/packs/FilePackResources/f_215322_ net/minecraft/server/packs/FilePackResources/LOGGER +FD: net/minecraft/server/packs/FilePackResources/f_243662_ net/minecraft/server/packs/FilePackResources/failedToLoad +FD: net/minecraft/server/packs/FilePackResources/f_243750_ net/minecraft/server/packs/FilePackResources/file +FD: net/minecraft/server/packs/PackResources/f_143748_ net/minecraft/server/packs/PackResources/METADATA_EXTENSION +FD: net/minecraft/server/packs/PackResources/f_143749_ net/minecraft/server/packs/PackResources/PACK_META +FD: net/minecraft/server/packs/PackType/$VALUES net/minecraft/server/packs/PackType/$VALUES +FD: net/minecraft/server/packs/PackType/CLIENT_RESOURCES net/minecraft/server/packs/PackType/CLIENT_RESOURCES +FD: net/minecraft/server/packs/PackType/SERVER_DATA net/minecraft/server/packs/PackType/SERVER_DATA +FD: net/minecraft/server/packs/PackType/f_10298_ net/minecraft/server/packs/PackType/directory +FD: net/minecraft/server/packs/PathPackResources/f_243919_ net/minecraft/server/packs/PathPackResources/root +FD: net/minecraft/server/packs/PathPackResources/f_244043_ net/minecraft/server/packs/PathPackResources/LOGGER +FD: net/minecraft/server/packs/PathPackResources/f_244478_ net/minecraft/server/packs/PathPackResources/PATH_JOINER +FD: net/minecraft/server/packs/VanillaPackResources/f_10314_ net/minecraft/server/packs/VanillaPackResources/namespaces +FD: net/minecraft/server/packs/VanillaPackResources/f_10315_ net/minecraft/server/packs/VanillaPackResources/LOGGER +FD: net/minecraft/server/packs/VanillaPackResources/f_243789_ net/minecraft/server/packs/VanillaPackResources/metadata +FD: net/minecraft/server/packs/VanillaPackResources/f_244169_ net/minecraft/server/packs/VanillaPackResources/rootPaths +FD: net/minecraft/server/packs/VanillaPackResources/f_244459_ net/minecraft/server/packs/VanillaPackResources/pathsForType +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_243924_ net/minecraft/server/packs/VanillaPackResourcesBuilder/metadata +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_243956_ net/minecraft/server/packs/VanillaPackResourcesBuilder/pathsForType +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_243987_ net/minecraft/server/packs/VanillaPackResourcesBuilder/ROOT_DIR_BY_TYPE +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244395_ net/minecraft/server/packs/VanillaPackResourcesBuilder/developmentConfig +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244434_ net/minecraft/server/packs/VanillaPackResourcesBuilder/rootPaths +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244501_ net/minecraft/server/packs/VanillaPackResourcesBuilder/LOGGER +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244548_ net/minecraft/server/packs/VanillaPackResourcesBuilder/namespaces +FD: net/minecraft/server/packs/linkfs/DummyFileAttributes/f_244405_ net/minecraft/server/packs/linkfs/DummyFileAttributes/EPOCH +FD: net/minecraft/server/packs/linkfs/LinkFSFileStore/f_244515_ net/minecraft/server/packs/linkfs/LinkFSFileStore/name +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243677_ net/minecraft/server/packs/linkfs/LinkFSPath/pathString +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243746_ net/minecraft/server/packs/linkfs/LinkFSPath/FILE_ATTRIBUTES +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243881_ net/minecraft/server/packs/linkfs/LinkFSPath/DIRECTORY_ATTRIBUTES +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243986_ net/minecraft/server/packs/linkfs/LinkFSPath/fileSystem +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244000_ net/minecraft/server/packs/linkfs/LinkFSPath/pathContents +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244015_ net/minecraft/server/packs/linkfs/LinkFSPath/pathToRoot +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244036_ net/minecraft/server/packs/linkfs/LinkFSPath/name +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244038_ net/minecraft/server/packs/linkfs/LinkFSPath/PATH_COMPARATOR +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244587_ net/minecraft/server/packs/linkfs/LinkFSPath/parent +FD: net/minecraft/server/packs/linkfs/LinkFSPath$3/f_243951_ net/minecraft/server/packs/linkfs/LinkFSPath$3/this$0 +FD: net/minecraft/server/packs/linkfs/LinkFSProvider/f_244482_ net/minecraft/server/packs/linkfs/LinkFSProvider/SCHEME +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/f_244285_ net/minecraft/server/packs/linkfs/LinkFSProvider$1/val$directoryContents +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/f_244397_ net/minecraft/server/packs/linkfs/LinkFSProvider$1/this$0 +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/f_244629_ net/minecraft/server/packs/linkfs/LinkFSProvider$1/val$filter +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$2/f_244192_ net/minecraft/server/packs/linkfs/LinkFSProvider$2/$SwitchMap$java$nio$file$AccessMode +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_243682_ net/minecraft/server/packs/linkfs/LinkFileSystem/PATH_SEPARATOR +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_243742_ net/minecraft/server/packs/linkfs/LinkFileSystem/store +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_243804_ net/minecraft/server/packs/linkfs/LinkFileSystem/VIEWS +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_244484_ net/minecraft/server/packs/linkfs/LinkFileSystem/PATH_SPLITTER +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_244566_ net/minecraft/server/packs/linkfs/LinkFileSystem/provider +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_244599_ net/minecraft/server/packs/linkfs/LinkFileSystem/root +FD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/f_244601_ net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/root +FD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244268_ net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/children +FD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244526_ net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/files +FD: net/minecraft/server/packs/linkfs/PathContents/f_244185_ net/minecraft/server/packs/linkfs/PathContents/RELATIVE +FD: net/minecraft/server/packs/linkfs/PathContents/f_244612_ net/minecraft/server/packs/linkfs/PathContents/MISSING +FD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/f_243989_ net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/children +FD: net/minecraft/server/packs/linkfs/PathContents$FileContents/f_244421_ net/minecraft/server/packs/linkfs/PathContents$FileContents/contents +FD: net/minecraft/server/packs/metadata/MetadataSectionType$1/f_243899_ net/minecraft/server/packs/metadata/MetadataSectionType$1/val$codec +FD: net/minecraft/server/packs/metadata/MetadataSectionType$1/f_244496_ net/minecraft/server/packs/metadata/MetadataSectionType$1/val$name +FD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/f_10367_ net/minecraft/server/packs/metadata/pack/PackMetadataSection/description +FD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/f_10368_ net/minecraft/server/packs/metadata/pack/PackMetadataSection/packFormat +FD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/f_243696_ net/minecraft/server/packs/metadata/pack/PackMetadataSection/TYPE +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_243761_ net/minecraft/server/packs/repository/BuiltInPackSource/VANILLA_ID +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244196_ net/minecraft/server/packs/repository/BuiltInPackSource/vanillaPack +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244468_ net/minecraft/server/packs/repository/BuiltInPackSource/packType +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244626_ net/minecraft/server/packs/repository/BuiltInPackSource/packDir +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244636_ net/minecraft/server/packs/repository/BuiltInPackSource/LOGGER +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_10382_ net/minecraft/server/packs/repository/FolderRepositorySource/folder +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_10383_ net/minecraft/server/packs/repository/FolderRepositorySource/packSource +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_243749_ net/minecraft/server/packs/repository/FolderRepositorySource/packType +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_244616_ net/minecraft/server/packs/repository/FolderRepositorySource/LOGGER +FD: net/minecraft/server/packs/repository/Pack/f_10399_ net/minecraft/server/packs/repository/Pack/LOGGER +FD: net/minecraft/server/packs/repository/Pack/f_10401_ net/minecraft/server/packs/repository/Pack/id +FD: net/minecraft/server/packs/repository/Pack/f_10403_ net/minecraft/server/packs/repository/Pack/title +FD: net/minecraft/server/packs/repository/Pack/f_10404_ net/minecraft/server/packs/repository/Pack/description +FD: net/minecraft/server/packs/repository/Pack/f_10405_ net/minecraft/server/packs/repository/Pack/compatibility +FD: net/minecraft/server/packs/repository/Pack/f_10406_ net/minecraft/server/packs/repository/Pack/defaultPosition +FD: net/minecraft/server/packs/repository/Pack/f_10407_ net/minecraft/server/packs/repository/Pack/required +FD: net/minecraft/server/packs/repository/Pack/f_10408_ net/minecraft/server/packs/repository/Pack/fixedPosition +FD: net/minecraft/server/packs/repository/Pack/f_10409_ net/minecraft/server/packs/repository/Pack/packSource +FD: net/minecraft/server/packs/repository/Pack/f_244124_ net/minecraft/server/packs/repository/Pack/resources +FD: net/minecraft/server/packs/repository/Pack/f_244623_ net/minecraft/server/packs/repository/Pack/requestedFeatures +FD: net/minecraft/server/packs/repository/Pack$Info/f_244041_ net/minecraft/server/packs/repository/Pack$Info/requestedFeatures +FD: net/minecraft/server/packs/repository/Pack$Info/f_244194_ net/minecraft/server/packs/repository/Pack$Info/format +FD: net/minecraft/server/packs/repository/Pack$Info/f_244592_ net/minecraft/server/packs/repository/Pack$Info/description +FD: net/minecraft/server/packs/repository/Pack$Position/$VALUES net/minecraft/server/packs/repository/Pack$Position/$VALUES +FD: net/minecraft/server/packs/repository/Pack$Position/BOTTOM net/minecraft/server/packs/repository/Pack$Position/BOTTOM +FD: net/minecraft/server/packs/repository/Pack$Position/TOP net/minecraft/server/packs/repository/Pack$Position/TOP +FD: net/minecraft/server/packs/repository/PackCompatibility/$VALUES net/minecraft/server/packs/repository/PackCompatibility/$VALUES +FD: net/minecraft/server/packs/repository/PackCompatibility/COMPATIBLE net/minecraft/server/packs/repository/PackCompatibility/COMPATIBLE +FD: net/minecraft/server/packs/repository/PackCompatibility/TOO_NEW net/minecraft/server/packs/repository/PackCompatibility/TOO_NEW +FD: net/minecraft/server/packs/repository/PackCompatibility/TOO_OLD net/minecraft/server/packs/repository/PackCompatibility/TOO_OLD +FD: net/minecraft/server/packs/repository/PackCompatibility/f_10481_ net/minecraft/server/packs/repository/PackCompatibility/description +FD: net/minecraft/server/packs/repository/PackCompatibility/f_10482_ net/minecraft/server/packs/repository/PackCompatibility/confirmation +FD: net/minecraft/server/packs/repository/PackRepository/f_10497_ net/minecraft/server/packs/repository/PackRepository/sources +FD: net/minecraft/server/packs/repository/PackRepository/f_10498_ net/minecraft/server/packs/repository/PackRepository/available +FD: net/minecraft/server/packs/repository/PackRepository/f_10499_ net/minecraft/server/packs/repository/PackRepository/selected +FD: net/minecraft/server/packs/repository/PackSource/f_10527_ net/minecraft/server/packs/repository/PackSource/DEFAULT +FD: net/minecraft/server/packs/repository/PackSource/f_10528_ net/minecraft/server/packs/repository/PackSource/BUILT_IN +FD: net/minecraft/server/packs/repository/PackSource/f_10529_ net/minecraft/server/packs/repository/PackSource/WORLD +FD: net/minecraft/server/packs/repository/PackSource/f_10530_ net/minecraft/server/packs/repository/PackSource/SERVER +FD: net/minecraft/server/packs/repository/PackSource/f_244201_ net/minecraft/server/packs/repository/PackSource/FEATURE +FD: net/minecraft/server/packs/repository/PackSource/f_244536_ net/minecraft/server/packs/repository/PackSource/NO_DECORATION +FD: net/minecraft/server/packs/repository/PackSource$1/f_244157_ net/minecraft/server/packs/repository/PackSource$1/val$decorator +FD: net/minecraft/server/packs/repository/PackSource$1/f_244499_ net/minecraft/server/packs/repository/PackSource$1/val$addAutomatically +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_143904_ net/minecraft/server/packs/repository/ServerPacksSource/BUILT_IN_METADATA +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_243665_ net/minecraft/server/packs/repository/ServerPacksSource/VANILLA_NAME +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_244259_ net/minecraft/server/packs/repository/ServerPacksSource/VERSION_METADATA_SECTION +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_244456_ net/minecraft/server/packs/repository/ServerPacksSource/FEATURE_FLAGS_METADATA_SECTION +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_244487_ net/minecraft/server/packs/repository/ServerPacksSource/PACKS_DIR +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10599_ net/minecraft/server/packs/resources/FallbackResourceManager/fallbacks +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10600_ net/minecraft/server/packs/resources/FallbackResourceManager/LOGGER +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10601_ net/minecraft/server/packs/resources/FallbackResourceManager/type +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10602_ net/minecraft/server/packs/resources/FallbackResourceManager/namespace +FD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_243853_ net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packResources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244005_ net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/resource +FD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244110_ net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packIndex +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_215420_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metadataLocation +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_243777_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metaSources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244329_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileSources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244439_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileLocation +FD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/f_10630_ net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/message +FD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/f_10631_ net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/closed +FD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215432_ net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/name +FD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215433_ net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/resources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215434_ net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/filter +FD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244214_ net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/source +FD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244331_ net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/resource +FD: net/minecraft/server/packs/resources/MultiPackResourceManager/f_203794_ net/minecraft/server/packs/resources/MultiPackResourceManager/namespacedManagers +FD: net/minecraft/server/packs/resources/MultiPackResourceManager/f_203795_ net/minecraft/server/packs/resources/MultiPackResourceManager/packs +FD: net/minecraft/server/packs/resources/MultiPackResourceManager/f_215463_ net/minecraft/server/packs/resources/MultiPackResourceManager/LOGGER +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance/f_10645_ net/minecraft/server/packs/resources/ProfiledReloadInstance/LOGGER +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance/f_10646_ net/minecraft/server/packs/resources/ProfiledReloadInstance/total +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10686_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/name +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10687_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/preparationResult +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10688_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/reloadResult +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10689_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/preparationNanos +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10690_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/reloadNanos +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203814_ net/minecraft/server/packs/resources/ReloadableResourceManager/LOGGER +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203815_ net/minecraft/server/packs/resources/ReloadableResourceManager/resources +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203816_ net/minecraft/server/packs/resources/ReloadableResourceManager/listeners +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203817_ net/minecraft/server/packs/resources/ReloadableResourceManager/type +FD: net/minecraft/server/packs/resources/Resource/f_215496_ net/minecraft/server/packs/resources/Resource/streamSupplier +FD: net/minecraft/server/packs/resources/Resource/f_215497_ net/minecraft/server/packs/resources/Resource/metadataSupplier +FD: net/minecraft/server/packs/resources/Resource/f_215498_ net/minecraft/server/packs/resources/Resource/cachedMetadata +FD: net/minecraft/server/packs/resources/Resource/f_244326_ net/minecraft/server/packs/resources/Resource/source +FD: net/minecraft/server/packs/resources/ResourceFilterSection/f_215514_ net/minecraft/server/packs/resources/ResourceFilterSection/CODEC +FD: net/minecraft/server/packs/resources/ResourceFilterSection/f_215515_ net/minecraft/server/packs/resources/ResourceFilterSection/blockList +FD: net/minecraft/server/packs/resources/ResourceFilterSection/f_244163_ net/minecraft/server/packs/resources/ResourceFilterSection/TYPE +FD: net/minecraft/server/packs/resources/ResourceManager$Empty/$VALUES net/minecraft/server/packs/resources/ResourceManager$Empty/$VALUES +FD: net/minecraft/server/packs/resources/ResourceManager$Empty/INSTANCE net/minecraft/server/packs/resources/ResourceManager$Empty/INSTANCE +FD: net/minecraft/server/packs/resources/ResourceMetadata/f_215577_ net/minecraft/server/packs/resources/ResourceMetadata/EMPTY +FD: net/minecraft/server/packs/resources/ResourceMetadata/f_244068_ net/minecraft/server/packs/resources/ResourceMetadata/EMPTY_SUPPLIER +FD: net/minecraft/server/packs/resources/ResourceMetadata$2/f_215585_ net/minecraft/server/packs/resources/ResourceMetadata$2/val$metadata +FD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/f_10762_ net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/LOGGER +FD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/f_10764_ net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/gson +FD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/f_10765_ net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/directory +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10799_ net/minecraft/server/packs/resources/SimpleReloadInstance/allPreparations +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10800_ net/minecraft/server/packs/resources/SimpleReloadInstance/allDone +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10801_ net/minecraft/server/packs/resources/SimpleReloadInstance/preparingListeners +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10802_ net/minecraft/server/packs/resources/SimpleReloadInstance/listenerCount +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10803_ net/minecraft/server/packs/resources/SimpleReloadInstance/startedReloads +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10804_ net/minecraft/server/packs/resources/SimpleReloadInstance/finishedReloads +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10805_ net/minecraft/server/packs/resources/SimpleReloadInstance/startedTaskCounter +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10806_ net/minecraft/server/packs/resources/SimpleReloadInstance/doneTaskCounter +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_143937_ net/minecraft/server/packs/resources/SimpleReloadInstance/PREPARATION_PROGRESS_WEIGHT +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_143938_ net/minecraft/server/packs/resources/SimpleReloadInstance/EXTRA_RELOAD_PROGRESS_WEIGHT +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_143939_ net/minecraft/server/packs/resources/SimpleReloadInstance/LISTENER_PROGRESS_WEIGHT +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10846_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/val$mainThreadExecutor +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10847_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/val$listener +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10848_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/val$previousTask +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10849_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/this$0 +FD: net/minecraft/server/players/BanListEntry/f_10943_ net/minecraft/server/players/BanListEntry/DATE_FORMAT +FD: net/minecraft/server/players/BanListEntry/f_10944_ net/minecraft/server/players/BanListEntry/created +FD: net/minecraft/server/players/BanListEntry/f_10945_ net/minecraft/server/players/BanListEntry/source +FD: net/minecraft/server/players/BanListEntry/f_10946_ net/minecraft/server/players/BanListEntry/expires +FD: net/minecraft/server/players/BanListEntry/f_10947_ net/minecraft/server/players/BanListEntry/reason +FD: net/minecraft/server/players/BanListEntry/f_143953_ net/minecraft/server/players/BanListEntry/EXPIRES_NEVER +FD: net/minecraft/server/players/GameProfileCache/f_10964_ net/minecraft/server/players/GameProfileCache/LOGGER +FD: net/minecraft/server/players/GameProfileCache/f_10965_ net/minecraft/server/players/GameProfileCache/usesAuthentication +FD: net/minecraft/server/players/GameProfileCache/f_10966_ net/minecraft/server/players/GameProfileCache/profilesByName +FD: net/minecraft/server/players/GameProfileCache/f_10967_ net/minecraft/server/players/GameProfileCache/profilesByUUID +FD: net/minecraft/server/players/GameProfileCache/f_10968_ net/minecraft/server/players/GameProfileCache/profileRepository +FD: net/minecraft/server/players/GameProfileCache/f_10969_ net/minecraft/server/players/GameProfileCache/gson +FD: net/minecraft/server/players/GameProfileCache/f_10970_ net/minecraft/server/players/GameProfileCache/file +FD: net/minecraft/server/players/GameProfileCache/f_10971_ net/minecraft/server/players/GameProfileCache/operationCount +FD: net/minecraft/server/players/GameProfileCache/f_143955_ net/minecraft/server/players/GameProfileCache/GAMEPROFILES_MRU_LIMIT +FD: net/minecraft/server/players/GameProfileCache/f_143956_ net/minecraft/server/players/GameProfileCache/GAMEPROFILES_EXPIRATION_MONTHS +FD: net/minecraft/server/players/GameProfileCache/f_143957_ net/minecraft/server/players/GameProfileCache/requests +FD: net/minecraft/server/players/GameProfileCache/f_143958_ net/minecraft/server/players/GameProfileCache/executor +FD: net/minecraft/server/players/GameProfileCache$1/f_11010_ net/minecraft/server/players/GameProfileCache$1/val$result +FD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/f_11018_ net/minecraft/server/players/GameProfileCache$GameProfileInfo/profile +FD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/f_11019_ net/minecraft/server/players/GameProfileCache$GameProfileInfo/expirationDate +FD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/f_11020_ net/minecraft/server/players/GameProfileCache$GameProfileInfo/lastAccess +FD: net/minecraft/server/players/OldUsersConverter/f_11062_ net/minecraft/server/players/OldUsersConverter/OLD_IPBANLIST +FD: net/minecraft/server/players/OldUsersConverter/f_11063_ net/minecraft/server/players/OldUsersConverter/OLD_USERBANLIST +FD: net/minecraft/server/players/OldUsersConverter/f_11064_ net/minecraft/server/players/OldUsersConverter/OLD_OPLIST +FD: net/minecraft/server/players/OldUsersConverter/f_11065_ net/minecraft/server/players/OldUsersConverter/OLD_WHITELIST +FD: net/minecraft/server/players/OldUsersConverter/f_11066_ net/minecraft/server/players/OldUsersConverter/LOGGER +FD: net/minecraft/server/players/OldUsersConverter$1/f_11112_ net/minecraft/server/players/OldUsersConverter$1/val$server +FD: net/minecraft/server/players/OldUsersConverter$1/f_11113_ net/minecraft/server/players/OldUsersConverter$1/val$userMap +FD: net/minecraft/server/players/OldUsersConverter$1/f_11114_ net/minecraft/server/players/OldUsersConverter$1/val$bans +FD: net/minecraft/server/players/OldUsersConverter$2/f_11124_ net/minecraft/server/players/OldUsersConverter$2/val$server +FD: net/minecraft/server/players/OldUsersConverter$2/f_11125_ net/minecraft/server/players/OldUsersConverter$2/val$opsList +FD: net/minecraft/server/players/OldUsersConverter$3/f_11134_ net/minecraft/server/players/OldUsersConverter$3/val$server +FD: net/minecraft/server/players/OldUsersConverter$3/f_11135_ net/minecraft/server/players/OldUsersConverter$3/val$whitelist +FD: net/minecraft/server/players/OldUsersConverter$4/f_11144_ net/minecraft/server/players/OldUsersConverter$4/val$server +FD: net/minecraft/server/players/OldUsersConverter$4/f_11145_ net/minecraft/server/players/OldUsersConverter$4/val$profiles +FD: net/minecraft/server/players/OldUsersConverter$5/f_11154_ net/minecraft/server/players/OldUsersConverter$5/val$server +FD: net/minecraft/server/players/OldUsersConverter$5/f_11155_ net/minecraft/server/players/OldUsersConverter$5/val$worldNewPlayerDirectory +FD: net/minecraft/server/players/OldUsersConverter$5/f_11156_ net/minecraft/server/players/OldUsersConverter$5/val$unknownPlayerDirectory +FD: net/minecraft/server/players/OldUsersConverter$5/f_11157_ net/minecraft/server/players/OldUsersConverter$5/val$worldPlayerDirectory +FD: net/minecraft/server/players/OldUsersConverter$5/f_11158_ net/minecraft/server/players/OldUsersConverter$5/val$names +FD: net/minecraft/server/players/PlayerList/f_11188_ net/minecraft/server/players/PlayerList/LOGGER +FD: net/minecraft/server/players/PlayerList/f_11189_ net/minecraft/server/players/PlayerList/USERBANLIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11190_ net/minecraft/server/players/PlayerList/IPBANLIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11191_ net/minecraft/server/players/PlayerList/OPLIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11192_ net/minecraft/server/players/PlayerList/WHITELIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11193_ net/minecraft/server/players/PlayerList/maxPlayers +FD: net/minecraft/server/players/PlayerList/f_11194_ net/minecraft/server/players/PlayerList/BAN_DATE_FORMAT +FD: net/minecraft/server/players/PlayerList/f_11195_ net/minecraft/server/players/PlayerList/server +FD: net/minecraft/server/players/PlayerList/f_11196_ net/minecraft/server/players/PlayerList/players +FD: net/minecraft/server/players/PlayerList/f_11197_ net/minecraft/server/players/PlayerList/playersByUUID +FD: net/minecraft/server/players/PlayerList/f_11198_ net/minecraft/server/players/PlayerList/bans +FD: net/minecraft/server/players/PlayerList/f_11199_ net/minecraft/server/players/PlayerList/ipBans +FD: net/minecraft/server/players/PlayerList/f_11200_ net/minecraft/server/players/PlayerList/ops +FD: net/minecraft/server/players/PlayerList/f_11201_ net/minecraft/server/players/PlayerList/whitelist +FD: net/minecraft/server/players/PlayerList/f_11202_ net/minecraft/server/players/PlayerList/stats +FD: net/minecraft/server/players/PlayerList/f_11203_ net/minecraft/server/players/PlayerList/advancements +FD: net/minecraft/server/players/PlayerList/f_11204_ net/minecraft/server/players/PlayerList/playerIo +FD: net/minecraft/server/players/PlayerList/f_11205_ net/minecraft/server/players/PlayerList/doWhiteList +FD: net/minecraft/server/players/PlayerList/f_11207_ net/minecraft/server/players/PlayerList/viewDistance +FD: net/minecraft/server/players/PlayerList/f_11209_ net/minecraft/server/players/PlayerList/allowCheatsForAllPlayers +FD: net/minecraft/server/players/PlayerList/f_11210_ net/minecraft/server/players/PlayerList/sendAllPlayerInfoIn +FD: net/minecraft/server/players/PlayerList/f_143987_ net/minecraft/server/players/PlayerList/SEND_PLAYER_INFO_INTERVAL +FD: net/minecraft/server/players/PlayerList/f_143988_ net/minecraft/server/players/PlayerList/ALLOW_LOGOUTIVATOR +FD: net/minecraft/server/players/PlayerList/f_184208_ net/minecraft/server/players/PlayerList/simulationDistance +FD: net/minecraft/server/players/PlayerList/f_243017_ net/minecraft/server/players/PlayerList/CHAT_FILTERED_FULL +FD: net/minecraft/server/players/PlayerList/f_243858_ net/minecraft/server/players/PlayerList/registries +FD: net/minecraft/server/players/PlayerList/f_256838_ net/minecraft/server/players/PlayerList/synchronizedRegistries +FD: net/minecraft/server/players/PlayerList$1/f_11317_ net/minecraft/server/players/PlayerList$1/this$0 +FD: net/minecraft/server/players/ServerOpListEntry/f_11355_ net/minecraft/server/players/ServerOpListEntry/level +FD: net/minecraft/server/players/ServerOpListEntry/f_11356_ net/minecraft/server/players/ServerOpListEntry/bypassesPlayerLimit +FD: net/minecraft/server/players/SleepStatus/f_143998_ net/minecraft/server/players/SleepStatus/activePlayers +FD: net/minecraft/server/players/SleepStatus/f_143999_ net/minecraft/server/players/SleepStatus/sleepingPlayers +FD: net/minecraft/server/players/StoredUserEntry/f_11369_ net/minecraft/server/players/StoredUserEntry/user +FD: net/minecraft/server/players/StoredUserList/f_11374_ net/minecraft/server/players/StoredUserList/LOGGER +FD: net/minecraft/server/players/StoredUserList/f_11375_ net/minecraft/server/players/StoredUserList/GSON +FD: net/minecraft/server/players/StoredUserList/f_11376_ net/minecraft/server/players/StoredUserList/file +FD: net/minecraft/server/players/StoredUserList/f_11377_ net/minecraft/server/players/StoredUserList/map +FD: net/minecraft/server/rcon/NetworkDataOutputStream/f_11467_ net/minecraft/server/rcon/NetworkDataOutputStream/outputStream +FD: net/minecraft/server/rcon/NetworkDataOutputStream/f_11468_ net/minecraft/server/rcon/NetworkDataOutputStream/dataOutputStream +FD: net/minecraft/server/rcon/PktUtils/f_11481_ net/minecraft/server/rcon/PktUtils/HEX_CHAR +FD: net/minecraft/server/rcon/PktUtils/f_144020_ net/minecraft/server/rcon/PktUtils/MAX_PACKET_SIZE +FD: net/minecraft/server/rcon/RconConsoleSource/f_11500_ net/minecraft/server/rcon/RconConsoleSource/RCON_COMPONENT +FD: net/minecraft/server/rcon/RconConsoleSource/f_11501_ net/minecraft/server/rcon/RconConsoleSource/buffer +FD: net/minecraft/server/rcon/RconConsoleSource/f_11502_ net/minecraft/server/rcon/RconConsoleSource/server +FD: net/minecraft/server/rcon/RconConsoleSource/f_144022_ net/minecraft/server/rcon/RconConsoleSource/RCON +FD: net/minecraft/server/rcon/thread/GenericThread/f_11515_ net/minecraft/server/rcon/thread/GenericThread/running +FD: net/minecraft/server/rcon/thread/GenericThread/f_11516_ net/minecraft/server/rcon/thread/GenericThread/name +FD: net/minecraft/server/rcon/thread/GenericThread/f_11517_ net/minecraft/server/rcon/thread/GenericThread/thread +FD: net/minecraft/server/rcon/thread/GenericThread/f_11518_ net/minecraft/server/rcon/thread/GenericThread/LOGGER +FD: net/minecraft/server/rcon/thread/GenericThread/f_11519_ net/minecraft/server/rcon/thread/GenericThread/UNIQUE_THREAD_ID +FD: net/minecraft/server/rcon/thread/GenericThread/f_144023_ net/minecraft/server/rcon/thread/GenericThread/MAX_STOP_WAIT +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11524_ net/minecraft/server/rcon/thread/QueryThreadGs4/LOGGER +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11525_ net/minecraft/server/rcon/thread/QueryThreadGs4/lastChallengeCheck +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11526_ net/minecraft/server/rcon/thread/QueryThreadGs4/port +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11527_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverPort +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11528_ net/minecraft/server/rcon/thread/QueryThreadGs4/maxPlayers +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11529_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverName +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11530_ net/minecraft/server/rcon/thread/QueryThreadGs4/worldName +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11531_ net/minecraft/server/rcon/thread/QueryThreadGs4/socket +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11532_ net/minecraft/server/rcon/thread/QueryThreadGs4/buffer +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11533_ net/minecraft/server/rcon/thread/QueryThreadGs4/hostIp +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11534_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverIp +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11535_ net/minecraft/server/rcon/thread/QueryThreadGs4/validChallenges +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11536_ net/minecraft/server/rcon/thread/QueryThreadGs4/rulesResponse +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11537_ net/minecraft/server/rcon/thread/QueryThreadGs4/lastRulesResponse +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11538_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverInterface +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144024_ net/minecraft/server/rcon/thread/QueryThreadGs4/GAME_TYPE +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144025_ net/minecraft/server/rcon/thread/QueryThreadGs4/GAME_ID +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144026_ net/minecraft/server/rcon/thread/QueryThreadGs4/CHALLENGE_CHECK_INTERVAL +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144027_ net/minecraft/server/rcon/thread/QueryThreadGs4/RESPONSE_CACHE_TIME +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11567_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/time +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11568_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/challenge +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11569_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/identBytes +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11570_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/challengeBytes +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11571_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/ident +FD: net/minecraft/server/rcon/thread/RconClient/f_11579_ net/minecraft/server/rcon/thread/RconClient/LOGGER +FD: net/minecraft/server/rcon/thread/RconClient/f_11580_ net/minecraft/server/rcon/thread/RconClient/authed +FD: net/minecraft/server/rcon/thread/RconClient/f_11581_ net/minecraft/server/rcon/thread/RconClient/client +FD: net/minecraft/server/rcon/thread/RconClient/f_11582_ net/minecraft/server/rcon/thread/RconClient/buf +FD: net/minecraft/server/rcon/thread/RconClient/f_11583_ net/minecraft/server/rcon/thread/RconClient/rconPassword +FD: net/minecraft/server/rcon/thread/RconClient/f_11584_ net/minecraft/server/rcon/thread/RconClient/serverInterface +FD: net/minecraft/server/rcon/thread/RconClient/f_144029_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_AUTH +FD: net/minecraft/server/rcon/thread/RconClient/f_144030_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_EXECCOMMAND +FD: net/minecraft/server/rcon/thread/RconClient/f_144031_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_RESPONSE_VALUE +FD: net/minecraft/server/rcon/thread/RconClient/f_144032_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_AUTH_RESPONSE +FD: net/minecraft/server/rcon/thread/RconClient/f_144033_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_AUTH_FAILURE +FD: net/minecraft/server/rcon/thread/RconThread/f_11601_ net/minecraft/server/rcon/thread/RconThread/LOGGER +FD: net/minecraft/server/rcon/thread/RconThread/f_11602_ net/minecraft/server/rcon/thread/RconThread/socket +FD: net/minecraft/server/rcon/thread/RconThread/f_11603_ net/minecraft/server/rcon/thread/RconThread/rconPassword +FD: net/minecraft/server/rcon/thread/RconThread/f_11604_ net/minecraft/server/rcon/thread/RconThread/clients +FD: net/minecraft/server/rcon/thread/RconThread/f_11605_ net/minecraft/server/rcon/thread/RconThread/serverInterface +FD: net/minecraft/sounds/Music/f_11620_ net/minecraft/sounds/Music/CODEC +FD: net/minecraft/sounds/Music/f_11621_ net/minecraft/sounds/Music/event +FD: net/minecraft/sounds/Music/f_11622_ net/minecraft/sounds/Music/minDelay +FD: net/minecraft/sounds/Music/f_11623_ net/minecraft/sounds/Music/maxDelay +FD: net/minecraft/sounds/Music/f_11624_ net/minecraft/sounds/Music/replaceCurrentMusic +FD: net/minecraft/sounds/Musics/f_11645_ net/minecraft/sounds/Musics/MENU +FD: net/minecraft/sounds/Musics/f_11646_ net/minecraft/sounds/Musics/CREATIVE +FD: net/minecraft/sounds/Musics/f_11647_ net/minecraft/sounds/Musics/CREDITS +FD: net/minecraft/sounds/Musics/f_11648_ net/minecraft/sounds/Musics/END_BOSS +FD: net/minecraft/sounds/Musics/f_11649_ net/minecraft/sounds/Musics/END +FD: net/minecraft/sounds/Musics/f_11650_ net/minecraft/sounds/Musics/UNDER_WATER +FD: net/minecraft/sounds/Musics/f_11651_ net/minecraft/sounds/Musics/GAME +FD: net/minecraft/sounds/Musics/f_144042_ net/minecraft/sounds/Musics/ONE_SECOND +FD: net/minecraft/sounds/Musics/f_144043_ net/minecraft/sounds/Musics/THIRTY_SECONDS +FD: net/minecraft/sounds/Musics/f_144044_ net/minecraft/sounds/Musics/TEN_MINUTES +FD: net/minecraft/sounds/Musics/f_144045_ net/minecraft/sounds/Musics/TWENTY_MINUTES +FD: net/minecraft/sounds/Musics/f_144046_ net/minecraft/sounds/Musics/FIVE_MINUTES +FD: net/minecraft/sounds/SoundEvent/f_11656_ net/minecraft/sounds/SoundEvent/location +FD: net/minecraft/sounds/SoundEvent/f_215659_ net/minecraft/sounds/SoundEvent/range +FD: net/minecraft/sounds/SoundEvent/f_215660_ net/minecraft/sounds/SoundEvent/newSystem +FD: net/minecraft/sounds/SoundEvent/f_262723_ net/minecraft/sounds/SoundEvent/DEFAULT_RANGE +FD: net/minecraft/sounds/SoundEvent/f_263124_ net/minecraft/sounds/SoundEvent/DIRECT_CODEC +FD: net/minecraft/sounds/SoundEvent/f_263130_ net/minecraft/sounds/SoundEvent/CODEC +FD: net/minecraft/sounds/SoundEvents/f_11663_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11664_ net/minecraft/sounds/SoundEvents/ANVIL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11665_ net/minecraft/sounds/SoundEvents/ANVIL_DESTROY +FD: net/minecraft/sounds/SoundEvents/f_11666_ net/minecraft/sounds/SoundEvents/ANVIL_FALL +FD: net/minecraft/sounds/SoundEvents/f_11667_ net/minecraft/sounds/SoundEvents/ANVIL_HIT +FD: net/minecraft/sounds/SoundEvents/f_11668_ net/minecraft/sounds/SoundEvents/ANVIL_LAND +FD: net/minecraft/sounds/SoundEvents/f_11669_ net/minecraft/sounds/SoundEvents/ANVIL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11670_ net/minecraft/sounds/SoundEvents/ANVIL_STEP +FD: net/minecraft/sounds/SoundEvents/f_11671_ net/minecraft/sounds/SoundEvents/ANVIL_USE +FD: net/minecraft/sounds/SoundEvents/f_11672_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_CHAIN +FD: net/minecraft/sounds/SoundEvents/f_11673_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_DIAMOND +FD: net/minecraft/sounds/SoundEvents/f_11674_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_ELYTRA +FD: net/minecraft/sounds/SoundEvents/f_11675_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_GENERIC +FD: net/minecraft/sounds/SoundEvents/f_11676_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_GOLD +FD: net/minecraft/sounds/SoundEvents/f_11677_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_IRON +FD: net/minecraft/sounds/SoundEvents/f_11678_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_LEATHER +FD: net/minecraft/sounds/SoundEvents/f_11679_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_NETHERITE +FD: net/minecraft/sounds/SoundEvents/f_11680_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_TURTLE +FD: net/minecraft/sounds/SoundEvents/f_11681_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11682_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_11683_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_11684_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11685_ net/minecraft/sounds/SoundEvents/ARROW_HIT +FD: net/minecraft/sounds/SoundEvents/f_11686_ net/minecraft/sounds/SoundEvents/ARROW_HIT_PLAYER +FD: net/minecraft/sounds/SoundEvents/f_11687_ net/minecraft/sounds/SoundEvents/ARROW_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11688_ net/minecraft/sounds/SoundEvents/AXE_STRIP +FD: net/minecraft/sounds/SoundEvents/f_11689_ net/minecraft/sounds/SoundEvents/AMBIENT_CAVE +FD: net/minecraft/sounds/SoundEvents/f_11690_ net/minecraft/sounds/SoundEvents/BEE_LOOP_AGGRESSIVE +FD: net/minecraft/sounds/SoundEvents/f_11691_ net/minecraft/sounds/SoundEvents/BEE_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11692_ net/minecraft/sounds/SoundEvents/BEE_STING +FD: net/minecraft/sounds/SoundEvents/f_11693_ net/minecraft/sounds/SoundEvents/BEE_POLLINATE +FD: net/minecraft/sounds/SoundEvents/f_11694_ net/minecraft/sounds/SoundEvents/BEEHIVE_DRIP +FD: net/minecraft/sounds/SoundEvents/f_11695_ net/minecraft/sounds/SoundEvents/BEEHIVE_ENTER +FD: net/minecraft/sounds/SoundEvents/f_11696_ net/minecraft/sounds/SoundEvents/BEEHIVE_EXIT +FD: net/minecraft/sounds/SoundEvents/f_11697_ net/minecraft/sounds/SoundEvents/BEEHIVE_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_11698_ net/minecraft/sounds/SoundEvents/BEEHIVE_WORK +FD: net/minecraft/sounds/SoundEvents/f_11699_ net/minecraft/sounds/SoundEvents/BELL_BLOCK +FD: net/minecraft/sounds/SoundEvents/f_11700_ net/minecraft/sounds/SoundEvents/BELL_RESONATE +FD: net/minecraft/sounds/SoundEvents/f_11701_ net/minecraft/sounds/SoundEvents/BLAZE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11702_ net/minecraft/sounds/SoundEvents/BLAZE_BURN +FD: net/minecraft/sounds/SoundEvents/f_11703_ net/minecraft/sounds/SoundEvents/BLAZE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11704_ net/minecraft/sounds/SoundEvents/BLAZE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11705_ net/minecraft/sounds/SoundEvents/BLAZE_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11706_ net/minecraft/sounds/SoundEvents/BOAT_PADDLE_LAND +FD: net/minecraft/sounds/SoundEvents/f_11707_ net/minecraft/sounds/SoundEvents/BOAT_PADDLE_WATER +FD: net/minecraft/sounds/SoundEvents/f_11708_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11709_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_11710_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_11711_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11712_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_11713_ net/minecraft/sounds/SoundEvents/BOOK_PAGE_TURN +FD: net/minecraft/sounds/SoundEvents/f_11714_ net/minecraft/sounds/SoundEvents/BOOK_PUT +FD: net/minecraft/sounds/SoundEvents/f_11715_ net/minecraft/sounds/SoundEvents/BLASTFURNACE_FIRE_CRACKLE +FD: net/minecraft/sounds/SoundEvents/f_11716_ net/minecraft/sounds/SoundEvents/BAMBOO_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11717_ net/minecraft/sounds/SoundEvents/BAMBOO_FALL +FD: net/minecraft/sounds/SoundEvents/f_11718_ net/minecraft/sounds/SoundEvents/BAMBOO_HIT +FD: net/minecraft/sounds/SoundEvents/f_11719_ net/minecraft/sounds/SoundEvents/BAMBOO_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11720_ net/minecraft/sounds/SoundEvents/BAMBOO_STEP +FD: net/minecraft/sounds/SoundEvents/f_11721_ net/minecraft/sounds/SoundEvents/BAMBOO_SAPLING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11722_ net/minecraft/sounds/SoundEvents/BAMBOO_SAPLING_HIT +FD: net/minecraft/sounds/SoundEvents/f_11723_ net/minecraft/sounds/SoundEvents/BAMBOO_SAPLING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11724_ net/minecraft/sounds/SoundEvents/BARREL_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11725_ net/minecraft/sounds/SoundEvents/BARREL_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11726_ net/minecraft/sounds/SoundEvents/BASALT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11727_ net/minecraft/sounds/SoundEvents/BASALT_STEP +FD: net/minecraft/sounds/SoundEvents/f_11728_ net/minecraft/sounds/SoundEvents/BASALT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11729_ net/minecraft/sounds/SoundEvents/BASALT_HIT +FD: net/minecraft/sounds/SoundEvents/f_11730_ net/minecraft/sounds/SoundEvents/BASALT_FALL +FD: net/minecraft/sounds/SoundEvents/f_11731_ net/minecraft/sounds/SoundEvents/BAT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11732_ net/minecraft/sounds/SoundEvents/BAT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11733_ net/minecraft/sounds/SoundEvents/BAT_HURT +FD: net/minecraft/sounds/SoundEvents/f_11734_ net/minecraft/sounds/SoundEvents/BAT_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11735_ net/minecraft/sounds/SoundEvents/BAT_TAKEOFF +FD: net/minecraft/sounds/SoundEvents/f_11736_ net/minecraft/sounds/SoundEvents/BEACON_ACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11737_ net/minecraft/sounds/SoundEvents/BEACON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11738_ net/minecraft/sounds/SoundEvents/BEACON_DEACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11739_ net/minecraft/sounds/SoundEvents/BEACON_POWER_SELECT +FD: net/minecraft/sounds/SoundEvents/f_11740_ net/minecraft/sounds/SoundEvents/BEE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11741_ net/minecraft/sounds/SoundEvents/BEE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11742_ net/minecraft/sounds/SoundEvents/AMBIENT_BASALT_DELTAS_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_11743_ net/minecraft/sounds/SoundEvents/CHAIN_FALL +FD: net/minecraft/sounds/SoundEvents/f_11744_ net/minecraft/sounds/SoundEvents/CHAIN_HIT +FD: net/minecraft/sounds/SoundEvents/f_11745_ net/minecraft/sounds/SoundEvents/CHAIN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11746_ net/minecraft/sounds/SoundEvents/CHAIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_11747_ net/minecraft/sounds/SoundEvents/CHEST_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11748_ net/minecraft/sounds/SoundEvents/CHEST_LOCKED +FD: net/minecraft/sounds/SoundEvents/f_11749_ net/minecraft/sounds/SoundEvents/CHEST_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11750_ net/minecraft/sounds/SoundEvents/CHICKEN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11751_ net/minecraft/sounds/SoundEvents/CHICKEN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11752_ net/minecraft/sounds/SoundEvents/CHICKEN_EGG +FD: net/minecraft/sounds/SoundEvents/f_11753_ net/minecraft/sounds/SoundEvents/CHICKEN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11754_ net/minecraft/sounds/SoundEvents/CHICKEN_STEP +FD: net/minecraft/sounds/SoundEvents/f_11755_ net/minecraft/sounds/SoundEvents/CHORUS_FLOWER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11756_ net/minecraft/sounds/SoundEvents/CHORUS_FLOWER_GROW +FD: net/minecraft/sounds/SoundEvents/f_11757_ net/minecraft/sounds/SoundEvents/CHORUS_FRUIT_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_11758_ net/minecraft/sounds/SoundEvents/COD_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11759_ net/minecraft/sounds/SoundEvents/COD_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11760_ net/minecraft/sounds/SoundEvents/COD_FLOP +FD: net/minecraft/sounds/SoundEvents/f_11761_ net/minecraft/sounds/SoundEvents/COD_HURT +FD: net/minecraft/sounds/SoundEvents/f_11762_ net/minecraft/sounds/SoundEvents/COMPARATOR_CLICK +FD: net/minecraft/sounds/SoundEvents/f_11763_ net/minecraft/sounds/SoundEvents/COMPOSTER_EMPTY +FD: net/minecraft/sounds/SoundEvents/f_11764_ net/minecraft/sounds/SoundEvents/COMPOSTER_FILL +FD: net/minecraft/sounds/SoundEvents/f_11765_ net/minecraft/sounds/SoundEvents/COMPOSTER_FILL_SUCCESS +FD: net/minecraft/sounds/SoundEvents/f_11766_ net/minecraft/sounds/SoundEvents/COMPOSTER_READY +FD: net/minecraft/sounds/SoundEvents/f_11767_ net/minecraft/sounds/SoundEvents/CONDUIT_ACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11768_ net/minecraft/sounds/SoundEvents/CONDUIT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11769_ net/minecraft/sounds/SoundEvents/BOTTLE_EMPTY +FD: net/minecraft/sounds/SoundEvents/f_11770_ net/minecraft/sounds/SoundEvents/BOTTLE_FILL +FD: net/minecraft/sounds/SoundEvents/f_11771_ net/minecraft/sounds/SoundEvents/BOTTLE_FILL_DRAGONBREATH +FD: net/minecraft/sounds/SoundEvents/f_11772_ net/minecraft/sounds/SoundEvents/BREWING_STAND_BREW +FD: net/minecraft/sounds/SoundEvents/f_11773_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_BUBBLE_POP +FD: net/minecraft/sounds/SoundEvents/f_11774_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_UPWARDS_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11775_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_UPWARDS_INSIDE +FD: net/minecraft/sounds/SoundEvents/f_11776_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_WHIRLPOOL_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11777_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_WHIRLPOOL_INSIDE +FD: net/minecraft/sounds/SoundEvents/f_11778_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY +FD: net/minecraft/sounds/SoundEvents/f_11779_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_FISH +FD: net/minecraft/sounds/SoundEvents/f_11780_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_LAVA +FD: net/minecraft/sounds/SoundEvents/f_11781_ net/minecraft/sounds/SoundEvents/BUCKET_FILL +FD: net/minecraft/sounds/SoundEvents/f_11782_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_FISH +FD: net/minecraft/sounds/SoundEvents/f_11783_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_LAVA +FD: net/minecraft/sounds/SoundEvents/f_11784_ net/minecraft/sounds/SoundEvents/CAMPFIRE_CRACKLE +FD: net/minecraft/sounds/SoundEvents/f_11785_ net/minecraft/sounds/SoundEvents/CAT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11786_ net/minecraft/sounds/SoundEvents/CAT_STRAY_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11787_ net/minecraft/sounds/SoundEvents/CAT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11788_ net/minecraft/sounds/SoundEvents/CAT_EAT +FD: net/minecraft/sounds/SoundEvents/f_11789_ net/minecraft/sounds/SoundEvents/CAT_HISS +FD: net/minecraft/sounds/SoundEvents/f_11790_ net/minecraft/sounds/SoundEvents/CAT_BEG_FOR_FOOD +FD: net/minecraft/sounds/SoundEvents/f_11791_ net/minecraft/sounds/SoundEvents/CAT_HURT +FD: net/minecraft/sounds/SoundEvents/f_11792_ net/minecraft/sounds/SoundEvents/CAT_PURR +FD: net/minecraft/sounds/SoundEvents/f_11793_ net/minecraft/sounds/SoundEvents/CAT_PURREOW +FD: net/minecraft/sounds/SoundEvents/f_11794_ net/minecraft/sounds/SoundEvents/CHAIN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11795_ net/minecraft/sounds/SoundEvents/AMBIENT_BASALT_DELTAS_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11796_ net/minecraft/sounds/SoundEvents/DISPENSER_DISPENSE +FD: net/minecraft/sounds/SoundEvents/f_11797_ net/minecraft/sounds/SoundEvents/DISPENSER_FAIL +FD: net/minecraft/sounds/SoundEvents/f_11798_ net/minecraft/sounds/SoundEvents/DISPENSER_LAUNCH +FD: net/minecraft/sounds/SoundEvents/f_11799_ net/minecraft/sounds/SoundEvents/DOLPHIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11800_ net/minecraft/sounds/SoundEvents/DOLPHIN_AMBIENT_WATER +FD: net/minecraft/sounds/SoundEvents/f_11801_ net/minecraft/sounds/SoundEvents/DOLPHIN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11802_ net/minecraft/sounds/SoundEvents/DOLPHIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11803_ net/minecraft/sounds/SoundEvents/DOLPHIN_EAT +FD: net/minecraft/sounds/SoundEvents/f_11804_ net/minecraft/sounds/SoundEvents/DOLPHIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11805_ net/minecraft/sounds/SoundEvents/DOLPHIN_JUMP +FD: net/minecraft/sounds/SoundEvents/f_11806_ net/minecraft/sounds/SoundEvents/DOLPHIN_PLAY +FD: net/minecraft/sounds/SoundEvents/f_11807_ net/minecraft/sounds/SoundEvents/DOLPHIN_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_11808_ net/minecraft/sounds/SoundEvents/DOLPHIN_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11809_ net/minecraft/sounds/SoundEvents/DONKEY_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11810_ net/minecraft/sounds/SoundEvents/DONKEY_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_11811_ net/minecraft/sounds/SoundEvents/DONKEY_CHEST +FD: net/minecraft/sounds/SoundEvents/f_11812_ net/minecraft/sounds/SoundEvents/DONKEY_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11813_ net/minecraft/sounds/SoundEvents/DONKEY_EAT +FD: net/minecraft/sounds/SoundEvents/f_11814_ net/minecraft/sounds/SoundEvents/DONKEY_HURT +FD: net/minecraft/sounds/SoundEvents/f_11815_ net/minecraft/sounds/SoundEvents/DROWNED_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11816_ net/minecraft/sounds/SoundEvents/DROWNED_AMBIENT_WATER +FD: net/minecraft/sounds/SoundEvents/f_11817_ net/minecraft/sounds/SoundEvents/DROWNED_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11818_ net/minecraft/sounds/SoundEvents/DROWNED_DEATH_WATER +FD: net/minecraft/sounds/SoundEvents/f_11819_ net/minecraft/sounds/SoundEvents/DROWNED_HURT +FD: net/minecraft/sounds/SoundEvents/f_11820_ net/minecraft/sounds/SoundEvents/DROWNED_HURT_WATER +FD: net/minecraft/sounds/SoundEvents/f_11821_ net/minecraft/sounds/SoundEvents/DROWNED_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11822_ net/minecraft/sounds/SoundEvents/CONDUIT_AMBIENT_SHORT +FD: net/minecraft/sounds/SoundEvents/f_11823_ net/minecraft/sounds/SoundEvents/CONDUIT_ATTACK_TARGET +FD: net/minecraft/sounds/SoundEvents/f_11824_ net/minecraft/sounds/SoundEvents/CONDUIT_DEACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11825_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11826_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_11827_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_11828_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11829_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_11830_ net/minecraft/sounds/SoundEvents/COW_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11831_ net/minecraft/sounds/SoundEvents/COW_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11832_ net/minecraft/sounds/SoundEvents/COW_HURT +FD: net/minecraft/sounds/SoundEvents/f_11833_ net/minecraft/sounds/SoundEvents/COW_MILK +FD: net/minecraft/sounds/SoundEvents/f_11834_ net/minecraft/sounds/SoundEvents/COW_STEP +FD: net/minecraft/sounds/SoundEvents/f_11835_ net/minecraft/sounds/SoundEvents/CREEPER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11836_ net/minecraft/sounds/SoundEvents/CREEPER_HURT +FD: net/minecraft/sounds/SoundEvents/f_11837_ net/minecraft/sounds/SoundEvents/CREEPER_PRIMED +FD: net/minecraft/sounds/SoundEvents/f_11838_ net/minecraft/sounds/SoundEvents/CROP_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11839_ net/minecraft/sounds/SoundEvents/CROP_PLANTED +FD: net/minecraft/sounds/SoundEvents/f_11840_ net/minecraft/sounds/SoundEvents/CROSSBOW_HIT +FD: net/minecraft/sounds/SoundEvents/f_11841_ net/minecraft/sounds/SoundEvents/CROSSBOW_LOADING_END +FD: net/minecraft/sounds/SoundEvents/f_11842_ net/minecraft/sounds/SoundEvents/CROSSBOW_LOADING_MIDDLE +FD: net/minecraft/sounds/SoundEvents/f_11843_ net/minecraft/sounds/SoundEvents/CROSSBOW_LOADING_START +FD: net/minecraft/sounds/SoundEvents/f_11844_ net/minecraft/sounds/SoundEvents/CROSSBOW_QUICK_CHARGE_1 +FD: net/minecraft/sounds/SoundEvents/f_11845_ net/minecraft/sounds/SoundEvents/CROSSBOW_QUICK_CHARGE_2 +FD: net/minecraft/sounds/SoundEvents/f_11846_ net/minecraft/sounds/SoundEvents/CROSSBOW_QUICK_CHARGE_3 +FD: net/minecraft/sounds/SoundEvents/f_11847_ net/minecraft/sounds/SoundEvents/CROSSBOW_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11848_ net/minecraft/sounds/SoundEvents/AMBIENT_BASALT_DELTAS_MOOD +FD: net/minecraft/sounds/SoundEvents/f_11849_ net/minecraft/sounds/SoundEvents/ENDERMAN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11850_ net/minecraft/sounds/SoundEvents/ENDERMAN_SCREAM +FD: net/minecraft/sounds/SoundEvents/f_11851_ net/minecraft/sounds/SoundEvents/ENDERMAN_STARE +FD: net/minecraft/sounds/SoundEvents/f_11852_ net/minecraft/sounds/SoundEvents/ENDERMAN_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_11853_ net/minecraft/sounds/SoundEvents/ENDERMITE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11854_ net/minecraft/sounds/SoundEvents/ENDERMITE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11855_ net/minecraft/sounds/SoundEvents/ENDERMITE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11856_ net/minecraft/sounds/SoundEvents/ENDERMITE_STEP +FD: net/minecraft/sounds/SoundEvents/f_11857_ net/minecraft/sounds/SoundEvents/ENDER_PEARL_THROW +FD: net/minecraft/sounds/SoundEvents/f_11858_ net/minecraft/sounds/SoundEvents/END_GATEWAY_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_11859_ net/minecraft/sounds/SoundEvents/END_PORTAL_FRAME_FILL +FD: net/minecraft/sounds/SoundEvents/f_11860_ net/minecraft/sounds/SoundEvents/END_PORTAL_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_11861_ net/minecraft/sounds/SoundEvents/EVOKER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11862_ net/minecraft/sounds/SoundEvents/EVOKER_CAST_SPELL +FD: net/minecraft/sounds/SoundEvents/f_11863_ net/minecraft/sounds/SoundEvents/EVOKER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_11864_ net/minecraft/sounds/SoundEvents/EVOKER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11865_ net/minecraft/sounds/SoundEvents/EVOKER_FANGS_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11866_ net/minecraft/sounds/SoundEvents/EVOKER_HURT +FD: net/minecraft/sounds/SoundEvents/f_11867_ net/minecraft/sounds/SoundEvents/EVOKER_PREPARE_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11868_ net/minecraft/sounds/SoundEvents/EVOKER_PREPARE_SUMMON +FD: net/minecraft/sounds/SoundEvents/f_11869_ net/minecraft/sounds/SoundEvents/EVOKER_PREPARE_WOLOLO +FD: net/minecraft/sounds/SoundEvents/f_11870_ net/minecraft/sounds/SoundEvents/EXPERIENCE_BOTTLE_THROW +FD: net/minecraft/sounds/SoundEvents/f_11871_ net/minecraft/sounds/SoundEvents/EXPERIENCE_ORB_PICKUP +FD: net/minecraft/sounds/SoundEvents/f_11872_ net/minecraft/sounds/SoundEvents/FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11873_ net/minecraft/sounds/SoundEvents/FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11874_ net/minecraft/sounds/SoundEvents/FIRECHARGE_USE +FD: net/minecraft/sounds/SoundEvents/f_11875_ net/minecraft/sounds/SoundEvents/DROWNED_STEP +FD: net/minecraft/sounds/SoundEvents/f_11876_ net/minecraft/sounds/SoundEvents/DROWNED_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11877_ net/minecraft/sounds/SoundEvents/EGG_THROW +FD: net/minecraft/sounds/SoundEvents/f_11878_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11879_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_AMBIENT_LAND +FD: net/minecraft/sounds/SoundEvents/f_11880_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_CURSE +FD: net/minecraft/sounds/SoundEvents/f_11881_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11882_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_DEATH_LAND +FD: net/minecraft/sounds/SoundEvents/f_11883_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_FLOP +FD: net/minecraft/sounds/SoundEvents/f_11884_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11885_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_HURT_LAND +FD: net/minecraft/sounds/SoundEvents/f_11886_ net/minecraft/sounds/SoundEvents/ELYTRA_FLYING +FD: net/minecraft/sounds/SoundEvents/f_11887_ net/minecraft/sounds/SoundEvents/ENCHANTMENT_TABLE_USE +FD: net/minecraft/sounds/SoundEvents/f_11888_ net/minecraft/sounds/SoundEvents/ENDER_CHEST_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11889_ net/minecraft/sounds/SoundEvents/ENDER_CHEST_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11890_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11891_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11892_ net/minecraft/sounds/SoundEvents/DRAGON_FIREBALL_EXPLODE +FD: net/minecraft/sounds/SoundEvents/f_11893_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_FLAP +FD: net/minecraft/sounds/SoundEvents/f_11894_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_GROWL +FD: net/minecraft/sounds/SoundEvents/f_11895_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_HURT +FD: net/minecraft/sounds/SoundEvents/f_11896_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11897_ net/minecraft/sounds/SoundEvents/ENDER_EYE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11898_ net/minecraft/sounds/SoundEvents/ENDER_EYE_LAUNCH +FD: net/minecraft/sounds/SoundEvents/f_11899_ net/minecraft/sounds/SoundEvents/ENDERMAN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11900_ net/minecraft/sounds/SoundEvents/ENDERMAN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11901_ net/minecraft/sounds/SoundEvents/AMBIENT_CRIMSON_FOREST_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_11902_ net/minecraft/sounds/SoundEvents/ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11903_ net/minecraft/sounds/SoundEvents/ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_11904_ net/minecraft/sounds/SoundEvents/ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11905_ net/minecraft/sounds/SoundEvents/ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_11906_ net/minecraft/sounds/SoundEvents/ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11907_ net/minecraft/sounds/SoundEvents/FURNACE_FIRE_CRACKLE +FD: net/minecraft/sounds/SoundEvents/f_11908_ net/minecraft/sounds/SoundEvents/GENERIC_BIG_FALL +FD: net/minecraft/sounds/SoundEvents/f_11909_ net/minecraft/sounds/SoundEvents/GENERIC_BURN +FD: net/minecraft/sounds/SoundEvents/f_11910_ net/minecraft/sounds/SoundEvents/GENERIC_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11911_ net/minecraft/sounds/SoundEvents/GENERIC_DRINK +FD: net/minecraft/sounds/SoundEvents/f_11912_ net/minecraft/sounds/SoundEvents/GENERIC_EAT +FD: net/minecraft/sounds/SoundEvents/f_11913_ net/minecraft/sounds/SoundEvents/GENERIC_EXPLODE +FD: net/minecraft/sounds/SoundEvents/f_11914_ net/minecraft/sounds/SoundEvents/GENERIC_EXTINGUISH_FIRE +FD: net/minecraft/sounds/SoundEvents/f_11915_ net/minecraft/sounds/SoundEvents/GENERIC_HURT +FD: net/minecraft/sounds/SoundEvents/f_11916_ net/minecraft/sounds/SoundEvents/GENERIC_SMALL_FALL +FD: net/minecraft/sounds/SoundEvents/f_11917_ net/minecraft/sounds/SoundEvents/GENERIC_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_11918_ net/minecraft/sounds/SoundEvents/GENERIC_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11919_ net/minecraft/sounds/SoundEvents/GHAST_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11920_ net/minecraft/sounds/SoundEvents/GHAST_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11921_ net/minecraft/sounds/SoundEvents/GHAST_HURT +FD: net/minecraft/sounds/SoundEvents/f_11922_ net/minecraft/sounds/SoundEvents/GHAST_SCREAM +FD: net/minecraft/sounds/SoundEvents/f_11923_ net/minecraft/sounds/SoundEvents/GHAST_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11924_ net/minecraft/sounds/SoundEvents/GHAST_WARN +FD: net/minecraft/sounds/SoundEvents/f_11925_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11926_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_11927_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_11928_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_BLAST +FD: net/minecraft/sounds/SoundEvents/f_11929_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_BLAST_FAR +FD: net/minecraft/sounds/SoundEvents/f_11930_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_LARGE_BLAST +FD: net/minecraft/sounds/SoundEvents/f_11931_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_LARGE_BLAST_FAR +FD: net/minecraft/sounds/SoundEvents/f_11932_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_LAUNCH +FD: net/minecraft/sounds/SoundEvents/f_11933_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11934_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_TWINKLE +FD: net/minecraft/sounds/SoundEvents/f_11935_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_TWINKLE_FAR +FD: net/minecraft/sounds/SoundEvents/f_11936_ net/minecraft/sounds/SoundEvents/FIRE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11937_ net/minecraft/sounds/SoundEvents/FIRE_EXTINGUISH +FD: net/minecraft/sounds/SoundEvents/f_11938_ net/minecraft/sounds/SoundEvents/FISH_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11939_ net/minecraft/sounds/SoundEvents/FISHING_BOBBER_RETRIEVE +FD: net/minecraft/sounds/SoundEvents/f_11940_ net/minecraft/sounds/SoundEvents/FISHING_BOBBER_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_11941_ net/minecraft/sounds/SoundEvents/FISHING_BOBBER_THROW +FD: net/minecraft/sounds/SoundEvents/f_11942_ net/minecraft/sounds/SoundEvents/FLINTANDSTEEL_USE +FD: net/minecraft/sounds/SoundEvents/f_11943_ net/minecraft/sounds/SoundEvents/FOX_AGGRO +FD: net/minecraft/sounds/SoundEvents/f_11944_ net/minecraft/sounds/SoundEvents/FOX_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11945_ net/minecraft/sounds/SoundEvents/FOX_BITE +FD: net/minecraft/sounds/SoundEvents/f_11946_ net/minecraft/sounds/SoundEvents/FOX_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11947_ net/minecraft/sounds/SoundEvents/FOX_EAT +FD: net/minecraft/sounds/SoundEvents/f_11948_ net/minecraft/sounds/SoundEvents/FOX_HURT +FD: net/minecraft/sounds/SoundEvents/f_11949_ net/minecraft/sounds/SoundEvents/FOX_SCREECH +FD: net/minecraft/sounds/SoundEvents/f_11950_ net/minecraft/sounds/SoundEvents/FOX_SLEEP +FD: net/minecraft/sounds/SoundEvents/f_11951_ net/minecraft/sounds/SoundEvents/FOX_SNIFF +FD: net/minecraft/sounds/SoundEvents/f_11952_ net/minecraft/sounds/SoundEvents/FOX_SPIT +FD: net/minecraft/sounds/SoundEvents/f_11953_ net/minecraft/sounds/SoundEvents/FOX_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_11954_ net/minecraft/sounds/SoundEvents/AMBIENT_CRIMSON_FOREST_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11955_ net/minecraft/sounds/SoundEvents/HOE_TILL +FD: net/minecraft/sounds/SoundEvents/f_11956_ net/minecraft/sounds/SoundEvents/HOGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11957_ net/minecraft/sounds/SoundEvents/HOGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_11958_ net/minecraft/sounds/SoundEvents/HOGLIN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11959_ net/minecraft/sounds/SoundEvents/HOGLIN_CONVERTED_TO_ZOMBIFIED +FD: net/minecraft/sounds/SoundEvents/f_11960_ net/minecraft/sounds/SoundEvents/HOGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11961_ net/minecraft/sounds/SoundEvents/HOGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11962_ net/minecraft/sounds/SoundEvents/HOGLIN_RETREAT +FD: net/minecraft/sounds/SoundEvents/f_11963_ net/minecraft/sounds/SoundEvents/HOGLIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_11964_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11965_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_11966_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_11967_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11968_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_SLIDE +FD: net/minecraft/sounds/SoundEvents/f_11969_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_11970_ net/minecraft/sounds/SoundEvents/HONEY_DRINK +FD: net/minecraft/sounds/SoundEvents/f_11971_ net/minecraft/sounds/SoundEvents/HORSE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11972_ net/minecraft/sounds/SoundEvents/HORSE_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_11973_ net/minecraft/sounds/SoundEvents/HORSE_ARMOR +FD: net/minecraft/sounds/SoundEvents/f_11974_ net/minecraft/sounds/SoundEvents/HORSE_BREATHE +FD: net/minecraft/sounds/SoundEvents/f_11975_ net/minecraft/sounds/SoundEvents/HORSE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11976_ net/minecraft/sounds/SoundEvents/HORSE_EAT +FD: net/minecraft/sounds/SoundEvents/f_11977_ net/minecraft/sounds/SoundEvents/HORSE_GALLOP +FD: net/minecraft/sounds/SoundEvents/f_11978_ net/minecraft/sounds/SoundEvents/HORSE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11979_ net/minecraft/sounds/SoundEvents/HORSE_JUMP +FD: net/minecraft/sounds/SoundEvents/f_11980_ net/minecraft/sounds/SoundEvents/HORSE_LAND +FD: net/minecraft/sounds/SoundEvents/f_11981_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11982_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_11983_ net/minecraft/sounds/SoundEvents/GLASS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11984_ net/minecraft/sounds/SoundEvents/GLASS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11985_ net/minecraft/sounds/SoundEvents/GLASS_HIT +FD: net/minecraft/sounds/SoundEvents/f_11986_ net/minecraft/sounds/SoundEvents/GLASS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11987_ net/minecraft/sounds/SoundEvents/GLASS_STEP +FD: net/minecraft/sounds/SoundEvents/f_11988_ net/minecraft/sounds/SoundEvents/GRASS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11989_ net/minecraft/sounds/SoundEvents/GRASS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11990_ net/minecraft/sounds/SoundEvents/GRASS_HIT +FD: net/minecraft/sounds/SoundEvents/f_11991_ net/minecraft/sounds/SoundEvents/GRASS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11992_ net/minecraft/sounds/SoundEvents/GRASS_STEP +FD: net/minecraft/sounds/SoundEvents/f_11993_ net/minecraft/sounds/SoundEvents/GRAVEL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11994_ net/minecraft/sounds/SoundEvents/GRAVEL_FALL +FD: net/minecraft/sounds/SoundEvents/f_11995_ net/minecraft/sounds/SoundEvents/GRAVEL_HIT +FD: net/minecraft/sounds/SoundEvents/f_11996_ net/minecraft/sounds/SoundEvents/GRAVEL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11997_ net/minecraft/sounds/SoundEvents/GRAVEL_STEP +FD: net/minecraft/sounds/SoundEvents/f_11998_ net/minecraft/sounds/SoundEvents/GRINDSTONE_USE +FD: net/minecraft/sounds/SoundEvents/f_11999_ net/minecraft/sounds/SoundEvents/GUARDIAN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12000_ net/minecraft/sounds/SoundEvents/GUARDIAN_AMBIENT_LAND +FD: net/minecraft/sounds/SoundEvents/f_12001_ net/minecraft/sounds/SoundEvents/GUARDIAN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12002_ net/minecraft/sounds/SoundEvents/GUARDIAN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12003_ net/minecraft/sounds/SoundEvents/GUARDIAN_DEATH_LAND +FD: net/minecraft/sounds/SoundEvents/f_12004_ net/minecraft/sounds/SoundEvents/GUARDIAN_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12005_ net/minecraft/sounds/SoundEvents/GUARDIAN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12006_ net/minecraft/sounds/SoundEvents/GUARDIAN_HURT_LAND +FD: net/minecraft/sounds/SoundEvents/f_12007_ net/minecraft/sounds/SoundEvents/AMBIENT_CRIMSON_FOREST_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12008_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_HURT +FD: net/minecraft/sounds/SoundEvents/f_12009_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_REPAIR +FD: net/minecraft/sounds/SoundEvents/f_12010_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_STEP +FD: net/minecraft/sounds/SoundEvents/f_12011_ net/minecraft/sounds/SoundEvents/IRON_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12012_ net/minecraft/sounds/SoundEvents/IRON_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12013_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_ADD_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12014_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12015_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12016_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_REMOVE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12017_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_ROTATE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12018_ net/minecraft/sounds/SoundEvents/ITEM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12019_ net/minecraft/sounds/SoundEvents/ITEM_PICKUP +FD: net/minecraft/sounds/SoundEvents/f_12020_ net/minecraft/sounds/SoundEvents/LADDER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12021_ net/minecraft/sounds/SoundEvents/LADDER_FALL +FD: net/minecraft/sounds/SoundEvents/f_12022_ net/minecraft/sounds/SoundEvents/LADDER_HIT +FD: net/minecraft/sounds/SoundEvents/f_12023_ net/minecraft/sounds/SoundEvents/LADDER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12024_ net/minecraft/sounds/SoundEvents/LADDER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12025_ net/minecraft/sounds/SoundEvents/LANTERN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12026_ net/minecraft/sounds/SoundEvents/LANTERN_FALL +FD: net/minecraft/sounds/SoundEvents/f_12027_ net/minecraft/sounds/SoundEvents/LANTERN_HIT +FD: net/minecraft/sounds/SoundEvents/f_12028_ net/minecraft/sounds/SoundEvents/LANTERN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12029_ net/minecraft/sounds/SoundEvents/LANTERN_STEP +FD: net/minecraft/sounds/SoundEvents/f_12030_ net/minecraft/sounds/SoundEvents/LAVA_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12031_ net/minecraft/sounds/SoundEvents/LAVA_EXTINGUISH +FD: net/minecraft/sounds/SoundEvents/f_12032_ net/minecraft/sounds/SoundEvents/LAVA_POP +FD: net/minecraft/sounds/SoundEvents/f_12033_ net/minecraft/sounds/SoundEvents/LEASH_KNOT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12034_ net/minecraft/sounds/SoundEvents/HORSE_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_12035_ net/minecraft/sounds/SoundEvents/HORSE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12036_ net/minecraft/sounds/SoundEvents/HORSE_STEP_WOOD +FD: net/minecraft/sounds/SoundEvents/f_12037_ net/minecraft/sounds/SoundEvents/HOSTILE_BIG_FALL +FD: net/minecraft/sounds/SoundEvents/f_12038_ net/minecraft/sounds/SoundEvents/HOSTILE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12039_ net/minecraft/sounds/SoundEvents/HOSTILE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12040_ net/minecraft/sounds/SoundEvents/HOSTILE_SMALL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12041_ net/minecraft/sounds/SoundEvents/HOSTILE_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_12042_ net/minecraft/sounds/SoundEvents/HOSTILE_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12043_ net/minecraft/sounds/SoundEvents/HUSK_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12044_ net/minecraft/sounds/SoundEvents/HUSK_CONVERTED_TO_ZOMBIE +FD: net/minecraft/sounds/SoundEvents/f_12045_ net/minecraft/sounds/SoundEvents/HUSK_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12046_ net/minecraft/sounds/SoundEvents/HUSK_HURT +FD: net/minecraft/sounds/SoundEvents/f_12047_ net/minecraft/sounds/SoundEvents/HUSK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12048_ net/minecraft/sounds/SoundEvents/ILLUSIONER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12049_ net/minecraft/sounds/SoundEvents/ILLUSIONER_CAST_SPELL +FD: net/minecraft/sounds/SoundEvents/f_12050_ net/minecraft/sounds/SoundEvents/ILLUSIONER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12051_ net/minecraft/sounds/SoundEvents/ILLUSIONER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12052_ net/minecraft/sounds/SoundEvents/ILLUSIONER_MIRROR_MOVE +FD: net/minecraft/sounds/SoundEvents/f_12053_ net/minecraft/sounds/SoundEvents/ILLUSIONER_PREPARE_BLINDNESS +FD: net/minecraft/sounds/SoundEvents/f_12054_ net/minecraft/sounds/SoundEvents/ILLUSIONER_PREPARE_MIRROR +FD: net/minecraft/sounds/SoundEvents/f_12055_ net/minecraft/sounds/SoundEvents/IRON_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12056_ net/minecraft/sounds/SoundEvents/IRON_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12057_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12058_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_DAMAGE +FD: net/minecraft/sounds/SoundEvents/f_12059_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12060_ net/minecraft/sounds/SoundEvents/AMBIENT_NETHER_WASTES_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12061_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_SQUISH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12062_ net/minecraft/sounds/SoundEvents/METAL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12063_ net/minecraft/sounds/SoundEvents/METAL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12064_ net/minecraft/sounds/SoundEvents/METAL_HIT +FD: net/minecraft/sounds/SoundEvents/f_12065_ net/minecraft/sounds/SoundEvents/METAL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12066_ net/minecraft/sounds/SoundEvents/METAL_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12067_ net/minecraft/sounds/SoundEvents/METAL_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12068_ net/minecraft/sounds/SoundEvents/METAL_STEP +FD: net/minecraft/sounds/SoundEvents/f_12069_ net/minecraft/sounds/SoundEvents/MINECART_INSIDE +FD: net/minecraft/sounds/SoundEvents/f_12070_ net/minecraft/sounds/SoundEvents/MINECART_RIDING +FD: net/minecraft/sounds/SoundEvents/f_12071_ net/minecraft/sounds/SoundEvents/MOOSHROOM_CONVERT +FD: net/minecraft/sounds/SoundEvents/f_12072_ net/minecraft/sounds/SoundEvents/MOOSHROOM_EAT +FD: net/minecraft/sounds/SoundEvents/f_12073_ net/minecraft/sounds/SoundEvents/MOOSHROOM_MILK +FD: net/minecraft/sounds/SoundEvents/f_12074_ net/minecraft/sounds/SoundEvents/MOOSHROOM_MILK_SUSPICIOUSLY +FD: net/minecraft/sounds/SoundEvents/f_12075_ net/minecraft/sounds/SoundEvents/MOOSHROOM_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_12076_ net/minecraft/sounds/SoundEvents/MULE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12077_ net/minecraft/sounds/SoundEvents/MULE_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12078_ net/minecraft/sounds/SoundEvents/MULE_CHEST +FD: net/minecraft/sounds/SoundEvents/f_12079_ net/minecraft/sounds/SoundEvents/MULE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12080_ net/minecraft/sounds/SoundEvents/MULE_EAT +FD: net/minecraft/sounds/SoundEvents/f_12081_ net/minecraft/sounds/SoundEvents/MULE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12082_ net/minecraft/sounds/SoundEvents/MUSIC_CREATIVE +FD: net/minecraft/sounds/SoundEvents/f_12083_ net/minecraft/sounds/SoundEvents/MUSIC_CREDITS +FD: net/minecraft/sounds/SoundEvents/f_12084_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_11 +FD: net/minecraft/sounds/SoundEvents/f_12085_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_13 +FD: net/minecraft/sounds/SoundEvents/f_12086_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_BLOCKS +FD: net/minecraft/sounds/SoundEvents/f_12087_ net/minecraft/sounds/SoundEvents/LEASH_KNOT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12088_ net/minecraft/sounds/SoundEvents/LEVER_CLICK +FD: net/minecraft/sounds/SoundEvents/f_12089_ net/minecraft/sounds/SoundEvents/LIGHTNING_BOLT_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_12090_ net/minecraft/sounds/SoundEvents/LIGHTNING_BOLT_THUNDER +FD: net/minecraft/sounds/SoundEvents/f_12091_ net/minecraft/sounds/SoundEvents/LINGERING_POTION_THROW +FD: net/minecraft/sounds/SoundEvents/f_12092_ net/minecraft/sounds/SoundEvents/LLAMA_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12093_ net/minecraft/sounds/SoundEvents/LLAMA_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12094_ net/minecraft/sounds/SoundEvents/LLAMA_CHEST +FD: net/minecraft/sounds/SoundEvents/f_12095_ net/minecraft/sounds/SoundEvents/LLAMA_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12096_ net/minecraft/sounds/SoundEvents/LLAMA_EAT +FD: net/minecraft/sounds/SoundEvents/f_12097_ net/minecraft/sounds/SoundEvents/LLAMA_HURT +FD: net/minecraft/sounds/SoundEvents/f_12098_ net/minecraft/sounds/SoundEvents/LLAMA_SPIT +FD: net/minecraft/sounds/SoundEvents/f_12099_ net/minecraft/sounds/SoundEvents/LLAMA_STEP +FD: net/minecraft/sounds/SoundEvents/f_12100_ net/minecraft/sounds/SoundEvents/LLAMA_SWAG +FD: net/minecraft/sounds/SoundEvents/f_12101_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_DEATH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12102_ net/minecraft/sounds/SoundEvents/LODESTONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12103_ net/minecraft/sounds/SoundEvents/LODESTONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12104_ net/minecraft/sounds/SoundEvents/LODESTONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12105_ net/minecraft/sounds/SoundEvents/LODESTONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12106_ net/minecraft/sounds/SoundEvents/LODESTONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12107_ net/minecraft/sounds/SoundEvents/LODESTONE_COMPASS_LOCK +FD: net/minecraft/sounds/SoundEvents/f_12108_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12109_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12110_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_HURT_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12111_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_JUMP +FD: net/minecraft/sounds/SoundEvents/f_12112_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_SQUISH +FD: net/minecraft/sounds/SoundEvents/f_12113_ net/minecraft/sounds/SoundEvents/AMBIENT_NETHER_WASTES_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12114_ net/minecraft/sounds/SoundEvents/NETHER_WART_PLANTED +FD: net/minecraft/sounds/SoundEvents/f_12115_ net/minecraft/sounds/SoundEvents/STEM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12116_ net/minecraft/sounds/SoundEvents/STEM_STEP +FD: net/minecraft/sounds/SoundEvents/f_12117_ net/minecraft/sounds/SoundEvents/STEM_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12118_ net/minecraft/sounds/SoundEvents/STEM_HIT +FD: net/minecraft/sounds/SoundEvents/f_12119_ net/minecraft/sounds/SoundEvents/STEM_FALL +FD: net/minecraft/sounds/SoundEvents/f_12120_ net/minecraft/sounds/SoundEvents/NYLIUM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12121_ net/minecraft/sounds/SoundEvents/NYLIUM_STEP +FD: net/minecraft/sounds/SoundEvents/f_12122_ net/minecraft/sounds/SoundEvents/NYLIUM_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12123_ net/minecraft/sounds/SoundEvents/NYLIUM_HIT +FD: net/minecraft/sounds/SoundEvents/f_12124_ net/minecraft/sounds/SoundEvents/NYLIUM_FALL +FD: net/minecraft/sounds/SoundEvents/f_12125_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12126_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12127_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12128_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12129_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12130_ net/minecraft/sounds/SoundEvents/FUNGUS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12131_ net/minecraft/sounds/SoundEvents/FUNGUS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12132_ net/minecraft/sounds/SoundEvents/FUNGUS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12133_ net/minecraft/sounds/SoundEvents/FUNGUS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12134_ net/minecraft/sounds/SoundEvents/FUNGUS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12135_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12136_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_STEP +FD: net/minecraft/sounds/SoundEvents/f_12137_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12138_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_HIT +FD: net/minecraft/sounds/SoundEvents/f_12139_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_FALL +FD: net/minecraft/sounds/SoundEvents/f_12140_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_CAT +FD: net/minecraft/sounds/SoundEvents/f_12141_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_CHIRP +FD: net/minecraft/sounds/SoundEvents/f_12142_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_FAR +FD: net/minecraft/sounds/SoundEvents/f_12143_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_MALL +FD: net/minecraft/sounds/SoundEvents/f_12144_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_MELLOHI +FD: net/minecraft/sounds/SoundEvents/f_12145_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_PIGSTEP +FD: net/minecraft/sounds/SoundEvents/f_12146_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_STAL +FD: net/minecraft/sounds/SoundEvents/f_12147_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_STRAD +FD: net/minecraft/sounds/SoundEvents/f_12148_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_WAIT +FD: net/minecraft/sounds/SoundEvents/f_12149_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_WARD +FD: net/minecraft/sounds/SoundEvents/f_12150_ net/minecraft/sounds/SoundEvents/MUSIC_DRAGON +FD: net/minecraft/sounds/SoundEvents/f_12151_ net/minecraft/sounds/SoundEvents/MUSIC_END +FD: net/minecraft/sounds/SoundEvents/f_12152_ net/minecraft/sounds/SoundEvents/MUSIC_GAME +FD: net/minecraft/sounds/SoundEvents/f_12153_ net/minecraft/sounds/SoundEvents/MUSIC_MENU +FD: net/minecraft/sounds/SoundEvents/f_12154_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_BASALT_DELTAS +FD: net/minecraft/sounds/SoundEvents/f_12155_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_NETHER_WASTES +FD: net/minecraft/sounds/SoundEvents/f_12156_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SOUL_SAND_VALLEY +FD: net/minecraft/sounds/SoundEvents/f_12157_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_CRIMSON_FOREST +FD: net/minecraft/sounds/SoundEvents/f_12158_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_WARPED_FOREST +FD: net/minecraft/sounds/SoundEvents/f_12159_ net/minecraft/sounds/SoundEvents/MUSIC_UNDER_WATER +FD: net/minecraft/sounds/SoundEvents/f_12160_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12161_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12162_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12163_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12164_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12165_ net/minecraft/sounds/SoundEvents/NETHER_WART_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12166_ net/minecraft/sounds/SoundEvents/AMBIENT_NETHER_WASTES_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12167_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IRON_XYLOPHONE +FD: net/minecraft/sounds/SoundEvents/f_12168_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_COW_BELL +FD: net/minecraft/sounds/SoundEvents/f_12169_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_DIDGERIDOO +FD: net/minecraft/sounds/SoundEvents/f_12170_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BIT +FD: net/minecraft/sounds/SoundEvents/f_12171_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BANJO +FD: net/minecraft/sounds/SoundEvents/f_12172_ net/minecraft/sounds/SoundEvents/OCELOT_HURT +FD: net/minecraft/sounds/SoundEvents/f_12173_ net/minecraft/sounds/SoundEvents/OCELOT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12174_ net/minecraft/sounds/SoundEvents/OCELOT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12175_ net/minecraft/sounds/SoundEvents/PAINTING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12176_ net/minecraft/sounds/SoundEvents/PAINTING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12177_ net/minecraft/sounds/SoundEvents/PANDA_PRE_SNEEZE +FD: net/minecraft/sounds/SoundEvents/f_12178_ net/minecraft/sounds/SoundEvents/PANDA_SNEEZE +FD: net/minecraft/sounds/SoundEvents/f_12179_ net/minecraft/sounds/SoundEvents/PANDA_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12180_ net/minecraft/sounds/SoundEvents/PANDA_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12181_ net/minecraft/sounds/SoundEvents/PANDA_EAT +FD: net/minecraft/sounds/SoundEvents/f_12182_ net/minecraft/sounds/SoundEvents/PANDA_STEP +FD: net/minecraft/sounds/SoundEvents/f_12183_ net/minecraft/sounds/SoundEvents/PANDA_CANT_BREED +FD: net/minecraft/sounds/SoundEvents/f_12184_ net/minecraft/sounds/SoundEvents/PANDA_AGGRESSIVE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12185_ net/minecraft/sounds/SoundEvents/PANDA_WORRIED_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12186_ net/minecraft/sounds/SoundEvents/PANDA_HURT +FD: net/minecraft/sounds/SoundEvents/f_12187_ net/minecraft/sounds/SoundEvents/PANDA_BITE +FD: net/minecraft/sounds/SoundEvents/f_12188_ net/minecraft/sounds/SoundEvents/PARROT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12189_ net/minecraft/sounds/SoundEvents/PARROT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12190_ net/minecraft/sounds/SoundEvents/PARROT_EAT +FD: net/minecraft/sounds/SoundEvents/f_12191_ net/minecraft/sounds/SoundEvents/PARROT_FLY +FD: net/minecraft/sounds/SoundEvents/f_12192_ net/minecraft/sounds/SoundEvents/PARROT_HURT +FD: net/minecraft/sounds/SoundEvents/f_12193_ net/minecraft/sounds/SoundEvents/WART_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12194_ net/minecraft/sounds/SoundEvents/WART_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12195_ net/minecraft/sounds/SoundEvents/WART_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12196_ net/minecraft/sounds/SoundEvents/WART_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12197_ net/minecraft/sounds/SoundEvents/WART_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12198_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12199_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12200_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12201_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12202_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12203_ net/minecraft/sounds/SoundEvents/NETHERRACK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12204_ net/minecraft/sounds/SoundEvents/NETHERRACK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12205_ net/minecraft/sounds/SoundEvents/NETHERRACK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12206_ net/minecraft/sounds/SoundEvents/NETHERRACK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12207_ net/minecraft/sounds/SoundEvents/NETHERRACK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12208_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BASEDRUM +FD: net/minecraft/sounds/SoundEvents/f_12209_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BASS +FD: net/minecraft/sounds/SoundEvents/f_12210_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BELL +FD: net/minecraft/sounds/SoundEvents/f_12211_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_CHIME +FD: net/minecraft/sounds/SoundEvents/f_12212_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_FLUTE +FD: net/minecraft/sounds/SoundEvents/f_12213_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_GUITAR +FD: net/minecraft/sounds/SoundEvents/f_12214_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_HARP +FD: net/minecraft/sounds/SoundEvents/f_12215_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_HAT +FD: net/minecraft/sounds/SoundEvents/f_12216_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_PLING +FD: net/minecraft/sounds/SoundEvents/f_12217_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_SNARE +FD: net/minecraft/sounds/SoundEvents/f_12218_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_XYLOPHONE +FD: net/minecraft/sounds/SoundEvents/f_12219_ net/minecraft/sounds/SoundEvents/AMBIENT_SOUL_SAND_VALLEY_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12220_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WITCH +FD: net/minecraft/sounds/SoundEvents/f_12221_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WITHER +FD: net/minecraft/sounds/SoundEvents/f_12222_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WITHER_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_12223_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ZOGLIN +FD: net/minecraft/sounds/SoundEvents/f_12224_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ZOMBIE +FD: net/minecraft/sounds/SoundEvents/f_12225_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ZOMBIE_VILLAGER +FD: net/minecraft/sounds/SoundEvents/f_12226_ net/minecraft/sounds/SoundEvents/PARROT_STEP +FD: net/minecraft/sounds/SoundEvents/f_12227_ net/minecraft/sounds/SoundEvents/PHANTOM_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12228_ net/minecraft/sounds/SoundEvents/PHANTOM_BITE +FD: net/minecraft/sounds/SoundEvents/f_12229_ net/minecraft/sounds/SoundEvents/PHANTOM_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12230_ net/minecraft/sounds/SoundEvents/PHANTOM_FLAP +FD: net/minecraft/sounds/SoundEvents/f_12231_ net/minecraft/sounds/SoundEvents/PHANTOM_HURT +FD: net/minecraft/sounds/SoundEvents/f_12232_ net/minecraft/sounds/SoundEvents/PHANTOM_SWOOP +FD: net/minecraft/sounds/SoundEvents/f_12233_ net/minecraft/sounds/SoundEvents/PIG_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12234_ net/minecraft/sounds/SoundEvents/PIG_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12235_ net/minecraft/sounds/SoundEvents/PIG_HURT +FD: net/minecraft/sounds/SoundEvents/f_12236_ net/minecraft/sounds/SoundEvents/PIG_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_12237_ net/minecraft/sounds/SoundEvents/PIG_STEP +FD: net/minecraft/sounds/SoundEvents/f_12238_ net/minecraft/sounds/SoundEvents/PIGLIN_ADMIRING_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12239_ net/minecraft/sounds/SoundEvents/PIGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12240_ net/minecraft/sounds/SoundEvents/PIGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12241_ net/minecraft/sounds/SoundEvents/PIGLIN_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12242_ net/minecraft/sounds/SoundEvents/PIGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12243_ net/minecraft/sounds/SoundEvents/PIGLIN_JEALOUS +FD: net/minecraft/sounds/SoundEvents/f_12244_ net/minecraft/sounds/SoundEvents/PIGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12245_ net/minecraft/sounds/SoundEvents/PIGLIN_RETREAT +FD: net/minecraft/sounds/SoundEvents/f_12246_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_BLAZE +FD: net/minecraft/sounds/SoundEvents/f_12247_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_CREEPER +FD: net/minecraft/sounds/SoundEvents/f_12248_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_DROWNED +FD: net/minecraft/sounds/SoundEvents/f_12249_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ELDER_GUARDIAN +FD: net/minecraft/sounds/SoundEvents/f_12250_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ENDER_DRAGON +FD: net/minecraft/sounds/SoundEvents/f_12251_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ENDERMITE +FD: net/minecraft/sounds/SoundEvents/f_12252_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_EVOKER +FD: net/minecraft/sounds/SoundEvents/f_12253_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_GHAST +FD: net/minecraft/sounds/SoundEvents/f_12254_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_GUARDIAN +FD: net/minecraft/sounds/SoundEvents/f_12255_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_HOGLIN +FD: net/minecraft/sounds/SoundEvents/f_12256_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_HUSK +FD: net/minecraft/sounds/SoundEvents/f_12257_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ILLUSIONER +FD: net/minecraft/sounds/SoundEvents/f_12258_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_MAGMA_CUBE +FD: net/minecraft/sounds/SoundEvents/f_12259_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PHANTOM +FD: net/minecraft/sounds/SoundEvents/f_12260_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PIGLIN +FD: net/minecraft/sounds/SoundEvents/f_12261_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PIGLIN_BRUTE +FD: net/minecraft/sounds/SoundEvents/f_12262_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PILLAGER +FD: net/minecraft/sounds/SoundEvents/f_12263_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_RAVAGER +FD: net/minecraft/sounds/SoundEvents/f_12264_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SHULKER +FD: net/minecraft/sounds/SoundEvents/f_12265_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SILVERFISH +FD: net/minecraft/sounds/SoundEvents/f_12266_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_12267_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SLIME +FD: net/minecraft/sounds/SoundEvents/f_12268_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SPIDER +FD: net/minecraft/sounds/SoundEvents/f_12269_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_STRAY +FD: net/minecraft/sounds/SoundEvents/f_12270_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_VEX +FD: net/minecraft/sounds/SoundEvents/f_12271_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_VINDICATOR +FD: net/minecraft/sounds/SoundEvents/f_12272_ net/minecraft/sounds/SoundEvents/AMBIENT_SOUL_SAND_VALLEY_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12273_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_ON_FIRE +FD: net/minecraft/sounds/SoundEvents/f_12274_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_SWEET_BERRY_BUSH +FD: net/minecraft/sounds/SoundEvents/f_12275_ net/minecraft/sounds/SoundEvents/PLAYER_LEVELUP +FD: net/minecraft/sounds/SoundEvents/f_12276_ net/minecraft/sounds/SoundEvents/PLAYER_SMALL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12277_ net/minecraft/sounds/SoundEvents/PLAYER_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_12278_ net/minecraft/sounds/SoundEvents/PLAYER_SPLASH_HIGH_SPEED +FD: net/minecraft/sounds/SoundEvents/f_12279_ net/minecraft/sounds/SoundEvents/PLAYER_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12280_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12281_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_AMBIENT_BABY +FD: net/minecraft/sounds/SoundEvents/f_12282_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12283_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_HURT +FD: net/minecraft/sounds/SoundEvents/f_12284_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_STEP +FD: net/minecraft/sounds/SoundEvents/f_12285_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_WARNING +FD: net/minecraft/sounds/SoundEvents/f_12286_ net/minecraft/sounds/SoundEvents/PORTAL_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12287_ net/minecraft/sounds/SoundEvents/PORTAL_TRAVEL +FD: net/minecraft/sounds/SoundEvents/f_12288_ net/minecraft/sounds/SoundEvents/PORTAL_TRIGGER +FD: net/minecraft/sounds/SoundEvents/f_12289_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12290_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_BLOW_OUT +FD: net/minecraft/sounds/SoundEvents/f_12291_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_BLOW_UP +FD: net/minecraft/sounds/SoundEvents/f_12292_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12293_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12294_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12295_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_STING +FD: net/minecraft/sounds/SoundEvents/f_12296_ net/minecraft/sounds/SoundEvents/PUMPKIN_CARVE +FD: net/minecraft/sounds/SoundEvents/f_12297_ net/minecraft/sounds/SoundEvents/RABBIT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12298_ net/minecraft/sounds/SoundEvents/RABBIT_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12299_ net/minecraft/sounds/SoundEvents/PIGLIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_12300_ net/minecraft/sounds/SoundEvents/PIGLIN_CONVERTED_TO_ZOMBIFIED +FD: net/minecraft/sounds/SoundEvents/f_12301_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12302_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12303_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12304_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12305_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12306_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_CONVERTED_TO_ZOMBIFIED +FD: net/minecraft/sounds/SoundEvents/f_12307_ net/minecraft/sounds/SoundEvents/PILLAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12308_ net/minecraft/sounds/SoundEvents/PILLAGER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12309_ net/minecraft/sounds/SoundEvents/PILLAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12310_ net/minecraft/sounds/SoundEvents/PILLAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12311_ net/minecraft/sounds/SoundEvents/PISTON_CONTRACT +FD: net/minecraft/sounds/SoundEvents/f_12312_ net/minecraft/sounds/SoundEvents/PISTON_EXTEND +FD: net/minecraft/sounds/SoundEvents/f_12313_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_CRIT +FD: net/minecraft/sounds/SoundEvents/f_12314_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_KNOCKBACK +FD: net/minecraft/sounds/SoundEvents/f_12315_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_NODAMAGE +FD: net/minecraft/sounds/SoundEvents/f_12316_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_STRONG +FD: net/minecraft/sounds/SoundEvents/f_12317_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_SWEEP +FD: net/minecraft/sounds/SoundEvents/f_12318_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_WEAK +FD: net/minecraft/sounds/SoundEvents/f_12319_ net/minecraft/sounds/SoundEvents/PLAYER_BIG_FALL +FD: net/minecraft/sounds/SoundEvents/f_12320_ net/minecraft/sounds/SoundEvents/PLAYER_BREATH +FD: net/minecraft/sounds/SoundEvents/f_12321_ net/minecraft/sounds/SoundEvents/PLAYER_BURP +FD: net/minecraft/sounds/SoundEvents/f_12322_ net/minecraft/sounds/SoundEvents/PLAYER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12323_ net/minecraft/sounds/SoundEvents/PLAYER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12324_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_DROWN +FD: net/minecraft/sounds/SoundEvents/f_12325_ net/minecraft/sounds/SoundEvents/AMBIENT_SOUL_SAND_VALLEY_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12326_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_SET_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_12327_ net/minecraft/sounds/SoundEvents/SALMON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12328_ net/minecraft/sounds/SoundEvents/SALMON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12329_ net/minecraft/sounds/SoundEvents/SALMON_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12330_ net/minecraft/sounds/SoundEvents/SALMON_HURT +FD: net/minecraft/sounds/SoundEvents/f_12331_ net/minecraft/sounds/SoundEvents/SAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12332_ net/minecraft/sounds/SoundEvents/SAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_12333_ net/minecraft/sounds/SoundEvents/SAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_12334_ net/minecraft/sounds/SoundEvents/SAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12335_ net/minecraft/sounds/SoundEvents/SAND_STEP +FD: net/minecraft/sounds/SoundEvents/f_12336_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12337_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_FALL +FD: net/minecraft/sounds/SoundEvents/f_12338_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_HIT +FD: net/minecraft/sounds/SoundEvents/f_12339_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12340_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_STEP +FD: net/minecraft/sounds/SoundEvents/f_12341_ net/minecraft/sounds/SoundEvents/SHEEP_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12342_ net/minecraft/sounds/SoundEvents/SHEEP_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12343_ net/minecraft/sounds/SoundEvents/SHEEP_HURT +FD: net/minecraft/sounds/SoundEvents/f_12344_ net/minecraft/sounds/SoundEvents/SHEEP_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_12345_ net/minecraft/sounds/SoundEvents/SHEEP_STEP +FD: net/minecraft/sounds/SoundEvents/f_12346_ net/minecraft/sounds/SoundEvents/SHIELD_BLOCK +FD: net/minecraft/sounds/SoundEvents/f_12347_ net/minecraft/sounds/SoundEvents/SHIELD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12348_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12349_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_STEP +FD: net/minecraft/sounds/SoundEvents/f_12350_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12351_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_HIT +FD: net/minecraft/sounds/SoundEvents/f_12352_ net/minecraft/sounds/SoundEvents/RABBIT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12353_ net/minecraft/sounds/SoundEvents/RABBIT_HURT +FD: net/minecraft/sounds/SoundEvents/f_12354_ net/minecraft/sounds/SoundEvents/RABBIT_JUMP +FD: net/minecraft/sounds/SoundEvents/f_12355_ net/minecraft/sounds/SoundEvents/RAID_HORN +FD: net/minecraft/sounds/SoundEvents/f_12356_ net/minecraft/sounds/SoundEvents/RAVAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12357_ net/minecraft/sounds/SoundEvents/RAVAGER_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12358_ net/minecraft/sounds/SoundEvents/RAVAGER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12359_ net/minecraft/sounds/SoundEvents/RAVAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12360_ net/minecraft/sounds/SoundEvents/RAVAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12361_ net/minecraft/sounds/SoundEvents/RAVAGER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12362_ net/minecraft/sounds/SoundEvents/RAVAGER_STUNNED +FD: net/minecraft/sounds/SoundEvents/f_12363_ net/minecraft/sounds/SoundEvents/RAVAGER_ROAR +FD: net/minecraft/sounds/SoundEvents/f_12364_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12365_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12366_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12367_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12368_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12369_ net/minecraft/sounds/SoundEvents/NETHER_ORE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12370_ net/minecraft/sounds/SoundEvents/NETHER_ORE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12371_ net/minecraft/sounds/SoundEvents/NETHER_ORE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12372_ net/minecraft/sounds/SoundEvents/NETHER_ORE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12373_ net/minecraft/sounds/SoundEvents/NETHER_ORE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12374_ net/minecraft/sounds/SoundEvents/REDSTONE_TORCH_BURNOUT +FD: net/minecraft/sounds/SoundEvents/f_12375_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12376_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_12377_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_DEPLETE +FD: net/minecraft/sounds/SoundEvents/f_12378_ net/minecraft/sounds/SoundEvents/AMBIENT_WARPED_FOREST_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12379_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_JUMP_WATER +FD: net/minecraft/sounds/SoundEvents/f_12380_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_STEP_WATER +FD: net/minecraft/sounds/SoundEvents/f_12381_ net/minecraft/sounds/SoundEvents/SKELETON_HURT +FD: net/minecraft/sounds/SoundEvents/f_12382_ net/minecraft/sounds/SoundEvents/SKELETON_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12383_ net/minecraft/sounds/SoundEvents/SKELETON_STEP +FD: net/minecraft/sounds/SoundEvents/f_12384_ net/minecraft/sounds/SoundEvents/SLIME_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12385_ net/minecraft/sounds/SoundEvents/SLIME_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12386_ net/minecraft/sounds/SoundEvents/SLIME_HURT +FD: net/minecraft/sounds/SoundEvents/f_12387_ net/minecraft/sounds/SoundEvents/SLIME_JUMP +FD: net/minecraft/sounds/SoundEvents/f_12388_ net/minecraft/sounds/SoundEvents/SLIME_SQUISH +FD: net/minecraft/sounds/SoundEvents/f_12389_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12390_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12391_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12392_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12393_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12394_ net/minecraft/sounds/SoundEvents/SOUL_SAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12395_ net/minecraft/sounds/SoundEvents/SOUL_SAND_STEP +FD: net/minecraft/sounds/SoundEvents/f_12396_ net/minecraft/sounds/SoundEvents/SOUL_SAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12397_ net/minecraft/sounds/SoundEvents/SOUL_SAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_12398_ net/minecraft/sounds/SoundEvents/SOUL_SAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_12399_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12400_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_STEP +FD: net/minecraft/sounds/SoundEvents/f_12401_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12402_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_HIT +FD: net/minecraft/sounds/SoundEvents/f_12403_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12404_ net/minecraft/sounds/SoundEvents/SOUL_ESCAPE +FD: net/minecraft/sounds/SoundEvents/f_12405_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_FALL +FD: net/minecraft/sounds/SoundEvents/f_12406_ net/minecraft/sounds/SoundEvents/SHOVEL_FLATTEN +FD: net/minecraft/sounds/SoundEvents/f_12407_ net/minecraft/sounds/SoundEvents/SHULKER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12408_ net/minecraft/sounds/SoundEvents/SHULKER_BOX_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12409_ net/minecraft/sounds/SoundEvents/SHULKER_BOX_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12410_ net/minecraft/sounds/SoundEvents/SHULKER_BULLET_HIT +FD: net/minecraft/sounds/SoundEvents/f_12411_ net/minecraft/sounds/SoundEvents/SHULKER_BULLET_HURT +FD: net/minecraft/sounds/SoundEvents/f_12412_ net/minecraft/sounds/SoundEvents/SHULKER_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12413_ net/minecraft/sounds/SoundEvents/SHULKER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12414_ net/minecraft/sounds/SoundEvents/SHULKER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12415_ net/minecraft/sounds/SoundEvents/SHULKER_HURT_CLOSED +FD: net/minecraft/sounds/SoundEvents/f_12416_ net/minecraft/sounds/SoundEvents/SHULKER_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12417_ net/minecraft/sounds/SoundEvents/SHULKER_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12418_ net/minecraft/sounds/SoundEvents/SHULKER_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_12419_ net/minecraft/sounds/SoundEvents/SILVERFISH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12420_ net/minecraft/sounds/SoundEvents/SILVERFISH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12421_ net/minecraft/sounds/SoundEvents/SILVERFISH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12422_ net/minecraft/sounds/SoundEvents/SILVERFISH_STEP +FD: net/minecraft/sounds/SoundEvents/f_12423_ net/minecraft/sounds/SoundEvents/SKELETON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12424_ net/minecraft/sounds/SoundEvents/SKELETON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12425_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12426_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12427_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12428_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12429_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_AMBIENT_WATER +FD: net/minecraft/sounds/SoundEvents/f_12430_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_GALLOP_WATER +FD: net/minecraft/sounds/SoundEvents/f_12431_ net/minecraft/sounds/SoundEvents/AMBIENT_WARPED_FOREST_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12432_ net/minecraft/sounds/SoundEvents/SPIDER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12433_ net/minecraft/sounds/SoundEvents/SPIDER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12434_ net/minecraft/sounds/SoundEvents/SPIDER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12435_ net/minecraft/sounds/SoundEvents/SPIDER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12436_ net/minecraft/sounds/SoundEvents/SPLASH_POTION_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12437_ net/minecraft/sounds/SoundEvents/SPLASH_POTION_THROW +FD: net/minecraft/sounds/SoundEvents/f_12438_ net/minecraft/sounds/SoundEvents/SQUID_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12439_ net/minecraft/sounds/SoundEvents/SQUID_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12440_ net/minecraft/sounds/SoundEvents/SQUID_HURT +FD: net/minecraft/sounds/SoundEvents/f_12441_ net/minecraft/sounds/SoundEvents/SQUID_SQUIRT +FD: net/minecraft/sounds/SoundEvents/f_12442_ net/minecraft/sounds/SoundEvents/STONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12443_ net/minecraft/sounds/SoundEvents/STONE_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12444_ net/minecraft/sounds/SoundEvents/STONE_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12445_ net/minecraft/sounds/SoundEvents/STONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12446_ net/minecraft/sounds/SoundEvents/STONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12447_ net/minecraft/sounds/SoundEvents/STONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12448_ net/minecraft/sounds/SoundEvents/STONE_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12449_ net/minecraft/sounds/SoundEvents/STONE_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12450_ net/minecraft/sounds/SoundEvents/STONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12451_ net/minecraft/sounds/SoundEvents/STRAY_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12452_ net/minecraft/sounds/SoundEvents/STRAY_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12453_ net/minecraft/sounds/SoundEvents/STRAY_HURT +FD: net/minecraft/sounds/SoundEvents/f_12454_ net/minecraft/sounds/SoundEvents/STRAY_STEP +FD: net/minecraft/sounds/SoundEvents/f_12455_ net/minecraft/sounds/SoundEvents/SWEET_BERRY_BUSH_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12456_ net/minecraft/sounds/SoundEvents/SWEET_BERRY_BUSH_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12457_ net/minecraft/sounds/SoundEvents/SWEET_BERRY_BUSH_PICK_BERRIES +FD: net/minecraft/sounds/SoundEvents/f_12458_ net/minecraft/sounds/SoundEvents/STRIDER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12459_ net/minecraft/sounds/SoundEvents/STRIDER_HAPPY +FD: net/minecraft/sounds/SoundEvents/f_12460_ net/minecraft/sounds/SoundEvents/STRIDER_RETREAT +FD: net/minecraft/sounds/SoundEvents/f_12461_ net/minecraft/sounds/SoundEvents/STRIDER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12462_ net/minecraft/sounds/SoundEvents/STRIDER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12463_ net/minecraft/sounds/SoundEvents/STRIDER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12464_ net/minecraft/sounds/SoundEvents/STRIDER_STEP_LAVA +FD: net/minecraft/sounds/SoundEvents/f_12465_ net/minecraft/sounds/SoundEvents/STRIDER_EAT +FD: net/minecraft/sounds/SoundEvents/f_12466_ net/minecraft/sounds/SoundEvents/STRIDER_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_12467_ net/minecraft/sounds/SoundEvents/SLIME_DEATH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12468_ net/minecraft/sounds/SoundEvents/SLIME_HURT_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12469_ net/minecraft/sounds/SoundEvents/SLIME_JUMP_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12470_ net/minecraft/sounds/SoundEvents/SLIME_SQUISH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12471_ net/minecraft/sounds/SoundEvents/SMITHING_TABLE_USE +FD: net/minecraft/sounds/SoundEvents/f_12472_ net/minecraft/sounds/SoundEvents/SMOKER_SMOKE +FD: net/minecraft/sounds/SoundEvents/f_12473_ net/minecraft/sounds/SoundEvents/SNOWBALL_THROW +FD: net/minecraft/sounds/SoundEvents/f_12474_ net/minecraft/sounds/SoundEvents/SNOW_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12475_ net/minecraft/sounds/SoundEvents/SNOW_FALL +FD: net/minecraft/sounds/SoundEvents/f_12476_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12477_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12478_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_HURT +FD: net/minecraft/sounds/SoundEvents/f_12479_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12480_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_12481_ net/minecraft/sounds/SoundEvents/SNOW_HIT +FD: net/minecraft/sounds/SoundEvents/f_12482_ net/minecraft/sounds/SoundEvents/SNOW_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12483_ net/minecraft/sounds/SoundEvents/SNOW_STEP +FD: net/minecraft/sounds/SoundEvents/f_12484_ net/minecraft/sounds/SoundEvents/AMBIENT_WARPED_FOREST_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12485_ net/minecraft/sounds/SoundEvents/TURTLE_HURT_BABY +FD: net/minecraft/sounds/SoundEvents/f_12486_ net/minecraft/sounds/SoundEvents/TURTLE_LAY_EGG +FD: net/minecraft/sounds/SoundEvents/f_12487_ net/minecraft/sounds/SoundEvents/TURTLE_SHAMBLE +FD: net/minecraft/sounds/SoundEvents/f_12488_ net/minecraft/sounds/SoundEvents/TURTLE_SHAMBLE_BABY +FD: net/minecraft/sounds/SoundEvents/f_12489_ net/minecraft/sounds/SoundEvents/TURTLE_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12490_ net/minecraft/sounds/SoundEvents/UI_BUTTON_CLICK +FD: net/minecraft/sounds/SoundEvents/f_12491_ net/minecraft/sounds/SoundEvents/UI_LOOM_SELECT_PATTERN +FD: net/minecraft/sounds/SoundEvents/f_12492_ net/minecraft/sounds/SoundEvents/UI_LOOM_TAKE_RESULT +FD: net/minecraft/sounds/SoundEvents/f_12493_ net/minecraft/sounds/SoundEvents/UI_CARTOGRAPHY_TABLE_TAKE_RESULT +FD: net/minecraft/sounds/SoundEvents/f_12494_ net/minecraft/sounds/SoundEvents/UI_STONECUTTER_TAKE_RESULT +FD: net/minecraft/sounds/SoundEvents/f_12495_ net/minecraft/sounds/SoundEvents/UI_STONECUTTER_SELECT_RECIPE +FD: net/minecraft/sounds/SoundEvents/f_12496_ net/minecraft/sounds/SoundEvents/UI_TOAST_CHALLENGE_COMPLETE +FD: net/minecraft/sounds/SoundEvents/f_12497_ net/minecraft/sounds/SoundEvents/UI_TOAST_IN +FD: net/minecraft/sounds/SoundEvents/f_12498_ net/minecraft/sounds/SoundEvents/UI_TOAST_OUT +FD: net/minecraft/sounds/SoundEvents/f_12499_ net/minecraft/sounds/SoundEvents/VEX_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12500_ net/minecraft/sounds/SoundEvents/VEX_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_12501_ net/minecraft/sounds/SoundEvents/VEX_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12502_ net/minecraft/sounds/SoundEvents/VEX_HURT +FD: net/minecraft/sounds/SoundEvents/f_12503_ net/minecraft/sounds/SoundEvents/VILLAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12504_ net/minecraft/sounds/SoundEvents/VILLAGER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12505_ net/minecraft/sounds/SoundEvents/VILLAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12506_ net/minecraft/sounds/SoundEvents/VILLAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12507_ net/minecraft/sounds/SoundEvents/VILLAGER_NO +FD: net/minecraft/sounds/SoundEvents/f_12508_ net/minecraft/sounds/SoundEvents/VILLAGER_TRADE +FD: net/minecraft/sounds/SoundEvents/f_12509_ net/minecraft/sounds/SoundEvents/VILLAGER_YES +FD: net/minecraft/sounds/SoundEvents/f_12510_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_ARMORER +FD: net/minecraft/sounds/SoundEvents/f_12511_ net/minecraft/sounds/SoundEvents/THORNS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12512_ net/minecraft/sounds/SoundEvents/TNT_PRIMED +FD: net/minecraft/sounds/SoundEvents/f_12513_ net/minecraft/sounds/SoundEvents/TOTEM_USE +FD: net/minecraft/sounds/SoundEvents/f_12514_ net/minecraft/sounds/SoundEvents/TRIDENT_HIT +FD: net/minecraft/sounds/SoundEvents/f_12515_ net/minecraft/sounds/SoundEvents/TRIDENT_HIT_GROUND +FD: net/minecraft/sounds/SoundEvents/f_12516_ net/minecraft/sounds/SoundEvents/TRIDENT_RETURN +FD: net/minecraft/sounds/SoundEvents/f_12517_ net/minecraft/sounds/SoundEvents/TRIDENT_RIPTIDE_1 +FD: net/minecraft/sounds/SoundEvents/f_12518_ net/minecraft/sounds/SoundEvents/TRIDENT_RIPTIDE_2 +FD: net/minecraft/sounds/SoundEvents/f_12519_ net/minecraft/sounds/SoundEvents/TRIDENT_RIPTIDE_3 +FD: net/minecraft/sounds/SoundEvents/f_12520_ net/minecraft/sounds/SoundEvents/TRIDENT_THROW +FD: net/minecraft/sounds/SoundEvents/f_12521_ net/minecraft/sounds/SoundEvents/TRIDENT_THUNDER +FD: net/minecraft/sounds/SoundEvents/f_12522_ net/minecraft/sounds/SoundEvents/TRIPWIRE_ATTACH +FD: net/minecraft/sounds/SoundEvents/f_12523_ net/minecraft/sounds/SoundEvents/TRIPWIRE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12524_ net/minecraft/sounds/SoundEvents/TRIPWIRE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12525_ net/minecraft/sounds/SoundEvents/TRIPWIRE_DETACH +FD: net/minecraft/sounds/SoundEvents/f_12526_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12527_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12528_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12529_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12530_ net/minecraft/sounds/SoundEvents/TURTLE_AMBIENT_LAND +FD: net/minecraft/sounds/SoundEvents/f_12531_ net/minecraft/sounds/SoundEvents/TURTLE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12532_ net/minecraft/sounds/SoundEvents/TURTLE_DEATH_BABY +FD: net/minecraft/sounds/SoundEvents/f_12533_ net/minecraft/sounds/SoundEvents/TURTLE_EGG_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12534_ net/minecraft/sounds/SoundEvents/TURTLE_EGG_CRACK +FD: net/minecraft/sounds/SoundEvents/f_12535_ net/minecraft/sounds/SoundEvents/TURTLE_EGG_HATCH +FD: net/minecraft/sounds/SoundEvents/f_12536_ net/minecraft/sounds/SoundEvents/TURTLE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12537_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_ENTER +FD: net/minecraft/sounds/SoundEvents/f_12538_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_TRADE +FD: net/minecraft/sounds/SoundEvents/f_12539_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_YES +FD: net/minecraft/sounds/SoundEvents/f_12540_ net/minecraft/sounds/SoundEvents/WATER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12541_ net/minecraft/sounds/SoundEvents/WEATHER_RAIN +FD: net/minecraft/sounds/SoundEvents/f_12542_ net/minecraft/sounds/SoundEvents/WEATHER_RAIN_ABOVE +FD: net/minecraft/sounds/SoundEvents/f_12543_ net/minecraft/sounds/SoundEvents/WET_GRASS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12544_ net/minecraft/sounds/SoundEvents/WET_GRASS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12545_ net/minecraft/sounds/SoundEvents/WET_GRASS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12546_ net/minecraft/sounds/SoundEvents/WET_GRASS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12547_ net/minecraft/sounds/SoundEvents/WET_GRASS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12548_ net/minecraft/sounds/SoundEvents/WITCH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12549_ net/minecraft/sounds/SoundEvents/WITCH_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12550_ net/minecraft/sounds/SoundEvents/WITCH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12551_ net/minecraft/sounds/SoundEvents/WITCH_DRINK +FD: net/minecraft/sounds/SoundEvents/f_12552_ net/minecraft/sounds/SoundEvents/WITCH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12553_ net/minecraft/sounds/SoundEvents/WITCH_THROW +FD: net/minecraft/sounds/SoundEvents/f_12554_ net/minecraft/sounds/SoundEvents/WITHER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12555_ net/minecraft/sounds/SoundEvents/WITHER_BREAK_BLOCK +FD: net/minecraft/sounds/SoundEvents/f_12556_ net/minecraft/sounds/SoundEvents/WITHER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12557_ net/minecraft/sounds/SoundEvents/WITHER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12558_ net/minecraft/sounds/SoundEvents/WITHER_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12559_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12560_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12561_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_HURT +FD: net/minecraft/sounds/SoundEvents/f_12562_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_STEP +FD: net/minecraft/sounds/SoundEvents/f_12563_ net/minecraft/sounds/SoundEvents/WITHER_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_12564_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_BUTCHER +FD: net/minecraft/sounds/SoundEvents/f_12565_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_CARTOGRAPHER +FD: net/minecraft/sounds/SoundEvents/f_12566_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_CLERIC +FD: net/minecraft/sounds/SoundEvents/f_12567_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_FARMER +FD: net/minecraft/sounds/SoundEvents/f_12568_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_FISHERMAN +FD: net/minecraft/sounds/SoundEvents/f_12569_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_FLETCHER +FD: net/minecraft/sounds/SoundEvents/f_12570_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_LEATHERWORKER +FD: net/minecraft/sounds/SoundEvents/f_12571_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_LIBRARIAN +FD: net/minecraft/sounds/SoundEvents/f_12572_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_MASON +FD: net/minecraft/sounds/SoundEvents/f_12573_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_SHEPHERD +FD: net/minecraft/sounds/SoundEvents/f_12574_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_TOOLSMITH +FD: net/minecraft/sounds/SoundEvents/f_12575_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_WEAPONSMITH +FD: net/minecraft/sounds/SoundEvents/f_12576_ net/minecraft/sounds/SoundEvents/VINDICATOR_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12577_ net/minecraft/sounds/SoundEvents/VINDICATOR_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12578_ net/minecraft/sounds/SoundEvents/VINDICATOR_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12579_ net/minecraft/sounds/SoundEvents/VINDICATOR_HURT +FD: net/minecraft/sounds/SoundEvents/f_12580_ net/minecraft/sounds/SoundEvents/VINE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12581_ net/minecraft/sounds/SoundEvents/LILY_PAD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12582_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12583_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12584_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DISAPPEARED +FD: net/minecraft/sounds/SoundEvents/f_12585_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DRINK_MILK +FD: net/minecraft/sounds/SoundEvents/f_12586_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DRINK_POTION +FD: net/minecraft/sounds/SoundEvents/f_12587_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12588_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_NO +FD: net/minecraft/sounds/SoundEvents/f_12589_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_REAPPEARED +FD: net/minecraft/sounds/SoundEvents/f_12590_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_EXIT +FD: net/minecraft/sounds/SoundEvents/f_12591_ net/minecraft/sounds/SoundEvents/WOOL_STEP +FD: net/minecraft/sounds/SoundEvents/f_12592_ net/minecraft/sounds/SoundEvents/ZOGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12593_ net/minecraft/sounds/SoundEvents/ZOGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12594_ net/minecraft/sounds/SoundEvents/ZOGLIN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12595_ net/minecraft/sounds/SoundEvents/ZOGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12596_ net/minecraft/sounds/SoundEvents/ZOGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12597_ net/minecraft/sounds/SoundEvents/ZOGLIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_12598_ net/minecraft/sounds/SoundEvents/ZOMBIE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12599_ net/minecraft/sounds/SoundEvents/ZOMBIE_ATTACK_WOODEN_DOOR +FD: net/minecraft/sounds/SoundEvents/f_12600_ net/minecraft/sounds/SoundEvents/ZOMBIE_ATTACK_IRON_DOOR +FD: net/minecraft/sounds/SoundEvents/f_12601_ net/minecraft/sounds/SoundEvents/ZOMBIE_BREAK_WOODEN_DOOR +FD: net/minecraft/sounds/SoundEvents/f_12602_ net/minecraft/sounds/SoundEvents/ZOMBIE_CONVERTED_TO_DROWNED +FD: net/minecraft/sounds/SoundEvents/f_12603_ net/minecraft/sounds/SoundEvents/ZOMBIE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12604_ net/minecraft/sounds/SoundEvents/ZOMBIE_DESTROY_EGG +FD: net/minecraft/sounds/SoundEvents/f_12605_ net/minecraft/sounds/SoundEvents/ZOMBIE_HORSE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12606_ net/minecraft/sounds/SoundEvents/ZOMBIE_HORSE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12607_ net/minecraft/sounds/SoundEvents/ZOMBIE_HORSE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12608_ net/minecraft/sounds/SoundEvents/ZOMBIE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12609_ net/minecraft/sounds/SoundEvents/ZOMBIE_INFECT +FD: net/minecraft/sounds/SoundEvents/f_12610_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12611_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12612_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12613_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12614_ net/minecraft/sounds/SoundEvents/ZOMBIE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12615_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12616_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_CONVERTED +FD: net/minecraft/sounds/SoundEvents/f_12617_ net/minecraft/sounds/SoundEvents/WOLF_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12618_ net/minecraft/sounds/SoundEvents/WOLF_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12619_ net/minecraft/sounds/SoundEvents/WOLF_GROWL +FD: net/minecraft/sounds/SoundEvents/f_12620_ net/minecraft/sounds/SoundEvents/WOLF_HOWL +FD: net/minecraft/sounds/SoundEvents/f_12621_ net/minecraft/sounds/SoundEvents/WOLF_HURT +FD: net/minecraft/sounds/SoundEvents/f_12622_ net/minecraft/sounds/SoundEvents/WOLF_PANT +FD: net/minecraft/sounds/SoundEvents/f_12623_ net/minecraft/sounds/SoundEvents/WOLF_SHAKE +FD: net/minecraft/sounds/SoundEvents/f_12624_ net/minecraft/sounds/SoundEvents/WOLF_STEP +FD: net/minecraft/sounds/SoundEvents/f_12625_ net/minecraft/sounds/SoundEvents/WOLF_WHINE +FD: net/minecraft/sounds/SoundEvents/f_12626_ net/minecraft/sounds/SoundEvents/WOODEN_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12627_ net/minecraft/sounds/SoundEvents/WOODEN_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12628_ net/minecraft/sounds/SoundEvents/WOODEN_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12629_ net/minecraft/sounds/SoundEvents/WOODEN_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12630_ net/minecraft/sounds/SoundEvents/WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12631_ net/minecraft/sounds/SoundEvents/WOODEN_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12632_ net/minecraft/sounds/SoundEvents/WOODEN_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12633_ net/minecraft/sounds/SoundEvents/WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_12634_ net/minecraft/sounds/SoundEvents/WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_12635_ net/minecraft/sounds/SoundEvents/WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12636_ net/minecraft/sounds/SoundEvents/WOODEN_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12637_ net/minecraft/sounds/SoundEvents/WOODEN_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12638_ net/minecraft/sounds/SoundEvents/WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_12639_ net/minecraft/sounds/SoundEvents/WOOL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12640_ net/minecraft/sounds/SoundEvents/WOOL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12641_ net/minecraft/sounds/SoundEvents/WOOL_HIT +FD: net/minecraft/sounds/SoundEvents/f_12642_ net/minecraft/sounds/SoundEvents/WOOL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12643_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12644_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_CURE +FD: net/minecraft/sounds/SoundEvents/f_12645_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12646_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12647_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12648_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12649_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP_ADDITIONS_RARE +FD: net/minecraft/sounds/SoundEvents/f_12650_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP_ADDITIONS_ULTRA_RARE +FD: net/minecraft/sounds/SoundEvents/f_12651_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12652_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12653_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12654_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144048_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144049_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_144050_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144051_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_FALL +FD: net/minecraft/sounds/SoundEvents/f_144052_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_HIT +FD: net/minecraft/sounds/SoundEvents/f_144053_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144054_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_STEP +FD: net/minecraft/sounds/SoundEvents/f_144055_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_FALL +FD: net/minecraft/sounds/SoundEvents/f_144056_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_HIT +FD: net/minecraft/sounds/SoundEvents/f_144057_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144058_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_STEP +FD: net/minecraft/sounds/SoundEvents/f_144059_ net/minecraft/sounds/SoundEvents/AXE_SCRAPE +FD: net/minecraft/sounds/SoundEvents/f_144060_ net/minecraft/sounds/SoundEvents/AXE_WAX_OFF +FD: net/minecraft/sounds/SoundEvents/f_144061_ net/minecraft/sounds/SoundEvents/AXOLOTL_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_144062_ net/minecraft/sounds/SoundEvents/AXOLOTL_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144063_ net/minecraft/sounds/SoundEvents/AXOLOTL_HURT +FD: net/minecraft/sounds/SoundEvents/f_144064_ net/minecraft/sounds/SoundEvents/AXOLOTL_IDLE_AIR +FD: net/minecraft/sounds/SoundEvents/f_144065_ net/minecraft/sounds/SoundEvents/AXOLOTL_IDLE_WATER +FD: net/minecraft/sounds/SoundEvents/f_144066_ net/minecraft/sounds/SoundEvents/AXOLOTL_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_144067_ net/minecraft/sounds/SoundEvents/AXOLOTL_SWIM +FD: net/minecraft/sounds/SoundEvents/f_144068_ net/minecraft/sounds/SoundEvents/AZALEA_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144069_ net/minecraft/sounds/SoundEvents/AZALEA_FALL +FD: net/minecraft/sounds/SoundEvents/f_144070_ net/minecraft/sounds/SoundEvents/AZALEA_HIT +FD: net/minecraft/sounds/SoundEvents/f_144071_ net/minecraft/sounds/SoundEvents/AZALEA_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144072_ net/minecraft/sounds/SoundEvents/AZALEA_STEP +FD: net/minecraft/sounds/SoundEvents/f_144073_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144074_ net/minecraft/sounds/SoundEvents/BONE_MEAL_USE +FD: net/minecraft/sounds/SoundEvents/f_144075_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_AXOLOTL +FD: net/minecraft/sounds/SoundEvents/f_144076_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_POWDER_SNOW +FD: net/minecraft/sounds/SoundEvents/f_144077_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_AXOLOTL +FD: net/minecraft/sounds/SoundEvents/f_144078_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144079_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_FALL +FD: net/minecraft/sounds/SoundEvents/f_144080_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_HIT +FD: net/minecraft/sounds/SoundEvents/f_144081_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144082_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_STEP +FD: net/minecraft/sounds/SoundEvents/f_144083_ net/minecraft/sounds/SoundEvents/CAVE_VINES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144084_ net/minecraft/sounds/SoundEvents/CAVE_VINES_FALL +FD: net/minecraft/sounds/SoundEvents/f_144085_ net/minecraft/sounds/SoundEvents/CAVE_VINES_HIT +FD: net/minecraft/sounds/SoundEvents/f_144086_ net/minecraft/sounds/SoundEvents/CAVE_VINES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144087_ net/minecraft/sounds/SoundEvents/CAVE_VINES_STEP +FD: net/minecraft/sounds/SoundEvents/f_144088_ net/minecraft/sounds/SoundEvents/CAVE_VINES_PICK_BERRIES +FD: net/minecraft/sounds/SoundEvents/f_144089_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_POWDER_SNOW +FD: net/minecraft/sounds/SoundEvents/f_144090_ net/minecraft/sounds/SoundEvents/CAKE_ADD_CANDLE +FD: net/minecraft/sounds/SoundEvents/f_144091_ net/minecraft/sounds/SoundEvents/CALCITE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144092_ net/minecraft/sounds/SoundEvents/CALCITE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144093_ net/minecraft/sounds/SoundEvents/CALCITE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144094_ net/minecraft/sounds/SoundEvents/CALCITE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144095_ net/minecraft/sounds/SoundEvents/CALCITE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144096_ net/minecraft/sounds/SoundEvents/CANDLE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144097_ net/minecraft/sounds/SoundEvents/CANDLE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144098_ net/minecraft/sounds/SoundEvents/CANDLE_EXTINGUISH +FD: net/minecraft/sounds/SoundEvents/f_144099_ net/minecraft/sounds/SoundEvents/CANDLE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144100_ net/minecraft/sounds/SoundEvents/CANDLE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144101_ net/minecraft/sounds/SoundEvents/CANDLE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144102_ net/minecraft/sounds/SoundEvents/CANDLE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144103_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144104_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_FALL +FD: net/minecraft/sounds/SoundEvents/f_144105_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144106_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144107_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_STEP +FD: net/minecraft/sounds/SoundEvents/f_144108_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144109_ net/minecraft/sounds/SoundEvents/DEEPSLATE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144110_ net/minecraft/sounds/SoundEvents/DEEPSLATE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144111_ net/minecraft/sounds/SoundEvents/DEEPSLATE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144112_ net/minecraft/sounds/SoundEvents/DEEPSLATE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144113_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144114_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_FALL +FD: net/minecraft/sounds/SoundEvents/f_144115_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_HIT +FD: net/minecraft/sounds/SoundEvents/f_144116_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144117_ net/minecraft/sounds/SoundEvents/COPPER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144118_ net/minecraft/sounds/SoundEvents/COPPER_STEP +FD: net/minecraft/sounds/SoundEvents/f_144119_ net/minecraft/sounds/SoundEvents/COPPER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144120_ net/minecraft/sounds/SoundEvents/COPPER_HIT +FD: net/minecraft/sounds/SoundEvents/f_144121_ net/minecraft/sounds/SoundEvents/COPPER_FALL +FD: net/minecraft/sounds/SoundEvents/f_144122_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144123_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144124_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144125_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144126_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_LAND +FD: net/minecraft/sounds/SoundEvents/f_144127_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_LAVA +FD: net/minecraft/sounds/SoundEvents/f_144128_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_WATER +FD: net/minecraft/sounds/SoundEvents/f_144129_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_LAVA_INTO_CAULDRON +FD: net/minecraft/sounds/SoundEvents/f_144130_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_WATER_INTO_CAULDRON +FD: net/minecraft/sounds/SoundEvents/f_144131_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_TILT_DOWN +FD: net/minecraft/sounds/SoundEvents/f_144132_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_TILT_UP +FD: net/minecraft/sounds/SoundEvents/f_144133_ net/minecraft/sounds/SoundEvents/DYE_USE +FD: net/minecraft/sounds/SoundEvents/f_144134_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_STEP +FD: net/minecraft/sounds/SoundEvents/f_144135_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144136_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_144137_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144138_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_144139_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_144140_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144141_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144142_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_FALL +FD: net/minecraft/sounds/SoundEvents/f_144143_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_HIT +FD: net/minecraft/sounds/SoundEvents/f_144144_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144145_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_STEP +FD: net/minecraft/sounds/SoundEvents/f_144146_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_HURT +FD: net/minecraft/sounds/SoundEvents/f_144147_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_LONG_JUMP +FD: net/minecraft/sounds/SoundEvents/f_144148_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_MILK +FD: net/minecraft/sounds/SoundEvents/f_144149_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_PREPARE_RAM +FD: net/minecraft/sounds/SoundEvents/f_144150_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_RAM_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_144151_ net/minecraft/sounds/SoundEvents/GOAT_STEP +FD: net/minecraft/sounds/SoundEvents/f_144152_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144153_ net/minecraft/sounds/SoundEvents/GLOW_INK_SAC_USE +FD: net/minecraft/sounds/SoundEvents/f_144154_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_ADD_ITEM +FD: net/minecraft/sounds/SoundEvents/f_144155_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144156_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144157_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_REMOVE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_144158_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_ROTATE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_144159_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144160_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144161_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_HURT +FD: net/minecraft/sounds/SoundEvents/f_144162_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_SQUIRT +FD: net/minecraft/sounds/SoundEvents/f_144163_ net/minecraft/sounds/SoundEvents/GOAT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144164_ net/minecraft/sounds/SoundEvents/GOAT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144165_ net/minecraft/sounds/SoundEvents/GOAT_EAT +FD: net/minecraft/sounds/SoundEvents/f_144166_ net/minecraft/sounds/SoundEvents/GOAT_HURT +FD: net/minecraft/sounds/SoundEvents/f_144167_ net/minecraft/sounds/SoundEvents/GOAT_LONG_JUMP +FD: net/minecraft/sounds/SoundEvents/f_144168_ net/minecraft/sounds/SoundEvents/GOAT_MILK +FD: net/minecraft/sounds/SoundEvents/f_144169_ net/minecraft/sounds/SoundEvents/GOAT_PREPARE_RAM +FD: net/minecraft/sounds/SoundEvents/f_144170_ net/minecraft/sounds/SoundEvents/GOAT_RAM_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_144171_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144172_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144173_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_EAT +FD: net/minecraft/sounds/SoundEvents/f_144174_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_144175_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144176_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144177_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_144178_ net/minecraft/sounds/SoundEvents/HONEYCOMB_WAX_ON +FD: net/minecraft/sounds/SoundEvents/f_144179_ net/minecraft/sounds/SoundEvents/LARGE_AMETHYST_BUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144180_ net/minecraft/sounds/SoundEvents/LARGE_AMETHYST_BUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144181_ net/minecraft/sounds/SoundEvents/INK_SAC_USE +FD: net/minecraft/sounds/SoundEvents/f_144182_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144183_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_FALL +FD: net/minecraft/sounds/SoundEvents/f_144184_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_HIT +FD: net/minecraft/sounds/SoundEvents/f_144185_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144186_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_STEP +FD: net/minecraft/sounds/SoundEvents/f_144187_ net/minecraft/sounds/SoundEvents/MOSS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144188_ net/minecraft/sounds/SoundEvents/MOSS_FALL +FD: net/minecraft/sounds/SoundEvents/f_144189_ net/minecraft/sounds/SoundEvents/MOSS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144190_ net/minecraft/sounds/SoundEvents/MOSS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144191_ net/minecraft/sounds/SoundEvents/MOSS_STEP +FD: net/minecraft/sounds/SoundEvents/f_144192_ net/minecraft/sounds/SoundEvents/MEDIUM_AMETHYST_BUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144193_ net/minecraft/sounds/SoundEvents/MEDIUM_AMETHYST_BUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144194_ net/minecraft/sounds/SoundEvents/MINECART_INSIDE_UNDERWATER +FD: net/minecraft/sounds/SoundEvents/f_144195_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144196_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144197_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144198_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144199_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144200_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144201_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_FALL +FD: net/minecraft/sounds/SoundEvents/f_144202_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_HIT +FD: net/minecraft/sounds/SoundEvents/f_144203_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144204_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_STEP +FD: net/minecraft/sounds/SoundEvents/f_144205_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_FREEZE +FD: net/minecraft/sounds/SoundEvents/f_144206_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144207_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_FALL +FD: net/minecraft/sounds/SoundEvents/f_144208_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_HIT +FD: net/minecraft/sounds/SoundEvents/f_144209_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144210_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_STEP +FD: net/minecraft/sounds/SoundEvents/f_144211_ net/minecraft/sounds/SoundEvents/SKELETON_CONVERTED_TO_STRAY +FD: net/minecraft/sounds/SoundEvents/f_144212_ net/minecraft/sounds/SoundEvents/SCULK_CLICKING +FD: net/minecraft/sounds/SoundEvents/f_144213_ net/minecraft/sounds/SoundEvents/SCULK_CLICKING_STOP +FD: net/minecraft/sounds/SoundEvents/f_144214_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144215_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_FALL +FD: net/minecraft/sounds/SoundEvents/f_144216_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_HIT +FD: net/minecraft/sounds/SoundEvents/f_144217_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144218_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_STEP +FD: net/minecraft/sounds/SoundEvents/f_144219_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144220_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_FALL +FD: net/minecraft/sounds/SoundEvents/f_144221_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_HIT +FD: net/minecraft/sounds/SoundEvents/f_144222_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144223_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_STEP +FD: net/minecraft/sounds/SoundEvents/f_144224_ net/minecraft/sounds/SoundEvents/SMALL_AMETHYST_BUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144225_ net/minecraft/sounds/SoundEvents/SMALL_AMETHYST_BUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144226_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144227_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_FALL +FD: net/minecraft/sounds/SoundEvents/f_144228_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_HIT +FD: net/minecraft/sounds/SoundEvents/f_144229_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144230_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_STEP +FD: net/minecraft/sounds/SoundEvents/f_144231_ net/minecraft/sounds/SoundEvents/SPYGLASS_USE +FD: net/minecraft/sounds/SoundEvents/f_144232_ net/minecraft/sounds/SoundEvents/SPYGLASS_STOP_USING +FD: net/minecraft/sounds/SoundEvents/f_144233_ net/minecraft/sounds/SoundEvents/TUFF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144234_ net/minecraft/sounds/SoundEvents/TUFF_STEP +FD: net/minecraft/sounds/SoundEvents/f_144235_ net/minecraft/sounds/SoundEvents/TUFF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144236_ net/minecraft/sounds/SoundEvents/TUFF_HIT +FD: net/minecraft/sounds/SoundEvents/f_144237_ net/minecraft/sounds/SoundEvents/TUFF_FALL +FD: net/minecraft/sounds/SoundEvents/f_144238_ net/minecraft/sounds/SoundEvents/VINE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144239_ net/minecraft/sounds/SoundEvents/VINE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144240_ net/minecraft/sounds/SoundEvents/VINE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144241_ net/minecraft/sounds/SoundEvents/VINE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144242_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144243_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_CHIME +FD: net/minecraft/sounds/SoundEvents/f_144244_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_144245_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_184214_ net/minecraft/sounds/SoundEvents/BUNDLE_DROP_CONTENTS +FD: net/minecraft/sounds/SoundEvents/f_184215_ net/minecraft/sounds/SoundEvents/BUNDLE_INSERT +FD: net/minecraft/sounds/SoundEvents/f_184216_ net/minecraft/sounds/SoundEvents/BUNDLE_REMOVE_ONE +FD: net/minecraft/sounds/SoundEvents/f_184217_ net/minecraft/sounds/SoundEvents/GROWING_PLANT_CROP +FD: net/minecraft/sounds/SoundEvents/f_184218_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_OTHERSIDE +FD: net/minecraft/sounds/SoundEvents/f_184219_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_DRIPSTONE_CAVES +FD: net/minecraft/sounds/SoundEvents/f_184220_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_GROVE +FD: net/minecraft/sounds/SoundEvents/f_184221_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_JAGGED_PEAKS +FD: net/minecraft/sounds/SoundEvents/f_184222_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_LUSH_CAVES +FD: net/minecraft/sounds/SoundEvents/f_184223_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_MEADOW +FD: net/minecraft/sounds/SoundEvents/f_184224_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_FROZEN_PEAKS +FD: net/minecraft/sounds/SoundEvents/f_184225_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SNOWY_SLOPES +FD: net/minecraft/sounds/SoundEvents/f_184226_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_STONY_PEAKS +FD: net/minecraft/sounds/SoundEvents/f_215670_ net/minecraft/sounds/SoundEvents/ALLAY_AMBIENT_WITH_ITEM +FD: net/minecraft/sounds/SoundEvents/f_215671_ net/minecraft/sounds/SoundEvents/ALLAY_AMBIENT_WITHOUT_ITEM +FD: net/minecraft/sounds/SoundEvents/f_215672_ net/minecraft/sounds/SoundEvents/ALLAY_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215673_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_TADPOLE +FD: net/minecraft/sounds/SoundEvents/f_215674_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_TADPOLE +FD: net/minecraft/sounds/SoundEvents/f_215675_ net/minecraft/sounds/SoundEvents/ALLAY_HURT +FD: net/minecraft/sounds/SoundEvents/f_215676_ net/minecraft/sounds/SoundEvents/ALLAY_ITEM_GIVEN +FD: net/minecraft/sounds/SoundEvents/f_215677_ net/minecraft/sounds/SoundEvents/ALLAY_ITEM_TAKEN +FD: net/minecraft/sounds/SoundEvents/f_215678_ net/minecraft/sounds/SoundEvents/ALLAY_THROW +FD: net/minecraft/sounds/SoundEvents/f_215679_ net/minecraft/sounds/SoundEvents/FROGLIGHT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215680_ net/minecraft/sounds/SoundEvents/FROGLIGHT_FALL +FD: net/minecraft/sounds/SoundEvents/f_215681_ net/minecraft/sounds/SoundEvents/FROGLIGHT_HIT +FD: net/minecraft/sounds/SoundEvents/f_215682_ net/minecraft/sounds/SoundEvents/FROGLIGHT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215683_ net/minecraft/sounds/SoundEvents/FROGLIGHT_STEP +FD: net/minecraft/sounds/SoundEvents/f_215684_ net/minecraft/sounds/SoundEvents/FROGSPAWNSTEP +FD: net/minecraft/sounds/SoundEvents/f_215685_ net/minecraft/sounds/SoundEvents/FROGSPAWN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215686_ net/minecraft/sounds/SoundEvents/FROGSPAWN_FALL +FD: net/minecraft/sounds/SoundEvents/f_215687_ net/minecraft/sounds/SoundEvents/FROGSPAWN_HATCH +FD: net/minecraft/sounds/SoundEvents/f_215688_ net/minecraft/sounds/SoundEvents/FROGSPAWN_HIT +FD: net/minecraft/sounds/SoundEvents/f_215689_ net/minecraft/sounds/SoundEvents/FROGSPAWN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215690_ net/minecraft/sounds/SoundEvents/FROG_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_215691_ net/minecraft/sounds/SoundEvents/FROG_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215692_ net/minecraft/sounds/SoundEvents/FROG_EAT +FD: net/minecraft/sounds/SoundEvents/f_215693_ net/minecraft/sounds/SoundEvents/FROG_HURT +FD: net/minecraft/sounds/SoundEvents/f_215694_ net/minecraft/sounds/SoundEvents/FROG_LAY_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_215695_ net/minecraft/sounds/SoundEvents/FROG_LONG_JUMP +FD: net/minecraft/sounds/SoundEvents/f_215696_ net/minecraft/sounds/SoundEvents/FROG_STEP +FD: net/minecraft/sounds/SoundEvents/f_215697_ net/minecraft/sounds/SoundEvents/FROG_TONGUE +FD: net/minecraft/sounds/SoundEvents/f_215698_ net/minecraft/sounds/SoundEvents/GOAT_HORN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215699_ net/minecraft/sounds/SoundEvents/GOAT_HORN_PLAY +FD: net/minecraft/sounds/SoundEvents/f_215700_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_HORN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215701_ net/minecraft/sounds/SoundEvents/GOAT_HORN_VARIANT_COUNT +FD: net/minecraft/sounds/SoundEvents/f_215702_ net/minecraft/sounds/SoundEvents/GOAT_HORN_SOUND_VARIANTS +FD: net/minecraft/sounds/SoundEvents/f_215703_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215704_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_215705_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_215706_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215707_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_215708_ net/minecraft/sounds/SoundEvents/MUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215709_ net/minecraft/sounds/SoundEvents/MUD_FALL +FD: net/minecraft/sounds/SoundEvents/f_215710_ net/minecraft/sounds/SoundEvents/MUD_HIT +FD: net/minecraft/sounds/SoundEvents/f_215711_ net/minecraft/sounds/SoundEvents/MUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215712_ net/minecraft/sounds/SoundEvents/MUD_STEP +FD: net/minecraft/sounds/SoundEvents/f_215713_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215714_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_FALL +FD: net/minecraft/sounds/SoundEvents/f_215715_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_HIT +FD: net/minecraft/sounds/SoundEvents/f_215716_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215717_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_STEP +FD: net/minecraft/sounds/SoundEvents/f_215718_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215719_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_215720_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_215721_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215722_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_215723_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_5 +FD: net/minecraft/sounds/SoundEvents/f_215724_ net/minecraft/sounds/SoundEvents/PACKED_MUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215725_ net/minecraft/sounds/SoundEvents/PACKED_MUD_FALL +FD: net/minecraft/sounds/SoundEvents/f_215726_ net/minecraft/sounds/SoundEvents/PACKED_MUD_HIT +FD: net/minecraft/sounds/SoundEvents/f_215727_ net/minecraft/sounds/SoundEvents/PACKED_MUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215728_ net/minecraft/sounds/SoundEvents/PACKED_MUD_STEP +FD: net/minecraft/sounds/SoundEvents/f_215729_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_DEEP_DARK +FD: net/minecraft/sounds/SoundEvents/f_215730_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SWAMP +FD: net/minecraft/sounds/SoundEvents/f_215732_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_OLD_GROWTH_TAIGA +FD: net/minecraft/sounds/SoundEvents/f_215733_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WARDEN +FD: net/minecraft/sounds/SoundEvents/f_215734_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_215735_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215736_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_215737_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_215738_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215739_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_215740_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_BLOOM +FD: net/minecraft/sounds/SoundEvents/f_215741_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215742_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_FALL +FD: net/minecraft/sounds/SoundEvents/f_215743_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_HIT +FD: net/minecraft/sounds/SoundEvents/f_215744_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215745_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_STEP +FD: net/minecraft/sounds/SoundEvents/f_215746_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215747_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_FALL +FD: net/minecraft/sounds/SoundEvents/f_215748_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_HIT +FD: net/minecraft/sounds/SoundEvents/f_215749_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215750_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_SHRIEK +FD: net/minecraft/sounds/SoundEvents/f_215751_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_STEP +FD: net/minecraft/sounds/SoundEvents/f_215752_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215753_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_SPREAD +FD: net/minecraft/sounds/SoundEvents/f_215754_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_FALL +FD: net/minecraft/sounds/SoundEvents/f_215755_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_HIT +FD: net/minecraft/sounds/SoundEvents/f_215756_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215757_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_215758_ net/minecraft/sounds/SoundEvents/TADPOLE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215759_ net/minecraft/sounds/SoundEvents/TADPOLE_FLOP +FD: net/minecraft/sounds/SoundEvents/f_215760_ net/minecraft/sounds/SoundEvents/TADPOLE_GROW_UP +FD: net/minecraft/sounds/SoundEvents/f_215761_ net/minecraft/sounds/SoundEvents/TADPOLE_HURT +FD: net/minecraft/sounds/SoundEvents/f_215762_ net/minecraft/sounds/SoundEvents/WARDEN_HEARTBEAT +FD: net/minecraft/sounds/SoundEvents/f_215763_ net/minecraft/sounds/SoundEvents/WARDEN_HURT +FD: net/minecraft/sounds/SoundEvents/f_215764_ net/minecraft/sounds/SoundEvents/WARDEN_LISTENING +FD: net/minecraft/sounds/SoundEvents/f_215765_ net/minecraft/sounds/SoundEvents/WARDEN_LISTENING_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_215766_ net/minecraft/sounds/SoundEvents/WARDEN_NEARBY_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_215767_ net/minecraft/sounds/SoundEvents/WARDEN_NEARBY_CLOSER +FD: net/minecraft/sounds/SoundEvents/f_215768_ net/minecraft/sounds/SoundEvents/WARDEN_NEARBY_CLOSEST +FD: net/minecraft/sounds/SoundEvents/f_215769_ net/minecraft/sounds/SoundEvents/WARDEN_ROAR +FD: net/minecraft/sounds/SoundEvents/f_215770_ net/minecraft/sounds/SoundEvents/WARDEN_SNIFF +FD: net/minecraft/sounds/SoundEvents/f_215771_ net/minecraft/sounds/SoundEvents/WARDEN_SONIC_BOOM +FD: net/minecraft/sounds/SoundEvents/f_215772_ net/minecraft/sounds/SoundEvents/WARDEN_SONIC_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_215773_ net/minecraft/sounds/SoundEvents/WARDEN_STEP +FD: net/minecraft/sounds/SoundEvents/f_215774_ net/minecraft/sounds/SoundEvents/WARDEN_TENDRIL_CLICKS +FD: net/minecraft/sounds/SoundEvents/f_215775_ net/minecraft/sounds/SoundEvents/WARDEN_AGITATED +FD: net/minecraft/sounds/SoundEvents/f_215776_ net/minecraft/sounds/SoundEvents/WARDEN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_215777_ net/minecraft/sounds/SoundEvents/WARDEN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_215778_ net/minecraft/sounds/SoundEvents/WARDEN_ATTACK_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_215779_ net/minecraft/sounds/SoundEvents/WARDEN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215780_ net/minecraft/sounds/SoundEvents/WARDEN_DIG +FD: net/minecraft/sounds/SoundEvents/f_215781_ net/minecraft/sounds/SoundEvents/WARDEN_EMERGE +FD: net/minecraft/sounds/SoundEvents/f_243673_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_243699_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_243707_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_243713_ net/minecraft/sounds/SoundEvents/CAMEL_EAT +FD: net/minecraft/sounds/SoundEvents/f_243719_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_243721_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_243764_ net/minecraft/sounds/SoundEvents/CAMEL_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_243775_ net/minecraft/sounds/SoundEvents/CAMEL_HURT +FD: net/minecraft/sounds/SoundEvents/f_243814_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_243868_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_243893_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_243903_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_243933_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_243972_ net/minecraft/sounds/SoundEvents/CAMEL_DEATH +FD: net/minecraft/sounds/SoundEvents/f_243978_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_243990_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_244016_ net/minecraft/sounds/SoundEvents/CAMEL_STEP_SAND +FD: net/minecraft/sounds/SoundEvents/f_244021_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_244032_ net/minecraft/sounds/SoundEvents/CAMEL_DASH_READY +FD: net/minecraft/sounds/SoundEvents/f_244033_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_244044_ net/minecraft/sounds/SoundEvents/CAMEL_STAND +FD: net/minecraft/sounds/SoundEvents/f_244067_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244086_ net/minecraft/sounds/SoundEvents/CAMEL_SIT +FD: net/minecraft/sounds/SoundEvents/f_244107_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_244181_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244204_ net/minecraft/sounds/SoundEvents/CAMEL_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_244210_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244240_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_244275_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244286_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_244318_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244336_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244344_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_244376_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_244414_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244420_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_244426_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_244432_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_244506_ net/minecraft/sounds/SoundEvents/CAMEL_STEP +FD: net/minecraft/sounds/SoundEvents/f_244533_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_244538_ net/minecraft/sounds/SoundEvents/CAMEL_DASH +FD: net/minecraft/sounds/SoundEvents/f_244543_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_244579_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244593_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_244597_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_244603_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_256717_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_PICKUP +FD: net/minecraft/sounds/SoundEvents/f_256721_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_256738_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_256739_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_FALL +FD: net/minecraft/sounds/SoundEvents/f_256748_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_256765_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_256782_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_256813_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_256821_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_256835_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_256863_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_INSERT_ENCHANTED +FD: net/minecraft/sounds/SoundEvents/f_256866_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_256874_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_STEP +FD: net/minecraft/sounds/SoundEvents/f_256884_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_256943_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_256961_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_INSERT +FD: net/minecraft/sounds/SoundEvents/f_256993_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_HIT +FD: net/minecraft/sounds/SoundEvents/f_257000_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_PICKUP_ENCHANTED +FD: net/minecraft/sounds/SoundEvents/f_257042_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_263121_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_CREEPER +FD: net/minecraft/sounds/SoundEvents/f_263123_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_PIGLIN +FD: net/minecraft/sounds/SoundEvents/f_263126_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_WITHER_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_263127_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_263132_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_ENDER_DRAGON +FD: net/minecraft/sounds/SoundEvents/f_263136_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_ZOMBIE +FD: net/minecraft/sounds/SoundEvents/f_271095_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_271103_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271105_ net/minecraft/sounds/SoundEvents/PINK_PETALS_STEP +FD: net/minecraft/sounds/SoundEvents/f_271121_ net/minecraft/sounds/SoundEvents/SNIFFER_SCENTING +FD: net/minecraft/sounds/SoundEvents/f_271122_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_FALL +FD: net/minecraft/sounds/SoundEvents/f_271127_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271129_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_271130_ net/minecraft/sounds/SoundEvents/PINK_PETALS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271135_ net/minecraft/sounds/SoundEvents/PINK_PETALS_HIT +FD: net/minecraft/sounds/SoundEvents/f_271142_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_271146_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271147_ net/minecraft/sounds/SoundEvents/SNIFFER_EAT +FD: net/minecraft/sounds/SoundEvents/f_271165_ net/minecraft/sounds/SoundEvents/EMPTY +FD: net/minecraft/sounds/SoundEvents/f_271171_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_271174_ net/minecraft/sounds/SoundEvents/BRUSH_SAND +FD: net/minecraft/sounds/SoundEvents/f_271175_ net/minecraft/sounds/SoundEvents/DECORATED_POT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271181_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_271189_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271211_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_HIT +FD: net/minecraft/sounds/SoundEvents/f_271214_ net/minecraft/sounds/SoundEvents/SNIFFER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_271221_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271250_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271257_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_CHERRY_GROVE +FD: net/minecraft/sounds/SoundEvents/f_271262_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_271273_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_271283_ net/minecraft/sounds/SoundEvents/SNIFFER_SNIFFING +FD: net/minecraft/sounds/SoundEvents/f_271300_ net/minecraft/sounds/SoundEvents/SNIFFER_HAPPY +FD: net/minecraft/sounds/SoundEvents/f_271307_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_HIT +FD: net/minecraft/sounds/SoundEvents/f_271315_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271319_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271320_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_271322_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_271324_ net/minecraft/sounds/SoundEvents/DECORATED_POT_FALL +FD: net/minecraft/sounds/SoundEvents/f_271325_ net/minecraft/sounds/SoundEvents/SNIFFER_STEP +FD: net/minecraft/sounds/SoundEvents/f_271330_ net/minecraft/sounds/SoundEvents/SNIFFER_DROP_SEED +FD: net/minecraft/sounds/SoundEvents/f_271332_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_STEP +FD: net/minecraft/sounds/SoundEvents/f_271336_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_271337_ net/minecraft/sounds/SoundEvents/DECORATED_POT_STEP +FD: net/minecraft/sounds/SoundEvents/f_271339_ net/minecraft/sounds/SoundEvents/DECORATED_POT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271369_ net/minecraft/sounds/SoundEvents/DECORATED_POT_SHATTER +FD: net/minecraft/sounds/SoundEvents/f_271390_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_FALL +FD: net/minecraft/sounds/SoundEvents/f_271395_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_271405_ net/minecraft/sounds/SoundEvents/SNIFFER_DIGGING_STOP +FD: net/minecraft/sounds/SoundEvents/f_271406_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_271418_ net/minecraft/sounds/SoundEvents/SNIFFER_SEARCHING +FD: net/minecraft/sounds/SoundEvents/f_271419_ net/minecraft/sounds/SoundEvents/PINK_PETALS_FALL +FD: net/minecraft/sounds/SoundEvents/f_271428_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_271438_ net/minecraft/sounds/SoundEvents/SNIFFER_DIGGING +FD: net/minecraft/sounds/SoundEvents/f_271444_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_271448_ net/minecraft/sounds/SoundEvents/DECORATED_POT_HIT +FD: net/minecraft/sounds/SoundEvents/f_271452_ net/minecraft/sounds/SoundEvents/BRUSH_SAND_COMPLETED +FD: net/minecraft/sounds/SoundEvents/f_271457_ net/minecraft/sounds/SoundEvents/PINK_PETALS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271488_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_271494_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271496_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_271507_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_271513_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271515_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_STEP +FD: net/minecraft/sounds/SoundEvents/f_271520_ net/minecraft/sounds/SoundEvents/SNIFFER_HURT +FD: net/minecraft/sounds/SoundEvents/f_271527_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_STEP +FD: net/minecraft/sounds/SoundEvents/f_271532_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_271535_ net/minecraft/sounds/SoundEvents/SNIFFER_IDLE +FD: net/minecraft/sounds/SoundEvents/f_276434_ net/minecraft/sounds/SoundEvents/SNIFFER_EGG_CRACK +FD: net/minecraft/sounds/SoundEvents/f_276439_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_STEP +FD: net/minecraft/sounds/SoundEvents/f_276489_ net/minecraft/sounds/SoundEvents/SNIFFER_EGG_HATCH +FD: net/minecraft/sounds/SoundEvents/f_276508_ net/minecraft/sounds/SoundEvents/BRUSH_GRAVEL_COMPLETED +FD: net/minecraft/sounds/SoundEvents/f_276532_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_RESONATE +FD: net/minecraft/sounds/SoundEvents/f_276543_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_FALL +FD: net/minecraft/sounds/SoundEvents/f_276580_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_HIT +FD: net/minecraft/sounds/SoundEvents/f_276591_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_276592_ net/minecraft/sounds/SoundEvents/BRUSH_GRAVEL +FD: net/minecraft/sounds/SoundEvents/f_276624_ net/minecraft/sounds/SoundEvents/BRUSH_GENERIC +FD: net/minecraft/sounds/SoundEvents/f_276627_ net/minecraft/sounds/SoundEvents/WAXED_SIGN_INTERACT_FAIL +FD: net/minecraft/sounds/SoundEvents/f_276660_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_279531_ net/minecraft/sounds/SoundEvents/SNIFFER_EGG_PLOP +FD: net/minecraft/sounds/SoundEvents/f_283786_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_JUNGLE +FD: net/minecraft/sounds/SoundEvents/f_283788_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_FOREST +FD: net/minecraft/sounds/SoundEvents/f_283817_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_FLOWER_FOREST +FD: net/minecraft/sounds/SoundEvents/f_283840_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_DESERT +FD: net/minecraft/sounds/SoundEvents/f_283878_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SPARSE_JUNGLE +FD: net/minecraft/sounds/SoundEvents/f_283910_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_RELIC +FD: net/minecraft/sounds/SoundEvents/f_283937_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_BADLANDS +FD: net/minecraft/sounds/SoundEvents/f_283944_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_BAMBOO_JUNGLE +FD: net/minecraft/sounds/SoundSource/$VALUES net/minecraft/sounds/SoundSource/$VALUES +FD: net/minecraft/sounds/SoundSource/AMBIENT net/minecraft/sounds/SoundSource/AMBIENT +FD: net/minecraft/sounds/SoundSource/BLOCKS net/minecraft/sounds/SoundSource/BLOCKS +FD: net/minecraft/sounds/SoundSource/HOSTILE net/minecraft/sounds/SoundSource/HOSTILE +FD: net/minecraft/sounds/SoundSource/MASTER net/minecraft/sounds/SoundSource/MASTER +FD: net/minecraft/sounds/SoundSource/MUSIC net/minecraft/sounds/SoundSource/MUSIC +FD: net/minecraft/sounds/SoundSource/NEUTRAL net/minecraft/sounds/SoundSource/NEUTRAL +FD: net/minecraft/sounds/SoundSource/PLAYERS net/minecraft/sounds/SoundSource/PLAYERS +FD: net/minecraft/sounds/SoundSource/RECORDS net/minecraft/sounds/SoundSource/RECORDS +FD: net/minecraft/sounds/SoundSource/VOICE net/minecraft/sounds/SoundSource/VOICE +FD: net/minecraft/sounds/SoundSource/WEATHER net/minecraft/sounds/SoundSource/WEATHER +FD: net/minecraft/sounds/SoundSource/f_12669_ net/minecraft/sounds/SoundSource/name +FD: net/minecraft/stats/RecipeBook/f_12680_ net/minecraft/stats/RecipeBook/known +FD: net/minecraft/stats/RecipeBook/f_12681_ net/minecraft/stats/RecipeBook/highlight +FD: net/minecraft/stats/RecipeBook/f_12682_ net/minecraft/stats/RecipeBook/bookSettings +FD: net/minecraft/stats/RecipeBookSettings/f_12725_ net/minecraft/stats/RecipeBookSettings/TAG_FIELDS +FD: net/minecraft/stats/RecipeBookSettings/f_12726_ net/minecraft/stats/RecipeBookSettings/states +FD: net/minecraft/stats/RecipeBookSettings$TypeSettings/f_12766_ net/minecraft/stats/RecipeBookSettings$TypeSettings/open +FD: net/minecraft/stats/RecipeBookSettings$TypeSettings/f_12767_ net/minecraft/stats/RecipeBookSettings$TypeSettings/filtering +FD: net/minecraft/stats/ServerRecipeBook/f_12786_ net/minecraft/stats/ServerRecipeBook/LOGGER +FD: net/minecraft/stats/ServerRecipeBook/f_144248_ net/minecraft/stats/ServerRecipeBook/RECIPE_BOOK_TAG +FD: net/minecraft/stats/ServerStatsCounter/f_12809_ net/minecraft/stats/ServerStatsCounter/LOGGER +FD: net/minecraft/stats/ServerStatsCounter/f_12810_ net/minecraft/stats/ServerStatsCounter/server +FD: net/minecraft/stats/ServerStatsCounter/f_12811_ net/minecraft/stats/ServerStatsCounter/file +FD: net/minecraft/stats/ServerStatsCounter/f_12812_ net/minecraft/stats/ServerStatsCounter/dirty +FD: net/minecraft/stats/Stat/f_12852_ net/minecraft/stats/Stat/formatter +FD: net/minecraft/stats/Stat/f_12853_ net/minecraft/stats/Stat/value +FD: net/minecraft/stats/Stat/f_12854_ net/minecraft/stats/Stat/type +FD: net/minecraft/stats/StatFormatter/f_12872_ net/minecraft/stats/StatFormatter/DECIMAL_FORMAT +FD: net/minecraft/stats/StatFormatter/f_12873_ net/minecraft/stats/StatFormatter/DEFAULT +FD: net/minecraft/stats/StatFormatter/f_12874_ net/minecraft/stats/StatFormatter/DIVIDE_BY_TEN +FD: net/minecraft/stats/StatFormatter/f_12875_ net/minecraft/stats/StatFormatter/DISTANCE +FD: net/minecraft/stats/StatFormatter/f_12876_ net/minecraft/stats/StatFormatter/TIME +FD: net/minecraft/stats/StatType/f_12888_ net/minecraft/stats/StatType/registry +FD: net/minecraft/stats/StatType/f_12889_ net/minecraft/stats/StatType/map +FD: net/minecraft/stats/StatType/f_12890_ net/minecraft/stats/StatType/displayName +FD: net/minecraft/stats/Stats/f_12923_ net/minecraft/stats/Stats/AVIATE_ONE_CM +FD: net/minecraft/stats/Stats/f_12924_ net/minecraft/stats/Stats/SWIM_ONE_CM +FD: net/minecraft/stats/Stats/f_12925_ net/minecraft/stats/Stats/STRIDER_ONE_CM +FD: net/minecraft/stats/Stats/f_12926_ net/minecraft/stats/Stats/JUMP +FD: net/minecraft/stats/Stats/f_12927_ net/minecraft/stats/Stats/DROP +FD: net/minecraft/stats/Stats/f_12928_ net/minecraft/stats/Stats/DAMAGE_DEALT +FD: net/minecraft/stats/Stats/f_12929_ net/minecraft/stats/Stats/DAMAGE_DEALT_ABSORBED +FD: net/minecraft/stats/Stats/f_12930_ net/minecraft/stats/Stats/DAMAGE_DEALT_RESISTED +FD: net/minecraft/stats/Stats/f_12931_ net/minecraft/stats/Stats/DAMAGE_TAKEN +FD: net/minecraft/stats/Stats/f_12932_ net/minecraft/stats/Stats/DAMAGE_BLOCKED_BY_SHIELD +FD: net/minecraft/stats/Stats/f_12933_ net/minecraft/stats/Stats/DAMAGE_ABSORBED +FD: net/minecraft/stats/Stats/f_12934_ net/minecraft/stats/Stats/DAMAGE_RESISTED +FD: net/minecraft/stats/Stats/f_12935_ net/minecraft/stats/Stats/DEATHS +FD: net/minecraft/stats/Stats/f_12936_ net/minecraft/stats/Stats/MOB_KILLS +FD: net/minecraft/stats/Stats/f_12937_ net/minecraft/stats/Stats/ANIMALS_BRED +FD: net/minecraft/stats/Stats/f_12938_ net/minecraft/stats/Stats/PLAYER_KILLS +FD: net/minecraft/stats/Stats/f_12939_ net/minecraft/stats/Stats/FISH_CAUGHT +FD: net/minecraft/stats/Stats/f_12940_ net/minecraft/stats/Stats/TALKED_TO_VILLAGER +FD: net/minecraft/stats/Stats/f_12941_ net/minecraft/stats/Stats/TRADED_WITH_VILLAGER +FD: net/minecraft/stats/Stats/f_12942_ net/minecraft/stats/Stats/EAT_CAKE_SLICE +FD: net/minecraft/stats/Stats/f_12943_ net/minecraft/stats/Stats/FILL_CAULDRON +FD: net/minecraft/stats/Stats/f_12944_ net/minecraft/stats/Stats/USE_CAULDRON +FD: net/minecraft/stats/Stats/f_12945_ net/minecraft/stats/Stats/CLEAN_ARMOR +FD: net/minecraft/stats/Stats/f_12946_ net/minecraft/stats/Stats/CLEAN_BANNER +FD: net/minecraft/stats/Stats/f_12947_ net/minecraft/stats/Stats/CLEAN_SHULKER_BOX +FD: net/minecraft/stats/Stats/f_12948_ net/minecraft/stats/Stats/INTERACT_WITH_BREWINGSTAND +FD: net/minecraft/stats/Stats/f_12949_ net/minecraft/stats/Stats/BLOCK_MINED +FD: net/minecraft/stats/Stats/f_12950_ net/minecraft/stats/Stats/RAID_WIN +FD: net/minecraft/stats/Stats/f_12951_ net/minecraft/stats/Stats/INTERACT_WITH_ANVIL +FD: net/minecraft/stats/Stats/f_12952_ net/minecraft/stats/Stats/INTERACT_WITH_GRINDSTONE +FD: net/minecraft/stats/Stats/f_12953_ net/minecraft/stats/Stats/TARGET_HIT +FD: net/minecraft/stats/Stats/f_12954_ net/minecraft/stats/Stats/INTERACT_WITH_SMITHING_TABLE +FD: net/minecraft/stats/Stats/f_12955_ net/minecraft/stats/Stats/INTERACT_WITH_BEACON +FD: net/minecraft/stats/Stats/f_12956_ net/minecraft/stats/Stats/INSPECT_DROPPER +FD: net/minecraft/stats/Stats/f_12957_ net/minecraft/stats/Stats/INSPECT_HOPPER +FD: net/minecraft/stats/Stats/f_12958_ net/minecraft/stats/Stats/INSPECT_DISPENSER +FD: net/minecraft/stats/Stats/f_12959_ net/minecraft/stats/Stats/PLAY_NOTEBLOCK +FD: net/minecraft/stats/Stats/f_12960_ net/minecraft/stats/Stats/TUNE_NOTEBLOCK +FD: net/minecraft/stats/Stats/f_12961_ net/minecraft/stats/Stats/POT_FLOWER +FD: net/minecraft/stats/Stats/f_12962_ net/minecraft/stats/Stats/TRIGGER_TRAPPED_CHEST +FD: net/minecraft/stats/Stats/f_12963_ net/minecraft/stats/Stats/OPEN_ENDERCHEST +FD: net/minecraft/stats/Stats/f_12964_ net/minecraft/stats/Stats/ENCHANT_ITEM +FD: net/minecraft/stats/Stats/f_12965_ net/minecraft/stats/Stats/PLAY_RECORD +FD: net/minecraft/stats/Stats/f_12966_ net/minecraft/stats/Stats/INTERACT_WITH_FURNACE +FD: net/minecraft/stats/Stats/f_12967_ net/minecraft/stats/Stats/INTERACT_WITH_CRAFTING_TABLE +FD: net/minecraft/stats/Stats/f_12968_ net/minecraft/stats/Stats/OPEN_CHEST +FD: net/minecraft/stats/Stats/f_12969_ net/minecraft/stats/Stats/SLEEP_IN_BED +FD: net/minecraft/stats/Stats/f_12970_ net/minecraft/stats/Stats/OPEN_SHULKER_BOX +FD: net/minecraft/stats/Stats/f_12971_ net/minecraft/stats/Stats/OPEN_BARREL +FD: net/minecraft/stats/Stats/f_12972_ net/minecraft/stats/Stats/INTERACT_WITH_BLAST_FURNACE +FD: net/minecraft/stats/Stats/f_12973_ net/minecraft/stats/Stats/INTERACT_WITH_SMOKER +FD: net/minecraft/stats/Stats/f_12974_ net/minecraft/stats/Stats/INTERACT_WITH_LECTERN +FD: net/minecraft/stats/Stats/f_12975_ net/minecraft/stats/Stats/INTERACT_WITH_CAMPFIRE +FD: net/minecraft/stats/Stats/f_12976_ net/minecraft/stats/Stats/INTERACT_WITH_CARTOGRAPHY_TABLE +FD: net/minecraft/stats/Stats/f_12977_ net/minecraft/stats/Stats/INTERACT_WITH_LOOM +FD: net/minecraft/stats/Stats/f_12978_ net/minecraft/stats/Stats/INTERACT_WITH_STONECUTTER +FD: net/minecraft/stats/Stats/f_12979_ net/minecraft/stats/Stats/BELL_RING +FD: net/minecraft/stats/Stats/f_12980_ net/minecraft/stats/Stats/RAID_TRIGGER +FD: net/minecraft/stats/Stats/f_12981_ net/minecraft/stats/Stats/ITEM_CRAFTED +FD: net/minecraft/stats/Stats/f_12982_ net/minecraft/stats/Stats/ITEM_USED +FD: net/minecraft/stats/Stats/f_12983_ net/minecraft/stats/Stats/ITEM_BROKEN +FD: net/minecraft/stats/Stats/f_12984_ net/minecraft/stats/Stats/ITEM_PICKED_UP +FD: net/minecraft/stats/Stats/f_12985_ net/minecraft/stats/Stats/ITEM_DROPPED +FD: net/minecraft/stats/Stats/f_12986_ net/minecraft/stats/Stats/ENTITY_KILLED +FD: net/minecraft/stats/Stats/f_12987_ net/minecraft/stats/Stats/ENTITY_KILLED_BY +FD: net/minecraft/stats/Stats/f_12988_ net/minecraft/stats/Stats/CUSTOM +FD: net/minecraft/stats/Stats/f_12989_ net/minecraft/stats/Stats/LEAVE_GAME +FD: net/minecraft/stats/Stats/f_12991_ net/minecraft/stats/Stats/TIME_SINCE_DEATH +FD: net/minecraft/stats/Stats/f_12992_ net/minecraft/stats/Stats/TIME_SINCE_REST +FD: net/minecraft/stats/Stats/f_12993_ net/minecraft/stats/Stats/CROUCH_TIME +FD: net/minecraft/stats/Stats/f_12994_ net/minecraft/stats/Stats/WALK_ONE_CM +FD: net/minecraft/stats/Stats/f_12995_ net/minecraft/stats/Stats/CROUCH_ONE_CM +FD: net/minecraft/stats/Stats/f_12996_ net/minecraft/stats/Stats/SPRINT_ONE_CM +FD: net/minecraft/stats/Stats/f_12997_ net/minecraft/stats/Stats/WALK_ON_WATER_ONE_CM +FD: net/minecraft/stats/Stats/f_12998_ net/minecraft/stats/Stats/FALL_ONE_CM +FD: net/minecraft/stats/Stats/f_12999_ net/minecraft/stats/Stats/CLIMB_ONE_CM +FD: net/minecraft/stats/Stats/f_13000_ net/minecraft/stats/Stats/FLY_ONE_CM +FD: net/minecraft/stats/Stats/f_13001_ net/minecraft/stats/Stats/WALK_UNDER_WATER_ONE_CM +FD: net/minecraft/stats/Stats/f_13002_ net/minecraft/stats/Stats/MINECART_ONE_CM +FD: net/minecraft/stats/Stats/f_13003_ net/minecraft/stats/Stats/BOAT_ONE_CM +FD: net/minecraft/stats/Stats/f_13004_ net/minecraft/stats/Stats/PIG_ONE_CM +FD: net/minecraft/stats/Stats/f_13005_ net/minecraft/stats/Stats/HORSE_ONE_CM +FD: net/minecraft/stats/Stats/f_144255_ net/minecraft/stats/Stats/PLAY_TIME +FD: net/minecraft/stats/Stats/f_144256_ net/minecraft/stats/Stats/TOTAL_WORLD_TIME +FD: net/minecraft/stats/StatsCounter/f_13013_ net/minecraft/stats/StatsCounter/stats +FD: net/minecraft/tags/BannerPatternTags/f_215788_ net/minecraft/tags/BannerPatternTags/NO_ITEM_REQUIRED +FD: net/minecraft/tags/BannerPatternTags/f_215789_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_FLOWER +FD: net/minecraft/tags/BannerPatternTags/f_215790_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_CREEPER +FD: net/minecraft/tags/BannerPatternTags/f_215791_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_SKULL +FD: net/minecraft/tags/BannerPatternTags/f_215792_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_MOJANG +FD: net/minecraft/tags/BannerPatternTags/f_215793_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_GLOBE +FD: net/minecraft/tags/BannerPatternTags/f_215794_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_PIGLIN +FD: net/minecraft/tags/BiomeTags/f_207586_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_STANDARD +FD: net/minecraft/tags/BiomeTags/f_207587_ net/minecraft/tags/BiomeTags/HAS_SHIPWRECK_BEACHED +FD: net/minecraft/tags/BiomeTags/f_207588_ net/minecraft/tags/BiomeTags/HAS_SHIPWRECK +FD: net/minecraft/tags/BiomeTags/f_207589_ net/minecraft/tags/BiomeTags/HAS_SWAMP_HUT +FD: net/minecraft/tags/BiomeTags/f_207590_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_DESERT +FD: net/minecraft/tags/BiomeTags/f_207591_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_PLAINS +FD: net/minecraft/tags/BiomeTags/f_207592_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_SAVANNA +FD: net/minecraft/tags/BiomeTags/f_207593_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_SNOWY +FD: net/minecraft/tags/BiomeTags/f_207594_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_TAIGA +FD: net/minecraft/tags/BiomeTags/f_207595_ net/minecraft/tags/BiomeTags/HAS_WOODLAND_MANSION +FD: net/minecraft/tags/BiomeTags/f_207596_ net/minecraft/tags/BiomeTags/HAS_STRONGHOLD +FD: net/minecraft/tags/BiomeTags/f_207597_ net/minecraft/tags/BiomeTags/HAS_NETHER_FORTRESS +FD: net/minecraft/tags/BiomeTags/f_207598_ net/minecraft/tags/BiomeTags/HAS_NETHER_FOSSIL +FD: net/minecraft/tags/BiomeTags/f_207599_ net/minecraft/tags/BiomeTags/HAS_BASTION_REMNANT +FD: net/minecraft/tags/BiomeTags/f_207600_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_NETHER +FD: net/minecraft/tags/BiomeTags/f_207601_ net/minecraft/tags/BiomeTags/HAS_END_CITY +FD: net/minecraft/tags/BiomeTags/f_207602_ net/minecraft/tags/BiomeTags/IS_DEEP_OCEAN +FD: net/minecraft/tags/BiomeTags/f_207603_ net/minecraft/tags/BiomeTags/IS_OCEAN +FD: net/minecraft/tags/BiomeTags/f_207604_ net/minecraft/tags/BiomeTags/IS_BEACH +FD: net/minecraft/tags/BiomeTags/f_207605_ net/minecraft/tags/BiomeTags/IS_RIVER +FD: net/minecraft/tags/BiomeTags/f_207606_ net/minecraft/tags/BiomeTags/IS_MOUNTAIN +FD: net/minecraft/tags/BiomeTags/f_207607_ net/minecraft/tags/BiomeTags/IS_BADLANDS +FD: net/minecraft/tags/BiomeTags/f_207608_ net/minecraft/tags/BiomeTags/IS_HILL +FD: net/minecraft/tags/BiomeTags/f_207609_ net/minecraft/tags/BiomeTags/IS_TAIGA +FD: net/minecraft/tags/BiomeTags/f_207610_ net/minecraft/tags/BiomeTags/IS_JUNGLE +FD: net/minecraft/tags/BiomeTags/f_207611_ net/minecraft/tags/BiomeTags/IS_FOREST +FD: net/minecraft/tags/BiomeTags/f_207612_ net/minecraft/tags/BiomeTags/IS_NETHER +FD: net/minecraft/tags/BiomeTags/f_207613_ net/minecraft/tags/BiomeTags/HAS_BURIED_TREASURE +FD: net/minecraft/tags/BiomeTags/f_207614_ net/minecraft/tags/BiomeTags/HAS_DESERT_PYRAMID +FD: net/minecraft/tags/BiomeTags/f_207615_ net/minecraft/tags/BiomeTags/HAS_IGLOO +FD: net/minecraft/tags/BiomeTags/f_207616_ net/minecraft/tags/BiomeTags/HAS_JUNGLE_TEMPLE +FD: net/minecraft/tags/BiomeTags/f_207617_ net/minecraft/tags/BiomeTags/HAS_MINESHAFT +FD: net/minecraft/tags/BiomeTags/f_207618_ net/minecraft/tags/BiomeTags/HAS_MINESHAFT_MESA +FD: net/minecraft/tags/BiomeTags/f_207619_ net/minecraft/tags/BiomeTags/HAS_OCEAN_MONUMENT +FD: net/minecraft/tags/BiomeTags/f_207620_ net/minecraft/tags/BiomeTags/HAS_OCEAN_RUIN_COLD +FD: net/minecraft/tags/BiomeTags/f_207621_ net/minecraft/tags/BiomeTags/HAS_OCEAN_RUIN_WARM +FD: net/minecraft/tags/BiomeTags/f_207622_ net/minecraft/tags/BiomeTags/HAS_PILLAGER_OUTPOST +FD: net/minecraft/tags/BiomeTags/f_207623_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_DESERT +FD: net/minecraft/tags/BiomeTags/f_207624_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_JUNGLE +FD: net/minecraft/tags/BiomeTags/f_207625_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_OCEAN +FD: net/minecraft/tags/BiomeTags/f_207626_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_SWAMP +FD: net/minecraft/tags/BiomeTags/f_207627_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_MOUNTAIN +FD: net/minecraft/tags/BiomeTags/f_215799_ net/minecraft/tags/BiomeTags/HAS_ANCIENT_CITY +FD: net/minecraft/tags/BiomeTags/f_215800_ net/minecraft/tags/BiomeTags/REQUIRED_OCEAN_MONUMENT_SURROUNDING +FD: net/minecraft/tags/BiomeTags/f_215801_ net/minecraft/tags/BiomeTags/PLAYS_UNDERWATER_MUSIC +FD: net/minecraft/tags/BiomeTags/f_215802_ net/minecraft/tags/BiomeTags/HAS_CLOSER_WATER_FOG +FD: net/minecraft/tags/BiomeTags/f_215803_ net/minecraft/tags/BiomeTags/WATER_ON_MAP_OUTLINES +FD: net/minecraft/tags/BiomeTags/f_215804_ net/minecraft/tags/BiomeTags/PRODUCES_CORALS_FROM_BONEMEAL +FD: net/minecraft/tags/BiomeTags/f_215805_ net/minecraft/tags/BiomeTags/WITHOUT_ZOMBIE_SIEGES +FD: net/minecraft/tags/BiomeTags/f_215806_ net/minecraft/tags/BiomeTags/WITHOUT_PATROL_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215807_ net/minecraft/tags/BiomeTags/WITHOUT_WANDERING_TRADER_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215808_ net/minecraft/tags/BiomeTags/SPAWNS_COLD_VARIANT_FROGS +FD: net/minecraft/tags/BiomeTags/f_215809_ net/minecraft/tags/BiomeTags/SPAWNS_WARM_VARIANT_FROGS +FD: net/minecraft/tags/BiomeTags/f_215811_ net/minecraft/tags/BiomeTags/REDUCED_WATER_AMBIENT_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215812_ net/minecraft/tags/BiomeTags/ALLOWS_TROPICAL_FISH_SPAWNS_AT_ANY_HEIGHT +FD: net/minecraft/tags/BiomeTags/f_215813_ net/minecraft/tags/BiomeTags/POLAR_BEARS_SPAWN_ON_ALTERNATE_BLOCKS +FD: net/minecraft/tags/BiomeTags/f_215814_ net/minecraft/tags/BiomeTags/MORE_FREQUENT_DROWNED_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215815_ net/minecraft/tags/BiomeTags/ALLOWS_SURFACE_SLIME_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215816_ net/minecraft/tags/BiomeTags/IS_SAVANNA +FD: net/minecraft/tags/BiomeTags/f_215817_ net/minecraft/tags/BiomeTags/IS_OVERWORLD +FD: net/minecraft/tags/BiomeTags/f_215818_ net/minecraft/tags/BiomeTags/IS_END +FD: net/minecraft/tags/BiomeTags/f_215819_ net/minecraft/tags/BiomeTags/STRONGHOLD_BIASED_TO +FD: net/minecraft/tags/BiomeTags/f_238171_ net/minecraft/tags/BiomeTags/MINESHAFT_BLOCKING +FD: net/minecraft/tags/BiomeTags/f_263748_ net/minecraft/tags/BiomeTags/SPAWNS_SNOW_FOXES +FD: net/minecraft/tags/BiomeTags/f_263794_ net/minecraft/tags/BiomeTags/SPAWNS_WHITE_RABBITS +FD: net/minecraft/tags/BiomeTags/f_263796_ net/minecraft/tags/BiomeTags/SPAWNS_GOLD_RABBITS +FD: net/minecraft/tags/BiomeTags/f_263828_ net/minecraft/tags/BiomeTags/SNOW_GOLEM_MELTS +FD: net/minecraft/tags/BiomeTags/f_263839_ net/minecraft/tags/BiomeTags/INCREASED_FIRE_BURNOUT +FD: net/minecraft/tags/BiomeTags/f_276517_ net/minecraft/tags/BiomeTags/HAS_TRAIL_RUINS +FD: net/minecraft/tags/BlockTags/f_13027_ net/minecraft/tags/BlockTags/WARPED_STEMS +FD: net/minecraft/tags/BlockTags/f_13028_ net/minecraft/tags/BlockTags/BANNERS +FD: net/minecraft/tags/BlockTags/f_13029_ net/minecraft/tags/BlockTags/SAND +FD: net/minecraft/tags/BlockTags/f_13030_ net/minecraft/tags/BlockTags/STAIRS +FD: net/minecraft/tags/BlockTags/f_13031_ net/minecraft/tags/BlockTags/SLABS +FD: net/minecraft/tags/BlockTags/f_13032_ net/minecraft/tags/BlockTags/WALLS +FD: net/minecraft/tags/BlockTags/f_13033_ net/minecraft/tags/BlockTags/ANVIL +FD: net/minecraft/tags/BlockTags/f_13034_ net/minecraft/tags/BlockTags/RAILS +FD: net/minecraft/tags/BlockTags/f_13035_ net/minecraft/tags/BlockTags/LEAVES +FD: net/minecraft/tags/BlockTags/f_13036_ net/minecraft/tags/BlockTags/TRAPDOORS +FD: net/minecraft/tags/BlockTags/f_13037_ net/minecraft/tags/BlockTags/SMALL_FLOWERS +FD: net/minecraft/tags/BlockTags/f_13038_ net/minecraft/tags/BlockTags/BEDS +FD: net/minecraft/tags/BlockTags/f_13039_ net/minecraft/tags/BlockTags/FENCES +FD: net/minecraft/tags/BlockTags/f_13040_ net/minecraft/tags/BlockTags/TALL_FLOWERS +FD: net/minecraft/tags/BlockTags/f_13041_ net/minecraft/tags/BlockTags/FLOWERS +FD: net/minecraft/tags/BlockTags/f_13042_ net/minecraft/tags/BlockTags/PIGLIN_REPELLENTS +FD: net/minecraft/tags/BlockTags/f_13043_ net/minecraft/tags/BlockTags/GOLD_ORES +FD: net/minecraft/tags/BlockTags/f_13045_ net/minecraft/tags/BlockTags/FLOWER_POTS +FD: net/minecraft/tags/BlockTags/f_13046_ net/minecraft/tags/BlockTags/ENDERMAN_HOLDABLE +FD: net/minecraft/tags/BlockTags/f_13047_ net/minecraft/tags/BlockTags/ICE +FD: net/minecraft/tags/BlockTags/f_13048_ net/minecraft/tags/BlockTags/VALID_SPAWN +FD: net/minecraft/tags/BlockTags/f_13049_ net/minecraft/tags/BlockTags/IMPERMEABLE +FD: net/minecraft/tags/BlockTags/f_13050_ net/minecraft/tags/BlockTags/UNDERWATER_BONEMEALS +FD: net/minecraft/tags/BlockTags/f_13051_ net/minecraft/tags/BlockTags/CORAL_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13052_ net/minecraft/tags/BlockTags/WALL_CORALS +FD: net/minecraft/tags/BlockTags/f_13054_ net/minecraft/tags/BlockTags/PREVENT_MOB_SPAWNING_INSIDE +FD: net/minecraft/tags/BlockTags/f_13055_ net/minecraft/tags/BlockTags/FENCE_GATES +FD: net/minecraft/tags/BlockTags/f_13056_ net/minecraft/tags/BlockTags/UNSTABLE_BOTTOM_CENTER +FD: net/minecraft/tags/BlockTags/f_13057_ net/minecraft/tags/BlockTags/MUSHROOM_GROW_BLOCK +FD: net/minecraft/tags/BlockTags/f_13058_ net/minecraft/tags/BlockTags/INFINIBURN_OVERWORLD +FD: net/minecraft/tags/BlockTags/f_13059_ net/minecraft/tags/BlockTags/INFINIBURN_NETHER +FD: net/minecraft/tags/BlockTags/f_13060_ net/minecraft/tags/BlockTags/INFINIBURN_END +FD: net/minecraft/tags/BlockTags/f_13061_ net/minecraft/tags/BlockTags/BASE_STONE_OVERWORLD +FD: net/minecraft/tags/BlockTags/f_13062_ net/minecraft/tags/BlockTags/BASE_STONE_NETHER +FD: net/minecraft/tags/BlockTags/f_13063_ net/minecraft/tags/BlockTags/CORAL_PLANTS +FD: net/minecraft/tags/BlockTags/f_13064_ net/minecraft/tags/BlockTags/CORALS +FD: net/minecraft/tags/BlockTags/f_13065_ net/minecraft/tags/BlockTags/BAMBOO_PLANTABLE_ON +FD: net/minecraft/tags/BlockTags/f_13066_ net/minecraft/tags/BlockTags/STANDING_SIGNS +FD: net/minecraft/tags/BlockTags/f_13067_ net/minecraft/tags/BlockTags/WALL_SIGNS +FD: net/minecraft/tags/BlockTags/f_13068_ net/minecraft/tags/BlockTags/SIGNS +FD: net/minecraft/tags/BlockTags/f_13069_ net/minecraft/tags/BlockTags/DRAGON_IMMUNE +FD: net/minecraft/tags/BlockTags/f_13070_ net/minecraft/tags/BlockTags/WITHER_IMMUNE +FD: net/minecraft/tags/BlockTags/f_13071_ net/minecraft/tags/BlockTags/WITHER_SUMMON_BASE_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13072_ net/minecraft/tags/BlockTags/BEEHIVES +FD: net/minecraft/tags/BlockTags/f_13073_ net/minecraft/tags/BlockTags/CROPS +FD: net/minecraft/tags/BlockTags/f_13074_ net/minecraft/tags/BlockTags/BEE_GROWABLES +FD: net/minecraft/tags/BlockTags/f_13075_ net/minecraft/tags/BlockTags/PORTALS +FD: net/minecraft/tags/BlockTags/f_13076_ net/minecraft/tags/BlockTags/FIRE +FD: net/minecraft/tags/BlockTags/f_13077_ net/minecraft/tags/BlockTags/NYLIUM +FD: net/minecraft/tags/BlockTags/f_13078_ net/minecraft/tags/BlockTags/WART_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13079_ net/minecraft/tags/BlockTags/BEACON_BASE_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13080_ net/minecraft/tags/BlockTags/SOUL_SPEED_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13081_ net/minecraft/tags/BlockTags/WALL_POST_OVERRIDE +FD: net/minecraft/tags/BlockTags/f_13082_ net/minecraft/tags/BlockTags/CLIMBABLE +FD: net/minecraft/tags/BlockTags/f_13083_ net/minecraft/tags/BlockTags/SHULKER_BOXES +FD: net/minecraft/tags/BlockTags/f_13084_ net/minecraft/tags/BlockTags/HOGLIN_REPELLENTS +FD: net/minecraft/tags/BlockTags/f_13085_ net/minecraft/tags/BlockTags/SOUL_FIRE_BASE_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13086_ net/minecraft/tags/BlockTags/STRIDER_WARM_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13087_ net/minecraft/tags/BlockTags/CAMPFIRES +FD: net/minecraft/tags/BlockTags/f_13088_ net/minecraft/tags/BlockTags/GUARDED_BY_PIGLINS +FD: net/minecraft/tags/BlockTags/f_13089_ net/minecraft/tags/BlockTags/WOOL +FD: net/minecraft/tags/BlockTags/f_13090_ net/minecraft/tags/BlockTags/PLANKS +FD: net/minecraft/tags/BlockTags/f_13091_ net/minecraft/tags/BlockTags/STONE_BRICKS +FD: net/minecraft/tags/BlockTags/f_13092_ net/minecraft/tags/BlockTags/WOODEN_BUTTONS +FD: net/minecraft/tags/BlockTags/f_13093_ net/minecraft/tags/BlockTags/BUTTONS +FD: net/minecraft/tags/BlockTags/f_13095_ net/minecraft/tags/BlockTags/WOODEN_DOORS +FD: net/minecraft/tags/BlockTags/f_13096_ net/minecraft/tags/BlockTags/WOODEN_STAIRS +FD: net/minecraft/tags/BlockTags/f_13097_ net/minecraft/tags/BlockTags/WOODEN_SLABS +FD: net/minecraft/tags/BlockTags/f_13098_ net/minecraft/tags/BlockTags/WOODEN_FENCES +FD: net/minecraft/tags/BlockTags/f_13099_ net/minecraft/tags/BlockTags/PRESSURE_PLATES +FD: net/minecraft/tags/BlockTags/f_13100_ net/minecraft/tags/BlockTags/WOODEN_PRESSURE_PLATES +FD: net/minecraft/tags/BlockTags/f_13101_ net/minecraft/tags/BlockTags/STONE_PRESSURE_PLATES +FD: net/minecraft/tags/BlockTags/f_13102_ net/minecraft/tags/BlockTags/WOODEN_TRAPDOORS +FD: net/minecraft/tags/BlockTags/f_13103_ net/minecraft/tags/BlockTags/DOORS +FD: net/minecraft/tags/BlockTags/f_13104_ net/minecraft/tags/BlockTags/SAPLINGS +FD: net/minecraft/tags/BlockTags/f_13105_ net/minecraft/tags/BlockTags/LOGS_THAT_BURN +FD: net/minecraft/tags/BlockTags/f_13106_ net/minecraft/tags/BlockTags/LOGS +FD: net/minecraft/tags/BlockTags/f_13107_ net/minecraft/tags/BlockTags/DARK_OAK_LOGS +FD: net/minecraft/tags/BlockTags/f_13108_ net/minecraft/tags/BlockTags/OAK_LOGS +FD: net/minecraft/tags/BlockTags/f_13109_ net/minecraft/tags/BlockTags/BIRCH_LOGS +FD: net/minecraft/tags/BlockTags/f_13110_ net/minecraft/tags/BlockTags/ACACIA_LOGS +FD: net/minecraft/tags/BlockTags/f_13111_ net/minecraft/tags/BlockTags/JUNGLE_LOGS +FD: net/minecraft/tags/BlockTags/f_13112_ net/minecraft/tags/BlockTags/SPRUCE_LOGS +FD: net/minecraft/tags/BlockTags/f_13113_ net/minecraft/tags/BlockTags/CRIMSON_STEMS +FD: net/minecraft/tags/BlockTags/f_144258_ net/minecraft/tags/BlockTags/IRON_ORES +FD: net/minecraft/tags/BlockTags/f_144259_ net/minecraft/tags/BlockTags/DIAMOND_ORES +FD: net/minecraft/tags/BlockTags/f_144260_ net/minecraft/tags/BlockTags/REDSTONE_ORES +FD: net/minecraft/tags/BlockTags/f_144261_ net/minecraft/tags/BlockTags/LAPIS_ORES +FD: net/minecraft/tags/BlockTags/f_144262_ net/minecraft/tags/BlockTags/COAL_ORES +FD: net/minecraft/tags/BlockTags/f_144263_ net/minecraft/tags/BlockTags/EMERALD_ORES +FD: net/minecraft/tags/BlockTags/f_144264_ net/minecraft/tags/BlockTags/COPPER_ORES +FD: net/minecraft/tags/BlockTags/f_144265_ net/minecraft/tags/BlockTags/CANDLES +FD: net/minecraft/tags/BlockTags/f_144266_ net/minecraft/tags/BlockTags/STONE_ORE_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_144267_ net/minecraft/tags/BlockTags/DEEPSLATE_ORE_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_144268_ net/minecraft/tags/BlockTags/CANDLE_CAKES +FD: net/minecraft/tags/BlockTags/f_144269_ net/minecraft/tags/BlockTags/CAULDRONS +FD: net/minecraft/tags/BlockTags/f_144270_ net/minecraft/tags/BlockTags/CRYSTAL_SOUND_BLOCKS +FD: net/minecraft/tags/BlockTags/f_144271_ net/minecraft/tags/BlockTags/INSIDE_STEP_SOUND_BLOCKS +FD: net/minecraft/tags/BlockTags/f_144272_ net/minecraft/tags/BlockTags/OCCLUDES_VIBRATION_SIGNALS +FD: net/minecraft/tags/BlockTags/f_144273_ net/minecraft/tags/BlockTags/DRIPSTONE_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_144274_ net/minecraft/tags/BlockTags/DIRT +FD: net/minecraft/tags/BlockTags/f_144275_ net/minecraft/tags/BlockTags/CAVE_VINES +FD: net/minecraft/tags/BlockTags/f_144276_ net/minecraft/tags/BlockTags/MOSS_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_144277_ net/minecraft/tags/BlockTags/LUSH_GROUND_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_144278_ net/minecraft/tags/BlockTags/SMALL_DRIPLEAF_PLACEABLE +FD: net/minecraft/tags/BlockTags/f_144279_ net/minecraft/tags/BlockTags/SNOW +FD: net/minecraft/tags/BlockTags/f_144280_ net/minecraft/tags/BlockTags/MINEABLE_WITH_AXE +FD: net/minecraft/tags/BlockTags/f_144281_ net/minecraft/tags/BlockTags/MINEABLE_WITH_HOE +FD: net/minecraft/tags/BlockTags/f_144282_ net/minecraft/tags/BlockTags/MINEABLE_WITH_PICKAXE +FD: net/minecraft/tags/BlockTags/f_144283_ net/minecraft/tags/BlockTags/MINEABLE_WITH_SHOVEL +FD: net/minecraft/tags/BlockTags/f_144284_ net/minecraft/tags/BlockTags/NEEDS_DIAMOND_TOOL +FD: net/minecraft/tags/BlockTags/f_144285_ net/minecraft/tags/BlockTags/NEEDS_IRON_TOOL +FD: net/minecraft/tags/BlockTags/f_144286_ net/minecraft/tags/BlockTags/NEEDS_STONE_TOOL +FD: net/minecraft/tags/BlockTags/f_144287_ net/minecraft/tags/BlockTags/FEATURES_CANNOT_REPLACE +FD: net/minecraft/tags/BlockTags/f_144288_ net/minecraft/tags/BlockTags/LAVA_POOL_STONE_CANNOT_REPLACE +FD: net/minecraft/tags/BlockTags/f_144289_ net/minecraft/tags/BlockTags/GEODE_INVALID_BLOCKS +FD: net/minecraft/tags/BlockTags/f_184227_ net/minecraft/tags/BlockTags/BIG_DRIPLEAF_PLACEABLE +FD: net/minecraft/tags/BlockTags/f_184228_ net/minecraft/tags/BlockTags/ANIMALS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184229_ net/minecraft/tags/BlockTags/AXOLOTLS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184230_ net/minecraft/tags/BlockTags/GOATS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184231_ net/minecraft/tags/BlockTags/MOOSHROOMS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184232_ net/minecraft/tags/BlockTags/PARROTS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184234_ net/minecraft/tags/BlockTags/RABBITS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184235_ net/minecraft/tags/BlockTags/FOXES_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184236_ net/minecraft/tags/BlockTags/WOLVES_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_198156_ net/minecraft/tags/BlockTags/TERRACOTTA +FD: net/minecraft/tags/BlockTags/f_198157_ net/minecraft/tags/BlockTags/AZALEA_GROWS_ON +FD: net/minecraft/tags/BlockTags/f_198159_ net/minecraft/tags/BlockTags/AZALEA_ROOT_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_201924_ net/minecraft/tags/BlockTags/FALL_DAMAGE_RESETTING +FD: net/minecraft/tags/BlockTags/f_215820_ net/minecraft/tags/BlockTags/OVERWORLD_CARVER_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_215821_ net/minecraft/tags/BlockTags/COMPLETES_FIND_TREE_TUTORIAL +FD: net/minecraft/tags/BlockTags/f_215822_ net/minecraft/tags/BlockTags/DRAGON_TRANSPARENT +FD: net/minecraft/tags/BlockTags/f_215823_ net/minecraft/tags/BlockTags/SCULK_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_215824_ net/minecraft/tags/BlockTags/SCULK_REPLACEABLE_WORLD_GEN +FD: net/minecraft/tags/BlockTags/f_215825_ net/minecraft/tags/BlockTags/ANCIENT_CITY_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_215826_ net/minecraft/tags/BlockTags/POLAR_BEARS_SPAWNABLE_ON_ALTERNATE +FD: net/minecraft/tags/BlockTags/f_215827_ net/minecraft/tags/BlockTags/FROGS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_215828_ net/minecraft/tags/BlockTags/CONVERTABLE_TO_MUD +FD: net/minecraft/tags/BlockTags/f_215829_ net/minecraft/tags/BlockTags/MANGROVE_LOGS_CAN_GROW_THROUGH +FD: net/minecraft/tags/BlockTags/f_215830_ net/minecraft/tags/BlockTags/MANGROVE_ROOTS_CAN_GROW_THROUGH +FD: net/minecraft/tags/BlockTags/f_215831_ net/minecraft/tags/BlockTags/DEAD_BUSH_MAY_PLACE_ON +FD: net/minecraft/tags/BlockTags/f_215832_ net/minecraft/tags/BlockTags/SNAPS_GOAT_HORN +FD: net/minecraft/tags/BlockTags/f_215833_ net/minecraft/tags/BlockTags/SNOW_LAYER_CANNOT_SURVIVE_ON +FD: net/minecraft/tags/BlockTags/f_215834_ net/minecraft/tags/BlockTags/SNOW_LAYER_CAN_SURVIVE_ON +FD: net/minecraft/tags/BlockTags/f_215835_ net/minecraft/tags/BlockTags/NETHER_CARVER_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_215836_ net/minecraft/tags/BlockTags/DAMPENS_VIBRATIONS +FD: net/minecraft/tags/BlockTags/f_215837_ net/minecraft/tags/BlockTags/FROG_PREFER_JUMP_TO +FD: net/minecraft/tags/BlockTags/f_215838_ net/minecraft/tags/BlockTags/WOOL_CARPETS +FD: net/minecraft/tags/BlockTags/f_215839_ net/minecraft/tags/BlockTags/OVERWORLD_NATURAL_LOGS +FD: net/minecraft/tags/BlockTags/f_215840_ net/minecraft/tags/BlockTags/MANGROVE_LOGS +FD: net/minecraft/tags/BlockTags/f_243838_ net/minecraft/tags/BlockTags/CEILING_HANGING_SIGNS +FD: net/minecraft/tags/BlockTags/f_244320_ net/minecraft/tags/BlockTags/ALL_HANGING_SIGNS +FD: net/minecraft/tags/BlockTags/f_244350_ net/minecraft/tags/BlockTags/INVALID_SPAWN_INSIDE +FD: net/minecraft/tags/BlockTags/f_244544_ net/minecraft/tags/BlockTags/WALL_HANGING_SIGNS +FD: net/minecraft/tags/BlockTags/f_257016_ net/minecraft/tags/BlockTags/BAMBOO_BLOCKS +FD: net/minecraft/tags/BlockTags/f_260523_ net/minecraft/tags/BlockTags/ALL_SIGNS +FD: net/minecraft/tags/BlockTags/f_271212_ net/minecraft/tags/BlockTags/CHERRY_LOGS +FD: net/minecraft/tags/BlockTags/f_271391_ net/minecraft/tags/BlockTags/SNIFFER_DIGGABLE_BLOCK +FD: net/minecraft/tags/BlockTags/f_273845_ net/minecraft/tags/BlockTags/SMELTS_TO_GLASS +FD: net/minecraft/tags/BlockTags/f_276448_ net/minecraft/tags/BlockTags/TRAIL_RUINS_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_276549_ net/minecraft/tags/BlockTags/COMBINATION_STEP_SOUND_BLOCKS +FD: net/minecraft/tags/BlockTags/f_276593_ net/minecraft/tags/BlockTags/VIBRATION_RESONATORS +FD: net/minecraft/tags/BlockTags/f_276630_ net/minecraft/tags/BlockTags/SNIFFER_EGG_HATCH_BOOST +FD: net/minecraft/tags/BlockTags/f_278384_ net/minecraft/tags/BlockTags/ENCHANTMENT_POWER_PROVIDER +FD: net/minecraft/tags/BlockTags/f_278394_ net/minecraft/tags/BlockTags/REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_278398_ net/minecraft/tags/BlockTags/SWORD_EFFICIENT +FD: net/minecraft/tags/BlockTags/f_278411_ net/minecraft/tags/BlockTags/REPLACEABLE_BY_TREES +FD: net/minecraft/tags/BlockTags/f_278486_ net/minecraft/tags/BlockTags/ENCHANTMENT_POWER_TRANSMITTER +FD: net/minecraft/tags/BlockTags/f_279534_ net/minecraft/tags/BlockTags/MAINTAINS_FARMLAND +FD: net/minecraft/tags/BlockTags/f_279568_ net/minecraft/tags/BlockTags/STONE_BUTTONS +FD: net/minecraft/tags/CatVariantTags/f_215841_ net/minecraft/tags/CatVariantTags/DEFAULT_SPAWNS +FD: net/minecraft/tags/CatVariantTags/f_215842_ net/minecraft/tags/CatVariantTags/FULL_MOON_SPAWNS +FD: net/minecraft/tags/DamageTypeTags/f_268413_ net/minecraft/tags/DamageTypeTags/BYPASSES_ENCHANTMENTS +FD: net/minecraft/tags/DamageTypeTags/f_268415_ net/minecraft/tags/DamageTypeTags/IS_EXPLOSION +FD: net/minecraft/tags/DamageTypeTags/f_268419_ net/minecraft/tags/DamageTypeTags/IS_FREEZING +FD: net/minecraft/tags/DamageTypeTags/f_268437_ net/minecraft/tags/DamageTypeTags/BYPASSES_EFFECTS +FD: net/minecraft/tags/DamageTypeTags/f_268467_ net/minecraft/tags/DamageTypeTags/NO_IMPACT +FD: net/minecraft/tags/DamageTypeTags/f_268484_ net/minecraft/tags/DamageTypeTags/WITHER_IMMUNE_TO +FD: net/minecraft/tags/DamageTypeTags/f_268490_ net/minecraft/tags/DamageTypeTags/BYPASSES_ARMOR +FD: net/minecraft/tags/DamageTypeTags/f_268518_ net/minecraft/tags/DamageTypeTags/ALWAYS_MOST_SIGNIFICANT_FALL +FD: net/minecraft/tags/DamageTypeTags/f_268524_ net/minecraft/tags/DamageTypeTags/IS_PROJECTILE +FD: net/minecraft/tags/DamageTypeTags/f_268549_ net/minecraft/tags/DamageTypeTags/IS_FALL +FD: net/minecraft/tags/DamageTypeTags/f_268581_ net/minecraft/tags/DamageTypeTags/IS_DROWNING +FD: net/minecraft/tags/DamageTypeTags/f_268627_ net/minecraft/tags/DamageTypeTags/DAMAGES_HELMET +FD: net/minecraft/tags/DamageTypeTags/f_268630_ net/minecraft/tags/DamageTypeTags/BYPASSES_RESISTANCE +FD: net/minecraft/tags/DamageTypeTags/f_268640_ net/minecraft/tags/DamageTypeTags/AVOIDS_GUARDIAN_THORNS +FD: net/minecraft/tags/DamageTypeTags/f_268711_ net/minecraft/tags/DamageTypeTags/BURNS_ARMOR_STANDS +FD: net/minecraft/tags/DamageTypeTags/f_268718_ net/minecraft/tags/DamageTypeTags/NO_ANGER +FD: net/minecraft/tags/DamageTypeTags/f_268725_ net/minecraft/tags/DamageTypeTags/IS_LIGHTNING +FD: net/minecraft/tags/DamageTypeTags/f_268727_ net/minecraft/tags/DamageTypeTags/IGNITES_ARMOR_STANDS +FD: net/minecraft/tags/DamageTypeTags/f_268731_ net/minecraft/tags/DamageTypeTags/WITCH_RESISTANT_TO +FD: net/minecraft/tags/DamageTypeTags/f_268738_ net/minecraft/tags/DamageTypeTags/BYPASSES_INVULNERABILITY +FD: net/minecraft/tags/DamageTypeTags/f_268745_ net/minecraft/tags/DamageTypeTags/IS_FIRE +FD: net/minecraft/tags/DamageTypeTags/f_268750_ net/minecraft/tags/DamageTypeTags/ALWAYS_TRIGGERS_SILVERFISH +FD: net/minecraft/tags/DamageTypeTags/f_273821_ net/minecraft/tags/DamageTypeTags/ALWAYS_HURTS_ENDER_DRAGONS +FD: net/minecraft/tags/DamageTypeTags/f_273918_ net/minecraft/tags/DamageTypeTags/BYPASSES_COOLDOWN +FD: net/minecraft/tags/DamageTypeTags/f_276146_ net/minecraft/tags/DamageTypeTags/BYPASSES_SHIELD +FD: net/minecraft/tags/EntityTypeTags/f_13120_ net/minecraft/tags/EntityTypeTags/SKELETONS +FD: net/minecraft/tags/EntityTypeTags/f_13121_ net/minecraft/tags/EntityTypeTags/RAIDERS +FD: net/minecraft/tags/EntityTypeTags/f_13122_ net/minecraft/tags/EntityTypeTags/BEEHIVE_INHABITORS +FD: net/minecraft/tags/EntityTypeTags/f_13123_ net/minecraft/tags/EntityTypeTags/ARROWS +FD: net/minecraft/tags/EntityTypeTags/f_13124_ net/minecraft/tags/EntityTypeTags/IMPACT_PROJECTILES +FD: net/minecraft/tags/EntityTypeTags/f_144291_ net/minecraft/tags/EntityTypeTags/POWDER_SNOW_WALKABLE_MOBS +FD: net/minecraft/tags/EntityTypeTags/f_144292_ net/minecraft/tags/EntityTypeTags/AXOLOTL_ALWAYS_HOSTILES +FD: net/minecraft/tags/EntityTypeTags/f_144293_ net/minecraft/tags/EntityTypeTags/AXOLOTL_HUNT_TARGETS +FD: net/minecraft/tags/EntityTypeTags/f_144294_ net/minecraft/tags/EntityTypeTags/FREEZE_IMMUNE_ENTITY_TYPES +FD: net/minecraft/tags/EntityTypeTags/f_144295_ net/minecraft/tags/EntityTypeTags/FREEZE_HURTS_EXTRA_TYPES +FD: net/minecraft/tags/EntityTypeTags/f_215847_ net/minecraft/tags/EntityTypeTags/FROG_FOOD +FD: net/minecraft/tags/EntityTypeTags/f_273841_ net/minecraft/tags/EntityTypeTags/FALL_DAMAGE_IMMUNE +FD: net/minecraft/tags/EntityTypeTags/f_275751_ net/minecraft/tags/EntityTypeTags/DISMOUNTS_UNDERWATER +FD: net/minecraft/tags/FlatLevelGeneratorPresetTags/f_215848_ net/minecraft/tags/FlatLevelGeneratorPresetTags/VISIBLE +FD: net/minecraft/tags/FluidTags/f_13131_ net/minecraft/tags/FluidTags/WATER +FD: net/minecraft/tags/FluidTags/f_13132_ net/minecraft/tags/FluidTags/LAVA +FD: net/minecraft/tags/GameEventTags/f_144302_ net/minecraft/tags/GameEventTags/VIBRATIONS +FD: net/minecraft/tags/GameEventTags/f_144303_ net/minecraft/tags/GameEventTags/IGNORE_VIBRATIONS_SNEAKING +FD: net/minecraft/tags/GameEventTags/f_215853_ net/minecraft/tags/GameEventTags/WARDEN_CAN_LISTEN +FD: net/minecraft/tags/GameEventTags/f_215854_ net/minecraft/tags/GameEventTags/SHRIEKER_CAN_LISTEN +FD: net/minecraft/tags/GameEventTags/f_215855_ net/minecraft/tags/GameEventTags/ALLAY_CAN_LISTEN +FD: net/minecraft/tags/InstrumentTags/f_215856_ net/minecraft/tags/InstrumentTags/REGULAR_GOAT_HORNS +FD: net/minecraft/tags/InstrumentTags/f_215857_ net/minecraft/tags/InstrumentTags/SCREAMING_GOAT_HORNS +FD: net/minecraft/tags/InstrumentTags/f_215858_ net/minecraft/tags/InstrumentTags/GOAT_HORNS +FD: net/minecraft/tags/ItemTags/f_13137_ net/minecraft/tags/ItemTags/SAND +FD: net/minecraft/tags/ItemTags/f_13138_ net/minecraft/tags/ItemTags/STAIRS +FD: net/minecraft/tags/ItemTags/f_13139_ net/minecraft/tags/ItemTags/SLABS +FD: net/minecraft/tags/ItemTags/f_13140_ net/minecraft/tags/ItemTags/WALLS +FD: net/minecraft/tags/ItemTags/f_13141_ net/minecraft/tags/ItemTags/ANVIL +FD: net/minecraft/tags/ItemTags/f_13142_ net/minecraft/tags/ItemTags/RAILS +FD: net/minecraft/tags/ItemTags/f_13143_ net/minecraft/tags/ItemTags/LEAVES +FD: net/minecraft/tags/ItemTags/f_13144_ net/minecraft/tags/ItemTags/TRAPDOORS +FD: net/minecraft/tags/ItemTags/f_13145_ net/minecraft/tags/ItemTags/SMALL_FLOWERS +FD: net/minecraft/tags/ItemTags/f_13146_ net/minecraft/tags/ItemTags/BEDS +FD: net/minecraft/tags/ItemTags/f_13147_ net/minecraft/tags/ItemTags/FENCES +FD: net/minecraft/tags/ItemTags/f_13148_ net/minecraft/tags/ItemTags/TALL_FLOWERS +FD: net/minecraft/tags/ItemTags/f_13149_ net/minecraft/tags/ItemTags/FLOWERS +FD: net/minecraft/tags/ItemTags/f_13150_ net/minecraft/tags/ItemTags/PIGLIN_REPELLENTS +FD: net/minecraft/tags/ItemTags/f_13151_ net/minecraft/tags/ItemTags/PIGLIN_LOVED +FD: net/minecraft/tags/ItemTags/f_13152_ net/minecraft/tags/ItemTags/GOLD_ORES +FD: net/minecraft/tags/ItemTags/f_13153_ net/minecraft/tags/ItemTags/NON_FLAMMABLE_WOOD +FD: net/minecraft/tags/ItemTags/f_13154_ net/minecraft/tags/ItemTags/SOUL_FIRE_BASE_BLOCKS +FD: net/minecraft/tags/ItemTags/f_13155_ net/minecraft/tags/ItemTags/BOATS +FD: net/minecraft/tags/ItemTags/f_13156_ net/minecraft/tags/ItemTags/FISHES +FD: net/minecraft/tags/ItemTags/f_13157_ net/minecraft/tags/ItemTags/SIGNS +FD: net/minecraft/tags/ItemTags/f_13158_ net/minecraft/tags/ItemTags/MUSIC_DISCS +FD: net/minecraft/tags/ItemTags/f_13159_ net/minecraft/tags/ItemTags/CREEPER_DROP_MUSIC_DISCS +FD: net/minecraft/tags/ItemTags/f_13160_ net/minecraft/tags/ItemTags/COALS +FD: net/minecraft/tags/ItemTags/f_13161_ net/minecraft/tags/ItemTags/ARROWS +FD: net/minecraft/tags/ItemTags/f_13162_ net/minecraft/tags/ItemTags/LECTERN_BOOKS +FD: net/minecraft/tags/ItemTags/f_13164_ net/minecraft/tags/ItemTags/BEACON_PAYMENT_ITEMS +FD: net/minecraft/tags/ItemTags/f_13165_ net/minecraft/tags/ItemTags/STONE_TOOL_MATERIALS +FD: net/minecraft/tags/ItemTags/f_13166_ net/minecraft/tags/ItemTags/STONE_CRAFTING_MATERIALS +FD: net/minecraft/tags/ItemTags/f_13167_ net/minecraft/tags/ItemTags/WOOL +FD: net/minecraft/tags/ItemTags/f_13168_ net/minecraft/tags/ItemTags/PLANKS +FD: net/minecraft/tags/ItemTags/f_13169_ net/minecraft/tags/ItemTags/STONE_BRICKS +FD: net/minecraft/tags/ItemTags/f_13170_ net/minecraft/tags/ItemTags/WOODEN_BUTTONS +FD: net/minecraft/tags/ItemTags/f_13171_ net/minecraft/tags/ItemTags/BUTTONS +FD: net/minecraft/tags/ItemTags/f_13173_ net/minecraft/tags/ItemTags/WOODEN_DOORS +FD: net/minecraft/tags/ItemTags/f_13174_ net/minecraft/tags/ItemTags/WOODEN_STAIRS +FD: net/minecraft/tags/ItemTags/f_13175_ net/minecraft/tags/ItemTags/WOODEN_SLABS +FD: net/minecraft/tags/ItemTags/f_13176_ net/minecraft/tags/ItemTags/WOODEN_FENCES +FD: net/minecraft/tags/ItemTags/f_13177_ net/minecraft/tags/ItemTags/WOODEN_PRESSURE_PLATES +FD: net/minecraft/tags/ItemTags/f_13178_ net/minecraft/tags/ItemTags/WOODEN_TRAPDOORS +FD: net/minecraft/tags/ItemTags/f_13179_ net/minecraft/tags/ItemTags/DOORS +FD: net/minecraft/tags/ItemTags/f_13180_ net/minecraft/tags/ItemTags/SAPLINGS +FD: net/minecraft/tags/ItemTags/f_13181_ net/minecraft/tags/ItemTags/LOGS_THAT_BURN +FD: net/minecraft/tags/ItemTags/f_13182_ net/minecraft/tags/ItemTags/LOGS +FD: net/minecraft/tags/ItemTags/f_13183_ net/minecraft/tags/ItemTags/DARK_OAK_LOGS +FD: net/minecraft/tags/ItemTags/f_13184_ net/minecraft/tags/ItemTags/OAK_LOGS +FD: net/minecraft/tags/ItemTags/f_13185_ net/minecraft/tags/ItemTags/BIRCH_LOGS +FD: net/minecraft/tags/ItemTags/f_13186_ net/minecraft/tags/ItemTags/ACACIA_LOGS +FD: net/minecraft/tags/ItemTags/f_13187_ net/minecraft/tags/ItemTags/JUNGLE_LOGS +FD: net/minecraft/tags/ItemTags/f_13188_ net/minecraft/tags/ItemTags/SPRUCE_LOGS +FD: net/minecraft/tags/ItemTags/f_13189_ net/minecraft/tags/ItemTags/CRIMSON_STEMS +FD: net/minecraft/tags/ItemTags/f_13190_ net/minecraft/tags/ItemTags/WARPED_STEMS +FD: net/minecraft/tags/ItemTags/f_13191_ net/minecraft/tags/ItemTags/BANNERS +FD: net/minecraft/tags/ItemTags/f_144309_ net/minecraft/tags/ItemTags/IGNORED_BY_PIGLIN_BABIES +FD: net/minecraft/tags/ItemTags/f_144310_ net/minecraft/tags/ItemTags/PIGLIN_FOOD +FD: net/minecraft/tags/ItemTags/f_144311_ net/minecraft/tags/ItemTags/FOX_FOOD +FD: net/minecraft/tags/ItemTags/f_144312_ net/minecraft/tags/ItemTags/IRON_ORES +FD: net/minecraft/tags/ItemTags/f_144313_ net/minecraft/tags/ItemTags/DIAMOND_ORES +FD: net/minecraft/tags/ItemTags/f_144314_ net/minecraft/tags/ItemTags/REDSTONE_ORES +FD: net/minecraft/tags/ItemTags/f_144315_ net/minecraft/tags/ItemTags/LAPIS_ORES +FD: net/minecraft/tags/ItemTags/f_144316_ net/minecraft/tags/ItemTags/COAL_ORES +FD: net/minecraft/tags/ItemTags/f_144317_ net/minecraft/tags/ItemTags/EMERALD_ORES +FD: net/minecraft/tags/ItemTags/f_144318_ net/minecraft/tags/ItemTags/COPPER_ORES +FD: net/minecraft/tags/ItemTags/f_144319_ net/minecraft/tags/ItemTags/CANDLES +FD: net/minecraft/tags/ItemTags/f_144320_ net/minecraft/tags/ItemTags/FREEZE_IMMUNE_WEARABLES +FD: net/minecraft/tags/ItemTags/f_144321_ net/minecraft/tags/ItemTags/AXOLOTL_TEMPT_ITEMS +FD: net/minecraft/tags/ItemTags/f_144323_ net/minecraft/tags/ItemTags/CLUSTER_MAX_HARVESTABLES +FD: net/minecraft/tags/ItemTags/f_198160_ net/minecraft/tags/ItemTags/DIRT +FD: net/minecraft/tags/ItemTags/f_198161_ net/minecraft/tags/ItemTags/TERRACOTTA +FD: net/minecraft/tags/ItemTags/f_215862_ net/minecraft/tags/ItemTags/WART_BLOCKS +FD: net/minecraft/tags/ItemTags/f_215863_ net/minecraft/tags/ItemTags/COMPLETES_FIND_TREE_TUTORIAL +FD: net/minecraft/tags/ItemTags/f_215864_ net/minecraft/tags/ItemTags/CHEST_BOATS +FD: net/minecraft/tags/ItemTags/f_215865_ net/minecraft/tags/ItemTags/DAMPENS_VIBRATIONS +FD: net/minecraft/tags/ItemTags/f_215866_ net/minecraft/tags/ItemTags/COMPASSES +FD: net/minecraft/tags/ItemTags/f_215867_ net/minecraft/tags/ItemTags/WOOL_CARPETS +FD: net/minecraft/tags/ItemTags/f_215869_ net/minecraft/tags/ItemTags/MANGROVE_LOGS +FD: net/minecraft/tags/ItemTags/f_244389_ net/minecraft/tags/ItemTags/HANGING_SIGNS +FD: net/minecraft/tags/ItemTags/f_244646_ net/minecraft/tags/ItemTags/BOOKSHELF_BOOKS +FD: net/minecraft/tags/ItemTags/f_254662_ net/minecraft/tags/ItemTags/FENCE_GATES +FD: net/minecraft/tags/ItemTags/f_256904_ net/minecraft/tags/ItemTags/BAMBOO_BLOCKS +FD: net/minecraft/tags/ItemTags/f_262757_ net/minecraft/tags/ItemTags/CREEPER_IGNITERS +FD: net/minecraft/tags/ItemTags/f_263791_ net/minecraft/tags/ItemTags/NOTE_BLOCK_TOP_INSTRUMENTS +FD: net/minecraft/tags/ItemTags/f_265843_ net/minecraft/tags/ItemTags/TRIM_MATERIALS +FD: net/minecraft/tags/ItemTags/f_265940_ net/minecraft/tags/ItemTags/TRIM_TEMPLATES +FD: net/minecraft/tags/ItemTags/f_265942_ net/minecraft/tags/ItemTags/TRIMMABLE_ARMOR +FD: net/minecraft/tags/ItemTags/f_271138_ net/minecraft/tags/ItemTags/SHOVELS +FD: net/minecraft/tags/ItemTags/f_271202_ net/minecraft/tags/ItemTags/CHERRY_LOGS +FD: net/minecraft/tags/ItemTags/f_271207_ net/minecraft/tags/ItemTags/AXES +FD: net/minecraft/tags/ItemTags/f_271220_ net/minecraft/tags/ItemTags/DECORATED_POT_SHERDS +FD: net/minecraft/tags/ItemTags/f_271298_ net/minecraft/tags/ItemTags/HOES +FD: net/minecraft/tags/ItemTags/f_271360_ net/minecraft/tags/ItemTags/PICKAXES +FD: net/minecraft/tags/ItemTags/f_271388_ net/minecraft/tags/ItemTags/SWORDS +FD: net/minecraft/tags/ItemTags/f_271449_ net/minecraft/tags/ItemTags/SNIFFER_FOOD +FD: net/minecraft/tags/ItemTags/f_271470_ net/minecraft/tags/ItemTags/BREAKS_DECORATED_POTS +FD: net/minecraft/tags/ItemTags/f_271540_ net/minecraft/tags/ItemTags/TOOLS +FD: net/minecraft/tags/ItemTags/f_273858_ net/minecraft/tags/ItemTags/SMELTS_TO_GLASS +FD: net/minecraft/tags/ItemTags/f_279581_ net/minecraft/tags/ItemTags/VILLAGER_PLANTABLE_SEEDS +FD: net/minecraft/tags/ItemTags/f_279629_ net/minecraft/tags/ItemTags/STONE_BUTTONS +FD: net/minecraft/tags/ItemTags/f_283829_ net/minecraft/tags/ItemTags/DECORATED_POT_INGREDIENTS +FD: net/minecraft/tags/PaintingVariantTags/f_215870_ net/minecraft/tags/PaintingVariantTags/PLACEABLE +FD: net/minecraft/tags/PoiTypeTags/f_215875_ net/minecraft/tags/PoiTypeTags/ACQUIRABLE_JOB_SITE +FD: net/minecraft/tags/PoiTypeTags/f_215876_ net/minecraft/tags/PoiTypeTags/VILLAGE +FD: net/minecraft/tags/PoiTypeTags/f_215877_ net/minecraft/tags/PoiTypeTags/BEE_HOME +FD: net/minecraft/tags/StructureTags/f_215882_ net/minecraft/tags/StructureTags/EYE_OF_ENDER_LOCATED +FD: net/minecraft/tags/StructureTags/f_215883_ net/minecraft/tags/StructureTags/DOLPHIN_LOCATED +FD: net/minecraft/tags/StructureTags/f_215884_ net/minecraft/tags/StructureTags/ON_WOODLAND_EXPLORER_MAPS +FD: net/minecraft/tags/StructureTags/f_215885_ net/minecraft/tags/StructureTags/ON_OCEAN_EXPLORER_MAPS +FD: net/minecraft/tags/StructureTags/f_215886_ net/minecraft/tags/StructureTags/ON_TREASURE_MAPS +FD: net/minecraft/tags/StructureTags/f_215887_ net/minecraft/tags/StructureTags/CATS_SPAWN_IN +FD: net/minecraft/tags/StructureTags/f_215888_ net/minecraft/tags/StructureTags/CATS_SPAWN_AS_BLACK +FD: net/minecraft/tags/StructureTags/f_215889_ net/minecraft/tags/StructureTags/VILLAGE +FD: net/minecraft/tags/StructureTags/f_215890_ net/minecraft/tags/StructureTags/MINESHAFT +FD: net/minecraft/tags/StructureTags/f_215891_ net/minecraft/tags/StructureTags/SHIPWRECK +FD: net/minecraft/tags/StructureTags/f_215892_ net/minecraft/tags/StructureTags/RUINED_PORTAL +FD: net/minecraft/tags/StructureTags/f_215893_ net/minecraft/tags/StructureTags/OCEAN_RUIN +FD: net/minecraft/tags/TagBuilder/f_215897_ net/minecraft/tags/TagBuilder/entries +FD: net/minecraft/tags/TagEntry/f_215911_ net/minecraft/tags/TagEntry/CODEC +FD: net/minecraft/tags/TagEntry/f_215912_ net/minecraft/tags/TagEntry/FULL_CODEC +FD: net/minecraft/tags/TagEntry/f_215913_ net/minecraft/tags/TagEntry/id +FD: net/minecraft/tags/TagEntry/f_215914_ net/minecraft/tags/TagEntry/tag +FD: net/minecraft/tags/TagEntry/f_215915_ net/minecraft/tags/TagEntry/required +FD: net/minecraft/tags/TagFile/f_215958_ net/minecraft/tags/TagFile/CODEC +FD: net/minecraft/tags/TagFile/f_215959_ net/minecraft/tags/TagFile/entries +FD: net/minecraft/tags/TagFile/f_215960_ net/minecraft/tags/TagFile/replace +FD: net/minecraft/tags/TagKey/f_203867_ net/minecraft/tags/TagKey/registry +FD: net/minecraft/tags/TagKey/f_203868_ net/minecraft/tags/TagKey/location +FD: net/minecraft/tags/TagKey/f_203869_ net/minecraft/tags/TagKey/VALUES +FD: net/minecraft/tags/TagLoader/f_13445_ net/minecraft/tags/TagLoader/LOGGER +FD: net/minecraft/tags/TagLoader/f_13448_ net/minecraft/tags/TagLoader/idToValue +FD: net/minecraft/tags/TagLoader/f_13449_ net/minecraft/tags/TagLoader/directory +FD: net/minecraft/tags/TagLoader$1/f_216033_ net/minecraft/tags/TagLoader$1/val$newTags +FD: net/minecraft/tags/TagLoader$1/f_216034_ net/minecraft/tags/TagLoader$1/this$0 +FD: net/minecraft/tags/TagLoader$EntryWithSource/f_216042_ net/minecraft/tags/TagLoader$EntryWithSource/entry +FD: net/minecraft/tags/TagLoader$EntryWithSource/f_216043_ net/minecraft/tags/TagLoader$EntryWithSource/source +FD: net/minecraft/tags/TagLoader$SortingEntry/f_283922_ net/minecraft/tags/TagLoader$SortingEntry/entries +FD: net/minecraft/tags/TagManager/f_144569_ net/minecraft/tags/TagManager/registryAccess +FD: net/minecraft/tags/TagManager/f_203902_ net/minecraft/tags/TagManager/CUSTOM_REGISTRY_DIRECTORIES +FD: net/minecraft/tags/TagManager/f_203903_ net/minecraft/tags/TagManager/results +FD: net/minecraft/tags/TagManager$LoadResult/f_203928_ net/minecraft/tags/TagManager$LoadResult/key +FD: net/minecraft/tags/TagManager$LoadResult/f_203929_ net/minecraft/tags/TagManager$LoadResult/tags +FD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/f_203963_ net/minecraft/tags/TagNetworkSerialization$NetworkPayload/tags +FD: net/minecraft/tags/WorldPresetTags/f_216053_ net/minecraft/tags/WorldPresetTags/NORMAL +FD: net/minecraft/tags/WorldPresetTags/f_216054_ net/minecraft/tags/WorldPresetTags/EXTENDED +FD: net/minecraft/util/AbortableIterationConsumer$Continuation/$VALUES net/minecraft/util/AbortableIterationConsumer$Continuation/$VALUES +FD: net/minecraft/util/AbortableIterationConsumer$Continuation/ABORT net/minecraft/util/AbortableIterationConsumer$Continuation/ABORT +FD: net/minecraft/util/AbortableIterationConsumer$Continuation/CONTINUE net/minecraft/util/AbortableIterationConsumer$Continuation/CONTINUE +FD: net/minecraft/util/Brightness/f_268416_ net/minecraft/util/Brightness/block +FD: net/minecraft/util/Brightness/f_268420_ net/minecraft/util/Brightness/sky +FD: net/minecraft/util/Brightness/f_268431_ net/minecraft/util/Brightness/LIGHT_VALUE_CODEC +FD: net/minecraft/util/Brightness/f_268536_ net/minecraft/util/Brightness/FULL_BRIGHT +FD: net/minecraft/util/Brightness/f_268672_ net/minecraft/util/Brightness/CODEC +FD: net/minecraft/util/ByIdMap$1/f_262754_ net/minecraft/util/ByIdMap$1/$SwitchMap$net$minecraft$util$ByIdMap$OutOfBoundsStrategy +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/$VALUES net/minecraft/util/ByIdMap$OutOfBoundsStrategy/$VALUES +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/CLAMP net/minecraft/util/ByIdMap$OutOfBoundsStrategy/CLAMP +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/WRAP net/minecraft/util/ByIdMap$OutOfBoundsStrategy/WRAP +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ZERO net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ZERO +FD: net/minecraft/util/ClassInstanceMultiMap/f_13527_ net/minecraft/util/ClassInstanceMultiMap/byClass +FD: net/minecraft/util/ClassInstanceMultiMap/f_13528_ net/minecraft/util/ClassInstanceMultiMap/baseClass +FD: net/minecraft/util/ClassInstanceMultiMap/f_13529_ net/minecraft/util/ClassInstanceMultiMap/allInstances +FD: net/minecraft/util/CommonColors/f_263745_ net/minecraft/util/CommonColors/RED +FD: net/minecraft/util/CommonColors/f_273839_ net/minecraft/util/CommonColors/BLACK +FD: net/minecraft/util/CommonColors/f_273869_ net/minecraft/util/CommonColors/WHITE +FD: net/minecraft/util/CommonColors/f_289577_ net/minecraft/util/CommonColors/GRAY +FD: net/minecraft/util/CommonLinks/f_276134_ net/minecraft/util/CommonLinks/REALMS_TERMS +FD: net/minecraft/util/CommonLinks/f_276135_ net/minecraft/util/CommonLinks/REALMS_UPDATE_MOJANG_ACCOUNT +FD: net/minecraft/util/CommonLinks/f_276139_ net/minecraft/util/CommonLinks/SUSPENSION_HELP +FD: net/minecraft/util/CommonLinks/f_276140_ net/minecraft/util/CommonLinks/EULA +FD: net/minecraft/util/CommonLinks/f_276141_ net/minecraft/util/CommonLinks/ATTRIBUTION +FD: net/minecraft/util/CommonLinks/f_276142_ net/minecraft/util/CommonLinks/SNAPSHOT_FEEDBACK +FD: net/minecraft/util/CommonLinks/f_276144_ net/minecraft/util/CommonLinks/ACCOUNT_SETTINGS +FD: net/minecraft/util/CommonLinks/f_276145_ net/minecraft/util/CommonLinks/BUY_REALMS +FD: net/minecraft/util/CommonLinks/f_276147_ net/minecraft/util/CommonLinks/SNAPSHOT_BUGS_FEEDBACK +FD: net/minecraft/util/CommonLinks/f_276149_ net/minecraft/util/CommonLinks/START_REALMS_TRIAL +FD: net/minecraft/util/CommonLinks/f_276150_ net/minecraft/util/CommonLinks/RELEASE_FEEDBACK +FD: net/minecraft/util/CommonLinks/f_276151_ net/minecraft/util/CommonLinks/BUY_MINECRAFT_JAVA +FD: net/minecraft/util/CommonLinks/f_276152_ net/minecraft/util/CommonLinks/LICENSES +FD: net/minecraft/util/CommonLinks/f_276156_ net/minecraft/util/CommonLinks/GDPR +FD: net/minecraft/util/CommonLinks/f_276157_ net/minecraft/util/CommonLinks/ACCESSIBILITY_HELP +FD: net/minecraft/util/CommonLinks/f_276158_ net/minecraft/util/CommonLinks/BLOCKING_HELP +FD: net/minecraft/util/CommonLinks/f_276159_ net/minecraft/util/CommonLinks/REALMS_CONTENT_CREATION +FD: net/minecraft/util/CommonLinks/f_276160_ net/minecraft/util/CommonLinks/REPORTING_HELP +FD: net/minecraft/util/CommonLinks/f_289836_ net/minecraft/util/CommonLinks/SYMLINK_HELP +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13545_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/EMPTY_SLOT +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13546_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/keys +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13547_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/values +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13548_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/byId +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13549_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/nextId +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13550_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/size +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_144605_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/NOT_FOUND +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_144606_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/LOADFACTOR +FD: net/minecraft/util/Crypt/f_144611_ net/minecraft/util/Crypt/SYMMETRIC_ALGORITHM +FD: net/minecraft/util/Crypt/f_144612_ net/minecraft/util/Crypt/SYMMETRIC_BITS +FD: net/minecraft/util/Crypt/f_144613_ net/minecraft/util/Crypt/ASYMMETRIC_ALGORITHM +FD: net/minecraft/util/Crypt/f_144614_ net/minecraft/util/Crypt/ASYMMETRIC_BITS +FD: net/minecraft/util/Crypt/f_144615_ net/minecraft/util/Crypt/BYTE_ENCODING +FD: net/minecraft/util/Crypt/f_144616_ net/minecraft/util/Crypt/HASH_ALGORITHM +FD: net/minecraft/util/Crypt/f_216059_ net/minecraft/util/Crypt/SIGNING_ALGORITHM +FD: net/minecraft/util/Crypt/f_216060_ net/minecraft/util/Crypt/RSA_PUBLIC_KEY_HEADER +FD: net/minecraft/util/Crypt/f_216061_ net/minecraft/util/Crypt/MIME_LINE_SEPARATOR +FD: net/minecraft/util/Crypt/f_216062_ net/minecraft/util/Crypt/MIME_ENCODER +FD: net/minecraft/util/Crypt/f_216063_ net/minecraft/util/Crypt/PUBLIC_KEY_CODEC +FD: net/minecraft/util/Crypt/f_216064_ net/minecraft/util/Crypt/PRIVATE_KEY_CODEC +FD: net/minecraft/util/Crypt/f_216065_ net/minecraft/util/Crypt/PEM_RSA_PRIVATE_KEY_HEADER +FD: net/minecraft/util/Crypt/f_216066_ net/minecraft/util/Crypt/PEM_RSA_PRIVATE_KEY_FOOTER +FD: net/minecraft/util/Crypt/f_216067_ net/minecraft/util/Crypt/RSA_PUBLIC_KEY_FOOTER +FD: net/minecraft/util/Crypt/f_244257_ net/minecraft/util/Crypt/SIGNATURE_BYTES +FD: net/minecraft/util/Crypt$SaltSignaturePair/f_216090_ net/minecraft/util/Crypt$SaltSignaturePair/EMPTY +FD: net/minecraft/util/Crypt$SaltSignaturePair/f_216091_ net/minecraft/util/Crypt$SaltSignaturePair/salt +FD: net/minecraft/util/Crypt$SaltSignaturePair/f_216092_ net/minecraft/util/Crypt$SaltSignaturePair/signature +FD: net/minecraft/util/Crypt$SaltSupplier/f_216110_ net/minecraft/util/Crypt$SaltSupplier/secureRandom +FD: net/minecraft/util/CsvOutput/f_13610_ net/minecraft/util/CsvOutput/output +FD: net/minecraft/util/CsvOutput/f_13611_ net/minecraft/util/CsvOutput/columnCount +FD: net/minecraft/util/CsvOutput/f_144618_ net/minecraft/util/CsvOutput/LINE_SEPARATOR +FD: net/minecraft/util/CsvOutput/f_144619_ net/minecraft/util/CsvOutput/FIELD_SEPARATOR +FD: net/minecraft/util/CsvOutput$Builder/f_13626_ net/minecraft/util/CsvOutput$Builder/headers +FD: net/minecraft/util/CubicSampler/f_130036_ net/minecraft/util/CubicSampler/GAUSSIAN_SAMPLE_KERNEL +FD: net/minecraft/util/CubicSampler/f_177979_ net/minecraft/util/CubicSampler/GAUSSIAN_SAMPLE_RADIUS +FD: net/minecraft/util/CubicSampler/f_177980_ net/minecraft/util/CubicSampler/GAUSSIAN_SAMPLE_BREADTH +FD: net/minecraft/util/CubicSpline$1Point/f_184273_ net/minecraft/util/CubicSpline$1Point/location +FD: net/minecraft/util/CubicSpline$1Point/f_184274_ net/minecraft/util/CubicSpline$1Point/value +FD: net/minecraft/util/CubicSpline$1Point/f_184275_ net/minecraft/util/CubicSpline$1Point/derivative +FD: net/minecraft/util/CubicSpline$Builder/f_184287_ net/minecraft/util/CubicSpline$Builder/coordinate +FD: net/minecraft/util/CubicSpline$Builder/f_184288_ net/minecraft/util/CubicSpline$Builder/valueTransformer +FD: net/minecraft/util/CubicSpline$Builder/f_184289_ net/minecraft/util/CubicSpline$Builder/locations +FD: net/minecraft/util/CubicSpline$Builder/f_184290_ net/minecraft/util/CubicSpline$Builder/values +FD: net/minecraft/util/CubicSpline$Builder/f_184291_ net/minecraft/util/CubicSpline$Builder/derivatives +FD: net/minecraft/util/CubicSpline$Constant/f_184308_ net/minecraft/util/CubicSpline$Constant/value +FD: net/minecraft/util/CubicSpline$Multipoint/f_184319_ net/minecraft/util/CubicSpline$Multipoint/coordinate +FD: net/minecraft/util/CubicSpline$Multipoint/f_184320_ net/minecraft/util/CubicSpline$Multipoint/locations +FD: net/minecraft/util/CubicSpline$Multipoint/f_184321_ net/minecraft/util/CubicSpline$Multipoint/values +FD: net/minecraft/util/CubicSpline$Multipoint/f_184322_ net/minecraft/util/CubicSpline$Multipoint/derivatives +FD: net/minecraft/util/CubicSpline$Multipoint/f_216124_ net/minecraft/util/CubicSpline$Multipoint/minValue +FD: net/minecraft/util/CubicSpline$Multipoint/f_216125_ net/minecraft/util/CubicSpline$Multipoint/maxValue +FD: net/minecraft/util/DebugBuffer/f_144620_ net/minecraft/util/DebugBuffer/data +FD: net/minecraft/util/DebugBuffer/f_144621_ net/minecraft/util/DebugBuffer/index +FD: net/minecraft/util/DependencySorter/f_283882_ net/minecraft/util/DependencySorter/contents +FD: net/minecraft/util/DirectoryLock/f_13632_ net/minecraft/util/DirectoryLock/lockFile +FD: net/minecraft/util/DirectoryLock/f_13633_ net/minecraft/util/DirectoryLock/lock +FD: net/minecraft/util/DirectoryLock/f_13634_ net/minecraft/util/DirectoryLock/DUMMY +FD: net/minecraft/util/DirectoryLock/f_144627_ net/minecraft/util/DirectoryLock/LOCK_FILE +FD: net/minecraft/util/ExceptionCollector/f_13650_ net/minecraft/util/ExceptionCollector/result +FD: net/minecraft/util/ExtraCodecs/f_144628_ net/minecraft/util/ExtraCodecs/NON_NEGATIVE_INT +FD: net/minecraft/util/ExtraCodecs/f_144629_ net/minecraft/util/ExtraCodecs/POSITIVE_INT +FD: net/minecraft/util/ExtraCodecs/f_184349_ net/minecraft/util/ExtraCodecs/POSITIVE_FLOAT +FD: net/minecraft/util/ExtraCodecs/f_216158_ net/minecraft/util/ExtraCodecs/PATTERN +FD: net/minecraft/util/ExtraCodecs/f_216159_ net/minecraft/util/ExtraCodecs/INSTANT_ISO8601 +FD: net/minecraft/util/ExtraCodecs/f_216160_ net/minecraft/util/ExtraCodecs/BASE64_STRING +FD: net/minecraft/util/ExtraCodecs/f_216161_ net/minecraft/util/ExtraCodecs/TAG_OR_ELEMENT_ID +FD: net/minecraft/util/ExtraCodecs/f_216162_ net/minecraft/util/ExtraCodecs/toOptionalLong +FD: net/minecraft/util/ExtraCodecs/f_216163_ net/minecraft/util/ExtraCodecs/fromOptionalLong +FD: net/minecraft/util/ExtraCodecs/f_252400_ net/minecraft/util/ExtraCodecs/JSON +FD: net/minecraft/util/ExtraCodecs/f_252419_ net/minecraft/util/ExtraCodecs/BIT_SET +FD: net/minecraft/util/ExtraCodecs/f_252432_ net/minecraft/util/ExtraCodecs/VECTOR3F +FD: net/minecraft/util/ExtraCodecs/f_252442_ net/minecraft/util/ExtraCodecs/COMPONENT +FD: net/minecraft/util/ExtraCodecs/f_252453_ net/minecraft/util/ExtraCodecs/GAME_PROFILE +FD: net/minecraft/util/ExtraCodecs/f_252500_ net/minecraft/util/ExtraCodecs/PROPERTY_MAP +FD: net/minecraft/util/ExtraCodecs/f_252501_ net/minecraft/util/ExtraCodecs/PROPERTY +FD: net/minecraft/util/ExtraCodecs/f_263723_ net/minecraft/util/ExtraCodecs/NON_EMPTY_STRING +FD: net/minecraft/util/ExtraCodecs/f_268538_ net/minecraft/util/ExtraCodecs/QUATERNIONF +FD: net/minecraft/util/ExtraCodecs/f_268572_ net/minecraft/util/ExtraCodecs/QUATERNIONF_COMPONENTS +FD: net/minecraft/util/ExtraCodecs/f_268748_ net/minecraft/util/ExtraCodecs/MATRIX4F +FD: net/minecraft/util/ExtraCodecs/f_268751_ net/minecraft/util/ExtraCodecs/AXISANGLE4F +FD: net/minecraft/util/ExtraCodecs/f_276686_ net/minecraft/util/ExtraCodecs/FLAT_COMPONENT +FD: net/minecraft/util/ExtraCodecs/f_283896_ net/minecraft/util/ExtraCodecs/CODEPOINT +FD: net/minecraft/util/ExtraCodecs$1/f_184462_ net/minecraft/util/ExtraCodecs$1/val$value +FD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/f_203986_ net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/val$getter +FD: net/minecraft/util/ExtraCodecs$2/f_184474_ net/minecraft/util/ExtraCodecs$2/val$compressed +FD: net/minecraft/util/ExtraCodecs$2/f_184475_ net/minecraft/util/ExtraCodecs$2/val$normal +FD: net/minecraft/util/ExtraCodecs$3/f_184487_ net/minecraft/util/ExtraCodecs$3/val$decodeLifecycle +FD: net/minecraft/util/ExtraCodecs$3/f_184488_ net/minecraft/util/ExtraCodecs$3/val$encodeLifecycle +FD: net/minecraft/util/ExtraCodecs$4/f_216189_ net/minecraft/util/ExtraCodecs$4/val$codec +FD: net/minecraft/util/ExtraCodecs$EitherCodec/f_184505_ net/minecraft/util/ExtraCodecs$EitherCodec/first +FD: net/minecraft/util/ExtraCodecs$EitherCodec/f_184506_ net/minecraft/util/ExtraCodecs$EitherCodec/second +FD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/f_184540_ net/minecraft/util/ExtraCodecs$LazyInitializedCodec/delegate +FD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216195_ net/minecraft/util/ExtraCodecs$TagOrElementLocation/id +FD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216196_ net/minecraft/util/ExtraCodecs$TagOrElementLocation/tag +FD: net/minecraft/util/ExtraCodecs$XorCodec/f_144657_ net/minecraft/util/ExtraCodecs$XorCodec/first +FD: net/minecraft/util/ExtraCodecs$XorCodec/f_144658_ net/minecraft/util/ExtraCodecs$XorCodec/second +FD: net/minecraft/util/FastBufferedInputStream/f_196560_ net/minecraft/util/FastBufferedInputStream/DEFAULT_BUFFER_SIZE +FD: net/minecraft/util/FastBufferedInputStream/f_196561_ net/minecraft/util/FastBufferedInputStream/in +FD: net/minecraft/util/FastBufferedInputStream/f_196562_ net/minecraft/util/FastBufferedInputStream/buffer +FD: net/minecraft/util/FastBufferedInputStream/f_196563_ net/minecraft/util/FastBufferedInputStream/limit +FD: net/minecraft/util/FastBufferedInputStream/f_196564_ net/minecraft/util/FastBufferedInputStream/position +FD: net/minecraft/util/FileZipper/f_144691_ net/minecraft/util/FileZipper/LOGGER +FD: net/minecraft/util/FileZipper/f_144692_ net/minecraft/util/FileZipper/outputFile +FD: net/minecraft/util/FileZipper/f_144693_ net/minecraft/util/FileZipper/tempFile +FD: net/minecraft/util/FileZipper/f_144694_ net/minecraft/util/FileZipper/fs +FD: net/minecraft/util/FormattedCharSequence/f_13691_ net/minecraft/util/FormattedCharSequence/EMPTY +FD: net/minecraft/util/FrameTimer/f_13749_ net/minecraft/util/FrameTimer/loggedTimes +FD: net/minecraft/util/FrameTimer/f_13750_ net/minecraft/util/FrameTimer/logStart +FD: net/minecraft/util/FrameTimer/f_13751_ net/minecraft/util/FrameTimer/logLength +FD: net/minecraft/util/FrameTimer/f_13752_ net/minecraft/util/FrameTimer/logEnd +FD: net/minecraft/util/FrameTimer/f_144731_ net/minecraft/util/FrameTimer/LOGGING_LENGTH +FD: net/minecraft/util/FutureChain/f_241610_ net/minecraft/util/FutureChain/LOGGER +FD: net/minecraft/util/FutureChain/f_241623_ net/minecraft/util/FutureChain/head +FD: net/minecraft/util/FutureChain/f_243910_ net/minecraft/util/FutureChain/closed +FD: net/minecraft/util/FutureChain/f_244461_ net/minecraft/util/FutureChain/checkedExecutor +FD: net/minecraft/util/GsonHelper/f_13765_ net/minecraft/util/GsonHelper/GSON +FD: net/minecraft/util/HttpUtil/f_13936_ net/minecraft/util/HttpUtil/DOWNLOAD_EXECUTOR +FD: net/minecraft/util/HttpUtil/f_13937_ net/minecraft/util/HttpUtil/LOGGER +FD: net/minecraft/util/InclusiveRange/f_184562_ net/minecraft/util/InclusiveRange/INT +FD: net/minecraft/util/InclusiveRange/f_184563_ net/minecraft/util/InclusiveRange/minInclusive +FD: net/minecraft/util/InclusiveRange/f_184564_ net/minecraft/util/InclusiveRange/maxInclusive +FD: net/minecraft/util/KeyDispatchDataCodec/f_216232_ net/minecraft/util/KeyDispatchDataCodec/codec +FD: net/minecraft/util/LazyLoadedValue/f_13967_ net/minecraft/util/LazyLoadedValue/factory +FD: net/minecraft/util/LinearCongruentialGenerator/f_144818_ net/minecraft/util/LinearCongruentialGenerator/MULTIPLIER +FD: net/minecraft/util/LinearCongruentialGenerator/f_144819_ net/minecraft/util/LinearCongruentialGenerator/INCREMENT +FD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/f_13984_ net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/val$lowercaseToConstant +FD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/f_13985_ net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/this$0 +FD: net/minecraft/util/MemoryReserve/f_182324_ net/minecraft/util/MemoryReserve/reserve +FD: net/minecraft/util/ModCheck/f_184592_ net/minecraft/util/ModCheck/confidence +FD: net/minecraft/util/ModCheck/f_184593_ net/minecraft/util/ModCheck/description +FD: net/minecraft/util/ModCheck$Confidence/$VALUES net/minecraft/util/ModCheck$Confidence/$VALUES +FD: net/minecraft/util/ModCheck$Confidence/DEFINITELY net/minecraft/util/ModCheck$Confidence/DEFINITELY +FD: net/minecraft/util/ModCheck$Confidence/PROBABLY_NOT net/minecraft/util/ModCheck$Confidence/PROBABLY_NOT +FD: net/minecraft/util/ModCheck$Confidence/VERY_LIKELY net/minecraft/util/ModCheck$Confidence/VERY_LIKELY +FD: net/minecraft/util/ModCheck$Confidence/f_184615_ net/minecraft/util/ModCheck$Confidence/description +FD: net/minecraft/util/ModCheck$Confidence/f_184616_ net/minecraft/util/ModCheck$Confidence/shouldReportAsModified +FD: net/minecraft/util/Mth/f_13994_ net/minecraft/util/Mth/SQRT_OF_TWO +FD: net/minecraft/util/Mth/f_13995_ net/minecraft/util/Mth/SIN +FD: net/minecraft/util/Mth/f_13996_ net/minecraft/util/Mth/RANDOM +FD: net/minecraft/util/Mth/f_13997_ net/minecraft/util/Mth/MULTIPLY_DE_BRUIJN_BIT_POSITION +FD: net/minecraft/util/Mth/f_13998_ net/minecraft/util/Mth/FRAC_BIAS +FD: net/minecraft/util/Mth/f_13999_ net/minecraft/util/Mth/ASIN_TAB +FD: net/minecraft/util/Mth/f_14000_ net/minecraft/util/Mth/COS_TAB +FD: net/minecraft/util/Mth/f_144830_ net/minecraft/util/Mth/PI +FD: net/minecraft/util/Mth/f_144831_ net/minecraft/util/Mth/HALF_PI +FD: net/minecraft/util/Mth/f_144832_ net/minecraft/util/Mth/TWO_PI +FD: net/minecraft/util/Mth/f_144833_ net/minecraft/util/Mth/DEG_TO_RAD +FD: net/minecraft/util/Mth/f_144834_ net/minecraft/util/Mth/RAD_TO_DEG +FD: net/minecraft/util/Mth/f_144835_ net/minecraft/util/Mth/EPSILON +FD: net/minecraft/util/Mth/f_144838_ net/minecraft/util/Mth/UUID_VERSION +FD: net/minecraft/util/Mth/f_144839_ net/minecraft/util/Mth/UUID_VERSION_TYPE_4 +FD: net/minecraft/util/Mth/f_144840_ net/minecraft/util/Mth/UUID_VARIANT +FD: net/minecraft/util/Mth/f_144841_ net/minecraft/util/Mth/UUID_VARIANT_2 +FD: net/minecraft/util/Mth/f_144842_ net/minecraft/util/Mth/SIN_SCALE +FD: net/minecraft/util/Mth/f_144843_ net/minecraft/util/Mth/ONE_SIXTH +FD: net/minecraft/util/Mth/f_144844_ net/minecraft/util/Mth/FRAC_EXP +FD: net/minecraft/util/Mth/f_144845_ net/minecraft/util/Mth/LUT_SIZE +FD: net/minecraft/util/NativeModuleLister/f_184659_ net/minecraft/util/NativeModuleLister/LOGGER +FD: net/minecraft/util/NativeModuleLister/f_184660_ net/minecraft/util/NativeModuleLister/LANG_MASK +FD: net/minecraft/util/NativeModuleLister/f_184661_ net/minecraft/util/NativeModuleLister/DEFAULT_LANG +FD: net/minecraft/util/NativeModuleLister/f_184662_ net/minecraft/util/NativeModuleLister/CODEPAGE_MASK +FD: net/minecraft/util/NativeModuleLister/f_184663_ net/minecraft/util/NativeModuleLister/DEFAULT_CODEPAGE +FD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/f_184690_ net/minecraft/util/NativeModuleLister$NativeModuleInfo/name +FD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/f_184691_ net/minecraft/util/NativeModuleLister$NativeModuleInfo/version +FD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/f_184698_ net/minecraft/util/NativeModuleLister$NativeModuleVersion/description +FD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/f_184699_ net/minecraft/util/NativeModuleLister$NativeModuleVersion/version +FD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/f_184700_ net/minecraft/util/NativeModuleLister$NativeModuleVersion/company +FD: net/minecraft/util/RandomSource/f_216326_ net/minecraft/util/RandomSource/GAUSSIAN_SPREAD_FACTOR +FD: net/minecraft/util/ResourceLocationPattern/f_260470_ net/minecraft/util/ResourceLocationPattern/CODEC +FD: net/minecraft/util/ResourceLocationPattern/f_260579_ net/minecraft/util/ResourceLocationPattern/pathPattern +FD: net/minecraft/util/ResourceLocationPattern/f_260589_ net/minecraft/util/ResourceLocationPattern/namespacePattern +FD: net/minecraft/util/ResourceLocationPattern/f_260644_ net/minecraft/util/ResourceLocationPattern/pathPredicate +FD: net/minecraft/util/ResourceLocationPattern/f_260666_ net/minecraft/util/ResourceLocationPattern/namespacePredicate +FD: net/minecraft/util/ResourceLocationPattern/f_260730_ net/minecraft/util/ResourceLocationPattern/locationPredicate +FD: net/minecraft/util/SegmentedAnglePrecision/f_263695_ net/minecraft/util/SegmentedAnglePrecision/degreeToAngle +FD: net/minecraft/util/SegmentedAnglePrecision/f_263790_ net/minecraft/util/SegmentedAnglePrecision/mask +FD: net/minecraft/util/SegmentedAnglePrecision/f_263801_ net/minecraft/util/SegmentedAnglePrecision/precision +FD: net/minecraft/util/SegmentedAnglePrecision/f_263823_ net/minecraft/util/SegmentedAnglePrecision/angleToDegree +FD: net/minecraft/util/SignatureValidator/f_216348_ net/minecraft/util/SignatureValidator/NO_VALIDATION +FD: net/minecraft/util/SignatureValidator/f_216349_ net/minecraft/util/SignatureValidator/LOGGER +FD: net/minecraft/util/Signer/f_216381_ net/minecraft/util/Signer/LOGGER +FD: net/minecraft/util/SimpleBitStorage/f_184706_ net/minecraft/util/SimpleBitStorage/MAGIC +FD: net/minecraft/util/SimpleBitStorage/f_184707_ net/minecraft/util/SimpleBitStorage/data +FD: net/minecraft/util/SimpleBitStorage/f_184708_ net/minecraft/util/SimpleBitStorage/bits +FD: net/minecraft/util/SimpleBitStorage/f_184709_ net/minecraft/util/SimpleBitStorage/mask +FD: net/minecraft/util/SimpleBitStorage/f_184710_ net/minecraft/util/SimpleBitStorage/size +FD: net/minecraft/util/SimpleBitStorage/f_184711_ net/minecraft/util/SimpleBitStorage/valuesPerLong +FD: net/minecraft/util/SimpleBitStorage/f_184712_ net/minecraft/util/SimpleBitStorage/divideMul +FD: net/minecraft/util/SimpleBitStorage/f_184713_ net/minecraft/util/SimpleBitStorage/divideAdd +FD: net/minecraft/util/SimpleBitStorage/f_184714_ net/minecraft/util/SimpleBitStorage/divideShift +FD: net/minecraft/util/SingleKeyCache/f_268589_ net/minecraft/util/SingleKeyCache/computeValue +FD: net/minecraft/util/SingleKeyCache/f_268622_ net/minecraft/util/SingleKeyCache/cachedValue +FD: net/minecraft/util/SingleKeyCache/f_268728_ net/minecraft/util/SingleKeyCache/cacheKey +FD: net/minecraft/util/SmoothDouble/f_14232_ net/minecraft/util/SmoothDouble/targetValue +FD: net/minecraft/util/SmoothDouble/f_14233_ net/minecraft/util/SmoothDouble/remainingValue +FD: net/minecraft/util/SmoothDouble/f_14234_ net/minecraft/util/SmoothDouble/lastAmount +FD: net/minecraft/util/SortedArraySet/f_14240_ net/minecraft/util/SortedArraySet/comparator +FD: net/minecraft/util/SortedArraySet/f_14241_ net/minecraft/util/SortedArraySet/contents +FD: net/minecraft/util/SortedArraySet/f_14242_ net/minecraft/util/SortedArraySet/size +FD: net/minecraft/util/SortedArraySet/f_144974_ net/minecraft/util/SortedArraySet/DEFAULT_INITIAL_CAPACITY +FD: net/minecraft/util/SortedArraySet$ArrayIterator/f_14287_ net/minecraft/util/SortedArraySet$ArrayIterator/this$0 +FD: net/minecraft/util/SortedArraySet$ArrayIterator/f_14288_ net/minecraft/util/SortedArraySet$ArrayIterator/index +FD: net/minecraft/util/SortedArraySet$ArrayIterator/f_14289_ net/minecraft/util/SortedArraySet$ArrayIterator/last +FD: net/minecraft/util/SpawnUtil$Strategy/f_216412_ net/minecraft/util/SpawnUtil$Strategy/LEGACY_IRON_GOLEM +FD: net/minecraft/util/SpawnUtil$Strategy/f_216413_ net/minecraft/util/SpawnUtil$Strategy/ON_TOP_OF_COLLIDER +FD: net/minecraft/util/StringDecomposer/f_14298_ net/minecraft/util/StringDecomposer/STOP_ITERATION +FD: net/minecraft/util/StringDecomposer/f_144984_ net/minecraft/util/StringDecomposer/REPLACEMENT_CHAR +FD: net/minecraft/util/StringRepresentable/f_216433_ net/minecraft/util/StringRepresentable/PRE_BUILT_MAP_THRESHOLD +FD: net/minecraft/util/StringRepresentable$1/f_184754_ net/minecraft/util/StringRepresentable$1/val$values +FD: net/minecraft/util/StringRepresentable$EnumCodec/f_216444_ net/minecraft/util/StringRepresentable$EnumCodec/codec +FD: net/minecraft/util/StringRepresentable$EnumCodec/f_216445_ net/minecraft/util/StringRepresentable$EnumCodec/resolver +FD: net/minecraft/util/StringUtil/f_14402_ net/minecraft/util/StringUtil/STRIP_COLOR_PATTERN +FD: net/minecraft/util/StringUtil/f_144995_ net/minecraft/util/StringUtil/LINE_PATTERN +FD: net/minecraft/util/StringUtil/f_144996_ net/minecraft/util/StringUtil/LINE_END_PATTERN +FD: net/minecraft/util/TaskChainer/f_241683_ net/minecraft/util/TaskChainer/LOGGER +FD: net/minecraft/util/ThreadingDetector/f_199407_ net/minecraft/util/ThreadingDetector/LOGGER +FD: net/minecraft/util/ThreadingDetector/f_199408_ net/minecraft/util/ThreadingDetector/name +FD: net/minecraft/util/ThreadingDetector/f_199409_ net/minecraft/util/ThreadingDetector/lock +FD: net/minecraft/util/ThreadingDetector/f_199410_ net/minecraft/util/ThreadingDetector/stackTraceLock +FD: net/minecraft/util/ThreadingDetector/f_199411_ net/minecraft/util/ThreadingDetector/threadThatFailedToAcquire +FD: net/minecraft/util/ThreadingDetector/f_199412_ net/minecraft/util/ThreadingDetector/fullException +FD: net/minecraft/util/TimeUtil/f_145016_ net/minecraft/util/TimeUtil/NANOSECONDS_PER_SECOND +FD: net/minecraft/util/TimeUtil/f_145017_ net/minecraft/util/TimeUtil/NANOSECONDS_PER_MILLISECOND +FD: net/minecraft/util/ToFloatFunction/f_216471_ net/minecraft/util/ToFloatFunction/IDENTITY +FD: net/minecraft/util/ToFloatFunction$1/f_216479_ net/minecraft/util/ToFloatFunction$1/val$function +FD: net/minecraft/util/ToFloatFunction$2/f_216488_ net/minecraft/util/ToFloatFunction$2/val$outer +FD: net/minecraft/util/ToFloatFunction$2/f_216489_ net/minecraft/util/ToFloatFunction$2/val$function +FD: net/minecraft/util/ToFloatFunction$2/f_216490_ net/minecraft/util/ToFloatFunction$2/this$0 +FD: net/minecraft/util/Tuple/f_14413_ net/minecraft/util/Tuple/a +FD: net/minecraft/util/Tuple/f_14414_ net/minecraft/util/Tuple/b +FD: net/minecraft/util/Unit/$VALUES net/minecraft/util/Unit/$VALUES +FD: net/minecraft/util/Unit/INSTANCE net/minecraft/util/Unit/INSTANCE +FD: net/minecraft/util/ZeroBitStorage/f_184787_ net/minecraft/util/ZeroBitStorage/RAW +FD: net/minecraft/util/ZeroBitStorage/f_184788_ net/minecraft/util/ZeroBitStorage/size +FD: net/minecraft/util/datafix/DataFixTypes/$VALUES net/minecraft/util/datafix/DataFixTypes/$VALUES +FD: net/minecraft/util/datafix/DataFixTypes/ADVANCEMENTS net/minecraft/util/datafix/DataFixTypes/ADVANCEMENTS +FD: net/minecraft/util/datafix/DataFixTypes/CHUNK net/minecraft/util/datafix/DataFixTypes/CHUNK +FD: net/minecraft/util/datafix/DataFixTypes/ENTITY_CHUNK net/minecraft/util/datafix/DataFixTypes/ENTITY_CHUNK +FD: net/minecraft/util/datafix/DataFixTypes/HOTBAR net/minecraft/util/datafix/DataFixTypes/HOTBAR +FD: net/minecraft/util/datafix/DataFixTypes/LEVEL net/minecraft/util/datafix/DataFixTypes/LEVEL +FD: net/minecraft/util/datafix/DataFixTypes/OPTIONS net/minecraft/util/datafix/DataFixTypes/OPTIONS +FD: net/minecraft/util/datafix/DataFixTypes/PLAYER net/minecraft/util/datafix/DataFixTypes/PLAYER +FD: net/minecraft/util/datafix/DataFixTypes/POI_CHUNK net/minecraft/util/datafix/DataFixTypes/POI_CHUNK +FD: net/minecraft/util/datafix/DataFixTypes/SAVED_DATA net/minecraft/util/datafix/DataFixTypes/SAVED_DATA +FD: net/minecraft/util/datafix/DataFixTypes/STATS net/minecraft/util/datafix/DataFixTypes/STATS +FD: net/minecraft/util/datafix/DataFixTypes/STRUCTURE net/minecraft/util/datafix/DataFixTypes/STRUCTURE +FD: net/minecraft/util/datafix/DataFixTypes/WORLD_GEN_SETTINGS net/minecraft/util/datafix/DataFixTypes/WORLD_GEN_SETTINGS +FD: net/minecraft/util/datafix/DataFixTypes/f_14497_ net/minecraft/util/datafix/DataFixTypes/type +FD: net/minecraft/util/datafix/DataFixTypes/f_273922_ net/minecraft/util/datafix/DataFixTypes/TYPES_FOR_LEVEL_LIST +FD: net/minecraft/util/datafix/DataFixers/f_14508_ net/minecraft/util/datafix/DataFixers/SAME +FD: net/minecraft/util/datafix/DataFixers/f_14509_ net/minecraft/util/datafix/DataFixers/SAME_NAMESPACED +FD: net/minecraft/util/datafix/DataFixers/f_216512_ net/minecraft/util/datafix/DataFixers/BLENDING_VERSION +FD: net/minecraft/util/datafix/DataFixers/f_216514_ net/minecraft/util/datafix/DataFixers/dataFixer +FD: net/minecraft/util/datafix/PackedBitStorage/f_145044_ net/minecraft/util/datafix/PackedBitStorage/BIT_TO_LONG_SHIFT +FD: net/minecraft/util/datafix/PackedBitStorage/f_14550_ net/minecraft/util/datafix/PackedBitStorage/data +FD: net/minecraft/util/datafix/PackedBitStorage/f_14551_ net/minecraft/util/datafix/PackedBitStorage/bits +FD: net/minecraft/util/datafix/PackedBitStorage/f_14552_ net/minecraft/util/datafix/PackedBitStorage/mask +FD: net/minecraft/util/datafix/PackedBitStorage/f_14553_ net/minecraft/util/datafix/PackedBitStorage/size +FD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/f_216534_ net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/name +FD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/f_14569_ net/minecraft/util/datafix/fixes/AbstractUUIDFix/typeReference +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184805_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/name +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184806_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/flagValue +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184807_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/flagKey +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184808_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/typeReference +FD: net/minecraft/util/datafix/fixes/AddNewChoices/f_14625_ net/minecraft/util/datafix/fixes/AddNewChoices/name +FD: net/minecraft/util/datafix/fixes/AddNewChoices/f_14626_ net/minecraft/util/datafix/fixes/AddNewChoices/type +FD: net/minecraft/util/datafix/fixes/AdvancementsFix/f_14642_ net/minecraft/util/datafix/fixes/AdvancementsFix/RENAMES +FD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/f_14649_ net/minecraft/util/datafix/fixes/AdvancementsRenameFix/name +FD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/f_14650_ net/minecraft/util/datafix/fixes/AdvancementsRenameFix/renamer +FD: net/minecraft/util/datafix/fixes/AttributesRename/f_14668_ net/minecraft/util/datafix/fixes/AttributesRename/RENAMES +FD: net/minecraft/util/datafix/fixes/BiomeFix/f_14730_ net/minecraft/util/datafix/fixes/BiomeFix/BIOMES +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145092_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/BIT_TO_LONG_SHIFT +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145093_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/SECTION_WIDTH +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145094_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/SECTION_HEIGHT +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145095_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/SECTION_SIZE +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145096_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/HEIGHTMAP_BITS +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145097_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/HEIGHTMAP_SIZE +FD: net/minecraft/util/datafix/fixes/BlendingDataFix/f_216557_ net/minecraft/util/datafix/fixes/BlendingDataFix/name +FD: net/minecraft/util/datafix/fixes/BlendingDataFix/f_216558_ net/minecraft/util/datafix/fixes/BlendingDataFix/STATUSES_TO_SKIP_BLENDING +FD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/f_14827_ net/minecraft/util/datafix/fixes/BlockEntityIdFix/ID_MAP +FD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/f_276461_ net/minecraft/util/datafix/fixes/BlockEntityRenameFix/nameChangeLookup +FD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/f_276471_ net/minecraft/util/datafix/fixes/BlockEntityRenameFix/name +FD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/f_14861_ net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/GSON +FD: net/minecraft/util/datafix/fixes/BlockRenameFix/f_14908_ net/minecraft/util/datafix/fixes/BlockRenameFix/name +FD: net/minecraft/util/datafix/fixes/BlockRenameFix$1/f_14926_ net/minecraft/util/datafix/fixes/BlockRenameFix$1/val$fixBlock +FD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/f_145148_ net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/name +FD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/f_145170_ net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/val$fixBlock +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_145177_ net/minecraft/util/datafix/fixes/BlockStateData/FILTER_ME +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14933_ net/minecraft/util/datafix/fixes/BlockStateData/LOGGER +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14934_ net/minecraft/util/datafix/fixes/BlockStateData/MAP +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14935_ net/minecraft/util/datafix/fixes/BlockStateData/BLOCK_DEFAULTS +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14936_ net/minecraft/util/datafix/fixes/BlockStateData/ID_BY_OLD +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14937_ net/minecraft/util/datafix/fixes/BlockStateData/ID_BY_OLD_NAME +FD: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/f_184821_ net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/RENAMES +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184843_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/DATAFIXER_CONTEXT_TAG +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184844_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/DEFAULT_BIOME +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184845_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/NAME +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184846_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/OLD_SECTION_COUNT +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184847_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/NEW_SECTION_COUNT +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184848_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/NEW_MIN_SECTION_Y +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184850_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_BITS +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184851_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_MASK +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184852_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_OFFSET +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184853_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_TYPES +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184854_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/STATUS_IS_OR_AFTER_SURFACE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184855_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/STATUS_IS_OR_AFTER_NOISE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184856_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BLOCKS_BEFORE_FEATURE_STATUS +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184857_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOME_CONTAINER_LAYER_SIZE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184858_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOME_CONTAINER_SIZE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184859_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOME_CONTAINER_TOP_LAYER_OFFSET +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184860_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOMES_BY_ID +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_196581_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BLOCKS_PER_SECTION +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_196582_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/LONGS_PER_SECTION +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145211_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SIZE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145212_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NORTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145213_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/WEST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145214_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SOUTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145215_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SOUTH_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145216_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SOUTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145217_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/EAST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145218_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NORTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145219_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NORTH_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15035_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/LOGGER +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15036_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/VIRTUAL +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15037_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/FIX +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15038_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/PUMPKIN +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15039_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SNOWY_PODZOL +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15040_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SNOWY_GRASS +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15041_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SNOWY_MYCELIUM +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15042_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_SUNFLOWER +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15043_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_LILAC +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15044_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_TALL_GRASS +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15045_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_LARGE_FERN +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15046_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_ROSE_BUSH +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15047_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_PEONY +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15048_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/FLOWER_POT_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15049_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SKULL_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15050_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/DOOR_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15051_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NOTE_BLOCK_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15052_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/DYE_COLOR_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15053_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/BED_BLOCK_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15054_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/BANNER_BLOCK_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15055_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/AIR +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/f_15127_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/$SwitchMap$net$minecraft$util$datafix$fixes$ChunkPalettedStorageFix$Direction$Axis +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/f_145220_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/SIZE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/f_145221_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/NIBBLE_SIZE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/f_15129_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/data +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/$VALUES net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/$VALUES +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/DOWN net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/DOWN +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/EAST net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/EAST +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/NORTH net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/NORTH +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/SOUTH net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/SOUTH +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/UP net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/UP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/WEST net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/WEST +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/f_15147_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/axis +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/f_15148_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/axisDirection +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/$VALUES net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/$VALUES +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/X net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/X +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Y net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Y +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Z net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Z +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/$VALUES net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/$VALUES +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/NEGATIVE net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/NEGATIVE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/POSITIVE net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/POSITIVE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/f_15174_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/step +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15185_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/y +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15186_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/palette +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15187_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/listTag +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15188_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/section +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15189_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/hasData +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15190_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/toFix +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15191_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/update +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15192_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/seen +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15193_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/buffer +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15215_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/sides +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15216_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/sections +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15217_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/level +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15218_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/x +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15219_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/z +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15220_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/blockEntities +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/f_184984_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/SECTION_WIDTH +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/f_184985_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ALWAYS_WATERLOGGED +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185080_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/SIZE_BITS +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185081_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/palette +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185082_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/data +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185083_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/bits +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185084_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/mask +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185085_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/valuesPerLong +FD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/f_15255_ net/minecraft/util/datafix/fixes/ChunkStatusFix2/RENAMES_AND_DOWNGRADES +FD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/f_15266_ net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/RENAMES +FD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/f_145239_ net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/NUM_SECTIONS +FD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/f_216581_ net/minecraft/util/datafix/fixes/CriteriaRenameFix/name +FD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/f_216582_ net/minecraft/util/datafix/fixes/CriteriaRenameFix/advancementId +FD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/f_216583_ net/minecraft/util/datafix/fixes/CriteriaRenameFix/conversions +FD: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/f_279527_ net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/DECORATED_POT_ID +FD: net/minecraft/util/datafix/fixes/DyeItemRenameFix/f_15321_ net/minecraft/util/datafix/fixes/DyeItemRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EffectDurationFix/f_267441_ net/minecraft/util/datafix/fixes/EffectDurationFix/ITEM_TYPES +FD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/f_15330_ net/minecraft/util/datafix/fixes/EntityBlockStateFix/MAP +FD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/f_15389_ net/minecraft/util/datafix/fixes/EntityCodSalmonFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/f_15390_ net/minecraft/util/datafix/fixes/EntityCodSalmonFix/RENAMED_EGG_IDS +FD: net/minecraft/util/datafix/fixes/EntityHealthFix/f_15431_ net/minecraft/util/datafix/fixes/EntityHealthFix/ENTITIES +FD: net/minecraft/util/datafix/fixes/EntityIdFix/f_15453_ net/minecraft/util/datafix/fixes/EntityIdFix/ID_MAP +FD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/f_15476_ net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/MINECART_BY_ID +FD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/f_15496_ net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/DIRECTIONS +FD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/f_15522_ net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/MAP +FD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/f_15584_ net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/f_15591_ net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/f_15598_ net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/FLOAT_LIST_CODEC +FD: net/minecraft/util/datafix/fixes/EntityRenameFix/f_15616_ net/minecraft/util/datafix/fixes/EntityRenameFix/name +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_145332_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/MINECRAFT_BRED +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_15701_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_15702_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/RENAMED_BLOCKS +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_15703_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/RENAMED_ITEMS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15715_ net/minecraft/util/datafix/fixes/EntityUUIDFix/ABSTRACT_HORSES +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15716_ net/minecraft/util/datafix/fixes/EntityUUIDFix/TAMEABLE_ANIMALS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15717_ net/minecraft/util/datafix/fixes/EntityUUIDFix/ANIMALS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15718_ net/minecraft/util/datafix/fixes/EntityUUIDFix/MOBS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15719_ net/minecraft/util/datafix/fixes/EntityUUIDFix/LIVING_ENTITIES +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15720_ net/minecraft/util/datafix/fixes/EntityUUIDFix/PROJECTILES +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_201927_ net/minecraft/util/datafix/fixes/EntityUUIDFix/LOGGER +FD: net/minecraft/util/datafix/fixes/EntityVariantFix/f_216620_ net/minecraft/util/datafix/fixes/EntityVariantFix/fieldName +FD: net/minecraft/util/datafix/fixes/EntityVariantFix/f_216621_ net/minecraft/util/datafix/fixes/EntityVariantFix/idConversions +FD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/f_145350_ net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/PROFESSION_MAX +FD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/f_15803_ net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/RANDOM +FD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/f_15814_ net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/f_276634_ net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/flagsToRemove +FD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/f_276637_ net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/name +FD: net/minecraft/util/datafix/fixes/GoatHornIdFix/f_216671_ net/minecraft/util/datafix/fixes/GoatHornIdFix/INSTRUMENTS +FD: net/minecraft/util/datafix/fixes/ItemIdFix/f_15937_ net/minecraft/util/datafix/fixes/ItemIdFix/ITEM_NAMES +FD: net/minecraft/util/datafix/fixes/ItemPotionFix/f_145399_ net/minecraft/util/datafix/fixes/ItemPotionFix/DEFAULT +FD: net/minecraft/util/datafix/fixes/ItemPotionFix/f_145400_ net/minecraft/util/datafix/fixes/ItemPotionFix/SPLASH +FD: net/minecraft/util/datafix/fixes/ItemPotionFix/f_15987_ net/minecraft/util/datafix/fixes/ItemPotionFix/POTIONS +FD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/f_242500_ net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/items +FD: net/minecraft/util/datafix/fixes/ItemRenameFix/f_15999_ net/minecraft/util/datafix/fixes/ItemRenameFix/name +FD: net/minecraft/util/datafix/fixes/ItemRenameFix$1/f_16013_ net/minecraft/util/datafix/fixes/ItemRenameFix$1/val$fixItem +FD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/f_16020_ net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/NAMES_BY_COLOR +FD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/f_16031_ net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ID_TO_ENTITY +FD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/f_16062_ net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/MAP +FD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/f_16095_ net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/MAP +FD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/f_260677_ net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/itemType +FD: net/minecraft/util/datafix/fixes/ItemStackTagFix/f_216679_ net/minecraft/util/datafix/fixes/ItemStackTagFix/name +FD: net/minecraft/util/datafix/fixes/ItemStackTagFix/f_216680_ net/minecraft/util/datafix/fixes/ItemStackTagFix/idFilter +FD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/f_16109_ net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/MAP +FD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/f_16110_ net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/IDS +FD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/f_16111_ net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/DAMAGE_IDS +FD: net/minecraft/util/datafix/fixes/JigsawRotationFix/f_145444_ net/minecraft/util/datafix/fixes/JigsawRotationFix/RENAMES +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145445_ net/minecraft/util/datafix/fixes/LeavesFix/NORTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145446_ net/minecraft/util/datafix/fixes/LeavesFix/WEST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145447_ net/minecraft/util/datafix/fixes/LeavesFix/SOUTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145448_ net/minecraft/util/datafix/fixes/LeavesFix/SOUTH_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145449_ net/minecraft/util/datafix/fixes/LeavesFix/SOUTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145450_ net/minecraft/util/datafix/fixes/LeavesFix/EAST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145451_ net/minecraft/util/datafix/fixes/LeavesFix/NORTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145452_ net/minecraft/util/datafix/fixes/LeavesFix/NORTH_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145453_ net/minecraft/util/datafix/fixes/LeavesFix/DECAY_DISTANCE +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145454_ net/minecraft/util/datafix/fixes/LeavesFix/SIZE_BITS +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145455_ net/minecraft/util/datafix/fixes/LeavesFix/SIZE +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_16200_ net/minecraft/util/datafix/fixes/LeavesFix/DIRECTIONS +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_16201_ net/minecraft/util/datafix/fixes/LeavesFix/LEAVES +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_16202_ net/minecraft/util/datafix/fixes/LeavesFix/LOGS +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_145474_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/PERSISTENT +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_145475_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/DECAYABLE +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_145476_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/DISTANCE +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_16250_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/leaveIds +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_16251_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/logIds +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_16252_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/stateToIdMap +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_145477_ net/minecraft/util/datafix/fixes/LeavesFix$Section/BLOCK_STATES_TAG +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_145478_ net/minecraft/util/datafix/fixes/LeavesFix$Section/NAME_TAG +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_145479_ net/minecraft/util/datafix/fixes/LeavesFix$Section/PROPERTIES_TAG +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16280_ net/minecraft/util/datafix/fixes/LeavesFix$Section/paletteFinder +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16281_ net/minecraft/util/datafix/fixes/LeavesFix$Section/palette +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16282_ net/minecraft/util/datafix/fixes/LeavesFix$Section/index +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16283_ net/minecraft/util/datafix/fixes/LeavesFix$Section/storage +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16284_ net/minecraft/util/datafix/fixes/LeavesFix$Section/blockStateType +FD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/f_145480_ net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/GENERATOR_OPTIONS +FD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/f_16306_ net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/MAP +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_145488_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/DEFAULT +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_145489_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/GENERATOR_OPTIONS +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16337_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16338_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/LAYER_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16339_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/OLD_AMOUNT_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16340_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/AMOUNT_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16341_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/BLOCK_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelUUIDFix/f_201928_ net/minecraft/util/datafix/fixes/LevelUUIDFix/LOGGER +FD: net/minecraft/util/datafix/fixes/NamedEntityFix/f_16461_ net/minecraft/util/datafix/fixes/NamedEntityFix/name +FD: net/minecraft/util/datafix/fixes/NamedEntityFix/f_16462_ net/minecraft/util/datafix/fixes/NamedEntityFix/entityName +FD: net/minecraft/util/datafix/fixes/NamedEntityFix/f_16463_ net/minecraft/util/datafix/fixes/NamedEntityFix/type +FD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/f_276472_ net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/renamer +FD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/f_276626_ net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/type +FD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/f_276670_ net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/name +FD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/f_145573_ net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/KEY_UNKNOWN +FD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/f_16627_ net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/MAP +FD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/f_16666_ net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/fixName +FD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/f_16667_ net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/fieldFrom +FD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/f_16668_ net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/fieldTo +FD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/f_216699_ net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/typesToKeep +FD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/f_216708_ net/minecraft/util/datafix/fixes/PoiTypeRenameFix/renamer +FD: net/minecraft/util/datafix/fixes/RecipesFix/f_16722_ net/minecraft/util/datafix/fixes/RecipesFix/RECIPES +FD: net/minecraft/util/datafix/fixes/RecipesRenameningFix/f_16741_ net/minecraft/util/datafix/fixes/RecipesRenameningFix/RECIPES +FD: net/minecraft/util/datafix/fixes/References/f_145628_ net/minecraft/util/datafix/fixes/References/ENTITY_CHUNK +FD: net/minecraft/util/datafix/fixes/References/f_16771_ net/minecraft/util/datafix/fixes/References/LEVEL +FD: net/minecraft/util/datafix/fixes/References/f_16772_ net/minecraft/util/datafix/fixes/References/PLAYER +FD: net/minecraft/util/datafix/fixes/References/f_16773_ net/minecraft/util/datafix/fixes/References/CHUNK +FD: net/minecraft/util/datafix/fixes/References/f_16774_ net/minecraft/util/datafix/fixes/References/HOTBAR +FD: net/minecraft/util/datafix/fixes/References/f_16775_ net/minecraft/util/datafix/fixes/References/OPTIONS +FD: net/minecraft/util/datafix/fixes/References/f_16776_ net/minecraft/util/datafix/fixes/References/STRUCTURE +FD: net/minecraft/util/datafix/fixes/References/f_16777_ net/minecraft/util/datafix/fixes/References/STATS +FD: net/minecraft/util/datafix/fixes/References/f_16778_ net/minecraft/util/datafix/fixes/References/SAVED_DATA +FD: net/minecraft/util/datafix/fixes/References/f_16779_ net/minecraft/util/datafix/fixes/References/ADVANCEMENTS +FD: net/minecraft/util/datafix/fixes/References/f_16780_ net/minecraft/util/datafix/fixes/References/POI_CHUNK +FD: net/minecraft/util/datafix/fixes/References/f_16781_ net/minecraft/util/datafix/fixes/References/BLOCK_ENTITY +FD: net/minecraft/util/datafix/fixes/References/f_16782_ net/minecraft/util/datafix/fixes/References/ITEM_STACK +FD: net/minecraft/util/datafix/fixes/References/f_16783_ net/minecraft/util/datafix/fixes/References/BLOCK_STATE +FD: net/minecraft/util/datafix/fixes/References/f_16784_ net/minecraft/util/datafix/fixes/References/ENTITY_NAME +FD: net/minecraft/util/datafix/fixes/References/f_16785_ net/minecraft/util/datafix/fixes/References/ENTITY_TREE +FD: net/minecraft/util/datafix/fixes/References/f_16786_ net/minecraft/util/datafix/fixes/References/ENTITY +FD: net/minecraft/util/datafix/fixes/References/f_16787_ net/minecraft/util/datafix/fixes/References/BLOCK_NAME +FD: net/minecraft/util/datafix/fixes/References/f_16788_ net/minecraft/util/datafix/fixes/References/ITEM_NAME +FD: net/minecraft/util/datafix/fixes/References/f_16789_ net/minecraft/util/datafix/fixes/References/UNTAGGED_SPAWNER +FD: net/minecraft/util/datafix/fixes/References/f_16790_ net/minecraft/util/datafix/fixes/References/STRUCTURE_FEATURE +FD: net/minecraft/util/datafix/fixes/References/f_16791_ net/minecraft/util/datafix/fixes/References/OBJECTIVE +FD: net/minecraft/util/datafix/fixes/References/f_16792_ net/minecraft/util/datafix/fixes/References/TEAM +FD: net/minecraft/util/datafix/fixes/References/f_16793_ net/minecraft/util/datafix/fixes/References/RECIPE +FD: net/minecraft/util/datafix/fixes/References/f_16794_ net/minecraft/util/datafix/fixes/References/BIOME +FD: net/minecraft/util/datafix/fixes/References/f_16795_ net/minecraft/util/datafix/fixes/References/WORLD_GEN_SETTINGS +FD: net/minecraft/util/datafix/fixes/References/f_216719_ net/minecraft/util/datafix/fixes/References/GAME_EVENT_NAME +FD: net/minecraft/util/datafix/fixes/References/f_276527_ net/minecraft/util/datafix/fixes/References/MULTI_NOISE_BIOME_SOURCE_PARAMETER_LIST +FD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/f_279591_ net/minecraft/util/datafix/fixes/RemapChunkStatusFix/name +FD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/f_279655_ net/minecraft/util/datafix/fixes/RemapChunkStatusFix/mapper +FD: net/minecraft/util/datafix/fixes/RenamedCoralFansFix/f_16848_ net/minecraft/util/datafix/fixes/RenamedCoralFansFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/RenamedCoralFix/f_16850_ net/minecraft/util/datafix/fixes/RenamedCoralFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/f_145641_ net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/INDEX_PATTERN +FD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/f_145642_ net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/PIECE_TYPE +FD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/f_145643_ net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/FEATURES +FD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/f_201930_ net/minecraft/util/datafix/fixes/SavedDataUUIDFix/LOGGER +FD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/f_16909_ net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/name +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_145695_ net/minecraft/util/datafix/fixes/StatsCounterFix/BLOCK_KEY +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_145696_ net/minecraft/util/datafix/fixes/StatsCounterFix/NEW_BLOCK_KEY +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_145697_ net/minecraft/util/datafix/fixes/StatsCounterFix/NEW_CUSTOM_KEY +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16932_ net/minecraft/util/datafix/fixes/StatsCounterFix/SKIP +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16933_ net/minecraft/util/datafix/fixes/StatsCounterFix/CUSTOM_MAP +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16934_ net/minecraft/util/datafix/fixes/StatsCounterFix/ITEM_KEYS +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16935_ net/minecraft/util/datafix/fixes/StatsCounterFix/ENTITY_KEYS +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16936_ net/minecraft/util/datafix/fixes/StatsCounterFix/ENTITIES +FD: net/minecraft/util/datafix/fixes/StatsRenameFix/f_145702_ net/minecraft/util/datafix/fixes/StatsRenameFix/name +FD: net/minecraft/util/datafix/fixes/StatsRenameFix/f_145703_ net/minecraft/util/datafix/fixes/StatsRenameFix/renames +FD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/f_207676_ net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/CONVERSION_MAP +FD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207736_ net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/biomeMapping +FD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207737_ net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/fallback +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/f_145734_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/SIZE +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/f_145735_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/SIZE_BITS +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/f_17015_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/LOGGER +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/f_17048_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/chestIds +FD: net/minecraft/util/datafix/fixes/VariantRenameFix/f_216740_ net/minecraft/util/datafix/fixes/VariantRenameFix/renames +FD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/f_145757_ net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/ORIGINAL_VALUE +FD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/f_145758_ net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/NEW_BASE_VALUE +FD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/f_145761_ net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/TRADES_PER_LEVEL +FD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/f_17074_ net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/LEVEL_XP_THRESHOLDS +FD: net/minecraft/util/datafix/fixes/WallPropertyFix/f_17151_ net/minecraft/util/datafix/fixes/WallPropertyFix/WALL_BLOCKS +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145791_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/VILLAGE +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145792_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/DESERT_PYRAMID +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145793_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/IGLOO +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145794_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/JUNGLE_TEMPLE +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145795_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/SWAMP_HUT +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145796_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/PILLAGER_OUTPOST +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145797_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/END_CITY +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145798_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/WOODLAND_MANSION +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145799_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/OCEAN_MONUMENT +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_17170_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/DEFAULTS +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17265_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/CODEC +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17266_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/spacing +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17267_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/separation +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17268_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/salt +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/f_185171_ net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/WAS_PREVIOUSLY_INCREASED_KEY +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/f_185172_ net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/NAME +FD: net/minecraft/util/datafix/fixes/WriteAndReadFix/f_17290_ net/minecraft/util/datafix/fixes/WriteAndReadFix/name +FD: net/minecraft/util/datafix/fixes/WriteAndReadFix/f_17291_ net/minecraft/util/datafix/fixes/WriteAndReadFix/type +FD: net/minecraft/util/datafix/schemas/NamespacedSchema/f_17304_ net/minecraft/util/datafix/schemas/NamespacedSchema/NAMESPACED_STRING_CODEC +FD: net/minecraft/util/datafix/schemas/NamespacedSchema/f_17305_ net/minecraft/util/datafix/schemas/NamespacedSchema/NAMESPACED_STRING +FD: net/minecraft/util/datafix/schemas/V1451_6/f_181073_ net/minecraft/util/datafix/schemas/V1451_6/SPECIAL_OBJECTIVE_MARKER +FD: net/minecraft/util/datafix/schemas/V1451_6/f_181074_ net/minecraft/util/datafix/schemas/V1451_6/UNPACK_OBJECTIVE_ID +FD: net/minecraft/util/datafix/schemas/V1451_6/f_181075_ net/minecraft/util/datafix/schemas/V1451_6/REPACK_OBJECTIVE_ID +FD: net/minecraft/util/datafix/schemas/V704/f_18032_ net/minecraft/util/datafix/schemas/V704/ITEM_TO_BLOCKENTITY +FD: net/minecraft/util/datafix/schemas/V704/f_18033_ net/minecraft/util/datafix/schemas/V704/ADD_NAMES +FD: net/minecraft/util/datafix/schemas/V705/f_18072_ net/minecraft/util/datafix/schemas/V705/ADD_NAMES +FD: net/minecraft/util/datafix/schemas/V99/f_18180_ net/minecraft/util/datafix/schemas/V99/ADD_NAMES +FD: net/minecraft/util/datafix/schemas/V99/f_18181_ net/minecraft/util/datafix/schemas/V99/LOGGER +FD: net/minecraft/util/datafix/schemas/V99/f_18182_ net/minecraft/util/datafix/schemas/V99/ITEM_TO_BLOCKENTITY +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260444_ net/minecraft/util/eventlog/EventLogDirectory/LOGGER +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260455_ net/minecraft/util/eventlog/EventLogDirectory/COMPRESSED_EXTENSION +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260477_ net/minecraft/util/eventlog/EventLogDirectory/COMPRESS_BUFFER_SIZE +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260512_ net/minecraft/util/eventlog/EventLogDirectory/extension +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260592_ net/minecraft/util/eventlog/EventLogDirectory/root +FD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/f_260707_ net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/path +FD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/f_260728_ net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/id +FD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260524_ net/minecraft/util/eventlog/EventLogDirectory$FileId/DATE_FORMATTER +FD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260602_ net/minecraft/util/eventlog/EventLogDirectory$FileId/index +FD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260711_ net/minecraft/util/eventlog/EventLogDirectory$FileId/date +FD: net/minecraft/util/eventlog/EventLogDirectory$FileList/f_260732_ net/minecraft/util/eventlog/EventLogDirectory$FileList/files +FD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/f_260438_ net/minecraft/util/eventlog/EventLogDirectory$RawFile/id +FD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/f_260693_ net/minecraft/util/eventlog/EventLogDirectory$RawFile/path +FD: net/minecraft/util/eventlog/JsonEventLog/f_260478_ net/minecraft/util/eventlog/JsonEventLog/GSON +FD: net/minecraft/util/eventlog/JsonEventLog/f_260641_ net/minecraft/util/eventlog/JsonEventLog/channel +FD: net/minecraft/util/eventlog/JsonEventLog/f_260653_ net/minecraft/util/eventlog/JsonEventLog/referenceCount +FD: net/minecraft/util/eventlog/JsonEventLog/f_260727_ net/minecraft/util/eventlog/JsonEventLog/codec +FD: net/minecraft/util/eventlog/JsonEventLog$1/f_260466_ net/minecraft/util/eventlog/JsonEventLog$1/val$reader +FD: net/minecraft/util/eventlog/JsonEventLog$1/f_260662_ net/minecraft/util/eventlog/JsonEventLog$1/position +FD: net/minecraft/util/eventlog/JsonEventLog$1/f_260724_ net/minecraft/util/eventlog/JsonEventLog$1/this$0 +FD: net/minecraft/util/eventlog/JsonEventLogReader$1/f_260458_ net/minecraft/util/eventlog/JsonEventLogReader$1/val$jsonReader +FD: net/minecraft/util/eventlog/JsonEventLogReader$1/f_260459_ net/minecraft/util/eventlog/JsonEventLogReader$1/val$codec +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18314_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/LOGGER +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18315_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/server +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18316_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/mBeanInfo +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18317_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/attributeDescriptionByName +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18346_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/name +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18347_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/getter +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18348_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/description +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18349_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/type +FD: net/minecraft/util/profiling/ActiveProfiler/f_145926_ net/minecraft/util/profiling/ActiveProfiler/chartedPaths +FD: net/minecraft/util/profiling/ActiveProfiler/f_18368_ net/minecraft/util/profiling/ActiveProfiler/WARNING_TIME_NANOS +FD: net/minecraft/util/profiling/ActiveProfiler/f_18369_ net/minecraft/util/profiling/ActiveProfiler/LOGGER +FD: net/minecraft/util/profiling/ActiveProfiler/f_18370_ net/minecraft/util/profiling/ActiveProfiler/paths +FD: net/minecraft/util/profiling/ActiveProfiler/f_18371_ net/minecraft/util/profiling/ActiveProfiler/startTimes +FD: net/minecraft/util/profiling/ActiveProfiler/f_18372_ net/minecraft/util/profiling/ActiveProfiler/entries +FD: net/minecraft/util/profiling/ActiveProfiler/f_18373_ net/minecraft/util/profiling/ActiveProfiler/getTickTime +FD: net/minecraft/util/profiling/ActiveProfiler/f_18374_ net/minecraft/util/profiling/ActiveProfiler/getRealTime +FD: net/minecraft/util/profiling/ActiveProfiler/f_18375_ net/minecraft/util/profiling/ActiveProfiler/startTimeNano +FD: net/minecraft/util/profiling/ActiveProfiler/f_18376_ net/minecraft/util/profiling/ActiveProfiler/startTimeTicks +FD: net/minecraft/util/profiling/ActiveProfiler/f_18377_ net/minecraft/util/profiling/ActiveProfiler/path +FD: net/minecraft/util/profiling/ActiveProfiler/f_18378_ net/minecraft/util/profiling/ActiveProfiler/started +FD: net/minecraft/util/profiling/ActiveProfiler/f_18379_ net/minecraft/util/profiling/ActiveProfiler/currentEntry +FD: net/minecraft/util/profiling/ActiveProfiler/f_18380_ net/minecraft/util/profiling/ActiveProfiler/warn +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_145932_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/maxDuration +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_145933_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/minDuration +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_145934_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/accumulatedDuration +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_18410_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/count +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_18411_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/counters +FD: net/minecraft/util/profiling/ContinuousProfiler/f_18430_ net/minecraft/util/profiling/ContinuousProfiler/realTime +FD: net/minecraft/util/profiling/ContinuousProfiler/f_18431_ net/minecraft/util/profiling/ContinuousProfiler/tickCount +FD: net/minecraft/util/profiling/ContinuousProfiler/f_18432_ net/minecraft/util/profiling/ContinuousProfiler/profiler +FD: net/minecraft/util/profiling/EmptyProfileResults/f_18441_ net/minecraft/util/profiling/EmptyProfileResults/EMPTY +FD: net/minecraft/util/profiling/FilledProfileResults/f_18452_ net/minecraft/util/profiling/FilledProfileResults/LOGGER +FD: net/minecraft/util/profiling/FilledProfileResults/f_18453_ net/minecraft/util/profiling/FilledProfileResults/EMPTY +FD: net/minecraft/util/profiling/FilledProfileResults/f_18454_ net/minecraft/util/profiling/FilledProfileResults/SPLITTER +FD: net/minecraft/util/profiling/FilledProfileResults/f_18455_ net/minecraft/util/profiling/FilledProfileResults/COUNTER_ENTRY_COMPARATOR +FD: net/minecraft/util/profiling/FilledProfileResults/f_18456_ net/minecraft/util/profiling/FilledProfileResults/entries +FD: net/minecraft/util/profiling/FilledProfileResults/f_18457_ net/minecraft/util/profiling/FilledProfileResults/startTimeNano +FD: net/minecraft/util/profiling/FilledProfileResults/f_18458_ net/minecraft/util/profiling/FilledProfileResults/startTimeTicks +FD: net/minecraft/util/profiling/FilledProfileResults/f_18459_ net/minecraft/util/profiling/FilledProfileResults/endTimeNano +FD: net/minecraft/util/profiling/FilledProfileResults/f_18460_ net/minecraft/util/profiling/FilledProfileResults/endTimeTicks +FD: net/minecraft/util/profiling/FilledProfileResults/f_18461_ net/minecraft/util/profiling/FilledProfileResults/tickDuration +FD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/f_18537_ net/minecraft/util/profiling/FilledProfileResults$CounterCollector/selfValue +FD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/f_18538_ net/minecraft/util/profiling/FilledProfileResults$CounterCollector/totalValue +FD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/f_18539_ net/minecraft/util/profiling/FilledProfileResults$CounterCollector/children +FD: net/minecraft/util/profiling/InactiveProfiler/f_18554_ net/minecraft/util/profiling/InactiveProfiler/INSTANCE +FD: net/minecraft/util/profiling/ProfileResults/f_145956_ net/minecraft/util/profiling/ProfileResults/PATH_SEPARATOR +FD: net/minecraft/util/profiling/ProfilerFiller/f_145958_ net/minecraft/util/profiling/ProfilerFiller/ROOT +FD: net/minecraft/util/profiling/ProfilerFiller$1/f_18587_ net/minecraft/util/profiling/ProfilerFiller$1/val$first +FD: net/minecraft/util/profiling/ProfilerFiller$1/f_18588_ net/minecraft/util/profiling/ProfilerFiller$1/val$second +FD: net/minecraft/util/profiling/ResultField/f_18607_ net/minecraft/util/profiling/ResultField/percentage +FD: net/minecraft/util/profiling/ResultField/f_18608_ net/minecraft/util/profiling/ResultField/globalPercentage +FD: net/minecraft/util/profiling/ResultField/f_18609_ net/minecraft/util/profiling/ResultField/count +FD: net/minecraft/util/profiling/ResultField/f_18610_ net/minecraft/util/profiling/ResultField/name +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18621_ net/minecraft/util/profiling/SingleTickProfiler/LOGGER +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18622_ net/minecraft/util/profiling/SingleTickProfiler/realTime +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18623_ net/minecraft/util/profiling/SingleTickProfiler/saveThreshold +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18624_ net/minecraft/util/profiling/SingleTickProfiler/tick +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18625_ net/minecraft/util/profiling/SingleTickProfiler/location +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18626_ net/minecraft/util/profiling/SingleTickProfiler/profiler +FD: net/minecraft/util/profiling/jfr/Environment/$VALUES net/minecraft/util/profiling/jfr/Environment/$VALUES +FD: net/minecraft/util/profiling/jfr/Environment/CLIENT net/minecraft/util/profiling/jfr/Environment/CLIENT +FD: net/minecraft/util/profiling/jfr/Environment/SERVER net/minecraft/util/profiling/jfr/Environment/SERVER +FD: net/minecraft/util/profiling/jfr/Environment/f_185270_ net/minecraft/util/profiling/jfr/Environment/description +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185284_ net/minecraft/util/profiling/jfr/JfrProfiler/ROOT_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185285_ net/minecraft/util/profiling/jfr/JfrProfiler/WORLD_GEN_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185286_ net/minecraft/util/profiling/jfr/JfrProfiler/TICK_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185287_ net/minecraft/util/profiling/jfr/JfrProfiler/NETWORK_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185288_ net/minecraft/util/profiling/jfr/JfrProfiler/LOGGER +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185289_ net/minecraft/util/profiling/jfr/JfrProfiler/CUSTOM_EVENTS +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185290_ net/minecraft/util/profiling/jfr/JfrProfiler/FLIGHT_RECORDER_CONFIG +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185291_ net/minecraft/util/profiling/jfr/JfrProfiler/DATE_TIME_FORMATTER +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185292_ net/minecraft/util/profiling/jfr/JfrProfiler/INSTANCE +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185293_ net/minecraft/util/profiling/jfr/JfrProfiler/recording +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185294_ net/minecraft/util/profiling/jfr/JfrProfiler/currentAverageTickTime +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185295_ net/minecraft/util/profiling/jfr/JfrProfiler/networkTrafficByAddress +FD: net/minecraft/util/profiling/jfr/JfrProfiler$1/f_185333_ net/minecraft/util/profiling/jfr/JfrProfiler$1/summaryReporter +FD: net/minecraft/util/profiling/jfr/JfrProfiler$1/f_185334_ net/minecraft/util/profiling/jfr/JfrProfiler$1/this$0 +FD: net/minecraft/util/profiling/jfr/JvmProfiler/f_185340_ net/minecraft/util/profiling/jfr/JvmProfiler/INSTANCE +FD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/f_185355_ net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/LOGGER +FD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/f_185356_ net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/noOpCommit +FD: net/minecraft/util/profiling/jfr/Percentiles/f_185382_ net/minecraft/util/profiling/jfr/Percentiles/DEFAULT_INDEXES +FD: net/minecraft/util/profiling/jfr/SummaryReporter/f_185394_ net/minecraft/util/profiling/jfr/SummaryReporter/LOGGER +FD: net/minecraft/util/profiling/jfr/SummaryReporter/f_185395_ net/minecraft/util/profiling/jfr/SummaryReporter/onDeregistration +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/TYPE net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosX net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosX +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosZ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosZ +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/level net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/level +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/targetStatus net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/targetStatus +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosX net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosX +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosZ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosZ +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195546_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/WORLD_POS_X +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195547_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/WORLD_POS_Z +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195548_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/CHUNK_POS_X +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195549_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/CHUNK_POS_Z +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195550_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/STATUS +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195551_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/LEVEL +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/TYPE net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedBytes net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedPackets net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/remoteAddress net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/remoteAddress +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentBytes net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentPackets net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195563_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/REMOTE_ADDRESS +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195564_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/SENT_BYTES +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195565_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/RECEIVED_BYTES +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195566_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/SENT_PACKETS +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195567_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/RECEIVED_PACKETS +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195569_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/sentBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195570_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/sentPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195571_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/receivedBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195572_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/receivedPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195573_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/event +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/bytes net/minecraft/util/profiling/jfr/event/PacketEvent/bytes +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/packetId net/minecraft/util/profiling/jfr/event/PacketEvent/packetId +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/protocolId net/minecraft/util/profiling/jfr/event/PacketEvent/protocolId +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/remoteAddress net/minecraft/util/profiling/jfr/event/PacketEvent/remoteAddress +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185423_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/REMOTE_ADDRESS +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185424_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/PROTOCOL_ID +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185425_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/PACKET_ID +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185426_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/BYTES +FD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/NAME net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/NAME +FD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/TYPE net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/NAME net/minecraft/util/profiling/jfr/event/PacketSentEvent/NAME +FD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/TYPE net/minecraft/util/profiling/jfr/event/PacketSentEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/TYPE net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/averageTickDurationNanos net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/averageTickDurationNanos +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/f_195603_ net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/AVERAGE_TICK_DURATION +FD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/TYPE net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/TYPE +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185428_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/recordingStarted +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185429_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/recordingEnded +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185430_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/chunkGenStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185431_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/cpuLoadStat +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185432_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/receivedPackets +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185433_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/sentPackets +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185434_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/fileWrites +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185435_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/fileReads +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185436_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/garbageCollections +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185437_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/gcTotalDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185438_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/gcHeapStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185439_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/threadAllocationStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185440_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/tickTimes +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185441_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/worldCreationDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/f_185466_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/val$recordingFile +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/f_185472_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/count +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/f_185473_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/totalSize +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185478_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingStarted +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185479_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingEnded +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185480_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185481_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/worldCreationDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185482_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/tickTimes +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185483_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/cpuLoadStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185484_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/heapSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185485_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/threadAllocationSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185486_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/receivedPacketsSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185487_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/sentPacketsSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185488_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileWrites +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185489_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileReads +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185490_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/chunkGenStats +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185528_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/gson +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185529_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/BYTES_PER_SECOND +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185530_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/COUNT +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185531_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/DURATION_NANOS_TOTAL +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185532_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/TOTAL_BYTES +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185533_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/COUNT_PER_SECOND +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185592_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/duration +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185593_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/chunkPos +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185594_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/worldPos +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185595_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/status +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185596_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/level +FD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185614_ net/minecraft/util/profiling/jfr/stats/CpuLoadStat/jvm +FD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185615_ net/minecraft/util/profiling/jfr/stats/CpuLoadStat/userJvm +FD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185616_ net/minecraft/util/profiling/jfr/stats/CpuLoadStat/system +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185630_ net/minecraft/util/profiling/jfr/stats/FileIOStat/duration +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185631_ net/minecraft/util/profiling/jfr/stats/FileIOStat/path +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185632_ net/minecraft/util/profiling/jfr/stats/FileIOStat/bytes +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185657_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/totalBytes +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185658_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/bytesPerSecond +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185659_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/counts +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185660_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/countsPerSecond +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185661_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/timeSpentInIO +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185662_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/topTenContributorsByTotalBytes +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185680_ net/minecraft/util/profiling/jfr/stats/GcHeapStat/timestamp +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185681_ net/minecraft/util/profiling/jfr/stats/GcHeapStat/heapUsed +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185682_ net/minecraft/util/profiling/jfr/stats/GcHeapStat/timing +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185705_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/duration +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185706_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/gcTotalDuration +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185707_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/totalGCs +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185708_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/allocationRateBytesPerSecond +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/$VALUES net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/$VALUES +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/AFTER_GC net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/AFTER_GC +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/BEFORE_GC net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/BEFORE_GC +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/f_185734_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/totalPacketCountAndSize +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/f_185735_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/largestSizeContributors +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/f_185736_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/recordingDuration +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185746_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalCount +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185747_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalSize +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185748_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/SIZE_THEN_COUNT +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185761_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/direction +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185762_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/protocolId +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185763_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/packetId +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185764_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/PACKET_NAME_BY_ID +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185786_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/timestamp +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185787_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/threadName +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185788_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/totalBytes +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185789_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/UNKNOWN_THREAD +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/f_185811_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/allocationsPerSecondByThread +FD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185819_ net/minecraft/util/profiling/jfr/stats/TickTimeStat/timestamp +FD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185820_ net/minecraft/util/profiling/jfr/stats/TickTimeStat/currentAverage +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185833_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/fastest +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185834_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/slowest +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185835_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/secondSlowest +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185836_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/count +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185837_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/percentilesNanos +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185838_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/totalDuration +FD: net/minecraft/util/profiling/metrics/MetricCategory/$VALUES net/minecraft/util/profiling/metrics/MetricCategory/$VALUES +FD: net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING +FD: net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING_DISPATCHING net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING_DISPATCHING +FD: net/minecraft/util/profiling/metrics/MetricCategory/CPU net/minecraft/util/profiling/metrics/MetricCategory/CPU +FD: net/minecraft/util/profiling/metrics/MetricCategory/EVENT_LOOPS net/minecraft/util/profiling/metrics/MetricCategory/EVENT_LOOPS +FD: net/minecraft/util/profiling/metrics/MetricCategory/GPU net/minecraft/util/profiling/metrics/MetricCategory/GPU +FD: net/minecraft/util/profiling/metrics/MetricCategory/JVM net/minecraft/util/profiling/metrics/MetricCategory/JVM +FD: net/minecraft/util/profiling/metrics/MetricCategory/MAIL_BOXES net/minecraft/util/profiling/metrics/MetricCategory/MAIL_BOXES +FD: net/minecraft/util/profiling/metrics/MetricCategory/PATH_FINDING net/minecraft/util/profiling/metrics/MetricCategory/PATH_FINDING +FD: net/minecraft/util/profiling/metrics/MetricCategory/TICK_LOOP net/minecraft/util/profiling/metrics/MetricCategory/TICK_LOOP +FD: net/minecraft/util/profiling/metrics/MetricCategory/f_145974_ net/minecraft/util/profiling/metrics/MetricCategory/description +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145986_ net/minecraft/util/profiling/metrics/MetricSampler/thresholdTest +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145987_ net/minecraft/util/profiling/metrics/MetricSampler/name +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145988_ net/minecraft/util/profiling/metrics/MetricSampler/category +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145989_ net/minecraft/util/profiling/metrics/MetricSampler/sampler +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145990_ net/minecraft/util/profiling/metrics/MetricSampler/ticks +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145991_ net/minecraft/util/profiling/metrics/MetricSampler/values +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145992_ net/minecraft/util/profiling/metrics/MetricSampler/isRunning +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145993_ net/minecraft/util/profiling/metrics/MetricSampler/beforeTick +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145994_ net/minecraft/util/profiling/metrics/MetricSampler/currentValue +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146028_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/name +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146029_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/category +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146030_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/sampler +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146031_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/context +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146032_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/beforeTick +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146033_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/thresholdTest +FD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/f_146049_ net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/recording +FD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/f_146050_ net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/firstTick +FD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/f_146051_ net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/lastTick +FD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/f_146061_ net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/percentageIncreaseThreshold +FD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/f_146062_ net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/previousValue +FD: net/minecraft/util/profiling/metrics/MetricsRegistry/f_146067_ net/minecraft/util/profiling/metrics/MetricsRegistry/INSTANCE +FD: net/minecraft/util/profiling/metrics/MetricsRegistry/f_146068_ net/minecraft/util/profiling/metrics/MetricsRegistry/measuredInstances +FD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/f_146080_ net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/delegates +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146104_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/PROFILING_MAX_DURATION_SECONDS +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146105_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/globalOnReportFinished +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146106_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/deviationsBySampler +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146107_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/taskProfiler +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146108_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ioExecutor +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146109_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/metricsPersister +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146110_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/onProfilingEnd +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146111_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/onReportFinished +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146112_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/metricsSamplerProvider +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146113_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/wallTimeSource +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146114_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/deadlineNano +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146115_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/currentTick +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146116_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/singleTickProfiler +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146117_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/killSwitch +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146118_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/thisTickSamplers +FD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/f_146153_ net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/INSTANCE +FD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/f_146161_ net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/previouslyFoundSamplerNames +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/f_146177_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/samplers +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/f_146178_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/samplerFactory +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/f_181117_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/LOGGER +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/f_146196_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/val$timeSource +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146200_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/nrOfCpus +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146201_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/systemInfo +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146202_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/processor +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146203_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/previousCpuLoadTick +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146204_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/currentLoad +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146205_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/lastPollMs +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146209_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/PROFILING_RESULTS_DIR +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146210_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/METRICS_DIR_NAME +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146211_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/DEVIATIONS_DIR_NAME +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146212_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/PROFILING_RESULT_FILENAME +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146213_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/LOGGER +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146214_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/rootFolderName +FD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/f_146254_ net/minecraft/util/profiling/metrics/storage/RecordedDeviation/timestamp +FD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/f_146255_ net/minecraft/util/profiling/metrics/storage/RecordedDeviation/tick +FD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/f_146256_ net/minecraft/util/profiling/metrics/storage/RecordedDeviation/profilerResultAtTick +FD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/f_146268_ net/minecraft/util/random/SimpleWeightedRandomList$Builder/result +FD: net/minecraft/util/random/Weight/f_146274_ net/minecraft/util/random/Weight/CODEC +FD: net/minecraft/util/random/Weight/f_146275_ net/minecraft/util/random/Weight/ONE +FD: net/minecraft/util/random/Weight/f_146276_ net/minecraft/util/random/Weight/LOGGER +FD: net/minecraft/util/random/Weight/f_146277_ net/minecraft/util/random/Weight/value +FD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/f_146293_ net/minecraft/util/random/WeightedEntry$IntrusiveBase/weight +FD: net/minecraft/util/random/WeightedEntry$Wrapper/f_146299_ net/minecraft/util/random/WeightedEntry$Wrapper/data +FD: net/minecraft/util/random/WeightedEntry$Wrapper/f_146300_ net/minecraft/util/random/WeightedEntry$Wrapper/weight +FD: net/minecraft/util/random/WeightedRandomList/f_146324_ net/minecraft/util/random/WeightedRandomList/totalWeight +FD: net/minecraft/util/random/WeightedRandomList/f_146325_ net/minecraft/util/random/WeightedRandomList/items +FD: net/minecraft/util/thread/BlockableEventLoop/f_18680_ net/minecraft/util/thread/BlockableEventLoop/name +FD: net/minecraft/util/thread/BlockableEventLoop/f_18681_ net/minecraft/util/thread/BlockableEventLoop/LOGGER +FD: net/minecraft/util/thread/BlockableEventLoop/f_18682_ net/minecraft/util/thread/BlockableEventLoop/pendingRunnables +FD: net/minecraft/util/thread/BlockableEventLoop/f_18683_ net/minecraft/util/thread/BlockableEventLoop/blockingCount +FD: net/minecraft/util/thread/NamedThreadFactory/f_146340_ net/minecraft/util/thread/NamedThreadFactory/LOGGER +FD: net/minecraft/util/thread/NamedThreadFactory/f_146341_ net/minecraft/util/thread/NamedThreadFactory/group +FD: net/minecraft/util/thread/NamedThreadFactory/f_146342_ net/minecraft/util/thread/NamedThreadFactory/threadNumber +FD: net/minecraft/util/thread/NamedThreadFactory/f_146343_ net/minecraft/util/thread/NamedThreadFactory/namePrefix +FD: net/minecraft/util/thread/ProcessorHandle$1/f_18725_ net/minecraft/util/thread/ProcessorHandle$1/val$name +FD: net/minecraft/util/thread/ProcessorHandle$1/f_18726_ net/minecraft/util/thread/ProcessorHandle$1/val$tell +FD: net/minecraft/util/thread/ProcessorMailbox/f_146353_ net/minecraft/util/thread/ProcessorMailbox/CLOSED_BIT +FD: net/minecraft/util/thread/ProcessorMailbox/f_146354_ net/minecraft/util/thread/ProcessorMailbox/SCHEDULED_BIT +FD: net/minecraft/util/thread/ProcessorMailbox/f_18734_ net/minecraft/util/thread/ProcessorMailbox/queue +FD: net/minecraft/util/thread/ProcessorMailbox/f_18735_ net/minecraft/util/thread/ProcessorMailbox/LOGGER +FD: net/minecraft/util/thread/ProcessorMailbox/f_18736_ net/minecraft/util/thread/ProcessorMailbox/status +FD: net/minecraft/util/thread/ProcessorMailbox/f_18737_ net/minecraft/util/thread/ProcessorMailbox/dispatcher +FD: net/minecraft/util/thread/ProcessorMailbox/f_18738_ net/minecraft/util/thread/ProcessorMailbox/name +FD: net/minecraft/util/thread/ReentrantBlockableEventLoop/f_18763_ net/minecraft/util/thread/ReentrantBlockableEventLoop/reentrantCount +FD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/f_185865_ net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/queues +FD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/f_185866_ net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/size +FD: net/minecraft/util/thread/StrictQueue$IntRunnable/f_18783_ net/minecraft/util/thread/StrictQueue$IntRunnable/priority +FD: net/minecraft/util/thread/StrictQueue$IntRunnable/f_18784_ net/minecraft/util/thread/StrictQueue$IntRunnable/task +FD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/f_18790_ net/minecraft/util/thread/StrictQueue$QueueStrictQueue/queue +FD: net/minecraft/util/valueproviders/BiasedToBottomInt/f_146359_ net/minecraft/util/valueproviders/BiasedToBottomInt/CODEC +FD: net/minecraft/util/valueproviders/BiasedToBottomInt/f_146360_ net/minecraft/util/valueproviders/BiasedToBottomInt/minInclusive +FD: net/minecraft/util/valueproviders/BiasedToBottomInt/f_146361_ net/minecraft/util/valueproviders/BiasedToBottomInt/maxInclusive +FD: net/minecraft/util/valueproviders/ClampedInt/f_146383_ net/minecraft/util/valueproviders/ClampedInt/CODEC +FD: net/minecraft/util/valueproviders/ClampedInt/f_146384_ net/minecraft/util/valueproviders/ClampedInt/source +FD: net/minecraft/util/valueproviders/ClampedInt/f_146385_ net/minecraft/util/valueproviders/ClampedInt/minInclusive +FD: net/minecraft/util/valueproviders/ClampedInt/f_146386_ net/minecraft/util/valueproviders/ClampedInt/maxInclusive +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146411_ net/minecraft/util/valueproviders/ClampedNormalFloat/CODEC +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146412_ net/minecraft/util/valueproviders/ClampedNormalFloat/mean +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146413_ net/minecraft/util/valueproviders/ClampedNormalFloat/deviation +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146414_ net/minecraft/util/valueproviders/ClampedNormalFloat/min +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146415_ net/minecraft/util/valueproviders/ClampedNormalFloat/max +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185867_ net/minecraft/util/valueproviders/ClampedNormalInt/CODEC +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185868_ net/minecraft/util/valueproviders/ClampedNormalInt/mean +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185869_ net/minecraft/util/valueproviders/ClampedNormalInt/deviation +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185870_ net/minecraft/util/valueproviders/ClampedNormalInt/min_inclusive +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185871_ net/minecraft/util/valueproviders/ClampedNormalInt/max_inclusive +FD: net/minecraft/util/valueproviders/ConstantFloat/f_146451_ net/minecraft/util/valueproviders/ConstantFloat/ZERO +FD: net/minecraft/util/valueproviders/ConstantFloat/f_146452_ net/minecraft/util/valueproviders/ConstantFloat/CODEC +FD: net/minecraft/util/valueproviders/ConstantFloat/f_146453_ net/minecraft/util/valueproviders/ConstantFloat/value +FD: net/minecraft/util/valueproviders/ConstantInt/f_146476_ net/minecraft/util/valueproviders/ConstantInt/ZERO +FD: net/minecraft/util/valueproviders/ConstantInt/f_146477_ net/minecraft/util/valueproviders/ConstantInt/CODEC +FD: net/minecraft/util/valueproviders/ConstantInt/f_146478_ net/minecraft/util/valueproviders/ConstantInt/value +FD: net/minecraft/util/valueproviders/FloatProvider/f_146501_ net/minecraft/util/valueproviders/FloatProvider/CONSTANT_OR_DISPATCH_CODEC +FD: net/minecraft/util/valueproviders/FloatProvider/f_146502_ net/minecraft/util/valueproviders/FloatProvider/CODEC +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146519_ net/minecraft/util/valueproviders/FloatProviderType/CONSTANT +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146520_ net/minecraft/util/valueproviders/FloatProviderType/UNIFORM +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146521_ net/minecraft/util/valueproviders/FloatProviderType/CLAMPED_NORMAL +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146522_ net/minecraft/util/valueproviders/FloatProviderType/TRAPEZOID +FD: net/minecraft/util/valueproviders/IntProvider/f_146530_ net/minecraft/util/valueproviders/IntProvider/CONSTANT_OR_DISPATCH_CODEC +FD: net/minecraft/util/valueproviders/IntProvider/f_146531_ net/minecraft/util/valueproviders/IntProvider/CODEC +FD: net/minecraft/util/valueproviders/IntProvider/f_146532_ net/minecraft/util/valueproviders/IntProvider/NON_NEGATIVE_CODEC +FD: net/minecraft/util/valueproviders/IntProvider/f_146533_ net/minecraft/util/valueproviders/IntProvider/POSITIVE_CODEC +FD: net/minecraft/util/valueproviders/IntProviderType/f_146550_ net/minecraft/util/valueproviders/IntProviderType/CONSTANT +FD: net/minecraft/util/valueproviders/IntProviderType/f_146551_ net/minecraft/util/valueproviders/IntProviderType/UNIFORM +FD: net/minecraft/util/valueproviders/IntProviderType/f_146552_ net/minecraft/util/valueproviders/IntProviderType/BIASED_TO_BOTTOM +FD: net/minecraft/util/valueproviders/IntProviderType/f_146553_ net/minecraft/util/valueproviders/IntProviderType/CLAMPED +FD: net/minecraft/util/valueproviders/IntProviderType/f_185907_ net/minecraft/util/valueproviders/IntProviderType/WEIGHTED_LIST +FD: net/minecraft/util/valueproviders/IntProviderType/f_185908_ net/minecraft/util/valueproviders/IntProviderType/CLAMPED_NORMAL +FD: net/minecraft/util/valueproviders/MultipliedFloats/f_216856_ net/minecraft/util/valueproviders/MultipliedFloats/values +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146561_ net/minecraft/util/valueproviders/TrapezoidFloat/CODEC +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146562_ net/minecraft/util/valueproviders/TrapezoidFloat/min +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146563_ net/minecraft/util/valueproviders/TrapezoidFloat/max +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146564_ net/minecraft/util/valueproviders/TrapezoidFloat/plateau +FD: net/minecraft/util/valueproviders/UniformFloat/f_146590_ net/minecraft/util/valueproviders/UniformFloat/CODEC +FD: net/minecraft/util/valueproviders/UniformFloat/f_146591_ net/minecraft/util/valueproviders/UniformFloat/minInclusive +FD: net/minecraft/util/valueproviders/UniformFloat/f_146592_ net/minecraft/util/valueproviders/UniformFloat/maxExclusive +FD: net/minecraft/util/valueproviders/UniformInt/f_146614_ net/minecraft/util/valueproviders/UniformInt/CODEC +FD: net/minecraft/util/valueproviders/UniformInt/f_146615_ net/minecraft/util/valueproviders/UniformInt/minInclusive +FD: net/minecraft/util/valueproviders/UniformInt/f_146616_ net/minecraft/util/valueproviders/UniformInt/maxInclusive +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185909_ net/minecraft/util/valueproviders/WeightedListInt/CODEC +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185910_ net/minecraft/util/valueproviders/WeightedListInt/distribution +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185911_ net/minecraft/util/valueproviders/WeightedListInt/minValue +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185912_ net/minecraft/util/valueproviders/WeightedListInt/maxValue +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18797_ net/minecraft/util/worldupdate/WorldUpgrader/LOGGER +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18798_ net/minecraft/util/worldupdate/WorldUpgrader/THREAD_FACTORY +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18800_ net/minecraft/util/worldupdate/WorldUpgrader/eraseCache +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18801_ net/minecraft/util/worldupdate/WorldUpgrader/levelStorage +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18802_ net/minecraft/util/worldupdate/WorldUpgrader/thread +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18803_ net/minecraft/util/worldupdate/WorldUpgrader/dataFixer +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18804_ net/minecraft/util/worldupdate/WorldUpgrader/running +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18805_ net/minecraft/util/worldupdate/WorldUpgrader/finished +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18806_ net/minecraft/util/worldupdate/WorldUpgrader/progress +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18807_ net/minecraft/util/worldupdate/WorldUpgrader/totalChunks +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18808_ net/minecraft/util/worldupdate/WorldUpgrader/converted +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18809_ net/minecraft/util/worldupdate/WorldUpgrader/skipped +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18810_ net/minecraft/util/worldupdate/WorldUpgrader/progressMap +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18811_ net/minecraft/util/worldupdate/WorldUpgrader/status +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18812_ net/minecraft/util/worldupdate/WorldUpgrader/REGEX +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18813_ net/minecraft/util/worldupdate/WorldUpgrader/overworldDataStorage +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_243666_ net/minecraft/util/worldupdate/WorldUpgrader/levels +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_243889_ net/minecraft/util/worldupdate/WorldUpgrader/dimensions +FD: net/minecraft/world/BossEvent/f_146638_ net/minecraft/world/BossEvent/progress +FD: net/minecraft/world/BossEvent/f_18840_ net/minecraft/world/BossEvent/name +FD: net/minecraft/world/BossEvent/f_18842_ net/minecraft/world/BossEvent/color +FD: net/minecraft/world/BossEvent/f_18843_ net/minecraft/world/BossEvent/overlay +FD: net/minecraft/world/BossEvent/f_18844_ net/minecraft/world/BossEvent/darkenScreen +FD: net/minecraft/world/BossEvent/f_18845_ net/minecraft/world/BossEvent/playBossMusic +FD: net/minecraft/world/BossEvent/f_18846_ net/minecraft/world/BossEvent/createWorldFog +FD: net/minecraft/world/BossEvent/f_18847_ net/minecraft/world/BossEvent/id +FD: net/minecraft/world/BossEvent$BossBarColor/$VALUES net/minecraft/world/BossEvent$BossBarColor/$VALUES +FD: net/minecraft/world/BossEvent$BossBarColor/BLUE net/minecraft/world/BossEvent$BossBarColor/BLUE +FD: net/minecraft/world/BossEvent$BossBarColor/GREEN net/minecraft/world/BossEvent$BossBarColor/GREEN +FD: net/minecraft/world/BossEvent$BossBarColor/PINK net/minecraft/world/BossEvent$BossBarColor/PINK +FD: net/minecraft/world/BossEvent$BossBarColor/PURPLE net/minecraft/world/BossEvent$BossBarColor/PURPLE +FD: net/minecraft/world/BossEvent$BossBarColor/RED net/minecraft/world/BossEvent$BossBarColor/RED +FD: net/minecraft/world/BossEvent$BossBarColor/WHITE net/minecraft/world/BossEvent$BossBarColor/WHITE +FD: net/minecraft/world/BossEvent$BossBarColor/YELLOW net/minecraft/world/BossEvent$BossBarColor/YELLOW +FD: net/minecraft/world/BossEvent$BossBarColor/f_18874_ net/minecraft/world/BossEvent$BossBarColor/name +FD: net/minecraft/world/BossEvent$BossBarColor/f_18875_ net/minecraft/world/BossEvent$BossBarColor/formatting +FD: net/minecraft/world/BossEvent$BossBarOverlay/$VALUES net/minecraft/world/BossEvent$BossBarOverlay/$VALUES +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_10 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_10 +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_12 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_12 +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_20 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_20 +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_6 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_6 +FD: net/minecraft/world/BossEvent$BossBarOverlay/PROGRESS net/minecraft/world/BossEvent$BossBarOverlay/PROGRESS +FD: net/minecraft/world/BossEvent$BossBarOverlay/f_18895_ net/minecraft/world/BossEvent$BossBarOverlay/name +FD: net/minecraft/world/CompoundContainer/f_18910_ net/minecraft/world/CompoundContainer/container1 +FD: net/minecraft/world/CompoundContainer/f_18911_ net/minecraft/world/CompoundContainer/container2 +FD: net/minecraft/world/Container/f_146642_ net/minecraft/world/Container/LARGE_MAX_STACK_SIZE +FD: net/minecraft/world/Container/f_271421_ net/minecraft/world/Container/DEFAULT_DISTANCE_LIMIT +FD: net/minecraft/world/Difficulty/$VALUES net/minecraft/world/Difficulty/$VALUES +FD: net/minecraft/world/Difficulty/EASY net/minecraft/world/Difficulty/EASY +FD: net/minecraft/world/Difficulty/HARD net/minecraft/world/Difficulty/HARD +FD: net/minecraft/world/Difficulty/NORMAL net/minecraft/world/Difficulty/NORMAL +FD: net/minecraft/world/Difficulty/PEACEFUL net/minecraft/world/Difficulty/PEACEFUL +FD: net/minecraft/world/Difficulty/f_19018_ net/minecraft/world/Difficulty/BY_ID +FD: net/minecraft/world/Difficulty/f_19019_ net/minecraft/world/Difficulty/id +FD: net/minecraft/world/Difficulty/f_19020_ net/minecraft/world/Difficulty/key +FD: net/minecraft/world/Difficulty/f_262746_ net/minecraft/world/Difficulty/CODEC +FD: net/minecraft/world/DifficultyInstance/f_146646_ net/minecraft/world/DifficultyInstance/DIFFICULTY_TIME_GLOBAL_OFFSET +FD: net/minecraft/world/DifficultyInstance/f_146647_ net/minecraft/world/DifficultyInstance/MAX_DIFFICULTY_TIME_GLOBAL +FD: net/minecraft/world/DifficultyInstance/f_146648_ net/minecraft/world/DifficultyInstance/MAX_DIFFICULTY_TIME_LOCAL +FD: net/minecraft/world/DifficultyInstance/f_19041_ net/minecraft/world/DifficultyInstance/base +FD: net/minecraft/world/DifficultyInstance/f_19042_ net/minecraft/world/DifficultyInstance/effectiveDifficulty +FD: net/minecraft/world/InteractionHand/$VALUES net/minecraft/world/InteractionHand/$VALUES +FD: net/minecraft/world/InteractionHand/MAIN_HAND net/minecraft/world/InteractionHand/MAIN_HAND +FD: net/minecraft/world/InteractionHand/OFF_HAND net/minecraft/world/InteractionHand/OFF_HAND +FD: net/minecraft/world/InteractionResult/$VALUES net/minecraft/world/InteractionResult/$VALUES +FD: net/minecraft/world/InteractionResult/CONSUME net/minecraft/world/InteractionResult/CONSUME +FD: net/minecraft/world/InteractionResult/CONSUME_PARTIAL net/minecraft/world/InteractionResult/CONSUME_PARTIAL +FD: net/minecraft/world/InteractionResult/FAIL net/minecraft/world/InteractionResult/FAIL +FD: net/minecraft/world/InteractionResult/PASS net/minecraft/world/InteractionResult/PASS +FD: net/minecraft/world/InteractionResult/SUCCESS net/minecraft/world/InteractionResult/SUCCESS +FD: net/minecraft/world/InteractionResultHolder/f_19084_ net/minecraft/world/InteractionResultHolder/result +FD: net/minecraft/world/InteractionResultHolder/f_19085_ net/minecraft/world/InteractionResultHolder/object +FD: net/minecraft/world/LockCode/f_146668_ net/minecraft/world/LockCode/TAG_LOCK +FD: net/minecraft/world/LockCode/f_19102_ net/minecraft/world/LockCode/NO_LOCK +FD: net/minecraft/world/LockCode/f_19103_ net/minecraft/world/LockCode/key +FD: net/minecraft/world/RandomSequence/f_286999_ net/minecraft/world/RandomSequence/CODEC +FD: net/minecraft/world/RandomSequence/f_287004_ net/minecraft/world/RandomSequence/source +FD: net/minecraft/world/RandomSequences/f_286938_ net/minecraft/world/RandomSequences/seed +FD: net/minecraft/world/RandomSequences/f_286954_ net/minecraft/world/RandomSequences/sequences +FD: net/minecraft/world/RandomSequences/f_286984_ net/minecraft/world/RandomSequences/LOGGER +FD: net/minecraft/world/RandomSequences$1/f_286950_ net/minecraft/world/RandomSequences$1/val$random +FD: net/minecraft/world/RandomSequences$1/f_287002_ net/minecraft/world/RandomSequences$1/this$0 +FD: net/minecraft/world/SimpleContainer/f_19146_ net/minecraft/world/SimpleContainer/size +FD: net/minecraft/world/SimpleContainer/f_19147_ net/minecraft/world/SimpleContainer/items +FD: net/minecraft/world/SimpleContainer/f_19148_ net/minecraft/world/SimpleContainer/listeners +FD: net/minecraft/world/SimpleMenuProvider/f_19199_ net/minecraft/world/SimpleMenuProvider/title +FD: net/minecraft/world/SimpleMenuProvider/f_19200_ net/minecraft/world/SimpleMenuProvider/menuConstructor +FD: net/minecraft/world/damagesource/CombatEntry/f_19250_ net/minecraft/world/damagesource/CombatEntry/source +FD: net/minecraft/world/damagesource/CombatEntry/f_19252_ net/minecraft/world/damagesource/CombatEntry/damage +FD: net/minecraft/world/damagesource/CombatEntry/f_19255_ net/minecraft/world/damagesource/CombatEntry/fallDistance +FD: net/minecraft/world/damagesource/CombatEntry/f_289042_ net/minecraft/world/damagesource/CombatEntry/fallLocation +FD: net/minecraft/world/damagesource/CombatRules/f_146688_ net/minecraft/world/damagesource/CombatRules/MAX_ARMOR +FD: net/minecraft/world/damagesource/CombatRules/f_146689_ net/minecraft/world/damagesource/CombatRules/ARMOR_PROTECTION_DIVIDER +FD: net/minecraft/world/damagesource/CombatRules/f_146690_ net/minecraft/world/damagesource/CombatRules/BASE_ARMOR_TOUGHNESS +FD: net/minecraft/world/damagesource/CombatRules/f_146691_ net/minecraft/world/damagesource/CombatRules/MIN_ARMOR_RATIO +FD: net/minecraft/world/damagesource/CombatRules/f_146692_ net/minecraft/world/damagesource/CombatRules/NUM_ARMOR_ITEMS +FD: net/minecraft/world/damagesource/CombatTracker/f_146694_ net/minecraft/world/damagesource/CombatTracker/RESET_DAMAGE_STATUS_TIME +FD: net/minecraft/world/damagesource/CombatTracker/f_146695_ net/minecraft/world/damagesource/CombatTracker/RESET_COMBAT_STATUS_TIME +FD: net/minecraft/world/damagesource/CombatTracker/f_19276_ net/minecraft/world/damagesource/CombatTracker/entries +FD: net/minecraft/world/damagesource/CombatTracker/f_19277_ net/minecraft/world/damagesource/CombatTracker/mob +FD: net/minecraft/world/damagesource/CombatTracker/f_19278_ net/minecraft/world/damagesource/CombatTracker/lastDamageTime +FD: net/minecraft/world/damagesource/CombatTracker/f_19279_ net/minecraft/world/damagesource/CombatTracker/combatStartTime +FD: net/minecraft/world/damagesource/CombatTracker/f_19280_ net/minecraft/world/damagesource/CombatTracker/combatEndTime +FD: net/minecraft/world/damagesource/CombatTracker/f_19281_ net/minecraft/world/damagesource/CombatTracker/inCombat +FD: net/minecraft/world/damagesource/CombatTracker/f_19282_ net/minecraft/world/damagesource/CombatTracker/takingDamage +FD: net/minecraft/world/damagesource/CombatTracker/f_268553_ net/minecraft/world/damagesource/CombatTracker/INTENTIONAL_GAME_DESIGN_STYLE +FD: net/minecraft/world/damagesource/DamageEffects/$VALUES net/minecraft/world/damagesource/DamageEffects/$VALUES +FD: net/minecraft/world/damagesource/DamageEffects/BURNING net/minecraft/world/damagesource/DamageEffects/BURNING +FD: net/minecraft/world/damagesource/DamageEffects/DROWNING net/minecraft/world/damagesource/DamageEffects/DROWNING +FD: net/minecraft/world/damagesource/DamageEffects/FREEZING net/minecraft/world/damagesource/DamageEffects/FREEZING +FD: net/minecraft/world/damagesource/DamageEffects/HURT net/minecraft/world/damagesource/DamageEffects/HURT +FD: net/minecraft/world/damagesource/DamageEffects/POKING net/minecraft/world/damagesource/DamageEffects/POKING +FD: net/minecraft/world/damagesource/DamageEffects/THORNS net/minecraft/world/damagesource/DamageEffects/THORNS +FD: net/minecraft/world/damagesource/DamageEffects/f_268435_ net/minecraft/world/damagesource/DamageEffects/id +FD: net/minecraft/world/damagesource/DamageEffects/f_268463_ net/minecraft/world/damagesource/DamageEffects/CODEC +FD: net/minecraft/world/damagesource/DamageEffects/f_268660_ net/minecraft/world/damagesource/DamageEffects/sound +FD: net/minecraft/world/damagesource/DamageScaling/$VALUES net/minecraft/world/damagesource/DamageScaling/$VALUES +FD: net/minecraft/world/damagesource/DamageScaling/ALWAYS net/minecraft/world/damagesource/DamageScaling/ALWAYS +FD: net/minecraft/world/damagesource/DamageScaling/NEVER net/minecraft/world/damagesource/DamageScaling/NEVER +FD: net/minecraft/world/damagesource/DamageScaling/WHEN_CAUSED_BY_LIVING_NON_PLAYER net/minecraft/world/damagesource/DamageScaling/WHEN_CAUSED_BY_LIVING_NON_PLAYER +FD: net/minecraft/world/damagesource/DamageScaling/f_268442_ net/minecraft/world/damagesource/DamageScaling/id +FD: net/minecraft/world/damagesource/DamageScaling/f_268563_ net/minecraft/world/damagesource/DamageScaling/CODEC +FD: net/minecraft/world/damagesource/DamageSource/f_268454_ net/minecraft/world/damagesource/DamageSource/damageSourcePosition +FD: net/minecraft/world/damagesource/DamageSource/f_268495_ net/minecraft/world/damagesource/DamageSource/type +FD: net/minecraft/world/damagesource/DamageSource/f_268569_ net/minecraft/world/damagesource/DamageSource/causingEntity +FD: net/minecraft/world/damagesource/DamageSource/f_268595_ net/minecraft/world/damagesource/DamageSource/directEntity +FD: net/minecraft/world/damagesource/DamageSource$1/f_268417_ net/minecraft/world/damagesource/DamageSource$1/$SwitchMap$net$minecraft$world$damagesource$DamageScaling +FD: net/minecraft/world/damagesource/DamageSources/f_268418_ net/minecraft/world/damagesource/DamageSources/lava +FD: net/minecraft/world/damagesource/DamageSources/f_268426_ net/minecraft/world/damagesource/DamageSources/dryOut +FD: net/minecraft/world/damagesource/DamageSources/f_268438_ net/minecraft/world/damagesource/DamageSources/wither +FD: net/minecraft/world/damagesource/DamageSources/f_268475_ net/minecraft/world/damagesource/DamageSources/onFire +FD: net/minecraft/world/damagesource/DamageSources/f_268499_ net/minecraft/world/damagesource/DamageSources/cactus +FD: net/minecraft/world/damagesource/DamageSources/f_268521_ net/minecraft/world/damagesource/DamageSources/generic +FD: net/minecraft/world/damagesource/DamageSources/f_268551_ net/minecraft/world/damagesource/DamageSources/lightningBolt +FD: net/minecraft/world/damagesource/DamageSources/f_268561_ net/minecraft/world/damagesource/DamageSources/sweetBerryBush +FD: net/minecraft/world/damagesource/DamageSources/f_268567_ net/minecraft/world/damagesource/DamageSources/inFire +FD: net/minecraft/world/damagesource/DamageSources/f_268582_ net/minecraft/world/damagesource/DamageSources/dragonBreath +FD: net/minecraft/world/damagesource/DamageSources/f_268591_ net/minecraft/world/damagesource/DamageSources/magic +FD: net/minecraft/world/damagesource/DamageSources/f_268602_ net/minecraft/world/damagesource/DamageSources/hotFloor +FD: net/minecraft/world/damagesource/DamageSources/f_268605_ net/minecraft/world/damagesource/DamageSources/inWall +FD: net/minecraft/world/damagesource/DamageSources/f_268610_ net/minecraft/world/damagesource/DamageSources/stalagmite +FD: net/minecraft/world/damagesource/DamageSources/f_268611_ net/minecraft/world/damagesource/DamageSources/drown +FD: net/minecraft/world/damagesource/DamageSources/f_268623_ net/minecraft/world/damagesource/DamageSources/flyIntoWall +FD: net/minecraft/world/damagesource/DamageSources/f_268645_ net/minecraft/world/damagesource/DamageSources/damageTypes +FD: net/minecraft/world/damagesource/DamageSources/f_268691_ net/minecraft/world/damagesource/DamageSources/cramming +FD: net/minecraft/world/damagesource/DamageSources/f_268726_ net/minecraft/world/damagesource/DamageSources/fellOutOfWorld +FD: net/minecraft/world/damagesource/DamageSources/f_268729_ net/minecraft/world/damagesource/DamageSources/fall +FD: net/minecraft/world/damagesource/DamageSources/f_268733_ net/minecraft/world/damagesource/DamageSources/freeze +FD: net/minecraft/world/damagesource/DamageSources/f_268742_ net/minecraft/world/damagesource/DamageSources/starve +FD: net/minecraft/world/damagesource/DamageSources/f_286964_ net/minecraft/world/damagesource/DamageSources/genericKill +FD: net/minecraft/world/damagesource/DamageSources/f_287008_ net/minecraft/world/damagesource/DamageSources/outsideBorder +FD: net/minecraft/world/damagesource/DamageType/f_268472_ net/minecraft/world/damagesource/DamageType/deathMessageType +FD: net/minecraft/world/damagesource/DamageType/f_268501_ net/minecraft/world/damagesource/DamageType/scaling +FD: net/minecraft/world/damagesource/DamageType/f_268510_ net/minecraft/world/damagesource/DamageType/CODEC +FD: net/minecraft/world/damagesource/DamageType/f_268663_ net/minecraft/world/damagesource/DamageType/exhaustion +FD: net/minecraft/world/damagesource/DamageType/f_268677_ net/minecraft/world/damagesource/DamageType/msgId +FD: net/minecraft/world/damagesource/DamageType/f_268686_ net/minecraft/world/damagesource/DamageType/effects +FD: net/minecraft/world/damagesource/DamageTypes/f_268425_ net/minecraft/world/damagesource/DamageTypes/THROWN +FD: net/minecraft/world/damagesource/DamageTypes/f_268428_ net/minecraft/world/damagesource/DamageTypes/FIREWORKS +FD: net/minecraft/world/damagesource/DamageTypes/f_268433_ net/minecraft/world/damagesource/DamageTypes/GENERIC +FD: net/minecraft/world/damagesource/DamageTypes/f_268434_ net/minecraft/world/damagesource/DamageTypes/HOT_FLOOR +FD: net/minecraft/world/damagesource/DamageTypes/f_268440_ net/minecraft/world/damagesource/DamageTypes/THORNS +FD: net/minecraft/world/damagesource/DamageTypes/f_268441_ net/minecraft/world/damagesource/DamageTypes/STARVE +FD: net/minecraft/world/damagesource/DamageTypes/f_268444_ net/minecraft/world/damagesource/DamageTypes/FREEZE +FD: net/minecraft/world/damagesource/DamageTypes/f_268448_ net/minecraft/world/damagesource/DamageTypes/PLAYER_EXPLOSION +FD: net/minecraft/world/damagesource/DamageTypes/f_268450_ net/minecraft/world/damagesource/DamageTypes/LIGHTNING_BOLT +FD: net/minecraft/world/damagesource/DamageTypes/f_268464_ net/minecraft/world/damagesource/DamageTypes/PLAYER_ATTACK +FD: net/minecraft/world/damagesource/DamageTypes/f_268468_ net/minecraft/world/damagesource/DamageTypes/ON_FIRE +FD: net/minecraft/world/damagesource/DamageTypes/f_268469_ net/minecraft/world/damagesource/DamageTypes/SWEET_BERRY_BUSH +FD: net/minecraft/world/damagesource/DamageTypes/f_268482_ net/minecraft/world/damagesource/DamageTypes/DRAGON_BREATH +FD: net/minecraft/world/damagesource/DamageTypes/f_268493_ net/minecraft/world/damagesource/DamageTypes/WITHER +FD: net/minecraft/world/damagesource/DamageTypes/f_268511_ net/minecraft/world/damagesource/DamageTypes/MOB_ATTACK_NO_AGGRO +FD: net/minecraft/world/damagesource/DamageTypes/f_268513_ net/minecraft/world/damagesource/DamageTypes/FALLING_STALACTITE +FD: net/minecraft/world/damagesource/DamageTypes/f_268515_ net/minecraft/world/damagesource/DamageTypes/MAGIC +FD: net/minecraft/world/damagesource/DamageTypes/f_268526_ net/minecraft/world/damagesource/DamageTypes/FALLING_ANVIL +FD: net/minecraft/world/damagesource/DamageTypes/f_268530_ net/minecraft/world/damagesource/DamageTypes/INDIRECT_MAGIC +FD: net/minecraft/world/damagesource/DamageTypes/f_268534_ net/minecraft/world/damagesource/DamageTypes/MOB_PROJECTILE +FD: net/minecraft/world/damagesource/DamageTypes/f_268546_ net/minecraft/world/damagesource/DamageTypes/LAVA +FD: net/minecraft/world/damagesource/DamageTypes/f_268556_ net/minecraft/world/damagesource/DamageTypes/UNATTRIBUTED_FIREBALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268565_ net/minecraft/world/damagesource/DamageTypes/EXPLOSION +FD: net/minecraft/world/damagesource/DamageTypes/f_268566_ net/minecraft/world/damagesource/DamageTypes/MOB_ATTACK +FD: net/minecraft/world/damagesource/DamageTypes/f_268576_ net/minecraft/world/damagesource/DamageTypes/FLY_INTO_WALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268585_ net/minecraft/world/damagesource/DamageTypes/CACTUS +FD: net/minecraft/world/damagesource/DamageTypes/f_268612_ net/minecraft/world/damagesource/DamageTypes/IN_WALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268613_ net/minecraft/world/damagesource/DamageTypes/CRAMMING +FD: net/minecraft/world/damagesource/DamageTypes/f_268631_ net/minecraft/world/damagesource/DamageTypes/IN_FIRE +FD: net/minecraft/world/damagesource/DamageTypes/f_268641_ net/minecraft/world/damagesource/DamageTypes/WITHER_SKULL +FD: net/minecraft/world/damagesource/DamageTypes/f_268650_ net/minecraft/world/damagesource/DamageTypes/BAD_RESPAWN_POINT +FD: net/minecraft/world/damagesource/DamageTypes/f_268656_ net/minecraft/world/damagesource/DamageTypes/STING +FD: net/minecraft/world/damagesource/DamageTypes/f_268659_ net/minecraft/world/damagesource/DamageTypes/FALLING_BLOCK +FD: net/minecraft/world/damagesource/DamageTypes/f_268669_ net/minecraft/world/damagesource/DamageTypes/STALAGMITE +FD: net/minecraft/world/damagesource/DamageTypes/f_268671_ net/minecraft/world/damagesource/DamageTypes/FALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268679_ net/minecraft/world/damagesource/DamageTypes/SONIC_BOOM +FD: net/minecraft/world/damagesource/DamageTypes/f_268684_ net/minecraft/world/damagesource/DamageTypes/FIREBALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268714_ net/minecraft/world/damagesource/DamageTypes/TRIDENT +FD: net/minecraft/world/damagesource/DamageTypes/f_268722_ net/minecraft/world/damagesource/DamageTypes/DROWN +FD: net/minecraft/world/damagesource/DamageTypes/f_268724_ net/minecraft/world/damagesource/DamageTypes/FELL_OUT_OF_WORLD +FD: net/minecraft/world/damagesource/DamageTypes/f_268739_ net/minecraft/world/damagesource/DamageTypes/ARROW +FD: net/minecraft/world/damagesource/DamageTypes/f_268752_ net/minecraft/world/damagesource/DamageTypes/DRY_OUT +FD: net/minecraft/world/damagesource/DamageTypes/f_286973_ net/minecraft/world/damagesource/DamageTypes/OUTSIDE_BORDER +FD: net/minecraft/world/damagesource/DamageTypes/f_286979_ net/minecraft/world/damagesource/DamageTypes/GENERIC_KILL +FD: net/minecraft/world/damagesource/DeathMessageType/$VALUES net/minecraft/world/damagesource/DeathMessageType/$VALUES +FD: net/minecraft/world/damagesource/DeathMessageType/DEFAULT net/minecraft/world/damagesource/DeathMessageType/DEFAULT +FD: net/minecraft/world/damagesource/DeathMessageType/FALL_VARIANTS net/minecraft/world/damagesource/DeathMessageType/FALL_VARIANTS +FD: net/minecraft/world/damagesource/DeathMessageType/INTENTIONAL_GAME_DESIGN net/minecraft/world/damagesource/DeathMessageType/INTENTIONAL_GAME_DESIGN +FD: net/minecraft/world/damagesource/DeathMessageType/f_268483_ net/minecraft/world/damagesource/DeathMessageType/CODEC +FD: net/minecraft/world/damagesource/DeathMessageType/f_268617_ net/minecraft/world/damagesource/DeathMessageType/id +FD: net/minecraft/world/damagesource/FallLocation/f_289026_ net/minecraft/world/damagesource/FallLocation/id +FD: net/minecraft/world/damagesource/FallLocation/f_289027_ net/minecraft/world/damagesource/FallLocation/TWISTING_VINES +FD: net/minecraft/world/damagesource/FallLocation/f_289030_ net/minecraft/world/damagesource/FallLocation/SCAFFOLDING +FD: net/minecraft/world/damagesource/FallLocation/f_289031_ net/minecraft/world/damagesource/FallLocation/WEEPING_VINES +FD: net/minecraft/world/damagesource/FallLocation/f_289033_ net/minecraft/world/damagesource/FallLocation/OTHER_CLIMBABLE +FD: net/minecraft/world/damagesource/FallLocation/f_289035_ net/minecraft/world/damagesource/FallLocation/LADDER +FD: net/minecraft/world/damagesource/FallLocation/f_289039_ net/minecraft/world/damagesource/FallLocation/VINES +FD: net/minecraft/world/damagesource/FallLocation/f_289040_ net/minecraft/world/damagesource/FallLocation/GENERIC +FD: net/minecraft/world/damagesource/FallLocation/f_289046_ net/minecraft/world/damagesource/FallLocation/WATER +FD: net/minecraft/world/effect/AttackDamageMobEffect/f_19424_ net/minecraft/world/effect/AttackDamageMobEffect/multiplier +FD: net/minecraft/world/effect/MobEffect/f_19446_ net/minecraft/world/effect/MobEffect/attributeModifiers +FD: net/minecraft/world/effect/MobEffect/f_19447_ net/minecraft/world/effect/MobEffect/category +FD: net/minecraft/world/effect/MobEffect/f_19448_ net/minecraft/world/effect/MobEffect/color +FD: net/minecraft/world/effect/MobEffect/f_19449_ net/minecraft/world/effect/MobEffect/descriptionId +FD: net/minecraft/world/effect/MobEffect/f_216878_ net/minecraft/world/effect/MobEffect/factorDataFactory +FD: net/minecraft/world/effect/MobEffectCategory/$VALUES net/minecraft/world/effect/MobEffectCategory/$VALUES +FD: net/minecraft/world/effect/MobEffectCategory/BENEFICIAL net/minecraft/world/effect/MobEffectCategory/BENEFICIAL +FD: net/minecraft/world/effect/MobEffectCategory/HARMFUL net/minecraft/world/effect/MobEffectCategory/HARMFUL +FD: net/minecraft/world/effect/MobEffectCategory/NEUTRAL net/minecraft/world/effect/MobEffectCategory/NEUTRAL +FD: net/minecraft/world/effect/MobEffectCategory/f_19490_ net/minecraft/world/effect/MobEffectCategory/tooltipFormatting +FD: net/minecraft/world/effect/MobEffectInstance/f_19501_ net/minecraft/world/effect/MobEffectInstance/LOGGER +FD: net/minecraft/world/effect/MobEffectInstance/f_19502_ net/minecraft/world/effect/MobEffectInstance/effect +FD: net/minecraft/world/effect/MobEffectInstance/f_19503_ net/minecraft/world/effect/MobEffectInstance/duration +FD: net/minecraft/world/effect/MobEffectInstance/f_19504_ net/minecraft/world/effect/MobEffectInstance/amplifier +FD: net/minecraft/world/effect/MobEffectInstance/f_19506_ net/minecraft/world/effect/MobEffectInstance/ambient +FD: net/minecraft/world/effect/MobEffectInstance/f_19508_ net/minecraft/world/effect/MobEffectInstance/visible +FD: net/minecraft/world/effect/MobEffectInstance/f_19509_ net/minecraft/world/effect/MobEffectInstance/showIcon +FD: net/minecraft/world/effect/MobEffectInstance/f_19510_ net/minecraft/world/effect/MobEffectInstance/hiddenEffect +FD: net/minecraft/world/effect/MobEffectInstance/f_216885_ net/minecraft/world/effect/MobEffectInstance/factorData +FD: net/minecraft/world/effect/MobEffectInstance/f_267388_ net/minecraft/world/effect/MobEffectInstance/INFINITE_DURATION +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216907_ net/minecraft/world/effect/MobEffectInstance$FactorData/CODEC +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216908_ net/minecraft/world/effect/MobEffectInstance$FactorData/paddingDuration +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216909_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorStart +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216910_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorTarget +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216911_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorCurrent +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216913_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorPreviousFrame +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216914_ net/minecraft/world/effect/MobEffectInstance$FactorData/hadEffectLastTick +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_267473_ net/minecraft/world/effect/MobEffectInstance$FactorData/ticksActive +FD: net/minecraft/world/effect/MobEffects/f_19590_ net/minecraft/world/effect/MobEffects/UNLUCK +FD: net/minecraft/world/effect/MobEffects/f_19591_ net/minecraft/world/effect/MobEffects/SLOW_FALLING +FD: net/minecraft/world/effect/MobEffects/f_19592_ net/minecraft/world/effect/MobEffects/CONDUIT_POWER +FD: net/minecraft/world/effect/MobEffects/f_19593_ net/minecraft/world/effect/MobEffects/DOLPHINS_GRACE +FD: net/minecraft/world/effect/MobEffects/f_19594_ net/minecraft/world/effect/MobEffects/BAD_OMEN +FD: net/minecraft/world/effect/MobEffects/f_19595_ net/minecraft/world/effect/MobEffects/HERO_OF_THE_VILLAGE +FD: net/minecraft/world/effect/MobEffects/f_19596_ net/minecraft/world/effect/MobEffects/MOVEMENT_SPEED +FD: net/minecraft/world/effect/MobEffects/f_19597_ net/minecraft/world/effect/MobEffects/MOVEMENT_SLOWDOWN +FD: net/minecraft/world/effect/MobEffects/f_19598_ net/minecraft/world/effect/MobEffects/DIG_SPEED +FD: net/minecraft/world/effect/MobEffects/f_19599_ net/minecraft/world/effect/MobEffects/DIG_SLOWDOWN +FD: net/minecraft/world/effect/MobEffects/f_19600_ net/minecraft/world/effect/MobEffects/DAMAGE_BOOST +FD: net/minecraft/world/effect/MobEffects/f_19601_ net/minecraft/world/effect/MobEffects/HEAL +FD: net/minecraft/world/effect/MobEffects/f_19602_ net/minecraft/world/effect/MobEffects/HARM +FD: net/minecraft/world/effect/MobEffects/f_19603_ net/minecraft/world/effect/MobEffects/JUMP +FD: net/minecraft/world/effect/MobEffects/f_19604_ net/minecraft/world/effect/MobEffects/CONFUSION +FD: net/minecraft/world/effect/MobEffects/f_19605_ net/minecraft/world/effect/MobEffects/REGENERATION +FD: net/minecraft/world/effect/MobEffects/f_19606_ net/minecraft/world/effect/MobEffects/DAMAGE_RESISTANCE +FD: net/minecraft/world/effect/MobEffects/f_19607_ net/minecraft/world/effect/MobEffects/FIRE_RESISTANCE +FD: net/minecraft/world/effect/MobEffects/f_19608_ net/minecraft/world/effect/MobEffects/WATER_BREATHING +FD: net/minecraft/world/effect/MobEffects/f_19609_ net/minecraft/world/effect/MobEffects/INVISIBILITY +FD: net/minecraft/world/effect/MobEffects/f_19610_ net/minecraft/world/effect/MobEffects/BLINDNESS +FD: net/minecraft/world/effect/MobEffects/f_19611_ net/minecraft/world/effect/MobEffects/NIGHT_VISION +FD: net/minecraft/world/effect/MobEffects/f_19612_ net/minecraft/world/effect/MobEffects/HUNGER +FD: net/minecraft/world/effect/MobEffects/f_19613_ net/minecraft/world/effect/MobEffects/WEAKNESS +FD: net/minecraft/world/effect/MobEffects/f_19614_ net/minecraft/world/effect/MobEffects/POISON +FD: net/minecraft/world/effect/MobEffects/f_19615_ net/minecraft/world/effect/MobEffects/WITHER +FD: net/minecraft/world/effect/MobEffects/f_19616_ net/minecraft/world/effect/MobEffects/HEALTH_BOOST +FD: net/minecraft/world/effect/MobEffects/f_19617_ net/minecraft/world/effect/MobEffects/ABSORPTION +FD: net/minecraft/world/effect/MobEffects/f_19618_ net/minecraft/world/effect/MobEffects/SATURATION +FD: net/minecraft/world/effect/MobEffects/f_19619_ net/minecraft/world/effect/MobEffects/GLOWING +FD: net/minecraft/world/effect/MobEffects/f_19620_ net/minecraft/world/effect/MobEffects/LEVITATION +FD: net/minecraft/world/effect/MobEffects/f_19621_ net/minecraft/world/effect/MobEffects/LUCK +FD: net/minecraft/world/effect/MobEffects/f_216964_ net/minecraft/world/effect/MobEffects/DARKNESS +FD: net/minecraft/world/effect/MobEffects/f_216965_ net/minecraft/world/effect/MobEffects/DARKNESS_EFFECT_FACTOR_PADDING_DURATION_TICKS +FD: net/minecraft/world/entity/AgeableMob/f_146730_ net/minecraft/world/entity/AgeableMob/BABY_START_AGE +FD: net/minecraft/world/entity/AgeableMob/f_146731_ net/minecraft/world/entity/AgeableMob/DATA_BABY_ID +FD: net/minecraft/world/entity/AgeableMob/f_146732_ net/minecraft/world/entity/AgeableMob/FORCED_AGE_PARTICLE_TICKS +FD: net/minecraft/world/entity/AgeableMob/f_146733_ net/minecraft/world/entity/AgeableMob/age +FD: net/minecraft/world/entity/AgeableMob/f_146734_ net/minecraft/world/entity/AgeableMob/forcedAge +FD: net/minecraft/world/entity/AgeableMob/f_146735_ net/minecraft/world/entity/AgeableMob/forcedAgeTimer +FD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/f_146767_ net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/groupSize +FD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/f_146768_ net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/shouldSpawnBaby +FD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/f_146769_ net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/babySpawnChance +FD: net/minecraft/world/entity/AnimationState/f_216969_ net/minecraft/world/entity/AnimationState/STOPPED +FD: net/minecraft/world/entity/AnimationState/f_216970_ net/minecraft/world/entity/AnimationState/lastTime +FD: net/minecraft/world/entity/AnimationState/f_216971_ net/minecraft/world/entity/AnimationState/accumulatedTime +FD: net/minecraft/world/entity/AreaEffectCloud/f_146781_ net/minecraft/world/entity/AreaEffectCloud/MAX_RADIUS +FD: net/minecraft/world/entity/AreaEffectCloud/f_146782_ net/minecraft/world/entity/AreaEffectCloud/TIME_BETWEEN_APPLICATIONS +FD: net/minecraft/world/entity/AreaEffectCloud/f_19685_ net/minecraft/world/entity/AreaEffectCloud/effects +FD: net/minecraft/world/entity/AreaEffectCloud/f_19686_ net/minecraft/world/entity/AreaEffectCloud/victims +FD: net/minecraft/world/entity/AreaEffectCloud/f_19687_ net/minecraft/world/entity/AreaEffectCloud/duration +FD: net/minecraft/world/entity/AreaEffectCloud/f_19688_ net/minecraft/world/entity/AreaEffectCloud/waitTime +FD: net/minecraft/world/entity/AreaEffectCloud/f_19689_ net/minecraft/world/entity/AreaEffectCloud/reapplicationDelay +FD: net/minecraft/world/entity/AreaEffectCloud/f_19690_ net/minecraft/world/entity/AreaEffectCloud/fixedColor +FD: net/minecraft/world/entity/AreaEffectCloud/f_19691_ net/minecraft/world/entity/AreaEffectCloud/durationOnUse +FD: net/minecraft/world/entity/AreaEffectCloud/f_19692_ net/minecraft/world/entity/AreaEffectCloud/radiusOnUse +FD: net/minecraft/world/entity/AreaEffectCloud/f_19693_ net/minecraft/world/entity/AreaEffectCloud/radiusPerTick +FD: net/minecraft/world/entity/AreaEffectCloud/f_19694_ net/minecraft/world/entity/AreaEffectCloud/owner +FD: net/minecraft/world/entity/AreaEffectCloud/f_19695_ net/minecraft/world/entity/AreaEffectCloud/ownerUUID +FD: net/minecraft/world/entity/AreaEffectCloud/f_19696_ net/minecraft/world/entity/AreaEffectCloud/LOGGER +FD: net/minecraft/world/entity/AreaEffectCloud/f_19697_ net/minecraft/world/entity/AreaEffectCloud/DATA_RADIUS +FD: net/minecraft/world/entity/AreaEffectCloud/f_19698_ net/minecraft/world/entity/AreaEffectCloud/DATA_COLOR +FD: net/minecraft/world/entity/AreaEffectCloud/f_19699_ net/minecraft/world/entity/AreaEffectCloud/DATA_WAITING +FD: net/minecraft/world/entity/AreaEffectCloud/f_19700_ net/minecraft/world/entity/AreaEffectCloud/DATA_PARTICLE +FD: net/minecraft/world/entity/AreaEffectCloud/f_19701_ net/minecraft/world/entity/AreaEffectCloud/potion +FD: net/minecraft/world/entity/AreaEffectCloud/f_252417_ net/minecraft/world/entity/AreaEffectCloud/MINIMAL_RADIUS +FD: net/minecraft/world/entity/AreaEffectCloud/f_252504_ net/minecraft/world/entity/AreaEffectCloud/HEIGHT +FD: net/minecraft/world/entity/AreaEffectCloud/f_252512_ net/minecraft/world/entity/AreaEffectCloud/DEFAULT_WIDTH +FD: net/minecraft/world/entity/AreaEffectCloud/f_252519_ net/minecraft/world/entity/AreaEffectCloud/DEFAULT_RADIUS +FD: net/minecraft/world/entity/Display/f_268421_ net/minecraft/world/entity/Display/DATA_VIEW_RANGE_ID +FD: net/minecraft/world/entity/Display/f_268449_ net/minecraft/world/entity/Display/DATA_INTERPOLATION_DURATION_ID +FD: net/minecraft/world/entity/Display/f_268460_ net/minecraft/world/entity/Display/INITIAL_SHADOW_STRENGTH +FD: net/minecraft/world/entity/Display/f_268480_ net/minecraft/world/entity/Display/INITIAL_SHADOW_RADIUS +FD: net/minecraft/world/entity/Display/f_268489_ net/minecraft/world/entity/Display/DATA_SCALE_ID +FD: net/minecraft/world/entity/Display/f_268506_ net/minecraft/world/entity/Display/TAG_BRIGHTNESS +FD: net/minecraft/world/entity/Display/f_268507_ net/minecraft/world/entity/Display/TAG_SHADOW_STRENGTH +FD: net/minecraft/world/entity/Display/f_268514_ net/minecraft/world/entity/Display/TAG_BILLBOARD +FD: net/minecraft/world/entity/Display/f_268520_ net/minecraft/world/entity/Display/TAG_SHADOW_RADIUS +FD: net/minecraft/world/entity/Display/f_268527_ net/minecraft/world/entity/Display/DATA_SHADOW_RADIUS_ID +FD: net/minecraft/world/entity/Display/f_268528_ net/minecraft/world/entity/Display/TAG_INTERPOLATION_DURATION +FD: net/minecraft/world/entity/Display/f_268532_ net/minecraft/world/entity/Display/DATA_WIDTH_ID +FD: net/minecraft/world/entity/Display/f_268537_ net/minecraft/world/entity/Display/TAG_GLOW_COLOR_OVERRIDE +FD: net/minecraft/world/entity/Display/f_268593_ net/minecraft/world/entity/Display/DATA_BILLBOARD_RENDER_CONSTRAINTS_ID +FD: net/minecraft/world/entity/Display/f_268598_ net/minecraft/world/entity/Display/DATA_TRANSLATION_ID +FD: net/minecraft/world/entity/Display/f_268599_ net/minecraft/world/entity/Display/DATA_BRIGHTNESS_OVERRIDE_ID +FD: net/minecraft/world/entity/Display/f_268633_ net/minecraft/world/entity/Display/TAG_HEIGHT +FD: net/minecraft/world/entity/Display/f_268638_ net/minecraft/world/entity/Display/NO_BRIGHTNESS_OVERRIDE +FD: net/minecraft/world/entity/Display/f_268639_ net/minecraft/world/entity/Display/DATA_HEIGHT_ID +FD: net/minecraft/world/entity/Display/f_268644_ net/minecraft/world/entity/Display/LOGGER +FD: net/minecraft/world/entity/Display/f_268647_ net/minecraft/world/entity/Display/TAG_VIEW_RANGE +FD: net/minecraft/world/entity/Display/f_268687_ net/minecraft/world/entity/Display/DATA_GLOW_COLOR_OVERRIDE_ID +FD: net/minecraft/world/entity/Display/f_268693_ net/minecraft/world/entity/Display/DATA_LEFT_ROTATION_ID +FD: net/minecraft/world/entity/Display/f_268702_ net/minecraft/world/entity/Display/cullingBoundingBox +FD: net/minecraft/world/entity/Display/f_268708_ net/minecraft/world/entity/Display/DATA_SHADOW_STRENGTH_ID +FD: net/minecraft/world/entity/Display/f_268713_ net/minecraft/world/entity/Display/DATA_RIGHT_ROTATION_ID +FD: net/minecraft/world/entity/Display/f_268715_ net/minecraft/world/entity/Display/TAG_TRANSFORMATION +FD: net/minecraft/world/entity/Display/f_268716_ net/minecraft/world/entity/Display/NO_GLOW_COLOR_OVERRIDE +FD: net/minecraft/world/entity/Display/f_268732_ net/minecraft/world/entity/Display/orientation +FD: net/minecraft/world/entity/Display/f_268743_ net/minecraft/world/entity/Display/TAG_WIDTH +FD: net/minecraft/world/entity/Display/f_271381_ net/minecraft/world/entity/Display/interpolationStartClientTick +FD: net/minecraft/world/entity/Display/f_276153_ net/minecraft/world/entity/Display/lastProgress +FD: net/minecraft/world/entity/Display/f_276326_ net/minecraft/world/entity/Display/TAG_START_INTERPOLATION +FD: net/minecraft/world/entity/Display/f_276329_ net/minecraft/world/entity/Display/DATA_INTERPOLATION_START_DELTA_TICKS_ID +FD: net/minecraft/world/entity/Display/f_276444_ net/minecraft/world/entity/Display/updateStartTick +FD: net/minecraft/world/entity/Display/f_276470_ net/minecraft/world/entity/Display/updateRenderState +FD: net/minecraft/world/entity/Display/f_276570_ net/minecraft/world/entity/Display/updateInterpolationDuration +FD: net/minecraft/world/entity/Display/f_276582_ net/minecraft/world/entity/Display/RENDER_STATE_IDS +FD: net/minecraft/world/entity/Display/f_276631_ net/minecraft/world/entity/Display/interpolationDuration +FD: net/minecraft/world/entity/Display/f_276646_ net/minecraft/world/entity/Display/renderState +FD: net/minecraft/world/entity/Display$1/f_276636_ net/minecraft/world/entity/Display$1/$SwitchMap$net$minecraft$world$entity$Display$TextDisplay$Align +FD: net/minecraft/world/entity/Display$BillboardConstraints/$VALUES net/minecraft/world/entity/Display$BillboardConstraints/$VALUES +FD: net/minecraft/world/entity/Display$BillboardConstraints/CENTER net/minecraft/world/entity/Display$BillboardConstraints/CENTER +FD: net/minecraft/world/entity/Display$BillboardConstraints/FIXED net/minecraft/world/entity/Display$BillboardConstraints/FIXED +FD: net/minecraft/world/entity/Display$BillboardConstraints/HORIZONTAL net/minecraft/world/entity/Display$BillboardConstraints/HORIZONTAL +FD: net/minecraft/world/entity/Display$BillboardConstraints/VERTICAL net/minecraft/world/entity/Display$BillboardConstraints/VERTICAL +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268470_ net/minecraft/world/entity/Display$BillboardConstraints/id +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268505_ net/minecraft/world/entity/Display$BillboardConstraints/CODEC +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268544_ net/minecraft/world/entity/Display$BillboardConstraints/BY_ID +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268642_ net/minecraft/world/entity/Display$BillboardConstraints/name +FD: net/minecraft/world/entity/Display$BlockDisplay/f_268543_ net/minecraft/world/entity/Display$BlockDisplay/DATA_BLOCK_STATE_ID +FD: net/minecraft/world/entity/Display$BlockDisplay/f_268661_ net/minecraft/world/entity/Display$BlockDisplay/TAG_BLOCK_STATE +FD: net/minecraft/world/entity/Display$BlockDisplay/f_276560_ net/minecraft/world/entity/Display$BlockDisplay/blockRenderState +FD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/f_276526_ net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/blockState +FD: net/minecraft/world/entity/Display$ColorInterpolator/f_276509_ net/minecraft/world/entity/Display$ColorInterpolator/current +FD: net/minecraft/world/entity/Display$ColorInterpolator/f_276650_ net/minecraft/world/entity/Display$ColorInterpolator/previous +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268451_ net/minecraft/world/entity/Display$ItemDisplay/slot +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268455_ net/minecraft/world/entity/Display$ItemDisplay/DATA_ITEM_STACK_ID +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268471_ net/minecraft/world/entity/Display$ItemDisplay/TAG_ITEM_DISPLAY +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268554_ net/minecraft/world/entity/Display$ItemDisplay/TAG_ITEM +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268601_ net/minecraft/world/entity/Display$ItemDisplay/DATA_ITEM_DISPLAY_ID +FD: net/minecraft/world/entity/Display$ItemDisplay/f_276545_ net/minecraft/world/entity/Display$ItemDisplay/itemRenderState +FD: net/minecraft/world/entity/Display$ItemDisplay$1/f_268621_ net/minecraft/world/entity/Display$ItemDisplay$1/this$0 +FD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276600_ net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemStack +FD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276629_ net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemTransform +FD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276496_ net/minecraft/world/entity/Display$LinearFloatInterpolator/previous +FD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276689_ net/minecraft/world/entity/Display$LinearFloatInterpolator/current +FD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276492_ net/minecraft/world/entity/Display$LinearIntInterpolator/current +FD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276498_ net/minecraft/world/entity/Display$LinearIntInterpolator/previous +FD: net/minecraft/world/entity/Display$RenderState/f_276438_ net/minecraft/world/entity/Display$RenderState/brightnessOverride +FD: net/minecraft/world/entity/Display$RenderState/f_276486_ net/minecraft/world/entity/Display$RenderState/glowColorOverride +FD: net/minecraft/world/entity/Display$RenderState/f_276506_ net/minecraft/world/entity/Display$RenderState/billboardConstraints +FD: net/minecraft/world/entity/Display$RenderState/f_276585_ net/minecraft/world/entity/Display$RenderState/transformation +FD: net/minecraft/world/entity/Display$RenderState/f_276607_ net/minecraft/world/entity/Display$RenderState/shadowRadius +FD: net/minecraft/world/entity/Display$RenderState/f_276693_ net/minecraft/world/entity/Display$RenderState/shadowStrength +FD: net/minecraft/world/entity/Display$TextDisplay/f_268445_ net/minecraft/world/entity/Display$TextDisplay/FLAG_SHADOW +FD: net/minecraft/world/entity/Display$TextDisplay/f_268465_ net/minecraft/world/entity/Display$TextDisplay/FLAG_USE_DEFAULT_BACKGROUND +FD: net/minecraft/world/entity/Display$TextDisplay/f_268476_ net/minecraft/world/entity/Display$TextDisplay/DATA_LINE_WIDTH_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268481_ net/minecraft/world/entity/Display$TextDisplay/DATA_TEXT_OPACITY_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268486_ net/minecraft/world/entity/Display$TextDisplay/TAG_ALIGNMENT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268494_ net/minecraft/world/entity/Display$TextDisplay/DATA_BACKGROUND_COLOR_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268529_ net/minecraft/world/entity/Display$TextDisplay/TAG_LINE_WIDTH +FD: net/minecraft/world/entity/Display$TextDisplay/f_268541_ net/minecraft/world/entity/Display$TextDisplay/INITIAL_TEXT_OPACITY +FD: net/minecraft/world/entity/Display$TextDisplay/f_268542_ net/minecraft/world/entity/Display$TextDisplay/DATA_TEXT_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268545_ net/minecraft/world/entity/Display$TextDisplay/FLAG_ALIGN_RIGHT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268552_ net/minecraft/world/entity/Display$TextDisplay/TAG_TEXT_OPACITY +FD: net/minecraft/world/entity/Display$TextDisplay/f_268562_ net/minecraft/world/entity/Display$TextDisplay/FLAG_ALIGN_LEFT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268588_ net/minecraft/world/entity/Display$TextDisplay/TAG_TEXT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268596_ net/minecraft/world/entity/Display$TextDisplay/TAG_BACKGROUND_COLOR +FD: net/minecraft/world/entity/Display$TextDisplay/f_268636_ net/minecraft/world/entity/Display$TextDisplay/DATA_STYLE_FLAGS_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268662_ net/minecraft/world/entity/Display$TextDisplay/TAG_SHADOW +FD: net/minecraft/world/entity/Display$TextDisplay/f_268692_ net/minecraft/world/entity/Display$TextDisplay/TAG_SEE_THROUGH +FD: net/minecraft/world/entity/Display$TextDisplay/f_268694_ net/minecraft/world/entity/Display$TextDisplay/TAG_USE_DEFAULT_BACKGROUND +FD: net/minecraft/world/entity/Display$TextDisplay/f_268719_ net/minecraft/world/entity/Display$TextDisplay/clientDisplayCache +FD: net/minecraft/world/entity/Display$TextDisplay/f_268740_ net/minecraft/world/entity/Display$TextDisplay/FLAG_SEE_THROUGH +FD: net/minecraft/world/entity/Display$TextDisplay/f_268744_ net/minecraft/world/entity/Display$TextDisplay/INITIAL_BACKGROUND +FD: net/minecraft/world/entity/Display$TextDisplay/f_276462_ net/minecraft/world/entity/Display$TextDisplay/TEXT_RENDER_STATE_IDS +FD: net/minecraft/world/entity/Display$TextDisplay/f_276542_ net/minecraft/world/entity/Display$TextDisplay/textRenderState +FD: net/minecraft/world/entity/Display$TextDisplay$Align/$VALUES net/minecraft/world/entity/Display$TextDisplay$Align/$VALUES +FD: net/minecraft/world/entity/Display$TextDisplay$Align/CENTER net/minecraft/world/entity/Display$TextDisplay$Align/CENTER +FD: net/minecraft/world/entity/Display$TextDisplay$Align/LEFT net/minecraft/world/entity/Display$TextDisplay$Align/LEFT +FD: net/minecraft/world/entity/Display$TextDisplay$Align/RIGHT net/minecraft/world/entity/Display$TextDisplay$Align/RIGHT +FD: net/minecraft/world/entity/Display$TextDisplay$Align/f_268461_ net/minecraft/world/entity/Display$TextDisplay$Align/CODEC +FD: net/minecraft/world/entity/Display$TextDisplay$Align/f_268523_ net/minecraft/world/entity/Display$TextDisplay$Align/name +FD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268557_ net/minecraft/world/entity/Display$TextDisplay$CachedInfo/width +FD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268675_ net/minecraft/world/entity/Display$TextDisplay$CachedInfo/lines +FD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268443_ net/minecraft/world/entity/Display$TextDisplay$CachedLine/width +FD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268516_ net/minecraft/world/entity/Display$TextDisplay$CachedLine/contents +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276477_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/text +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276556_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/flags +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276562_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/backgroundColor +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276579_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/textOpacity +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276622_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/lineWidth +FD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276610_ net/minecraft/world/entity/Display$TransformationInterpolator/current +FD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276675_ net/minecraft/world/entity/Display$TransformationInterpolator/previous +FD: net/minecraft/world/entity/Entity/f_146792_ net/minecraft/world/entity/Entity/DEFAULT_BB_WIDTH +FD: net/minecraft/world/entity/Entity/f_146793_ net/minecraft/world/entity/Entity/DEFAULT_BB_HEIGHT +FD: net/minecraft/world/entity/Entity/f_146794_ net/minecraft/world/entity/Entity/flyDist +FD: net/minecraft/world/entity/Entity/f_146795_ net/minecraft/world/entity/Entity/removalReason +FD: net/minecraft/world/entity/Entity/f_146796_ net/minecraft/world/entity/Entity/FLAG_SHIFT_KEY_DOWN +FD: net/minecraft/world/entity/Entity/f_146797_ net/minecraft/world/entity/Entity/FLAG_SPRINTING +FD: net/minecraft/world/entity/Entity/f_146798_ net/minecraft/world/entity/Entity/FLAG_SWIMMING +FD: net/minecraft/world/entity/Entity/f_146799_ net/minecraft/world/entity/Entity/FLAG_INVISIBLE +FD: net/minecraft/world/entity/Entity/f_146800_ net/minecraft/world/entity/Entity/DATA_TICKS_FROZEN +FD: net/minecraft/world/entity/Entity/f_146801_ net/minecraft/world/entity/Entity/levelCallback +FD: net/minecraft/world/entity/Entity/f_146802_ net/minecraft/world/entity/Entity/hasGlowingTag +FD: net/minecraft/world/entity/Entity/f_146803_ net/minecraft/world/entity/Entity/crystalSoundIntensity +FD: net/minecraft/world/entity/Entity/f_146804_ net/minecraft/world/entity/Entity/lastCrystalSoundPlayTick +FD: net/minecraft/world/entity/Entity/f_146805_ net/minecraft/world/entity/Entity/FLAG_ONFIRE +FD: net/minecraft/world/entity/Entity/f_146806_ net/minecraft/world/entity/Entity/FLAG_GLOWING +FD: net/minecraft/world/entity/Entity/f_146807_ net/minecraft/world/entity/Entity/FLAG_FALL_FLYING +FD: net/minecraft/world/entity/Entity/f_146808_ net/minecraft/world/entity/Entity/isInPowderSnow +FD: net/minecraft/world/entity/Entity/f_146809_ net/minecraft/world/entity/Entity/wasInPowderSnow +FD: net/minecraft/world/entity/Entity/f_146810_ net/minecraft/world/entity/Entity/wasOnFire +FD: net/minecraft/world/entity/Entity/f_146811_ net/minecraft/world/entity/Entity/LAVA_FAST_FLOW_SCALE +FD: net/minecraft/world/entity/Entity/f_146812_ net/minecraft/world/entity/Entity/LAVA_SLOW_FLOW_SCALE +FD: net/minecraft/world/entity/Entity/f_146813_ net/minecraft/world/entity/Entity/hasVisualFire +FD: net/minecraft/world/entity/Entity/f_146814_ net/minecraft/world/entity/Entity/WATER_FLOW_SCALE +FD: net/minecraft/world/entity/Entity/f_146815_ net/minecraft/world/entity/Entity/ID_TAG +FD: net/minecraft/world/entity/Entity/f_146816_ net/minecraft/world/entity/Entity/PASSENGERS_TAG +FD: net/minecraft/world/entity/Entity/f_146817_ net/minecraft/world/entity/Entity/BOARDING_COOLDOWN +FD: net/minecraft/world/entity/Entity/f_146818_ net/minecraft/world/entity/Entity/TOTAL_AIR_SUPPLY +FD: net/minecraft/world/entity/Entity/f_146819_ net/minecraft/world/entity/Entity/MAX_ENTITY_TAG_COUNT +FD: net/minecraft/world/entity/Entity/f_146821_ net/minecraft/world/entity/Entity/BREATHING_DISTANCE_BELOW_EYES +FD: net/minecraft/world/entity/Entity/f_146822_ net/minecraft/world/entity/Entity/BASE_TICKS_REQUIRED_TO_FREEZE +FD: net/minecraft/world/entity/Entity/f_146823_ net/minecraft/world/entity/Entity/FREEZE_HURT_FREQUENCY +FD: net/minecraft/world/entity/Entity/f_146824_ net/minecraft/world/entity/Entity/UUID_TAG +FD: net/minecraft/world/entity/Entity/f_185931_ net/minecraft/world/entity/Entity/minorHorizontalCollision +FD: net/minecraft/world/entity/Entity/f_185933_ net/minecraft/world/entity/Entity/chunkPosition +FD: net/minecraft/world/entity/Entity/f_185934_ net/minecraft/world/entity/Entity/feetBlockState +FD: net/minecraft/world/entity/Entity/f_19787_ net/minecraft/world/entity/Entity/walkDist +FD: net/minecraft/world/entity/Entity/f_19788_ net/minecraft/world/entity/Entity/moveDist +FD: net/minecraft/world/entity/Entity/f_19789_ net/minecraft/world/entity/Entity/fallDistance +FD: net/minecraft/world/entity/Entity/f_19790_ net/minecraft/world/entity/Entity/xOld +FD: net/minecraft/world/entity/Entity/f_19791_ net/minecraft/world/entity/Entity/yOld +FD: net/minecraft/world/entity/Entity/f_19792_ net/minecraft/world/entity/Entity/zOld +FD: net/minecraft/world/entity/Entity/f_19793_ net/minecraft/world/entity/Entity/maxUpStep +FD: net/minecraft/world/entity/Entity/f_19794_ net/minecraft/world/entity/Entity/noPhysics +FD: net/minecraft/world/entity/Entity/f_19796_ net/minecraft/world/entity/Entity/random +FD: net/minecraft/world/entity/Entity/f_19797_ net/minecraft/world/entity/Entity/tickCount +FD: net/minecraft/world/entity/Entity/f_19798_ net/minecraft/world/entity/Entity/wasTouchingWater +FD: net/minecraft/world/entity/Entity/f_19799_ net/minecraft/world/entity/Entity/fluidHeight +FD: net/minecraft/world/entity/Entity/f_19800_ net/minecraft/world/entity/Entity/wasEyeInWater +FD: net/minecraft/world/entity/Entity/f_19801_ net/minecraft/world/entity/Entity/fluidOnEyes +FD: net/minecraft/world/entity/Entity/f_19802_ net/minecraft/world/entity/Entity/invulnerableTime +FD: net/minecraft/world/entity/Entity/f_19803_ net/minecraft/world/entity/Entity/firstTick +FD: net/minecraft/world/entity/Entity/f_19804_ net/minecraft/world/entity/Entity/entityData +FD: net/minecraft/world/entity/Entity/f_19805_ net/minecraft/world/entity/Entity/DATA_SHARED_FLAGS_ID +FD: net/minecraft/world/entity/Entity/f_19806_ net/minecraft/world/entity/Entity/DATA_POSE +FD: net/minecraft/world/entity/Entity/f_19811_ net/minecraft/world/entity/Entity/noCulling +FD: net/minecraft/world/entity/Entity/f_19812_ net/minecraft/world/entity/Entity/hasImpulse +FD: net/minecraft/world/entity/Entity/f_19813_ net/minecraft/world/entity/Entity/pistonDeltas +FD: net/minecraft/world/entity/Entity/f_19814_ net/minecraft/world/entity/Entity/pistonDeltasGameTime +FD: net/minecraft/world/entity/Entity/f_19815_ net/minecraft/world/entity/Entity/dimensions +FD: net/minecraft/world/entity/Entity/f_19816_ net/minecraft/world/entity/Entity/eyeHeight +FD: net/minecraft/world/entity/Entity/f_19817_ net/minecraft/world/entity/Entity/isInsidePortal +FD: net/minecraft/world/entity/Entity/f_19818_ net/minecraft/world/entity/Entity/portalTime +FD: net/minecraft/world/entity/Entity/f_19819_ net/minecraft/world/entity/Entity/portalEntrancePos +FD: net/minecraft/world/entity/Entity/f_19820_ net/minecraft/world/entity/Entity/uuid +FD: net/minecraft/world/entity/Entity/f_19821_ net/minecraft/world/entity/Entity/stringUUID +FD: net/minecraft/world/entity/Entity/f_19823_ net/minecraft/world/entity/Entity/passengers +FD: net/minecraft/world/entity/Entity/f_19824_ net/minecraft/world/entity/Entity/vehicle +FD: net/minecraft/world/entity/Entity/f_19825_ net/minecraft/world/entity/Entity/position +FD: net/minecraft/world/entity/Entity/f_19826_ net/minecraft/world/entity/Entity/blockPosition +FD: net/minecraft/world/entity/Entity/f_19827_ net/minecraft/world/entity/Entity/deltaMovement +FD: net/minecraft/world/entity/Entity/f_19828_ net/minecraft/world/entity/Entity/bb +FD: net/minecraft/world/entity/Entity/f_19829_ net/minecraft/world/entity/Entity/nextStep +FD: net/minecraft/world/entity/Entity/f_19831_ net/minecraft/world/entity/Entity/remainingFireTicks +FD: net/minecraft/world/entity/Entity/f_19832_ net/minecraft/world/entity/Entity/DATA_AIR_SUPPLY_ID +FD: net/minecraft/world/entity/Entity/f_19833_ net/minecraft/world/entity/Entity/DATA_CUSTOM_NAME +FD: net/minecraft/world/entity/Entity/f_19834_ net/minecraft/world/entity/Entity/DATA_CUSTOM_NAME_VISIBLE +FD: net/minecraft/world/entity/Entity/f_19835_ net/minecraft/world/entity/Entity/DATA_SILENT +FD: net/minecraft/world/entity/Entity/f_19836_ net/minecraft/world/entity/Entity/DATA_NO_GRAVITY +FD: net/minecraft/world/entity/Entity/f_19839_ net/minecraft/world/entity/Entity/portalCooldown +FD: net/minecraft/world/entity/Entity/f_19840_ net/minecraft/world/entity/Entity/invulnerable +FD: net/minecraft/world/entity/Entity/f_19841_ net/minecraft/world/entity/Entity/tags +FD: net/minecraft/world/entity/Entity/f_19843_ net/minecraft/world/entity/Entity/ENTITY_COUNTER +FD: net/minecraft/world/entity/Entity/f_19844_ net/minecraft/world/entity/Entity/EMPTY_LIST +FD: net/minecraft/world/entity/Entity/f_19845_ net/minecraft/world/entity/Entity/INITIAL_AABB +FD: net/minecraft/world/entity/Entity/f_19846_ net/minecraft/world/entity/Entity/viewScale +FD: net/minecraft/world/entity/Entity/f_19847_ net/minecraft/world/entity/Entity/type +FD: net/minecraft/world/entity/Entity/f_19848_ net/minecraft/world/entity/Entity/id +FD: net/minecraft/world/entity/Entity/f_19849_ net/minecraft/world/entity/Entity/LOGGER +FD: net/minecraft/world/entity/Entity/f_19850_ net/minecraft/world/entity/Entity/blocksBuilding +FD: net/minecraft/world/entity/Entity/f_19851_ net/minecraft/world/entity/Entity/boardingCooldown +FD: net/minecraft/world/entity/Entity/f_19853_ net/minecraft/world/entity/Entity/level +FD: net/minecraft/world/entity/Entity/f_19854_ net/minecraft/world/entity/Entity/xo +FD: net/minecraft/world/entity/Entity/f_19855_ net/minecraft/world/entity/Entity/yo +FD: net/minecraft/world/entity/Entity/f_19856_ net/minecraft/world/entity/Entity/zo +FD: net/minecraft/world/entity/Entity/f_19857_ net/minecraft/world/entity/Entity/yRot +FD: net/minecraft/world/entity/Entity/f_19858_ net/minecraft/world/entity/Entity/xRot +FD: net/minecraft/world/entity/Entity/f_19859_ net/minecraft/world/entity/Entity/yRotO +FD: net/minecraft/world/entity/Entity/f_19860_ net/minecraft/world/entity/Entity/xRotO +FD: net/minecraft/world/entity/Entity/f_19861_ net/minecraft/world/entity/Entity/onGround +FD: net/minecraft/world/entity/Entity/f_19862_ net/minecraft/world/entity/Entity/horizontalCollision +FD: net/minecraft/world/entity/Entity/f_19863_ net/minecraft/world/entity/Entity/verticalCollision +FD: net/minecraft/world/entity/Entity/f_19864_ net/minecraft/world/entity/Entity/hurtMarked +FD: net/minecraft/world/entity/Entity/f_19865_ net/minecraft/world/entity/Entity/stuckSpeedMultiplier +FD: net/minecraft/world/entity/Entity/f_19867_ net/minecraft/world/entity/Entity/walkDistO +FD: net/minecraft/world/entity/Entity/f_201939_ net/minecraft/world/entity/Entity/verticalCollisionBelow +FD: net/minecraft/world/entity/Entity/f_216985_ net/minecraft/world/entity/Entity/packetPositionCodec +FD: net/minecraft/world/entity/Entity/f_285638_ net/minecraft/world/entity/Entity/mainSupportingBlockPos +FD: net/minecraft/world/entity/Entity/f_286942_ net/minecraft/world/entity/Entity/onGroundNoBlocks +FD: net/minecraft/world/entity/Entity/f_286980_ net/minecraft/world/entity/Entity/DELTA_AFFECTED_BY_BLOCKS_BELOW_0_2 +FD: net/minecraft/world/entity/Entity/f_286994_ net/minecraft/world/entity/Entity/DELTA_AFFECTED_BY_BLOCKS_BELOW_0_5 +FD: net/minecraft/world/entity/Entity/f_287009_ net/minecraft/world/entity/Entity/DELTA_AFFECTED_BY_BLOCKS_BELOW_1_0 +FD: net/minecraft/world/entity/Entity$1/f_20369_ net/minecraft/world/entity/Entity$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/entity/Entity$1/f_20370_ net/minecraft/world/entity/Entity$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/entity/Entity$MovementEmission/$VALUES net/minecraft/world/entity/Entity$MovementEmission/$VALUES +FD: net/minecraft/world/entity/Entity$MovementEmission/ALL net/minecraft/world/entity/Entity$MovementEmission/ALL +FD: net/minecraft/world/entity/Entity$MovementEmission/EVENTS net/minecraft/world/entity/Entity$MovementEmission/EVENTS +FD: net/minecraft/world/entity/Entity$MovementEmission/NONE net/minecraft/world/entity/Entity$MovementEmission/NONE +FD: net/minecraft/world/entity/Entity$MovementEmission/SOUNDS net/minecraft/world/entity/Entity$MovementEmission/SOUNDS +FD: net/minecraft/world/entity/Entity$MovementEmission/f_146935_ net/minecraft/world/entity/Entity$MovementEmission/sounds +FD: net/minecraft/world/entity/Entity$MovementEmission/f_146936_ net/minecraft/world/entity/Entity$MovementEmission/events +FD: net/minecraft/world/entity/Entity$RemovalReason/$VALUES net/minecraft/world/entity/Entity$RemovalReason/$VALUES +FD: net/minecraft/world/entity/Entity$RemovalReason/CHANGED_DIMENSION net/minecraft/world/entity/Entity$RemovalReason/CHANGED_DIMENSION +FD: net/minecraft/world/entity/Entity$RemovalReason/DISCARDED net/minecraft/world/entity/Entity$RemovalReason/DISCARDED +FD: net/minecraft/world/entity/Entity$RemovalReason/KILLED net/minecraft/world/entity/Entity$RemovalReason/KILLED +FD: net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_TO_CHUNK net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_TO_CHUNK +FD: net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_WITH_PLAYER net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_WITH_PLAYER +FD: net/minecraft/world/entity/Entity$RemovalReason/f_146956_ net/minecraft/world/entity/Entity$RemovalReason/destroy +FD: net/minecraft/world/entity/Entity$RemovalReason/f_146957_ net/minecraft/world/entity/Entity$RemovalReason/save +FD: net/minecraft/world/entity/EntityDimensions/f_20377_ net/minecraft/world/entity/EntityDimensions/width +FD: net/minecraft/world/entity/EntityDimensions/f_20378_ net/minecraft/world/entity/EntityDimensions/height +FD: net/minecraft/world/entity/EntityDimensions/f_20379_ net/minecraft/world/entity/EntityDimensions/fixed +FD: net/minecraft/world/entity/EntityEvent/f_146971_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_ADMINS +FD: net/minecraft/world/entity/EntityEvent/f_146972_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_OWNERS +FD: net/minecraft/world/entity/EntityEvent/f_146973_ net/minecraft/world/entity/EntityEvent/ATTACK_BLOCKED +FD: net/minecraft/world/entity/EntityEvent/f_146974_ net/minecraft/world/entity/EntityEvent/SHIELD_DISABLED +FD: net/minecraft/world/entity/EntityEvent/f_146975_ net/minecraft/world/entity/EntityEvent/FISHING_ROD_REEL_IN +FD: net/minecraft/world/entity/EntityEvent/f_146976_ net/minecraft/world/entity/EntityEvent/ARMORSTAND_WOBBLE +FD: net/minecraft/world/entity/EntityEvent/f_146978_ net/minecraft/world/entity/EntityEvent/STOP_OFFER_FLOWER +FD: net/minecraft/world/entity/EntityEvent/f_146979_ net/minecraft/world/entity/EntityEvent/TALISMAN_ACTIVATE +FD: net/minecraft/world/entity/EntityEvent/f_146982_ net/minecraft/world/entity/EntityEvent/DOLPHIN_LOOKING_FOR_TREASURE +FD: net/minecraft/world/entity/EntityEvent/f_146983_ net/minecraft/world/entity/EntityEvent/RAVAGER_STUNNED +FD: net/minecraft/world/entity/EntityEvent/f_146984_ net/minecraft/world/entity/EntityEvent/TRUSTING_FAILED +FD: net/minecraft/world/entity/EntityEvent/f_146985_ net/minecraft/world/entity/EntityEvent/TRUSTING_SUCCEEDED +FD: net/minecraft/world/entity/EntityEvent/f_146986_ net/minecraft/world/entity/EntityEvent/VILLAGER_SWEAT +FD: net/minecraft/world/entity/EntityEvent/f_146987_ net/minecraft/world/entity/EntityEvent/BAD_OMEN_TRIGGERED +FD: net/minecraft/world/entity/EntityEvent/f_146989_ net/minecraft/world/entity/EntityEvent/FOX_EAT +FD: net/minecraft/world/entity/EntityEvent/f_146990_ net/minecraft/world/entity/EntityEvent/TELEPORT +FD: net/minecraft/world/entity/EntityEvent/f_146991_ net/minecraft/world/entity/EntityEvent/MAINHAND_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146992_ net/minecraft/world/entity/EntityEvent/OFFHAND_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146993_ net/minecraft/world/entity/EntityEvent/HEAD_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146994_ net/minecraft/world/entity/EntityEvent/CHEST_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146995_ net/minecraft/world/entity/EntityEvent/LEGS_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146996_ net/minecraft/world/entity/EntityEvent/FEET_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146997_ net/minecraft/world/entity/EntityEvent/JUMP +FD: net/minecraft/world/entity/EntityEvent/f_146998_ net/minecraft/world/entity/EntityEvent/HONEY_SLIDE +FD: net/minecraft/world/entity/EntityEvent/f_146999_ net/minecraft/world/entity/EntityEvent/HONEY_JUMP +FD: net/minecraft/world/entity/EntityEvent/f_147000_ net/minecraft/world/entity/EntityEvent/SWAP_HANDS +FD: net/minecraft/world/entity/EntityEvent/f_147001_ net/minecraft/world/entity/EntityEvent/CANCEL_SHAKE_WETNESS +FD: net/minecraft/world/entity/EntityEvent/f_147003_ net/minecraft/world/entity/EntityEvent/START_RAM +FD: net/minecraft/world/entity/EntityEvent/f_147004_ net/minecraft/world/entity/EntityEvent/END_RAM +FD: net/minecraft/world/entity/EntityEvent/f_147005_ net/minecraft/world/entity/EntityEvent/POOF +FD: net/minecraft/world/entity/EntityEvent/f_147007_ net/minecraft/world/entity/EntityEvent/DEATH +FD: net/minecraft/world/entity/EntityEvent/f_147008_ net/minecraft/world/entity/EntityEvent/START_ATTACKING +FD: net/minecraft/world/entity/EntityEvent/f_147009_ net/minecraft/world/entity/EntityEvent/STOP_ATTACKING +FD: net/minecraft/world/entity/EntityEvent/f_147010_ net/minecraft/world/entity/EntityEvent/TAMING_FAILED +FD: net/minecraft/world/entity/EntityEvent/f_147011_ net/minecraft/world/entity/EntityEvent/TAMING_SUCCEEDED +FD: net/minecraft/world/entity/EntityEvent/f_147012_ net/minecraft/world/entity/EntityEvent/SHAKE_WETNESS +FD: net/minecraft/world/entity/EntityEvent/f_147013_ net/minecraft/world/entity/EntityEvent/USE_ITEM_COMPLETE +FD: net/minecraft/world/entity/EntityEvent/f_147014_ net/minecraft/world/entity/EntityEvent/EAT_GRASS +FD: net/minecraft/world/entity/EntityEvent/f_147015_ net/minecraft/world/entity/EntityEvent/OFFER_FLOWER +FD: net/minecraft/world/entity/EntityEvent/f_147016_ net/minecraft/world/entity/EntityEvent/LOVE_HEARTS +FD: net/minecraft/world/entity/EntityEvent/f_147017_ net/minecraft/world/entity/EntityEvent/VILLAGER_ANGRY +FD: net/minecraft/world/entity/EntityEvent/f_147018_ net/minecraft/world/entity/EntityEvent/VILLAGER_HAPPY +FD: net/minecraft/world/entity/EntityEvent/f_147019_ net/minecraft/world/entity/EntityEvent/WITCH_HAT_MAGIC +FD: net/minecraft/world/entity/EntityEvent/f_147020_ net/minecraft/world/entity/EntityEvent/ZOMBIE_CONVERTING +FD: net/minecraft/world/entity/EntityEvent/f_147021_ net/minecraft/world/entity/EntityEvent/FIREWORKS_EXPLODE +FD: net/minecraft/world/entity/EntityEvent/f_147022_ net/minecraft/world/entity/EntityEvent/IN_LOVE_HEARTS +FD: net/minecraft/world/entity/EntityEvent/f_147023_ net/minecraft/world/entity/EntityEvent/SQUID_ANIM_SYNCH +FD: net/minecraft/world/entity/EntityEvent/f_147024_ net/minecraft/world/entity/EntityEvent/SILVERFISH_MERGE_ANIM +FD: net/minecraft/world/entity/EntityEvent/f_147025_ net/minecraft/world/entity/EntityEvent/GUARDIAN_ATTACK_SOUND +FD: net/minecraft/world/entity/EntityEvent/f_147026_ net/minecraft/world/entity/EntityEvent/REDUCED_DEBUG_INFO +FD: net/minecraft/world/entity/EntityEvent/f_147027_ net/minecraft/world/entity/EntityEvent/FULL_DEBUG_INFO +FD: net/minecraft/world/entity/EntityEvent/f_147028_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_ALL +FD: net/minecraft/world/entity/EntityEvent/f_147029_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_MODERATORS +FD: net/minecraft/world/entity/EntityEvent/f_147030_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_GAMEMASTERS +FD: net/minecraft/world/entity/EntityEvent/f_217010_ net/minecraft/world/entity/EntityEvent/TENDRILS_SHIVER +FD: net/minecraft/world/entity/EntityEvent/f_217011_ net/minecraft/world/entity/EntityEvent/SONIC_CHARGE +FD: net/minecraft/world/entity/EntityEvent/f_271335_ net/minecraft/world/entity/EntityEvent/SNIFFER_DIGGING_SOUND +FD: net/minecraft/world/entity/EntitySelector/f_185987_ net/minecraft/world/entity/EntitySelector/CAN_BE_COLLIDED_WITH +FD: net/minecraft/world/entity/EntitySelector/f_20402_ net/minecraft/world/entity/EntitySelector/ENTITY_STILL_ALIVE +FD: net/minecraft/world/entity/EntitySelector/f_20403_ net/minecraft/world/entity/EntitySelector/LIVING_ENTITY_STILL_ALIVE +FD: net/minecraft/world/entity/EntitySelector/f_20404_ net/minecraft/world/entity/EntitySelector/ENTITY_NOT_BEING_RIDDEN +FD: net/minecraft/world/entity/EntitySelector/f_20405_ net/minecraft/world/entity/EntitySelector/CONTAINER_ENTITY_SELECTOR +FD: net/minecraft/world/entity/EntitySelector/f_20406_ net/minecraft/world/entity/EntitySelector/NO_CREATIVE_OR_SPECTATOR +FD: net/minecraft/world/entity/EntitySelector/f_20408_ net/minecraft/world/entity/EntitySelector/NO_SPECTATORS +FD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/f_20443_ net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/itemStack +FD: net/minecraft/world/entity/EntityType/f_147033_ net/minecraft/world/entity/EntityType/GLOW_ITEM_FRAME +FD: net/minecraft/world/entity/EntityType/f_147034_ net/minecraft/world/entity/EntityType/GLOW_SQUID +FD: net/minecraft/world/entity/EntityType/f_147035_ net/minecraft/world/entity/EntityType/GOAT +FD: net/minecraft/world/entity/EntityType/f_147036_ net/minecraft/world/entity/EntityType/MARKER +FD: net/minecraft/world/entity/EntityType/f_147037_ net/minecraft/world/entity/EntityType/ENTITY_TAG +FD: net/minecraft/world/entity/EntityType/f_147038_ net/minecraft/world/entity/EntityType/MAGIC_HORSE_WIDTH +FD: net/minecraft/world/entity/EntityType/f_147039_ net/minecraft/world/entity/EntityType/AXOLOTL +FD: net/minecraft/world/entity/EntityType/f_204038_ net/minecraft/world/entity/EntityType/builtInRegistryHolder +FD: net/minecraft/world/entity/EntityType/f_20450_ net/minecraft/world/entity/EntityType/FALLING_BLOCK +FD: net/minecraft/world/entity/EntityType/f_20451_ net/minecraft/world/entity/EntityType/FIREWORK_ROCKET +FD: net/minecraft/world/entity/EntityType/f_20452_ net/minecraft/world/entity/EntityType/FOX +FD: net/minecraft/world/entity/EntityType/f_20453_ net/minecraft/world/entity/EntityType/GHAST +FD: net/minecraft/world/entity/EntityType/f_20454_ net/minecraft/world/entity/EntityType/GIANT +FD: net/minecraft/world/entity/EntityType/f_20455_ net/minecraft/world/entity/EntityType/GUARDIAN +FD: net/minecraft/world/entity/EntityType/f_20456_ net/minecraft/world/entity/EntityType/HOGLIN +FD: net/minecraft/world/entity/EntityType/f_20457_ net/minecraft/world/entity/EntityType/HORSE +FD: net/minecraft/world/entity/EntityType/f_20458_ net/minecraft/world/entity/EntityType/HUSK +FD: net/minecraft/world/entity/EntityType/f_20459_ net/minecraft/world/entity/EntityType/ILLUSIONER +FD: net/minecraft/world/entity/EntityType/f_20460_ net/minecraft/world/entity/EntityType/IRON_GOLEM +FD: net/minecraft/world/entity/EntityType/f_20461_ net/minecraft/world/entity/EntityType/ITEM +FD: net/minecraft/world/entity/EntityType/f_20462_ net/minecraft/world/entity/EntityType/ITEM_FRAME +FD: net/minecraft/world/entity/EntityType/f_20463_ net/minecraft/world/entity/EntityType/FIREBALL +FD: net/minecraft/world/entity/EntityType/f_20464_ net/minecraft/world/entity/EntityType/LEASH_KNOT +FD: net/minecraft/world/entity/EntityType/f_20465_ net/minecraft/world/entity/EntityType/LIGHTNING_BOLT +FD: net/minecraft/world/entity/EntityType/f_20466_ net/minecraft/world/entity/EntityType/LLAMA +FD: net/minecraft/world/entity/EntityType/f_20467_ net/minecraft/world/entity/EntityType/LLAMA_SPIT +FD: net/minecraft/world/entity/EntityType/f_20468_ net/minecraft/world/entity/EntityType/MAGMA_CUBE +FD: net/minecraft/world/entity/EntityType/f_20469_ net/minecraft/world/entity/EntityType/MINECART +FD: net/minecraft/world/entity/EntityType/f_20470_ net/minecraft/world/entity/EntityType/CHEST_MINECART +FD: net/minecraft/world/entity/EntityType/f_20471_ net/minecraft/world/entity/EntityType/COMMAND_BLOCK_MINECART +FD: net/minecraft/world/entity/EntityType/f_20472_ net/minecraft/world/entity/EntityType/FURNACE_MINECART +FD: net/minecraft/world/entity/EntityType/f_20473_ net/minecraft/world/entity/EntityType/HOPPER_MINECART +FD: net/minecraft/world/entity/EntityType/f_20474_ net/minecraft/world/entity/EntityType/SPAWNER_MINECART +FD: net/minecraft/world/entity/EntityType/f_20475_ net/minecraft/world/entity/EntityType/TNT_MINECART +FD: net/minecraft/world/entity/EntityType/f_20476_ net/minecraft/world/entity/EntityType/AREA_EFFECT_CLOUD +FD: net/minecraft/world/entity/EntityType/f_20477_ net/minecraft/world/entity/EntityType/SNOWBALL +FD: net/minecraft/world/entity/EntityType/f_20478_ net/minecraft/world/entity/EntityType/SPECTRAL_ARROW +FD: net/minecraft/world/entity/EntityType/f_20479_ net/minecraft/world/entity/EntityType/SPIDER +FD: net/minecraft/world/entity/EntityType/f_20480_ net/minecraft/world/entity/EntityType/SQUID +FD: net/minecraft/world/entity/EntityType/f_20481_ net/minecraft/world/entity/EntityType/STRAY +FD: net/minecraft/world/entity/EntityType/f_20482_ net/minecraft/world/entity/EntityType/STRIDER +FD: net/minecraft/world/entity/EntityType/f_20483_ net/minecraft/world/entity/EntityType/EGG +FD: net/minecraft/world/entity/EntityType/f_20484_ net/minecraft/world/entity/EntityType/ENDER_PEARL +FD: net/minecraft/world/entity/EntityType/f_20485_ net/minecraft/world/entity/EntityType/EXPERIENCE_BOTTLE +FD: net/minecraft/world/entity/EntityType/f_20486_ net/minecraft/world/entity/EntityType/POTION +FD: net/minecraft/world/entity/EntityType/f_20487_ net/minecraft/world/entity/EntityType/TRIDENT +FD: net/minecraft/world/entity/EntityType/f_20488_ net/minecraft/world/entity/EntityType/TRADER_LLAMA +FD: net/minecraft/world/entity/EntityType/f_20489_ net/minecraft/world/entity/EntityType/TROPICAL_FISH +FD: net/minecraft/world/entity/EntityType/f_20490_ net/minecraft/world/entity/EntityType/TURTLE +FD: net/minecraft/world/entity/EntityType/f_20491_ net/minecraft/world/entity/EntityType/VEX +FD: net/minecraft/world/entity/EntityType/f_20492_ net/minecraft/world/entity/EntityType/VILLAGER +FD: net/minecraft/world/entity/EntityType/f_20493_ net/minecraft/world/entity/EntityType/VINDICATOR +FD: net/minecraft/world/entity/EntityType/f_20494_ net/minecraft/world/entity/EntityType/WANDERING_TRADER +FD: net/minecraft/world/entity/EntityType/f_20495_ net/minecraft/world/entity/EntityType/WITCH +FD: net/minecraft/world/entity/EntityType/f_20496_ net/minecraft/world/entity/EntityType/WITHER +FD: net/minecraft/world/entity/EntityType/f_20497_ net/minecraft/world/entity/EntityType/WITHER_SKELETON +FD: net/minecraft/world/entity/EntityType/f_20498_ net/minecraft/world/entity/EntityType/WITHER_SKULL +FD: net/minecraft/world/entity/EntityType/f_20499_ net/minecraft/world/entity/EntityType/WOLF +FD: net/minecraft/world/entity/EntityType/f_20500_ net/minecraft/world/entity/EntityType/ZOGLIN +FD: net/minecraft/world/entity/EntityType/f_20501_ net/minecraft/world/entity/EntityType/ZOMBIE +FD: net/minecraft/world/entity/EntityType/f_20502_ net/minecraft/world/entity/EntityType/ZOMBIE_HORSE +FD: net/minecraft/world/entity/EntityType/f_20503_ net/minecraft/world/entity/EntityType/MULE +FD: net/minecraft/world/entity/EntityType/f_20504_ net/minecraft/world/entity/EntityType/MOOSHROOM +FD: net/minecraft/world/entity/EntityType/f_20505_ net/minecraft/world/entity/EntityType/OCELOT +FD: net/minecraft/world/entity/EntityType/f_20506_ net/minecraft/world/entity/EntityType/PAINTING +FD: net/minecraft/world/entity/EntityType/f_20507_ net/minecraft/world/entity/EntityType/PANDA +FD: net/minecraft/world/entity/EntityType/f_20508_ net/minecraft/world/entity/EntityType/PARROT +FD: net/minecraft/world/entity/EntityType/f_20509_ net/minecraft/world/entity/EntityType/PHANTOM +FD: net/minecraft/world/entity/EntityType/f_20510_ net/minecraft/world/entity/EntityType/PIG +FD: net/minecraft/world/entity/EntityType/f_20511_ net/minecraft/world/entity/EntityType/PIGLIN +FD: net/minecraft/world/entity/EntityType/f_20512_ net/minecraft/world/entity/EntityType/PIGLIN_BRUTE +FD: net/minecraft/world/entity/EntityType/f_20513_ net/minecraft/world/entity/EntityType/PILLAGER +FD: net/minecraft/world/entity/EntityType/f_20514_ net/minecraft/world/entity/EntityType/POLAR_BEAR +FD: net/minecraft/world/entity/EntityType/f_20515_ net/minecraft/world/entity/EntityType/TNT +FD: net/minecraft/world/entity/EntityType/f_20516_ net/minecraft/world/entity/EntityType/PUFFERFISH +FD: net/minecraft/world/entity/EntityType/f_20517_ net/minecraft/world/entity/EntityType/RABBIT +FD: net/minecraft/world/entity/EntityType/f_20518_ net/minecraft/world/entity/EntityType/RAVAGER +FD: net/minecraft/world/entity/EntityType/f_20519_ net/minecraft/world/entity/EntityType/SALMON +FD: net/minecraft/world/entity/EntityType/f_20520_ net/minecraft/world/entity/EntityType/SHEEP +FD: net/minecraft/world/entity/EntityType/f_20521_ net/minecraft/world/entity/EntityType/SHULKER +FD: net/minecraft/world/entity/EntityType/f_20522_ net/minecraft/world/entity/EntityType/SHULKER_BULLET +FD: net/minecraft/world/entity/EntityType/f_20523_ net/minecraft/world/entity/EntityType/SILVERFISH +FD: net/minecraft/world/entity/EntityType/f_20524_ net/minecraft/world/entity/EntityType/SKELETON +FD: net/minecraft/world/entity/EntityType/f_20525_ net/minecraft/world/entity/EntityType/SKELETON_HORSE +FD: net/minecraft/world/entity/EntityType/f_20526_ net/minecraft/world/entity/EntityType/SLIME +FD: net/minecraft/world/entity/EntityType/f_20527_ net/minecraft/world/entity/EntityType/SMALL_FIREBALL +FD: net/minecraft/world/entity/EntityType/f_20528_ net/minecraft/world/entity/EntityType/SNOW_GOLEM +FD: net/minecraft/world/entity/EntityType/f_20529_ net/minecraft/world/entity/EntityType/ARMOR_STAND +FD: net/minecraft/world/entity/EntityType/f_20530_ net/minecraft/world/entity/EntityType/ZOMBIE_VILLAGER +FD: net/minecraft/world/entity/EntityType/f_20531_ net/minecraft/world/entity/EntityType/ZOMBIFIED_PIGLIN +FD: net/minecraft/world/entity/EntityType/f_20532_ net/minecraft/world/entity/EntityType/PLAYER +FD: net/minecraft/world/entity/EntityType/f_20533_ net/minecraft/world/entity/EntityType/FISHING_BOBBER +FD: net/minecraft/world/entity/EntityType/f_20534_ net/minecraft/world/entity/EntityType/LOGGER +FD: net/minecraft/world/entity/EntityType/f_20535_ net/minecraft/world/entity/EntityType/factory +FD: net/minecraft/world/entity/EntityType/f_20536_ net/minecraft/world/entity/EntityType/category +FD: net/minecraft/world/entity/EntityType/f_20537_ net/minecraft/world/entity/EntityType/immuneTo +FD: net/minecraft/world/entity/EntityType/f_20538_ net/minecraft/world/entity/EntityType/serialize +FD: net/minecraft/world/entity/EntityType/f_20539_ net/minecraft/world/entity/EntityType/summon +FD: net/minecraft/world/entity/EntityType/f_20540_ net/minecraft/world/entity/EntityType/fireImmune +FD: net/minecraft/world/entity/EntityType/f_20541_ net/minecraft/world/entity/EntityType/canSpawnFarFromPlayer +FD: net/minecraft/world/entity/EntityType/f_20542_ net/minecraft/world/entity/EntityType/clientTrackingRange +FD: net/minecraft/world/entity/EntityType/f_20543_ net/minecraft/world/entity/EntityType/updateInterval +FD: net/minecraft/world/entity/EntityType/f_20544_ net/minecraft/world/entity/EntityType/descriptionId +FD: net/minecraft/world/entity/EntityType/f_20545_ net/minecraft/world/entity/EntityType/description +FD: net/minecraft/world/entity/EntityType/f_20546_ net/minecraft/world/entity/EntityType/lootTable +FD: net/minecraft/world/entity/EntityType/f_20547_ net/minecraft/world/entity/EntityType/dimensions +FD: net/minecraft/world/entity/EntityType/f_20548_ net/minecraft/world/entity/EntityType/ARROW +FD: net/minecraft/world/entity/EntityType/f_20549_ net/minecraft/world/entity/EntityType/BAT +FD: net/minecraft/world/entity/EntityType/f_20550_ net/minecraft/world/entity/EntityType/BEE +FD: net/minecraft/world/entity/EntityType/f_20551_ net/minecraft/world/entity/EntityType/BLAZE +FD: net/minecraft/world/entity/EntityType/f_20552_ net/minecraft/world/entity/EntityType/BOAT +FD: net/minecraft/world/entity/EntityType/f_20553_ net/minecraft/world/entity/EntityType/CAT +FD: net/minecraft/world/entity/EntityType/f_20554_ net/minecraft/world/entity/EntityType/CAVE_SPIDER +FD: net/minecraft/world/entity/EntityType/f_20555_ net/minecraft/world/entity/EntityType/CHICKEN +FD: net/minecraft/world/entity/EntityType/f_20556_ net/minecraft/world/entity/EntityType/COD +FD: net/minecraft/world/entity/EntityType/f_20557_ net/minecraft/world/entity/EntityType/COW +FD: net/minecraft/world/entity/EntityType/f_20558_ net/minecraft/world/entity/EntityType/CREEPER +FD: net/minecraft/world/entity/EntityType/f_20559_ net/minecraft/world/entity/EntityType/DOLPHIN +FD: net/minecraft/world/entity/EntityType/f_20560_ net/minecraft/world/entity/EntityType/DONKEY +FD: net/minecraft/world/entity/EntityType/f_20561_ net/minecraft/world/entity/EntityType/DRAGON_FIREBALL +FD: net/minecraft/world/entity/EntityType/f_20562_ net/minecraft/world/entity/EntityType/DROWNED +FD: net/minecraft/world/entity/EntityType/f_20563_ net/minecraft/world/entity/EntityType/ELDER_GUARDIAN +FD: net/minecraft/world/entity/EntityType/f_20564_ net/minecraft/world/entity/EntityType/END_CRYSTAL +FD: net/minecraft/world/entity/EntityType/f_20565_ net/minecraft/world/entity/EntityType/ENDER_DRAGON +FD: net/minecraft/world/entity/EntityType/f_20566_ net/minecraft/world/entity/EntityType/ENDERMAN +FD: net/minecraft/world/entity/EntityType/f_20567_ net/minecraft/world/entity/EntityType/ENDERMITE +FD: net/minecraft/world/entity/EntityType/f_20568_ net/minecraft/world/entity/EntityType/EVOKER +FD: net/minecraft/world/entity/EntityType/f_20569_ net/minecraft/world/entity/EntityType/EVOKER_FANGS +FD: net/minecraft/world/entity/EntityType/f_20570_ net/minecraft/world/entity/EntityType/EXPERIENCE_ORB +FD: net/minecraft/world/entity/EntityType/f_20571_ net/minecraft/world/entity/EntityType/EYE_OF_ENDER +FD: net/minecraft/world/entity/EntityType/f_217012_ net/minecraft/world/entity/EntityType/FROG +FD: net/minecraft/world/entity/EntityType/f_217013_ net/minecraft/world/entity/EntityType/TADPOLE +FD: net/minecraft/world/entity/EntityType/f_217014_ net/minecraft/world/entity/EntityType/ALLAY +FD: net/minecraft/world/entity/EntityType/f_217015_ net/minecraft/world/entity/EntityType/WARDEN +FD: net/minecraft/world/entity/EntityType/f_217016_ net/minecraft/world/entity/EntityType/CHEST_BOAT +FD: net/minecraft/world/entity/EntityType/f_243976_ net/minecraft/world/entity/EntityType/CAMEL +FD: net/minecraft/world/entity/EntityType/f_244139_ net/minecraft/world/entity/EntityType/requiredFeatures +FD: net/minecraft/world/entity/EntityType/f_268473_ net/minecraft/world/entity/EntityType/DISPLAY_TRACKING_RANGE +FD: net/minecraft/world/entity/EntityType/f_268573_ net/minecraft/world/entity/EntityType/BLOCK_DISPLAY +FD: net/minecraft/world/entity/EntityType/f_268607_ net/minecraft/world/entity/EntityType/TEXT_DISPLAY +FD: net/minecraft/world/entity/EntityType/f_268643_ net/minecraft/world/entity/EntityType/ITEM_DISPLAY +FD: net/minecraft/world/entity/EntityType/f_271243_ net/minecraft/world/entity/EntityType/INTERACTION +FD: net/minecraft/world/entity/EntityType/f_271264_ net/minecraft/world/entity/EntityType/SNIFFER +FD: net/minecraft/world/entity/EntityType$1/f_147049_ net/minecraft/world/entity/EntityType$1/val$tagSpliterator +FD: net/minecraft/world/entity/EntityType$1/f_147050_ net/minecraft/world/entity/EntityType$1/val$level +FD: net/minecraft/world/entity/EntityType$1/f_147051_ net/minecraft/world/entity/EntityType$1/val$entities +FD: net/minecraft/world/entity/EntityType$Builder/f_20685_ net/minecraft/world/entity/EntityType$Builder/factory +FD: net/minecraft/world/entity/EntityType$Builder/f_20686_ net/minecraft/world/entity/EntityType$Builder/category +FD: net/minecraft/world/entity/EntityType$Builder/f_20687_ net/minecraft/world/entity/EntityType$Builder/immuneTo +FD: net/minecraft/world/entity/EntityType$Builder/f_20688_ net/minecraft/world/entity/EntityType$Builder/serialize +FD: net/minecraft/world/entity/EntityType$Builder/f_20689_ net/minecraft/world/entity/EntityType$Builder/summon +FD: net/minecraft/world/entity/EntityType$Builder/f_20690_ net/minecraft/world/entity/EntityType$Builder/fireImmune +FD: net/minecraft/world/entity/EntityType$Builder/f_20691_ net/minecraft/world/entity/EntityType$Builder/canSpawnFarFromPlayer +FD: net/minecraft/world/entity/EntityType$Builder/f_20692_ net/minecraft/world/entity/EntityType$Builder/clientTrackingRange +FD: net/minecraft/world/entity/EntityType$Builder/f_20693_ net/minecraft/world/entity/EntityType$Builder/updateInterval +FD: net/minecraft/world/entity/EntityType$Builder/f_20694_ net/minecraft/world/entity/EntityType$Builder/dimensions +FD: net/minecraft/world/entity/EntityType$Builder/f_244453_ net/minecraft/world/entity/EntityType$Builder/requiredFeatures +FD: net/minecraft/world/entity/EquipmentSlot/$VALUES net/minecraft/world/entity/EquipmentSlot/$VALUES +FD: net/minecraft/world/entity/EquipmentSlot/CHEST net/minecraft/world/entity/EquipmentSlot/CHEST +FD: net/minecraft/world/entity/EquipmentSlot/FEET net/minecraft/world/entity/EquipmentSlot/FEET +FD: net/minecraft/world/entity/EquipmentSlot/HEAD net/minecraft/world/entity/EquipmentSlot/HEAD +FD: net/minecraft/world/entity/EquipmentSlot/LEGS net/minecraft/world/entity/EquipmentSlot/LEGS +FD: net/minecraft/world/entity/EquipmentSlot/MAINHAND net/minecraft/world/entity/EquipmentSlot/MAINHAND +FD: net/minecraft/world/entity/EquipmentSlot/OFFHAND net/minecraft/world/entity/EquipmentSlot/OFFHAND +FD: net/minecraft/world/entity/EquipmentSlot/f_20730_ net/minecraft/world/entity/EquipmentSlot/type +FD: net/minecraft/world/entity/EquipmentSlot/f_20731_ net/minecraft/world/entity/EquipmentSlot/index +FD: net/minecraft/world/entity/EquipmentSlot/f_20732_ net/minecraft/world/entity/EquipmentSlot/filterFlag +FD: net/minecraft/world/entity/EquipmentSlot/f_20733_ net/minecraft/world/entity/EquipmentSlot/name +FD: net/minecraft/world/entity/EquipmentSlot$Type/$VALUES net/minecraft/world/entity/EquipmentSlot$Type/$VALUES +FD: net/minecraft/world/entity/EquipmentSlot$Type/ARMOR net/minecraft/world/entity/EquipmentSlot$Type/ARMOR +FD: net/minecraft/world/entity/EquipmentSlot$Type/HAND net/minecraft/world/entity/EquipmentSlot$Type/HAND +FD: net/minecraft/world/entity/ExperienceOrb/f_147072_ net/minecraft/world/entity/ExperienceOrb/count +FD: net/minecraft/world/entity/ExperienceOrb/f_147073_ net/minecraft/world/entity/ExperienceOrb/LIFETIME +FD: net/minecraft/world/entity/ExperienceOrb/f_147074_ net/minecraft/world/entity/ExperienceOrb/ENTITY_SCAN_PERIOD +FD: net/minecraft/world/entity/ExperienceOrb/f_147075_ net/minecraft/world/entity/ExperienceOrb/MAX_FOLLOW_DIST +FD: net/minecraft/world/entity/ExperienceOrb/f_147076_ net/minecraft/world/entity/ExperienceOrb/ORB_GROUPS_PER_AREA +FD: net/minecraft/world/entity/ExperienceOrb/f_147077_ net/minecraft/world/entity/ExperienceOrb/ORB_MERGE_DISTANCE +FD: net/minecraft/world/entity/ExperienceOrb/f_20767_ net/minecraft/world/entity/ExperienceOrb/age +FD: net/minecraft/world/entity/ExperienceOrb/f_20769_ net/minecraft/world/entity/ExperienceOrb/health +FD: net/minecraft/world/entity/ExperienceOrb/f_20770_ net/minecraft/world/entity/ExperienceOrb/value +FD: net/minecraft/world/entity/ExperienceOrb/f_20771_ net/minecraft/world/entity/ExperienceOrb/followingPlayer +FD: net/minecraft/world/entity/GlowSquid/f_147108_ net/minecraft/world/entity/GlowSquid/DATA_DARK_TICKS_REMAINING +FD: net/minecraft/world/entity/HumanoidArm/$VALUES net/minecraft/world/entity/HumanoidArm/$VALUES +FD: net/minecraft/world/entity/HumanoidArm/LEFT net/minecraft/world/entity/HumanoidArm/LEFT +FD: net/minecraft/world/entity/HumanoidArm/RIGHT net/minecraft/world/entity/HumanoidArm/RIGHT +FD: net/minecraft/world/entity/HumanoidArm/f_20821_ net/minecraft/world/entity/HumanoidArm/name +FD: net/minecraft/world/entity/HumanoidArm/f_217024_ net/minecraft/world/entity/HumanoidArm/id +FD: net/minecraft/world/entity/Interaction/f_271085_ net/minecraft/world/entity/Interaction/TAG_HEIGHT +FD: net/minecraft/world/entity/Interaction/f_271193_ net/minecraft/world/entity/Interaction/interaction +FD: net/minecraft/world/entity/Interaction/f_271210_ net/minecraft/world/entity/Interaction/DATA_WIDTH_ID +FD: net/minecraft/world/entity/Interaction/f_271237_ net/minecraft/world/entity/Interaction/DATA_HEIGHT_ID +FD: net/minecraft/world/entity/Interaction/f_271310_ net/minecraft/world/entity/Interaction/LOGGER +FD: net/minecraft/world/entity/Interaction/f_271389_ net/minecraft/world/entity/Interaction/DATA_RESPONSE_ID +FD: net/minecraft/world/entity/Interaction/f_271403_ net/minecraft/world/entity/Interaction/TAG_ATTACK +FD: net/minecraft/world/entity/Interaction/f_271404_ net/minecraft/world/entity/Interaction/attack +FD: net/minecraft/world/entity/Interaction/f_271476_ net/minecraft/world/entity/Interaction/TAG_INTERACTION +FD: net/minecraft/world/entity/Interaction/f_271508_ net/minecraft/world/entity/Interaction/TAG_RESPONSE +FD: net/minecraft/world/entity/Interaction/f_271518_ net/minecraft/world/entity/Interaction/TAG_WIDTH +FD: net/minecraft/world/entity/Interaction$PlayerAction/f_271379_ net/minecraft/world/entity/Interaction$PlayerAction/player +FD: net/minecraft/world/entity/Interaction$PlayerAction/f_271433_ net/minecraft/world/entity/Interaction$PlayerAction/CODEC +FD: net/minecraft/world/entity/Interaction$PlayerAction/f_271492_ net/minecraft/world/entity/Interaction$PlayerAction/timestamp +FD: net/minecraft/world/entity/ItemBasedSteering/f_147132_ net/minecraft/world/entity/ItemBasedSteering/MIN_BOOST_TIME +FD: net/minecraft/world/entity/ItemBasedSteering/f_147133_ net/minecraft/world/entity/ItemBasedSteering/MAX_BOOST_TIME +FD: net/minecraft/world/entity/ItemBasedSteering/f_20834_ net/minecraft/world/entity/ItemBasedSteering/boosting +FD: net/minecraft/world/entity/ItemBasedSteering/f_20835_ net/minecraft/world/entity/ItemBasedSteering/boostTime +FD: net/minecraft/world/entity/ItemBasedSteering/f_20837_ net/minecraft/world/entity/ItemBasedSteering/entityData +FD: net/minecraft/world/entity/ItemBasedSteering/f_20838_ net/minecraft/world/entity/ItemBasedSteering/boostTimeAccessor +FD: net/minecraft/world/entity/ItemBasedSteering/f_20839_ net/minecraft/world/entity/ItemBasedSteering/hasSaddleAccessor +FD: net/minecraft/world/entity/LightningBolt/f_147134_ net/minecraft/world/entity/LightningBolt/hitEntities +FD: net/minecraft/world/entity/LightningBolt/f_147135_ net/minecraft/world/entity/LightningBolt/blocksSetOnFire +FD: net/minecraft/world/entity/LightningBolt/f_147136_ net/minecraft/world/entity/LightningBolt/START_LIFE +FD: net/minecraft/world/entity/LightningBolt/f_147137_ net/minecraft/world/entity/LightningBolt/DAMAGE_RADIUS +FD: net/minecraft/world/entity/LightningBolt/f_147138_ net/minecraft/world/entity/LightningBolt/DETECTION_RADIUS +FD: net/minecraft/world/entity/LightningBolt/f_20859_ net/minecraft/world/entity/LightningBolt/seed +FD: net/minecraft/world/entity/LightningBolt/f_20860_ net/minecraft/world/entity/LightningBolt/life +FD: net/minecraft/world/entity/LightningBolt/f_20861_ net/minecraft/world/entity/LightningBolt/flashes +FD: net/minecraft/world/entity/LightningBolt/f_20862_ net/minecraft/world/entity/LightningBolt/visualOnly +FD: net/minecraft/world/entity/LightningBolt/f_20863_ net/minecraft/world/entity/LightningBolt/cause +FD: net/minecraft/world/entity/LivingEntity/f_147163_ net/minecraft/world/entity/LivingEntity/LIVING_ENTITY_FLAG_SPIN_ATTACK +FD: net/minecraft/world/entity/LivingEntity/f_147164_ net/minecraft/world/entity/LivingEntity/DEFAULT_EYE_HEIGHT +FD: net/minecraft/world/entity/LivingEntity/f_147165_ net/minecraft/world/entity/LivingEntity/EXTRA_RENDER_CULLING_SIZE_WITH_BIG_HAT +FD: net/minecraft/world/entity/LivingEntity/f_147166_ net/minecraft/world/entity/LivingEntity/HAND_SLOTS +FD: net/minecraft/world/entity/LivingEntity/f_147167_ net/minecraft/world/entity/LivingEntity/ARMOR_SLOTS +FD: net/minecraft/world/entity/LivingEntity/f_147168_ net/minecraft/world/entity/LivingEntity/EQUIPMENT_SLOT_OFFSET +FD: net/minecraft/world/entity/LivingEntity/f_147169_ net/minecraft/world/entity/LivingEntity/ARMOR_SLOT_OFFSET +FD: net/minecraft/world/entity/LivingEntity/f_147170_ net/minecraft/world/entity/LivingEntity/SWING_DURATION +FD: net/minecraft/world/entity/LivingEntity/f_147171_ net/minecraft/world/entity/LivingEntity/PLAYER_HURT_EXPERIENCE_TIME +FD: net/minecraft/world/entity/LivingEntity/f_147172_ net/minecraft/world/entity/LivingEntity/MIN_MOVEMENT_DISTANCE +FD: net/minecraft/world/entity/LivingEntity/f_147173_ net/minecraft/world/entity/LivingEntity/DEFAULT_BASE_GRAVITY +FD: net/minecraft/world/entity/LivingEntity/f_147174_ net/minecraft/world/entity/LivingEntity/DEATH_DURATION +FD: net/minecraft/world/entity/LivingEntity/f_147175_ net/minecraft/world/entity/LivingEntity/USE_ITEM_INTERVAL +FD: net/minecraft/world/entity/LivingEntity/f_147176_ net/minecraft/world/entity/LivingEntity/LIVING_ENTITY_FLAG_IS_USING +FD: net/minecraft/world/entity/LivingEntity/f_147177_ net/minecraft/world/entity/LivingEntity/LIVING_ENTITY_FLAG_OFF_HAND +FD: net/minecraft/world/entity/LivingEntity/f_147178_ net/minecraft/world/entity/LivingEntity/DAMAGE_SOURCE_TIMEOUT +FD: net/minecraft/world/entity/LivingEntity/f_147179_ net/minecraft/world/entity/LivingEntity/WAIT_TICKS_BEFORE_ITEM_USE_EFFECTS +FD: net/minecraft/world/entity/LivingEntity/f_147180_ net/minecraft/world/entity/LivingEntity/TICKS_PER_ELYTRA_FREE_FALL_EVENT +FD: net/minecraft/world/entity/LivingEntity/f_147181_ net/minecraft/world/entity/LivingEntity/FREE_FALL_EVENTS_PER_ELYTRA_BREAK +FD: net/minecraft/world/entity/LivingEntity/f_147182_ net/minecraft/world/entity/LivingEntity/MAX_LINE_OF_SIGHT_TEST_RANGE +FD: net/minecraft/world/entity/LivingEntity/f_147183_ net/minecraft/world/entity/LivingEntity/discardFriction +FD: net/minecraft/world/entity/LivingEntity/f_147184_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_POWDER_SNOW_UUID +FD: net/minecraft/world/entity/LivingEntity/f_201943_ net/minecraft/world/entity/LivingEntity/LOGGER +FD: net/minecraft/world/entity/LivingEntity/f_20883_ net/minecraft/world/entity/LivingEntity/yBodyRot +FD: net/minecraft/world/entity/LivingEntity/f_20884_ net/minecraft/world/entity/LivingEntity/yBodyRotO +FD: net/minecraft/world/entity/LivingEntity/f_20885_ net/minecraft/world/entity/LivingEntity/yHeadRot +FD: net/minecraft/world/entity/LivingEntity/f_20886_ net/minecraft/world/entity/LivingEntity/yHeadRotO +FD: net/minecraft/world/entity/LivingEntity/f_20888_ net/minecraft/world/entity/LivingEntity/lastHurtByPlayer +FD: net/minecraft/world/entity/LivingEntity/f_20889_ net/minecraft/world/entity/LivingEntity/lastHurtByPlayerTime +FD: net/minecraft/world/entity/LivingEntity/f_20890_ net/minecraft/world/entity/LivingEntity/dead +FD: net/minecraft/world/entity/LivingEntity/f_20891_ net/minecraft/world/entity/LivingEntity/noActionTime +FD: net/minecraft/world/entity/LivingEntity/f_20892_ net/minecraft/world/entity/LivingEntity/oRun +FD: net/minecraft/world/entity/LivingEntity/f_20893_ net/minecraft/world/entity/LivingEntity/run +FD: net/minecraft/world/entity/LivingEntity/f_20894_ net/minecraft/world/entity/LivingEntity/animStep +FD: net/minecraft/world/entity/LivingEntity/f_20895_ net/minecraft/world/entity/LivingEntity/animStepO +FD: net/minecraft/world/entity/LivingEntity/f_20896_ net/minecraft/world/entity/LivingEntity/rotOffs +FD: net/minecraft/world/entity/LivingEntity/f_20897_ net/minecraft/world/entity/LivingEntity/deathScore +FD: net/minecraft/world/entity/LivingEntity/f_20898_ net/minecraft/world/entity/LivingEntity/lastHurt +FD: net/minecraft/world/entity/LivingEntity/f_20899_ net/minecraft/world/entity/LivingEntity/jumping +FD: net/minecraft/world/entity/LivingEntity/f_20900_ net/minecraft/world/entity/LivingEntity/xxa +FD: net/minecraft/world/entity/LivingEntity/f_20901_ net/minecraft/world/entity/LivingEntity/yya +FD: net/minecraft/world/entity/LivingEntity/f_20902_ net/minecraft/world/entity/LivingEntity/zza +FD: net/minecraft/world/entity/LivingEntity/f_20903_ net/minecraft/world/entity/LivingEntity/lerpSteps +FD: net/minecraft/world/entity/LivingEntity/f_20904_ net/minecraft/world/entity/LivingEntity/lerpX +FD: net/minecraft/world/entity/LivingEntity/f_20905_ net/minecraft/world/entity/LivingEntity/lerpY +FD: net/minecraft/world/entity/LivingEntity/f_20906_ net/minecraft/world/entity/LivingEntity/lerpZ +FD: net/minecraft/world/entity/LivingEntity/f_20907_ net/minecraft/world/entity/LivingEntity/lerpYRot +FD: net/minecraft/world/entity/LivingEntity/f_20908_ net/minecraft/world/entity/LivingEntity/lerpXRot +FD: net/minecraft/world/entity/LivingEntity/f_20909_ net/minecraft/world/entity/LivingEntity/DATA_LIVING_ENTITY_FLAGS +FD: net/minecraft/world/entity/LivingEntity/f_20910_ net/minecraft/world/entity/LivingEntity/SLEEPING_DIMENSIONS +FD: net/minecraft/world/entity/LivingEntity/f_20911_ net/minecraft/world/entity/LivingEntity/swinging +FD: net/minecraft/world/entity/LivingEntity/f_20912_ net/minecraft/world/entity/LivingEntity/swingingArm +FD: net/minecraft/world/entity/LivingEntity/f_20913_ net/minecraft/world/entity/LivingEntity/swingTime +FD: net/minecraft/world/entity/LivingEntity/f_20914_ net/minecraft/world/entity/LivingEntity/removeArrowTime +FD: net/minecraft/world/entity/LivingEntity/f_20915_ net/minecraft/world/entity/LivingEntity/removeStingerTime +FD: net/minecraft/world/entity/LivingEntity/f_20916_ net/minecraft/world/entity/LivingEntity/hurtTime +FD: net/minecraft/world/entity/LivingEntity/f_20917_ net/minecraft/world/entity/LivingEntity/hurtDuration +FD: net/minecraft/world/entity/LivingEntity/f_20919_ net/minecraft/world/entity/LivingEntity/deathTime +FD: net/minecraft/world/entity/LivingEntity/f_20920_ net/minecraft/world/entity/LivingEntity/oAttackAnim +FD: net/minecraft/world/entity/LivingEntity/f_20921_ net/minecraft/world/entity/LivingEntity/attackAnim +FD: net/minecraft/world/entity/LivingEntity/f_20922_ net/minecraft/world/entity/LivingEntity/attackStrengthTicker +FD: net/minecraft/world/entity/LivingEntity/f_20926_ net/minecraft/world/entity/LivingEntity/invulnerableDuration +FD: net/minecraft/world/entity/LivingEntity/f_20927_ net/minecraft/world/entity/LivingEntity/timeOffs +FD: net/minecraft/world/entity/LivingEntity/f_20928_ net/minecraft/world/entity/LivingEntity/rotA +FD: net/minecraft/world/entity/LivingEntity/f_20929_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_SPRINTING_UUID +FD: net/minecraft/world/entity/LivingEntity/f_20930_ net/minecraft/world/entity/LivingEntity/lastDamageStamp +FD: net/minecraft/world/entity/LivingEntity/f_20931_ net/minecraft/world/entity/LivingEntity/swimAmount +FD: net/minecraft/world/entity/LivingEntity/f_20932_ net/minecraft/world/entity/LivingEntity/swimAmountO +FD: net/minecraft/world/entity/LivingEntity/f_20933_ net/minecraft/world/entity/LivingEntity/lyHeadRot +FD: net/minecraft/world/entity/LivingEntity/f_20934_ net/minecraft/world/entity/LivingEntity/lerpHeadSteps +FD: net/minecraft/world/entity/LivingEntity/f_20935_ net/minecraft/world/entity/LivingEntity/useItem +FD: net/minecraft/world/entity/LivingEntity/f_20936_ net/minecraft/world/entity/LivingEntity/useItemRemaining +FD: net/minecraft/world/entity/LivingEntity/f_20937_ net/minecraft/world/entity/LivingEntity/fallFlyTicks +FD: net/minecraft/world/entity/LivingEntity/f_20938_ net/minecraft/world/entity/LivingEntity/autoSpinAttackTicks +FD: net/minecraft/world/entity/LivingEntity/f_20939_ net/minecraft/world/entity/LivingEntity/brain +FD: net/minecraft/world/entity/LivingEntity/f_20940_ net/minecraft/world/entity/LivingEntity/DATA_ARROW_COUNT_ID +FD: net/minecraft/world/entity/LivingEntity/f_20941_ net/minecraft/world/entity/LivingEntity/DATA_STINGER_COUNT_ID +FD: net/minecraft/world/entity/LivingEntity/f_20942_ net/minecraft/world/entity/LivingEntity/SLEEPING_POS_ID +FD: net/minecraft/world/entity/LivingEntity/f_20943_ net/minecraft/world/entity/LivingEntity/attributes +FD: net/minecraft/world/entity/LivingEntity/f_20944_ net/minecraft/world/entity/LivingEntity/combatTracker +FD: net/minecraft/world/entity/LivingEntity/f_20945_ net/minecraft/world/entity/LivingEntity/activeEffects +FD: net/minecraft/world/entity/LivingEntity/f_20946_ net/minecraft/world/entity/LivingEntity/lastHandItemStacks +FD: net/minecraft/world/entity/LivingEntity/f_20947_ net/minecraft/world/entity/LivingEntity/lastArmorItemStacks +FD: net/minecraft/world/entity/LivingEntity/f_20948_ net/minecraft/world/entity/LivingEntity/effectsDirty +FD: net/minecraft/world/entity/LivingEntity/f_20949_ net/minecraft/world/entity/LivingEntity/lastHurtByMob +FD: net/minecraft/world/entity/LivingEntity/f_20950_ net/minecraft/world/entity/LivingEntity/lastHurtByMobTimestamp +FD: net/minecraft/world/entity/LivingEntity/f_20951_ net/minecraft/world/entity/LivingEntity/lastHurtMob +FD: net/minecraft/world/entity/LivingEntity/f_20952_ net/minecraft/world/entity/LivingEntity/lastHurtMobTimestamp +FD: net/minecraft/world/entity/LivingEntity/f_20953_ net/minecraft/world/entity/LivingEntity/speed +FD: net/minecraft/world/entity/LivingEntity/f_20954_ net/minecraft/world/entity/LivingEntity/noJumpDelay +FD: net/minecraft/world/entity/LivingEntity/f_20955_ net/minecraft/world/entity/LivingEntity/absorptionAmount +FD: net/minecraft/world/entity/LivingEntity/f_20956_ net/minecraft/world/entity/LivingEntity/lastPos +FD: net/minecraft/world/entity/LivingEntity/f_20957_ net/minecraft/world/entity/LivingEntity/lastClimbablePos +FD: net/minecraft/world/entity/LivingEntity/f_20958_ net/minecraft/world/entity/LivingEntity/lastDamageSource +FD: net/minecraft/world/entity/LivingEntity/f_20959_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_SOUL_SPEED_UUID +FD: net/minecraft/world/entity/LivingEntity/f_20960_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_SPRINTING +FD: net/minecraft/world/entity/LivingEntity/f_20961_ net/minecraft/world/entity/LivingEntity/DATA_HEALTH_ID +FD: net/minecraft/world/entity/LivingEntity/f_20962_ net/minecraft/world/entity/LivingEntity/DATA_EFFECT_COLOR_ID +FD: net/minecraft/world/entity/LivingEntity/f_20963_ net/minecraft/world/entity/LivingEntity/DATA_EFFECT_AMBIENCE_ID +FD: net/minecraft/world/entity/LivingEntity/f_217034_ net/minecraft/world/entity/LivingEntity/skipDropExperience +FD: net/minecraft/world/entity/LivingEntity/f_267362_ net/minecraft/world/entity/LivingEntity/walkAnimation +FD: net/minecraft/world/entity/LivingEntity/f_271312_ net/minecraft/world/entity/LivingEntity/MAX_HEAD_ROTATION_RELATIVE_TO_BODY +FD: net/minecraft/world/entity/LivingEntity/f_286963_ net/minecraft/world/entity/LivingEntity/BASE_JUMP_POWER +FD: net/minecraft/world/entity/LivingEntity$1/f_21337_ net/minecraft/world/entity/LivingEntity$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot$Type +FD: net/minecraft/world/entity/LivingEntity$1/f_21338_ net/minecraft/world/entity/LivingEntity$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot +FD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196626_ net/minecraft/world/entity/LivingEntity$Fallsounds/small +FD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196627_ net/minecraft/world/entity/LivingEntity$Fallsounds/big +FD: net/minecraft/world/entity/Marker/f_147247_ net/minecraft/world/entity/Marker/DATA_TAG +FD: net/minecraft/world/entity/Marker/f_147248_ net/minecraft/world/entity/Marker/data +FD: net/minecraft/world/entity/Mob/f_147261_ net/minecraft/world/entity/Mob/MAX_PICKUP_LOOT_CHANCE +FD: net/minecraft/world/entity/Mob/f_147262_ net/minecraft/world/entity/Mob/MAX_ENCHANTED_ARMOR_CHANCE +FD: net/minecraft/world/entity/Mob/f_147263_ net/minecraft/world/entity/Mob/MAX_ENCHANTED_WEAPON_CHANCE +FD: net/minecraft/world/entity/Mob/f_147264_ net/minecraft/world/entity/Mob/LEASH_TAG +FD: net/minecraft/world/entity/Mob/f_147265_ net/minecraft/world/entity/Mob/PICKUP_REACH +FD: net/minecraft/world/entity/Mob/f_147266_ net/minecraft/world/entity/Mob/MOB_FLAG_NO_AI +FD: net/minecraft/world/entity/Mob/f_147267_ net/minecraft/world/entity/Mob/MOB_FLAG_LEFTHANDED +FD: net/minecraft/world/entity/Mob/f_147268_ net/minecraft/world/entity/Mob/MOB_FLAG_AGGRESSIVE +FD: net/minecraft/world/entity/Mob/f_147269_ net/minecraft/world/entity/Mob/MAX_WEARING_ARMOR_CHANCE +FD: net/minecraft/world/entity/Mob/f_182333_ net/minecraft/world/entity/Mob/DEFAULT_EQUIPMENT_DROP_CHANCE +FD: net/minecraft/world/entity/Mob/f_186008_ net/minecraft/world/entity/Mob/UPDATE_GOAL_SELECTOR_EVERY_N_TICKS +FD: net/minecraft/world/entity/Mob/f_21340_ net/minecraft/world/entity/Mob/DATA_MOB_FLAGS_ID +FD: net/minecraft/world/entity/Mob/f_21341_ net/minecraft/world/entity/Mob/restrictRadius +FD: net/minecraft/world/entity/Mob/f_21342_ net/minecraft/world/entity/Mob/moveControl +FD: net/minecraft/world/entity/Mob/f_21343_ net/minecraft/world/entity/Mob/jumpControl +FD: net/minecraft/world/entity/Mob/f_21344_ net/minecraft/world/entity/Mob/navigation +FD: net/minecraft/world/entity/Mob/f_21345_ net/minecraft/world/entity/Mob/goalSelector +FD: net/minecraft/world/entity/Mob/f_21346_ net/minecraft/world/entity/Mob/targetSelector +FD: net/minecraft/world/entity/Mob/f_21347_ net/minecraft/world/entity/Mob/handDropChances +FD: net/minecraft/world/entity/Mob/f_21348_ net/minecraft/world/entity/Mob/armorDropChances +FD: net/minecraft/world/entity/Mob/f_21349_ net/minecraft/world/entity/Mob/sensing +FD: net/minecraft/world/entity/Mob/f_21350_ net/minecraft/world/entity/Mob/handItems +FD: net/minecraft/world/entity/Mob/f_21351_ net/minecraft/world/entity/Mob/armorItems +FD: net/minecraft/world/entity/Mob/f_21352_ net/minecraft/world/entity/Mob/canPickUpLoot +FD: net/minecraft/world/entity/Mob/f_21353_ net/minecraft/world/entity/Mob/persistenceRequired +FD: net/minecraft/world/entity/Mob/f_21354_ net/minecraft/world/entity/Mob/pathfindingMalus +FD: net/minecraft/world/entity/Mob/f_21355_ net/minecraft/world/entity/Mob/lootTable +FD: net/minecraft/world/entity/Mob/f_21356_ net/minecraft/world/entity/Mob/lootTableSeed +FD: net/minecraft/world/entity/Mob/f_21357_ net/minecraft/world/entity/Mob/leashHolder +FD: net/minecraft/world/entity/Mob/f_21358_ net/minecraft/world/entity/Mob/delayedLeashHolderId +FD: net/minecraft/world/entity/Mob/f_21359_ net/minecraft/world/entity/Mob/leashInfoTag +FD: net/minecraft/world/entity/Mob/f_21360_ net/minecraft/world/entity/Mob/restrictCenter +FD: net/minecraft/world/entity/Mob/f_21361_ net/minecraft/world/entity/Mob/bodyRotationControl +FD: net/minecraft/world/entity/Mob/f_21362_ net/minecraft/world/entity/Mob/target +FD: net/minecraft/world/entity/Mob/f_21363_ net/minecraft/world/entity/Mob/ambientSoundTime +FD: net/minecraft/world/entity/Mob/f_21364_ net/minecraft/world/entity/Mob/xpReward +FD: net/minecraft/world/entity/Mob/f_21365_ net/minecraft/world/entity/Mob/lookControl +FD: net/minecraft/world/entity/Mob/f_217047_ net/minecraft/world/entity/Mob/PRESERVE_ITEM_DROP_CHANCE +FD: net/minecraft/world/entity/Mob/f_217048_ net/minecraft/world/entity/Mob/ITEM_PICKUP_REACH +FD: net/minecraft/world/entity/Mob$1/f_21575_ net/minecraft/world/entity/Mob$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot$Type +FD: net/minecraft/world/entity/Mob$1/f_21576_ net/minecraft/world/entity/Mob$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot +FD: net/minecraft/world/entity/MobCategory/$VALUES net/minecraft/world/entity/MobCategory/$VALUES +FD: net/minecraft/world/entity/MobCategory/AMBIENT net/minecraft/world/entity/MobCategory/AMBIENT +FD: net/minecraft/world/entity/MobCategory/AXOLOTLS net/minecraft/world/entity/MobCategory/AXOLOTLS +FD: net/minecraft/world/entity/MobCategory/CREATURE net/minecraft/world/entity/MobCategory/CREATURE +FD: net/minecraft/world/entity/MobCategory/MISC net/minecraft/world/entity/MobCategory/MISC +FD: net/minecraft/world/entity/MobCategory/MONSTER net/minecraft/world/entity/MobCategory/MONSTER +FD: net/minecraft/world/entity/MobCategory/UNDERGROUND_WATER_CREATURE net/minecraft/world/entity/MobCategory/UNDERGROUND_WATER_CREATURE +FD: net/minecraft/world/entity/MobCategory/WATER_AMBIENT net/minecraft/world/entity/MobCategory/WATER_AMBIENT +FD: net/minecraft/world/entity/MobCategory/WATER_CREATURE net/minecraft/world/entity/MobCategory/WATER_CREATURE +FD: net/minecraft/world/entity/MobCategory/f_21584_ net/minecraft/world/entity/MobCategory/CODEC +FD: net/minecraft/world/entity/MobCategory/f_21586_ net/minecraft/world/entity/MobCategory/max +FD: net/minecraft/world/entity/MobCategory/f_21587_ net/minecraft/world/entity/MobCategory/isFriendly +FD: net/minecraft/world/entity/MobCategory/f_21588_ net/minecraft/world/entity/MobCategory/isPersistent +FD: net/minecraft/world/entity/MobCategory/f_21589_ net/minecraft/world/entity/MobCategory/name +FD: net/minecraft/world/entity/MobCategory/f_21590_ net/minecraft/world/entity/MobCategory/noDespawnDistance +FD: net/minecraft/world/entity/MobCategory/f_21591_ net/minecraft/world/entity/MobCategory/despawnDistance +FD: net/minecraft/world/entity/MobSpawnType/$VALUES net/minecraft/world/entity/MobSpawnType/$VALUES +FD: net/minecraft/world/entity/MobSpawnType/BREEDING net/minecraft/world/entity/MobSpawnType/BREEDING +FD: net/minecraft/world/entity/MobSpawnType/BUCKET net/minecraft/world/entity/MobSpawnType/BUCKET +FD: net/minecraft/world/entity/MobSpawnType/CHUNK_GENERATION net/minecraft/world/entity/MobSpawnType/CHUNK_GENERATION +FD: net/minecraft/world/entity/MobSpawnType/COMMAND net/minecraft/world/entity/MobSpawnType/COMMAND +FD: net/minecraft/world/entity/MobSpawnType/CONVERSION net/minecraft/world/entity/MobSpawnType/CONVERSION +FD: net/minecraft/world/entity/MobSpawnType/DISPENSER net/minecraft/world/entity/MobSpawnType/DISPENSER +FD: net/minecraft/world/entity/MobSpawnType/EVENT net/minecraft/world/entity/MobSpawnType/EVENT +FD: net/minecraft/world/entity/MobSpawnType/JOCKEY net/minecraft/world/entity/MobSpawnType/JOCKEY +FD: net/minecraft/world/entity/MobSpawnType/MOB_SUMMONED net/minecraft/world/entity/MobSpawnType/MOB_SUMMONED +FD: net/minecraft/world/entity/MobSpawnType/NATURAL net/minecraft/world/entity/MobSpawnType/NATURAL +FD: net/minecraft/world/entity/MobSpawnType/PATROL net/minecraft/world/entity/MobSpawnType/PATROL +FD: net/minecraft/world/entity/MobSpawnType/REINFORCEMENT net/minecraft/world/entity/MobSpawnType/REINFORCEMENT +FD: net/minecraft/world/entity/MobSpawnType/SPAWNER net/minecraft/world/entity/MobSpawnType/SPAWNER +FD: net/minecraft/world/entity/MobSpawnType/SPAWN_EGG net/minecraft/world/entity/MobSpawnType/SPAWN_EGG +FD: net/minecraft/world/entity/MobSpawnType/STRUCTURE net/minecraft/world/entity/MobSpawnType/STRUCTURE +FD: net/minecraft/world/entity/MobSpawnType/TRIGGERED net/minecraft/world/entity/MobSpawnType/TRIGGERED +FD: net/minecraft/world/entity/MobType/f_21640_ net/minecraft/world/entity/MobType/UNDEFINED +FD: net/minecraft/world/entity/MobType/f_21641_ net/minecraft/world/entity/MobType/UNDEAD +FD: net/minecraft/world/entity/MobType/f_21642_ net/minecraft/world/entity/MobType/ARTHROPOD +FD: net/minecraft/world/entity/MobType/f_21643_ net/minecraft/world/entity/MobType/ILLAGER +FD: net/minecraft/world/entity/MobType/f_21644_ net/minecraft/world/entity/MobType/WATER +FD: net/minecraft/world/entity/MoverType/$VALUES net/minecraft/world/entity/MoverType/$VALUES +FD: net/minecraft/world/entity/MoverType/PISTON net/minecraft/world/entity/MoverType/PISTON +FD: net/minecraft/world/entity/MoverType/PLAYER net/minecraft/world/entity/MoverType/PLAYER +FD: net/minecraft/world/entity/MoverType/SELF net/minecraft/world/entity/MoverType/SELF +FD: net/minecraft/world/entity/MoverType/SHULKER net/minecraft/world/entity/MoverType/SHULKER +FD: net/minecraft/world/entity/MoverType/SHULKER_BOX net/minecraft/world/entity/MoverType/SHULKER_BOX +FD: net/minecraft/world/entity/NeutralMob/f_147283_ net/minecraft/world/entity/NeutralMob/TAG_ANGER_TIME +FD: net/minecraft/world/entity/NeutralMob/f_147284_ net/minecraft/world/entity/NeutralMob/TAG_ANGRY_AT +FD: net/minecraft/world/entity/PathfinderMob/f_186010_ net/minecraft/world/entity/PathfinderMob/DEFAULT_WALK_TARGET_VALUE +FD: net/minecraft/world/entity/Pose/$VALUES net/minecraft/world/entity/Pose/$VALUES +FD: net/minecraft/world/entity/Pose/CROAKING net/minecraft/world/entity/Pose/CROAKING +FD: net/minecraft/world/entity/Pose/CROUCHING net/minecraft/world/entity/Pose/CROUCHING +FD: net/minecraft/world/entity/Pose/DIGGING net/minecraft/world/entity/Pose/DIGGING +FD: net/minecraft/world/entity/Pose/DYING net/minecraft/world/entity/Pose/DYING +FD: net/minecraft/world/entity/Pose/EMERGING net/minecraft/world/entity/Pose/EMERGING +FD: net/minecraft/world/entity/Pose/FALL_FLYING net/minecraft/world/entity/Pose/FALL_FLYING +FD: net/minecraft/world/entity/Pose/LONG_JUMPING net/minecraft/world/entity/Pose/LONG_JUMPING +FD: net/minecraft/world/entity/Pose/ROARING net/minecraft/world/entity/Pose/ROARING +FD: net/minecraft/world/entity/Pose/SITTING net/minecraft/world/entity/Pose/SITTING +FD: net/minecraft/world/entity/Pose/SLEEPING net/minecraft/world/entity/Pose/SLEEPING +FD: net/minecraft/world/entity/Pose/SNIFFING net/minecraft/world/entity/Pose/SNIFFING +FD: net/minecraft/world/entity/Pose/SPIN_ATTACK net/minecraft/world/entity/Pose/SPIN_ATTACK +FD: net/minecraft/world/entity/Pose/STANDING net/minecraft/world/entity/Pose/STANDING +FD: net/minecraft/world/entity/Pose/SWIMMING net/minecraft/world/entity/Pose/SWIMMING +FD: net/minecraft/world/entity/Pose/USING_TONGUE net/minecraft/world/entity/Pose/USING_TONGUE +FD: net/minecraft/world/entity/RelativeMovement/$VALUES net/minecraft/world/entity/RelativeMovement/$VALUES +FD: net/minecraft/world/entity/RelativeMovement/X net/minecraft/world/entity/RelativeMovement/X +FD: net/minecraft/world/entity/RelativeMovement/X_ROT net/minecraft/world/entity/RelativeMovement/X_ROT +FD: net/minecraft/world/entity/RelativeMovement/Y net/minecraft/world/entity/RelativeMovement/Y +FD: net/minecraft/world/entity/RelativeMovement/Y_ROT net/minecraft/world/entity/RelativeMovement/Y_ROT +FD: net/minecraft/world/entity/RelativeMovement/Z net/minecraft/world/entity/RelativeMovement/Z +FD: net/minecraft/world/entity/RelativeMovement/f_263649_ net/minecraft/world/entity/RelativeMovement/bit +FD: net/minecraft/world/entity/RelativeMovement/f_263752_ net/minecraft/world/entity/RelativeMovement/ALL +FD: net/minecraft/world/entity/RelativeMovement/f_263774_ net/minecraft/world/entity/RelativeMovement/ROTATION +FD: net/minecraft/world/entity/SlotAccess/f_147290_ net/minecraft/world/entity/SlotAccess/NULL +FD: net/minecraft/world/entity/SlotAccess$2/f_147315_ net/minecraft/world/entity/SlotAccess$2/val$inventory +FD: net/minecraft/world/entity/SlotAccess$2/f_147316_ net/minecraft/world/entity/SlotAccess$2/val$id +FD: net/minecraft/world/entity/SlotAccess$2/f_147317_ net/minecraft/world/entity/SlotAccess$2/val$validator +FD: net/minecraft/world/entity/SlotAccess$3/f_147325_ net/minecraft/world/entity/SlotAccess$3/val$entity +FD: net/minecraft/world/entity/SlotAccess$3/f_147326_ net/minecraft/world/entity/SlotAccess$3/val$slot +FD: net/minecraft/world/entity/SlotAccess$3/f_147327_ net/minecraft/world/entity/SlotAccess$3/val$validator +FD: net/minecraft/world/entity/SpawnPlacements/f_21750_ net/minecraft/world/entity/SpawnPlacements/DATA_BY_TYPE +FD: net/minecraft/world/entity/SpawnPlacements$Data/f_21767_ net/minecraft/world/entity/SpawnPlacements$Data/heightMap +FD: net/minecraft/world/entity/SpawnPlacements$Data/f_21768_ net/minecraft/world/entity/SpawnPlacements$Data/placement +FD: net/minecraft/world/entity/SpawnPlacements$Data/f_21769_ net/minecraft/world/entity/SpawnPlacements$Data/predicate +FD: net/minecraft/world/entity/SpawnPlacements$Type/$VALUES net/minecraft/world/entity/SpawnPlacements$Type/$VALUES +FD: net/minecraft/world/entity/SpawnPlacements$Type/IN_LAVA net/minecraft/world/entity/SpawnPlacements$Type/IN_LAVA +FD: net/minecraft/world/entity/SpawnPlacements$Type/IN_WATER net/minecraft/world/entity/SpawnPlacements$Type/IN_WATER +FD: net/minecraft/world/entity/SpawnPlacements$Type/NO_RESTRICTIONS net/minecraft/world/entity/SpawnPlacements$Type/NO_RESTRICTIONS +FD: net/minecraft/world/entity/SpawnPlacements$Type/ON_GROUND net/minecraft/world/entity/SpawnPlacements$Type/ON_GROUND +FD: net/minecraft/world/entity/TamableAnimal/f_21798_ net/minecraft/world/entity/TamableAnimal/DATA_FLAGS_ID +FD: net/minecraft/world/entity/TamableAnimal/f_21799_ net/minecraft/world/entity/TamableAnimal/DATA_OWNERUUID_ID +FD: net/minecraft/world/entity/TamableAnimal/f_21800_ net/minecraft/world/entity/TamableAnimal/orderedToSit +FD: net/minecraft/world/entity/WalkAnimationState/f_267358_ net/minecraft/world/entity/WalkAnimationState/position +FD: net/minecraft/world/entity/WalkAnimationState/f_267371_ net/minecraft/world/entity/WalkAnimationState/speed +FD: net/minecraft/world/entity/WalkAnimationState/f_267406_ net/minecraft/world/entity/WalkAnimationState/speedOld +FD: net/minecraft/world/entity/ai/Brain/f_147338_ net/minecraft/world/entity/ai/Brain/SCHEDULE_UPDATE_DELAY +FD: net/minecraft/world/entity/ai/Brain/f_21841_ net/minecraft/world/entity/ai/Brain/LOGGER +FD: net/minecraft/world/entity/ai/Brain/f_21842_ net/minecraft/world/entity/ai/Brain/codec +FD: net/minecraft/world/entity/ai/Brain/f_21843_ net/minecraft/world/entity/ai/Brain/memories +FD: net/minecraft/world/entity/ai/Brain/f_21844_ net/minecraft/world/entity/ai/Brain/sensors +FD: net/minecraft/world/entity/ai/Brain/f_21845_ net/minecraft/world/entity/ai/Brain/availableBehaviorsByPriority +FD: net/minecraft/world/entity/ai/Brain/f_21846_ net/minecraft/world/entity/ai/Brain/schedule +FD: net/minecraft/world/entity/ai/Brain/f_21847_ net/minecraft/world/entity/ai/Brain/activityRequirements +FD: net/minecraft/world/entity/ai/Brain/f_21848_ net/minecraft/world/entity/ai/Brain/activityMemoriesToEraseWhenStopped +FD: net/minecraft/world/entity/ai/Brain/f_21849_ net/minecraft/world/entity/ai/Brain/coreActivities +FD: net/minecraft/world/entity/ai/Brain/f_21850_ net/minecraft/world/entity/ai/Brain/activeActivities +FD: net/minecraft/world/entity/ai/Brain/f_21851_ net/minecraft/world/entity/ai/Brain/defaultActivity +FD: net/minecraft/world/entity/ai/Brain/f_21852_ net/minecraft/world/entity/ai/Brain/lastScheduleUpdate +FD: net/minecraft/world/entity/ai/Brain$1/f_21977_ net/minecraft/world/entity/ai/Brain$1/val$memoryTypes +FD: net/minecraft/world/entity/ai/Brain$1/f_21978_ net/minecraft/world/entity/ai/Brain$1/val$sensorTypes +FD: net/minecraft/world/entity/ai/Brain$1/f_21979_ net/minecraft/world/entity/ai/Brain$1/val$codecReference +FD: net/minecraft/world/entity/ai/Brain$MemoryValue/f_22030_ net/minecraft/world/entity/ai/Brain$MemoryValue/type +FD: net/minecraft/world/entity/ai/Brain$MemoryValue/f_22031_ net/minecraft/world/entity/ai/Brain$MemoryValue/value +FD: net/minecraft/world/entity/ai/Brain$Provider/f_22062_ net/minecraft/world/entity/ai/Brain$Provider/memoryTypes +FD: net/minecraft/world/entity/ai/Brain$Provider/f_22063_ net/minecraft/world/entity/ai/Brain$Provider/sensorTypes +FD: net/minecraft/world/entity/ai/Brain$Provider/f_22064_ net/minecraft/world/entity/ai/Brain$Provider/codec +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_147357_ net/minecraft/world/entity/ai/attributes/Attribute/MAX_NAME_LENGTH +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_22076_ net/minecraft/world/entity/ai/attributes/Attribute/defaultValue +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_22077_ net/minecraft/world/entity/ai/attributes/Attribute/syncable +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_22078_ net/minecraft/world/entity/ai/attributes/Attribute/descriptionId +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22088_ net/minecraft/world/entity/ai/attributes/AttributeInstance/attribute +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22089_ net/minecraft/world/entity/ai/attributes/AttributeInstance/modifiersByOperation +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22090_ net/minecraft/world/entity/ai/attributes/AttributeInstance/modifierById +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22091_ net/minecraft/world/entity/ai/attributes/AttributeInstance/permanentModifiers +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22092_ net/minecraft/world/entity/ai/attributes/AttributeInstance/baseValue +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22093_ net/minecraft/world/entity/ai/attributes/AttributeInstance/dirty +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22094_ net/minecraft/world/entity/ai/attributes/AttributeInstance/cachedValue +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22095_ net/minecraft/world/entity/ai/attributes/AttributeInstance/onDirty +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22138_ net/minecraft/world/entity/ai/attributes/AttributeMap/LOGGER +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22139_ net/minecraft/world/entity/ai/attributes/AttributeMap/attributes +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22140_ net/minecraft/world/entity/ai/attributes/AttributeMap/dirtyAttributes +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22141_ net/minecraft/world/entity/ai/attributes/AttributeMap/supplier +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22189_ net/minecraft/world/entity/ai/attributes/AttributeModifier/LOGGER +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22190_ net/minecraft/world/entity/ai/attributes/AttributeModifier/amount +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22191_ net/minecraft/world/entity/ai/attributes/AttributeModifier/operation +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22192_ net/minecraft/world/entity/ai/attributes/AttributeModifier/nameGetter +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22193_ net/minecraft/world/entity/ai/attributes/AttributeModifier/id +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/$VALUES net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/$VALUES +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ADDITION net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ADDITION +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_BASE net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_BASE +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_TOTAL net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_TOTAL +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/f_22227_ net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/OPERATIONS +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/f_22228_ net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/value +FD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/f_22241_ net/minecraft/world/entity/ai/attributes/AttributeSupplier/instances +FD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/f_22262_ net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/builder +FD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/f_22263_ net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/instanceFrozen +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22276_ net/minecraft/world/entity/ai/attributes/Attributes/MAX_HEALTH +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22277_ net/minecraft/world/entity/ai/attributes/Attributes/FOLLOW_RANGE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22278_ net/minecraft/world/entity/ai/attributes/Attributes/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22279_ net/minecraft/world/entity/ai/attributes/Attributes/MOVEMENT_SPEED +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22280_ net/minecraft/world/entity/ai/attributes/Attributes/FLYING_SPEED +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22281_ net/minecraft/world/entity/ai/attributes/Attributes/ATTACK_DAMAGE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22282_ net/minecraft/world/entity/ai/attributes/Attributes/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22283_ net/minecraft/world/entity/ai/attributes/Attributes/ATTACK_SPEED +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22284_ net/minecraft/world/entity/ai/attributes/Attributes/ARMOR +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22285_ net/minecraft/world/entity/ai/attributes/Attributes/ARMOR_TOUGHNESS +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22286_ net/minecraft/world/entity/ai/attributes/Attributes/LUCK +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22287_ net/minecraft/world/entity/ai/attributes/Attributes/SPAWN_REINFORCEMENTS_CHANCE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22288_ net/minecraft/world/entity/ai/attributes/Attributes/JUMP_STRENGTH +FD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/f_22293_ net/minecraft/world/entity/ai/attributes/DefaultAttributes/LOGGER +FD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/f_22294_ net/minecraft/world/entity/ai/attributes/DefaultAttributes/SUPPLIERS +FD: net/minecraft/world/entity/ai/attributes/RangedAttribute/f_22307_ net/minecraft/world/entity/ai/attributes/RangedAttribute/minValue +FD: net/minecraft/world/entity/ai/attributes/RangedAttribute/f_22308_ net/minecraft/world/entity/ai/attributes/RangedAttribute/maxValue +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi/f_147363_ net/minecraft/world/entity/ai/behavior/AcquirePoi/SCAN_RANGE +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_147373_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/MIN_INTERVAL_INCREASE +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_147374_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/MAX_INTERVAL_INCREASE +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_147375_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/MAX_RETRY_PATHFINDING_INTERVAL +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22373_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/random +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22374_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/previousAttemptTimestamp +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22375_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/nextScheduledAttemptTimestamp +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22376_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/currentDelay +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_147376_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/BREED_RANGE +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_147377_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/MIN_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_147378_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/MAX_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_22387_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/partnerType +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_22388_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/speedModifier +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_22389_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/spawnChildAtTime +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147379_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_MIN_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147380_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_MAX_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147382_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_DISTANCE_VERTICAL +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147383_ net/minecraft/world/entity/ai/behavior/AnimalPanic/speedMultiplier +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_196637_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_DISTANCE_HORIZONTAL +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_273842_ net/minecraft/world/entity/ai/behavior/AnimalPanic/shouldPanic +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_273847_ net/minecraft/world/entity/ai/behavior/AnimalPanic/DEFAULT_SHOULD_PANIC_PREDICATE +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_147431_ net/minecraft/world/entity/ai/behavior/Behavior/DEFAULT_DURATION +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22522_ net/minecraft/world/entity/ai/behavior/Behavior/entryCondition +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22523_ net/minecraft/world/entity/ai/behavior/Behavior/status +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22524_ net/minecraft/world/entity/ai/behavior/Behavior/endTimestamp +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22525_ net/minecraft/world/entity/ai/behavior/Behavior/minDuration +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22526_ net/minecraft/world/entity/ai/behavior/Behavior/maxDuration +FD: net/minecraft/world/entity/ai/behavior/Behavior$Status/$VALUES net/minecraft/world/entity/ai/behavior/Behavior$Status/$VALUES +FD: net/minecraft/world/entity/ai/behavior/Behavior$Status/RUNNING net/minecraft/world/entity/ai/behavior/Behavior$Status/RUNNING +FD: net/minecraft/world/entity/ai/behavior/Behavior$Status/STOPPED net/minecraft/world/entity/ai/behavior/Behavior$Status/STOPPED +FD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/f_22673_ net/minecraft/world/entity/ai/behavior/BlockPosTracker/blockPos +FD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/f_22674_ net/minecraft/world/entity/ai/behavior/BlockPosTracker/centerPosition +FD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/f_22682_ net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/currentRaid +FD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/f_147460_ net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/cooldownTicks +FD: net/minecraft/world/entity/ai/behavior/Croak/f_217139_ net/minecraft/world/entity/ai/behavior/Croak/CROAK_TICKS +FD: net/minecraft/world/entity/ai/behavior/Croak/f_217140_ net/minecraft/world/entity/ai/behavior/Croak/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/Croak/f_217141_ net/minecraft/world/entity/ai/behavior/Croak/croakCounter +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/f_147479_ net/minecraft/world/entity/ai/behavior/CrossbowAttack/TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/f_22771_ net/minecraft/world/entity/ai/behavior/CrossbowAttack/attackDelay +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/f_22772_ net/minecraft/world/entity/ai/behavior/CrossbowAttack/crossbowState +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/$VALUES net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/$VALUES +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGED net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGED +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGING net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGING +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/READY_TO_ATTACK net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/READY_TO_ATTACK +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/UNCHARGED net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/UNCHARGED +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256804_ net/minecraft/world/entity/ai/behavior/DoNothing/maxDuration +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256875_ net/minecraft/world/entity/ai/behavior/DoNothing/status +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256900_ net/minecraft/world/entity/ai/behavior/DoNothing/minDuration +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256966_ net/minecraft/world/entity/ai/behavior/DoNothing/endTimestamp +FD: net/minecraft/world/entity/ai/behavior/EntityTracker/f_22846_ net/minecraft/world/entity/ai/behavior/EntityTracker/entity +FD: net/minecraft/world/entity/ai/behavior/EntityTracker/f_22847_ net/minecraft/world/entity/ai/behavior/EntityTracker/trackEyeHeight +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_147482_ net/minecraft/world/entity/ai/behavior/FollowTemptation/TEMPTATION_COOLDOWN +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_147483_ net/minecraft/world/entity/ai/behavior/FollowTemptation/CLOSE_ENOUGH_DIST +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_147484_ net/minecraft/world/entity/ai/behavior/FollowTemptation/speedModifier +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_283928_ net/minecraft/world/entity/ai/behavior/FollowTemptation/closeEnoughDistance +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22868_ net/minecraft/world/entity/ai/behavior/GateBehavior/exitErasedMemories +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22869_ net/minecraft/world/entity/ai/behavior/GateBehavior/orderPolicy +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22870_ net/minecraft/world/entity/ai/behavior/GateBehavior/runningPolicy +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22871_ net/minecraft/world/entity/ai/behavior/GateBehavior/behaviors +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_256759_ net/minecraft/world/entity/ai/behavior/GateBehavior/entryCondition +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_256778_ net/minecraft/world/entity/ai/behavior/GateBehavior/status +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/$VALUES net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/$VALUES +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ORDERED net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ORDERED +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/SHUFFLED net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/SHUFFLED +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/f_22924_ net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/consumer +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/$VALUES net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/$VALUES +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/RUN_ONE net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/RUN_ONE +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/TRY_ALL net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/TRY_ALL +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147546_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/THROW_GIFT_AT_DISTANCE +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147547_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/MIN_TIME_BETWEEN_GIFTS +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147548_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/MAX_TIME_BETWEEN_GIFTS +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147549_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/TIME_TO_DELAY_FOR_HEAD_TO_FINISH_TURNING +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147550_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/GIFTS +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147551_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_22987_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/timeUntilNextGift +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_22988_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/giftGivenDuringThisRun +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_22989_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/timeSinceStart +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217188_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/CLOSE_ENOUGH_DISTANCE_TO_TARGET +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217189_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/ITEM_PICKUP_COOLDOWN_AFTER_THROWING +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217190_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/targetPositionGetter +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217191_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/speedModifier +FD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/f_147555_ net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/TICKS_UNTIL_TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/f_23096_ net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/speedModifier +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_147558_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_147559_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/HARVEST_DURATION +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23159_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/aboveFarmlandPos +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23160_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/nextOkStartTime +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23161_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/timeWorkedSoFar +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23162_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/validFarmlandAroundVillager +FD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/f_147585_ net/minecraft/world/entity/ai/behavior/InteractWithDoor/COOLDOWN_BEFORE_RERUNNING_IN_SAME_NODE +FD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/f_147586_ net/minecraft/world/entity/ai/behavior/InteractWithDoor/SKIP_CLOSING_DOOR_IF_FURTHER_AWAY_THAN +FD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/f_147587_ net/minecraft/world/entity/ai/behavior/InteractWithDoor/MAX_DISTANCE_TO_HOLD_DOOR_OPEN_FOR_OTHER_MOBS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147588_ net/minecraft/world/entity/ai/behavior/JumpOnBed/MAX_TIME_TO_REACH_BED +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147589_ net/minecraft/world/entity/ai/behavior/JumpOnBed/MIN_JUMPS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147590_ net/minecraft/world/entity/ai/behavior/JumpOnBed/MAX_JUMPS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147591_ net/minecraft/world/entity/ai/behavior/JumpOnBed/COOLDOWN_BETWEEN_JUMPS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23329_ net/minecraft/world/entity/ai/behavior/JumpOnBed/speedModifier +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23330_ net/minecraft/world/entity/ai/behavior/JumpOnBed/targetBed +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23331_ net/minecraft/world/entity/ai/behavior/JumpOnBed/remainingTimeToReachBed +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23332_ net/minecraft/world/entity/ai/behavior/JumpOnBed/remainingJumps +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23333_ net/minecraft/world/entity/ai/behavior/JumpOnBed/remainingCooldownUntilNextJump +FD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/f_147592_ net/minecraft/world/entity/ai/behavior/LongJumpMidJump/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/f_147593_ net/minecraft/world/entity/ai/behavior/LongJumpMidJump/timeBetweenLongJumps +FD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/f_147594_ net/minecraft/world/entity/ai/behavior/LongJumpMidJump/landingSound +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217259_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/preferredBlockTag +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217260_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/preferredBlocksChance +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217261_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/notPrefferedJumpCandidates +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217262_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/currentlyWantingPreferredOnes +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147622_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147623_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/FIND_JUMP_TRIES +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147624_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/PREPARE_JUMP_DURATION +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147625_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/MIN_PATHFIND_DISTANCE_TO_VALID_JUMP +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147626_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/timeBetweenLongJumps +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147627_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/maxLongJumpHeight +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147628_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/maxLongJumpWidth +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147629_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/maxJumpVelocity +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147630_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/jumpCandidates +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147631_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/initialPosition +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147632_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/chosenJump +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147633_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/findJumpTries +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147634_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/prepareJumpStart +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147635_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/getJumpSound +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_217289_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ALLOWED_ANGLES +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_217290_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/acceptableLandingSpot +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/f_147687_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/jumpTarget +FD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/f_23432_ net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/speedModifier +FD: net/minecraft/world/entity/ai/behavior/Mount/f_147698_ net/minecraft/world/entity/ai/behavior/Mount/CLOSE_ENOUGH_TO_START_RIDING_DIST +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_147699_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/MAX_COOLDOWN_BEFORE_RETRYING +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23567_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/remainingCooldown +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23568_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/path +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23569_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/lastTargetPos +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23570_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/speedModifier +FD: net/minecraft/world/entity/ai/behavior/OneShot/f_256915_ net/minecraft/world/entity/ai/behavior/OneShot/status +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147700_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/MAX_FLEE_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147701_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/MAX_FLEE_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147702_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/FLEE_SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147703_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/CHASE_SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147704_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/MAX_CHASERS_PER_TARGET +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147705_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/AVERAGE_WAIT_TIME_BETWEEN_RUNS +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147713_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147714_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/getCooldownOnFail +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147715_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/minRamDistance +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147716_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/maxRamDistance +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147717_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/walkSpeed +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147718_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ramTargeting +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147719_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ramPrepareTime +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147720_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/getPrepareRamSound +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147721_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/reachedRamPositionTimestamp +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147722_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ramCandidate +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/f_147790_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/startPosition +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/f_147791_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/targetPosition +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/f_147792_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/target +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147800_ net/minecraft/world/entity/ai/behavior/RamTarget/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147801_ net/minecraft/world/entity/ai/behavior/RamTarget/RAM_SPEED_FORCE_FACTOR +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147802_ net/minecraft/world/entity/ai/behavior/RamTarget/getTimeBetweenRams +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147803_ net/minecraft/world/entity/ai/behavior/RamTarget/ramTargeting +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147805_ net/minecraft/world/entity/ai/behavior/RamTarget/speed +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147806_ net/minecraft/world/entity/ai/behavior/RamTarget/getKnockbackForce +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147807_ net/minecraft/world/entity/ai/behavior/RamTarget/ramDirection +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147808_ net/minecraft/world/entity/ai/behavior/RamTarget/getImpactSound +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_217340_ net/minecraft/world/entity/ai/behavior/RamTarget/getHornBreakSound +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_243800_ net/minecraft/world/entity/ai/behavior/RandomLookAround/minPitch +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_243864_ net/minecraft/world/entity/ai/behavior/RandomLookAround/maxYaw +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_244014_ net/minecraft/world/entity/ai/behavior/RandomLookAround/interval +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_244277_ net/minecraft/world/entity/ai/behavior/RandomLookAround/pitchRange +FD: net/minecraft/world/entity/ai/behavior/RandomStroll/f_147849_ net/minecraft/world/entity/ai/behavior/RandomStroll/MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/RandomStroll/f_147850_ net/minecraft/world/entity/ai/behavior/RandomStroll/MAX_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/RandomStroll/f_256848_ net/minecraft/world/entity/ai/behavior/RandomStroll/SWIM_XY_DISTANCE_TIERS +FD: net/minecraft/world/entity/ai/behavior/RingBell/f_147862_ net/minecraft/world/entity/ai/behavior/RingBell/RING_BELL_FROM_DISTANCE +FD: net/minecraft/world/entity/ai/behavior/RingBell/f_147863_ net/minecraft/world/entity/ai/behavior/RingBell/BELL_RING_CHANCE +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147880_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/CACHE_TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147881_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/BATCH_SIZE +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147882_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/RATE +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147883_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/OK_DISTANCE_SQR +FD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/f_256928_ net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/ticksUntilNextStart +FD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/f_257030_ net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/interval +FD: net/minecraft/world/entity/ai/behavior/SetHiddenState/f_147896_ net/minecraft/world/entity/ai/behavior/SetHiddenState/HIDE_TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/f_147903_ net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/PROJECTILE_ATTACK_RANGE_BUFFER +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_147915_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/MAX_LOOK_TIME +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_147916_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/STARTING_LOOK_TIME +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24090_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/playerItemStack +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24091_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayItems +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24092_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/cycleCounter +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24093_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayIndex +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24094_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/lookTime +FD: net/minecraft/world/entity/ai/behavior/ShufflingList/f_147917_ net/minecraft/world/entity/ai/behavior/ShufflingList/entries +FD: net/minecraft/world/entity/ai/behavior/ShufflingList/f_147918_ net/minecraft/world/entity/ai/behavior/ShufflingList/random +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/f_147934_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/data +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/f_147935_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/weight +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/f_147936_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/randWeight +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/f_147948_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/val$elementCodec +FD: net/minecraft/world/entity/ai/behavior/SleepInBed/f_147968_ net/minecraft/world/entity/ai/behavior/SleepInBed/COOLDOWN_AFTER_BEING_WOKEN +FD: net/minecraft/world/entity/ai/behavior/SleepInBed/f_24149_ net/minecraft/world/entity/ai/behavior/SleepInBed/nextOkStartTime +FD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/f_147969_ net/minecraft/world/entity/ai/behavior/SocializeAtBell/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/f_147978_ net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/TIMEOUT_TO_GET_WITHIN_ATTACK_RANGE +FD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/f_147993_ net/minecraft/world/entity/ai/behavior/StrollAroundPoi/MIN_TIME_BETWEEN_STROLLS +FD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/f_147994_ net/minecraft/world/entity/ai/behavior/StrollAroundPoi/STROLL_MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/f_147995_ net/minecraft/world/entity/ai/behavior/StrollAroundPoi/STROLL_MAX_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/Swim/f_24381_ net/minecraft/world/entity/ai/behavior/Swim/chance +FD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/f_147996_ net/minecraft/world/entity/ai/behavior/TradeWithVillager/INTERACT_DIST_SQR +FD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/f_147997_ net/minecraft/world/entity/ai/behavior/TradeWithVillager/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/f_24406_ net/minecraft/world/entity/ai/behavior/TradeWithVillager/trades +FD: net/minecraft/world/entity/ai/behavior/TryFindLand/f_217413_ net/minecraft/world/entity/ai/behavior/TryFindLand/COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_148035_ net/minecraft/world/entity/ai/behavior/UseBonemeal/BONEMEALING_DURATION +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24461_ net/minecraft/world/entity/ai/behavior/UseBonemeal/nextWorkCycleTime +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24462_ net/minecraft/world/entity/ai/behavior/UseBonemeal/lastBonemealingSession +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24463_ net/minecraft/world/entity/ai/behavior/UseBonemeal/timeWorkedSoFar +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24464_ net/minecraft/world/entity/ai/behavior/UseBonemeal/cropPos +FD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/f_148036_ net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/MAX_DISTANCE +FD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/f_148037_ net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/f_148038_ net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/MAX_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/f_148039_ net/minecraft/world/entity/ai/behavior/VillagerCalmDown/SAFE_DISTANCE_FROM_DANGER +FD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/f_148040_ net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/STROLL_SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/f_148042_ net/minecraft/world/entity/ai/behavior/VillagerMakeLove/INTERACT_DIST_SQR +FD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/f_148043_ net/minecraft/world/entity/ai/behavior/VillagerMakeLove/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/f_24613_ net/minecraft/world/entity/ai/behavior/VillagerMakeLove/birthTimestamp +FD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/f_24786_ net/minecraft/world/entity/ai/behavior/WorkAtComposter/COMPOSTABLE_ITEMS +FD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/f_148046_ net/minecraft/world/entity/ai/behavior/WorkAtPoi/CHECK_COOLDOWN +FD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/f_148047_ net/minecraft/world/entity/ai/behavior/WorkAtPoi/DISTANCE +FD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/f_24804_ net/minecraft/world/entity/ai/behavior/WorkAtPoi/lastCheck +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/f_256790_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/f_256727_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/val$resolvedBuilder +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/f_256864_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/val$a +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/f_256903_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/val$debugString +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/f_256801_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/val$aTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/f_256877_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/f_256964_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/f_256823_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/val$func +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/f_256860_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/f_256984_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/val$tTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_256841_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/val$bTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_256881_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_256955_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_257008_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/val$aTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256745_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$t2Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256767_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256857_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$t1Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256907_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$t3Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_257044_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256722_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t3Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256741_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256807_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t1Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256946_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_257031_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t4Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_257048_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t2Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/f_256758_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/val$condition +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/f_257021_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/val$dependentTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/f_256777_ net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/value +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/f_256902_ net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/brain +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/f_257027_ net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/memoryType +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/f_257038_ net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/memory +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/f_256930_ net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/memory +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/f_256883_ net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/memory +FD: net/minecraft/world/entity/ai/behavior/warden/Roar/f_217572_ net/minecraft/world/entity/ai/behavior/warden/Roar/TICKS_BEFORE_PLAYING_ROAR_SOUND +FD: net/minecraft/world/entity/ai/behavior/warden/Roar/f_217573_ net/minecraft/world/entity/ai/behavior/warden/Roar/ROAR_ANGER_INCREASE +FD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/f_217644_ net/minecraft/world/entity/ai/behavior/warden/Sniffing/ANGER_FROM_SNIFFING_MAX_DISTANCE_XZ +FD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/f_217645_ net/minecraft/world/entity/ai/behavior/warden/Sniffing/ANGER_FROM_SNIFFING_MAX_DISTANCE_Y +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217675_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/COOLDOWN +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217676_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/DISTANCE_XZ +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217677_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/DISTANCE_Y +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217678_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/KNOCKBACK_VERTICAL +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217679_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/KNOCKBACK_HORIZONTAL +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217680_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/TICKS_BEFORE_PLAYING_SOUND +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217681_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/DURATION +FD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/f_217735_ net/minecraft/world/entity/ai/behavior/warden/TryToSniff/SNIFF_COOLDOWN +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_148048_ net/minecraft/world/entity/ai/control/BodyRotationControl/HEAD_STABLE_ANGLE +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_148049_ net/minecraft/world/entity/ai/control/BodyRotationControl/DELAY_UNTIL_STARTING_TO_FACE_FORWARD +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_148050_ net/minecraft/world/entity/ai/control/BodyRotationControl/HOW_LONG_IT_TAKES_TO_FACE_FORWARD +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_24875_ net/minecraft/world/entity/ai/control/BodyRotationControl/mob +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_24876_ net/minecraft/world/entity/ai/control/BodyRotationControl/headStableTime +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_24877_ net/minecraft/world/entity/ai/control/BodyRotationControl/lastStableYHeadRot +FD: net/minecraft/world/entity/ai/control/FlyingMoveControl/f_24890_ net/minecraft/world/entity/ai/control/FlyingMoveControl/maxTurn +FD: net/minecraft/world/entity/ai/control/FlyingMoveControl/f_24891_ net/minecraft/world/entity/ai/control/FlyingMoveControl/hoversInPlace +FD: net/minecraft/world/entity/ai/control/JumpControl/f_24897_ net/minecraft/world/entity/ai/control/JumpControl/jump +FD: net/minecraft/world/entity/ai/control/JumpControl/f_24898_ net/minecraft/world/entity/ai/control/JumpControl/mob +FD: net/minecraft/world/entity/ai/control/LookControl/f_186068_ net/minecraft/world/entity/ai/control/LookControl/lookAtCooldown +FD: net/minecraft/world/entity/ai/control/LookControl/f_24937_ net/minecraft/world/entity/ai/control/LookControl/mob +FD: net/minecraft/world/entity/ai/control/LookControl/f_24938_ net/minecraft/world/entity/ai/control/LookControl/yMaxRotSpeed +FD: net/minecraft/world/entity/ai/control/LookControl/f_24939_ net/minecraft/world/entity/ai/control/LookControl/xMaxRotAngle +FD: net/minecraft/world/entity/ai/control/LookControl/f_24941_ net/minecraft/world/entity/ai/control/LookControl/wantedX +FD: net/minecraft/world/entity/ai/control/LookControl/f_24942_ net/minecraft/world/entity/ai/control/LookControl/wantedY +FD: net/minecraft/world/entity/ai/control/LookControl/f_24943_ net/minecraft/world/entity/ai/control/LookControl/wantedZ +FD: net/minecraft/world/entity/ai/control/MoveControl/f_148053_ net/minecraft/world/entity/ai/control/MoveControl/MIN_SPEED +FD: net/minecraft/world/entity/ai/control/MoveControl/f_148054_ net/minecraft/world/entity/ai/control/MoveControl/MIN_SPEED_SQR +FD: net/minecraft/world/entity/ai/control/MoveControl/f_148055_ net/minecraft/world/entity/ai/control/MoveControl/MAX_TURN +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24974_ net/minecraft/world/entity/ai/control/MoveControl/mob +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24975_ net/minecraft/world/entity/ai/control/MoveControl/wantedX +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24976_ net/minecraft/world/entity/ai/control/MoveControl/wantedY +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24977_ net/minecraft/world/entity/ai/control/MoveControl/wantedZ +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24978_ net/minecraft/world/entity/ai/control/MoveControl/speedModifier +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24979_ net/minecraft/world/entity/ai/control/MoveControl/strafeForwards +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24980_ net/minecraft/world/entity/ai/control/MoveControl/strafeRight +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24981_ net/minecraft/world/entity/ai/control/MoveControl/operation +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/$VALUES net/minecraft/world/entity/ai/control/MoveControl$Operation/$VALUES +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/JUMPING net/minecraft/world/entity/ai/control/MoveControl$Operation/JUMPING +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/MOVE_TO net/minecraft/world/entity/ai/control/MoveControl$Operation/MOVE_TO +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/STRAFE net/minecraft/world/entity/ai/control/MoveControl$Operation/STRAFE +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/WAIT net/minecraft/world/entity/ai/control/MoveControl$Operation/WAIT +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/f_148057_ net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/maxYRotFromCenter +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/f_148058_ net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/HEAD_TILT_X +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/f_148059_ net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/HEAD_TILT_Y +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148064_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/maxTurnX +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148065_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/maxTurnY +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148066_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/inWaterSpeedModifier +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148067_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/outsideWaterSpeedModifier +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148068_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/applyGravity +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_243703_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/FULL_SPEED_TURN_THRESHOLD +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_244312_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/STOP_TURN_THRESHOLD +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25015_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/mob +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25016_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/toAvoid +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25017_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/maxDist +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25018_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/path +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25019_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/pathNav +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25020_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/avoidClass +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25021_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/avoidPredicate +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25022_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/predicateOnAvoidEntity +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25023_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/walkSpeedModifier +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25024_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/sprintSpeedModifier +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25025_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/avoidEntityTargeting +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25056_ net/minecraft/world/entity/ai/goal/BegGoal/wolf +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25057_ net/minecraft/world/entity/ai/goal/BegGoal/player +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25058_ net/minecraft/world/entity/ai/goal/BegGoal/level +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25059_ net/minecraft/world/entity/ai/goal/BegGoal/lookDistance +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25060_ net/minecraft/world/entity/ai/goal/BegGoal/lookTime +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25061_ net/minecraft/world/entity/ai/goal/BegGoal/begTargeting +FD: net/minecraft/world/entity/ai/goal/BoatGoals/$VALUES net/minecraft/world/entity/ai/goal/BoatGoals/$VALUES +FD: net/minecraft/world/entity/ai/goal/BoatGoals/GO_IN_BOAT_DIRECTION net/minecraft/world/entity/ai/goal/BoatGoals/GO_IN_BOAT_DIRECTION +FD: net/minecraft/world/entity/ai/goal/BoatGoals/GO_TO_BOAT net/minecraft/world/entity/ai/goal/BoatGoals/GO_TO_BOAT +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_148080_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/DEFAULT_DOOR_BREAK_TIME +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25082_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/breakTime +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25083_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/lastBreakProgress +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25084_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/doorBreakTime +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25085_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/validDifficulties +FD: net/minecraft/world/entity/ai/goal/BreathAirGoal/f_25101_ net/minecraft/world/entity/ai/goal/BreathAirGoal/mob +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25113_ net/minecraft/world/entity/ai/goal/BreedGoal/animal +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25114_ net/minecraft/world/entity/ai/goal/BreedGoal/level +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25115_ net/minecraft/world/entity/ai/goal/BreedGoal/partner +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25116_ net/minecraft/world/entity/ai/goal/BreedGoal/PARTNER_TARGETING +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25117_ net/minecraft/world/entity/ai/goal/BreedGoal/partnerClass +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25118_ net/minecraft/world/entity/ai/goal/BreedGoal/loveTime +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25119_ net/minecraft/world/entity/ai/goal/BreedGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/f_25133_ net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/cat +FD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/f_25147_ net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/cat +FD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/f_204052_ net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/mob +FD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/f_204053_ net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/level +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25162_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/STEPS_TO_CHECK +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25163_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/dolphin +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25164_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/interval +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25165_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/breached +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25186_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/passed +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25187_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/doorOpenDirX +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25188_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/doorOpenDirZ +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25189_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/mob +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25190_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/doorPos +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25191_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/hasDoor +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_148085_ net/minecraft/world/entity/ai/goal/EatBlockGoal/EAT_ANIMATION_TICKS +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25201_ net/minecraft/world/entity/ai/goal/EatBlockGoal/IS_TALL_GRASS +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25202_ net/minecraft/world/entity/ai/goal/EatBlockGoal/mob +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25203_ net/minecraft/world/entity/ai/goal/EatBlockGoal/level +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25204_ net/minecraft/world/entity/ai/goal/EatBlockGoal/eatAnimationTick +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25214_ net/minecraft/world/entity/ai/goal/FleeSunGoal/mob +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25215_ net/minecraft/world/entity/ai/goal/FleeSunGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25216_ net/minecraft/world/entity/ai/goal/FleeSunGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25217_ net/minecraft/world/entity/ai/goal/FleeSunGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25218_ net/minecraft/world/entity/ai/goal/FleeSunGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25219_ net/minecraft/world/entity/ai/goal/FleeSunGoal/level +FD: net/minecraft/world/entity/ai/goal/FloatGoal/f_25228_ net/minecraft/world/entity/ai/goal/FloatGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25233_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25234_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25235_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/following +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25236_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/currentGoal +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_148086_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/INTERVAL_TICKS +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_25245_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_25246_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_25247_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/nextStartTick +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25261_ net/minecraft/world/entity/ai/goal/FollowMobGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25262_ net/minecraft/world/entity/ai/goal/FollowMobGoal/followPredicate +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25263_ net/minecraft/world/entity/ai/goal/FollowMobGoal/followingMob +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25264_ net/minecraft/world/entity/ai/goal/FollowMobGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25265_ net/minecraft/world/entity/ai/goal/FollowMobGoal/navigation +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25266_ net/minecraft/world/entity/ai/goal/FollowMobGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25267_ net/minecraft/world/entity/ai/goal/FollowMobGoal/stopDistance +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25268_ net/minecraft/world/entity/ai/goal/FollowMobGoal/oldWaterCost +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25269_ net/minecraft/world/entity/ai/goal/FollowMobGoal/areaSize +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148087_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/TELEPORT_WHEN_DISTANCE_IS +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148088_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/MIN_HORIZONTAL_DISTANCE_FROM_PLAYER_WHEN_TELEPORTING +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148089_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/MAX_HORIZONTAL_DISTANCE_FROM_PLAYER_WHEN_TELEPORTING +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148090_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/MAX_VERTICAL_DISTANCE_FROM_PLAYER_WHEN_TELEPORTING +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25283_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/tamable +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25284_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/owner +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25285_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/level +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25286_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25287_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/navigation +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25288_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25289_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/stopDistance +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25290_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/startDistance +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25291_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/oldWaterCost +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25292_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canFly +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_148091_ net/minecraft/world/entity/ai/goal/FollowParentGoal/HORIZONTAL_SCAN_RANGE +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_148092_ net/minecraft/world/entity/ai/goal/FollowParentGoal/VERTICAL_SCAN_RANGE +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_148093_ net/minecraft/world/entity/ai/goal/FollowParentGoal/DONT_FOLLOW_IF_CLOSER_THAN +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25314_ net/minecraft/world/entity/ai/goal/FollowParentGoal/animal +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25315_ net/minecraft/world/entity/ai/goal/FollowParentGoal/parent +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25316_ net/minecraft/world/entity/ai/goal/FollowParentGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25317_ net/minecraft/world/entity/ai/goal/FollowParentGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/Goal/f_25326_ net/minecraft/world/entity/ai/goal/Goal/flags +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/$VALUES net/minecraft/world/entity/ai/goal/Goal$Flag/$VALUES +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/JUMP net/minecraft/world/entity/ai/goal/Goal$Flag/JUMP +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/LOOK net/minecraft/world/entity/ai/goal/Goal$Flag/LOOK +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/MOVE net/minecraft/world/entity/ai/goal/Goal$Flag/MOVE +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/TARGET net/minecraft/world/entity/ai/goal/Goal$Flag/TARGET +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_148095_ net/minecraft/world/entity/ai/goal/GoalSelector/tickCount +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25342_ net/minecraft/world/entity/ai/goal/GoalSelector/LOGGER +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25343_ net/minecraft/world/entity/ai/goal/GoalSelector/NO_GOAL +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25344_ net/minecraft/world/entity/ai/goal/GoalSelector/lockedFlags +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25345_ net/minecraft/world/entity/ai/goal/GoalSelector/availableGoals +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25346_ net/minecraft/world/entity/ai/goal/GoalSelector/profiler +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25347_ net/minecraft/world/entity/ai/goal/GoalSelector/disabledFlags +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25348_ net/minecraft/world/entity/ai/goal/GoalSelector/newGoalRate +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148106_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/POI_SECTION_SCAN_RADIUS +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148107_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/VILLAGER_SCAN_RADIUS +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148108_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/RANDOM_POS_XY_DISTANCE +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148109_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/RANDOM_POS_Y_DISTANCE +FD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/f_25479_ net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/entity +FD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/f_25480_ net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/owner +FD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/f_25481_ net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/isSittingOnShoulder +FD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/f_25488_ net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/f_25489_ net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/target +FD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/f_25490_ net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/yd +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_148114_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/CARAVAN_LIMIT +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_25497_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/llama +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_25498_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_25499_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/distCheckCounter +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_148115_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/DEFAULT_PROBABILITY +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_148116_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/onlyHorizontal +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25512_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/mob +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25513_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookAt +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25514_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookDistance +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25515_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/probability +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25516_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookAtType +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25517_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookAtContext +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25518_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookTime +FD: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/f_25536_ net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/villager +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_148125_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/COOLDOWN_BETWEEN_CAN_USE_CHECKS +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25540_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25541_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25542_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/followingTargetEvenIfNotSeen +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25543_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/path +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25544_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/pathedTargetX +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25545_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/pathedTargetY +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25546_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/pathedTargetZ +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25547_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ticksUntilNextPathRecalculation +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25548_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ticksUntilNextAttack +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25549_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/attackInterval +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25550_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/lastCanUseCheck +FD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/f_148126_ net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/f_148127_ net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/MAX_Y_DIST +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25573_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25574_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25575_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/path +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25576_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/poiPos +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25577_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/onlyAtNight +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25578_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/visited +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25579_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/distanceToPoi +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25580_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/canDealWithDoors +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_148128_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/GIVE_UP_TICKS +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_148129_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/STAY_TICKS +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_148130_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/INTERVAL_TICKS +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25598_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25599_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25600_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/nextStartTick +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25601_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/tryTicks +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25602_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/blockPos +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25603_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/verticalSearchStart +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25604_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/maxStayTicks +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25605_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/reachedTarget +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25606_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/searchRange +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25607_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/verticalSearchRange +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25627_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25628_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25629_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25630_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25631_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25638_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25639_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/target +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25640_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25641_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25642_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25643_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25644_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/within +FD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/f_25654_ net/minecraft/world/entity/ai/goal/OcelotAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/f_25655_ net/minecraft/world/entity/ai/goal/OcelotAttackGoal/target +FD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/f_25656_ net/minecraft/world/entity/ai/goal/OcelotAttackGoal/attackTime +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_148131_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/OFFER_TICKS +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25663_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/OFFER_TARGER_CONTEXT +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25664_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/golem +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25665_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/villager +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25666_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/tick +FD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/f_25675_ net/minecraft/world/entity/ai/goal/OpenDoorGoal/closeDoor +FD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/f_25676_ net/minecraft/world/entity/ai/goal/OpenDoorGoal/forgetTime +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_198171_ net/minecraft/world/entity/ai/goal/PanicGoal/WATER_CHECK_DISTANCE_VERTICAL +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25684_ net/minecraft/world/entity/ai/goal/PanicGoal/mob +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25685_ net/minecraft/world/entity/ai/goal/PanicGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25686_ net/minecraft/world/entity/ai/goal/PanicGoal/posX +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25687_ net/minecraft/world/entity/ai/goal/PanicGoal/posY +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25688_ net/minecraft/world/entity/ai/goal/PanicGoal/posZ +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25689_ net/minecraft/world/entity/ai/goal/PanicGoal/isRunning +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_148132_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_199887_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/RECRUITMENT_SEARCH_TICK_DELAY +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_199888_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/recruitmentTick +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_25704_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/mob +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25715_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/mob +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25716_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/relX +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25717_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/relZ +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25718_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/lookTime +FD: net/minecraft/world/entity/ai/goal/RandomStandGoal/f_244098_ net/minecraft/world/entity/ai/goal/RandomStandGoal/nextStand +FD: net/minecraft/world/entity/ai/goal/RandomStandGoal/f_244645_ net/minecraft/world/entity/ai/goal/RandomStandGoal/horse +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_148133_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/DEFAULT_INTERVAL +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25725_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/mob +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25726_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25727_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25728_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25729_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25730_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/interval +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25731_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/forceTrigger +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25732_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/checkNoActionTime +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25757_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25758_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/rangedAttackMob +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25759_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/target +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25760_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackTime +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25761_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25762_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/seeTime +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25763_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackIntervalMin +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25764_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackIntervalMax +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25765_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackRadius +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25766_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackRadiusSqr +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25782_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25783_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25784_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/attackIntervalMin +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25785_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/attackRadiusSqr +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25786_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/attackTime +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25787_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/seeTime +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25788_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/strafingClockwise +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25789_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/strafingBackwards +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25790_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/strafingTime +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25804_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/PATHFINDING_DELAY_RANGE +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25805_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25806_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/crossbowState +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25807_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25808_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/attackRadiusSqr +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25809_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/seeTime +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25810_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/attackDelay +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25811_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/updatePathDelay +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/$VALUES net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/$VALUES +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGED net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGED +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGING net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGING +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/READY_TO_ATTACK net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/READY_TO_ATTACK +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/UNCHARGED net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/UNCHARGED +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_148135_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/WAIT_AFTER_BLOCK_FOUND +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_25836_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/blockToRemove +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_25837_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/removerMob +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_25838_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/ticksSinceReachedGoal +FD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/f_25859_ net/minecraft/world/entity/ai/goal/RestrictSunGoal/mob +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25884_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/horse +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25885_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25886_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/posX +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25887_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/posY +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25888_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/posZ +FD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/f_25896_ net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/mob +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_148136_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/DISTANCE_THRESHOLD +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_25903_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/mob +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_25904_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/interval +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_25905_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/wantedPos +FD: net/minecraft/world/entity/ai/goal/SwellGoal/f_25916_ net/minecraft/world/entity/ai/goal/SwellGoal/creeper +FD: net/minecraft/world/entity/ai/goal/SwellGoal/f_25917_ net/minecraft/world/entity/ai/goal/SwellGoal/target +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_148137_ net/minecraft/world/entity/ai/goal/TemptGoal/targetingConditions +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25924_ net/minecraft/world/entity/ai/goal/TemptGoal/mob +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25925_ net/minecraft/world/entity/ai/goal/TemptGoal/player +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25926_ net/minecraft/world/entity/ai/goal/TemptGoal/TEMP_TARGETING +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25927_ net/minecraft/world/entity/ai/goal/TemptGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25928_ net/minecraft/world/entity/ai/goal/TemptGoal/px +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25929_ net/minecraft/world/entity/ai/goal/TemptGoal/py +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25930_ net/minecraft/world/entity/ai/goal/TemptGoal/pz +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25931_ net/minecraft/world/entity/ai/goal/TemptGoal/pRotX +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25932_ net/minecraft/world/entity/ai/goal/TemptGoal/pRotY +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25933_ net/minecraft/world/entity/ai/goal/TemptGoal/calmDown +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25934_ net/minecraft/world/entity/ai/goal/TemptGoal/isRunning +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25935_ net/minecraft/world/entity/ai/goal/TemptGoal/items +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25936_ net/minecraft/world/entity/ai/goal/TemptGoal/canScare +FD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/f_25956_ net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/mob +FD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/f_25962_ net/minecraft/world/entity/ai/goal/TryFindWaterGoal/mob +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25967_ net/minecraft/world/entity/ai/goal/UseItemGoal/mob +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25968_ net/minecraft/world/entity/ai/goal/UseItemGoal/item +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25969_ net/minecraft/world/entity/ai/goal/UseItemGoal/canUseSelector +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25970_ net/minecraft/world/entity/ai/goal/UseItemGoal/finishUsingSound +FD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/f_148149_ net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/PROBABILITY +FD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/f_25985_ net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/probability +FD: net/minecraft/world/entity/ai/goal/WrappedGoal/f_25994_ net/minecraft/world/entity/ai/goal/WrappedGoal/goal +FD: net/minecraft/world/entity/ai/goal/WrappedGoal/f_25995_ net/minecraft/world/entity/ai/goal/WrappedGoal/priority +FD: net/minecraft/world/entity/ai/goal/WrappedGoal/f_25996_ net/minecraft/world/entity/ai/goal/WrappedGoal/isRunning +FD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/f_26016_ net/minecraft/world/entity/ai/goal/ZombieAttackGoal/zombie +FD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/f_26017_ net/minecraft/world/entity/ai/goal/ZombieAttackGoal/raiseArmTicks +FD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/f_26025_ net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/golem +FD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/f_26026_ net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/potentialTarget +FD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/f_26027_ net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/attackTargeting +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_148150_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ALERT_RANGE_Y +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26032_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/HURT_BY_TARGETING +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26033_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/alertSameType +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26034_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/timestamp +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26035_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/toIgnoreDamage +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26036_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/toIgnoreAlert +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_199889_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/DEFAULT_RANDOM_INTERVAL +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26048_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/targetType +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26049_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/randomInterval +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26050_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/target +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26051_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/targetConditions +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/f_26074_ net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/canAttack +FD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/f_148153_ net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/DEFAULT_COOLDOWN +FD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/f_26085_ net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/cooldown +FD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/f_26095_ net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/tamableMob +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/f_26103_ net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/tameAnimal +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/f_26104_ net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/ownerLastHurtBy +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/f_26105_ net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/timestamp +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/f_26110_ net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/tameAnimal +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/f_26111_ net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/ownerLastHurt +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/f_26112_ net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/timestamp +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_148154_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/ALERT_RANGE_Y +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_26117_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_26118_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/alertOthersOfSameType +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_26119_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/lastHurtByPlayerTimestamp +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_148155_ net/minecraft/world/entity/ai/goal/target/TargetGoal/EMPTY_REACH_CACHE +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_148156_ net/minecraft/world/entity/ai/goal/target/TargetGoal/CAN_REACH_CACHE +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_148157_ net/minecraft/world/entity/ai/goal/target/TargetGoal/CANT_REACH_CACHE +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26131_ net/minecraft/world/entity/ai/goal/target/TargetGoal/mustReach +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26132_ net/minecraft/world/entity/ai/goal/target/TargetGoal/reachCache +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26133_ net/minecraft/world/entity/ai/goal/target/TargetGoal/reachCacheTime +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26134_ net/minecraft/world/entity/ai/goal/target/TargetGoal/unseenTicks +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26135_ net/minecraft/world/entity/ai/goal/target/TargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26136_ net/minecraft/world/entity/ai/goal/target/TargetGoal/mustSee +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26137_ net/minecraft/world/entity/ai/goal/target/TargetGoal/targetMob +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26138_ net/minecraft/world/entity/ai/goal/target/TargetGoal/unseenMemoryTicks +FD: net/minecraft/world/entity/ai/gossip/GossipContainer/f_148158_ net/minecraft/world/entity/ai/gossip/GossipContainer/DISCARD_THRESHOLD +FD: net/minecraft/world/entity/ai/gossip/GossipContainer/f_26156_ net/minecraft/world/entity/ai/gossip/GossipContainer/gossips +FD: net/minecraft/world/entity/ai/gossip/GossipContainer/f_262760_ net/minecraft/world/entity/ai/gossip/GossipContainer/LOGGER +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/f_26204_ net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/entries +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26228_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/target +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26229_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/type +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26230_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/value +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_262739_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/CODEC +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_262751_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/LIST_CODEC +FD: net/minecraft/world/entity/ai/gossip/GossipType/$VALUES net/minecraft/world/entity/ai/gossip/GossipType/$VALUES +FD: net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_NEGATIVE net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_NEGATIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_POSITIVE net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_POSITIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/MINOR_NEGATIVE net/minecraft/world/entity/ai/gossip/GossipType/MINOR_NEGATIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/MINOR_POSITIVE net/minecraft/world/entity/ai/gossip/GossipType/MINOR_POSITIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/TRADING net/minecraft/world/entity/ai/gossip/GossipType/TRADING +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_148182_ net/minecraft/world/entity/ai/gossip/GossipType/REPUTATION_CHANGE_PER_EVENT +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_148183_ net/minecraft/world/entity/ai/gossip/GossipType/REPUTATION_CHANGE_PER_EVERLASTING_MEMORY +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_148184_ net/minecraft/world/entity/ai/gossip/GossipType/REPUTATION_CHANGE_PER_TRADE +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_262726_ net/minecraft/world/entity/ai/gossip/GossipType/CODEC +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26273_ net/minecraft/world/entity/ai/gossip/GossipType/id +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26274_ net/minecraft/world/entity/ai/gossip/GossipType/weight +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26275_ net/minecraft/world/entity/ai/gossip/GossipType/max +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26276_ net/minecraft/world/entity/ai/gossip/GossipType/decayPerDay +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26277_ net/minecraft/world/entity/ai/gossip/GossipType/decayPerTransfer +FD: net/minecraft/world/entity/ai/memory/ExpirableValue/f_26296_ net/minecraft/world/entity/ai/memory/ExpirableValue/value +FD: net/minecraft/world/entity/ai/memory/ExpirableValue/f_26297_ net/minecraft/world/entity/ai/memory/ExpirableValue/timeToLive +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148194_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_ATTACKABLE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148195_ net/minecraft/world/entity/ai/memory/MemoryModuleType/PLAY_DEAD_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148196_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TEMPTING_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148197_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TEMPTATION_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148198_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_TEMPTED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148199_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LONG_JUMP_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148200_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LONG_JUMP_MID_JUMP +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148201_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HAS_HUNTING_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148202_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RAM_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148203_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RAM_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148204_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_LIVING_ENTITIES +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148205_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_LIVING_ENTITIES +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148206_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ATTACKABLE_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217766_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_IN_WATER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217767_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_PREGNANT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217768_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_PANICKING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217769_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ROAR_SOUND_DELAY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217770_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DIG_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217771_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ROAR_SOUND_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217772_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFF_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217773_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TOUCH_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217774_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VIBRATION_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217775_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SONIC_BOOM_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217776_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SONIC_BOOM_SOUND_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217777_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SONIC_BOOM_SOUND_DELAY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217778_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LIKED_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217779_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LIKED_NOTEBLOCK_POSITION +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217780_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LIKED_NOTEBLOCK_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217781_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ITEM_PICKUP_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217782_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ROAR_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217783_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DISTURBANCE_LOCATION +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217784_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RECENT_PROJECTILE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217785_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_SNIFFING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217786_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_EMERGING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_238182_ net/minecraft/world/entity/ai/memory/MemoryModuleType/UNREACHABLE_TONGUE_TARGETS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_244205_ net/minecraft/world/entity/ai/memory/MemoryModuleType/GAZE_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26323_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_HOSTILE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26324_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HIDING_PLACE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26325_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HEARD_BELL_TIME +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26326_ net/minecraft/world/entity/ai/memory/MemoryModuleType/CANT_REACH_WALK_TARGET_SINCE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26327_ net/minecraft/world/entity/ai/memory/MemoryModuleType/GOLEM_DETECTED_RECENTLY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26328_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LAST_SLEPT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26329_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LAST_WOKEN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26330_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LAST_WORKED_AT_POI +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26331_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26332_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_WANTED_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26333_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_NEMESIS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26334_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ANGRY_AT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26335_ net/minecraft/world/entity/ai/memory/MemoryModuleType/UNIVERSAL_ANGER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26336_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ADMIRING_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26337_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TIME_TRYING_TO_REACH_ADMIRE_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26338_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DISABLE_WALK_TO_ADMIRE_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26339_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ADMIRING_DISABLED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26340_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HUNTED_RECENTLY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26341_ net/minecraft/world/entity/ai/memory/MemoryModuleType/CELEBRATE_LOCATION +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26342_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DANCING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26343_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_HUNTABLE_HOGLIN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26344_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_BABY_HOGLIN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26345_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_TARGETABLE_PLAYER_NOT_WEARING_GOLD +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26346_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEARBY_ADULT_PIGLINS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26347_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT_PIGLINS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26348_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT_HOGLINS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26349_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DUMMY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26350_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT_PIGLIN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26351_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ZOMBIFIED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26352_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VISIBLE_ADULT_PIGLIN_COUNT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26353_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VISIBLE_ADULT_HOGLIN_COUNT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26354_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_PLAYER_HOLDING_WANTED_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26355_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ATE_RECENTLY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26356_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_REPELLENT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26357_ net/minecraft/world/entity/ai/memory/MemoryModuleType/PACIFIED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26358_ net/minecraft/world/entity/ai/memory/MemoryModuleType/codec +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26359_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HOME +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26360_ net/minecraft/world/entity/ai/memory/MemoryModuleType/JOB_SITE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26361_ net/minecraft/world/entity/ai/memory/MemoryModuleType/POTENTIAL_JOB_SITE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26362_ net/minecraft/world/entity/ai/memory/MemoryModuleType/MEETING_POINT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26363_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SECONDARY_JOB_SITE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26366_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VISIBLE_VILLAGER_BABIES +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26367_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_PLAYERS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26368_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26370_ net/minecraft/world/entity/ai/memory/MemoryModuleType/WALK_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26371_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LOOK_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26372_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ATTACK_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26373_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ATTACK_COOLING_DOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26374_ net/minecraft/world/entity/ai/memory/MemoryModuleType/INTERACTION_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26375_ net/minecraft/world/entity/ai/memory/MemoryModuleType/BREED_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26376_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RIDE_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26377_ net/minecraft/world/entity/ai/memory/MemoryModuleType/PATH +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26378_ net/minecraft/world/entity/ai/memory/MemoryModuleType/INTERACTABLE_DOORS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26379_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DOORS_TO_CLOSE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26380_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_BED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26381_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HURT_BY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26382_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HURT_BY_ENTITY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26383_ net/minecraft/world/entity/ai/memory/MemoryModuleType/AVOID_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271087_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_HAPPY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271134_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_SNIFFING_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271280_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_DIGGING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271415_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_EXPLORED_POSITIONS +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/$VALUES net/minecraft/world/entity/ai/memory/MemoryStatus/$VALUES +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/REGISTERED net/minecraft/world/entity/ai/memory/MemoryStatus/REGISTERED +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_ABSENT net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_ABSENT +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_PRESENT net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_PRESENT +FD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/f_186098_ net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/EMPTY +FD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/f_186099_ net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/nearbyEntities +FD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/f_186100_ net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lineOfSightTest +FD: net/minecraft/world/entity/ai/memory/WalkTarget/f_26405_ net/minecraft/world/entity/ai/memory/WalkTarget/target +FD: net/minecraft/world/entity/ai/memory/WalkTarget/f_26406_ net/minecraft/world/entity/ai/memory/WalkTarget/speedModifier +FD: net/minecraft/world/entity/ai/memory/WalkTarget/f_26407_ net/minecraft/world/entity/ai/memory/WalkTarget/closeEnoughDist +FD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/f_26446_ net/minecraft/world/entity/ai/navigation/GroundPathNavigation/avoidSun +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_148217_ net/minecraft/world/entity/ai/navigation/PathNavigation/MAX_TIME_RECOMPUTE +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_262273_ net/minecraft/world/entity/ai/navigation/PathNavigation/STUCK_CHECK_INTERVAL +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_262292_ net/minecraft/world/entity/ai/navigation/PathNavigation/STUCK_THRESHOLD_DISTANCE_FACTOR +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26494_ net/minecraft/world/entity/ai/navigation/PathNavigation/mob +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26495_ net/minecraft/world/entity/ai/navigation/PathNavigation/level +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26496_ net/minecraft/world/entity/ai/navigation/PathNavigation/path +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26497_ net/minecraft/world/entity/ai/navigation/PathNavigation/speedModifier +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26498_ net/minecraft/world/entity/ai/navigation/PathNavigation/tick +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26499_ net/minecraft/world/entity/ai/navigation/PathNavigation/lastStuckCheck +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26500_ net/minecraft/world/entity/ai/navigation/PathNavigation/lastStuckCheckPos +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26501_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutCachedNode +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26502_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutTimer +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26503_ net/minecraft/world/entity/ai/navigation/PathNavigation/lastTimeoutCheck +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26504_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutLimit +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26505_ net/minecraft/world/entity/ai/navigation/PathNavigation/maxDistanceToWaypoint +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26506_ net/minecraft/world/entity/ai/navigation/PathNavigation/hasDelayedRecomputation +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26507_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeLastRecompute +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26508_ net/minecraft/world/entity/ai/navigation/PathNavigation/nodeEvaluator +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26509_ net/minecraft/world/entity/ai/navigation/PathNavigation/targetPos +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26510_ net/minecraft/world/entity/ai/navigation/PathNavigation/reachRange +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26511_ net/minecraft/world/entity/ai/navigation/PathNavigation/maxVisitedNodesMultiplier +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26512_ net/minecraft/world/entity/ai/navigation/PathNavigation/pathFinder +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26513_ net/minecraft/world/entity/ai/navigation/PathNavigation/isStuck +FD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/f_26578_ net/minecraft/world/entity/ai/navigation/WallClimberNavigation/pathToPosition +FD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/f_26592_ net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/allowBreaching +FD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/f_148263_ net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/TARGET_DETECTION_DISTANCE +FD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/f_217807_ net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/TARGET_DETECTION_DISTANCE +FD: net/minecraft/world/entity/ai/sensing/GolemSensor/f_148277_ net/minecraft/world/entity/ai/sensing/GolemSensor/GOLEM_SCAN_RATE +FD: net/minecraft/world/entity/ai/sensing/GolemSensor/f_148278_ net/minecraft/world/entity/ai/sensing/GolemSensor/MEMORY_TIME_TO_LIVE +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_148279_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/CACHE_TIMEOUT +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_148280_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/BATCH_SIZE +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_148281_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/RATE +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_26676_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/batchCache +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_26677_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/triedCount +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_26678_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/lastUpdate +FD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/f_148282_ net/minecraft/world/entity/ai/sensing/NearestItemSensor/MAX_DISTANCE_TO_WANTED_ITEM +FD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/f_148283_ net/minecraft/world/entity/ai/sensing/NearestItemSensor/XZ_RANGE +FD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/f_148284_ net/minecraft/world/entity/ai/sensing/NearestItemSensor/Y_RANGE +FD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/f_148305_ net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/SCAN_RATE +FD: net/minecraft/world/entity/ai/sensing/Sensing/f_26784_ net/minecraft/world/entity/ai/sensing/Sensing/mob +FD: net/minecraft/world/entity/ai/sensing/Sensing/f_26785_ net/minecraft/world/entity/ai/sensing/Sensing/seen +FD: net/minecraft/world/entity/ai/sensing/Sensing/f_26786_ net/minecraft/world/entity/ai/sensing/Sensing/unseen +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148308_ net/minecraft/world/entity/ai/sensing/Sensor/TARGETING_RANGE +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148309_ net/minecraft/world/entity/ai/sensing/Sensor/DEFAULT_SCAN_RATE +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148310_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148311_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS_IGNORE_INVISIBILITY_TESTING +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_182375_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS_IGNORE_LINE_OF_SIGHT +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_182376_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS_IGNORE_INVISIBILITY_AND_LINE_OF_SIGHT +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26792_ net/minecraft/world/entity/ai/sensing/Sensor/RANDOM +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26793_ net/minecraft/world/entity/ai/sensing/Sensor/TARGET_CONDITIONS +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26794_ net/minecraft/world/entity/ai/sensing/Sensor/TARGET_CONDITIONS_IGNORE_INVISIBILITY_TESTING +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26795_ net/minecraft/world/entity/ai/sensing/Sensor/scanRate +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26796_ net/minecraft/world/entity/ai/sensing/Sensor/timeToTick +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_148315_ net/minecraft/world/entity/ai/sensing/SensorType/AXOLOTL_ATTACKABLES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_148316_ net/minecraft/world/entity/ai/sensing/SensorType/AXOLOTL_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_148317_ net/minecraft/world/entity/ai/sensing/SensorType/GOAT_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217822_ net/minecraft/world/entity/ai/sensing/SensorType/FROG_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217823_ net/minecraft/world/entity/ai/sensing/SensorType/FROG_ATTACKABLES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217824_ net/minecraft/world/entity/ai/sensing/SensorType/IS_IN_WATER +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217825_ net/minecraft/world/entity/ai/sensing/SensorType/WARDEN_ENTITY_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_243995_ net/minecraft/world/entity/ai/sensing/SensorType/CAMEL_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26809_ net/minecraft/world/entity/ai/sensing/SensorType/DUMMY +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26810_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_ITEMS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26811_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_LIVING_ENTITIES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26812_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_PLAYERS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26813_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_BED +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26814_ net/minecraft/world/entity/ai/sensing/SensorType/HURT_BY +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26815_ net/minecraft/world/entity/ai/sensing/SensorType/VILLAGER_HOSTILES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26816_ net/minecraft/world/entity/ai/sensing/SensorType/VILLAGER_BABIES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26817_ net/minecraft/world/entity/ai/sensing/SensorType/SECONDARY_POIS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26818_ net/minecraft/world/entity/ai/sensing/SensorType/GOLEM_DETECTED +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26819_ net/minecraft/world/entity/ai/sensing/SensorType/PIGLIN_SPECIFIC_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26820_ net/minecraft/world/entity/ai/sensing/SensorType/PIGLIN_BRUTE_SPECIFIC_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26821_ net/minecraft/world/entity/ai/sensing/SensorType/HOGLIN_SPECIFIC_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26822_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_ADULT +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26823_ net/minecraft/world/entity/ai/sensing/SensorType/factory +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_278390_ net/minecraft/world/entity/ai/sensing/SensorType/SNIFFER_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/TemptingSensor/f_148320_ net/minecraft/world/entity/ai/sensing/TemptingSensor/TEMPTATION_RANGE +FD: net/minecraft/world/entity/ai/sensing/TemptingSensor/f_148321_ net/minecraft/world/entity/ai/sensing/TemptingSensor/TEMPT_TARGETING +FD: net/minecraft/world/entity/ai/sensing/TemptingSensor/f_148322_ net/minecraft/world/entity/ai/sensing/TemptingSensor/temptations +FD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/f_26842_ net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ACCEPTABLE_DISTANCE_FROM_HOSTILES +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_148347_ net/minecraft/world/entity/ai/targeting/TargetingConditions/MIN_VISIBILITY_DISTANCE_FOR_INVISIBLE_TARGET +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_148348_ net/minecraft/world/entity/ai/targeting/TargetingConditions/isCombat +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_148349_ net/minecraft/world/entity/ai/targeting/TargetingConditions/checkLineOfSight +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26872_ net/minecraft/world/entity/ai/targeting/TargetingConditions/DEFAULT +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26873_ net/minecraft/world/entity/ai/targeting/TargetingConditions/range +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26878_ net/minecraft/world/entity/ai/targeting/TargetingConditions/testInvisible +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26879_ net/minecraft/world/entity/ai/targeting/TargetingConditions/selector +FD: net/minecraft/world/entity/ai/util/RandomPos/f_148535_ net/minecraft/world/entity/ai/util/RandomPos/RANDOM_POS_ATTEMPTS +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26985_ net/minecraft/world/entity/ai/village/ReputationEventType/ZOMBIE_VILLAGER_CURED +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26986_ net/minecraft/world/entity/ai/village/ReputationEventType/GOLEM_KILLED +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26987_ net/minecraft/world/entity/ai/village/ReputationEventType/VILLAGER_HURT +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26988_ net/minecraft/world/entity/ai/village/ReputationEventType/VILLAGER_KILLED +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26989_ net/minecraft/world/entity/ai/village/ReputationEventType/TRADE +FD: net/minecraft/world/entity/ai/village/ReputationEventType$1/f_26993_ net/minecraft/world/entity/ai/village/ReputationEventType$1/val$name +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_26997_ net/minecraft/world/entity/ai/village/VillageSiege/LOGGER +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_26998_ net/minecraft/world/entity/ai/village/VillageSiege/hasSetupSiege +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_26999_ net/minecraft/world/entity/ai/village/VillageSiege/siegeState +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27000_ net/minecraft/world/entity/ai/village/VillageSiege/zombiesToSpawn +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27001_ net/minecraft/world/entity/ai/village/VillageSiege/nextSpawnTime +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27002_ net/minecraft/world/entity/ai/village/VillageSiege/spawnX +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27003_ net/minecraft/world/entity/ai/village/VillageSiege/spawnY +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27004_ net/minecraft/world/entity/ai/village/VillageSiege/spawnZ +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/$VALUES net/minecraft/world/entity/ai/village/VillageSiege$State/$VALUES +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_CAN_ACTIVATE net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_CAN_ACTIVATE +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_DONE net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_DONE +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_TONIGHT net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_TONIGHT +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_148565_ net/minecraft/world/entity/ai/village/poi/PoiManager/MAX_VILLAGE_DISTANCE +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_148566_ net/minecraft/world/entity/ai/village/poi/PoiManager/VILLAGE_SECTION_SIZE +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_27029_ net/minecraft/world/entity/ai/village/poi/PoiManager/distanceTracker +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_27030_ net/minecraft/world/entity/ai/village/poi/PoiManager/loadedChunks +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/f_27199_ net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/this$0 +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/f_27200_ net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/levels +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/$VALUES net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/$VALUES +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ANY net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ANY +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/HAS_SPACE net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/HAS_SPACE +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/IS_OCCUPIED net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/IS_OCCUPIED +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/f_27214_ net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/test +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27227_ net/minecraft/world/entity/ai/village/poi/PoiRecord/pos +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27228_ net/minecraft/world/entity/ai/village/poi/PoiRecord/poiType +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27229_ net/minecraft/world/entity/ai/village/poi/PoiRecord/freeTickets +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27230_ net/minecraft/world/entity/ai/village/poi/PoiRecord/setDirty +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27260_ net/minecraft/world/entity/ai/village/poi/PoiSection/LOGGER +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27261_ net/minecraft/world/entity/ai/village/poi/PoiSection/records +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27262_ net/minecraft/world/entity/ai/village/poi/PoiSection/byType +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27263_ net/minecraft/world/entity/ai/village/poi/PoiSection/setDirty +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27264_ net/minecraft/world/entity/ai/village/poi/PoiSection/isValid +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_218034_ net/minecraft/world/entity/ai/village/poi/PoiType/NONE +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27325_ net/minecraft/world/entity/ai/village/poi/PoiType/matchingStates +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27326_ net/minecraft/world/entity/ai/village/poi/PoiType/maxTickets +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27328_ net/minecraft/world/entity/ai/village/poi/PoiType/validRange +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218047_ net/minecraft/world/entity/ai/village/poi/PoiTypes/ARMORER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218048_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BUTCHER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218049_ net/minecraft/world/entity/ai/village/poi/PoiTypes/CARTOGRAPHER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218050_ net/minecraft/world/entity/ai/village/poi/PoiTypes/CLERIC +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218051_ net/minecraft/world/entity/ai/village/poi/PoiTypes/FARMER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218052_ net/minecraft/world/entity/ai/village/poi/PoiTypes/FISHERMAN +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218053_ net/minecraft/world/entity/ai/village/poi/PoiTypes/FLETCHER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218054_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LEATHERWORKER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218055_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LIBRARIAN +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218056_ net/minecraft/world/entity/ai/village/poi/PoiTypes/MASON +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218057_ net/minecraft/world/entity/ai/village/poi/PoiTypes/SHEPHERD +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218058_ net/minecraft/world/entity/ai/village/poi/PoiTypes/TOOLSMITH +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218059_ net/minecraft/world/entity/ai/village/poi/PoiTypes/WEAPONSMITH +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218060_ net/minecraft/world/entity/ai/village/poi/PoiTypes/HOME +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218061_ net/minecraft/world/entity/ai/village/poi/PoiTypes/MEETING +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218062_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BEEHIVE +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218063_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BEE_NEST +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218064_ net/minecraft/world/entity/ai/village/poi/PoiTypes/NETHER_PORTAL +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218065_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LODESTONE +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218066_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LIGHTNING_ROD +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218068_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BEDS +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218069_ net/minecraft/world/entity/ai/village/poi/PoiTypes/CAULDRONS +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218070_ net/minecraft/world/entity/ai/village/poi/PoiTypes/TYPE_BY_STATE +FD: net/minecraft/world/entity/ambient/Bat/f_148698_ net/minecraft/world/entity/ambient/Bat/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/ambient/Bat/f_148699_ net/minecraft/world/entity/ambient/Bat/TICKS_PER_FLAP +FD: net/minecraft/world/entity/ambient/Bat/f_148700_ net/minecraft/world/entity/ambient/Bat/FLAG_RESTING +FD: net/minecraft/world/entity/ambient/Bat/f_27407_ net/minecraft/world/entity/ambient/Bat/DATA_ID_FLAGS +FD: net/minecraft/world/entity/ambient/Bat/f_27408_ net/minecraft/world/entity/ambient/Bat/BAT_RESTING_TARGETING +FD: net/minecraft/world/entity/ambient/Bat/f_27409_ net/minecraft/world/entity/ambient/Bat/targetPosition +FD: net/minecraft/world/entity/animal/AbstractFish/f_27458_ net/minecraft/world/entity/animal/AbstractFish/FROM_BUCKET +FD: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/f_27499_ net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/fish +FD: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/f_27503_ net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/fish +FD: net/minecraft/world/entity/animal/AbstractSchoolingFish/f_27520_ net/minecraft/world/entity/animal/AbstractSchoolingFish/leader +FD: net/minecraft/world/entity/animal/AbstractSchoolingFish/f_27521_ net/minecraft/world/entity/animal/AbstractSchoolingFish/schoolSize +FD: net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/f_27551_ net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/leader +FD: net/minecraft/world/entity/animal/Animal/f_148714_ net/minecraft/world/entity/animal/Animal/PARENT_AGE_AFTER_BREEDING +FD: net/minecraft/world/entity/animal/Animal/f_27554_ net/minecraft/world/entity/animal/Animal/inLove +FD: net/minecraft/world/entity/animal/Animal/f_27555_ net/minecraft/world/entity/animal/Animal/loveCause +FD: net/minecraft/world/entity/animal/Bee/f_148718_ net/minecraft/world/entity/animal/Bee/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/animal/Bee/f_148719_ net/minecraft/world/entity/animal/Bee/TICKS_PER_FLAP +FD: net/minecraft/world/entity/animal/Bee/f_148720_ net/minecraft/world/entity/animal/Bee/TAG_CROPS_GROWN_SINCE_POLLINATION +FD: net/minecraft/world/entity/animal/Bee/f_148721_ net/minecraft/world/entity/animal/Bee/TAG_CANNOT_ENTER_HIVE_TICKS +FD: net/minecraft/world/entity/animal/Bee/f_148722_ net/minecraft/world/entity/animal/Bee/TAG_TICKS_SINCE_POLLINATION +FD: net/minecraft/world/entity/animal/Bee/f_148723_ net/minecraft/world/entity/animal/Bee/TAG_HAS_STUNG +FD: net/minecraft/world/entity/animal/Bee/f_148724_ net/minecraft/world/entity/animal/Bee/TAG_HAS_NECTAR +FD: net/minecraft/world/entity/animal/Bee/f_148725_ net/minecraft/world/entity/animal/Bee/COOLDOWN_BEFORE_LOCATING_NEW_HIVE +FD: net/minecraft/world/entity/animal/Bee/f_148726_ net/minecraft/world/entity/animal/Bee/COOLDOWN_BEFORE_LOCATING_NEW_FLOWER +FD: net/minecraft/world/entity/animal/Bee/f_148727_ net/minecraft/world/entity/animal/Bee/TAG_FLOWER_POS +FD: net/minecraft/world/entity/animal/Bee/f_148728_ net/minecraft/world/entity/animal/Bee/TAG_HIVE_POS +FD: net/minecraft/world/entity/animal/Bee/f_148729_ net/minecraft/world/entity/animal/Bee/FLAG_ROLL +FD: net/minecraft/world/entity/animal/Bee/f_148730_ net/minecraft/world/entity/animal/Bee/FLAG_HAS_STUNG +FD: net/minecraft/world/entity/animal/Bee/f_148731_ net/minecraft/world/entity/animal/Bee/FLAG_HAS_NECTAR +FD: net/minecraft/world/entity/animal/Bee/f_148732_ net/minecraft/world/entity/animal/Bee/STING_DEATH_COUNTDOWN +FD: net/minecraft/world/entity/animal/Bee/f_148733_ net/minecraft/world/entity/animal/Bee/TICKS_BEFORE_GOING_TO_KNOWN_FLOWER +FD: net/minecraft/world/entity/animal/Bee/f_148734_ net/minecraft/world/entity/animal/Bee/TICKS_WITHOUT_NECTAR_BEFORE_GOING_HOME +FD: net/minecraft/world/entity/animal/Bee/f_148735_ net/minecraft/world/entity/animal/Bee/MIN_ATTACK_DIST +FD: net/minecraft/world/entity/animal/Bee/f_148736_ net/minecraft/world/entity/animal/Bee/MAX_CROPS_GROWABLE +FD: net/minecraft/world/entity/animal/Bee/f_148737_ net/minecraft/world/entity/animal/Bee/POISON_SECONDS_NORMAL +FD: net/minecraft/world/entity/animal/Bee/f_148738_ net/minecraft/world/entity/animal/Bee/POISON_SECONDS_HARD +FD: net/minecraft/world/entity/animal/Bee/f_148739_ net/minecraft/world/entity/animal/Bee/TOO_FAR_DISTANCE +FD: net/minecraft/world/entity/animal/Bee/f_148740_ net/minecraft/world/entity/animal/Bee/HIVE_CLOSE_ENOUGH_DISTANCE +FD: net/minecraft/world/entity/animal/Bee/f_148741_ net/minecraft/world/entity/animal/Bee/PATHFIND_TO_HIVE_WHEN_CLOSER_THAN +FD: net/minecraft/world/entity/animal/Bee/f_148742_ net/minecraft/world/entity/animal/Bee/HIVE_SEARCH_DISTANCE +FD: net/minecraft/world/entity/animal/Bee/f_27697_ net/minecraft/world/entity/animal/Bee/savedFlowerPos +FD: net/minecraft/world/entity/animal/Bee/f_27698_ net/minecraft/world/entity/animal/Bee/hivePos +FD: net/minecraft/world/entity/animal/Bee/f_27699_ net/minecraft/world/entity/animal/Bee/beePollinateGoal +FD: net/minecraft/world/entity/animal/Bee/f_27700_ net/minecraft/world/entity/animal/Bee/goToHiveGoal +FD: net/minecraft/world/entity/animal/Bee/f_27701_ net/minecraft/world/entity/animal/Bee/goToKnownFlowerGoal +FD: net/minecraft/world/entity/animal/Bee/f_27702_ net/minecraft/world/entity/animal/Bee/underWaterTicks +FD: net/minecraft/world/entity/animal/Bee/f_27703_ net/minecraft/world/entity/animal/Bee/DATA_FLAGS_ID +FD: net/minecraft/world/entity/animal/Bee/f_27704_ net/minecraft/world/entity/animal/Bee/DATA_REMAINING_ANGER_TIME +FD: net/minecraft/world/entity/animal/Bee/f_27705_ net/minecraft/world/entity/animal/Bee/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/Bee/f_27706_ net/minecraft/world/entity/animal/Bee/persistentAngerTarget +FD: net/minecraft/world/entity/animal/Bee/f_27707_ net/minecraft/world/entity/animal/Bee/rollAmount +FD: net/minecraft/world/entity/animal/Bee/f_27708_ net/minecraft/world/entity/animal/Bee/rollAmountO +FD: net/minecraft/world/entity/animal/Bee/f_27709_ net/minecraft/world/entity/animal/Bee/timeSinceSting +FD: net/minecraft/world/entity/animal/Bee/f_27710_ net/minecraft/world/entity/animal/Bee/ticksWithoutNectarSinceExitingHive +FD: net/minecraft/world/entity/animal/Bee/f_27711_ net/minecraft/world/entity/animal/Bee/stayOutOfHiveCountdown +FD: net/minecraft/world/entity/animal/Bee/f_27712_ net/minecraft/world/entity/animal/Bee/numCropsGrownSincePollination +FD: net/minecraft/world/entity/animal/Bee/f_27713_ net/minecraft/world/entity/animal/Bee/remainingCooldownBeforeLocatingNewHive +FD: net/minecraft/world/entity/animal/Bee/f_27714_ net/minecraft/world/entity/animal/Bee/remainingCooldownBeforeLocatingNewFlower +FD: net/minecraft/world/entity/animal/Bee$1/f_27941_ net/minecraft/world/entity/animal/Bee$1/this$0 +FD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/f_27949_ net/minecraft/world/entity/animal/Bee$BaseBeeGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/f_27957_ net/minecraft/world/entity/animal/Bee$BeeAttackGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/f_27970_ net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_148804_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/MAX_TRAVELLING_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_148805_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/MAX_BLACKLISTED_TARGETS +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_148806_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/TICKS_BEFORE_HIVE_DROP +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27979_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27980_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/travellingTicks +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27981_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/blacklistedTargets +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27982_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/lastPath +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27983_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/ticksStuck +FD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/f_148807_ net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/MAX_TRAVELLING_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/f_28009_ net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/f_28010_ net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/travellingTicks +FD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/f_148808_ net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/GROW_CHANCE +FD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/f_28021_ net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/f_28030_ net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/f_28038_ net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeLookControl/f_28056_ net/minecraft/world/entity/animal/Bee$BeeLookControl/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148812_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MIN_POLLINATION_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148813_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MIN_FIND_FLOWER_RETRY_COOLDOWN +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148814_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MAX_FIND_FLOWER_RETRY_COOLDOWN +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148815_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/ARRIVAL_THRESHOLD +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148816_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/POSITION_CHANGE_CHANCE +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148817_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/SPEED_MODIFIER +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148818_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/HOVER_HEIGHT_WITHIN_FLOWER +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148819_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/HOVER_POS_OFFSET +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148820_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MAX_POLLINATING_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28062_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28063_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/VALID_POLLINATION_BLOCKS +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28064_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/successfulPollinatingTicks +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28065_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/lastSoundPlayedTick +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28066_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/pollinating +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28067_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/hoverPos +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28068_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/pollinatingTicks +FD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/f_148821_ net/minecraft/world/entity/animal/Bee$BeeWanderGoal/WANDER_THRESHOLD +FD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/f_28091_ net/minecraft/world/entity/animal/Bee$BeeWanderGoal/this$0 +FD: net/minecraft/world/entity/animal/Cat/f_148842_ net/minecraft/world/entity/animal/Cat/TEMPT_SPEED_MOD +FD: net/minecraft/world/entity/animal/Cat/f_148843_ net/minecraft/world/entity/animal/Cat/WALK_SPEED_MOD +FD: net/minecraft/world/entity/animal/Cat/f_148844_ net/minecraft/world/entity/animal/Cat/SPRINT_SPEED_MOD +FD: net/minecraft/world/entity/animal/Cat/f_218131_ net/minecraft/world/entity/animal/Cat/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/Cat/f_28098_ net/minecraft/world/entity/animal/Cat/lieDownAmountTail +FD: net/minecraft/world/entity/animal/Cat/f_28099_ net/minecraft/world/entity/animal/Cat/lieDownAmountOTail +FD: net/minecraft/world/entity/animal/Cat/f_28100_ net/minecraft/world/entity/animal/Cat/relaxStateOneAmount +FD: net/minecraft/world/entity/animal/Cat/f_28101_ net/minecraft/world/entity/animal/Cat/relaxStateOneAmountO +FD: net/minecraft/world/entity/animal/Cat/f_28103_ net/minecraft/world/entity/animal/Cat/TEMPT_INGREDIENT +FD: net/minecraft/world/entity/animal/Cat/f_28105_ net/minecraft/world/entity/animal/Cat/IS_LYING +FD: net/minecraft/world/entity/animal/Cat/f_28106_ net/minecraft/world/entity/animal/Cat/RELAX_STATE_ONE +FD: net/minecraft/world/entity/animal/Cat/f_28107_ net/minecraft/world/entity/animal/Cat/DATA_COLLAR_COLOR +FD: net/minecraft/world/entity/animal/Cat/f_28108_ net/minecraft/world/entity/animal/Cat/avoidPlayersGoal +FD: net/minecraft/world/entity/animal/Cat/f_28109_ net/minecraft/world/entity/animal/Cat/temptGoal +FD: net/minecraft/world/entity/animal/Cat/f_28110_ net/minecraft/world/entity/animal/Cat/lieDownAmount +FD: net/minecraft/world/entity/animal/Cat/f_28111_ net/minecraft/world/entity/animal/Cat/lieDownAmountO +FD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/f_28189_ net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/cat +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28198_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/cat +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28199_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/ownerPlayer +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28200_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/goalPos +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28201_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/onBedTicks +FD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/f_28216_ net/minecraft/world/entity/animal/Cat$CatTemptGoal/selectedPlayer +FD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/f_28217_ net/minecraft/world/entity/animal/Cat$CatTemptGoal/cat +FD: net/minecraft/world/entity/animal/CatVariant/f_218140_ net/minecraft/world/entity/animal/CatVariant/TABBY +FD: net/minecraft/world/entity/animal/CatVariant/f_218141_ net/minecraft/world/entity/animal/CatVariant/BLACK +FD: net/minecraft/world/entity/animal/CatVariant/f_218142_ net/minecraft/world/entity/animal/CatVariant/RED +FD: net/minecraft/world/entity/animal/CatVariant/f_218143_ net/minecraft/world/entity/animal/CatVariant/SIAMESE +FD: net/minecraft/world/entity/animal/CatVariant/f_218144_ net/minecraft/world/entity/animal/CatVariant/BRITISH_SHORTHAIR +FD: net/minecraft/world/entity/animal/CatVariant/f_218145_ net/minecraft/world/entity/animal/CatVariant/CALICO +FD: net/minecraft/world/entity/animal/CatVariant/f_218146_ net/minecraft/world/entity/animal/CatVariant/PERSIAN +FD: net/minecraft/world/entity/animal/CatVariant/f_218147_ net/minecraft/world/entity/animal/CatVariant/RAGDOLL +FD: net/minecraft/world/entity/animal/CatVariant/f_218148_ net/minecraft/world/entity/animal/CatVariant/WHITE +FD: net/minecraft/world/entity/animal/CatVariant/f_218149_ net/minecraft/world/entity/animal/CatVariant/JELLIE +FD: net/minecraft/world/entity/animal/CatVariant/f_218150_ net/minecraft/world/entity/animal/CatVariant/ALL_BLACK +FD: net/minecraft/world/entity/animal/CatVariant/f_218151_ net/minecraft/world/entity/animal/CatVariant/texture +FD: net/minecraft/world/entity/animal/Chicken/f_148873_ net/minecraft/world/entity/animal/Chicken/nextFlap +FD: net/minecraft/world/entity/animal/Chicken/f_28226_ net/minecraft/world/entity/animal/Chicken/flap +FD: net/minecraft/world/entity/animal/Chicken/f_28227_ net/minecraft/world/entity/animal/Chicken/flapSpeed +FD: net/minecraft/world/entity/animal/Chicken/f_28228_ net/minecraft/world/entity/animal/Chicken/oFlapSpeed +FD: net/minecraft/world/entity/animal/Chicken/f_28229_ net/minecraft/world/entity/animal/Chicken/oFlap +FD: net/minecraft/world/entity/animal/Chicken/f_28230_ net/minecraft/world/entity/animal/Chicken/flapping +FD: net/minecraft/world/entity/animal/Chicken/f_28231_ net/minecraft/world/entity/animal/Chicken/eggTime +FD: net/minecraft/world/entity/animal/Chicken/f_28232_ net/minecraft/world/entity/animal/Chicken/isChickenJockey +FD: net/minecraft/world/entity/animal/Chicken/f_28233_ net/minecraft/world/entity/animal/Chicken/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/Dolphin/f_148892_ net/minecraft/world/entity/animal/Dolphin/TOTAL_AIR_SUPPLY +FD: net/minecraft/world/entity/animal/Dolphin/f_148893_ net/minecraft/world/entity/animal/Dolphin/TOTAL_MOISTNESS_LEVEL +FD: net/minecraft/world/entity/animal/Dolphin/f_28309_ net/minecraft/world/entity/animal/Dolphin/ALLOWED_ITEMS +FD: net/minecraft/world/entity/animal/Dolphin/f_28310_ net/minecraft/world/entity/animal/Dolphin/MOISTNESS_LEVEL +FD: net/minecraft/world/entity/animal/Dolphin/f_28311_ net/minecraft/world/entity/animal/Dolphin/SWIM_WITH_PLAYER_TARGETING +FD: net/minecraft/world/entity/animal/Dolphin/f_28312_ net/minecraft/world/entity/animal/Dolphin/TREASURE_POS +FD: net/minecraft/world/entity/animal/Dolphin/f_28313_ net/minecraft/world/entity/animal/Dolphin/GOT_FISH +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/f_28399_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/dolphin +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/f_28400_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/stuck +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/f_28409_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/dolphin +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/f_28410_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/speedModifier +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/f_28411_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/player +FD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/f_28420_ net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/this$0 +FD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/f_28421_ net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/cooldown +FD: net/minecraft/world/entity/animal/Fox/f_148896_ net/minecraft/world/entity/animal/Fox/FLAG_CROUCHING +FD: net/minecraft/world/entity/animal/Fox/f_148897_ net/minecraft/world/entity/animal/Fox/FLAG_INTERESTED +FD: net/minecraft/world/entity/animal/Fox/f_148898_ net/minecraft/world/entity/animal/Fox/FLAG_POUNCING +FD: net/minecraft/world/entity/animal/Fox/f_148899_ net/minecraft/world/entity/animal/Fox/FLAG_SITTING +FD: net/minecraft/world/entity/animal/Fox/f_148900_ net/minecraft/world/entity/animal/Fox/FLAG_SLEEPING +FD: net/minecraft/world/entity/animal/Fox/f_148901_ net/minecraft/world/entity/animal/Fox/FLAG_FACEPLANTED +FD: net/minecraft/world/entity/animal/Fox/f_148902_ net/minecraft/world/entity/animal/Fox/FLAG_DEFENDING +FD: net/minecraft/world/entity/animal/Fox/f_148903_ net/minecraft/world/entity/animal/Fox/MIN_TICKS_BEFORE_EAT +FD: net/minecraft/world/entity/animal/Fox/f_28433_ net/minecraft/world/entity/animal/Fox/interestedAngleO +FD: net/minecraft/world/entity/animal/Fox/f_28434_ net/minecraft/world/entity/animal/Fox/crouchAmount +FD: net/minecraft/world/entity/animal/Fox/f_28435_ net/minecraft/world/entity/animal/Fox/crouchAmountO +FD: net/minecraft/world/entity/animal/Fox/f_28436_ net/minecraft/world/entity/animal/Fox/ticksSinceEaten +FD: net/minecraft/world/entity/animal/Fox/f_28437_ net/minecraft/world/entity/animal/Fox/DATA_TYPE_ID +FD: net/minecraft/world/entity/animal/Fox/f_28438_ net/minecraft/world/entity/animal/Fox/DATA_FLAGS_ID +FD: net/minecraft/world/entity/animal/Fox/f_28439_ net/minecraft/world/entity/animal/Fox/DATA_TRUSTED_ID_0 +FD: net/minecraft/world/entity/animal/Fox/f_28440_ net/minecraft/world/entity/animal/Fox/DATA_TRUSTED_ID_1 +FD: net/minecraft/world/entity/animal/Fox/f_28441_ net/minecraft/world/entity/animal/Fox/ALLOWED_ITEMS +FD: net/minecraft/world/entity/animal/Fox/f_28442_ net/minecraft/world/entity/animal/Fox/TRUSTED_TARGET_SELECTOR +FD: net/minecraft/world/entity/animal/Fox/f_28443_ net/minecraft/world/entity/animal/Fox/STALKABLE_PREY +FD: net/minecraft/world/entity/animal/Fox/f_28444_ net/minecraft/world/entity/animal/Fox/AVOID_PLAYERS +FD: net/minecraft/world/entity/animal/Fox/f_28445_ net/minecraft/world/entity/animal/Fox/landTargetGoal +FD: net/minecraft/world/entity/animal/Fox/f_28446_ net/minecraft/world/entity/animal/Fox/turtleEggTargetGoal +FD: net/minecraft/world/entity/animal/Fox/f_28447_ net/minecraft/world/entity/animal/Fox/fishTargetGoal +FD: net/minecraft/world/entity/animal/Fox/f_28448_ net/minecraft/world/entity/animal/Fox/interestedAngle +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28628_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28629_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/trustedLastHurtBy +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28630_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/trustedLastHurt +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28631_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/timestamp +FD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/f_28640_ net/minecraft/world/entity/animal/Fox$FaceplantGoal/countdown +FD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/f_28641_ net/minecraft/world/entity/animal/Fox$FaceplantGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/f_28649_ net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/f_28656_ net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/f_28657_ net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/alertableTargeting +FD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/f_28665_ net/minecraft/world/entity/animal/Fox$FoxBreedGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/f_148925_ net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/WAIT_TICKS +FD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/f_28671_ net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/ticksWaited +FD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/f_28672_ net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/f_28687_ net/minecraft/world/entity/animal/Fox$FoxFloatGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/f_28692_ net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/f_28693_ net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/fox +FD: net/minecraft/world/entity/animal/Fox$FoxGroupData/f_28701_ net/minecraft/world/entity/animal/Fox$FoxGroupData/type +FD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/f_28704_ net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxLookControl/f_28712_ net/minecraft/world/entity/animal/Fox$FoxLookControl/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/f_28717_ net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxMoveControl/f_28727_ net/minecraft/world/entity/animal/Fox$FoxMoveControl/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxPanicGoal/f_28731_ net/minecraft/world/entity/animal/Fox$FoxPanicGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/f_28736_ net/minecraft/world/entity/animal/Fox$FoxPounceGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/f_28745_ net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/f_28751_ net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28760_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28761_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/relX +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28762_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/relZ +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28763_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/lookTime +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28764_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/looksRemaining +FD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/f_28773_ net/minecraft/world/entity/animal/Fox$SeekShelterGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/f_28774_ net/minecraft/world/entity/animal/Fox$SeekShelterGoal/interval +FD: net/minecraft/world/entity/animal/Fox$SleepGoal/f_148930_ net/minecraft/world/entity/animal/Fox$SleepGoal/WAIT_TIME_BEFORE_SLEEP +FD: net/minecraft/world/entity/animal/Fox$SleepGoal/f_28780_ net/minecraft/world/entity/animal/Fox$SleepGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$SleepGoal/f_28781_ net/minecraft/world/entity/animal/Fox$SleepGoal/countdown +FD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/f_28789_ net/minecraft/world/entity/animal/Fox$StalkPreyGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$Type/$VALUES net/minecraft/world/entity/animal/Fox$Type/$VALUES +FD: net/minecraft/world/entity/animal/Fox$Type/RED net/minecraft/world/entity/animal/Fox$Type/RED +FD: net/minecraft/world/entity/animal/Fox$Type/SNOW net/minecraft/world/entity/animal/Fox$Type/SNOW +FD: net/minecraft/world/entity/animal/Fox$Type/f_262206_ net/minecraft/world/entity/animal/Fox$Type/CODEC +FD: net/minecraft/world/entity/animal/Fox$Type/f_28798_ net/minecraft/world/entity/animal/Fox$Type/BY_ID +FD: net/minecraft/world/entity/animal/Fox$Type/f_28800_ net/minecraft/world/entity/animal/Fox$Type/id +FD: net/minecraft/world/entity/animal/Fox$Type/f_28801_ net/minecraft/world/entity/animal/Fox$Type/name +FD: net/minecraft/world/entity/animal/FrogVariant/f_218185_ net/minecraft/world/entity/animal/FrogVariant/TEMPERATE +FD: net/minecraft/world/entity/animal/FrogVariant/f_218186_ net/minecraft/world/entity/animal/FrogVariant/WARM +FD: net/minecraft/world/entity/animal/FrogVariant/f_218187_ net/minecraft/world/entity/animal/FrogVariant/COLD +FD: net/minecraft/world/entity/animal/FrogVariant/f_218188_ net/minecraft/world/entity/animal/FrogVariant/texture +FD: net/minecraft/world/entity/animal/IronGolem/f_148932_ net/minecraft/world/entity/animal/IronGolem/IRON_INGOT_HEAL_AMOUNT +FD: net/minecraft/world/entity/animal/IronGolem/f_28826_ net/minecraft/world/entity/animal/IronGolem/DATA_FLAGS_ID +FD: net/minecraft/world/entity/animal/IronGolem/f_28827_ net/minecraft/world/entity/animal/IronGolem/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/IronGolem/f_28828_ net/minecraft/world/entity/animal/IronGolem/remainingPersistentAngerTime +FD: net/minecraft/world/entity/animal/IronGolem/f_28829_ net/minecraft/world/entity/animal/IronGolem/persistentAngerTarget +FD: net/minecraft/world/entity/animal/IronGolem/f_28830_ net/minecraft/world/entity/animal/IronGolem/attackAnimationTick +FD: net/minecraft/world/entity/animal/IronGolem/f_28831_ net/minecraft/world/entity/animal/IronGolem/offerFlowerTick +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/$VALUES net/minecraft/world/entity/animal/IronGolem$Crackiness/$VALUES +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/HIGH net/minecraft/world/entity/animal/IronGolem$Crackiness/HIGH +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/LOW net/minecraft/world/entity/animal/IronGolem$Crackiness/LOW +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/MEDIUM net/minecraft/world/entity/animal/IronGolem$Crackiness/MEDIUM +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/NONE net/minecraft/world/entity/animal/IronGolem$Crackiness/NONE +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/f_28893_ net/minecraft/world/entity/animal/IronGolem$Crackiness/BY_DAMAGE +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/f_28894_ net/minecraft/world/entity/animal/IronGolem$Crackiness/fraction +FD: net/minecraft/world/entity/animal/MushroomCow/f_148934_ net/minecraft/world/entity/animal/MushroomCow/MUTATE_CHANCE +FD: net/minecraft/world/entity/animal/MushroomCow/f_28908_ net/minecraft/world/entity/animal/MushroomCow/DATA_TYPE +FD: net/minecraft/world/entity/animal/MushroomCow/f_28909_ net/minecraft/world/entity/animal/MushroomCow/effect +FD: net/minecraft/world/entity/animal/MushroomCow/f_28910_ net/minecraft/world/entity/animal/MushroomCow/effectDuration +FD: net/minecraft/world/entity/animal/MushroomCow/f_28911_ net/minecraft/world/entity/animal/MushroomCow/lastLightningBoltUUID +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/$VALUES net/minecraft/world/entity/animal/MushroomCow$MushroomType/$VALUES +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/BROWN net/minecraft/world/entity/animal/MushroomCow$MushroomType/BROWN +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/RED net/minecraft/world/entity/animal/MushroomCow$MushroomType/RED +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/f_262198_ net/minecraft/world/entity/animal/MushroomCow$MushroomType/CODEC +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/f_28960_ net/minecraft/world/entity/animal/MushroomCow$MushroomType/type +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/f_28961_ net/minecraft/world/entity/animal/MushroomCow$MushroomType/blockState +FD: net/minecraft/world/entity/animal/Ocelot/f_148945_ net/minecraft/world/entity/animal/Ocelot/CROUCH_SPEED_MOD +FD: net/minecraft/world/entity/animal/Ocelot/f_148946_ net/minecraft/world/entity/animal/Ocelot/WALK_SPEED_MOD +FD: net/minecraft/world/entity/animal/Ocelot/f_148947_ net/minecraft/world/entity/animal/Ocelot/SPRINT_SPEED_MOD +FD: net/minecraft/world/entity/animal/Ocelot/f_28981_ net/minecraft/world/entity/animal/Ocelot/TEMPT_INGREDIENT +FD: net/minecraft/world/entity/animal/Ocelot/f_28982_ net/minecraft/world/entity/animal/Ocelot/DATA_TRUSTING +FD: net/minecraft/world/entity/animal/Ocelot/f_28983_ net/minecraft/world/entity/animal/Ocelot/ocelotAvoidPlayersGoal +FD: net/minecraft/world/entity/animal/Ocelot/f_28984_ net/minecraft/world/entity/animal/Ocelot/temptGoal +FD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/f_29049_ net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/ocelot +FD: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/f_29058_ net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/ocelot +FD: net/minecraft/world/entity/animal/Panda/f_148959_ net/minecraft/world/entity/animal/Panda/TOTAL_ROLL_STEPS +FD: net/minecraft/world/entity/animal/Panda/f_148960_ net/minecraft/world/entity/animal/Panda/FLAG_SNEEZE +FD: net/minecraft/world/entity/animal/Panda/f_148961_ net/minecraft/world/entity/animal/Panda/FLAG_ROLL +FD: net/minecraft/world/entity/animal/Panda/f_148962_ net/minecraft/world/entity/animal/Panda/FLAG_SIT +FD: net/minecraft/world/entity/animal/Panda/f_148963_ net/minecraft/world/entity/animal/Panda/FLAG_ON_BACK +FD: net/minecraft/world/entity/animal/Panda/f_148964_ net/minecraft/world/entity/animal/Panda/EAT_TICK_INTERVAL +FD: net/minecraft/world/entity/animal/Panda/f_148965_ net/minecraft/world/entity/animal/Panda/TOTAL_UNHAPPY_TIME +FD: net/minecraft/world/entity/animal/Panda/f_29065_ net/minecraft/world/entity/animal/Panda/sitAmountO +FD: net/minecraft/world/entity/animal/Panda/f_29066_ net/minecraft/world/entity/animal/Panda/onBackAmount +FD: net/minecraft/world/entity/animal/Panda/f_29067_ net/minecraft/world/entity/animal/Panda/onBackAmountO +FD: net/minecraft/world/entity/animal/Panda/f_29068_ net/minecraft/world/entity/animal/Panda/rollAmount +FD: net/minecraft/world/entity/animal/Panda/f_29069_ net/minecraft/world/entity/animal/Panda/rollAmountO +FD: net/minecraft/world/entity/animal/Panda/f_29070_ net/minecraft/world/entity/animal/Panda/lookAtPlayerGoal +FD: net/minecraft/world/entity/animal/Panda/f_29071_ net/minecraft/world/entity/animal/Panda/PANDA_ITEMS +FD: net/minecraft/world/entity/animal/Panda/f_29072_ net/minecraft/world/entity/animal/Panda/rollCounter +FD: net/minecraft/world/entity/animal/Panda/f_29073_ net/minecraft/world/entity/animal/Panda/UNHAPPY_COUNTER +FD: net/minecraft/world/entity/animal/Panda/f_29074_ net/minecraft/world/entity/animal/Panda/SNEEZE_COUNTER +FD: net/minecraft/world/entity/animal/Panda/f_29075_ net/minecraft/world/entity/animal/Panda/EAT_COUNTER +FD: net/minecraft/world/entity/animal/Panda/f_29076_ net/minecraft/world/entity/animal/Panda/MAIN_GENE_ID +FD: net/minecraft/world/entity/animal/Panda/f_29077_ net/minecraft/world/entity/animal/Panda/HIDDEN_GENE_ID +FD: net/minecraft/world/entity/animal/Panda/f_29078_ net/minecraft/world/entity/animal/Panda/DATA_ID_FLAGS +FD: net/minecraft/world/entity/animal/Panda/f_29079_ net/minecraft/world/entity/animal/Panda/BREED_TARGETING +FD: net/minecraft/world/entity/animal/Panda/f_29080_ net/minecraft/world/entity/animal/Panda/gotBamboo +FD: net/minecraft/world/entity/animal/Panda/f_29081_ net/minecraft/world/entity/animal/Panda/didBite +FD: net/minecraft/world/entity/animal/Panda/f_29082_ net/minecraft/world/entity/animal/Panda/rollDelta +FD: net/minecraft/world/entity/animal/Panda/f_29083_ net/minecraft/world/entity/animal/Panda/sitAmount +FD: net/minecraft/world/entity/animal/Panda$Gene/$VALUES net/minecraft/world/entity/animal/Panda$Gene/$VALUES +FD: net/minecraft/world/entity/animal/Panda$Gene/AGGRESSIVE net/minecraft/world/entity/animal/Panda$Gene/AGGRESSIVE +FD: net/minecraft/world/entity/animal/Panda$Gene/BROWN net/minecraft/world/entity/animal/Panda$Gene/BROWN +FD: net/minecraft/world/entity/animal/Panda$Gene/LAZY net/minecraft/world/entity/animal/Panda$Gene/LAZY +FD: net/minecraft/world/entity/animal/Panda$Gene/NORMAL net/minecraft/world/entity/animal/Panda$Gene/NORMAL +FD: net/minecraft/world/entity/animal/Panda$Gene/PLAYFUL net/minecraft/world/entity/animal/Panda$Gene/PLAYFUL +FD: net/minecraft/world/entity/animal/Panda$Gene/WEAK net/minecraft/world/entity/animal/Panda$Gene/WEAK +FD: net/minecraft/world/entity/animal/Panda$Gene/WORRIED net/minecraft/world/entity/animal/Panda$Gene/WORRIED +FD: net/minecraft/world/entity/animal/Panda$Gene/f_148982_ net/minecraft/world/entity/animal/Panda$Gene/MAX_GENE +FD: net/minecraft/world/entity/animal/Panda$Gene/f_262727_ net/minecraft/world/entity/animal/Panda$Gene/CODEC +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29235_ net/minecraft/world/entity/animal/Panda$Gene/BY_ID +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29236_ net/minecraft/world/entity/animal/Panda$Gene/id +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29237_ net/minecraft/world/entity/animal/Panda$Gene/name +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29238_ net/minecraft/world/entity/animal/Panda$Gene/isRecessive +FD: net/minecraft/world/entity/animal/Panda$PandaAttackGoal/f_29267_ net/minecraft/world/entity/animal/Panda$PandaAttackGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/f_29273_ net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/f_29282_ net/minecraft/world/entity/animal/Panda$PandaBreedGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/f_29283_ net/minecraft/world/entity/animal/Panda$PandaBreedGoal/unhappyCooldown +FD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/f_29290_ net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/f_29298_ net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/f_29299_ net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/cooldown +FD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/f_29306_ net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaMoveControl/f_29316_ net/minecraft/world/entity/animal/Panda$PandaMoveControl/panda +FD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/f_29320_ net/minecraft/world/entity/animal/Panda$PandaPanicGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/f_29326_ net/minecraft/world/entity/animal/Panda$PandaRollGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/f_29333_ net/minecraft/world/entity/animal/Panda$PandaSitGoal/this$0 +FD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/f_29334_ net/minecraft/world/entity/animal/Panda$PandaSitGoal/cooldown +FD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/f_29342_ net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/panda +FD: net/minecraft/world/entity/animal/Parrot/f_148987_ net/minecraft/world/entity/animal/Parrot/nextFlap +FD: net/minecraft/world/entity/animal/Parrot/f_29348_ net/minecraft/world/entity/animal/Parrot/partyParrot +FD: net/minecraft/world/entity/animal/Parrot/f_29349_ net/minecraft/world/entity/animal/Parrot/jukebox +FD: net/minecraft/world/entity/animal/Parrot/f_29350_ net/minecraft/world/entity/animal/Parrot/flap +FD: net/minecraft/world/entity/animal/Parrot/f_29351_ net/minecraft/world/entity/animal/Parrot/flapSpeed +FD: net/minecraft/world/entity/animal/Parrot/f_29352_ net/minecraft/world/entity/animal/Parrot/oFlapSpeed +FD: net/minecraft/world/entity/animal/Parrot/f_29353_ net/minecraft/world/entity/animal/Parrot/oFlap +FD: net/minecraft/world/entity/animal/Parrot/f_29354_ net/minecraft/world/entity/animal/Parrot/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/Parrot/f_29355_ net/minecraft/world/entity/animal/Parrot/NOT_PARROT_PREDICATE +FD: net/minecraft/world/entity/animal/Parrot/f_29356_ net/minecraft/world/entity/animal/Parrot/POISONOUS_FOOD +FD: net/minecraft/world/entity/animal/Parrot/f_29357_ net/minecraft/world/entity/animal/Parrot/TAME_FOOD +FD: net/minecraft/world/entity/animal/Parrot/f_29358_ net/minecraft/world/entity/animal/Parrot/MOB_SOUND_MAP +FD: net/minecraft/world/entity/animal/Parrot/f_29359_ net/minecraft/world/entity/animal/Parrot/flapping +FD: net/minecraft/world/entity/animal/Parrot$Variant/$VALUES net/minecraft/world/entity/animal/Parrot$Variant/$VALUES +FD: net/minecraft/world/entity/animal/Parrot$Variant/BLUE net/minecraft/world/entity/animal/Parrot$Variant/BLUE +FD: net/minecraft/world/entity/animal/Parrot$Variant/GRAY net/minecraft/world/entity/animal/Parrot$Variant/GRAY +FD: net/minecraft/world/entity/animal/Parrot$Variant/GREEN net/minecraft/world/entity/animal/Parrot$Variant/GREEN +FD: net/minecraft/world/entity/animal/Parrot$Variant/RED_BLUE net/minecraft/world/entity/animal/Parrot$Variant/RED_BLUE +FD: net/minecraft/world/entity/animal/Parrot$Variant/YELLOW_BLUE net/minecraft/world/entity/animal/Parrot$Variant/YELLOW_BLUE +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262209_ net/minecraft/world/entity/animal/Parrot$Variant/BY_ID +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262294_ net/minecraft/world/entity/animal/Parrot$Variant/id +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262304_ net/minecraft/world/entity/animal/Parrot$Variant/CODEC +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262312_ net/minecraft/world/entity/animal/Parrot$Variant/name +FD: net/minecraft/world/entity/animal/Pig/f_29456_ net/minecraft/world/entity/animal/Pig/DATA_SADDLE_ID +FD: net/minecraft/world/entity/animal/Pig/f_29457_ net/minecraft/world/entity/animal/Pig/DATA_BOOST_TIME +FD: net/minecraft/world/entity/animal/Pig/f_29458_ net/minecraft/world/entity/animal/Pig/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/Pig/f_29459_ net/minecraft/world/entity/animal/Pig/steering +FD: net/minecraft/world/entity/animal/PolarBear/f_149003_ net/minecraft/world/entity/animal/PolarBear/STAND_ANIMATION_TICKS +FD: net/minecraft/world/entity/animal/PolarBear/f_29510_ net/minecraft/world/entity/animal/PolarBear/DATA_STANDING_ID +FD: net/minecraft/world/entity/animal/PolarBear/f_29511_ net/minecraft/world/entity/animal/PolarBear/clientSideStandAnimationO +FD: net/minecraft/world/entity/animal/PolarBear/f_29512_ net/minecraft/world/entity/animal/PolarBear/clientSideStandAnimation +FD: net/minecraft/world/entity/animal/PolarBear/f_29513_ net/minecraft/world/entity/animal/PolarBear/warningSoundTicks +FD: net/minecraft/world/entity/animal/PolarBear/f_29514_ net/minecraft/world/entity/animal/PolarBear/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/PolarBear/f_29515_ net/minecraft/world/entity/animal/PolarBear/remainingPersistentAngerTime +FD: net/minecraft/world/entity/animal/PolarBear/f_29516_ net/minecraft/world/entity/animal/PolarBear/persistentAngerTarget +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/f_29571_ net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/this$0 +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/f_29576_ net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/this$0 +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/f_29583_ net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/f_29592_ net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/this$0 +FD: net/minecraft/world/entity/animal/Pufferfish/f_149007_ net/minecraft/world/entity/animal/Pufferfish/STATE_SMALL +FD: net/minecraft/world/entity/animal/Pufferfish/f_149008_ net/minecraft/world/entity/animal/Pufferfish/SCARY_MOB +FD: net/minecraft/world/entity/animal/Pufferfish/f_149009_ net/minecraft/world/entity/animal/Pufferfish/targetingConditions +FD: net/minecraft/world/entity/animal/Pufferfish/f_149010_ net/minecraft/world/entity/animal/Pufferfish/STATE_MID +FD: net/minecraft/world/entity/animal/Pufferfish/f_149011_ net/minecraft/world/entity/animal/Pufferfish/STATE_FULL +FD: net/minecraft/world/entity/animal/Pufferfish/f_29596_ net/minecraft/world/entity/animal/Pufferfish/PUFF_STATE +FD: net/minecraft/world/entity/animal/Pufferfish/f_29598_ net/minecraft/world/entity/animal/Pufferfish/inflateCounter +FD: net/minecraft/world/entity/animal/Pufferfish/f_29599_ net/minecraft/world/entity/animal/Pufferfish/deflateTimer +FD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/f_29640_ net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/fish +FD: net/minecraft/world/entity/animal/Rabbit/f_149016_ net/minecraft/world/entity/animal/Rabbit/STROLL_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149017_ net/minecraft/world/entity/animal/Rabbit/BREED_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149018_ net/minecraft/world/entity/animal/Rabbit/FOLLOW_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149019_ net/minecraft/world/entity/animal/Rabbit/FLEE_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149020_ net/minecraft/world/entity/animal/Rabbit/ATTACK_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149028_ net/minecraft/world/entity/animal/Rabbit/EVIL_ATTACK_POWER +FD: net/minecraft/world/entity/animal/Rabbit/f_149029_ net/minecraft/world/entity/animal/Rabbit/EVIL_ARMOR_VALUE +FD: net/minecraft/world/entity/animal/Rabbit/f_149030_ net/minecraft/world/entity/animal/Rabbit/MORE_CARROTS_DELAY +FD: net/minecraft/world/entity/animal/Rabbit/f_29647_ net/minecraft/world/entity/animal/Rabbit/DATA_TYPE_ID +FD: net/minecraft/world/entity/animal/Rabbit/f_29648_ net/minecraft/world/entity/animal/Rabbit/KILLER_BUNNY +FD: net/minecraft/world/entity/animal/Rabbit/f_29649_ net/minecraft/world/entity/animal/Rabbit/jumpTicks +FD: net/minecraft/world/entity/animal/Rabbit/f_29650_ net/minecraft/world/entity/animal/Rabbit/jumpDuration +FD: net/minecraft/world/entity/animal/Rabbit/f_29651_ net/minecraft/world/entity/animal/Rabbit/wasOnGround +FD: net/minecraft/world/entity/animal/Rabbit/f_29652_ net/minecraft/world/entity/animal/Rabbit/jumpDelayTicks +FD: net/minecraft/world/entity/animal/Rabbit/f_29653_ net/minecraft/world/entity/animal/Rabbit/moreCarrotTicks +FD: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/f_29741_ net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/f_262235_ net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/variant +FD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/f_29753_ net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/f_29754_ net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/canJump +FD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/f_29763_ net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/f_29764_ net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/nextJumpSpeed +FD: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/f_29773_ net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/f_29778_ net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/f_29779_ net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/wantsToRaid +FD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/f_29780_ net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/canRaid +FD: net/minecraft/world/entity/animal/Rabbit$Variant/$VALUES net/minecraft/world/entity/animal/Rabbit$Variant/$VALUES +FD: net/minecraft/world/entity/animal/Rabbit$Variant/BLACK net/minecraft/world/entity/animal/Rabbit$Variant/BLACK +FD: net/minecraft/world/entity/animal/Rabbit$Variant/BROWN net/minecraft/world/entity/animal/Rabbit$Variant/BROWN +FD: net/minecraft/world/entity/animal/Rabbit$Variant/EVIL net/minecraft/world/entity/animal/Rabbit$Variant/EVIL +FD: net/minecraft/world/entity/animal/Rabbit$Variant/GOLD net/minecraft/world/entity/animal/Rabbit$Variant/GOLD +FD: net/minecraft/world/entity/animal/Rabbit$Variant/SALT net/minecraft/world/entity/animal/Rabbit$Variant/SALT +FD: net/minecraft/world/entity/animal/Rabbit$Variant/WHITE net/minecraft/world/entity/animal/Rabbit$Variant/WHITE +FD: net/minecraft/world/entity/animal/Rabbit$Variant/WHITE_SPLOTCHED net/minecraft/world/entity/animal/Rabbit$Variant/WHITE_SPLOTCHED +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262203_ net/minecraft/world/entity/animal/Rabbit$Variant/id +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262245_ net/minecraft/world/entity/animal/Rabbit$Variant/CODEC +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262279_ net/minecraft/world/entity/animal/Rabbit$Variant/name +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262319_ net/minecraft/world/entity/animal/Rabbit$Variant/BY_ID +FD: net/minecraft/world/entity/animal/Sheep/f_149039_ net/minecraft/world/entity/animal/Sheep/EAT_ANIMATION_TICKS +FD: net/minecraft/world/entity/animal/Sheep/f_29799_ net/minecraft/world/entity/animal/Sheep/DATA_WOOL_ID +FD: net/minecraft/world/entity/animal/Sheep/f_29800_ net/minecraft/world/entity/animal/Sheep/ITEM_BY_DYE +FD: net/minecraft/world/entity/animal/Sheep/f_29801_ net/minecraft/world/entity/animal/Sheep/COLORARRAY_BY_COLOR +FD: net/minecraft/world/entity/animal/Sheep/f_29802_ net/minecraft/world/entity/animal/Sheep/eatAnimationTick +FD: net/minecraft/world/entity/animal/Sheep/f_29803_ net/minecraft/world/entity/animal/Sheep/eatBlockGoal +FD: net/minecraft/world/entity/animal/Sheep$2/f_29889_ net/minecraft/world/entity/animal/Sheep$2/$SwitchMap$net$minecraft$world$item$DyeColor +FD: net/minecraft/world/entity/animal/ShoulderRidingEntity/f_149046_ net/minecraft/world/entity/animal/ShoulderRidingEntity/RIDE_COOLDOWN +FD: net/minecraft/world/entity/animal/ShoulderRidingEntity/f_29891_ net/minecraft/world/entity/animal/ShoulderRidingEntity/rideCooldownCounter +FD: net/minecraft/world/entity/animal/SnowGolem/f_149047_ net/minecraft/world/entity/animal/SnowGolem/PUMPKIN_FLAG +FD: net/minecraft/world/entity/animal/SnowGolem/f_149048_ net/minecraft/world/entity/animal/SnowGolem/EYE_HEIGHT +FD: net/minecraft/world/entity/animal/SnowGolem/f_29899_ net/minecraft/world/entity/animal/SnowGolem/DATA_PUMPKIN_ID +FD: net/minecraft/world/entity/animal/Squid/f_29938_ net/minecraft/world/entity/animal/Squid/xBodyRot +FD: net/minecraft/world/entity/animal/Squid/f_29939_ net/minecraft/world/entity/animal/Squid/zBodyRotO +FD: net/minecraft/world/entity/animal/Squid/f_29940_ net/minecraft/world/entity/animal/Squid/tentacleMovement +FD: net/minecraft/world/entity/animal/Squid/f_29941_ net/minecraft/world/entity/animal/Squid/oldTentacleMovement +FD: net/minecraft/world/entity/animal/Squid/f_29942_ net/minecraft/world/entity/animal/Squid/tentacleAngle +FD: net/minecraft/world/entity/animal/Squid/f_29943_ net/minecraft/world/entity/animal/Squid/oldTentacleAngle +FD: net/minecraft/world/entity/animal/Squid/f_29944_ net/minecraft/world/entity/animal/Squid/speed +FD: net/minecraft/world/entity/animal/Squid/f_29945_ net/minecraft/world/entity/animal/Squid/tentacleSpeed +FD: net/minecraft/world/entity/animal/Squid/f_29946_ net/minecraft/world/entity/animal/Squid/rotateSpeed +FD: net/minecraft/world/entity/animal/Squid/f_29947_ net/minecraft/world/entity/animal/Squid/tx +FD: net/minecraft/world/entity/animal/Squid/f_29948_ net/minecraft/world/entity/animal/Squid/ty +FD: net/minecraft/world/entity/animal/Squid/f_29949_ net/minecraft/world/entity/animal/Squid/tz +FD: net/minecraft/world/entity/animal/Squid/f_29950_ net/minecraft/world/entity/animal/Squid/xBodyRotO +FD: net/minecraft/world/entity/animal/Squid/f_29951_ net/minecraft/world/entity/animal/Squid/zBodyRot +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_149054_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/SQUID_FLEE_SPEED +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_149055_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/SQUID_FLEE_MIN_DISTANCE +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_149056_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/SQUID_FLEE_MAX_DISTANCE +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_29990_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/this$0 +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_29991_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/fleeTicks +FD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/f_30000_ net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/this$0 +FD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/f_30001_ net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/squid +FD: net/minecraft/world/entity/animal/TropicalFish/f_149057_ net/minecraft/world/entity/animal/TropicalFish/BUCKET_VARIANT_TAG +FD: net/minecraft/world/entity/animal/TropicalFish/f_30007_ net/minecraft/world/entity/animal/TropicalFish/COMMON_VARIANTS +FD: net/minecraft/world/entity/animal/TropicalFish/f_30010_ net/minecraft/world/entity/animal/TropicalFish/isSchool +FD: net/minecraft/world/entity/animal/TropicalFish/f_30011_ net/minecraft/world/entity/animal/TropicalFish/DATA_ID_TYPE_VARIANT +FD: net/minecraft/world/entity/animal/TropicalFish$Base/$VALUES net/minecraft/world/entity/animal/TropicalFish$Base/$VALUES +FD: net/minecraft/world/entity/animal/TropicalFish$Base/LARGE net/minecraft/world/entity/animal/TropicalFish$Base/LARGE +FD: net/minecraft/world/entity/animal/TropicalFish$Base/SMALL net/minecraft/world/entity/animal/TropicalFish$Base/SMALL +FD: net/minecraft/world/entity/animal/TropicalFish$Base/f_262205_ net/minecraft/world/entity/animal/TropicalFish$Base/id +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/$VALUES net/minecraft/world/entity/animal/TropicalFish$Pattern/$VALUES +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/BETTY net/minecraft/world/entity/animal/TropicalFish$Pattern/BETTY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/BLOCKFISH net/minecraft/world/entity/animal/TropicalFish$Pattern/BLOCKFISH +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/BRINELY net/minecraft/world/entity/animal/TropicalFish$Pattern/BRINELY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/CLAYFISH net/minecraft/world/entity/animal/TropicalFish$Pattern/CLAYFISH +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/DASHER net/minecraft/world/entity/animal/TropicalFish$Pattern/DASHER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/FLOPPER net/minecraft/world/entity/animal/TropicalFish$Pattern/FLOPPER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/GLITTER net/minecraft/world/entity/animal/TropicalFish$Pattern/GLITTER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/KOB net/minecraft/world/entity/animal/TropicalFish$Pattern/KOB +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/SNOOPER net/minecraft/world/entity/animal/TropicalFish$Pattern/SNOOPER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/SPOTTY net/minecraft/world/entity/animal/TropicalFish$Pattern/SPOTTY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/STRIPEY net/minecraft/world/entity/animal/TropicalFish$Pattern/STRIPEY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/SUNSTREAK net/minecraft/world/entity/animal/TropicalFish$Pattern/SUNSTREAK +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262207_ net/minecraft/world/entity/animal/TropicalFish$Pattern/displayName +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262219_ net/minecraft/world/entity/animal/TropicalFish$Pattern/packedId +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262228_ net/minecraft/world/entity/animal/TropicalFish$Pattern/name +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262299_ net/minecraft/world/entity/animal/TropicalFish$Pattern/BY_ID +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262323_ net/minecraft/world/entity/animal/TropicalFish$Pattern/CODEC +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_30078_ net/minecraft/world/entity/animal/TropicalFish$Pattern/base +FD: net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/f_262277_ net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/variant +FD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262204_ net/minecraft/world/entity/animal/TropicalFish$Variant/pattern +FD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262223_ net/minecraft/world/entity/animal/TropicalFish$Variant/patternColor +FD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262309_ net/minecraft/world/entity/animal/TropicalFish$Variant/baseColor +FD: net/minecraft/world/entity/animal/Turtle/f_149066_ net/minecraft/world/entity/animal/Turtle/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/Turtle/f_30122_ net/minecraft/world/entity/animal/Turtle/BABY_ON_LAND_SELECTOR +FD: net/minecraft/world/entity/animal/Turtle/f_30123_ net/minecraft/world/entity/animal/Turtle/HOME_POS +FD: net/minecraft/world/entity/animal/Turtle/f_30124_ net/minecraft/world/entity/animal/Turtle/HAS_EGG +FD: net/minecraft/world/entity/animal/Turtle/f_30125_ net/minecraft/world/entity/animal/Turtle/LAYING_EGG +FD: net/minecraft/world/entity/animal/Turtle/f_30126_ net/minecraft/world/entity/animal/Turtle/TRAVEL_POS +FD: net/minecraft/world/entity/animal/Turtle/f_30127_ net/minecraft/world/entity/animal/Turtle/GOING_HOME +FD: net/minecraft/world/entity/animal/Turtle/f_30128_ net/minecraft/world/entity/animal/Turtle/TRAVELLING +FD: net/minecraft/world/entity/animal/Turtle/f_30129_ net/minecraft/world/entity/animal/Turtle/layEggCounter +FD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/f_30242_ net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_149074_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/GIVE_UP_TICKS +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30248_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30249_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/speedModifier +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30250_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/stuck +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30251_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/closeToHomeTryTicks +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/f_149075_ net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/GIVE_UP_TICKS +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/f_30260_ net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/f_30274_ net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/f_30284_ net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/f_30301_ net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/f_30329_ net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/f_30330_ net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/speedModifier +FD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/f_30331_ net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/stuck +FD: net/minecraft/world/entity/animal/Wolf/f_149082_ net/minecraft/world/entity/animal/Wolf/START_HEALTH +FD: net/minecraft/world/entity/animal/Wolf/f_149083_ net/minecraft/world/entity/animal/Wolf/TAME_HEALTH +FD: net/minecraft/world/entity/animal/Wolf/f_30355_ net/minecraft/world/entity/animal/Wolf/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/Wolf/f_30356_ net/minecraft/world/entity/animal/Wolf/persistentAngerTarget +FD: net/minecraft/world/entity/animal/Wolf/f_30357_ net/minecraft/world/entity/animal/Wolf/PREY_SELECTOR +FD: net/minecraft/world/entity/animal/Wolf/f_30358_ net/minecraft/world/entity/animal/Wolf/DATA_INTERESTED_ID +FD: net/minecraft/world/entity/animal/Wolf/f_30359_ net/minecraft/world/entity/animal/Wolf/DATA_COLLAR_COLOR +FD: net/minecraft/world/entity/animal/Wolf/f_30360_ net/minecraft/world/entity/animal/Wolf/DATA_REMAINING_ANGER_TIME +FD: net/minecraft/world/entity/animal/Wolf/f_30361_ net/minecraft/world/entity/animal/Wolf/interestedAngle +FD: net/minecraft/world/entity/animal/Wolf/f_30362_ net/minecraft/world/entity/animal/Wolf/interestedAngleO +FD: net/minecraft/world/entity/animal/Wolf/f_30363_ net/minecraft/world/entity/animal/Wolf/isWet +FD: net/minecraft/world/entity/animal/Wolf/f_30364_ net/minecraft/world/entity/animal/Wolf/isShaking +FD: net/minecraft/world/entity/animal/Wolf/f_30365_ net/minecraft/world/entity/animal/Wolf/shakeAnim +FD: net/minecraft/world/entity/animal/Wolf/f_30366_ net/minecraft/world/entity/animal/Wolf/shakeAnimO +FD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/f_30450_ net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/this$0 +FD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/f_30451_ net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/wolf +FD: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/f_203121_ net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/this$0 +FD: net/minecraft/world/entity/animal/allay/Allay/f_218297_ net/minecraft/world/entity/animal/allay/Allay/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/allay/Allay/f_218299_ net/minecraft/world/entity/animal/allay/Allay/ITEM_PICKUP_REACH +FD: net/minecraft/world/entity/animal/allay/Allay/f_218301_ net/minecraft/world/entity/animal/allay/Allay/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/allay/Allay/f_218303_ net/minecraft/world/entity/animal/allay/Allay/inventory +FD: net/minecraft/world/entity/animal/allay/Allay/f_218304_ net/minecraft/world/entity/animal/allay/Allay/holdingItemAnimationTicks +FD: net/minecraft/world/entity/animal/allay/Allay/f_218305_ net/minecraft/world/entity/animal/allay/Allay/holdingItemAnimationTicks0 +FD: net/minecraft/world/entity/animal/allay/Allay/f_218306_ net/minecraft/world/entity/animal/allay/Allay/THROW_SOUND_PITCHES +FD: net/minecraft/world/entity/animal/allay/Allay/f_218307_ net/minecraft/world/entity/animal/allay/Allay/LOGGER +FD: net/minecraft/world/entity/animal/allay/Allay/f_238541_ net/minecraft/world/entity/animal/allay/Allay/spinningAnimationTicks +FD: net/minecraft/world/entity/animal/allay/Allay/f_238543_ net/minecraft/world/entity/animal/allay/Allay/DUPLICATION_COOLDOWN_TICKS +FD: net/minecraft/world/entity/animal/allay/Allay/f_238552_ net/minecraft/world/entity/animal/allay/Allay/spinningAnimationTicks0 +FD: net/minecraft/world/entity/animal/allay/Allay/f_238563_ net/minecraft/world/entity/animal/allay/Allay/dynamicJukeboxListener +FD: net/minecraft/world/entity/animal/allay/Allay/f_238627_ net/minecraft/world/entity/animal/allay/Allay/DATA_DANCING +FD: net/minecraft/world/entity/animal/allay/Allay/f_238650_ net/minecraft/world/entity/animal/allay/Allay/SPINNING_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/allay/Allay/f_238682_ net/minecraft/world/entity/animal/allay/Allay/jukeboxPos +FD: net/minecraft/world/entity/animal/allay/Allay/f_238685_ net/minecraft/world/entity/animal/allay/Allay/dynamicVibrationListener +FD: net/minecraft/world/entity/animal/allay/Allay/f_238687_ net/minecraft/world/entity/animal/allay/Allay/dancingAnimationTicks +FD: net/minecraft/world/entity/animal/allay/Allay/f_238696_ net/minecraft/world/entity/animal/allay/Allay/DANCING_LOOP_DURATION +FD: net/minecraft/world/entity/animal/allay/Allay/f_238742_ net/minecraft/world/entity/animal/allay/Allay/NUM_OF_DUPLICATION_HEARTS +FD: net/minecraft/world/entity/animal/allay/Allay/f_238768_ net/minecraft/world/entity/animal/allay/Allay/LIFTING_ITEM_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/allay/Allay/f_238776_ net/minecraft/world/entity/animal/allay/Allay/DUPLICATION_ITEM +FD: net/minecraft/world/entity/animal/allay/Allay/f_238791_ net/minecraft/world/entity/animal/allay/Allay/duplicationCooldown +FD: net/minecraft/world/entity/animal/allay/Allay/f_238802_ net/minecraft/world/entity/animal/allay/Allay/DATA_CAN_DUPLICATE +FD: net/minecraft/world/entity/animal/allay/Allay/f_243732_ net/minecraft/world/entity/animal/allay/Allay/RIDING_OFFSET +FD: net/minecraft/world/entity/animal/allay/Allay/f_279563_ net/minecraft/world/entity/animal/allay/Allay/vibrationUser +FD: net/minecraft/world/entity/animal/allay/Allay/f_279586_ net/minecraft/world/entity/animal/allay/Allay/vibrationData +FD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/f_238537_ net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/listenerSource +FD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/f_238591_ net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/this$0 +FD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/f_238604_ net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/listenerRadius +FD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/f_279537_ net/minecraft/world/entity/animal/allay/Allay$VibrationUser/VIBRATION_EVENT_LISTENER_RANGE +FD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/f_279641_ net/minecraft/world/entity/animal/allay/Allay$VibrationUser/positionSource +FD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/f_279649_ net/minecraft/world/entity/animal/allay/Allay$VibrationUser/this$0 +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218396_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218397_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_DEPOSIT_TARGET +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218398_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_RETRIEVING_ITEM +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218399_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218400_ net/minecraft/world/entity/animal/allay/AllayAi/CLOSE_ENOUGH_TO_TARGET +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218401_ net/minecraft/world/entity/animal/allay/AllayAi/TOO_FAR_FROM_TARGET +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218402_ net/minecraft/world/entity/animal/allay/AllayAi/MAX_LOOK_DISTANCE +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218403_ net/minecraft/world/entity/animal/allay/AllayAi/MIN_WAIT_DURATION +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218404_ net/minecraft/world/entity/animal/allay/AllayAi/MAX_WAIT_DURATION +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218405_ net/minecraft/world/entity/animal/allay/AllayAi/TIME_TO_FORGET_NOTEBLOCK +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218406_ net/minecraft/world/entity/animal/allay/AllayAi/DISTANCE_TO_WANTED_ITEM +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_244467_ net/minecraft/world/entity/animal/allay/AllayAi/GIVE_ITEM_TIMEOUT_DURATION +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149090_ net/minecraft/world/entity/animal/axolotl/Axolotl/TOTAL_PLAYDEAD_TIME +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149091_ net/minecraft/world/entity/animal/axolotl/Axolotl/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149092_ net/minecraft/world/entity/animal/axolotl/Axolotl/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149093_ net/minecraft/world/entity/animal/axolotl/Axolotl/PLAYER_REGEN_DETECTION_RANGE +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149094_ net/minecraft/world/entity/animal/axolotl/Axolotl/RARE_VARIANT_CHANCE +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149095_ net/minecraft/world/entity/animal/axolotl/Axolotl/VARIANT_TAG +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149096_ net/minecraft/world/entity/animal/axolotl/Axolotl/DATA_VARIANT +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149097_ net/minecraft/world/entity/animal/axolotl/Axolotl/DATA_PLAYING_DEAD +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149098_ net/minecraft/world/entity/animal/axolotl/Axolotl/FROM_BUCKET +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149099_ net/minecraft/world/entity/animal/axolotl/Axolotl/AXOLOTL_TOTAL_AIR_SUPPLY +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149100_ net/minecraft/world/entity/animal/axolotl/Axolotl/REHYDRATE_AIR_SUPPLY +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149101_ net/minecraft/world/entity/animal/axolotl/Axolotl/modelRotationValues +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149102_ net/minecraft/world/entity/animal/axolotl/Axolotl/REGEN_BUFF_BASE_DURATION +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_181147_ net/minecraft/world/entity/animal/axolotl/Axolotl/REGEN_BUFF_MAX_DURATION +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/f_149202_ net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/types +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/f_149207_ net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/this$0 +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/f_149213_ net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/axolotl +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/$VALUES net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/$VALUES +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/BLUE net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/BLUE +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/CYAN net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/CYAN +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/GOLD net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/GOLD +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/LUCY net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/LUCY +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/WILD net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/WILD +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149230_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/BY_ID +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149231_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/id +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149232_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/name +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149233_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/common +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_262307_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/CODEC +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149279_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149280_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149281_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_ON_LAND +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149282_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_IDLING_IN_WATER +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149283_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_CHASING_IN_WATER +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149284_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT_IN_WATER +FD: net/minecraft/world/entity/animal/camel/Camel/f_243705_ net/minecraft/world/entity/animal/camel/Camel/TEMPTATION_ITEM +FD: net/minecraft/world/entity/animal/camel/Camel/f_243730_ net/minecraft/world/entity/animal/camel/Camel/SITTING_HEIGHT_DIFFERENCE +FD: net/minecraft/world/entity/animal/camel/Camel/f_243883_ net/minecraft/world/entity/animal/camel/Camel/LAST_POSE_CHANGE_TICK +FD: net/minecraft/world/entity/animal/camel/Camel/f_243928_ net/minecraft/world/entity/animal/camel/Camel/sitAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_243982_ net/minecraft/world/entity/animal/camel/Camel/RUNNING_SPEED_BONUS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244047_ net/minecraft/world/entity/animal/camel/Camel/idleAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_244084_ net/minecraft/world/entity/animal/camel/Camel/SITDOWN_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244101_ net/minecraft/world/entity/animal/camel/Camel/DASH_HORIZONTAL_MOMENTUM +FD: net/minecraft/world/entity/animal/camel/Camel/f_244117_ net/minecraft/world/entity/animal/camel/Camel/DASH +FD: net/minecraft/world/entity/animal/camel/Camel/f_244195_ net/minecraft/world/entity/animal/camel/Camel/DASH_VERTICAL_MOMENTUM +FD: net/minecraft/world/entity/animal/camel/Camel/f_244242_ net/minecraft/world/entity/animal/camel/Camel/sitUpAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_244243_ net/minecraft/world/entity/animal/camel/Camel/dashAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_244289_ net/minecraft/world/entity/animal/camel/Camel/DASH_COOLDOWN_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244306_ net/minecraft/world/entity/animal/camel/Camel/SITTING_DIMENSIONS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244435_ net/minecraft/world/entity/animal/camel/Camel/STANDUP_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244455_ net/minecraft/world/entity/animal/camel/Camel/dashCooldown +FD: net/minecraft/world/entity/animal/camel/Camel/f_244476_ net/minecraft/world/entity/animal/camel/Camel/idleAnimationTimeout +FD: net/minecraft/world/entity/animal/camel/Camel/f_244638_ net/minecraft/world/entity/animal/camel/Camel/IDLE_MINIMAL_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_252486_ net/minecraft/world/entity/animal/camel/Camel/sitPoseAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_263725_ net/minecraft/world/entity/animal/camel/Camel/MAX_HEAD_Y_ROT +FD: net/minecraft/world/entity/animal/camel/Camel/f_278128_ net/minecraft/world/entity/animal/camel/Camel/DASH_MINIMUM_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/f_243675_ net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/this$0 +FD: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/f_273864_ net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/this$0 +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_243736_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_243769_ net/minecraft/world/entity/animal/camel/CamelAi/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244010_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244079_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244120_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244250_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244270_ net/minecraft/world/entity/animal/camel/CamelAi/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244425_ net/minecraft/world/entity/animal/camel/CamelAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/f_244022_ net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/minimalPoseTicks +FD: net/minecraft/world/entity/animal/frog/Frog/f_218455_ net/minecraft/world/entity/animal/frog/Frog/TEMPTATION_ITEM +FD: net/minecraft/world/entity/animal/frog/Frog/f_218456_ net/minecraft/world/entity/animal/frog/Frog/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/frog/Frog/f_218457_ net/minecraft/world/entity/animal/frog/Frog/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/frog/Frog/f_218458_ net/minecraft/world/entity/animal/frog/Frog/VARIANT_KEY +FD: net/minecraft/world/entity/animal/frog/Frog/f_218459_ net/minecraft/world/entity/animal/frog/Frog/jumpAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218460_ net/minecraft/world/entity/animal/frog/Frog/croakAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218461_ net/minecraft/world/entity/animal/frog/Frog/tongueAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218464_ net/minecraft/world/entity/animal/frog/Frog/swimIdleAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218465_ net/minecraft/world/entity/animal/frog/Frog/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/frog/Frog/f_218466_ net/minecraft/world/entity/animal/frog/Frog/DATA_TONGUE_TARGET_ID +FD: net/minecraft/world/entity/animal/frog/Frog/f_218467_ net/minecraft/world/entity/animal/frog/Frog/FROG_FALL_DAMAGE_REDUCTION +FD: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/f_218541_ net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/this$0 +FD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/f_218546_ net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/belowPos +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218560_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218561_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218562_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218563_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_ON_LAND +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218564_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_IN_WATER +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218565_ net/minecraft/world/entity/animal/frog/FrogAi/TIME_BETWEEN_LONG_JUMPS +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218566_ net/minecraft/world/entity/animal/frog/FrogAi/MAX_LONG_JUMP_HEIGHT +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218567_ net/minecraft/world/entity/animal/frog/FrogAi/MAX_LONG_JUMP_WIDTH +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218568_ net/minecraft/world/entity/animal/frog/FrogAi/MAX_JUMP_VELOCITY +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218569_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218608_ net/minecraft/world/entity/animal/frog/ShootTongue/TIME_OUT_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218609_ net/minecraft/world/entity/animal/frog/ShootTongue/CATCH_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218610_ net/minecraft/world/entity/animal/frog/ShootTongue/TONGUE_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218611_ net/minecraft/world/entity/animal/frog/ShootTongue/EATING_DISTANCE +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218612_ net/minecraft/world/entity/animal/frog/ShootTongue/EATING_MOVEMENT_FACTOR +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218613_ net/minecraft/world/entity/animal/frog/ShootTongue/eatAnimationTimer +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218614_ net/minecraft/world/entity/animal/frog/ShootTongue/calculatePathCounter +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218615_ net/minecraft/world/entity/animal/frog/ShootTongue/tongueSound +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218616_ net/minecraft/world/entity/animal/frog/ShootTongue/eatSound +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218617_ net/minecraft/world/entity/animal/frog/ShootTongue/itemSpawnPos +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218618_ net/minecraft/world/entity/animal/frog/ShootTongue/state +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_238166_ net/minecraft/world/entity/animal/frog/ShootTongue/UNREACHABLE_TONGUE_TARGETS_COOLDOWN_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_238181_ net/minecraft/world/entity/animal/frog/ShootTongue/MAX_UNREACHBLE_TONGUE_TARGETS_IN_MEMORY +FD: net/minecraft/world/entity/animal/frog/ShootTongue$1/f_218663_ net/minecraft/world/entity/animal/frog/ShootTongue$1/$SwitchMap$net$minecraft$world$entity$animal$frog$ShootTongue$State +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/$VALUES net/minecraft/world/entity/animal/frog/ShootTongue$State/$VALUES +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/CATCH_ANIMATION net/minecraft/world/entity/animal/frog/ShootTongue$State/CATCH_ANIMATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/DONE net/minecraft/world/entity/animal/frog/ShootTongue$State/DONE +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/EAT_ANIMATION net/minecraft/world/entity/animal/frog/ShootTongue$State/EAT_ANIMATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/MOVE_TO_TARGET net/minecraft/world/entity/animal/frog/ShootTongue$State/MOVE_TO_TARGET +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218678_ net/minecraft/world/entity/animal/frog/Tadpole/ticksToBeFrog +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218679_ net/minecraft/world/entity/animal/frog/Tadpole/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218680_ net/minecraft/world/entity/animal/frog/Tadpole/age +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218681_ net/minecraft/world/entity/animal/frog/Tadpole/HITBOX_WIDTH +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218682_ net/minecraft/world/entity/animal/frog/Tadpole/HITBOX_HEIGHT +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218683_ net/minecraft/world/entity/animal/frog/Tadpole/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/frog/TadpoleAi/f_218735_ net/minecraft/world/entity/animal/frog/TadpoleAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/frog/TadpoleAi/f_218736_ net/minecraft/world/entity/animal/frog/TadpoleAi/SPEED_MULTIPLIER_WHEN_IDLING_IN_WATER +FD: net/minecraft/world/entity/animal/frog/TadpoleAi/f_218737_ net/minecraft/world/entity/animal/frog/TadpoleAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/goat/Goat/f_149342_ net/minecraft/world/entity/animal/goat/Goat/LONG_JUMPING_DIMENSIONS +FD: net/minecraft/world/entity/animal/goat/Goat/f_149343_ net/minecraft/world/entity/animal/goat/Goat/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/goat/Goat/f_149344_ net/minecraft/world/entity/animal/goat/Goat/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/goat/Goat/f_149345_ net/minecraft/world/entity/animal/goat/Goat/GOAT_FALL_DAMAGE_REDUCTION +FD: net/minecraft/world/entity/animal/goat/Goat/f_149346_ net/minecraft/world/entity/animal/goat/Goat/GOAT_SCREAMING_CHANCE +FD: net/minecraft/world/entity/animal/goat/Goat/f_149347_ net/minecraft/world/entity/animal/goat/Goat/DATA_IS_SCREAMING_GOAT +FD: net/minecraft/world/entity/animal/goat/Goat/f_149348_ net/minecraft/world/entity/animal/goat/Goat/isLoweringHead +FD: net/minecraft/world/entity/animal/goat/Goat/f_149349_ net/minecraft/world/entity/animal/goat/Goat/lowerHeadTick +FD: net/minecraft/world/entity/animal/goat/Goat/f_182382_ net/minecraft/world/entity/animal/goat/Goat/ADULT_ATTACK_DAMAGE +FD: net/minecraft/world/entity/animal/goat/Goat/f_182383_ net/minecraft/world/entity/animal/goat/Goat/BABY_ATTACK_DAMAGE +FD: net/minecraft/world/entity/animal/goat/Goat/f_218749_ net/minecraft/world/entity/animal/goat/Goat/UNIHORN_CHANCE +FD: net/minecraft/world/entity/animal/goat/Goat/f_218750_ net/minecraft/world/entity/animal/goat/Goat/DATA_HAS_LEFT_HORN +FD: net/minecraft/world/entity/animal/goat/Goat/f_218751_ net/minecraft/world/entity/animal/goat/Goat/DATA_HAS_RIGHT_HORN +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149420_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_PREPARE_TIME +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149421_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_MAX_DISTANCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149422_ net/minecraft/world/entity/animal/goat/GoatAi/MAX_LONG_JUMP_HEIGHT +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149423_ net/minecraft/world/entity/animal/goat/GoatAi/MAX_LONG_JUMP_WIDTH +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149424_ net/minecraft/world/entity/animal/goat/GoatAi/MAX_JUMP_VELOCITY +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149425_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_MIN_DISTANCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149426_ net/minecraft/world/entity/animal/goat/GoatAi/ADULT_RAM_KNOCKBACK_FORCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149427_ net/minecraft/world/entity/animal/goat/GoatAi/BABY_RAM_KNOCKBACK_FORCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149428_ net/minecraft/world/entity/animal/goat/GoatAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149429_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149430_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149431_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149432_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149433_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149434_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_PREPARING_TO_RAM +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149435_ net/minecraft/world/entity/animal/goat/GoatAi/TIME_BETWEEN_LONG_JUMPS +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149436_ net/minecraft/world/entity/animal/goat/GoatAi/TIME_BETWEEN_RAMS +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149437_ net/minecraft/world/entity/animal/goat/GoatAi/TIME_BETWEEN_RAMS_SCREAMER +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149438_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_TARGET_CONDITIONS +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149439_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_RAMMING +FD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/f_149477_ net/minecraft/world/entity/animal/horse/AbstractChestedHorse/INV_CHEST_COUNT +FD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/f_30482_ net/minecraft/world/entity/animal/horse/AbstractChestedHorse/DATA_ID_CHEST +FD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/f_149480_ net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/this$0 +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149486_ net/minecraft/world/entity/animal/horse/AbstractHorse/EQUIPMENT_SLOT_OFFSET +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149487_ net/minecraft/world/entity/animal/horse/AbstractHorse/CHEST_SLOT_OFFSET +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149488_ net/minecraft/world/entity/animal/horse/AbstractHorse/INVENTORY_SLOT_OFFSET +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149489_ net/minecraft/world/entity/animal/horse/AbstractHorse/INV_SLOT_SADDLE +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149490_ net/minecraft/world/entity/animal/horse/AbstractHorse/INV_SLOT_ARMOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149491_ net/minecraft/world/entity/animal/horse/AbstractHorse/INV_BASE_COUNT +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149492_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_TAME +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149493_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_SADDLE +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149494_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_BRED +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149495_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_EATING +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149496_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_STANDING +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149497_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_OPEN_MOUTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_268614_ net/minecraft/world/entity/animal/horse/AbstractHorse/owner +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271139_ net/minecraft/world/entity/animal/horse/AbstractHorse/MIN_MOVEMENT_SPEED +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271293_ net/minecraft/world/entity/animal/horse/AbstractHorse/MAX_JUMP_STRENGTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271305_ net/minecraft/world/entity/animal/horse/AbstractHorse/MIN_JUMP_STRENGTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271308_ net/minecraft/world/entity/animal/horse/AbstractHorse/MAX_HEALTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271313_ net/minecraft/world/entity/animal/horse/AbstractHorse/MIN_HEALTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271338_ net/minecraft/world/entity/animal/horse/AbstractHorse/BREEDING_CROSS_FACTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271541_ net/minecraft/world/entity/animal/horse/AbstractHorse/MAX_MOVEMENT_SPEED +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_273870_ net/minecraft/world/entity/animal/horse/AbstractHorse/BACKWARDS_MOVE_SPEED_FACTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_273946_ net/minecraft/world/entity/animal/horse/AbstractHorse/SIDEWAYS_MOVE_SPEED_FACTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30507_ net/minecraft/world/entity/animal/horse/AbstractHorse/eatingCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30508_ net/minecraft/world/entity/animal/horse/AbstractHorse/mouthCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30509_ net/minecraft/world/entity/animal/horse/AbstractHorse/standCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30510_ net/minecraft/world/entity/animal/horse/AbstractHorse/allowStandSliding +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30511_ net/minecraft/world/entity/animal/horse/AbstractHorse/eatAnim +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30512_ net/minecraft/world/entity/animal/horse/AbstractHorse/eatAnimO +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30513_ net/minecraft/world/entity/animal/horse/AbstractHorse/standAnim +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30514_ net/minecraft/world/entity/animal/horse/AbstractHorse/standAnimO +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30515_ net/minecraft/world/entity/animal/horse/AbstractHorse/mouthAnim +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30516_ net/minecraft/world/entity/animal/horse/AbstractHorse/mouthAnimO +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30517_ net/minecraft/world/entity/animal/horse/AbstractHorse/tailCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30518_ net/minecraft/world/entity/animal/horse/AbstractHorse/sprintCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30519_ net/minecraft/world/entity/animal/horse/AbstractHorse/isJumping +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30520_ net/minecraft/world/entity/animal/horse/AbstractHorse/inventory +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30521_ net/minecraft/world/entity/animal/horse/AbstractHorse/temper +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30522_ net/minecraft/world/entity/animal/horse/AbstractHorse/playerJumpPendingScale +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30523_ net/minecraft/world/entity/animal/horse/AbstractHorse/canGallop +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30524_ net/minecraft/world/entity/animal/horse/AbstractHorse/gallopSoundCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30525_ net/minecraft/world/entity/animal/horse/AbstractHorse/PARENT_HORSE_SELECTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30526_ net/minecraft/world/entity/animal/horse/AbstractHorse/MOMMY_TARGETING +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30527_ net/minecraft/world/entity/animal/horse/AbstractHorse/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30528_ net/minecraft/world/entity/animal/horse/AbstractHorse/DATA_ID_FLAGS +FD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/f_149519_ net/minecraft/world/entity/animal/horse/AbstractHorse$1/val$slot +FD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/f_149520_ net/minecraft/world/entity/animal/horse/AbstractHorse$1/val$check +FD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/f_149521_ net/minecraft/world/entity/animal/horse/AbstractHorse$1/this$0 +FD: net/minecraft/world/entity/animal/horse/Horse/f_30685_ net/minecraft/world/entity/animal/horse/Horse/ARMOR_MODIFIER_UUID +FD: net/minecraft/world/entity/animal/horse/Horse/f_30686_ net/minecraft/world/entity/animal/horse/Horse/DATA_ID_TYPE_VARIANT +FD: net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/f_30738_ net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/variant +FD: net/minecraft/world/entity/animal/horse/Llama/f_149535_ net/minecraft/world/entity/animal/horse/Llama/MAX_STRENGTH +FD: net/minecraft/world/entity/animal/horse/Llama/f_30741_ net/minecraft/world/entity/animal/horse/Llama/didSpit +FD: net/minecraft/world/entity/animal/horse/Llama/f_30742_ net/minecraft/world/entity/animal/horse/Llama/caravanHead +FD: net/minecraft/world/entity/animal/horse/Llama/f_30743_ net/minecraft/world/entity/animal/horse/Llama/caravanTail +FD: net/minecraft/world/entity/animal/horse/Llama/f_30744_ net/minecraft/world/entity/animal/horse/Llama/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/horse/Llama/f_30745_ net/minecraft/world/entity/animal/horse/Llama/DATA_STRENGTH_ID +FD: net/minecraft/world/entity/animal/horse/Llama/f_30746_ net/minecraft/world/entity/animal/horse/Llama/DATA_SWAG_ID +FD: net/minecraft/world/entity/animal/horse/Llama/f_30747_ net/minecraft/world/entity/animal/horse/Llama/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/f_30847_ net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/variant +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/$VALUES net/minecraft/world/entity/animal/horse/Llama$Variant/$VALUES +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/BROWN net/minecraft/world/entity/animal/horse/Llama$Variant/BROWN +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/CREAMY net/minecraft/world/entity/animal/horse/Llama$Variant/CREAMY +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/GRAY net/minecraft/world/entity/animal/horse/Llama$Variant/GRAY +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/WHITE net/minecraft/world/entity/animal/horse/Llama$Variant/WHITE +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262208_ net/minecraft/world/entity/animal/horse/Llama$Variant/BY_ID +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262240_ net/minecraft/world/entity/animal/horse/Llama$Variant/id +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262253_ net/minecraft/world/entity/animal/horse/Llama$Variant/name +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262288_ net/minecraft/world/entity/animal/horse/Llama$Variant/CODEC +FD: net/minecraft/world/entity/animal/horse/Markings/$VALUES net/minecraft/world/entity/animal/horse/Markings/$VALUES +FD: net/minecraft/world/entity/animal/horse/Markings/BLACK_DOTS net/minecraft/world/entity/animal/horse/Markings/BLACK_DOTS +FD: net/minecraft/world/entity/animal/horse/Markings/NONE net/minecraft/world/entity/animal/horse/Markings/NONE +FD: net/minecraft/world/entity/animal/horse/Markings/WHITE net/minecraft/world/entity/animal/horse/Markings/WHITE +FD: net/minecraft/world/entity/animal/horse/Markings/WHITE_DOTS net/minecraft/world/entity/animal/horse/Markings/WHITE_DOTS +FD: net/minecraft/world/entity/animal/horse/Markings/WHITE_FIELD net/minecraft/world/entity/animal/horse/Markings/WHITE_FIELD +FD: net/minecraft/world/entity/animal/horse/Markings/f_30861_ net/minecraft/world/entity/animal/horse/Markings/BY_ID +FD: net/minecraft/world/entity/animal/horse/Markings/f_30862_ net/minecraft/world/entity/animal/horse/Markings/id +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_149551_ net/minecraft/world/entity/animal/horse/SkeletonHorse/TRAP_MAX_LIFE +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_30890_ net/minecraft/world/entity/animal/horse/SkeletonHorse/skeletonTrapGoal +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_30891_ net/minecraft/world/entity/animal/horse/SkeletonHorse/isTrap +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_30892_ net/minecraft/world/entity/animal/horse/SkeletonHorse/trapTime +FD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/f_30925_ net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/horse +FD: net/minecraft/world/entity/animal/horse/TraderLlama/f_30937_ net/minecraft/world/entity/animal/horse/TraderLlama/despawnDelay +FD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/f_30962_ net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/llama +FD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/f_30963_ net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/ownerLastHurtBy +FD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/f_30964_ net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/timestamp +FD: net/minecraft/world/entity/animal/horse/Variant/$VALUES net/minecraft/world/entity/animal/horse/Variant/$VALUES +FD: net/minecraft/world/entity/animal/horse/Variant/BLACK net/minecraft/world/entity/animal/horse/Variant/BLACK +FD: net/minecraft/world/entity/animal/horse/Variant/BROWN net/minecraft/world/entity/animal/horse/Variant/BROWN +FD: net/minecraft/world/entity/animal/horse/Variant/CHESTNUT net/minecraft/world/entity/animal/horse/Variant/CHESTNUT +FD: net/minecraft/world/entity/animal/horse/Variant/CREAMY net/minecraft/world/entity/animal/horse/Variant/CREAMY +FD: net/minecraft/world/entity/animal/horse/Variant/DARK_BROWN net/minecraft/world/entity/animal/horse/Variant/DARK_BROWN +FD: net/minecraft/world/entity/animal/horse/Variant/GRAY net/minecraft/world/entity/animal/horse/Variant/GRAY +FD: net/minecraft/world/entity/animal/horse/Variant/WHITE net/minecraft/world/entity/animal/horse/Variant/WHITE +FD: net/minecraft/world/entity/animal/horse/Variant/f_262227_ net/minecraft/world/entity/animal/horse/Variant/name +FD: net/minecraft/world/entity/animal/horse/Variant/f_262264_ net/minecraft/world/entity/animal/horse/Variant/CODEC +FD: net/minecraft/world/entity/animal/horse/Variant/f_30977_ net/minecraft/world/entity/animal/horse/Variant/BY_ID +FD: net/minecraft/world/entity/animal/horse/Variant/f_30978_ net/minecraft/world/entity/animal/horse/Variant/id +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271092_ net/minecraft/world/entity/animal/sniffer/Sniffer/scentingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271109_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_PARTICLES_DELAY_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271151_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_DROP_SEED_OFFSET_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271252_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_PARTICLES_DURATION_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271278_ net/minecraft/world/entity/animal/sniffer/Sniffer/sniffingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271318_ net/minecraft/world/entity/animal/sniffer/Sniffer/risingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271414_ net/minecraft/world/entity/animal/sniffer/Sniffer/SNIFFER_BABY_AGE_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271416_ net/minecraft/world/entity/animal/sniffer/Sniffer/DATA_STATE +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271434_ net/minecraft/world/entity/animal/sniffer/Sniffer/feelingHappyAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271435_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_PARTICLES_AMOUNT +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271472_ net/minecraft/world/entity/animal/sniffer/Sniffer/diggingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271498_ net/minecraft/world/entity/animal/sniffer/Sniffer/DATA_DROP_SEED_AT_TICK +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_285627_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_DIMENSIONS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_285640_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_BB_HEIGHT_OFFSET +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$1/f_271447_ net/minecraft/world/entity/animal/sniffer/Sniffer$1/$SwitchMap$net$minecraft$world$entity$animal$sniffer$Sniffer$State +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/$VALUES net/minecraft/world/entity/animal/sniffer/Sniffer$State/$VALUES +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/DIGGING net/minecraft/world/entity/animal/sniffer/Sniffer$State/DIGGING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/FEELING_HAPPY net/minecraft/world/entity/animal/sniffer/Sniffer$State/FEELING_HAPPY +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/IDLING net/minecraft/world/entity/animal/sniffer/Sniffer$State/IDLING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/RISING net/minecraft/world/entity/animal/sniffer/Sniffer$State/RISING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/SCENTING net/minecraft/world/entity/animal/sniffer/Sniffer$State/SCENTING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/SEARCHING net/minecraft/world/entity/animal/sniffer/Sniffer$State/SEARCHING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/SNIFFING net/minecraft/world/entity/animal/sniffer/Sniffer$State/SNIFFING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271113_ net/minecraft/world/entity/animal/sniffer/SnifferAi/MAX_LOOK_DISTANCE +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271203_ net/minecraft/world/entity/animal/sniffer/SnifferAi/LOGGER +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271225_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_SNIFFING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271288_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271352_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271430_ net/minecraft/world/entity/animal/sniffer/SnifferAi/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271483_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271542_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SNIFFING_COOLDOWN_TICKS +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_278441_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/boss/EnderDragonPart/f_31010_ net/minecraft/world/entity/boss/EnderDragonPart/parentMob +FD: net/minecraft/world/entity/boss/EnderDragonPart/f_31011_ net/minecraft/world/entity/boss/EnderDragonPart/name +FD: net/minecraft/world/entity/boss/EnderDragonPart/f_31012_ net/minecraft/world/entity/boss/EnderDragonPart/size +FD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/f_31032_ net/minecraft/world/entity/boss/enderdragon/EndCrystal/time +FD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/f_31033_ net/minecraft/world/entity/boss/enderdragon/EndCrystal/DATA_BEAM_TARGET +FD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/f_31034_ net/minecraft/world/entity/boss/enderdragon/EndCrystal/DATA_SHOW_BOTTOM +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149566_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/GROWL_INTERVAL_MIN +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149567_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/GROWL_INTERVAL_MAX +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149568_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/SITTING_ALLOWED_DAMAGE_PERCENTAGE +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149569_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/DRAGON_DEATH_TIME_KEY +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149570_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/DRAGON_PHASE_KEY +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_286933_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/fightOrigin +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31067_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/DATA_PHASE +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31068_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/tail1 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31069_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/tail2 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31070_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/tail3 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31071_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/wing1 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31072_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/wing2 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31073_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/dragonFight +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31074_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/phaseManager +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31075_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/growlTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31076_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/sittingDamageReceived +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31077_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/nodes +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31078_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/nodeAdjacency +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31079_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/openSet +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31080_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/head +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31081_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/oFlapTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31082_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/flapTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31083_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/inWall +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31084_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/dragonDeathTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31085_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/yRotA +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31086_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/nearestCrystal +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31087_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31088_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/CRYSTAL_DESTROY_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31089_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/subEntities +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31090_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/neck +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31091_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/body +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31092_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/positions +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31093_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/posPointer +FD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/f_31176_ net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/dragon +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_149577_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/CHARGE_RECOVERY_TIME +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_31201_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_31202_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_31203_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/timeSinceCharge +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/f_31214_ net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/f_31215_ net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/time +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31224_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/NEW_TARGET_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31225_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31226_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31227_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/clockwise +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/f_31244_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/f_31253_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/NEAR_EGG_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/f_31254_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/f_31255_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/f_31303_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/f_149578_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/ROAR_DURATION +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/f_31319_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/attackingTicks +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_149579_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/FLAME_DURATION +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_149580_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/SITTING_FLAME_ATTACKS_COUNT +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_149581_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/WARMUP_TIME +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_31326_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/flameTicks +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_31327_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/flameCount +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_31328_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/flame +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149582_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_SCANNING_IDLE_TICKS +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149583_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_ATTACK_Y_VIEW_RANGE +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149584_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_ATTACK_VIEW_RANGE +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149585_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_CHARGE_VIEW_RANGE +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_31337_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/CHARGE_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_31338_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/scanTargeting +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_31339_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/scanningTime +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_149586_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/FIREBALL_CHARGE_AMOUNT +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31349_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31350_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/fireballCharge +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31351_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31352_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31353_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/attackTarget +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31354_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/holdingPatternClockwise +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/f_31366_ net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/firstTick +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/f_31367_ net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/f_31368_ net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31377_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/HOLDING_PATTERN +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31378_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/STRAFE_PLAYER +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31379_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/LANDING_APPROACH +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31380_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/LANDING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31381_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/TAKEOFF +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31382_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/SITTING_FLAMING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31383_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/SITTING_SCANNING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31384_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/SITTING_ATTACKING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31385_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/CHARGING_PLAYER +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31386_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/DYING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31387_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/HOVERING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31388_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/phases +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31389_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/instanceClass +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31390_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/id +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31391_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/name +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31408_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31409_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/dragon +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31410_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/phases +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31411_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/currentPhase +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_149587_ net/minecraft/world/entity/boss/wither/WitherBoss/INVULNERABLE_TICKS +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31420_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGET_A +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31421_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGETS +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31422_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_ID_INV +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31423_ net/minecraft/world/entity/boss/wither/WitherBoss/xRotHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31424_ net/minecraft/world/entity/boss/wither/WitherBoss/yRotHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31425_ net/minecraft/world/entity/boss/wither/WitherBoss/xRotOHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31426_ net/minecraft/world/entity/boss/wither/WitherBoss/yRotOHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31427_ net/minecraft/world/entity/boss/wither/WitherBoss/nextHeadUpdate +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31428_ net/minecraft/world/entity/boss/wither/WitherBoss/idleHeadUpdates +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31429_ net/minecraft/world/entity/boss/wither/WitherBoss/destroyBlocksTick +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31430_ net/minecraft/world/entity/boss/wither/WitherBoss/bossEvent +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31431_ net/minecraft/world/entity/boss/wither/WitherBoss/LIVING_ENTITY_SELECTOR +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31432_ net/minecraft/world/entity/boss/wither/WitherBoss/TARGETING_CONDITIONS +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31433_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGET_B +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31434_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGET_C +FD: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/f_31520_ net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/this$0 +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149592_ net/minecraft/world/entity/decoration/ArmorStand/WOBBLE_TIME +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149593_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_NO_BASEPLATE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149594_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_MARKER +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149595_ net/minecraft/world/entity/decoration/ArmorStand/ENABLE_ARMS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149596_ net/minecraft/world/entity/decoration/ArmorStand/FEET_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149597_ net/minecraft/world/entity/decoration/ArmorStand/CHEST_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149598_ net/minecraft/world/entity/decoration/ArmorStand/LEGS_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149599_ net/minecraft/world/entity/decoration/ArmorStand/DISABLE_TAKING_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149600_ net/minecraft/world/entity/decoration/ArmorStand/HEAD_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149601_ net/minecraft/world/entity/decoration/ArmorStand/DISABLE_PUTTING_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149602_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_SMALL +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149603_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_SHOW_ARMS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31524_ net/minecraft/world/entity/decoration/ArmorStand/DATA_CLIENT_FLAGS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31525_ net/minecraft/world/entity/decoration/ArmorStand/leftLegPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31526_ net/minecraft/world/entity/decoration/ArmorStand/rightLegPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31527_ net/minecraft/world/entity/decoration/ArmorStand/DATA_RIGHT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31528_ net/minecraft/world/entity/decoration/ArmorStand/lastHit +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31529_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_HEAD_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31530_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_BODY_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31531_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_LEFT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31532_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_RIGHT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31533_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_LEFT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31534_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_RIGHT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31535_ net/minecraft/world/entity/decoration/ArmorStand/MARKER_DIMENSIONS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31536_ net/minecraft/world/entity/decoration/ArmorStand/BABY_DIMENSIONS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31537_ net/minecraft/world/entity/decoration/ArmorStand/RIDABLE_MINECARTS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31538_ net/minecraft/world/entity/decoration/ArmorStand/handItems +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31539_ net/minecraft/world/entity/decoration/ArmorStand/armorItems +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31540_ net/minecraft/world/entity/decoration/ArmorStand/invisible +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31541_ net/minecraft/world/entity/decoration/ArmorStand/disabledSlots +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31542_ net/minecraft/world/entity/decoration/ArmorStand/headPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31543_ net/minecraft/world/entity/decoration/ArmorStand/bodyPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31544_ net/minecraft/world/entity/decoration/ArmorStand/leftArmPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31545_ net/minecraft/world/entity/decoration/ArmorStand/rightArmPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31546_ net/minecraft/world/entity/decoration/ArmorStand/DATA_HEAD_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31547_ net/minecraft/world/entity/decoration/ArmorStand/DATA_BODY_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31548_ net/minecraft/world/entity/decoration/ArmorStand/DATA_LEFT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31549_ net/minecraft/world/entity/decoration/ArmorStand/DATA_RIGHT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31550_ net/minecraft/world/entity/decoration/ArmorStand/DATA_LEFT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand$1/f_31695_ net/minecraft/world/entity/decoration/ArmorStand$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot$Type +FD: net/minecraft/world/entity/decoration/HangingEntity/f_238173_ net/minecraft/world/entity/decoration/HangingEntity/LOGGER +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31697_ net/minecraft/world/entity/decoration/HangingEntity/HANGING_ENTITY +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31698_ net/minecraft/world/entity/decoration/HangingEntity/pos +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31699_ net/minecraft/world/entity/decoration/HangingEntity/direction +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31700_ net/minecraft/world/entity/decoration/HangingEntity/checkInterval +FD: net/minecraft/world/entity/decoration/HangingEntity$1/f_31752_ net/minecraft/world/entity/decoration/HangingEntity$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/entity/decoration/ItemFrame/f_149619_ net/minecraft/world/entity/decoration/ItemFrame/NUM_ROTATIONS +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31754_ net/minecraft/world/entity/decoration/ItemFrame/dropChance +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31755_ net/minecraft/world/entity/decoration/ItemFrame/fixed +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31756_ net/minecraft/world/entity/decoration/ItemFrame/LOGGER +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31757_ net/minecraft/world/entity/decoration/ItemFrame/DATA_ITEM +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31758_ net/minecraft/world/entity/decoration/ItemFrame/DATA_ROTATION +FD: net/minecraft/world/entity/decoration/ItemFrame$1/f_149630_ net/minecraft/world/entity/decoration/ItemFrame$1/this$0 +FD: net/minecraft/world/entity/decoration/ItemFrame$2/f_149636_ net/minecraft/world/entity/decoration/ItemFrame$2/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/f_149638_ net/minecraft/world/entity/decoration/LeashFenceKnotEntity/OFFSET_Y +FD: net/minecraft/world/entity/decoration/Painting/f_218870_ net/minecraft/world/entity/decoration/Painting/DATA_PAINTING_VARIANT_ID +FD: net/minecraft/world/entity/decoration/Painting/f_218871_ net/minecraft/world/entity/decoration/Painting/DEFAULT_VARIANT +FD: net/minecraft/world/entity/decoration/Painting/f_268609_ net/minecraft/world/entity/decoration/Painting/VARIANT_TAG +FD: net/minecraft/world/entity/decoration/PaintingVariant/f_218903_ net/minecraft/world/entity/decoration/PaintingVariant/width +FD: net/minecraft/world/entity/decoration/PaintingVariant/f_218904_ net/minecraft/world/entity/decoration/PaintingVariant/height +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218910_ net/minecraft/world/entity/decoration/PaintingVariants/EARTH +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218911_ net/minecraft/world/entity/decoration/PaintingVariants/WIND +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218912_ net/minecraft/world/entity/decoration/PaintingVariants/WATER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218913_ net/minecraft/world/entity/decoration/PaintingVariants/FIRE +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218914_ net/minecraft/world/entity/decoration/PaintingVariants/KEBAB +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218915_ net/minecraft/world/entity/decoration/PaintingVariants/AZTEC +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218916_ net/minecraft/world/entity/decoration/PaintingVariants/ALBAN +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218917_ net/minecraft/world/entity/decoration/PaintingVariants/AZTEC2 +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218918_ net/minecraft/world/entity/decoration/PaintingVariants/BOMB +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218919_ net/minecraft/world/entity/decoration/PaintingVariants/PLANT +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218920_ net/minecraft/world/entity/decoration/PaintingVariants/WASTELAND +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218921_ net/minecraft/world/entity/decoration/PaintingVariants/POOL +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218922_ net/minecraft/world/entity/decoration/PaintingVariants/COURBET +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218923_ net/minecraft/world/entity/decoration/PaintingVariants/SEA +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218924_ net/minecraft/world/entity/decoration/PaintingVariants/SUNSET +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218925_ net/minecraft/world/entity/decoration/PaintingVariants/CREEBET +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218926_ net/minecraft/world/entity/decoration/PaintingVariants/WANDERER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218927_ net/minecraft/world/entity/decoration/PaintingVariants/GRAHAM +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218928_ net/minecraft/world/entity/decoration/PaintingVariants/MATCH +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218929_ net/minecraft/world/entity/decoration/PaintingVariants/BUST +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218930_ net/minecraft/world/entity/decoration/PaintingVariants/STAGE +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218931_ net/minecraft/world/entity/decoration/PaintingVariants/VOID +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218932_ net/minecraft/world/entity/decoration/PaintingVariants/SKULL_AND_ROSES +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218933_ net/minecraft/world/entity/decoration/PaintingVariants/WITHER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218934_ net/minecraft/world/entity/decoration/PaintingVariants/FIGHTERS +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218935_ net/minecraft/world/entity/decoration/PaintingVariants/POINTER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218936_ net/minecraft/world/entity/decoration/PaintingVariants/PIGSCENE +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218937_ net/minecraft/world/entity/decoration/PaintingVariants/BURNING_SKULL +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218938_ net/minecraft/world/entity/decoration/PaintingVariants/SKELETON +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218939_ net/minecraft/world/entity/decoration/PaintingVariants/DONKEY_KONG +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_149641_ net/minecraft/world/entity/item/FallingBlockEntity/fallDamagePerDistance +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_201970_ net/minecraft/world/entity/item/FallingBlockEntity/LOGGER +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31939_ net/minecraft/world/entity/item/FallingBlockEntity/hurtEntities +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31940_ net/minecraft/world/entity/item/FallingBlockEntity/fallDamageMax +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31942_ net/minecraft/world/entity/item/FallingBlockEntity/time +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31943_ net/minecraft/world/entity/item/FallingBlockEntity/dropItem +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31944_ net/minecraft/world/entity/item/FallingBlockEntity/blockData +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31945_ net/minecraft/world/entity/item/FallingBlockEntity/DATA_START_POS +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31946_ net/minecraft/world/entity/item/FallingBlockEntity/blockState +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31947_ net/minecraft/world/entity/item/FallingBlockEntity/cancelDrop +FD: net/minecraft/world/entity/item/ItemEntity/f_149659_ net/minecraft/world/entity/item/ItemEntity/LIFETIME +FD: net/minecraft/world/entity/item/ItemEntity/f_149660_ net/minecraft/world/entity/item/ItemEntity/INFINITE_PICKUP_DELAY +FD: net/minecraft/world/entity/item/ItemEntity/f_149661_ net/minecraft/world/entity/item/ItemEntity/INFINITE_LIFETIME +FD: net/minecraft/world/entity/item/ItemEntity/f_265881_ net/minecraft/world/entity/item/ItemEntity/target +FD: net/minecraft/world/entity/item/ItemEntity/f_31983_ net/minecraft/world/entity/item/ItemEntity/bobOffs +FD: net/minecraft/world/entity/item/ItemEntity/f_31984_ net/minecraft/world/entity/item/ItemEntity/DATA_ITEM +FD: net/minecraft/world/entity/item/ItemEntity/f_31985_ net/minecraft/world/entity/item/ItemEntity/age +FD: net/minecraft/world/entity/item/ItemEntity/f_31986_ net/minecraft/world/entity/item/ItemEntity/pickupDelay +FD: net/minecraft/world/entity/item/ItemEntity/f_31987_ net/minecraft/world/entity/item/ItemEntity/health +FD: net/minecraft/world/entity/item/ItemEntity/f_31988_ net/minecraft/world/entity/item/ItemEntity/thrower +FD: net/minecraft/world/entity/item/PrimedTnt/f_149679_ net/minecraft/world/entity/item/PrimedTnt/DEFAULT_FUSE_TIME +FD: net/minecraft/world/entity/item/PrimedTnt/f_32071_ net/minecraft/world/entity/item/PrimedTnt/DATA_FUSE_ID +FD: net/minecraft/world/entity/item/PrimedTnt/f_32072_ net/minecraft/world/entity/item/PrimedTnt/owner +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/$VALUES net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/$VALUES +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ATTACKING net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ATTACKING +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/BOW_AND_ARROW net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/BOW_AND_ARROW +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CELEBRATING net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CELEBRATING +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_CHARGE net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_CHARGE +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_HOLD net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_HOLD +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSED net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSED +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/NEUTRAL net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/NEUTRAL +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/SPELLCASTING net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/SPELLCASTING +FD: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/f_32125_ net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/this$0 +FD: net/minecraft/world/entity/monster/AbstractSkeleton/f_32130_ net/minecraft/world/entity/monster/AbstractSkeleton/bowGoal +FD: net/minecraft/world/entity/monster/AbstractSkeleton/f_32131_ net/minecraft/world/entity/monster/AbstractSkeleton/meleeGoal +FD: net/minecraft/world/entity/monster/AbstractSkeleton$1/f_32168_ net/minecraft/world/entity/monster/AbstractSkeleton$1/this$0 +FD: net/minecraft/world/entity/monster/Blaze/f_32214_ net/minecraft/world/entity/monster/Blaze/allowedHeightOffset +FD: net/minecraft/world/entity/monster/Blaze/f_32215_ net/minecraft/world/entity/monster/Blaze/nextHeightOffsetChangeTick +FD: net/minecraft/world/entity/monster/Blaze/f_32216_ net/minecraft/world/entity/monster/Blaze/DATA_FLAGS_ID +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32242_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/blaze +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32243_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/attackStep +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32244_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/attackTime +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32245_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/lastSeen +FD: net/minecraft/world/entity/monster/Creeper/f_32268_ net/minecraft/world/entity/monster/Creeper/DATA_SWELL_DIR +FD: net/minecraft/world/entity/monster/Creeper/f_32269_ net/minecraft/world/entity/monster/Creeper/oldSwell +FD: net/minecraft/world/entity/monster/Creeper/f_32270_ net/minecraft/world/entity/monster/Creeper/swell +FD: net/minecraft/world/entity/monster/Creeper/f_32271_ net/minecraft/world/entity/monster/Creeper/maxSwell +FD: net/minecraft/world/entity/monster/Creeper/f_32272_ net/minecraft/world/entity/monster/Creeper/explosionRadius +FD: net/minecraft/world/entity/monster/Creeper/f_32273_ net/minecraft/world/entity/monster/Creeper/droppedSkulls +FD: net/minecraft/world/entity/monster/Creeper/f_32274_ net/minecraft/world/entity/monster/Creeper/DATA_IS_POWERED +FD: net/minecraft/world/entity/monster/Creeper/f_32275_ net/minecraft/world/entity/monster/Creeper/DATA_IS_IGNITED +FD: net/minecraft/world/entity/monster/Drowned/f_149692_ net/minecraft/world/entity/monster/Drowned/NAUTILUS_SHELL_CHANCE +FD: net/minecraft/world/entity/monster/Drowned/f_32340_ net/minecraft/world/entity/monster/Drowned/waterNavigation +FD: net/minecraft/world/entity/monster/Drowned/f_32341_ net/minecraft/world/entity/monster/Drowned/groundNavigation +FD: net/minecraft/world/entity/monster/Drowned/f_32342_ net/minecraft/world/entity/monster/Drowned/searchingForLand +FD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/f_32400_ net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/f_32407_ net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32418_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/mob +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32419_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/wantedX +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32420_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/wantedY +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32421_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/wantedZ +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32422_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/speedModifier +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32423_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/level +FD: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/f_32431_ net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32435_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32436_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/speedModifier +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32437_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/seaLevel +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32438_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/stuck +FD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/f_32448_ net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/drowned +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218961_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_RADIUS +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218962_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_DURATION +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218963_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_AMPLIFIER +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218964_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_DISPLAY_LIMIT +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218965_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_INTERVAL +FD: net/minecraft/world/entity/monster/ElderGuardian/f_32457_ net/minecraft/world/entity/monster/ElderGuardian/ELDER_SIZE_SCALE +FD: net/minecraft/world/entity/monster/EnderMan/f_149693_ net/minecraft/world/entity/monster/EnderMan/MIN_DEAGGRESSION_TIME +FD: net/minecraft/world/entity/monster/EnderMan/f_149694_ net/minecraft/world/entity/monster/EnderMan/DELAY_BETWEEN_CREEPY_STARE_SOUND +FD: net/minecraft/world/entity/monster/EnderMan/f_32472_ net/minecraft/world/entity/monster/EnderMan/SPEED_MODIFIER_ATTACKING_UUID +FD: net/minecraft/world/entity/monster/EnderMan/f_32473_ net/minecraft/world/entity/monster/EnderMan/DATA_CREEPY +FD: net/minecraft/world/entity/monster/EnderMan/f_32474_ net/minecraft/world/entity/monster/EnderMan/DATA_STARED_AT +FD: net/minecraft/world/entity/monster/EnderMan/f_32476_ net/minecraft/world/entity/monster/EnderMan/lastStareSound +FD: net/minecraft/world/entity/monster/EnderMan/f_32477_ net/minecraft/world/entity/monster/EnderMan/targetChangeTime +FD: net/minecraft/world/entity/monster/EnderMan/f_32478_ net/minecraft/world/entity/monster/EnderMan/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/monster/EnderMan/f_32479_ net/minecraft/world/entity/monster/EnderMan/remainingPersistentAngerTime +FD: net/minecraft/world/entity/monster/EnderMan/f_32480_ net/minecraft/world/entity/monster/EnderMan/persistentAngerTarget +FD: net/minecraft/world/entity/monster/EnderMan/f_32481_ net/minecraft/world/entity/monster/EnderMan/SPEED_MODIFIER_ATTACKING +FD: net/minecraft/world/entity/monster/EnderMan/f_32482_ net/minecraft/world/entity/monster/EnderMan/DATA_CARRY_STATE +FD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/f_32547_ net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/enderman +FD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/f_32548_ net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/target +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/f_32554_ net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/enderman +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_252402_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/isAngerInducing +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32566_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/enderman +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32567_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/pendingTarget +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32568_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/aggroTime +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32569_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/teleportTime +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32570_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/startAggroTargetConditions +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32571_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/continueAggroTargetConditions +FD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/f_32583_ net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/enderman +FD: net/minecraft/world/entity/monster/Endermite/f_149695_ net/minecraft/world/entity/monster/Endermite/MAX_LIFE +FD: net/minecraft/world/entity/monster/Endermite/f_32588_ net/minecraft/world/entity/monster/Endermite/life +FD: net/minecraft/world/entity/monster/Enemy/f_149697_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_NONE +FD: net/minecraft/world/entity/monster/Enemy/f_149698_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_SMALL +FD: net/minecraft/world/entity/monster/Enemy/f_149699_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_MEDIUM +FD: net/minecraft/world/entity/monster/Enemy/f_149700_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_LARGE +FD: net/minecraft/world/entity/monster/Enemy/f_149701_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_HUGE +FD: net/minecraft/world/entity/monster/Enemy/f_149702_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_BOSS +FD: net/minecraft/world/entity/monster/Evoker/f_32625_ net/minecraft/world/entity/monster/Evoker/wololoTarget +FD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/f_32666_ net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/f_32684_ net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/f_32691_ net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/f_32692_ net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/vexCountTargeting +FD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/f_32704_ net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/f_32705_ net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/wololoTargeting +FD: net/minecraft/world/entity/monster/Ghast/f_32721_ net/minecraft/world/entity/monster/Ghast/DATA_IS_CHARGING +FD: net/minecraft/world/entity/monster/Ghast/f_32722_ net/minecraft/world/entity/monster/Ghast/explosionPower +FD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/f_32760_ net/minecraft/world/entity/monster/Ghast$GhastLookGoal/ghast +FD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/f_32765_ net/minecraft/world/entity/monster/Ghast$GhastMoveControl/ghast +FD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/f_32766_ net/minecraft/world/entity/monster/Ghast$GhastMoveControl/floatDuration +FD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/f_32773_ net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/chargeTime +FD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/f_32774_ net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/ghast +FD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/f_32781_ net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/ghast +FD: net/minecraft/world/entity/monster/Guardian/f_149711_ net/minecraft/world/entity/monster/Guardian/ATTACK_TIME +FD: net/minecraft/world/entity/monster/Guardian/f_32797_ net/minecraft/world/entity/monster/Guardian/DATA_ID_MOVING +FD: net/minecraft/world/entity/monster/Guardian/f_32798_ net/minecraft/world/entity/monster/Guardian/clientSideTailAnimation +FD: net/minecraft/world/entity/monster/Guardian/f_32799_ net/minecraft/world/entity/monster/Guardian/clientSideTailAnimationO +FD: net/minecraft/world/entity/monster/Guardian/f_32800_ net/minecraft/world/entity/monster/Guardian/clientSideTailAnimationSpeed +FD: net/minecraft/world/entity/monster/Guardian/f_32801_ net/minecraft/world/entity/monster/Guardian/clientSideSpikesAnimation +FD: net/minecraft/world/entity/monster/Guardian/f_32802_ net/minecraft/world/entity/monster/Guardian/clientSideSpikesAnimationO +FD: net/minecraft/world/entity/monster/Guardian/f_32803_ net/minecraft/world/entity/monster/Guardian/clientSideCachedAttackTarget +FD: net/minecraft/world/entity/monster/Guardian/f_32804_ net/minecraft/world/entity/monster/Guardian/clientSideAttackTime +FD: net/minecraft/world/entity/monster/Guardian/f_32805_ net/minecraft/world/entity/monster/Guardian/clientSideTouchedGround +FD: net/minecraft/world/entity/monster/Guardian/f_32806_ net/minecraft/world/entity/monster/Guardian/randomStrollGoal +FD: net/minecraft/world/entity/monster/Guardian/f_32807_ net/minecraft/world/entity/monster/Guardian/DATA_ID_ATTACK_TARGET +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/f_32867_ net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/guardian +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/f_32868_ net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/attackTime +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/f_32869_ net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/elder +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/f_32877_ net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/guardian +FD: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/f_32884_ net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/guardian +FD: net/minecraft/world/entity/monster/Illusioner/f_149713_ net/minecraft/world/entity/monster/Illusioner/ILLUSION_TRANSITION_TICKS +FD: net/minecraft/world/entity/monster/Illusioner/f_149714_ net/minecraft/world/entity/monster/Illusioner/ILLUSION_SPREAD +FD: net/minecraft/world/entity/monster/Illusioner/f_149715_ net/minecraft/world/entity/monster/Illusioner/NUM_ILLUSIONS +FD: net/minecraft/world/entity/monster/Illusioner/f_32908_ net/minecraft/world/entity/monster/Illusioner/clientSideIllusionTicks +FD: net/minecraft/world/entity/monster/Illusioner/f_32909_ net/minecraft/world/entity/monster/Illusioner/clientSideIllusionOffsets +FD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/f_32941_ net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/f_32942_ net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/lastTargetId +FD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/f_32955_ net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/PatrollingMonster/f_33042_ net/minecraft/world/entity/monster/PatrollingMonster/patrolTarget +FD: net/minecraft/world/entity/monster/PatrollingMonster/f_33043_ net/minecraft/world/entity/monster/PatrollingMonster/patrolLeader +FD: net/minecraft/world/entity/monster/PatrollingMonster/f_33044_ net/minecraft/world/entity/monster/PatrollingMonster/patrolling +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_149720_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/NAVIGATION_FAILED_COOLDOWN +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33079_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/mob +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33080_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/speedModifier +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33081_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/leaderSpeedModifier +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33082_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/cooldownUntil +FD: net/minecraft/world/entity/monster/Phantom/f_149721_ net/minecraft/world/entity/monster/Phantom/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/monster/Phantom/f_149722_ net/minecraft/world/entity/monster/Phantom/TICKS_PER_FLAP +FD: net/minecraft/world/entity/monster/Phantom/f_33095_ net/minecraft/world/entity/monster/Phantom/ID_SIZE +FD: net/minecraft/world/entity/monster/Phantom/f_33096_ net/minecraft/world/entity/monster/Phantom/attackPhase +FD: net/minecraft/world/entity/monster/Phantom/f_33097_ net/minecraft/world/entity/monster/Phantom/moveTargetPoint +FD: net/minecraft/world/entity/monster/Phantom/f_33098_ net/minecraft/world/entity/monster/Phantom/anchorPoint +FD: net/minecraft/world/entity/monster/Phantom$AttackPhase/$VALUES net/minecraft/world/entity/monster/Phantom$AttackPhase/$VALUES +FD: net/minecraft/world/entity/monster/Phantom$AttackPhase/CIRCLE net/minecraft/world/entity/monster/Phantom$AttackPhase/CIRCLE +FD: net/minecraft/world/entity/monster/Phantom$AttackPhase/SWOOP net/minecraft/world/entity/monster/Phantom$AttackPhase/SWOOP +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/f_33191_ net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/f_33192_ net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/attackTargeting +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/f_33193_ net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/nextScanTick +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/f_33201_ net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/f_33202_ net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/nextSweepTick +FD: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/f_33213_ net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33218_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33219_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/angle +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33220_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/distance +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33221_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/height +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33222_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/clockwise +FD: net/minecraft/world/entity/monster/Phantom$PhantomLookControl/f_33232_ net/minecraft/world/entity/monster/Phantom$PhantomLookControl/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/f_33237_ net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/f_33238_ net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/speed +FD: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/f_33243_ net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_199895_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/CAT_SEARCH_TICK_DELAY +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_199896_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/isScaredOfCat +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_199897_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/catSearchTick +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_33247_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Pillager/f_149738_ net/minecraft/world/entity/monster/Pillager/SLOT_OFFSET +FD: net/minecraft/world/entity/monster/Pillager/f_149739_ net/minecraft/world/entity/monster/Pillager/CROSSBOW_POWER +FD: net/minecraft/world/entity/monster/Pillager/f_149740_ net/minecraft/world/entity/monster/Pillager/INVENTORY_SIZE +FD: net/minecraft/world/entity/monster/Pillager/f_33258_ net/minecraft/world/entity/monster/Pillager/IS_CHARGING_CROSSBOW +FD: net/minecraft/world/entity/monster/Pillager/f_33259_ net/minecraft/world/entity/monster/Pillager/inventory +FD: net/minecraft/world/entity/monster/Ravager/f_149746_ net/minecraft/world/entity/monster/Ravager/STUN_DURATION +FD: net/minecraft/world/entity/monster/Ravager/f_149747_ net/minecraft/world/entity/monster/Ravager/BASE_MOVEMENT_SPEED +FD: net/minecraft/world/entity/monster/Ravager/f_149748_ net/minecraft/world/entity/monster/Ravager/ATTACK_MOVEMENT_SPEED +FD: net/minecraft/world/entity/monster/Ravager/f_149749_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR +FD: net/minecraft/world/entity/monster/Ravager/f_149750_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR_BLUE +FD: net/minecraft/world/entity/monster/Ravager/f_149751_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR_GREEN +FD: net/minecraft/world/entity/monster/Ravager/f_149752_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR_RED +FD: net/minecraft/world/entity/monster/Ravager/f_149753_ net/minecraft/world/entity/monster/Ravager/ATTACK_DURATION +FD: net/minecraft/world/entity/monster/Ravager/f_33319_ net/minecraft/world/entity/monster/Ravager/NO_RAVAGER_AND_ALIVE +FD: net/minecraft/world/entity/monster/Ravager/f_33320_ net/minecraft/world/entity/monster/Ravager/attackTick +FD: net/minecraft/world/entity/monster/Ravager/f_33321_ net/minecraft/world/entity/monster/Ravager/stunnedTick +FD: net/minecraft/world/entity/monster/Ravager/f_33322_ net/minecraft/world/entity/monster/Ravager/roarTick +FD: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/f_33373_ net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker/f_149756_ net/minecraft/world/entity/monster/Shulker/TELEPORT_STEPS +FD: net/minecraft/world/entity/monster/Shulker/f_149757_ net/minecraft/world/entity/monster/Shulker/NO_COLOR +FD: net/minecraft/world/entity/monster/Shulker/f_149758_ net/minecraft/world/entity/monster/Shulker/DEFAULT_COLOR +FD: net/minecraft/world/entity/monster/Shulker/f_149759_ net/minecraft/world/entity/monster/Shulker/MAX_TELEPORT_DISTANCE +FD: net/minecraft/world/entity/monster/Shulker/f_149760_ net/minecraft/world/entity/monster/Shulker/OTHER_SHULKER_SCAN_RADIUS +FD: net/minecraft/world/entity/monster/Shulker/f_149761_ net/minecraft/world/entity/monster/Shulker/OTHER_SHULKER_LIMIT +FD: net/minecraft/world/entity/monster/Shulker/f_149762_ net/minecraft/world/entity/monster/Shulker/PEEK_PER_TICK +FD: net/minecraft/world/entity/monster/Shulker/f_149763_ net/minecraft/world/entity/monster/Shulker/FORWARD +FD: net/minecraft/world/entity/monster/Shulker/f_149764_ net/minecraft/world/entity/monster/Shulker/clientOldAttachPosition +FD: net/minecraft/world/entity/monster/Shulker/f_149765_ net/minecraft/world/entity/monster/Shulker/MAX_LID_OPEN +FD: net/minecraft/world/entity/monster/Shulker/f_33392_ net/minecraft/world/entity/monster/Shulker/DATA_ATTACH_FACE_ID +FD: net/minecraft/world/entity/monster/Shulker/f_33393_ net/minecraft/world/entity/monster/Shulker/DATA_COLOR_ID +FD: net/minecraft/world/entity/monster/Shulker/f_33394_ net/minecraft/world/entity/monster/Shulker/COVERED_ARMOR_MODIFIER_UUID +FD: net/minecraft/world/entity/monster/Shulker/f_33395_ net/minecraft/world/entity/monster/Shulker/COVERED_ARMOR_MODIFIER +FD: net/minecraft/world/entity/monster/Shulker/f_33396_ net/minecraft/world/entity/monster/Shulker/currentPeekAmountO +FD: net/minecraft/world/entity/monster/Shulker/f_33397_ net/minecraft/world/entity/monster/Shulker/currentPeekAmount +FD: net/minecraft/world/entity/monster/Shulker/f_33399_ net/minecraft/world/entity/monster/Shulker/clientSideTeleportInterpolation +FD: net/minecraft/world/entity/monster/Shulker/f_33401_ net/minecraft/world/entity/monster/Shulker/DATA_PEEK_ID +FD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/f_33482_ net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/f_33483_ net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/attackTime +FD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/f_149817_ net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/f_33502_ net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/f_33509_ net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/f_33510_ net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/peekTime +FD: net/minecraft/world/entity/monster/Silverfish/f_33521_ net/minecraft/world/entity/monster/Silverfish/friendsGoal +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/f_33555_ net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/selectedDirection +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/f_33556_ net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/doMerge +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/f_33562_ net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/silverfish +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/f_33563_ net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/lookForFriends +FD: net/minecraft/world/entity/monster/Skeleton/f_149825_ net/minecraft/world/entity/monster/Skeleton/CONVERSION_TAG +FD: net/minecraft/world/entity/monster/Skeleton/f_149826_ net/minecraft/world/entity/monster/Skeleton/DATA_STRAY_CONVERSION_ID +FD: net/minecraft/world/entity/monster/Skeleton/f_149827_ net/minecraft/world/entity/monster/Skeleton/inPowderSnowTime +FD: net/minecraft/world/entity/monster/Skeleton/f_149828_ net/minecraft/world/entity/monster/Skeleton/conversionTime +FD: net/minecraft/world/entity/monster/Skeleton/f_263441_ net/minecraft/world/entity/monster/Skeleton/TOTAL_CONVERSION_TIME +FD: net/minecraft/world/entity/monster/Slime/f_149844_ net/minecraft/world/entity/monster/Slime/MIN_SIZE +FD: net/minecraft/world/entity/monster/Slime/f_149845_ net/minecraft/world/entity/monster/Slime/MAX_SIZE +FD: net/minecraft/world/entity/monster/Slime/f_33581_ net/minecraft/world/entity/monster/Slime/targetSquish +FD: net/minecraft/world/entity/monster/Slime/f_33582_ net/minecraft/world/entity/monster/Slime/ID_SIZE +FD: net/minecraft/world/entity/monster/Slime/f_33583_ net/minecraft/world/entity/monster/Slime/wasOnGround +FD: net/minecraft/world/entity/monster/Slime/f_33584_ net/minecraft/world/entity/monster/Slime/squish +FD: net/minecraft/world/entity/monster/Slime/f_33585_ net/minecraft/world/entity/monster/Slime/oSquish +FD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/f_33645_ net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/f_33646_ net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/growTiredTimer +FD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/f_33653_ net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/f_33658_ net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33663_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/yRot +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33664_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/jumpDelay +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33665_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33666_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/isAggressive +FD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/f_33675_ net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/f_33676_ net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/chosenDegrees +FD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/f_33677_ net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/nextRandomizeTime +FD: net/minecraft/world/entity/monster/SpellcasterIllager/f_33719_ net/minecraft/world/entity/monster/SpellcasterIllager/spellCastingTickCount +FD: net/minecraft/world/entity/monster/SpellcasterIllager/f_33720_ net/minecraft/world/entity/monster/SpellcasterIllager/DATA_SPELL_CASTING_ID +FD: net/minecraft/world/entity/monster/SpellcasterIllager/f_33721_ net/minecraft/world/entity/monster/SpellcasterIllager/currentSpell +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/$VALUES net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/$VALUES +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/BLINDNESS net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/BLINDNESS +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/DISAPPEAR net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/DISAPPEAR +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/FANGS net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/FANGS +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/NONE net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/NONE +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/SUMMON_VEX net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/SUMMON_VEX +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/WOLOLO net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/WOLOLO +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/f_262732_ net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/BY_ID +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/f_33747_ net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/id +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/f_33748_ net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/spellColor +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/f_33767_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/f_33774_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/attackWarmupDelay +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/f_33775_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/nextAttackTickCount +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/f_33776_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Spider/f_149853_ net/minecraft/world/entity/monster/Spider/SPIDER_SPECIAL_EFFECT_CHANCE +FD: net/minecraft/world/entity/monster/Spider/f_33783_ net/minecraft/world/entity/monster/Spider/DATA_FLAGS_ID +FD: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/f_33827_ net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/effect +FD: net/minecraft/world/entity/monster/Strider/f_149854_ net/minecraft/world/entity/monster/Strider/SUFFOCATE_STEERING_MODIFIER +FD: net/minecraft/world/entity/monster/Strider/f_149856_ net/minecraft/world/entity/monster/Strider/STEERING_MODIFIER +FD: net/minecraft/world/entity/monster/Strider/f_273843_ net/minecraft/world/entity/monster/Strider/SUFFOCATING_MODIFIER +FD: net/minecraft/world/entity/monster/Strider/f_273909_ net/minecraft/world/entity/monster/Strider/SUFFOCATING_MODIFIER_UUID +FD: net/minecraft/world/entity/monster/Strider/f_33852_ net/minecraft/world/entity/monster/Strider/FOOD_ITEMS +FD: net/minecraft/world/entity/monster/Strider/f_33853_ net/minecraft/world/entity/monster/Strider/TEMPT_ITEMS +FD: net/minecraft/world/entity/monster/Strider/f_33854_ net/minecraft/world/entity/monster/Strider/DATA_BOOST_TIME +FD: net/minecraft/world/entity/monster/Strider/f_33855_ net/minecraft/world/entity/monster/Strider/DATA_SUFFOCATING +FD: net/minecraft/world/entity/monster/Strider/f_33856_ net/minecraft/world/entity/monster/Strider/DATA_SADDLE_ID +FD: net/minecraft/world/entity/monster/Strider/f_33857_ net/minecraft/world/entity/monster/Strider/steering +FD: net/minecraft/world/entity/monster/Strider/f_33858_ net/minecraft/world/entity/monster/Strider/temptGoal +FD: net/minecraft/world/entity/monster/Strider/f_33859_ net/minecraft/world/entity/monster/Strider/panicGoal +FD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/f_33953_ net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/strider +FD: net/minecraft/world/entity/monster/Vex/f_149863_ net/minecraft/world/entity/monster/Vex/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/monster/Vex/f_149864_ net/minecraft/world/entity/monster/Vex/TICKS_PER_FLAP +FD: net/minecraft/world/entity/monster/Vex/f_149865_ net/minecraft/world/entity/monster/Vex/FLAG_IS_CHARGING +FD: net/minecraft/world/entity/monster/Vex/f_262262_ net/minecraft/world/entity/monster/Vex/RIDING_OFFSET +FD: net/minecraft/world/entity/monster/Vex/f_33977_ net/minecraft/world/entity/monster/Vex/DATA_FLAGS_ID +FD: net/minecraft/world/entity/monster/Vex/f_33978_ net/minecraft/world/entity/monster/Vex/hasLimitedLife +FD: net/minecraft/world/entity/monster/Vex/f_33979_ net/minecraft/world/entity/monster/Vex/limitedLifeTicks +FD: net/minecraft/world/entity/monster/Vex/f_33980_ net/minecraft/world/entity/monster/Vex/owner +FD: net/minecraft/world/entity/monster/Vex/f_33981_ net/minecraft/world/entity/monster/Vex/boundOrigin +FD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/f_34044_ net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/f_34052_ net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/this$0 +FD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/f_34053_ net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/copyOwnerTargeting +FD: net/minecraft/world/entity/monster/Vex$VexMoveControl/f_34059_ net/minecraft/world/entity/monster/Vex$VexMoveControl/this$0 +FD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/f_34064_ net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/this$0 +FD: net/minecraft/world/entity/monster/Vindicator/f_149867_ net/minecraft/world/entity/monster/Vindicator/TAG_JOHNNY +FD: net/minecraft/world/entity/monster/Vindicator/f_34070_ net/minecraft/world/entity/monster/Vindicator/DOOR_BREAKING_PREDICATE +FD: net/minecraft/world/entity/monster/Vindicator/f_34071_ net/minecraft/world/entity/monster/Vindicator/isJohnny +FD: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/f_34120_ net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Witch/f_34126_ net/minecraft/world/entity/monster/Witch/SPEED_MODIFIER_DRINKING_UUID +FD: net/minecraft/world/entity/monster/Witch/f_34127_ net/minecraft/world/entity/monster/Witch/SPEED_MODIFIER_DRINKING +FD: net/minecraft/world/entity/monster/Witch/f_34128_ net/minecraft/world/entity/monster/Witch/DATA_USING_ITEM +FD: net/minecraft/world/entity/monster/Witch/f_34129_ net/minecraft/world/entity/monster/Witch/usingTime +FD: net/minecraft/world/entity/monster/Witch/f_34130_ net/minecraft/world/entity/monster/Witch/healRaidersGoal +FD: net/minecraft/world/entity/monster/Witch/f_34131_ net/minecraft/world/entity/monster/Witch/attackPlayersGoal +FD: net/minecraft/world/entity/monster/Zoglin/f_149870_ net/minecraft/world/entity/monster/Zoglin/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/monster/Zoglin/f_149871_ net/minecraft/world/entity/monster/Zoglin/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/monster/Zoglin/f_149872_ net/minecraft/world/entity/monster/Zoglin/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/Zoglin/f_149873_ net/minecraft/world/entity/monster/Zoglin/BABY_ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/Zoglin/f_149874_ net/minecraft/world/entity/monster/Zoglin/ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/Zoglin/f_149875_ net/minecraft/world/entity/monster/Zoglin/BABY_ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/Zoglin/f_149876_ net/minecraft/world/entity/monster/Zoglin/ATTACK_DURATION +FD: net/minecraft/world/entity/monster/Zoglin/f_149877_ net/minecraft/world/entity/monster/Zoglin/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/Zoglin/f_149878_ net/minecraft/world/entity/monster/Zoglin/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/Zoglin/f_149879_ net/minecraft/world/entity/monster/Zoglin/MAX_HEALTH +FD: net/minecraft/world/entity/monster/Zoglin/f_34198_ net/minecraft/world/entity/monster/Zoglin/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/Zoglin/f_34199_ net/minecraft/world/entity/monster/Zoglin/attackAnimationRemainingTicks +FD: net/minecraft/world/entity/monster/Zoglin/f_34200_ net/minecraft/world/entity/monster/Zoglin/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/Zoglin/f_34201_ net/minecraft/world/entity/monster/Zoglin/DATA_BABY_ID +FD: net/minecraft/world/entity/monster/Zombie/f_149880_ net/minecraft/world/entity/monster/Zombie/REINFORCEMENT_ATTEMPTS +FD: net/minecraft/world/entity/monster/Zombie/f_149881_ net/minecraft/world/entity/monster/Zombie/REINFORCEMENT_RANGE_MAX +FD: net/minecraft/world/entity/monster/Zombie/f_149882_ net/minecraft/world/entity/monster/Zombie/REINFORCEMENT_RANGE_MIN +FD: net/minecraft/world/entity/monster/Zombie/f_149883_ net/minecraft/world/entity/monster/Zombie/BREAK_DOOR_CHANCE +FD: net/minecraft/world/entity/monster/Zombie/f_149884_ net/minecraft/world/entity/monster/Zombie/ZOMBIE_LEADER_CHANCE +FD: net/minecraft/world/entity/monster/Zombie/f_256825_ net/minecraft/world/entity/monster/Zombie/BABY_EYE_HEIGHT_ADJUSTMENT +FD: net/minecraft/world/entity/monster/Zombie/f_34259_ net/minecraft/world/entity/monster/Zombie/SPEED_MODIFIER_BABY_UUID +FD: net/minecraft/world/entity/monster/Zombie/f_34260_ net/minecraft/world/entity/monster/Zombie/DATA_SPECIAL_TYPE_ID +FD: net/minecraft/world/entity/monster/Zombie/f_34261_ net/minecraft/world/entity/monster/Zombie/DATA_DROWNED_CONVERSION_ID +FD: net/minecraft/world/entity/monster/Zombie/f_34262_ net/minecraft/world/entity/monster/Zombie/DOOR_BREAKING_PREDICATE +FD: net/minecraft/world/entity/monster/Zombie/f_34263_ net/minecraft/world/entity/monster/Zombie/breakDoorGoal +FD: net/minecraft/world/entity/monster/Zombie/f_34264_ net/minecraft/world/entity/monster/Zombie/canBreakDoors +FD: net/minecraft/world/entity/monster/Zombie/f_34265_ net/minecraft/world/entity/monster/Zombie/inWaterTime +FD: net/minecraft/world/entity/monster/Zombie/f_34266_ net/minecraft/world/entity/monster/Zombie/conversionTime +FD: net/minecraft/world/entity/monster/Zombie/f_34267_ net/minecraft/world/entity/monster/Zombie/SPEED_MODIFIER_BABY +FD: net/minecraft/world/entity/monster/Zombie/f_34268_ net/minecraft/world/entity/monster/Zombie/DATA_BABY_ID +FD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/f_34341_ net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/this$0 +FD: net/minecraft/world/entity/monster/Zombie$ZombieGroupData/f_34354_ net/minecraft/world/entity/monster/Zombie$ZombieGroupData/isBaby +FD: net/minecraft/world/entity/monster/Zombie$ZombieGroupData/f_34355_ net/minecraft/world/entity/monster/Zombie$ZombieGroupData/canSpawnJockey +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149885_ net/minecraft/world/entity/monster/ZombieVillager/VILLAGER_CONVERSION_WAIT_MAX +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149886_ net/minecraft/world/entity/monster/ZombieVillager/MAX_SPECIAL_BLOCKS_COUNT +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149887_ net/minecraft/world/entity/monster/ZombieVillager/SPECIAL_BLOCK_RADIUS +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149888_ net/minecraft/world/entity/monster/ZombieVillager/VILLAGER_CONVERSION_WAIT_MIN +FD: net/minecraft/world/entity/monster/ZombieVillager/f_201975_ net/minecraft/world/entity/monster/ZombieVillager/LOGGER +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34359_ net/minecraft/world/entity/monster/ZombieVillager/DATA_CONVERTING_ID +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34360_ net/minecraft/world/entity/monster/ZombieVillager/conversionStarter +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34361_ net/minecraft/world/entity/monster/ZombieVillager/gossips +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34362_ net/minecraft/world/entity/monster/ZombieVillager/tradeOffers +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34363_ net/minecraft/world/entity/monster/ZombieVillager/villagerXp +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34364_ net/minecraft/world/entity/monster/ZombieVillager/DATA_VILLAGER_DATA +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34365_ net/minecraft/world/entity/monster/ZombieVillager/villagerConversionTime +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_149890_ net/minecraft/world/entity/monster/ZombifiedPiglin/ALERT_RANGE_Y +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_256895_ net/minecraft/world/entity/monster/ZombifiedPiglin/ZOMBIFIED_PIGLIN_EYE_HEIGHT +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_262243_ net/minecraft/world/entity/monster/ZombifiedPiglin/ZOMBIFIED_PIGLIN_BABY_EYE_HEIGHT_ADJUSTMENT +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34416_ net/minecraft/world/entity/monster/ZombifiedPiglin/SPEED_MODIFIER_ATTACKING_UUID +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34417_ net/minecraft/world/entity/monster/ZombifiedPiglin/playFirstAngerSoundIn +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34418_ net/minecraft/world/entity/monster/ZombifiedPiglin/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34419_ net/minecraft/world/entity/monster/ZombifiedPiglin/remainingPersistentAngerTime +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34420_ net/minecraft/world/entity/monster/ZombifiedPiglin/persistentAngerTarget +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34421_ net/minecraft/world/entity/monster/ZombifiedPiglin/ALERT_INTERVAL +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34422_ net/minecraft/world/entity/monster/ZombifiedPiglin/ticksUntilNextAlert +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34423_ net/minecraft/world/entity/monster/ZombifiedPiglin/SPEED_MODIFIER_ATTACKING +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34424_ net/minecraft/world/entity/monster/ZombifiedPiglin/FIRST_ANGER_SOUND_DELAY +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149891_ net/minecraft/world/entity/monster/hoglin/Hoglin/PROBABILITY_OF_SPAWNING_AS_BABY +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149892_ net/minecraft/world/entity/monster/hoglin/Hoglin/MAX_HEALTH +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149893_ net/minecraft/world/entity/monster/hoglin/Hoglin/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149894_ net/minecraft/world/entity/monster/hoglin/Hoglin/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149895_ net/minecraft/world/entity/monster/hoglin/Hoglin/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149896_ net/minecraft/world/entity/monster/hoglin/Hoglin/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149897_ net/minecraft/world/entity/monster/hoglin/Hoglin/BABY_ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149898_ net/minecraft/world/entity/monster/hoglin/Hoglin/CONVERSION_TIME +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34480_ net/minecraft/world/entity/monster/hoglin/Hoglin/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34481_ net/minecraft/world/entity/monster/hoglin/Hoglin/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34482_ net/minecraft/world/entity/monster/hoglin/Hoglin/DATA_IMMUNE_TO_ZOMBIFICATION +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34483_ net/minecraft/world/entity/monster/hoglin/Hoglin/attackAnimationRemainingTicks +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34484_ net/minecraft/world/entity/monster/hoglin/Hoglin/timeInOverworld +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34485_ net/minecraft/world/entity/monster/hoglin/Hoglin/cannotBeHunted +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149902_ net/minecraft/world/entity/monster/hoglin/HoglinAi/REPELLENT_DETECTION_RANGE_HORIZONTAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149903_ net/minecraft/world/entity/monster/hoglin/HoglinAi/REPELLENT_DETECTION_RANGE_VERTICAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149904_ net/minecraft/world/entity/monster/hoglin/HoglinAi/ATTACK_DURATION +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149905_ net/minecraft/world/entity/monster/hoglin/HoglinAi/DESIRED_DISTANCE_FROM_PIGLIN_WHEN_IDLING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149906_ net/minecraft/world/entity/monster/hoglin/HoglinAi/DESIRED_DISTANCE_FROM_PIGLIN_WHEN_RETREATING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149907_ net/minecraft/world/entity/monster/hoglin/HoglinAi/ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149908_ net/minecraft/world/entity/monster/hoglin/HoglinAi/BABY_ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149909_ net/minecraft/world/entity/monster/hoglin/HoglinAi/REPELLENT_PACIFY_TIME +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149910_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_AVOIDING_REPELLENT +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149911_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_RETREATING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149912_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149913_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149914_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_34568_ net/minecraft/world/entity/monster/hoglin/HoglinAi/RETREAT_DURATION +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_34569_ net/minecraft/world/entity/monster/hoglin/HoglinAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/monster/hoglin/HoglinBase/f_149916_ net/minecraft/world/entity/monster/hoglin/HoglinBase/ATTACK_ANIMATION_DURATION +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_149917_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/CONVERSION_TIME +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_256822_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/PIGLIN_EYE_HEIGHT +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_34648_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/DATA_IMMUNE_TO_ZOMBIFICATION +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_34649_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/timeInOverworld +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149918_ net/minecraft/world/entity/monster/piglin/Piglin/MAX_HEALTH +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149919_ net/minecraft/world/entity/monster/piglin/Piglin/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149920_ net/minecraft/world/entity/monster/piglin/Piglin/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149921_ net/minecraft/world/entity/monster/piglin/Piglin/CROSSBOW_POWER +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149922_ net/minecraft/world/entity/monster/piglin/Piglin/CHANCE_OF_WEARING_EACH_ARMOUR_ITEM +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149923_ net/minecraft/world/entity/monster/piglin/Piglin/MAX_PASSENGERS_ON_ONE_HOGLIN +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149924_ net/minecraft/world/entity/monster/piglin/Piglin/PROBABILITY_OF_SPAWNING_AS_BABY +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149925_ net/minecraft/world/entity/monster/piglin/Piglin/BABY_EYE_HEIGHT_ADJUSTMENT +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149926_ net/minecraft/world/entity/monster/piglin/Piglin/PROBABILITY_OF_SPAWNING_WITH_CROSSBOW_INSTEAD_OF_SWORD +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34672_ net/minecraft/world/entity/monster/piglin/Piglin/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34673_ net/minecraft/world/entity/monster/piglin/Piglin/DATA_BABY_ID +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34674_ net/minecraft/world/entity/monster/piglin/Piglin/DATA_IS_CHARGING_CROSSBOW +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34675_ net/minecraft/world/entity/monster/piglin/Piglin/DATA_IS_DANCING +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34676_ net/minecraft/world/entity/monster/piglin/Piglin/SPEED_MODIFIER_BABY_UUID +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34677_ net/minecraft/world/entity/monster/piglin/Piglin/SPEED_MODIFIER_BABY +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34678_ net/minecraft/world/entity/monster/piglin/Piglin/inventory +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34679_ net/minecraft/world/entity/monster/piglin/Piglin/cannotHunt +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34680_ net/minecraft/world/entity/monster/piglin/Piglin/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149932_ net/minecraft/world/entity/monster/piglin/PiglinAi/PROBABILITY_OF_CELEBRATION_DANCE +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149933_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_AVOIDING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149934_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_RETREATING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149935_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_MOUNTING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149936_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_GOING_TO_WANTED_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149937_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_GOING_TO_CELEBRATE_LOCATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149938_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_DANCING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149939_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149940_ net/minecraft/world/entity/monster/piglin/PiglinAi/REPELLENT_DETECTION_RANGE_HORIZONTAL +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149941_ net/minecraft/world/entity/monster/piglin/PiglinAi/REPELLENT_DETECTION_RANGE_VERTICAL +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149942_ net/minecraft/world/entity/monster/piglin/PiglinAi/PLAYER_ANGER_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149943_ net/minecraft/world/entity/monster/piglin/PiglinAi/ANGER_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149944_ net/minecraft/world/entity/monster/piglin/PiglinAi/ADMIRE_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149945_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_DISTANCE_TO_WALK_TO_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149946_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_TIME_TO_WALK_TO_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149947_ net/minecraft/world/entity/monster/piglin/PiglinAi/HOW_LONG_TIME_TO_DISABLE_ADMIRE_WALKING_IF_CANT_REACH_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149948_ net/minecraft/world/entity/monster/piglin/PiglinAi/CELEBRATION_TIME +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149949_ net/minecraft/world/entity/monster/piglin/PiglinAi/BABY_FLEE_DURATION_AFTER_GETTING_HIT +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149950_ net/minecraft/world/entity/monster/piglin/PiglinAi/HIT_BY_PLAYER_MEMORY_TIMEOUT +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149951_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_WALK_DISTANCE_TO_START_RIDING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149952_ net/minecraft/world/entity/monster/piglin/PiglinAi/MELEE_ATTACK_COOLDOWN +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149953_ net/minecraft/world/entity/monster/piglin/PiglinAi/EAT_COOLDOWN +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149954_ net/minecraft/world/entity/monster/piglin/PiglinAi/DESIRED_DISTANCE_FROM_ENTITY_WHEN_AVOIDING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149955_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_LOOK_DIST +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149956_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_LOOK_DIST_FOR_PLAYER_HOLDING_LOVED_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149957_ net/minecraft/world/entity/monster/piglin/PiglinAi/INTERACTION_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149958_ net/minecraft/world/entity/monster/piglin/PiglinAi/MIN_DESIRED_DIST_FROM_TARGET_WHEN_HOLDING_CROSSBOW +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149959_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_WHEN_STRAFING_BACK_FROM_TARGET +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149960_ net/minecraft/world/entity/monster/piglin/PiglinAi/DESIRED_DISTANCE_FROM_ZOMBIFIED +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34794_ net/minecraft/world/entity/monster/piglin/PiglinAi/BARTERING_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34795_ net/minecraft/world/entity/monster/piglin/PiglinAi/TIME_BETWEEN_HUNTS +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34796_ net/minecraft/world/entity/monster/piglin/PiglinAi/RIDE_START_INTERVAL +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34797_ net/minecraft/world/entity/monster/piglin/PiglinAi/RIDE_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34798_ net/minecraft/world/entity/monster/piglin/PiglinAi/RETREAT_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34799_ net/minecraft/world/entity/monster/piglin/PiglinAi/AVOID_ZOMBIFIED_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34800_ net/minecraft/world/entity/monster/piglin/PiglinAi/BABY_AVOID_NEMESIS_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/$VALUES net/minecraft/world/entity/monster/piglin/PiglinArmPose/$VALUES +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ADMIRING_ITEM net/minecraft/world/entity/monster/piglin/PiglinArmPose/ADMIRING_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ATTACKING_WITH_MELEE_WEAPON net/minecraft/world/entity/monster/piglin/PiglinArmPose/ATTACKING_WITH_MELEE_WEAPON +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_CHARGE net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_CHARGE +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_HOLD net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_HOLD +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/DANCING net/minecraft/world/entity/monster/piglin/PiglinArmPose/DANCING +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/DEFAULT net/minecraft/world/entity/monster/piglin/PiglinArmPose/DEFAULT +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_149974_ net/minecraft/world/entity/monster/piglin/PiglinBrute/MAX_HEALTH +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_149975_ net/minecraft/world/entity/monster/piglin/PiglinBrute/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_149976_ net/minecraft/world/entity/monster/piglin/PiglinBrute/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_35044_ net/minecraft/world/entity/monster/piglin/PiglinBrute/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_35045_ net/minecraft/world/entity/monster/piglin/PiglinBrute/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149977_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ANGER_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149978_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/MELEE_ATTACK_COOLDOWN +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149979_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ACTIVITY_SOUND_LIKELIHOOD_PER_TICK +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149980_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/MAX_LOOK_DIST +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149981_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/INTERACTION_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149982_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/TARGETING_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149983_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149984_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/HOME_CLOSE_ENOUGH_DISTANCE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149985_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/HOME_TOO_FAR_DISTANCE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149986_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/HOME_STROLL_AROUND_DISTANCE +FD: net/minecraft/world/entity/monster/warden/AngerLevel/$VALUES net/minecraft/world/entity/monster/warden/AngerLevel/$VALUES +FD: net/minecraft/world/entity/monster/warden/AngerLevel/AGITATED net/minecraft/world/entity/monster/warden/AngerLevel/AGITATED +FD: net/minecraft/world/entity/monster/warden/AngerLevel/ANGRY net/minecraft/world/entity/monster/warden/AngerLevel/ANGRY +FD: net/minecraft/world/entity/monster/warden/AngerLevel/CALM net/minecraft/world/entity/monster/warden/AngerLevel/CALM +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219214_ net/minecraft/world/entity/monster/warden/AngerLevel/SORTED_LEVELS +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219215_ net/minecraft/world/entity/monster/warden/AngerLevel/minimumAnger +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219216_ net/minecraft/world/entity/monster/warden/AngerLevel/ambientSound +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219217_ net/minecraft/world/entity/monster/warden/AngerLevel/listeningSound +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219241_ net/minecraft/world/entity/monster/warden/AngerManagement/CONVERSION_DELAY +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219242_ net/minecraft/world/entity/monster/warden/AngerManagement/MAX_ANGER +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219243_ net/minecraft/world/entity/monster/warden/AngerManagement/suspects +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219244_ net/minecraft/world/entity/monster/warden/AngerManagement/angerBySuspect +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219245_ net/minecraft/world/entity/monster/warden/AngerManagement/angerByUuid +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219246_ net/minecraft/world/entity/monster/warden/AngerManagement/DEFAULT_ANGER_DECREASE +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219247_ net/minecraft/world/entity/monster/warden/AngerManagement/conversionDelay +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219248_ net/minecraft/world/entity/monster/warden/AngerManagement/highestAnger +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219249_ net/minecraft/world/entity/monster/warden/AngerManagement/SUSPECT_ANGER_PAIR +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219250_ net/minecraft/world/entity/monster/warden/AngerManagement/filter +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219251_ net/minecraft/world/entity/monster/warden/AngerManagement/suspectSorter +FD: net/minecraft/world/entity/monster/warden/AngerManagement$1/f_219296_ net/minecraft/world/entity/monster/warden/AngerManagement$1/$SwitchMap$net$minecraft$world$entity$Entity$RemovalReason +FD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/f_219298_ net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/angerManagement +FD: net/minecraft/world/entity/monster/warden/Warden/f_219312_ net/minecraft/world/entity/monster/warden/Warden/roarAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219313_ net/minecraft/world/entity/monster/warden/Warden/attackAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219314_ net/minecraft/world/entity/monster/warden/Warden/sonicBoomAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219315_ net/minecraft/world/entity/monster/warden/Warden/LOGGER +FD: net/minecraft/world/entity/monster/warden/Warden/f_219316_ net/minecraft/world/entity/monster/warden/Warden/sniffAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219317_ net/minecraft/world/entity/monster/warden/Warden/heartAnimationO +FD: net/minecraft/world/entity/monster/warden/Warden/f_219318_ net/minecraft/world/entity/monster/warden/Warden/dynamicGameEventListener +FD: net/minecraft/world/entity/monster/warden/Warden/f_219319_ net/minecraft/world/entity/monster/warden/Warden/angerManagement +FD: net/minecraft/world/entity/monster/warden/Warden/f_219321_ net/minecraft/world/entity/monster/warden/Warden/VIBRATION_COOLDOWN_TICKS +FD: net/minecraft/world/entity/monster/warden/Warden/f_219322_ net/minecraft/world/entity/monster/warden/Warden/TIME_TO_USE_MELEE_UNTIL_SONIC_BOOM +FD: net/minecraft/world/entity/monster/warden/Warden/f_219323_ net/minecraft/world/entity/monster/warden/Warden/MAX_HEALTH +FD: net/minecraft/world/entity/monster/warden/Warden/f_219324_ net/minecraft/world/entity/monster/warden/Warden/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/warden/Warden/f_219325_ net/minecraft/world/entity/monster/warden/Warden/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/monster/warden/Warden/f_219326_ net/minecraft/world/entity/monster/warden/Warden/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/monster/warden/Warden/f_219327_ net/minecraft/world/entity/monster/warden/Warden/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/warden/Warden/f_219328_ net/minecraft/world/entity/monster/warden/Warden/CLIENT_ANGER_LEVEL +FD: net/minecraft/world/entity/monster/warden/Warden/f_219329_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_DISPLAY_LIMIT +FD: net/minecraft/world/entity/monster/warden/Warden/f_219330_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_DURATION +FD: net/minecraft/world/entity/monster/warden/Warden/f_219331_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_RADIUS +FD: net/minecraft/world/entity/monster/warden/Warden/f_219332_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_INTERVAL +FD: net/minecraft/world/entity/monster/warden/Warden/f_219333_ net/minecraft/world/entity/monster/warden/Warden/ANGERMANAGEMENT_TICK_DELAY +FD: net/minecraft/world/entity/monster/warden/Warden/f_219334_ net/minecraft/world/entity/monster/warden/Warden/DEFAULT_ANGER +FD: net/minecraft/world/entity/monster/warden/Warden/f_219335_ net/minecraft/world/entity/monster/warden/Warden/PROJECTILE_ANGER +FD: net/minecraft/world/entity/monster/warden/Warden/f_219336_ net/minecraft/world/entity/monster/warden/Warden/ON_HURT_ANGER_BOOST +FD: net/minecraft/world/entity/monster/warden/Warden/f_219337_ net/minecraft/world/entity/monster/warden/Warden/RECENT_PROJECTILE_TICK_THRESHOLD +FD: net/minecraft/world/entity/monster/warden/Warden/f_219338_ net/minecraft/world/entity/monster/warden/Warden/TOUCH_COOLDOWN_TICKS +FD: net/minecraft/world/entity/monster/warden/Warden/f_219339_ net/minecraft/world/entity/monster/warden/Warden/DIGGING_PARTICLES_AMOUNT +FD: net/minecraft/world/entity/monster/warden/Warden/f_219340_ net/minecraft/world/entity/monster/warden/Warden/DIGGING_PARTICLES_DURATION +FD: net/minecraft/world/entity/monster/warden/Warden/f_219341_ net/minecraft/world/entity/monster/warden/Warden/DIGGING_PARTICLES_OFFSET +FD: net/minecraft/world/entity/monster/warden/Warden/f_219342_ net/minecraft/world/entity/monster/warden/Warden/PROJECTILE_ANGER_DISTANCE +FD: net/minecraft/world/entity/monster/warden/Warden/f_219343_ net/minecraft/world/entity/monster/warden/Warden/tendrilAnimation +FD: net/minecraft/world/entity/monster/warden/Warden/f_219344_ net/minecraft/world/entity/monster/warden/Warden/tendrilAnimationO +FD: net/minecraft/world/entity/monster/warden/Warden/f_219345_ net/minecraft/world/entity/monster/warden/Warden/heartAnimation +FD: net/minecraft/world/entity/monster/warden/Warden/f_219346_ net/minecraft/world/entity/monster/warden/Warden/emergeAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219347_ net/minecraft/world/entity/monster/warden/Warden/diggingAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_279590_ net/minecraft/world/entity/monster/warden/Warden/vibrationData +FD: net/minecraft/world/entity/monster/warden/Warden/f_279603_ net/minecraft/world/entity/monster/warden/Warden/vibrationUser +FD: net/minecraft/world/entity/monster/warden/Warden$1/f_219473_ net/minecraft/world/entity/monster/warden/Warden$1/this$0 +FD: net/minecraft/world/entity/monster/warden/Warden$1$1/f_219480_ net/minecraft/world/entity/monster/warden/Warden$1$1/this$1 +FD: net/minecraft/world/entity/monster/warden/Warden$2/f_219488_ net/minecraft/world/entity/monster/warden/Warden$2/$SwitchMap$net$minecraft$world$entity$Pose +FD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/f_279541_ net/minecraft/world/entity/monster/warden/Warden$VibrationUser/GAME_EVENT_LISTENER_RANGE +FD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/f_279592_ net/minecraft/world/entity/monster/warden/Warden$VibrationUser/this$0 +FD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/f_279600_ net/minecraft/world/entity/monster/warden/Warden$VibrationUser/positionSource +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219490_ net/minecraft/world/entity/monster/warden/WardenAi/EMERGE_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219491_ net/minecraft/world/entity/monster/warden/WardenAi/ROAR_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219492_ net/minecraft/world/entity/monster/warden/WardenAi/DIGGING_COOLDOWN +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219493_ net/minecraft/world/entity/monster/warden/WardenAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219494_ net/minecraft/world/entity/monster/warden/WardenAi/SPEED_MULTIPLIER_WHEN_INVESTIGATING +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219495_ net/minecraft/world/entity/monster/warden/WardenAi/SPEED_MULTIPLIER_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219496_ net/minecraft/world/entity/monster/warden/WardenAi/MELEE_ATTACK_COOLDOWN +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219497_ net/minecraft/world/entity/monster/warden/WardenAi/DIGGING_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219498_ net/minecraft/world/entity/monster/warden/WardenAi/SNIFFING_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219499_ net/minecraft/world/entity/monster/warden/WardenAi/DISTURBANCE_LOCATION_EXPIRY_TIME +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219500_ net/minecraft/world/entity/monster/warden/WardenAi/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219501_ net/minecraft/world/entity/monster/warden/WardenAi/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219502_ net/minecraft/world/entity/monster/warden/WardenAi/DIG_COOLDOWN_SETTER +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219557_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/CODEC +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219558_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/MAX_WARNING_LEVEL +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219559_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/PLAYER_SEARCH_RADIUS +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219560_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/WARNING_CHECK_DIAMETER +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219561_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/DECREASE_WARNING_LEVEL_EVERY_INTERVAL +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219562_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/WARNING_LEVEL_INCREASE_COOLDOWN +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219563_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ticksSinceLastWarning +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219564_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/warningLevel +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219565_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/cooldownTicks +FD: net/minecraft/world/entity/npc/AbstractVillager/f_149991_ net/minecraft/world/entity/npc/AbstractVillager/VILLAGER_SLOT_OFFSET +FD: net/minecraft/world/entity/npc/AbstractVillager/f_149992_ net/minecraft/world/entity/npc/AbstractVillager/VILLAGER_INVENTORY_SIZE +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35261_ net/minecraft/world/entity/npc/AbstractVillager/offers +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35262_ net/minecraft/world/entity/npc/AbstractVillager/DATA_UNHAPPY_COUNTER +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35263_ net/minecraft/world/entity/npc/AbstractVillager/tradingPlayer +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35264_ net/minecraft/world/entity/npc/AbstractVillager/inventory +FD: net/minecraft/world/entity/npc/CatSpawner/f_149996_ net/minecraft/world/entity/npc/CatSpawner/TICK_DELAY +FD: net/minecraft/world/entity/npc/CatSpawner/f_35324_ net/minecraft/world/entity/npc/CatSpawner/nextTick +FD: net/minecraft/world/entity/npc/ClientSideMerchant/f_35340_ net/minecraft/world/entity/npc/ClientSideMerchant/source +FD: net/minecraft/world/entity/npc/ClientSideMerchant/f_35341_ net/minecraft/world/entity/npc/ClientSideMerchant/offers +FD: net/minecraft/world/entity/npc/ClientSideMerchant/f_35342_ net/minecraft/world/entity/npc/ClientSideMerchant/xp +FD: net/minecraft/world/entity/npc/InventoryCarrier/f_252389_ net/minecraft/world/entity/npc/InventoryCarrier/TAG_INVENTORY +FD: net/minecraft/world/entity/npc/Villager/f_149997_ net/minecraft/world/entity/npc/Villager/BREEDING_FOOD_THRESHOLD +FD: net/minecraft/world/entity/npc/Villager/f_149998_ net/minecraft/world/entity/npc/Villager/SPEED_MODIFIER +FD: net/minecraft/world/entity/npc/Villager/f_149999_ net/minecraft/world/entity/npc/Villager/TRADES_PER_LEVEL +FD: net/minecraft/world/entity/npc/Villager/f_150000_ net/minecraft/world/entity/npc/Villager/MAX_GOSSIP_TOPICS +FD: net/minecraft/world/entity/npc/Villager/f_150001_ net/minecraft/world/entity/npc/Villager/GOSSIP_COOLDOWN +FD: net/minecraft/world/entity/npc/Villager/f_150002_ net/minecraft/world/entity/npc/Villager/GOSSIP_DECAY_INTERVAL +FD: net/minecraft/world/entity/npc/Villager/f_150003_ net/minecraft/world/entity/npc/Villager/REPUTATION_CHANGE_PER_EVENT +FD: net/minecraft/world/entity/npc/Villager/f_150004_ net/minecraft/world/entity/npc/Villager/HOW_FAR_AWAY_TO_TALK_TO_OTHER_VILLAGERS_ABOUT_GOLEMS +FD: net/minecraft/world/entity/npc/Villager/f_150005_ net/minecraft/world/entity/npc/Villager/HOW_MANY_VILLAGERS_NEED_TO_AGREE_TO_SPAWN_A_GOLEM +FD: net/minecraft/world/entity/npc/Villager/f_150006_ net/minecraft/world/entity/npc/Villager/TIME_SINCE_SLEEPING_FOR_GOLEM_SPAWNING +FD: net/minecraft/world/entity/npc/Villager/f_150007_ net/minecraft/world/entity/npc/Villager/chasing +FD: net/minecraft/world/entity/npc/Villager/f_201976_ net/minecraft/world/entity/npc/Villager/LOGGER +FD: net/minecraft/world/entity/npc/Villager/f_35361_ net/minecraft/world/entity/npc/Villager/lastGossipDecayTime +FD: net/minecraft/world/entity/npc/Villager/f_35362_ net/minecraft/world/entity/npc/Villager/villagerXp +FD: net/minecraft/world/entity/npc/Villager/f_35363_ net/minecraft/world/entity/npc/Villager/lastRestockGameTime +FD: net/minecraft/world/entity/npc/Villager/f_35364_ net/minecraft/world/entity/npc/Villager/numberOfRestocksToday +FD: net/minecraft/world/entity/npc/Villager/f_35365_ net/minecraft/world/entity/npc/Villager/lastRestockCheckDayTime +FD: net/minecraft/world/entity/npc/Villager/f_35366_ net/minecraft/world/entity/npc/Villager/assignProfessionWhenSpawned +FD: net/minecraft/world/entity/npc/Villager/f_35367_ net/minecraft/world/entity/npc/Villager/MEMORY_TYPES +FD: net/minecraft/world/entity/npc/Villager/f_35368_ net/minecraft/world/entity/npc/Villager/SENSOR_TYPES +FD: net/minecraft/world/entity/npc/Villager/f_35369_ net/minecraft/world/entity/npc/Villager/FOOD_POINTS +FD: net/minecraft/world/entity/npc/Villager/f_35370_ net/minecraft/world/entity/npc/Villager/POI_MEMORIES +FD: net/minecraft/world/entity/npc/Villager/f_35371_ net/minecraft/world/entity/npc/Villager/DATA_VILLAGER_DATA +FD: net/minecraft/world/entity/npc/Villager/f_35372_ net/minecraft/world/entity/npc/Villager/WANTED_ITEMS +FD: net/minecraft/world/entity/npc/Villager/f_35373_ net/minecraft/world/entity/npc/Villager/updateMerchantTimer +FD: net/minecraft/world/entity/npc/Villager/f_35374_ net/minecraft/world/entity/npc/Villager/increaseProfessionLevelOnUpdate +FD: net/minecraft/world/entity/npc/Villager/f_35375_ net/minecraft/world/entity/npc/Villager/lastTradedPlayer +FD: net/minecraft/world/entity/npc/Villager/f_35376_ net/minecraft/world/entity/npc/Villager/foodLevel +FD: net/minecraft/world/entity/npc/Villager/f_35377_ net/minecraft/world/entity/npc/Villager/gossips +FD: net/minecraft/world/entity/npc/Villager/f_35378_ net/minecraft/world/entity/npc/Villager/lastGossipTime +FD: net/minecraft/world/entity/npc/VillagerData/f_150017_ net/minecraft/world/entity/npc/VillagerData/MIN_VILLAGER_LEVEL +FD: net/minecraft/world/entity/npc/VillagerData/f_150018_ net/minecraft/world/entity/npc/VillagerData/MAX_VILLAGER_LEVEL +FD: net/minecraft/world/entity/npc/VillagerData/f_35550_ net/minecraft/world/entity/npc/VillagerData/CODEC +FD: net/minecraft/world/entity/npc/VillagerData/f_35551_ net/minecraft/world/entity/npc/VillagerData/NEXT_LEVEL_XP_THRESHOLDS +FD: net/minecraft/world/entity/npc/VillagerData/f_35552_ net/minecraft/world/entity/npc/VillagerData/type +FD: net/minecraft/world/entity/npc/VillagerData/f_35553_ net/minecraft/world/entity/npc/VillagerData/profession +FD: net/minecraft/world/entity/npc/VillagerData/f_35554_ net/minecraft/world/entity/npc/VillagerData/level +FD: net/minecraft/world/entity/npc/VillagerProfession/f_219627_ net/minecraft/world/entity/npc/VillagerProfession/ALL_ACQUIRABLE_JOBS +FD: net/minecraft/world/entity/npc/VillagerProfession/f_219628_ net/minecraft/world/entity/npc/VillagerProfession/heldJobSite +FD: net/minecraft/world/entity/npc/VillagerProfession/f_219629_ net/minecraft/world/entity/npc/VillagerProfession/acquirableJobSite +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35585_ net/minecraft/world/entity/npc/VillagerProfession/NONE +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35586_ net/minecraft/world/entity/npc/VillagerProfession/ARMORER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35587_ net/minecraft/world/entity/npc/VillagerProfession/BUTCHER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35588_ net/minecraft/world/entity/npc/VillagerProfession/CARTOGRAPHER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35589_ net/minecraft/world/entity/npc/VillagerProfession/CLERIC +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35590_ net/minecraft/world/entity/npc/VillagerProfession/FARMER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35591_ net/minecraft/world/entity/npc/VillagerProfession/FISHERMAN +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35592_ net/minecraft/world/entity/npc/VillagerProfession/FLETCHER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35593_ net/minecraft/world/entity/npc/VillagerProfession/LEATHERWORKER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35594_ net/minecraft/world/entity/npc/VillagerProfession/LIBRARIAN +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35595_ net/minecraft/world/entity/npc/VillagerProfession/MASON +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35596_ net/minecraft/world/entity/npc/VillagerProfession/NITWIT +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35597_ net/minecraft/world/entity/npc/VillagerProfession/SHEPHERD +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35598_ net/minecraft/world/entity/npc/VillagerProfession/TOOLSMITH +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35599_ net/minecraft/world/entity/npc/VillagerProfession/WEAPONSMITH +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35600_ net/minecraft/world/entity/npc/VillagerProfession/name +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35602_ net/minecraft/world/entity/npc/VillagerProfession/requestedItems +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35603_ net/minecraft/world/entity/npc/VillagerProfession/secondaryPoi +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35604_ net/minecraft/world/entity/npc/VillagerProfession/workSound +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150029_ net/minecraft/world/entity/npc/VillagerTrades/DEFAULT_SUPPLY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150030_ net/minecraft/world/entity/npc/VillagerTrades/COMMON_ITEMS_SUPPLY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150031_ net/minecraft/world/entity/npc/VillagerTrades/UNCOMMON_ITEMS_SUPPLY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150032_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_1_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150033_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_1_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150034_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_2_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150035_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_2_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150036_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_3_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150037_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_3_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150038_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_4_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150039_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_4_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150040_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_5_TRADE +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150041_ net/minecraft/world/entity/npc/VillagerTrades/LOW_TIER_PRICE_MULTIPLIER +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150042_ net/minecraft/world/entity/npc/VillagerTrades/HIGH_TIER_PRICE_MULTIPLIER +FD: net/minecraft/world/entity/npc/VillagerTrades/f_35627_ net/minecraft/world/entity/npc/VillagerTrades/TRADES +FD: net/minecraft/world/entity/npc/VillagerTrades/f_35628_ net/minecraft/world/entity/npc/VillagerTrades/WANDERING_TRADER_TRADES +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35634_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/item +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35635_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/value +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35636_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35637_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35651_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/item +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35652_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/cost +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35653_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35654_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35655_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35664_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/trades +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35665_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/cost +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35666_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35667_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/f_35681_ net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35687_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/itemStack +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35688_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/baseEmeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35689_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35690_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35691_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35708_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/fromItem +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35709_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/fromCount +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35710_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35711_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/toItem +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35712_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/toCount +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35713_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35714_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35715_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35734_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/itemStack +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35735_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35736_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/numberOfItems +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35737_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35738_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35739_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186308_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/effect +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186309_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/duration +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186310_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/xp +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186311_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35784_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/toItem +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35785_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/toCount +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35786_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35787_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35788_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35789_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/fromItem +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35790_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/fromCount +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35791_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_207765_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/displayName +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35805_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35806_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/destination +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35807_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/destinationType +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35808_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35809_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerType/f_35819_ net/minecraft/world/entity/npc/VillagerType/DESERT +FD: net/minecraft/world/entity/npc/VillagerType/f_35820_ net/minecraft/world/entity/npc/VillagerType/JUNGLE +FD: net/minecraft/world/entity/npc/VillagerType/f_35821_ net/minecraft/world/entity/npc/VillagerType/PLAINS +FD: net/minecraft/world/entity/npc/VillagerType/f_35822_ net/minecraft/world/entity/npc/VillagerType/SAVANNA +FD: net/minecraft/world/entity/npc/VillagerType/f_35823_ net/minecraft/world/entity/npc/VillagerType/SNOW +FD: net/minecraft/world/entity/npc/VillagerType/f_35824_ net/minecraft/world/entity/npc/VillagerType/SWAMP +FD: net/minecraft/world/entity/npc/VillagerType/f_35825_ net/minecraft/world/entity/npc/VillagerType/TAIGA +FD: net/minecraft/world/entity/npc/VillagerType/f_35826_ net/minecraft/world/entity/npc/VillagerType/name +FD: net/minecraft/world/entity/npc/VillagerType/f_35827_ net/minecraft/world/entity/npc/VillagerType/BY_BIOME +FD: net/minecraft/world/entity/npc/WanderingTrader/f_150044_ net/minecraft/world/entity/npc/WanderingTrader/NUMBER_OF_TRADE_OFFERS +FD: net/minecraft/world/entity/npc/WanderingTrader/f_35840_ net/minecraft/world/entity/npc/WanderingTrader/wanderTarget +FD: net/minecraft/world/entity/npc/WanderingTrader/f_35841_ net/minecraft/world/entity/npc/WanderingTrader/despawnDelay +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35893_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/trader +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35894_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/stopDistance +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35895_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/speedModifier +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35896_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/this$0 +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150050_ net/minecraft/world/entity/npc/WanderingTraderSpawner/DEFAULT_SPAWN_DELAY +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150051_ net/minecraft/world/entity/npc/WanderingTraderSpawner/DEFAULT_TICK_DELAY +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150052_ net/minecraft/world/entity/npc/WanderingTraderSpawner/MIN_SPAWN_CHANCE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150053_ net/minecraft/world/entity/npc/WanderingTraderSpawner/MAX_SPAWN_CHANCE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150054_ net/minecraft/world/entity/npc/WanderingTraderSpawner/SPAWN_CHANCE_INCREASE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150055_ net/minecraft/world/entity/npc/WanderingTraderSpawner/SPAWN_ONE_IN_X_CHANCE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150056_ net/minecraft/world/entity/npc/WanderingTraderSpawner/NUMBER_OF_SPAWN_ATTEMPTS +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35908_ net/minecraft/world/entity/npc/WanderingTraderSpawner/random +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35909_ net/minecraft/world/entity/npc/WanderingTraderSpawner/serverLevelData +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35910_ net/minecraft/world/entity/npc/WanderingTraderSpawner/tickDelay +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35911_ net/minecraft/world/entity/npc/WanderingTraderSpawner/spawnDelay +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35912_ net/minecraft/world/entity/npc/WanderingTraderSpawner/spawnChance +FD: net/minecraft/world/entity/player/Abilities/f_35934_ net/minecraft/world/entity/player/Abilities/invulnerable +FD: net/minecraft/world/entity/player/Abilities/f_35935_ net/minecraft/world/entity/player/Abilities/flying +FD: net/minecraft/world/entity/player/Abilities/f_35936_ net/minecraft/world/entity/player/Abilities/mayfly +FD: net/minecraft/world/entity/player/Abilities/f_35937_ net/minecraft/world/entity/player/Abilities/instabuild +FD: net/minecraft/world/entity/player/Abilities/f_35938_ net/minecraft/world/entity/player/Abilities/mayBuild +FD: net/minecraft/world/entity/player/Abilities/f_35939_ net/minecraft/world/entity/player/Abilities/flyingSpeed +FD: net/minecraft/world/entity/player/Abilities/f_35940_ net/minecraft/world/entity/player/Abilities/walkingSpeed +FD: net/minecraft/world/entity/player/ChatVisiblity/$VALUES net/minecraft/world/entity/player/ChatVisiblity/$VALUES +FD: net/minecraft/world/entity/player/ChatVisiblity/FULL net/minecraft/world/entity/player/ChatVisiblity/FULL +FD: net/minecraft/world/entity/player/ChatVisiblity/HIDDEN net/minecraft/world/entity/player/ChatVisiblity/HIDDEN +FD: net/minecraft/world/entity/player/ChatVisiblity/SYSTEM net/minecraft/world/entity/player/ChatVisiblity/SYSTEM +FD: net/minecraft/world/entity/player/ChatVisiblity/f_35955_ net/minecraft/world/entity/player/ChatVisiblity/BY_ID +FD: net/minecraft/world/entity/player/ChatVisiblity/f_35956_ net/minecraft/world/entity/player/ChatVisiblity/id +FD: net/minecraft/world/entity/player/ChatVisiblity/f_35957_ net/minecraft/world/entity/player/ChatVisiblity/key +FD: net/minecraft/world/entity/player/Inventory/f_150064_ net/minecraft/world/entity/player/Inventory/POP_TIME_DURATION +FD: net/minecraft/world/entity/player/Inventory/f_150065_ net/minecraft/world/entity/player/Inventory/INVENTORY_SIZE +FD: net/minecraft/world/entity/player/Inventory/f_150066_ net/minecraft/world/entity/player/Inventory/SLOT_OFFHAND +FD: net/minecraft/world/entity/player/Inventory/f_150067_ net/minecraft/world/entity/player/Inventory/NOT_FOUND_INDEX +FD: net/minecraft/world/entity/player/Inventory/f_150068_ net/minecraft/world/entity/player/Inventory/ALL_ARMOR_SLOTS +FD: net/minecraft/world/entity/player/Inventory/f_150069_ net/minecraft/world/entity/player/Inventory/HELMET_SLOT_ONLY +FD: net/minecraft/world/entity/player/Inventory/f_150070_ net/minecraft/world/entity/player/Inventory/SELECTION_SIZE +FD: net/minecraft/world/entity/player/Inventory/f_35974_ net/minecraft/world/entity/player/Inventory/items +FD: net/minecraft/world/entity/player/Inventory/f_35975_ net/minecraft/world/entity/player/Inventory/armor +FD: net/minecraft/world/entity/player/Inventory/f_35976_ net/minecraft/world/entity/player/Inventory/offhand +FD: net/minecraft/world/entity/player/Inventory/f_35977_ net/minecraft/world/entity/player/Inventory/selected +FD: net/minecraft/world/entity/player/Inventory/f_35978_ net/minecraft/world/entity/player/Inventory/player +FD: net/minecraft/world/entity/player/Inventory/f_35979_ net/minecraft/world/entity/player/Inventory/compartments +FD: net/minecraft/world/entity/player/Inventory/f_35981_ net/minecraft/world/entity/player/Inventory/timesChanged +FD: net/minecraft/world/entity/player/Player/f_150082_ net/minecraft/world/entity/player/Player/MAX_NAME_LENGTH +FD: net/minecraft/world/entity/player/Player/f_150083_ net/minecraft/world/entity/player/Player/MAX_HEALTH +FD: net/minecraft/world/entity/player/Player/f_150084_ net/minecraft/world/entity/player/Player/SLEEP_DURATION +FD: net/minecraft/world/entity/player/Player/f_150085_ net/minecraft/world/entity/player/Player/WAKE_UP_DURATION +FD: net/minecraft/world/entity/player/Player/f_150086_ net/minecraft/world/entity/player/Player/ENDER_SLOT_OFFSET +FD: net/minecraft/world/entity/player/Player/f_150087_ net/minecraft/world/entity/player/Player/CROUCH_BB_HEIGHT +FD: net/minecraft/world/entity/player/Player/f_150088_ net/minecraft/world/entity/player/Player/SWIMMING_BB_WIDTH +FD: net/minecraft/world/entity/player/Player/f_150089_ net/minecraft/world/entity/player/Player/SWIMMING_BB_HEIGHT +FD: net/minecraft/world/entity/player/Player/f_150090_ net/minecraft/world/entity/player/Player/DEFAULT_EYE_HEIGHT +FD: net/minecraft/world/entity/player/Player/f_150091_ net/minecraft/world/entity/player/Player/FLY_ACHIEVEMENT_SPEED +FD: net/minecraft/world/entity/player/Player/f_219722_ net/minecraft/world/entity/player/Player/LOGGER +FD: net/minecraft/world/entity/player/Player/f_238176_ net/minecraft/world/entity/player/Player/lastDeathLocation +FD: net/minecraft/world/entity/player/Player/f_263750_ net/minecraft/world/entity/player/Player/hurtDir +FD: net/minecraft/world/entity/player/Player/f_36074_ net/minecraft/world/entity/player/Player/POSES +FD: net/minecraft/world/entity/player/Player/f_36075_ net/minecraft/world/entity/player/Player/zCloak +FD: net/minecraft/world/entity/player/Player/f_36076_ net/minecraft/world/entity/player/Player/wasUnderwater +FD: net/minecraft/world/entity/player/Player/f_36077_ net/minecraft/world/entity/player/Player/abilities +FD: net/minecraft/world/entity/player/Player/f_36078_ net/minecraft/world/entity/player/Player/experienceLevel +FD: net/minecraft/world/entity/player/Player/f_36079_ net/minecraft/world/entity/player/Player/totalExperience +FD: net/minecraft/world/entity/player/Player/f_36080_ net/minecraft/world/entity/player/Player/experienceProgress +FD: net/minecraft/world/entity/player/Player/f_36081_ net/minecraft/world/entity/player/Player/enchantmentSeed +FD: net/minecraft/world/entity/player/Player/f_36082_ net/minecraft/world/entity/player/Player/defaultFlySpeed +FD: net/minecraft/world/entity/player/Player/f_36083_ net/minecraft/world/entity/player/Player/fishing +FD: net/minecraft/world/entity/player/Player/f_36084_ net/minecraft/world/entity/player/Player/gameProfile +FD: net/minecraft/world/entity/player/Player/f_36085_ net/minecraft/world/entity/player/Player/reducedDebugInfo +FD: net/minecraft/world/entity/player/Player/f_36086_ net/minecraft/world/entity/player/Player/lastItemInMainHand +FD: net/minecraft/world/entity/player/Player/f_36087_ net/minecraft/world/entity/player/Player/cooldowns +FD: net/minecraft/world/entity/player/Player/f_36088_ net/minecraft/world/entity/player/Player/STANDING_DIMENSIONS +FD: net/minecraft/world/entity/player/Player/f_36089_ net/minecraft/world/entity/player/Player/DATA_PLAYER_MODE_CUSTOMISATION +FD: net/minecraft/world/entity/player/Player/f_36090_ net/minecraft/world/entity/player/Player/DATA_PLAYER_MAIN_HAND +FD: net/minecraft/world/entity/player/Player/f_36091_ net/minecraft/world/entity/player/Player/DATA_SHOULDER_LEFT +FD: net/minecraft/world/entity/player/Player/f_36092_ net/minecraft/world/entity/player/Player/DATA_SHOULDER_RIGHT +FD: net/minecraft/world/entity/player/Player/f_36093_ net/minecraft/world/entity/player/Player/inventory +FD: net/minecraft/world/entity/player/Player/f_36094_ net/minecraft/world/entity/player/Player/enderChestInventory +FD: net/minecraft/world/entity/player/Player/f_36095_ net/minecraft/world/entity/player/Player/inventoryMenu +FD: net/minecraft/world/entity/player/Player/f_36096_ net/minecraft/world/entity/player/Player/containerMenu +FD: net/minecraft/world/entity/player/Player/f_36097_ net/minecraft/world/entity/player/Player/foodData +FD: net/minecraft/world/entity/player/Player/f_36098_ net/minecraft/world/entity/player/Player/jumpTriggerTime +FD: net/minecraft/world/entity/player/Player/f_36099_ net/minecraft/world/entity/player/Player/oBob +FD: net/minecraft/world/entity/player/Player/f_36100_ net/minecraft/world/entity/player/Player/bob +FD: net/minecraft/world/entity/player/Player/f_36101_ net/minecraft/world/entity/player/Player/takeXpDelay +FD: net/minecraft/world/entity/player/Player/f_36102_ net/minecraft/world/entity/player/Player/xCloakO +FD: net/minecraft/world/entity/player/Player/f_36103_ net/minecraft/world/entity/player/Player/yCloakO +FD: net/minecraft/world/entity/player/Player/f_36104_ net/minecraft/world/entity/player/Player/zCloakO +FD: net/minecraft/world/entity/player/Player/f_36105_ net/minecraft/world/entity/player/Player/xCloak +FD: net/minecraft/world/entity/player/Player/f_36106_ net/minecraft/world/entity/player/Player/yCloak +FD: net/minecraft/world/entity/player/Player/f_36107_ net/minecraft/world/entity/player/Player/DATA_PLAYER_ABSORPTION_ID +FD: net/minecraft/world/entity/player/Player/f_36108_ net/minecraft/world/entity/player/Player/DATA_SCORE_ID +FD: net/minecraft/world/entity/player/Player/f_36109_ net/minecraft/world/entity/player/Player/timeEntitySatOnShoulder +FD: net/minecraft/world/entity/player/Player/f_36110_ net/minecraft/world/entity/player/Player/sleepCounter +FD: net/minecraft/world/entity/player/Player/f_36111_ net/minecraft/world/entity/player/Player/lastLevelUpTime +FD: net/minecraft/world/entity/player/Player$1/f_36405_ net/minecraft/world/entity/player/Player$1/$SwitchMap$net$minecraft$world$entity$Pose +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/$VALUES net/minecraft/world/entity/player/Player$BedSleepingProblem/$VALUES +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_HERE net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_HERE +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_NOW net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_NOW +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_SAFE net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_SAFE +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/OBSTRUCTED net/minecraft/world/entity/player/Player$BedSleepingProblem/OBSTRUCTED +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/OTHER_PROBLEM net/minecraft/world/entity/player/Player$BedSleepingProblem/OTHER_PROBLEM +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/TOO_FAR_AWAY net/minecraft/world/entity/player/Player$BedSleepingProblem/TOO_FAR_AWAY +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/f_36413_ net/minecraft/world/entity/player/Player$BedSleepingProblem/message +FD: net/minecraft/world/entity/player/PlayerModelPart/$VALUES net/minecraft/world/entity/player/PlayerModelPart/$VALUES +FD: net/minecraft/world/entity/player/PlayerModelPart/CAPE net/minecraft/world/entity/player/PlayerModelPart/CAPE +FD: net/minecraft/world/entity/player/PlayerModelPart/HAT net/minecraft/world/entity/player/PlayerModelPart/HAT +FD: net/minecraft/world/entity/player/PlayerModelPart/JACKET net/minecraft/world/entity/player/PlayerModelPart/JACKET +FD: net/minecraft/world/entity/player/PlayerModelPart/LEFT_PANTS_LEG net/minecraft/world/entity/player/PlayerModelPart/LEFT_PANTS_LEG +FD: net/minecraft/world/entity/player/PlayerModelPart/LEFT_SLEEVE net/minecraft/world/entity/player/PlayerModelPart/LEFT_SLEEVE +FD: net/minecraft/world/entity/player/PlayerModelPart/RIGHT_PANTS_LEG net/minecraft/world/entity/player/PlayerModelPart/RIGHT_PANTS_LEG +FD: net/minecraft/world/entity/player/PlayerModelPart/RIGHT_SLEEVE net/minecraft/world/entity/player/PlayerModelPart/RIGHT_SLEEVE +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36434_ net/minecraft/world/entity/player/PlayerModelPart/bit +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36435_ net/minecraft/world/entity/player/PlayerModelPart/mask +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36436_ net/minecraft/world/entity/player/PlayerModelPart/id +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36437_ net/minecraft/world/entity/player/PlayerModelPart/name +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219761_ net/minecraft/world/entity/player/ProfileKeyPair/CODEC +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219762_ net/minecraft/world/entity/player/ProfileKeyPair/privateKey +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219763_ net/minecraft/world/entity/player/ProfileKeyPair/publicKey +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219764_ net/minecraft/world/entity/player/ProfileKeyPair/refreshedAfter +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_219780_ net/minecraft/world/entity/player/ProfilePublicKey/TRUSTED_CODEC +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_219781_ net/minecraft/world/entity/player/ProfilePublicKey/data +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_243345_ net/minecraft/world/entity/player/ProfilePublicKey/INVALID_SIGNATURE +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_243346_ net/minecraft/world/entity/player/ProfilePublicKey/EXPIRED_PROFILE_PUBLIC_KEY +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_243350_ net/minecraft/world/entity/player/ProfilePublicKey/EXPIRY_GRACE_PERIOD +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219798_ net/minecraft/world/entity/player/ProfilePublicKey$Data/CODEC +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219799_ net/minecraft/world/entity/player/ProfilePublicKey$Data/expiresAt +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219800_ net/minecraft/world/entity/player/ProfilePublicKey$Data/key +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219801_ net/minecraft/world/entity/player/ProfilePublicKey$Data/keySignature +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219802_ net/minecraft/world/entity/player/ProfilePublicKey$Data/MAX_KEY_SIGNATURE_SIZE +FD: net/minecraft/world/entity/player/StackedContents/f_150116_ net/minecraft/world/entity/player/StackedContents/EMPTY +FD: net/minecraft/world/entity/player/StackedContents/f_36451_ net/minecraft/world/entity/player/StackedContents/contents +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36498_ net/minecraft/world/entity/player/StackedContents$RecipePicker/this$0 +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36499_ net/minecraft/world/entity/player/StackedContents$RecipePicker/recipe +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36500_ net/minecraft/world/entity/player/StackedContents$RecipePicker/ingredients +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36501_ net/minecraft/world/entity/player/StackedContents$RecipePicker/ingredientCount +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36502_ net/minecraft/world/entity/player/StackedContents$RecipePicker/items +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36503_ net/minecraft/world/entity/player/StackedContents$RecipePicker/itemCount +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36504_ net/minecraft/world/entity/player/StackedContents$RecipePicker/data +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36505_ net/minecraft/world/entity/player/StackedContents$RecipePicker/path +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150117_ net/minecraft/world/entity/projectile/AbstractArrow/FLAG_CRIT +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150118_ net/minecraft/world/entity/projectile/AbstractArrow/FLAG_NOPHYSICS +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150119_ net/minecraft/world/entity/projectile/AbstractArrow/FLAG_CROSSBOW +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150120_ net/minecraft/world/entity/projectile/AbstractArrow/ARROW_BASE_DAMAGE +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36696_ net/minecraft/world/entity/projectile/AbstractArrow/lastState +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36697_ net/minecraft/world/entity/projectile/AbstractArrow/life +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36698_ net/minecraft/world/entity/projectile/AbstractArrow/baseDamage +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36699_ net/minecraft/world/entity/projectile/AbstractArrow/knockback +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36700_ net/minecraft/world/entity/projectile/AbstractArrow/soundEvent +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36701_ net/minecraft/world/entity/projectile/AbstractArrow/piercingIgnoreEntityIds +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36702_ net/minecraft/world/entity/projectile/AbstractArrow/piercedAndKilledEntities +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36703_ net/minecraft/world/entity/projectile/AbstractArrow/inGround +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36704_ net/minecraft/world/entity/projectile/AbstractArrow/inGroundTime +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36705_ net/minecraft/world/entity/projectile/AbstractArrow/pickup +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36706_ net/minecraft/world/entity/projectile/AbstractArrow/shakeTime +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36707_ net/minecraft/world/entity/projectile/AbstractArrow/ID_FLAGS +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36708_ net/minecraft/world/entity/projectile/AbstractArrow/PIERCE_LEVEL +FD: net/minecraft/world/entity/projectile/AbstractArrow$1/f_150124_ net/minecraft/world/entity/projectile/AbstractArrow$1/$SwitchMap$net$minecraft$world$entity$projectile$AbstractArrow$Pickup +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/$VALUES net/minecraft/world/entity/projectile/AbstractArrow$Pickup/$VALUES +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ALLOWED net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ALLOWED +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/CREATIVE_ONLY net/minecraft/world/entity/projectile/AbstractArrow$Pickup/CREATIVE_ONLY +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/DISALLOWED net/minecraft/world/entity/projectile/AbstractArrow$Pickup/DISALLOWED +FD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/f_36813_ net/minecraft/world/entity/projectile/AbstractHurtingProjectile/xPower +FD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/f_36814_ net/minecraft/world/entity/projectile/AbstractHurtingProjectile/yPower +FD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/f_36815_ net/minecraft/world/entity/projectile/AbstractHurtingProjectile/zPower +FD: net/minecraft/world/entity/projectile/Arrow/f_150129_ net/minecraft/world/entity/projectile/Arrow/NO_EFFECT_COLOR +FD: net/minecraft/world/entity/projectile/Arrow/f_150130_ net/minecraft/world/entity/projectile/Arrow/EVENT_POTION_PUFF +FD: net/minecraft/world/entity/projectile/Arrow/f_150131_ net/minecraft/world/entity/projectile/Arrow/EXPOSED_POTION_DECAY_TIME +FD: net/minecraft/world/entity/projectile/Arrow/f_36852_ net/minecraft/world/entity/projectile/Arrow/effects +FD: net/minecraft/world/entity/projectile/Arrow/f_36853_ net/minecraft/world/entity/projectile/Arrow/fixedColor +FD: net/minecraft/world/entity/projectile/Arrow/f_36854_ net/minecraft/world/entity/projectile/Arrow/ID_EFFECT_COLOR +FD: net/minecraft/world/entity/projectile/Arrow/f_36855_ net/minecraft/world/entity/projectile/Arrow/potion +FD: net/minecraft/world/entity/projectile/DragonFireball/f_150132_ net/minecraft/world/entity/projectile/DragonFireball/SPLASH_RANGE +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_150133_ net/minecraft/world/entity/projectile/EvokerFangs/ATTACK_DURATION +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_150134_ net/minecraft/world/entity/projectile/EvokerFangs/LIFE_OFFSET +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_150135_ net/minecraft/world/entity/projectile/EvokerFangs/ATTACK_TRIGGER_TICKS +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36916_ net/minecraft/world/entity/projectile/EvokerFangs/warmupDelayTicks +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36917_ net/minecraft/world/entity/projectile/EvokerFangs/sentSpikeEvent +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36918_ net/minecraft/world/entity/projectile/EvokerFangs/lifeTicks +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36919_ net/minecraft/world/entity/projectile/EvokerFangs/clientSideAttackStarted +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36920_ net/minecraft/world/entity/projectile/EvokerFangs/owner +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36921_ net/minecraft/world/entity/projectile/EvokerFangs/ownerUUID +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36949_ net/minecraft/world/entity/projectile/EyeOfEnder/DATA_ITEM_STACK +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36950_ net/minecraft/world/entity/projectile/EyeOfEnder/tx +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36951_ net/minecraft/world/entity/projectile/EyeOfEnder/ty +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36952_ net/minecraft/world/entity/projectile/EyeOfEnder/tz +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36953_ net/minecraft/world/entity/projectile/EyeOfEnder/life +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36954_ net/minecraft/world/entity/projectile/EyeOfEnder/surviveAfterDeath +FD: net/minecraft/world/entity/projectile/Fireball/f_36987_ net/minecraft/world/entity/projectile/Fireball/DATA_ITEM_STACK +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37019_ net/minecraft/world/entity/projectile/FireworkRocketEntity/DATA_ID_FIREWORKS_ITEM +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37020_ net/minecraft/world/entity/projectile/FireworkRocketEntity/DATA_ATTACHED_TO_TARGET +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37021_ net/minecraft/world/entity/projectile/FireworkRocketEntity/DATA_SHOT_AT_ANGLE +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37022_ net/minecraft/world/entity/projectile/FireworkRocketEntity/life +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37023_ net/minecraft/world/entity/projectile/FireworkRocketEntity/lifetime +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37024_ net/minecraft/world/entity/projectile/FireworkRocketEntity/attachedToEntity +FD: net/minecraft/world/entity/projectile/FishingHook/f_150136_ net/minecraft/world/entity/projectile/FishingHook/MAX_OUT_OF_WATER_TIME +FD: net/minecraft/world/entity/projectile/FishingHook/f_201977_ net/minecraft/world/entity/projectile/FishingHook/LOGGER +FD: net/minecraft/world/entity/projectile/FishingHook/f_37089_ net/minecraft/world/entity/projectile/FishingHook/nibble +FD: net/minecraft/world/entity/projectile/FishingHook/f_37090_ net/minecraft/world/entity/projectile/FishingHook/timeUntilLured +FD: net/minecraft/world/entity/projectile/FishingHook/f_37091_ net/minecraft/world/entity/projectile/FishingHook/timeUntilHooked +FD: net/minecraft/world/entity/projectile/FishingHook/f_37092_ net/minecraft/world/entity/projectile/FishingHook/fishAngle +FD: net/minecraft/world/entity/projectile/FishingHook/f_37093_ net/minecraft/world/entity/projectile/FishingHook/openWater +FD: net/minecraft/world/entity/projectile/FishingHook/f_37094_ net/minecraft/world/entity/projectile/FishingHook/hookedIn +FD: net/minecraft/world/entity/projectile/FishingHook/f_37095_ net/minecraft/world/entity/projectile/FishingHook/currentState +FD: net/minecraft/world/entity/projectile/FishingHook/f_37096_ net/minecraft/world/entity/projectile/FishingHook/luck +FD: net/minecraft/world/entity/projectile/FishingHook/f_37097_ net/minecraft/world/entity/projectile/FishingHook/lureSpeed +FD: net/minecraft/world/entity/projectile/FishingHook/f_37098_ net/minecraft/world/entity/projectile/FishingHook/syncronizedRandom +FD: net/minecraft/world/entity/projectile/FishingHook/f_37099_ net/minecraft/world/entity/projectile/FishingHook/biting +FD: net/minecraft/world/entity/projectile/FishingHook/f_37100_ net/minecraft/world/entity/projectile/FishingHook/outOfWaterTime +FD: net/minecraft/world/entity/projectile/FishingHook/f_37101_ net/minecraft/world/entity/projectile/FishingHook/DATA_HOOKED_ENTITY +FD: net/minecraft/world/entity/projectile/FishingHook/f_37102_ net/minecraft/world/entity/projectile/FishingHook/DATA_BITING +FD: net/minecraft/world/entity/projectile/FishingHook/f_37103_ net/minecraft/world/entity/projectile/FishingHook/life +FD: net/minecraft/world/entity/projectile/FishingHook$1/f_37173_ net/minecraft/world/entity/projectile/FishingHook$1/$SwitchMap$net$minecraft$world$entity$projectile$FishingHook$OpenWaterType +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/$VALUES net/minecraft/world/entity/projectile/FishingHook$FishHookState/$VALUES +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/BOBBING net/minecraft/world/entity/projectile/FishingHook$FishHookState/BOBBING +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/FLYING net/minecraft/world/entity/projectile/FishingHook$FishHookState/FLYING +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/HOOKED_IN_ENTITY net/minecraft/world/entity/projectile/FishingHook$FishHookState/HOOKED_IN_ENTITY +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/$VALUES net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/$VALUES +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ABOVE_WATER net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ABOVE_WATER +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INSIDE_WATER net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INSIDE_WATER +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INVALID net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INVALID +FD: net/minecraft/world/entity/projectile/LargeFireball/f_37197_ net/minecraft/world/entity/projectile/LargeFireball/explosionPower +FD: net/minecraft/world/entity/projectile/Projectile/f_150163_ net/minecraft/world/entity/projectile/Projectile/cachedOwner +FD: net/minecraft/world/entity/projectile/Projectile/f_150164_ net/minecraft/world/entity/projectile/Projectile/hasBeenShot +FD: net/minecraft/world/entity/projectile/Projectile/f_37244_ net/minecraft/world/entity/projectile/Projectile/ownerUUID +FD: net/minecraft/world/entity/projectile/Projectile/f_37246_ net/minecraft/world/entity/projectile/Projectile/leftOwner +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_150183_ net/minecraft/world/entity/projectile/ShulkerBullet/SPEED +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37311_ net/minecraft/world/entity/projectile/ShulkerBullet/targetId +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37312_ net/minecraft/world/entity/projectile/ShulkerBullet/finalTarget +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37313_ net/minecraft/world/entity/projectile/ShulkerBullet/currentMoveDirection +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37314_ net/minecraft/world/entity/projectile/ShulkerBullet/flightSteps +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37315_ net/minecraft/world/entity/projectile/ShulkerBullet/targetDeltaX +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37316_ net/minecraft/world/entity/projectile/ShulkerBullet/targetDeltaY +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37317_ net/minecraft/world/entity/projectile/ShulkerBullet/targetDeltaZ +FD: net/minecraft/world/entity/projectile/SpectralArrow/f_37409_ net/minecraft/world/entity/projectile/SpectralArrow/duration +FD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/f_37429_ net/minecraft/world/entity/projectile/ThrowableItemProjectile/DATA_ITEM_STACK +FD: net/minecraft/world/entity/projectile/ThrownPotion/f_150190_ net/minecraft/world/entity/projectile/ThrownPotion/SPLASH_RANGE +FD: net/minecraft/world/entity/projectile/ThrownPotion/f_150191_ net/minecraft/world/entity/projectile/ThrownPotion/SPLASH_RANGE_SQ +FD: net/minecraft/world/entity/projectile/ThrownPotion/f_252520_ net/minecraft/world/entity/projectile/ThrownPotion/WATER_SENSITIVE_OR_ON_FIRE +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37554_ net/minecraft/world/entity/projectile/ThrownTrident/ID_FOIL +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37555_ net/minecraft/world/entity/projectile/ThrownTrident/tridentItem +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37556_ net/minecraft/world/entity/projectile/ThrownTrident/dealtDamage +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37557_ net/minecraft/world/entity/projectile/ThrownTrident/clientSideReturnTridentTickCount +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37558_ net/minecraft/world/entity/projectile/ThrownTrident/ID_LOYALTY +FD: net/minecraft/world/entity/projectile/WitherSkull/f_37595_ net/minecraft/world/entity/projectile/WitherSkull/DATA_DANGEROUS +FD: net/minecraft/world/entity/raid/Raid/f_150197_ net/minecraft/world/entity/raid/Raid/VILLAGE_RADIUS_BUFFER +FD: net/minecraft/world/entity/raid/Raid/f_150198_ net/minecraft/world/entity/raid/Raid/MAX_NO_ACTION_TIME +FD: net/minecraft/world/entity/raid/Raid/f_150199_ net/minecraft/world/entity/raid/Raid/MAX_CELEBRATION_TICKS +FD: net/minecraft/world/entity/raid/Raid/f_150200_ net/minecraft/world/entity/raid/Raid/TICKS_PER_DAY +FD: net/minecraft/world/entity/raid/Raid/f_150201_ net/minecraft/world/entity/raid/Raid/DEFAULT_MAX_BAD_OMEN_LEVEL +FD: net/minecraft/world/entity/raid/Raid/f_150202_ net/minecraft/world/entity/raid/Raid/VALID_RAID_RADIUS_SQR +FD: net/minecraft/world/entity/raid/Raid/f_150203_ net/minecraft/world/entity/raid/Raid/RAID_REMOVAL_THRESHOLD_SQR +FD: net/minecraft/world/entity/raid/Raid/f_150204_ net/minecraft/world/entity/raid/Raid/SECTION_RADIUS_FOR_FINDING_NEW_VILLAGE_CENTER +FD: net/minecraft/world/entity/raid/Raid/f_150205_ net/minecraft/world/entity/raid/Raid/ATTEMPT_RAID_FARTHEST +FD: net/minecraft/world/entity/raid/Raid/f_150206_ net/minecraft/world/entity/raid/Raid/ATTEMPT_RAID_CLOSE +FD: net/minecraft/world/entity/raid/Raid/f_150207_ net/minecraft/world/entity/raid/Raid/ATTEMPT_RAID_INSIDE +FD: net/minecraft/world/entity/raid/Raid/f_150208_ net/minecraft/world/entity/raid/Raid/VILLAGE_SEARCH_RADIUS +FD: net/minecraft/world/entity/raid/Raid/f_150209_ net/minecraft/world/entity/raid/Raid/RAID_TIMEOUT_TICKS +FD: net/minecraft/world/entity/raid/Raid/f_150210_ net/minecraft/world/entity/raid/Raid/NUM_SPAWN_ATTEMPTS +FD: net/minecraft/world/entity/raid/Raid/f_150211_ net/minecraft/world/entity/raid/Raid/OMINOUS_BANNER_PATTERN_NAME +FD: net/minecraft/world/entity/raid/Raid/f_150212_ net/minecraft/world/entity/raid/Raid/RAIDERS_REMAINING +FD: net/minecraft/world/entity/raid/Raid/f_150213_ net/minecraft/world/entity/raid/Raid/POST_RAID_TICK_LIMIT +FD: net/minecraft/world/entity/raid/Raid/f_150214_ net/minecraft/world/entity/raid/Raid/DEFAULT_PRE_RAID_TICKS +FD: net/minecraft/world/entity/raid/Raid/f_150215_ net/minecraft/world/entity/raid/Raid/OUTSIDE_RAID_BOUNDS_TIMEOUT +FD: net/minecraft/world/entity/raid/Raid/f_150216_ net/minecraft/world/entity/raid/Raid/LOW_MOB_THRESHOLD +FD: net/minecraft/world/entity/raid/Raid/f_150217_ net/minecraft/world/entity/raid/Raid/HERO_OF_THE_VILLAGE_DURATION +FD: net/minecraft/world/entity/raid/Raid/f_37665_ net/minecraft/world/entity/raid/Raid/RAID_NAME_COMPONENT +FD: net/minecraft/world/entity/raid/Raid/f_37666_ net/minecraft/world/entity/raid/Raid/VICTORY +FD: net/minecraft/world/entity/raid/Raid/f_37667_ net/minecraft/world/entity/raid/Raid/DEFEAT +FD: net/minecraft/world/entity/raid/Raid/f_37668_ net/minecraft/world/entity/raid/Raid/RAID_BAR_VICTORY_COMPONENT +FD: net/minecraft/world/entity/raid/Raid/f_37669_ net/minecraft/world/entity/raid/Raid/RAID_BAR_DEFEAT_COMPONENT +FD: net/minecraft/world/entity/raid/Raid/f_37670_ net/minecraft/world/entity/raid/Raid/groupToLeaderMap +FD: net/minecraft/world/entity/raid/Raid/f_37671_ net/minecraft/world/entity/raid/Raid/groupRaiderMap +FD: net/minecraft/world/entity/raid/Raid/f_37672_ net/minecraft/world/entity/raid/Raid/heroesOfTheVillage +FD: net/minecraft/world/entity/raid/Raid/f_37673_ net/minecraft/world/entity/raid/Raid/ticksActive +FD: net/minecraft/world/entity/raid/Raid/f_37674_ net/minecraft/world/entity/raid/Raid/center +FD: net/minecraft/world/entity/raid/Raid/f_37675_ net/minecraft/world/entity/raid/Raid/level +FD: net/minecraft/world/entity/raid/Raid/f_37676_ net/minecraft/world/entity/raid/Raid/started +FD: net/minecraft/world/entity/raid/Raid/f_37677_ net/minecraft/world/entity/raid/Raid/id +FD: net/minecraft/world/entity/raid/Raid/f_37678_ net/minecraft/world/entity/raid/Raid/totalHealth +FD: net/minecraft/world/entity/raid/Raid/f_37679_ net/minecraft/world/entity/raid/Raid/badOmenLevel +FD: net/minecraft/world/entity/raid/Raid/f_37680_ net/minecraft/world/entity/raid/Raid/active +FD: net/minecraft/world/entity/raid/Raid/f_37681_ net/minecraft/world/entity/raid/Raid/groupsSpawned +FD: net/minecraft/world/entity/raid/Raid/f_37682_ net/minecraft/world/entity/raid/Raid/raidEvent +FD: net/minecraft/world/entity/raid/Raid/f_37683_ net/minecraft/world/entity/raid/Raid/postRaidTicks +FD: net/minecraft/world/entity/raid/Raid/f_37684_ net/minecraft/world/entity/raid/Raid/raidCooldownTicks +FD: net/minecraft/world/entity/raid/Raid/f_37685_ net/minecraft/world/entity/raid/Raid/random +FD: net/minecraft/world/entity/raid/Raid/f_37686_ net/minecraft/world/entity/raid/Raid/numGroups +FD: net/minecraft/world/entity/raid/Raid/f_37687_ net/minecraft/world/entity/raid/Raid/status +FD: net/minecraft/world/entity/raid/Raid/f_37688_ net/minecraft/world/entity/raid/Raid/celebrationTicks +FD: net/minecraft/world/entity/raid/Raid/f_37689_ net/minecraft/world/entity/raid/Raid/waveSpawnPos +FD: net/minecraft/world/entity/raid/Raid$1/f_37787_ net/minecraft/world/entity/raid/Raid$1/$SwitchMap$net$minecraft$world$entity$raid$Raid$RaiderType +FD: net/minecraft/world/entity/raid/Raid$1/f_37788_ net/minecraft/world/entity/raid/Raid$1/$SwitchMap$net$minecraft$world$Difficulty +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/$VALUES net/minecraft/world/entity/raid/Raid$RaidStatus/$VALUES +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/LOSS net/minecraft/world/entity/raid/Raid$RaidStatus/LOSS +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/ONGOING net/minecraft/world/entity/raid/Raid$RaidStatus/ONGOING +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/STOPPED net/minecraft/world/entity/raid/Raid$RaidStatus/STOPPED +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/VICTORY net/minecraft/world/entity/raid/Raid$RaidStatus/VICTORY +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/f_37794_ net/minecraft/world/entity/raid/Raid$RaidStatus/VALUES +FD: net/minecraft/world/entity/raid/Raid$RaiderType/$VALUES net/minecraft/world/entity/raid/Raid$RaiderType/$VALUES +FD: net/minecraft/world/entity/raid/Raid$RaiderType/EVOKER net/minecraft/world/entity/raid/Raid$RaiderType/EVOKER +FD: net/minecraft/world/entity/raid/Raid$RaiderType/PILLAGER net/minecraft/world/entity/raid/Raid$RaiderType/PILLAGER +FD: net/minecraft/world/entity/raid/Raid$RaiderType/RAVAGER net/minecraft/world/entity/raid/Raid$RaiderType/RAVAGER +FD: net/minecraft/world/entity/raid/Raid$RaiderType/VINDICATOR net/minecraft/world/entity/raid/Raid$RaiderType/VINDICATOR +FD: net/minecraft/world/entity/raid/Raid$RaiderType/WITCH net/minecraft/world/entity/raid/Raid$RaiderType/WITCH +FD: net/minecraft/world/entity/raid/Raid$RaiderType/f_37813_ net/minecraft/world/entity/raid/Raid$RaiderType/VALUES +FD: net/minecraft/world/entity/raid/Raid$RaiderType/f_37814_ net/minecraft/world/entity/raid/Raid$RaiderType/entityType +FD: net/minecraft/world/entity/raid/Raid$RaiderType/f_37815_ net/minecraft/world/entity/raid/Raid$RaiderType/spawnsPerWaveBeforeBonus +FD: net/minecraft/world/entity/raid/Raider/f_37831_ net/minecraft/world/entity/raid/Raider/ALLOWED_ITEMS +FD: net/minecraft/world/entity/raid/Raider/f_37832_ net/minecraft/world/entity/raid/Raider/wave +FD: net/minecraft/world/entity/raid/Raider/f_37833_ net/minecraft/world/entity/raid/Raider/canJoinRaid +FD: net/minecraft/world/entity/raid/Raider/f_37834_ net/minecraft/world/entity/raid/Raider/ticksOutsideRaid +FD: net/minecraft/world/entity/raid/Raider/f_37835_ net/minecraft/world/entity/raid/Raider/IS_CELEBRATING +FD: net/minecraft/world/entity/raid/Raider/f_37836_ net/minecraft/world/entity/raid/Raider/raid +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37901_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/shoutTargeting +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37902_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/this$0 +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37903_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/mob +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37904_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/hostileRadiusSqr +FD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/f_37913_ net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/this$0 +FD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/f_37914_ net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/mob +FD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/f_37920_ net/minecraft/world/entity/raid/Raider$RaiderCelebration/this$0 +FD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/f_37921_ net/minecraft/world/entity/raid/Raider$RaiderCelebration/mob +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37929_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/raider +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37930_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/speedModifier +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37931_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/poiPos +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37932_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/visited +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37933_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/distanceToPoi +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37934_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/stuck +FD: net/minecraft/world/entity/raid/Raids/f_150234_ net/minecraft/world/entity/raid/Raids/RAID_FILE_ID +FD: net/minecraft/world/entity/raid/Raids/f_37951_ net/minecraft/world/entity/raid/Raids/raidMap +FD: net/minecraft/world/entity/raid/Raids/f_37952_ net/minecraft/world/entity/raid/Raids/level +FD: net/minecraft/world/entity/raid/Raids/f_37953_ net/minecraft/world/entity/raid/Raids/nextAvailableID +FD: net/minecraft/world/entity/raid/Raids/f_37954_ net/minecraft/world/entity/raid/Raids/tick +FD: net/minecraft/world/entity/schedule/Activity/f_150238_ net/minecraft/world/entity/schedule/Activity/PLAY_DEAD +FD: net/minecraft/world/entity/schedule/Activity/f_150239_ net/minecraft/world/entity/schedule/Activity/LONG_JUMP +FD: net/minecraft/world/entity/schedule/Activity/f_150240_ net/minecraft/world/entity/schedule/Activity/RAM +FD: net/minecraft/world/entity/schedule/Activity/f_219846_ net/minecraft/world/entity/schedule/Activity/TONGUE +FD: net/minecraft/world/entity/schedule/Activity/f_219847_ net/minecraft/world/entity/schedule/Activity/SWIM +FD: net/minecraft/world/entity/schedule/Activity/f_219848_ net/minecraft/world/entity/schedule/Activity/LAY_SPAWN +FD: net/minecraft/world/entity/schedule/Activity/f_219849_ net/minecraft/world/entity/schedule/Activity/SNIFF +FD: net/minecraft/world/entity/schedule/Activity/f_219850_ net/minecraft/world/entity/schedule/Activity/INVESTIGATE +FD: net/minecraft/world/entity/schedule/Activity/f_219851_ net/minecraft/world/entity/schedule/Activity/ROAR +FD: net/minecraft/world/entity/schedule/Activity/f_219852_ net/minecraft/world/entity/schedule/Activity/EMERGE +FD: net/minecraft/world/entity/schedule/Activity/f_219853_ net/minecraft/world/entity/schedule/Activity/DIG +FD: net/minecraft/world/entity/schedule/Activity/f_37978_ net/minecraft/world/entity/schedule/Activity/CORE +FD: net/minecraft/world/entity/schedule/Activity/f_37979_ net/minecraft/world/entity/schedule/Activity/IDLE +FD: net/minecraft/world/entity/schedule/Activity/f_37980_ net/minecraft/world/entity/schedule/Activity/WORK +FD: net/minecraft/world/entity/schedule/Activity/f_37981_ net/minecraft/world/entity/schedule/Activity/PLAY +FD: net/minecraft/world/entity/schedule/Activity/f_37982_ net/minecraft/world/entity/schedule/Activity/REST +FD: net/minecraft/world/entity/schedule/Activity/f_37983_ net/minecraft/world/entity/schedule/Activity/MEET +FD: net/minecraft/world/entity/schedule/Activity/f_37984_ net/minecraft/world/entity/schedule/Activity/PANIC +FD: net/minecraft/world/entity/schedule/Activity/f_37985_ net/minecraft/world/entity/schedule/Activity/RAID +FD: net/minecraft/world/entity/schedule/Activity/f_37986_ net/minecraft/world/entity/schedule/Activity/PRE_RAID +FD: net/minecraft/world/entity/schedule/Activity/f_37987_ net/minecraft/world/entity/schedule/Activity/HIDE +FD: net/minecraft/world/entity/schedule/Activity/f_37988_ net/minecraft/world/entity/schedule/Activity/FIGHT +FD: net/minecraft/world/entity/schedule/Activity/f_37989_ net/minecraft/world/entity/schedule/Activity/CELEBRATE +FD: net/minecraft/world/entity/schedule/Activity/f_37990_ net/minecraft/world/entity/schedule/Activity/ADMIRE_ITEM +FD: net/minecraft/world/entity/schedule/Activity/f_37991_ net/minecraft/world/entity/schedule/Activity/AVOID +FD: net/minecraft/world/entity/schedule/Activity/f_37992_ net/minecraft/world/entity/schedule/Activity/RIDE +FD: net/minecraft/world/entity/schedule/Activity/f_37993_ net/minecraft/world/entity/schedule/Activity/name +FD: net/minecraft/world/entity/schedule/Activity/f_37994_ net/minecraft/world/entity/schedule/Activity/hashCode +FD: net/minecraft/world/entity/schedule/Keyframe/f_38005_ net/minecraft/world/entity/schedule/Keyframe/timeStamp +FD: net/minecraft/world/entity/schedule/Keyframe/f_38006_ net/minecraft/world/entity/schedule/Keyframe/value +FD: net/minecraft/world/entity/schedule/Schedule/f_150241_ net/minecraft/world/entity/schedule/Schedule/WORK_START_TIME +FD: net/minecraft/world/entity/schedule/Schedule/f_150242_ net/minecraft/world/entity/schedule/Schedule/TOTAL_WORK_TIME +FD: net/minecraft/world/entity/schedule/Schedule/f_38012_ net/minecraft/world/entity/schedule/Schedule/EMPTY +FD: net/minecraft/world/entity/schedule/Schedule/f_38013_ net/minecraft/world/entity/schedule/Schedule/SIMPLE +FD: net/minecraft/world/entity/schedule/Schedule/f_38014_ net/minecraft/world/entity/schedule/Schedule/VILLAGER_BABY +FD: net/minecraft/world/entity/schedule/Schedule/f_38015_ net/minecraft/world/entity/schedule/Schedule/VILLAGER_DEFAULT +FD: net/minecraft/world/entity/schedule/Schedule/f_38016_ net/minecraft/world/entity/schedule/Schedule/timelines +FD: net/minecraft/world/entity/schedule/ScheduleBuilder/f_38035_ net/minecraft/world/entity/schedule/ScheduleBuilder/schedule +FD: net/minecraft/world/entity/schedule/ScheduleBuilder/f_38036_ net/minecraft/world/entity/schedule/ScheduleBuilder/transitions +FD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/f_38048_ net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/time +FD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/f_38049_ net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/activity +FD: net/minecraft/world/entity/schedule/Timeline/f_38055_ net/minecraft/world/entity/schedule/Timeline/keyframes +FD: net/minecraft/world/entity/schedule/Timeline/f_38056_ net/minecraft/world/entity/schedule/Timeline/previousIndex +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_150249_ net/minecraft/world/entity/vehicle/AbstractMinecart/WATER_SLOWDOWN_FACTOR +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_287786_ net/minecraft/world/entity/vehicle/AbstractMinecart/onRails +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38067_ net/minecraft/world/entity/vehicle/AbstractMinecart/POSE_DISMOUNT_HEIGHTS +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38068_ net/minecraft/world/entity/vehicle/AbstractMinecart/flipped +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38069_ net/minecraft/world/entity/vehicle/AbstractMinecart/EXITS +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38070_ net/minecraft/world/entity/vehicle/AbstractMinecart/lSteps +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38071_ net/minecraft/world/entity/vehicle/AbstractMinecart/lx +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38072_ net/minecraft/world/entity/vehicle/AbstractMinecart/ly +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38073_ net/minecraft/world/entity/vehicle/AbstractMinecart/lz +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38074_ net/minecraft/world/entity/vehicle/AbstractMinecart/lyr +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38075_ net/minecraft/world/entity/vehicle/AbstractMinecart/lxr +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38076_ net/minecraft/world/entity/vehicle/AbstractMinecart/lxd +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38077_ net/minecraft/world/entity/vehicle/AbstractMinecart/lyd +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38078_ net/minecraft/world/entity/vehicle/AbstractMinecart/lzd +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38079_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_HURT +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38080_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_HURTDIR +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38081_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_DAMAGE +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38082_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_DISPLAY_BLOCK +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38083_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_DISPLAY_OFFSET +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38084_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_CUSTOM_DISPLAY +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$1/f_150252_ net/minecraft/world/entity/vehicle/AbstractMinecart$1/$SwitchMap$net$minecraft$world$entity$vehicle$AbstractMinecart$Type +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$1/f_38185_ net/minecraft/world/entity/vehicle/AbstractMinecart$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/$VALUES net/minecraft/world/entity/vehicle/AbstractMinecart$Type/$VALUES +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/CHEST net/minecraft/world/entity/vehicle/AbstractMinecart$Type/CHEST +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/COMMAND_BLOCK net/minecraft/world/entity/vehicle/AbstractMinecart$Type/COMMAND_BLOCK +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/FURNACE net/minecraft/world/entity/vehicle/AbstractMinecart$Type/FURNACE +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/HOPPER net/minecraft/world/entity/vehicle/AbstractMinecart$Type/HOPPER +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/RIDEABLE net/minecraft/world/entity/vehicle/AbstractMinecart$Type/RIDEABLE +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/SPAWNER net/minecraft/world/entity/vehicle/AbstractMinecart$Type/SPAWNER +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/TNT net/minecraft/world/entity/vehicle/AbstractMinecart$Type/TNT +FD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/f_38202_ net/minecraft/world/entity/vehicle/AbstractMinecartContainer/itemStacks +FD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/f_38204_ net/minecraft/world/entity/vehicle/AbstractMinecartContainer/lootTable +FD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/f_38205_ net/minecraft/world/entity/vehicle/AbstractMinecartContainer/lootTableSeed +FD: net/minecraft/world/entity/vehicle/Boat/f_150266_ net/minecraft/world/entity/vehicle/Boat/TIME_TO_EJECT +FD: net/minecraft/world/entity/vehicle/Boat/f_150267_ net/minecraft/world/entity/vehicle/Boat/PADDLE_SPEED +FD: net/minecraft/world/entity/vehicle/Boat/f_150268_ net/minecraft/world/entity/vehicle/Boat/PADDLE_LEFT +FD: net/minecraft/world/entity/vehicle/Boat/f_150269_ net/minecraft/world/entity/vehicle/Boat/PADDLE_RIGHT +FD: net/minecraft/world/entity/vehicle/Boat/f_150270_ net/minecraft/world/entity/vehicle/Boat/PADDLE_SOUND_TIME +FD: net/minecraft/world/entity/vehicle/Boat/f_150271_ net/minecraft/world/entity/vehicle/Boat/BUBBLE_TIME +FD: net/minecraft/world/entity/vehicle/Boat/f_38257_ net/minecraft/world/entity/vehicle/Boat/isAboveBubbleColumn +FD: net/minecraft/world/entity/vehicle/Boat/f_38258_ net/minecraft/world/entity/vehicle/Boat/bubbleColumnDirectionIsDown +FD: net/minecraft/world/entity/vehicle/Boat/f_38259_ net/minecraft/world/entity/vehicle/Boat/bubbleMultiplier +FD: net/minecraft/world/entity/vehicle/Boat/f_38260_ net/minecraft/world/entity/vehicle/Boat/bubbleAngle +FD: net/minecraft/world/entity/vehicle/Boat/f_38261_ net/minecraft/world/entity/vehicle/Boat/bubbleAngleO +FD: net/minecraft/world/entity/vehicle/Boat/f_38262_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_BUBBLE_TIME +FD: net/minecraft/world/entity/vehicle/Boat/f_38263_ net/minecraft/world/entity/vehicle/Boat/paddlePositions +FD: net/minecraft/world/entity/vehicle/Boat/f_38264_ net/minecraft/world/entity/vehicle/Boat/invFriction +FD: net/minecraft/world/entity/vehicle/Boat/f_38265_ net/minecraft/world/entity/vehicle/Boat/outOfControlTicks +FD: net/minecraft/world/entity/vehicle/Boat/f_38266_ net/minecraft/world/entity/vehicle/Boat/deltaRotation +FD: net/minecraft/world/entity/vehicle/Boat/f_38267_ net/minecraft/world/entity/vehicle/Boat/lerpSteps +FD: net/minecraft/world/entity/vehicle/Boat/f_38268_ net/minecraft/world/entity/vehicle/Boat/lerpX +FD: net/minecraft/world/entity/vehicle/Boat/f_38269_ net/minecraft/world/entity/vehicle/Boat/lerpY +FD: net/minecraft/world/entity/vehicle/Boat/f_38270_ net/minecraft/world/entity/vehicle/Boat/lerpZ +FD: net/minecraft/world/entity/vehicle/Boat/f_38271_ net/minecraft/world/entity/vehicle/Boat/lerpYRot +FD: net/minecraft/world/entity/vehicle/Boat/f_38272_ net/minecraft/world/entity/vehicle/Boat/lerpXRot +FD: net/minecraft/world/entity/vehicle/Boat/f_38273_ net/minecraft/world/entity/vehicle/Boat/inputLeft +FD: net/minecraft/world/entity/vehicle/Boat/f_38274_ net/minecraft/world/entity/vehicle/Boat/inputRight +FD: net/minecraft/world/entity/vehicle/Boat/f_38275_ net/minecraft/world/entity/vehicle/Boat/inputUp +FD: net/minecraft/world/entity/vehicle/Boat/f_38276_ net/minecraft/world/entity/vehicle/Boat/inputDown +FD: net/minecraft/world/entity/vehicle/Boat/f_38277_ net/minecraft/world/entity/vehicle/Boat/waterLevel +FD: net/minecraft/world/entity/vehicle/Boat/f_38278_ net/minecraft/world/entity/vehicle/Boat/landFriction +FD: net/minecraft/world/entity/vehicle/Boat/f_38279_ net/minecraft/world/entity/vehicle/Boat/status +FD: net/minecraft/world/entity/vehicle/Boat/f_38280_ net/minecraft/world/entity/vehicle/Boat/oldStatus +FD: net/minecraft/world/entity/vehicle/Boat/f_38281_ net/minecraft/world/entity/vehicle/Boat/lastYd +FD: net/minecraft/world/entity/vehicle/Boat/f_38282_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_HURT +FD: net/minecraft/world/entity/vehicle/Boat/f_38283_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_HURTDIR +FD: net/minecraft/world/entity/vehicle/Boat/f_38284_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_DAMAGE +FD: net/minecraft/world/entity/vehicle/Boat/f_38285_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_TYPE +FD: net/minecraft/world/entity/vehicle/Boat/f_38286_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_PADDLE_LEFT +FD: net/minecraft/world/entity/vehicle/Boat/f_38287_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_PADDLE_RIGHT +FD: net/minecraft/world/entity/vehicle/Boat$1/f_38398_ net/minecraft/world/entity/vehicle/Boat$1/$SwitchMap$net$minecraft$world$entity$vehicle$Boat$Type +FD: net/minecraft/world/entity/vehicle/Boat$1/f_38399_ net/minecraft/world/entity/vehicle/Boat$1/$SwitchMap$net$minecraft$world$entity$vehicle$Boat$Status +FD: net/minecraft/world/entity/vehicle/Boat$Status/$VALUES net/minecraft/world/entity/vehicle/Boat$Status/$VALUES +FD: net/minecraft/world/entity/vehicle/Boat$Status/IN_AIR net/minecraft/world/entity/vehicle/Boat$Status/IN_AIR +FD: net/minecraft/world/entity/vehicle/Boat$Status/IN_WATER net/minecraft/world/entity/vehicle/Boat$Status/IN_WATER +FD: net/minecraft/world/entity/vehicle/Boat$Status/ON_LAND net/minecraft/world/entity/vehicle/Boat$Status/ON_LAND +FD: net/minecraft/world/entity/vehicle/Boat$Status/UNDER_FLOWING_WATER net/minecraft/world/entity/vehicle/Boat$Status/UNDER_FLOWING_WATER +FD: net/minecraft/world/entity/vehicle/Boat$Status/UNDER_WATER net/minecraft/world/entity/vehicle/Boat$Status/UNDER_WATER +FD: net/minecraft/world/entity/vehicle/Boat$Type/$VALUES net/minecraft/world/entity/vehicle/Boat$Type/$VALUES +FD: net/minecraft/world/entity/vehicle/Boat$Type/ACACIA net/minecraft/world/entity/vehicle/Boat$Type/ACACIA +FD: net/minecraft/world/entity/vehicle/Boat$Type/BAMBOO net/minecraft/world/entity/vehicle/Boat$Type/BAMBOO +FD: net/minecraft/world/entity/vehicle/Boat$Type/BIRCH net/minecraft/world/entity/vehicle/Boat$Type/BIRCH +FD: net/minecraft/world/entity/vehicle/Boat$Type/CHERRY net/minecraft/world/entity/vehicle/Boat$Type/CHERRY +FD: net/minecraft/world/entity/vehicle/Boat$Type/DARK_OAK net/minecraft/world/entity/vehicle/Boat$Type/DARK_OAK +FD: net/minecraft/world/entity/vehicle/Boat$Type/JUNGLE net/minecraft/world/entity/vehicle/Boat$Type/JUNGLE +FD: net/minecraft/world/entity/vehicle/Boat$Type/MANGROVE net/minecraft/world/entity/vehicle/Boat$Type/MANGROVE +FD: net/minecraft/world/entity/vehicle/Boat$Type/OAK net/minecraft/world/entity/vehicle/Boat$Type/OAK +FD: net/minecraft/world/entity/vehicle/Boat$Type/SPRUCE net/minecraft/world/entity/vehicle/Boat$Type/SPRUCE +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_262275_ net/minecraft/world/entity/vehicle/Boat$Type/CODEC +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_262735_ net/minecraft/world/entity/vehicle/Boat$Type/BY_ID +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_38420_ net/minecraft/world/entity/vehicle/Boat$Type/name +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_38421_ net/minecraft/world/entity/vehicle/Boat$Type/planks +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219864_ net/minecraft/world/entity/vehicle/ChestBoat/itemStacks +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219865_ net/minecraft/world/entity/vehicle/ChestBoat/lootTable +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219866_ net/minecraft/world/entity/vehicle/ChestBoat/lootTableSeed +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219867_ net/minecraft/world/entity/vehicle/ChestBoat/CONTAINER_SIZE +FD: net/minecraft/world/entity/vehicle/ChestBoat$1/f_219923_ net/minecraft/world/entity/vehicle/ChestBoat$1/$SwitchMap$net$minecraft$world$entity$vehicle$Boat$Type +FD: net/minecraft/world/entity/vehicle/ContainerEntity$1/f_219957_ net/minecraft/world/entity/vehicle/ContainerEntity$1/val$slot +FD: net/minecraft/world/entity/vehicle/ContainerEntity$1/f_219958_ net/minecraft/world/entity/vehicle/ContainerEntity$1/this$0 +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_150284_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/ACTIVATION_DELAY +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38503_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/DATA_ID_COMMAND_NAME +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38504_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/DATA_ID_LAST_OUTPUT +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38505_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/commandBlock +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38506_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/lastActivated +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/f_38537_ net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/this$0 +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38545_ net/minecraft/world/entity/vehicle/MinecartFurnace/xPush +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38546_ net/minecraft/world/entity/vehicle/MinecartFurnace/zPush +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38547_ net/minecraft/world/entity/vehicle/MinecartFurnace/DATA_ID_FUEL +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38548_ net/minecraft/world/entity/vehicle/MinecartFurnace/fuel +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38549_ net/minecraft/world/entity/vehicle/MinecartFurnace/INGREDIENT +FD: net/minecraft/world/entity/vehicle/MinecartHopper/f_38580_ net/minecraft/world/entity/vehicle/MinecartHopper/enabled +FD: net/minecraft/world/entity/vehicle/MinecartSpawner/f_150333_ net/minecraft/world/entity/vehicle/MinecartSpawner/ticker +FD: net/minecraft/world/entity/vehicle/MinecartSpawner/f_38621_ net/minecraft/world/entity/vehicle/MinecartSpawner/spawner +FD: net/minecraft/world/entity/vehicle/MinecartSpawner$1/f_38640_ net/minecraft/world/entity/vehicle/MinecartSpawner$1/this$0 +FD: net/minecraft/world/entity/vehicle/MinecartTNT/f_150345_ net/minecraft/world/entity/vehicle/MinecartTNT/EVENT_PRIME +FD: net/minecraft/world/entity/vehicle/MinecartTNT/f_38647_ net/minecraft/world/entity/vehicle/MinecartTNT/fuse +FD: net/minecraft/world/flag/FeatureElement/f_244051_ net/minecraft/world/flag/FeatureElement/FILTERED_REGISTRIES +FD: net/minecraft/world/flag/FeatureFlag/f_243952_ net/minecraft/world/flag/FeatureFlag/universe +FD: net/minecraft/world/flag/FeatureFlag/f_244012_ net/minecraft/world/flag/FeatureFlag/mask +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_243770_ net/minecraft/world/flag/FeatureFlagRegistry/allFlags +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_244444_ net/minecraft/world/flag/FeatureFlagRegistry/universe +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_244528_ net/minecraft/world/flag/FeatureFlagRegistry/LOGGER +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_244560_ net/minecraft/world/flag/FeatureFlagRegistry/names +FD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/f_243698_ net/minecraft/world/flag/FeatureFlagRegistry$Builder/universe +FD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/f_244349_ net/minecraft/world/flag/FeatureFlagRegistry$Builder/flags +FD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/f_244365_ net/minecraft/world/flag/FeatureFlagRegistry$Builder/id +FD: net/minecraft/world/flag/FeatureFlagSet/f_243922_ net/minecraft/world/flag/FeatureFlagSet/mask +FD: net/minecraft/world/flag/FeatureFlagSet/f_243923_ net/minecraft/world/flag/FeatureFlagSet/universe +FD: net/minecraft/world/flag/FeatureFlagSet/f_244513_ net/minecraft/world/flag/FeatureFlagSet/EMPTY +FD: net/minecraft/world/flag/FeatureFlagSet/f_244635_ net/minecraft/world/flag/FeatureFlagSet/MAX_CONTAINER_SIZE +FD: net/minecraft/world/flag/FeatureFlagUniverse/f_243740_ net/minecraft/world/flag/FeatureFlagUniverse/id +FD: net/minecraft/world/flag/FeatureFlags/f_244112_ net/minecraft/world/flag/FeatureFlags/BUNDLE +FD: net/minecraft/world/flag/FeatureFlags/f_244280_ net/minecraft/world/flag/FeatureFlags/REGISTRY +FD: net/minecraft/world/flag/FeatureFlags/f_244298_ net/minecraft/world/flag/FeatureFlags/CODEC +FD: net/minecraft/world/flag/FeatureFlags/f_244332_ net/minecraft/world/flag/FeatureFlags/DEFAULT_FLAGS +FD: net/minecraft/world/flag/FeatureFlags/f_244377_ net/minecraft/world/flag/FeatureFlags/VANILLA_SET +FD: net/minecraft/world/flag/FeatureFlags/f_244571_ net/minecraft/world/flag/FeatureFlags/VANILLA +FD: net/minecraft/world/food/FoodConstants/f_150350_ net/minecraft/world/food/FoodConstants/MAX_FOOD +FD: net/minecraft/world/food/FoodConstants/f_150351_ net/minecraft/world/food/FoodConstants/MAX_SATURATION +FD: net/minecraft/world/food/FoodConstants/f_150352_ net/minecraft/world/food/FoodConstants/START_SATURATION +FD: net/minecraft/world/food/FoodConstants/f_150353_ net/minecraft/world/food/FoodConstants/SATURATION_FLOOR +FD: net/minecraft/world/food/FoodConstants/f_150354_ net/minecraft/world/food/FoodConstants/EXHAUSTION_DROP +FD: net/minecraft/world/food/FoodConstants/f_150355_ net/minecraft/world/food/FoodConstants/HEALTH_TICK_COUNT +FD: net/minecraft/world/food/FoodConstants/f_150356_ net/minecraft/world/food/FoodConstants/HEALTH_TICK_COUNT_SATURATED +FD: net/minecraft/world/food/FoodConstants/f_150357_ net/minecraft/world/food/FoodConstants/HEAL_LEVEL +FD: net/minecraft/world/food/FoodConstants/f_150358_ net/minecraft/world/food/FoodConstants/SPRINT_LEVEL +FD: net/minecraft/world/food/FoodConstants/f_150359_ net/minecraft/world/food/FoodConstants/STARVE_LEVEL +FD: net/minecraft/world/food/FoodConstants/f_150360_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_POOR +FD: net/minecraft/world/food/FoodConstants/f_150361_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_LOW +FD: net/minecraft/world/food/FoodConstants/f_150362_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_NORMAL +FD: net/minecraft/world/food/FoodConstants/f_150363_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_GOOD +FD: net/minecraft/world/food/FoodConstants/f_150364_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_MAX +FD: net/minecraft/world/food/FoodConstants/f_150365_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_SUPERNATURAL +FD: net/minecraft/world/food/FoodConstants/f_150366_ net/minecraft/world/food/FoodConstants/EXHAUSTION_HEAL +FD: net/minecraft/world/food/FoodConstants/f_150367_ net/minecraft/world/food/FoodConstants/EXHAUSTION_JUMP +FD: net/minecraft/world/food/FoodConstants/f_150368_ net/minecraft/world/food/FoodConstants/EXHAUSTION_SPRINT_JUMP +FD: net/minecraft/world/food/FoodConstants/f_150369_ net/minecraft/world/food/FoodConstants/EXHAUSTION_MINE +FD: net/minecraft/world/food/FoodConstants/f_150370_ net/minecraft/world/food/FoodConstants/EXHAUSTION_ATTACK +FD: net/minecraft/world/food/FoodConstants/f_150372_ net/minecraft/world/food/FoodConstants/EXHAUSTION_WALK +FD: net/minecraft/world/food/FoodConstants/f_150373_ net/minecraft/world/food/FoodConstants/EXHAUSTION_CROUCH +FD: net/minecraft/world/food/FoodConstants/f_150374_ net/minecraft/world/food/FoodConstants/EXHAUSTION_SPRINT +FD: net/minecraft/world/food/FoodConstants/f_150375_ net/minecraft/world/food/FoodConstants/EXHAUSTION_SWIM +FD: net/minecraft/world/food/FoodData/f_38696_ net/minecraft/world/food/FoodData/foodLevel +FD: net/minecraft/world/food/FoodData/f_38697_ net/minecraft/world/food/FoodData/saturationLevel +FD: net/minecraft/world/food/FoodData/f_38698_ net/minecraft/world/food/FoodData/exhaustionLevel +FD: net/minecraft/world/food/FoodData/f_38699_ net/minecraft/world/food/FoodData/tickTimer +FD: net/minecraft/world/food/FoodData/f_38700_ net/minecraft/world/food/FoodData/lastFoodLevel +FD: net/minecraft/world/food/FoodProperties/f_38723_ net/minecraft/world/food/FoodProperties/nutrition +FD: net/minecraft/world/food/FoodProperties/f_38724_ net/minecraft/world/food/FoodProperties/saturationModifier +FD: net/minecraft/world/food/FoodProperties/f_38725_ net/minecraft/world/food/FoodProperties/isMeat +FD: net/minecraft/world/food/FoodProperties/f_38726_ net/minecraft/world/food/FoodProperties/canAlwaysEat +FD: net/minecraft/world/food/FoodProperties/f_38727_ net/minecraft/world/food/FoodProperties/fastFood +FD: net/minecraft/world/food/FoodProperties/f_38728_ net/minecraft/world/food/FoodProperties/effects +FD: net/minecraft/world/food/FoodProperties$Builder/f_38750_ net/minecraft/world/food/FoodProperties$Builder/nutrition +FD: net/minecraft/world/food/FoodProperties$Builder/f_38751_ net/minecraft/world/food/FoodProperties$Builder/saturationModifier +FD: net/minecraft/world/food/FoodProperties$Builder/f_38752_ net/minecraft/world/food/FoodProperties$Builder/isMeat +FD: net/minecraft/world/food/FoodProperties$Builder/f_38753_ net/minecraft/world/food/FoodProperties$Builder/canAlwaysEat +FD: net/minecraft/world/food/FoodProperties$Builder/f_38754_ net/minecraft/world/food/FoodProperties$Builder/fastFood +FD: net/minecraft/world/food/FoodProperties$Builder/f_38755_ net/minecraft/world/food/FoodProperties$Builder/effects +FD: net/minecraft/world/food/Foods/f_150381_ net/minecraft/world/food/Foods/GLOW_BERRIES +FD: net/minecraft/world/food/Foods/f_38797_ net/minecraft/world/food/Foods/POISONOUS_POTATO +FD: net/minecraft/world/food/Foods/f_38798_ net/minecraft/world/food/Foods/PORKCHOP +FD: net/minecraft/world/food/Foods/f_38799_ net/minecraft/world/food/Foods/POTATO +FD: net/minecraft/world/food/Foods/f_38800_ net/minecraft/world/food/Foods/PUFFERFISH +FD: net/minecraft/world/food/Foods/f_38801_ net/minecraft/world/food/Foods/PUMPKIN_PIE +FD: net/minecraft/world/food/Foods/f_38802_ net/minecraft/world/food/Foods/RABBIT +FD: net/minecraft/world/food/Foods/f_38803_ net/minecraft/world/food/Foods/RABBIT_STEW +FD: net/minecraft/world/food/Foods/f_38804_ net/minecraft/world/food/Foods/ROTTEN_FLESH +FD: net/minecraft/world/food/Foods/f_38805_ net/minecraft/world/food/Foods/SALMON +FD: net/minecraft/world/food/Foods/f_38806_ net/minecraft/world/food/Foods/SPIDER_EYE +FD: net/minecraft/world/food/Foods/f_38807_ net/minecraft/world/food/Foods/SUSPICIOUS_STEW +FD: net/minecraft/world/food/Foods/f_38808_ net/minecraft/world/food/Foods/SWEET_BERRIES +FD: net/minecraft/world/food/Foods/f_38809_ net/minecraft/world/food/Foods/TROPICAL_FISH +FD: net/minecraft/world/food/Foods/f_38810_ net/minecraft/world/food/Foods/APPLE +FD: net/minecraft/world/food/Foods/f_38811_ net/minecraft/world/food/Foods/BAKED_POTATO +FD: net/minecraft/world/food/Foods/f_38812_ net/minecraft/world/food/Foods/BEEF +FD: net/minecraft/world/food/Foods/f_38813_ net/minecraft/world/food/Foods/BEETROOT +FD: net/minecraft/world/food/Foods/f_38814_ net/minecraft/world/food/Foods/BEETROOT_SOUP +FD: net/minecraft/world/food/Foods/f_38815_ net/minecraft/world/food/Foods/BREAD +FD: net/minecraft/world/food/Foods/f_38816_ net/minecraft/world/food/Foods/CARROT +FD: net/minecraft/world/food/Foods/f_38817_ net/minecraft/world/food/Foods/CHICKEN +FD: net/minecraft/world/food/Foods/f_38818_ net/minecraft/world/food/Foods/CHORUS_FRUIT +FD: net/minecraft/world/food/Foods/f_38819_ net/minecraft/world/food/Foods/COD +FD: net/minecraft/world/food/Foods/f_38820_ net/minecraft/world/food/Foods/COOKED_BEEF +FD: net/minecraft/world/food/Foods/f_38821_ net/minecraft/world/food/Foods/COOKED_CHICKEN +FD: net/minecraft/world/food/Foods/f_38822_ net/minecraft/world/food/Foods/COOKED_COD +FD: net/minecraft/world/food/Foods/f_38823_ net/minecraft/world/food/Foods/COOKED_MUTTON +FD: net/minecraft/world/food/Foods/f_38824_ net/minecraft/world/food/Foods/COOKED_PORKCHOP +FD: net/minecraft/world/food/Foods/f_38825_ net/minecraft/world/food/Foods/COOKED_RABBIT +FD: net/minecraft/world/food/Foods/f_38826_ net/minecraft/world/food/Foods/COOKED_SALMON +FD: net/minecraft/world/food/Foods/f_38827_ net/minecraft/world/food/Foods/COOKIE +FD: net/minecraft/world/food/Foods/f_38828_ net/minecraft/world/food/Foods/DRIED_KELP +FD: net/minecraft/world/food/Foods/f_38829_ net/minecraft/world/food/Foods/ENCHANTED_GOLDEN_APPLE +FD: net/minecraft/world/food/Foods/f_38830_ net/minecraft/world/food/Foods/GOLDEN_APPLE +FD: net/minecraft/world/food/Foods/f_38831_ net/minecraft/world/food/Foods/GOLDEN_CARROT +FD: net/minecraft/world/food/Foods/f_38832_ net/minecraft/world/food/Foods/HONEY_BOTTLE +FD: net/minecraft/world/food/Foods/f_38833_ net/minecraft/world/food/Foods/MELON_SLICE +FD: net/minecraft/world/food/Foods/f_38834_ net/minecraft/world/food/Foods/MUSHROOM_STEW +FD: net/minecraft/world/food/Foods/f_38835_ net/minecraft/world/food/Foods/MUTTON +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150385_ net/minecraft/world/inventory/AbstractContainerMenu/SLOT_CLICKED_OUTSIDE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150386_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_TYPE_CHARITABLE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150387_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_TYPE_GREEDY +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150388_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_TYPE_CLONE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150389_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_HEADER_START +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150390_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_HEADER_CONTINUE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150391_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_HEADER_END +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150392_ net/minecraft/world/inventory/AbstractContainerMenu/CARRIED_SLOT_SIZE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150393_ net/minecraft/world/inventory/AbstractContainerMenu/carried +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150394_ net/minecraft/world/inventory/AbstractContainerMenu/remoteSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150395_ net/minecraft/world/inventory/AbstractContainerMenu/remoteDataSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150396_ net/minecraft/world/inventory/AbstractContainerMenu/remoteCarried +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150397_ net/minecraft/world/inventory/AbstractContainerMenu/synchronizer +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150398_ net/minecraft/world/inventory/AbstractContainerMenu/suppressRemoteUpdates +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_182405_ net/minecraft/world/inventory/AbstractContainerMenu/stateId +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_207773_ net/minecraft/world/inventory/AbstractContainerMenu/LOGGER +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38839_ net/minecraft/world/inventory/AbstractContainerMenu/slots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38840_ net/minecraft/world/inventory/AbstractContainerMenu/containerId +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38841_ net/minecraft/world/inventory/AbstractContainerMenu/lastSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38842_ net/minecraft/world/inventory/AbstractContainerMenu/dataSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38843_ net/minecraft/world/inventory/AbstractContainerMenu/menuType +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38845_ net/minecraft/world/inventory/AbstractContainerMenu/quickcraftType +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38846_ net/minecraft/world/inventory/AbstractContainerMenu/quickcraftStatus +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38847_ net/minecraft/world/inventory/AbstractContainerMenu/quickcraftSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38848_ net/minecraft/world/inventory/AbstractContainerMenu/containerListeners +FD: net/minecraft/world/inventory/AbstractContainerMenu$1/f_150447_ net/minecraft/world/inventory/AbstractContainerMenu$1/this$0 +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150453_ net/minecraft/world/inventory/AbstractFurnaceMenu/INGREDIENT_SLOT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150454_ net/minecraft/world/inventory/AbstractFurnaceMenu/FUEL_SLOT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150455_ net/minecraft/world/inventory/AbstractFurnaceMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150456_ net/minecraft/world/inventory/AbstractFurnaceMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150457_ net/minecraft/world/inventory/AbstractFurnaceMenu/DATA_COUNT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150458_ net/minecraft/world/inventory/AbstractFurnaceMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150459_ net/minecraft/world/inventory/AbstractFurnaceMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150460_ net/minecraft/world/inventory/AbstractFurnaceMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150461_ net/minecraft/world/inventory/AbstractFurnaceMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38954_ net/minecraft/world/inventory/AbstractFurnaceMenu/level +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38955_ net/minecraft/world/inventory/AbstractFurnaceMenu/container +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38956_ net/minecraft/world/inventory/AbstractFurnaceMenu/data +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38957_ net/minecraft/world/inventory/AbstractFurnaceMenu/recipeType +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38958_ net/minecraft/world/inventory/AbstractFurnaceMenu/recipeBookType +FD: net/minecraft/world/inventory/AnvilMenu/f_150464_ net/minecraft/world/inventory/AnvilMenu/COST_REPAIR_MATERIAL +FD: net/minecraft/world/inventory/AnvilMenu/f_150465_ net/minecraft/world/inventory/AnvilMenu/COST_REPAIR_SACRIFICE +FD: net/minecraft/world/inventory/AnvilMenu/f_150466_ net/minecraft/world/inventory/AnvilMenu/COST_INCOMPATIBLE_PENALTY +FD: net/minecraft/world/inventory/AnvilMenu/f_150467_ net/minecraft/world/inventory/AnvilMenu/COST_RENAME +FD: net/minecraft/world/inventory/AnvilMenu/f_150468_ net/minecraft/world/inventory/AnvilMenu/MAX_NAME_LENGTH +FD: net/minecraft/world/inventory/AnvilMenu/f_150469_ net/minecraft/world/inventory/AnvilMenu/DEBUG_COST +FD: net/minecraft/world/inventory/AnvilMenu/f_150470_ net/minecraft/world/inventory/AnvilMenu/COST_FAIL +FD: net/minecraft/world/inventory/AnvilMenu/f_150471_ net/minecraft/world/inventory/AnvilMenu/COST_BASE +FD: net/minecraft/world/inventory/AnvilMenu/f_150472_ net/minecraft/world/inventory/AnvilMenu/COST_ADDED_BASE +FD: net/minecraft/world/inventory/AnvilMenu/f_265878_ net/minecraft/world/inventory/AnvilMenu/ADDITIONAL_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_265898_ net/minecraft/world/inventory/AnvilMenu/INPUT_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_265986_ net/minecraft/world/inventory/AnvilMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/AnvilMenu/f_265992_ net/minecraft/world/inventory/AnvilMenu/RESULT_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_265994_ net/minecraft/world/inventory/AnvilMenu/INPUT_SLOT +FD: net/minecraft/world/inventory/AnvilMenu/f_266013_ net/minecraft/world/inventory/AnvilMenu/SLOT_Y_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_266102_ net/minecraft/world/inventory/AnvilMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/AnvilMenu/f_38999_ net/minecraft/world/inventory/AnvilMenu/LOGGER +FD: net/minecraft/world/inventory/AnvilMenu/f_39000_ net/minecraft/world/inventory/AnvilMenu/repairItemCountCost +FD: net/minecraft/world/inventory/AnvilMenu/f_39001_ net/minecraft/world/inventory/AnvilMenu/itemName +FD: net/minecraft/world/inventory/AnvilMenu/f_39002_ net/minecraft/world/inventory/AnvilMenu/cost +FD: net/minecraft/world/inventory/AnvilMenu$1/f_39029_ net/minecraft/world/inventory/AnvilMenu$1/$SwitchMap$net$minecraft$world$item$enchantment$Enchantment$Rarity +FD: net/minecraft/world/inventory/BeaconMenu/f_150481_ net/minecraft/world/inventory/BeaconMenu/PAYMENT_SLOT +FD: net/minecraft/world/inventory/BeaconMenu/f_150482_ net/minecraft/world/inventory/BeaconMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/BeaconMenu/f_150483_ net/minecraft/world/inventory/BeaconMenu/DATA_COUNT +FD: net/minecraft/world/inventory/BeaconMenu/f_150484_ net/minecraft/world/inventory/BeaconMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/BeaconMenu/f_150485_ net/minecraft/world/inventory/BeaconMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/BeaconMenu/f_150486_ net/minecraft/world/inventory/BeaconMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/BeaconMenu/f_150487_ net/minecraft/world/inventory/BeaconMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/BeaconMenu/f_39031_ net/minecraft/world/inventory/BeaconMenu/beacon +FD: net/minecraft/world/inventory/BeaconMenu/f_39032_ net/minecraft/world/inventory/BeaconMenu/paymentSlot +FD: net/minecraft/world/inventory/BeaconMenu/f_39033_ net/minecraft/world/inventory/BeaconMenu/access +FD: net/minecraft/world/inventory/BeaconMenu/f_39034_ net/minecraft/world/inventory/BeaconMenu/beaconData +FD: net/minecraft/world/inventory/BeaconMenu$1/f_39060_ net/minecraft/world/inventory/BeaconMenu$1/this$0 +FD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/f_39068_ net/minecraft/world/inventory/BeaconMenu$PaymentSlot/this$0 +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150488_ net/minecraft/world/inventory/BrewingStandMenu/BOTTLE_SLOT_START +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150489_ net/minecraft/world/inventory/BrewingStandMenu/BOTTLE_SLOT_END +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150490_ net/minecraft/world/inventory/BrewingStandMenu/INGREDIENT_SLOT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150491_ net/minecraft/world/inventory/BrewingStandMenu/FUEL_SLOT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150492_ net/minecraft/world/inventory/BrewingStandMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150493_ net/minecraft/world/inventory/BrewingStandMenu/DATA_COUNT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150494_ net/minecraft/world/inventory/BrewingStandMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150495_ net/minecraft/world/inventory/BrewingStandMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150496_ net/minecraft/world/inventory/BrewingStandMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150497_ net/minecraft/world/inventory/BrewingStandMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/BrewingStandMenu/f_39086_ net/minecraft/world/inventory/BrewingStandMenu/brewingStand +FD: net/minecraft/world/inventory/BrewingStandMenu/f_39087_ net/minecraft/world/inventory/BrewingStandMenu/brewingStandData +FD: net/minecraft/world/inventory/BrewingStandMenu/f_39088_ net/minecraft/world/inventory/BrewingStandMenu/ingredientSlot +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150501_ net/minecraft/world/inventory/CartographyTableMenu/MAP_SLOT +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150502_ net/minecraft/world/inventory/CartographyTableMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150503_ net/minecraft/world/inventory/CartographyTableMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150504_ net/minecraft/world/inventory/CartographyTableMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150505_ net/minecraft/world/inventory/CartographyTableMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150506_ net/minecraft/world/inventory/CartographyTableMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150507_ net/minecraft/world/inventory/CartographyTableMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39135_ net/minecraft/world/inventory/CartographyTableMenu/container +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39136_ net/minecraft/world/inventory/CartographyTableMenu/access +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39137_ net/minecraft/world/inventory/CartographyTableMenu/lastSoundTime +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39138_ net/minecraft/world/inventory/CartographyTableMenu/resultContainer +FD: net/minecraft/world/inventory/CartographyTableMenu$1/f_39177_ net/minecraft/world/inventory/CartographyTableMenu$1/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$2/f_39182_ net/minecraft/world/inventory/CartographyTableMenu$2/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$3/f_39186_ net/minecraft/world/inventory/CartographyTableMenu$3/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$4/f_39195_ net/minecraft/world/inventory/CartographyTableMenu$4/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$5/f_39204_ net/minecraft/world/inventory/CartographyTableMenu$5/val$access +FD: net/minecraft/world/inventory/CartographyTableMenu$5/f_39205_ net/minecraft/world/inventory/CartographyTableMenu$5/this$0 +FD: net/minecraft/world/inventory/ChestMenu/f_150511_ net/minecraft/world/inventory/ChestMenu/SLOTS_PER_ROW +FD: net/minecraft/world/inventory/ChestMenu/f_39221_ net/minecraft/world/inventory/ChestMenu/container +FD: net/minecraft/world/inventory/ChestMenu/f_39222_ net/minecraft/world/inventory/ChestMenu/containerRows +FD: net/minecraft/world/inventory/ClickAction/$VALUES net/minecraft/world/inventory/ClickAction/$VALUES +FD: net/minecraft/world/inventory/ClickAction/PRIMARY net/minecraft/world/inventory/ClickAction/PRIMARY +FD: net/minecraft/world/inventory/ClickAction/SECONDARY net/minecraft/world/inventory/ClickAction/SECONDARY +FD: net/minecraft/world/inventory/ClickType/$VALUES net/minecraft/world/inventory/ClickType/$VALUES +FD: net/minecraft/world/inventory/ClickType/CLONE net/minecraft/world/inventory/ClickType/CLONE +FD: net/minecraft/world/inventory/ClickType/PICKUP net/minecraft/world/inventory/ClickType/PICKUP +FD: net/minecraft/world/inventory/ClickType/PICKUP_ALL net/minecraft/world/inventory/ClickType/PICKUP_ALL +FD: net/minecraft/world/inventory/ClickType/QUICK_CRAFT net/minecraft/world/inventory/ClickType/QUICK_CRAFT +FD: net/minecraft/world/inventory/ClickType/QUICK_MOVE net/minecraft/world/inventory/ClickType/QUICK_MOVE +FD: net/minecraft/world/inventory/ClickType/SWAP net/minecraft/world/inventory/ClickType/SWAP +FD: net/minecraft/world/inventory/ClickType/THROW net/minecraft/world/inventory/ClickType/THROW +FD: net/minecraft/world/inventory/ContainerLevelAccess/f_39287_ net/minecraft/world/inventory/ContainerLevelAccess/NULL +FD: net/minecraft/world/inventory/ContainerLevelAccess$2/f_39305_ net/minecraft/world/inventory/ContainerLevelAccess$2/val$level +FD: net/minecraft/world/inventory/ContainerLevelAccess$2/f_39306_ net/minecraft/world/inventory/ContainerLevelAccess$2/val$pos +FD: net/minecraft/world/inventory/CraftingMenu/f_150539_ net/minecraft/world/inventory/CraftingMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/CraftingMenu/f_150540_ net/minecraft/world/inventory/CraftingMenu/CRAFT_SLOT_START +FD: net/minecraft/world/inventory/CraftingMenu/f_150541_ net/minecraft/world/inventory/CraftingMenu/CRAFT_SLOT_END +FD: net/minecraft/world/inventory/CraftingMenu/f_150542_ net/minecraft/world/inventory/CraftingMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/CraftingMenu/f_150543_ net/minecraft/world/inventory/CraftingMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/CraftingMenu/f_150544_ net/minecraft/world/inventory/CraftingMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/CraftingMenu/f_150545_ net/minecraft/world/inventory/CraftingMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/CraftingMenu/f_39348_ net/minecraft/world/inventory/CraftingMenu/craftSlots +FD: net/minecraft/world/inventory/CraftingMenu/f_39349_ net/minecraft/world/inventory/CraftingMenu/resultSlots +FD: net/minecraft/world/inventory/CraftingMenu/f_39350_ net/minecraft/world/inventory/CraftingMenu/access +FD: net/minecraft/world/inventory/CraftingMenu/f_39351_ net/minecraft/world/inventory/CraftingMenu/player +FD: net/minecraft/world/inventory/DataSlot/f_39399_ net/minecraft/world/inventory/DataSlot/prevValue +FD: net/minecraft/world/inventory/DataSlot$1/f_39410_ net/minecraft/world/inventory/DataSlot$1/val$container +FD: net/minecraft/world/inventory/DataSlot$1/f_39411_ net/minecraft/world/inventory/DataSlot$1/val$dataId +FD: net/minecraft/world/inventory/DataSlot$2/f_39418_ net/minecraft/world/inventory/DataSlot$2/val$storage +FD: net/minecraft/world/inventory/DataSlot$2/f_39419_ net/minecraft/world/inventory/DataSlot$2/val$index +FD: net/minecraft/world/inventory/DataSlot$3/f_39426_ net/minecraft/world/inventory/DataSlot$3/value +FD: net/minecraft/world/inventory/DispenserMenu/f_150557_ net/minecraft/world/inventory/DispenserMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/DispenserMenu/f_150558_ net/minecraft/world/inventory/DispenserMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/DispenserMenu/f_150559_ net/minecraft/world/inventory/DispenserMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/DispenserMenu/f_150560_ net/minecraft/world/inventory/DispenserMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/DispenserMenu/f_150561_ net/minecraft/world/inventory/DispenserMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/DispenserMenu/f_39431_ net/minecraft/world/inventory/DispenserMenu/dispenser +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39446_ net/minecraft/world/inventory/EnchantmentMenu/costs +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39447_ net/minecraft/world/inventory/EnchantmentMenu/enchantClue +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39448_ net/minecraft/world/inventory/EnchantmentMenu/levelClue +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39449_ net/minecraft/world/inventory/EnchantmentMenu/enchantSlots +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39450_ net/minecraft/world/inventory/EnchantmentMenu/access +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39451_ net/minecraft/world/inventory/EnchantmentMenu/random +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39452_ net/minecraft/world/inventory/EnchantmentMenu/enchantmentSeed +FD: net/minecraft/world/inventory/EnchantmentMenu$1/f_39494_ net/minecraft/world/inventory/EnchantmentMenu$1/this$0 +FD: net/minecraft/world/inventory/EnchantmentMenu$2/f_39499_ net/minecraft/world/inventory/EnchantmentMenu$2/this$0 +FD: net/minecraft/world/inventory/EnchantmentMenu$3/f_39509_ net/minecraft/world/inventory/EnchantmentMenu$3/this$0 +FD: net/minecraft/world/inventory/FurnaceFuelSlot/f_39518_ net/minecraft/world/inventory/FurnaceFuelSlot/menu +FD: net/minecraft/world/inventory/FurnaceResultSlot/f_39539_ net/minecraft/world/inventory/FurnaceResultSlot/player +FD: net/minecraft/world/inventory/FurnaceResultSlot/f_39540_ net/minecraft/world/inventory/FurnaceResultSlot/removeCount +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150565_ net/minecraft/world/inventory/GrindstoneMenu/MAX_NAME_LENGTH +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150566_ net/minecraft/world/inventory/GrindstoneMenu/INPUT_SLOT +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150567_ net/minecraft/world/inventory/GrindstoneMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150568_ net/minecraft/world/inventory/GrindstoneMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150569_ net/minecraft/world/inventory/GrindstoneMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150570_ net/minecraft/world/inventory/GrindstoneMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150571_ net/minecraft/world/inventory/GrindstoneMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150572_ net/minecraft/world/inventory/GrindstoneMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/GrindstoneMenu/f_39559_ net/minecraft/world/inventory/GrindstoneMenu/resultSlots +FD: net/minecraft/world/inventory/GrindstoneMenu/f_39560_ net/minecraft/world/inventory/GrindstoneMenu/repairSlots +FD: net/minecraft/world/inventory/GrindstoneMenu/f_39561_ net/minecraft/world/inventory/GrindstoneMenu/access +FD: net/minecraft/world/inventory/GrindstoneMenu$1/f_39594_ net/minecraft/world/inventory/GrindstoneMenu$1/this$0 +FD: net/minecraft/world/inventory/GrindstoneMenu$2/f_39599_ net/minecraft/world/inventory/GrindstoneMenu$2/this$0 +FD: net/minecraft/world/inventory/GrindstoneMenu$3/f_39608_ net/minecraft/world/inventory/GrindstoneMenu$3/this$0 +FD: net/minecraft/world/inventory/GrindstoneMenu$4/f_39617_ net/minecraft/world/inventory/GrindstoneMenu$4/val$access +FD: net/minecraft/world/inventory/GrindstoneMenu$4/f_39618_ net/minecraft/world/inventory/GrindstoneMenu$4/this$0 +FD: net/minecraft/world/inventory/HopperMenu/f_150576_ net/minecraft/world/inventory/HopperMenu/CONTAINER_SIZE +FD: net/minecraft/world/inventory/HopperMenu/f_39638_ net/minecraft/world/inventory/HopperMenu/hopper +FD: net/minecraft/world/inventory/HorseInventoryMenu/f_39653_ net/minecraft/world/inventory/HorseInventoryMenu/horseContainer +FD: net/minecraft/world/inventory/HorseInventoryMenu/f_39654_ net/minecraft/world/inventory/HorseInventoryMenu/horse +FD: net/minecraft/world/inventory/HorseInventoryMenu$1/f_39667_ net/minecraft/world/inventory/HorseInventoryMenu$1/val$horse +FD: net/minecraft/world/inventory/HorseInventoryMenu$1/f_39668_ net/minecraft/world/inventory/HorseInventoryMenu$1/this$0 +FD: net/minecraft/world/inventory/HorseInventoryMenu$2/f_39679_ net/minecraft/world/inventory/HorseInventoryMenu$2/val$horse +FD: net/minecraft/world/inventory/HorseInventoryMenu$2/f_39680_ net/minecraft/world/inventory/HorseInventoryMenu$2/this$0 +FD: net/minecraft/world/inventory/InventoryMenu/f_150579_ net/minecraft/world/inventory/InventoryMenu/CONTAINER_ID +FD: net/minecraft/world/inventory/InventoryMenu/f_150580_ net/minecraft/world/inventory/InventoryMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/InventoryMenu/f_150581_ net/minecraft/world/inventory/InventoryMenu/CRAFT_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150582_ net/minecraft/world/inventory/InventoryMenu/CRAFT_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150583_ net/minecraft/world/inventory/InventoryMenu/ARMOR_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150584_ net/minecraft/world/inventory/InventoryMenu/ARMOR_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150585_ net/minecraft/world/inventory/InventoryMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150586_ net/minecraft/world/inventory/InventoryMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150587_ net/minecraft/world/inventory/InventoryMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150588_ net/minecraft/world/inventory/InventoryMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150589_ net/minecraft/world/inventory/InventoryMenu/SHIELD_SLOT +FD: net/minecraft/world/inventory/InventoryMenu/f_39692_ net/minecraft/world/inventory/InventoryMenu/BLOCK_ATLAS +FD: net/minecraft/world/inventory/InventoryMenu/f_39693_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_HELMET +FD: net/minecraft/world/inventory/InventoryMenu/f_39694_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_CHESTPLATE +FD: net/minecraft/world/inventory/InventoryMenu/f_39695_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_LEGGINGS +FD: net/minecraft/world/inventory/InventoryMenu/f_39696_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_BOOTS +FD: net/minecraft/world/inventory/InventoryMenu/f_39697_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_SHIELD +FD: net/minecraft/world/inventory/InventoryMenu/f_39698_ net/minecraft/world/inventory/InventoryMenu/active +FD: net/minecraft/world/inventory/InventoryMenu/f_39699_ net/minecraft/world/inventory/InventoryMenu/TEXTURE_EMPTY_SLOTS +FD: net/minecraft/world/inventory/InventoryMenu/f_39700_ net/minecraft/world/inventory/InventoryMenu/SLOT_IDS +FD: net/minecraft/world/inventory/InventoryMenu/f_39701_ net/minecraft/world/inventory/InventoryMenu/craftSlots +FD: net/minecraft/world/inventory/InventoryMenu/f_39702_ net/minecraft/world/inventory/InventoryMenu/resultSlots +FD: net/minecraft/world/inventory/InventoryMenu/f_39703_ net/minecraft/world/inventory/InventoryMenu/owner +FD: net/minecraft/world/inventory/InventoryMenu$1/f_219975_ net/minecraft/world/inventory/InventoryMenu$1/val$owner +FD: net/minecraft/world/inventory/InventoryMenu$1/f_39733_ net/minecraft/world/inventory/InventoryMenu$1/val$slot +FD: net/minecraft/world/inventory/InventoryMenu$1/f_39734_ net/minecraft/world/inventory/InventoryMenu$1/this$0 +FD: net/minecraft/world/inventory/InventoryMenu$2/f_268492_ net/minecraft/world/inventory/InventoryMenu$2/val$owner +FD: net/minecraft/world/inventory/InventoryMenu$2/f_39748_ net/minecraft/world/inventory/InventoryMenu$2/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_265978_ net/minecraft/world/inventory/ItemCombinerMenu/INVENTORY_SLOTS_PER_ROW +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_266048_ net/minecraft/world/inventory/ItemCombinerMenu/resultSlotIndex +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_266084_ net/minecraft/world/inventory/ItemCombinerMenu/INVENTORY_SLOTS_PER_COLUMN +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_266110_ net/minecraft/world/inventory/ItemCombinerMenu/inputSlotIndexes +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39768_ net/minecraft/world/inventory/ItemCombinerMenu/resultSlots +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39769_ net/minecraft/world/inventory/ItemCombinerMenu/inputSlots +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39770_ net/minecraft/world/inventory/ItemCombinerMenu/access +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39771_ net/minecraft/world/inventory/ItemCombinerMenu/player +FD: net/minecraft/world/inventory/ItemCombinerMenu$1/f_266105_ net/minecraft/world/inventory/ItemCombinerMenu$1/val$slot +FD: net/minecraft/world/inventory/ItemCombinerMenu$1/f_39800_ net/minecraft/world/inventory/ItemCombinerMenu$1/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenu$2/f_39805_ net/minecraft/world/inventory/ItemCombinerMenu$2/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenu$3/f_265891_ net/minecraft/world/inventory/ItemCombinerMenu$3/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/f_265921_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/resultSlot +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/f_266033_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/slots +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/f_265930_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/slots +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/f_266115_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/resultSlot +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265897_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/mayPlace +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265926_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/y +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266065_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/x +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266077_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/EMPTY +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266086_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/slotIndex +FD: net/minecraft/world/inventory/LecternMenu/f_150606_ net/minecraft/world/inventory/LecternMenu/BUTTON_PREV_PAGE +FD: net/minecraft/world/inventory/LecternMenu/f_150607_ net/minecraft/world/inventory/LecternMenu/BUTTON_NEXT_PAGE +FD: net/minecraft/world/inventory/LecternMenu/f_150608_ net/minecraft/world/inventory/LecternMenu/BUTTON_TAKE_BOOK +FD: net/minecraft/world/inventory/LecternMenu/f_150609_ net/minecraft/world/inventory/LecternMenu/BUTTON_PAGE_JUMP_RANGE_START +FD: net/minecraft/world/inventory/LecternMenu/f_150610_ net/minecraft/world/inventory/LecternMenu/DATA_COUNT +FD: net/minecraft/world/inventory/LecternMenu/f_150611_ net/minecraft/world/inventory/LecternMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/LecternMenu/f_39819_ net/minecraft/world/inventory/LecternMenu/lectern +FD: net/minecraft/world/inventory/LecternMenu/f_39820_ net/minecraft/world/inventory/LecternMenu/lecternData +FD: net/minecraft/world/inventory/LecternMenu$1/f_39837_ net/minecraft/world/inventory/LecternMenu$1/this$0 +FD: net/minecraft/world/inventory/LoomMenu/f_150612_ net/minecraft/world/inventory/LoomMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/LoomMenu/f_150613_ net/minecraft/world/inventory/LoomMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/LoomMenu/f_150614_ net/minecraft/world/inventory/LoomMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/LoomMenu/f_150615_ net/minecraft/world/inventory/LoomMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/LoomMenu/f_219989_ net/minecraft/world/inventory/LoomMenu/PATTERN_NOT_SET +FD: net/minecraft/world/inventory/LoomMenu/f_219990_ net/minecraft/world/inventory/LoomMenu/selectablePatterns +FD: net/minecraft/world/inventory/LoomMenu/f_39845_ net/minecraft/world/inventory/LoomMenu/access +FD: net/minecraft/world/inventory/LoomMenu/f_39846_ net/minecraft/world/inventory/LoomMenu/selectedBannerPatternIndex +FD: net/minecraft/world/inventory/LoomMenu/f_39847_ net/minecraft/world/inventory/LoomMenu/slotUpdateListener +FD: net/minecraft/world/inventory/LoomMenu/f_39848_ net/minecraft/world/inventory/LoomMenu/bannerSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39849_ net/minecraft/world/inventory/LoomMenu/dyeSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39850_ net/minecraft/world/inventory/LoomMenu/patternSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39851_ net/minecraft/world/inventory/LoomMenu/resultSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39852_ net/minecraft/world/inventory/LoomMenu/lastSoundTime +FD: net/minecraft/world/inventory/LoomMenu/f_39853_ net/minecraft/world/inventory/LoomMenu/inputContainer +FD: net/minecraft/world/inventory/LoomMenu/f_39854_ net/minecraft/world/inventory/LoomMenu/outputContainer +FD: net/minecraft/world/inventory/LoomMenu$1/f_39900_ net/minecraft/world/inventory/LoomMenu$1/this$0 +FD: net/minecraft/world/inventory/LoomMenu$2/f_39905_ net/minecraft/world/inventory/LoomMenu$2/this$0 +FD: net/minecraft/world/inventory/LoomMenu$3/f_39910_ net/minecraft/world/inventory/LoomMenu$3/this$0 +FD: net/minecraft/world/inventory/LoomMenu$4/f_39919_ net/minecraft/world/inventory/LoomMenu$4/this$0 +FD: net/minecraft/world/inventory/LoomMenu$5/f_39928_ net/minecraft/world/inventory/LoomMenu$5/this$0 +FD: net/minecraft/world/inventory/LoomMenu$6/f_39937_ net/minecraft/world/inventory/LoomMenu$6/val$access +FD: net/minecraft/world/inventory/LoomMenu$6/f_39938_ net/minecraft/world/inventory/LoomMenu$6/this$0 +FD: net/minecraft/world/inventory/MenuType/f_265869_ net/minecraft/world/inventory/MenuType/requiredFeatures +FD: net/minecraft/world/inventory/MenuType/f_39957_ net/minecraft/world/inventory/MenuType/GENERIC_9x1 +FD: net/minecraft/world/inventory/MenuType/f_39958_ net/minecraft/world/inventory/MenuType/GENERIC_9x2 +FD: net/minecraft/world/inventory/MenuType/f_39959_ net/minecraft/world/inventory/MenuType/GENERIC_9x3 +FD: net/minecraft/world/inventory/MenuType/f_39960_ net/minecraft/world/inventory/MenuType/GENERIC_9x4 +FD: net/minecraft/world/inventory/MenuType/f_39961_ net/minecraft/world/inventory/MenuType/GENERIC_9x5 +FD: net/minecraft/world/inventory/MenuType/f_39962_ net/minecraft/world/inventory/MenuType/GENERIC_9x6 +FD: net/minecraft/world/inventory/MenuType/f_39963_ net/minecraft/world/inventory/MenuType/GENERIC_3x3 +FD: net/minecraft/world/inventory/MenuType/f_39964_ net/minecraft/world/inventory/MenuType/ANVIL +FD: net/minecraft/world/inventory/MenuType/f_39965_ net/minecraft/world/inventory/MenuType/BEACON +FD: net/minecraft/world/inventory/MenuType/f_39966_ net/minecraft/world/inventory/MenuType/BLAST_FURNACE +FD: net/minecraft/world/inventory/MenuType/f_39967_ net/minecraft/world/inventory/MenuType/BREWING_STAND +FD: net/minecraft/world/inventory/MenuType/f_39968_ net/minecraft/world/inventory/MenuType/CRAFTING +FD: net/minecraft/world/inventory/MenuType/f_39969_ net/minecraft/world/inventory/MenuType/ENCHANTMENT +FD: net/minecraft/world/inventory/MenuType/f_39970_ net/minecraft/world/inventory/MenuType/FURNACE +FD: net/minecraft/world/inventory/MenuType/f_39971_ net/minecraft/world/inventory/MenuType/GRINDSTONE +FD: net/minecraft/world/inventory/MenuType/f_39972_ net/minecraft/world/inventory/MenuType/HOPPER +FD: net/minecraft/world/inventory/MenuType/f_39973_ net/minecraft/world/inventory/MenuType/LECTERN +FD: net/minecraft/world/inventory/MenuType/f_39974_ net/minecraft/world/inventory/MenuType/LOOM +FD: net/minecraft/world/inventory/MenuType/f_39975_ net/minecraft/world/inventory/MenuType/MERCHANT +FD: net/minecraft/world/inventory/MenuType/f_39976_ net/minecraft/world/inventory/MenuType/SHULKER_BOX +FD: net/minecraft/world/inventory/MenuType/f_39977_ net/minecraft/world/inventory/MenuType/SMITHING +FD: net/minecraft/world/inventory/MenuType/f_39978_ net/minecraft/world/inventory/MenuType/SMOKER +FD: net/minecraft/world/inventory/MenuType/f_39979_ net/minecraft/world/inventory/MenuType/CARTOGRAPHY_TABLE +FD: net/minecraft/world/inventory/MenuType/f_39980_ net/minecraft/world/inventory/MenuType/STONECUTTER +FD: net/minecraft/world/inventory/MenuType/f_39981_ net/minecraft/world/inventory/MenuType/constructor +FD: net/minecraft/world/inventory/MerchantContainer/f_39997_ net/minecraft/world/inventory/MerchantContainer/merchant +FD: net/minecraft/world/inventory/MerchantContainer/f_39998_ net/minecraft/world/inventory/MerchantContainer/itemStacks +FD: net/minecraft/world/inventory/MerchantContainer/f_39999_ net/minecraft/world/inventory/MerchantContainer/activeOffer +FD: net/minecraft/world/inventory/MerchantContainer/f_40000_ net/minecraft/world/inventory/MerchantContainer/selectionHint +FD: net/minecraft/world/inventory/MerchantContainer/f_40001_ net/minecraft/world/inventory/MerchantContainer/futureXp +FD: net/minecraft/world/inventory/MerchantMenu/f_150619_ net/minecraft/world/inventory/MerchantMenu/PAYMENT1_SLOT +FD: net/minecraft/world/inventory/MerchantMenu/f_150620_ net/minecraft/world/inventory/MerchantMenu/PAYMENT2_SLOT +FD: net/minecraft/world/inventory/MerchantMenu/f_150621_ net/minecraft/world/inventory/MerchantMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/MerchantMenu/f_150622_ net/minecraft/world/inventory/MerchantMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/MerchantMenu/f_150623_ net/minecraft/world/inventory/MerchantMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/MerchantMenu/f_150624_ net/minecraft/world/inventory/MerchantMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/MerchantMenu/f_150625_ net/minecraft/world/inventory/MerchantMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/MerchantMenu/f_150626_ net/minecraft/world/inventory/MerchantMenu/SELLSLOT1_X +FD: net/minecraft/world/inventory/MerchantMenu/f_150627_ net/minecraft/world/inventory/MerchantMenu/SELLSLOT2_X +FD: net/minecraft/world/inventory/MerchantMenu/f_150628_ net/minecraft/world/inventory/MerchantMenu/BUYSLOT_X +FD: net/minecraft/world/inventory/MerchantMenu/f_150629_ net/minecraft/world/inventory/MerchantMenu/ROW_Y +FD: net/minecraft/world/inventory/MerchantMenu/f_40027_ net/minecraft/world/inventory/MerchantMenu/trader +FD: net/minecraft/world/inventory/MerchantMenu/f_40028_ net/minecraft/world/inventory/MerchantMenu/tradeContainer +FD: net/minecraft/world/inventory/MerchantMenu/f_40029_ net/minecraft/world/inventory/MerchantMenu/merchantLevel +FD: net/minecraft/world/inventory/MerchantMenu/f_40030_ net/minecraft/world/inventory/MerchantMenu/showProgressBar +FD: net/minecraft/world/inventory/MerchantMenu/f_40031_ net/minecraft/world/inventory/MerchantMenu/canRestock +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40078_ net/minecraft/world/inventory/MerchantResultSlot/slots +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40079_ net/minecraft/world/inventory/MerchantResultSlot/player +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40080_ net/minecraft/world/inventory/MerchantResultSlot/removeCount +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40081_ net/minecraft/world/inventory/MerchantResultSlot/merchant +FD: net/minecraft/world/inventory/PlayerEnderChestContainer/f_40101_ net/minecraft/world/inventory/PlayerEnderChestContainer/activeChest +FD: net/minecraft/world/inventory/RecipeBookType/$VALUES net/minecraft/world/inventory/RecipeBookType/$VALUES +FD: net/minecraft/world/inventory/RecipeBookType/BLAST_FURNACE net/minecraft/world/inventory/RecipeBookType/BLAST_FURNACE +FD: net/minecraft/world/inventory/RecipeBookType/CRAFTING net/minecraft/world/inventory/RecipeBookType/CRAFTING +FD: net/minecraft/world/inventory/RecipeBookType/FURNACE net/minecraft/world/inventory/RecipeBookType/FURNACE +FD: net/minecraft/world/inventory/RecipeBookType/SMOKER net/minecraft/world/inventory/RecipeBookType/SMOKER +FD: net/minecraft/world/inventory/ResultContainer/f_40140_ net/minecraft/world/inventory/ResultContainer/itemStacks +FD: net/minecraft/world/inventory/ResultContainer/f_40141_ net/minecraft/world/inventory/ResultContainer/recipeUsed +FD: net/minecraft/world/inventory/ResultSlot/f_40162_ net/minecraft/world/inventory/ResultSlot/craftSlots +FD: net/minecraft/world/inventory/ResultSlot/f_40163_ net/minecraft/world/inventory/ResultSlot/player +FD: net/minecraft/world/inventory/ResultSlot/f_40164_ net/minecraft/world/inventory/ResultSlot/removeCount +FD: net/minecraft/world/inventory/ShulkerBoxMenu/f_150640_ net/minecraft/world/inventory/ShulkerBoxMenu/CONTAINER_SIZE +FD: net/minecraft/world/inventory/ShulkerBoxMenu/f_40186_ net/minecraft/world/inventory/ShulkerBoxMenu/container +FD: net/minecraft/world/inventory/SimpleContainerData/f_40208_ net/minecraft/world/inventory/SimpleContainerData/ints +FD: net/minecraft/world/inventory/Slot/f_40217_ net/minecraft/world/inventory/Slot/slot +FD: net/minecraft/world/inventory/Slot/f_40218_ net/minecraft/world/inventory/Slot/container +FD: net/minecraft/world/inventory/Slot/f_40219_ net/minecraft/world/inventory/Slot/index +FD: net/minecraft/world/inventory/Slot/f_40220_ net/minecraft/world/inventory/Slot/x +FD: net/minecraft/world/inventory/Slot/f_40221_ net/minecraft/world/inventory/Slot/y +FD: net/minecraft/world/inventory/SmithingMenu/f_265851_ net/minecraft/world/inventory/SmithingMenu/RESULT_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_265899_ net/minecraft/world/inventory/SmithingMenu/ADDITIONAL_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_265913_ net/minecraft/world/inventory/SmithingMenu/TEMPLATE_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_265928_ net/minecraft/world/inventory/SmithingMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266015_ net/minecraft/world/inventory/SmithingMenu/TEMPLATE_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266024_ net/minecraft/world/inventory/SmithingMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266035_ net/minecraft/world/inventory/SmithingMenu/BASE_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266041_ net/minecraft/world/inventory/SmithingMenu/BASE_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_266111_ net/minecraft/world/inventory/SmithingMenu/SLOT_Y_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_40241_ net/minecraft/world/inventory/SmithingMenu/level +FD: net/minecraft/world/inventory/SmithingMenu/f_40242_ net/minecraft/world/inventory/SmithingMenu/selectedRecipe +FD: net/minecraft/world/inventory/SmithingMenu/f_40243_ net/minecraft/world/inventory/SmithingMenu/recipes +FD: net/minecraft/world/inventory/StonecutterMenu/f_150665_ net/minecraft/world/inventory/StonecutterMenu/INPUT_SLOT +FD: net/minecraft/world/inventory/StonecutterMenu/f_150666_ net/minecraft/world/inventory/StonecutterMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/StonecutterMenu/f_150667_ net/minecraft/world/inventory/StonecutterMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/StonecutterMenu/f_150668_ net/minecraft/world/inventory/StonecutterMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/StonecutterMenu/f_150669_ net/minecraft/world/inventory/StonecutterMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/StonecutterMenu/f_150670_ net/minecraft/world/inventory/StonecutterMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/StonecutterMenu/f_40282_ net/minecraft/world/inventory/StonecutterMenu/inputSlot +FD: net/minecraft/world/inventory/StonecutterMenu/f_40283_ net/minecraft/world/inventory/StonecutterMenu/resultSlot +FD: net/minecraft/world/inventory/StonecutterMenu/f_40284_ net/minecraft/world/inventory/StonecutterMenu/container +FD: net/minecraft/world/inventory/StonecutterMenu/f_40285_ net/minecraft/world/inventory/StonecutterMenu/access +FD: net/minecraft/world/inventory/StonecutterMenu/f_40286_ net/minecraft/world/inventory/StonecutterMenu/selectedRecipeIndex +FD: net/minecraft/world/inventory/StonecutterMenu/f_40287_ net/minecraft/world/inventory/StonecutterMenu/level +FD: net/minecraft/world/inventory/StonecutterMenu/f_40288_ net/minecraft/world/inventory/StonecutterMenu/recipes +FD: net/minecraft/world/inventory/StonecutterMenu/f_40289_ net/minecraft/world/inventory/StonecutterMenu/input +FD: net/minecraft/world/inventory/StonecutterMenu/f_40290_ net/minecraft/world/inventory/StonecutterMenu/lastSoundTime +FD: net/minecraft/world/inventory/StonecutterMenu/f_40291_ net/minecraft/world/inventory/StonecutterMenu/slotUpdateListener +FD: net/minecraft/world/inventory/StonecutterMenu/f_40292_ net/minecraft/world/inventory/StonecutterMenu/resultContainer +FD: net/minecraft/world/inventory/StonecutterMenu$1/f_40344_ net/minecraft/world/inventory/StonecutterMenu$1/this$0 +FD: net/minecraft/world/inventory/StonecutterMenu$2/f_40349_ net/minecraft/world/inventory/StonecutterMenu$2/val$access +FD: net/minecraft/world/inventory/StonecutterMenu$2/f_40350_ net/minecraft/world/inventory/StonecutterMenu$2/this$0 +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286951_ net/minecraft/world/inventory/TransientCraftingContainer/items +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286956_ net/minecraft/world/inventory/TransientCraftingContainer/width +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286972_ net/minecraft/world/inventory/TransientCraftingContainer/height +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286998_ net/minecraft/world/inventory/TransientCraftingContainer/menu +FD: net/minecraft/world/inventory/tooltip/BundleTooltip/f_150674_ net/minecraft/world/inventory/tooltip/BundleTooltip/items +FD: net/minecraft/world/inventory/tooltip/BundleTooltip/f_150675_ net/minecraft/world/inventory/tooltip/BundleTooltip/weight +FD: net/minecraft/world/item/AdventureModeCheck/f_186321_ net/minecraft/world/item/AdventureModeCheck/tagName +FD: net/minecraft/world/item/AdventureModeCheck/f_186322_ net/minecraft/world/item/AdventureModeCheck/lastCheckedBlock +FD: net/minecraft/world/item/AdventureModeCheck/f_186323_ net/minecraft/world/item/AdventureModeCheck/lastResult +FD: net/minecraft/world/item/AdventureModeCheck/f_186324_ net/minecraft/world/item/AdventureModeCheck/checksBlockEntity +FD: net/minecraft/world/item/AirItem/f_40366_ net/minecraft/world/item/AirItem/block +FD: net/minecraft/world/item/ArmorItem/f_265916_ net/minecraft/world/item/ArmorItem/type +FD: net/minecraft/world/item/ArmorItem/f_265987_ net/minecraft/world/item/ArmorItem/ARMOR_MODIFIER_UUID_PER_TYPE +FD: net/minecraft/world/item/ArmorItem/f_40376_ net/minecraft/world/item/ArmorItem/DISPENSE_ITEM_BEHAVIOR +FD: net/minecraft/world/item/ArmorItem/f_40378_ net/minecraft/world/item/ArmorItem/knockbackResistance +FD: net/minecraft/world/item/ArmorItem/f_40379_ net/minecraft/world/item/ArmorItem/material +FD: net/minecraft/world/item/ArmorItem/f_40381_ net/minecraft/world/item/ArmorItem/defense +FD: net/minecraft/world/item/ArmorItem/f_40382_ net/minecraft/world/item/ArmorItem/toughness +FD: net/minecraft/world/item/ArmorItem/f_40383_ net/minecraft/world/item/ArmorItem/defaultModifiers +FD: net/minecraft/world/item/ArmorItem$Type/$VALUES net/minecraft/world/item/ArmorItem$Type/$VALUES +FD: net/minecraft/world/item/ArmorItem$Type/BOOTS net/minecraft/world/item/ArmorItem$Type/BOOTS +FD: net/minecraft/world/item/ArmorItem$Type/CHESTPLATE net/minecraft/world/item/ArmorItem$Type/CHESTPLATE +FD: net/minecraft/world/item/ArmorItem$Type/HELMET net/minecraft/world/item/ArmorItem$Type/HELMET +FD: net/minecraft/world/item/ArmorItem$Type/LEGGINGS net/minecraft/world/item/ArmorItem$Type/LEGGINGS +FD: net/minecraft/world/item/ArmorItem$Type/f_265980_ net/minecraft/world/item/ArmorItem$Type/slot +FD: net/minecraft/world/item/ArmorItem$Type/f_266116_ net/minecraft/world/item/ArmorItem$Type/name +FD: net/minecraft/world/item/ArmorMaterials/$VALUES net/minecraft/world/item/ArmorMaterials/$VALUES +FD: net/minecraft/world/item/ArmorMaterials/CHAIN net/minecraft/world/item/ArmorMaterials/CHAIN +FD: net/minecraft/world/item/ArmorMaterials/DIAMOND net/minecraft/world/item/ArmorMaterials/DIAMOND +FD: net/minecraft/world/item/ArmorMaterials/GOLD net/minecraft/world/item/ArmorMaterials/GOLD +FD: net/minecraft/world/item/ArmorMaterials/IRON net/minecraft/world/item/ArmorMaterials/IRON +FD: net/minecraft/world/item/ArmorMaterials/LEATHER net/minecraft/world/item/ArmorMaterials/LEATHER +FD: net/minecraft/world/item/ArmorMaterials/NETHERITE net/minecraft/world/item/ArmorMaterials/NETHERITE +FD: net/minecraft/world/item/ArmorMaterials/TURTLE net/minecraft/world/item/ArmorMaterials/TURTLE +FD: net/minecraft/world/item/ArmorMaterials/f_265935_ net/minecraft/world/item/ArmorMaterials/CODEC +FD: net/minecraft/world/item/ArmorMaterials/f_265966_ net/minecraft/world/item/ArmorMaterials/protectionFunctionForType +FD: net/minecraft/world/item/ArmorMaterials/f_266010_ net/minecraft/world/item/ArmorMaterials/HEALTH_FUNCTION_FOR_TYPE +FD: net/minecraft/world/item/ArmorMaterials/f_40461_ net/minecraft/world/item/ArmorMaterials/name +FD: net/minecraft/world/item/ArmorMaterials/f_40462_ net/minecraft/world/item/ArmorMaterials/durabilityMultiplier +FD: net/minecraft/world/item/ArmorMaterials/f_40464_ net/minecraft/world/item/ArmorMaterials/enchantmentValue +FD: net/minecraft/world/item/ArmorMaterials/f_40465_ net/minecraft/world/item/ArmorMaterials/sound +FD: net/minecraft/world/item/ArmorMaterials/f_40466_ net/minecraft/world/item/ArmorMaterials/toughness +FD: net/minecraft/world/item/ArmorMaterials/f_40467_ net/minecraft/world/item/ArmorMaterials/knockbackResistance +FD: net/minecraft/world/item/ArmorMaterials/f_40468_ net/minecraft/world/item/ArmorMaterials/repairIngredient +FD: net/minecraft/world/item/AxeItem/f_150683_ net/minecraft/world/item/AxeItem/STRIPPABLES +FD: net/minecraft/world/item/BannerItem/f_150695_ net/minecraft/world/item/BannerItem/PATTERN_PREFIX +FD: net/minecraft/world/item/BannerPatternItem/f_40546_ net/minecraft/world/item/BannerPatternItem/bannerPattern +FD: net/minecraft/world/item/BlockItem/f_150696_ net/minecraft/world/item/BlockItem/BLOCK_ENTITY_TAG +FD: net/minecraft/world/item/BlockItem/f_150697_ net/minecraft/world/item/BlockItem/BLOCK_STATE_TAG +FD: net/minecraft/world/item/BlockItem/f_40563_ net/minecraft/world/item/BlockItem/block +FD: net/minecraft/world/item/BoatItem/f_220011_ net/minecraft/world/item/BoatItem/hasChest +FD: net/minecraft/world/item/BoatItem/f_40615_ net/minecraft/world/item/BoatItem/ENTITY_PREDICATE +FD: net/minecraft/world/item/BoatItem/f_40616_ net/minecraft/world/item/BoatItem/type +FD: net/minecraft/world/item/BoneMealItem/f_150701_ net/minecraft/world/item/BoneMealItem/GRASS_SPREAD_WIDTH +FD: net/minecraft/world/item/BoneMealItem/f_150702_ net/minecraft/world/item/BoneMealItem/GRASS_SPREAD_HEIGHT +FD: net/minecraft/world/item/BoneMealItem/f_150703_ net/minecraft/world/item/BoneMealItem/GRASS_COUNT_MULTIPLIER +FD: net/minecraft/world/item/BowItem/f_150704_ net/minecraft/world/item/BowItem/MAX_DRAW_DURATION +FD: net/minecraft/world/item/BowItem/f_150705_ net/minecraft/world/item/BowItem/DEFAULT_RANGE +FD: net/minecraft/world/item/BrushItem/f_271380_ net/minecraft/world/item/BrushItem/USE_DURATION +FD: net/minecraft/world/item/BrushItem/f_278125_ net/minecraft/world/item/BrushItem/ANIMATION_DURATION +FD: net/minecraft/world/item/BrushItem/f_279643_ net/minecraft/world/item/BrushItem/MAX_BRUSH_DISTANCE +FD: net/minecraft/world/item/BrushItem$1/f_271131_ net/minecraft/world/item/BrushItem$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271284_ net/minecraft/world/item/BrushItem$DustParticlesDelta/yd +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271382_ net/minecraft/world/item/BrushItem$DustParticlesDelta/ALONG_SIDE_DELTA +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271440_ net/minecraft/world/item/BrushItem$DustParticlesDelta/OUT_FROM_SIDE_DELTA +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271456_ net/minecraft/world/item/BrushItem$DustParticlesDelta/xd +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271522_ net/minecraft/world/item/BrushItem$DustParticlesDelta/zd +FD: net/minecraft/world/item/BucketItem/f_40687_ net/minecraft/world/item/BucketItem/content +FD: net/minecraft/world/item/BundleItem/f_150720_ net/minecraft/world/item/BundleItem/MAX_WEIGHT +FD: net/minecraft/world/item/BundleItem/f_150721_ net/minecraft/world/item/BundleItem/TAG_ITEMS +FD: net/minecraft/world/item/BundleItem/f_150722_ net/minecraft/world/item/BundleItem/BUNDLE_IN_BUNDLE_WEIGHT +FD: net/minecraft/world/item/BundleItem/f_150723_ net/minecraft/world/item/BundleItem/BAR_COLOR +FD: net/minecraft/world/item/CompassItem/f_150786_ net/minecraft/world/item/CompassItem/TAG_LODESTONE_POS +FD: net/minecraft/world/item/CompassItem/f_150787_ net/minecraft/world/item/CompassItem/TAG_LODESTONE_DIMENSION +FD: net/minecraft/world/item/CompassItem/f_150788_ net/minecraft/world/item/CompassItem/TAG_LODESTONE_TRACKED +FD: net/minecraft/world/item/CompassItem/f_40715_ net/minecraft/world/item/CompassItem/LOGGER +FD: net/minecraft/world/item/CreativeModeTab/f_243839_ net/minecraft/world/item/CreativeModeTab/displayItems +FD: net/minecraft/world/item/CreativeModeTab/f_243841_ net/minecraft/world/item/CreativeModeTab/displayItemsSearchTab +FD: net/minecraft/world/item/CreativeModeTab/f_256819_ net/minecraft/world/item/CreativeModeTab/type +FD: net/minecraft/world/item/CreativeModeTab/f_256824_ net/minecraft/world/item/CreativeModeTab/displayItemsGenerator +FD: net/minecraft/world/item/CreativeModeTab/f_256912_ net/minecraft/world/item/CreativeModeTab/iconGenerator +FD: net/minecraft/world/item/CreativeModeTab/f_256931_ net/minecraft/world/item/CreativeModeTab/row +FD: net/minecraft/world/item/CreativeModeTab/f_256965_ net/minecraft/world/item/CreativeModeTab/searchTreeBuilder +FD: net/minecraft/world/item/CreativeModeTab/f_256967_ net/minecraft/world/item/CreativeModeTab/column +FD: net/minecraft/world/item/CreativeModeTab/f_257018_ net/minecraft/world/item/CreativeModeTab/alignedRight +FD: net/minecraft/world/item/CreativeModeTab/f_40764_ net/minecraft/world/item/CreativeModeTab/displayName +FD: net/minecraft/world/item/CreativeModeTab/f_40766_ net/minecraft/world/item/CreativeModeTab/backgroundSuffix +FD: net/minecraft/world/item/CreativeModeTab/f_40767_ net/minecraft/world/item/CreativeModeTab/canScroll +FD: net/minecraft/world/item/CreativeModeTab/f_40768_ net/minecraft/world/item/CreativeModeTab/showTitle +FD: net/minecraft/world/item/CreativeModeTab/f_40770_ net/minecraft/world/item/CreativeModeTab/iconItemStack +FD: net/minecraft/world/item/CreativeModeTab$1/f_244541_ net/minecraft/world/item/CreativeModeTab$1/$SwitchMap$net$minecraft$world$item$CreativeModeTab$TabVisibility +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256756_ net/minecraft/world/item/CreativeModeTab$Builder/EMPTY_GENERATOR +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256796_ net/minecraft/world/item/CreativeModeTab$Builder/row +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256847_ net/minecraft/world/item/CreativeModeTab$Builder/type +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256851_ net/minecraft/world/item/CreativeModeTab$Builder/showTitle +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256854_ net/minecraft/world/item/CreativeModeTab$Builder/alignedRight +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256856_ net/minecraft/world/item/CreativeModeTab$Builder/displayName +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256953_ net/minecraft/world/item/CreativeModeTab$Builder/displayItemsGenerator +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256977_ net/minecraft/world/item/CreativeModeTab$Builder/column +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256981_ net/minecraft/world/item/CreativeModeTab$Builder/iconGenerator +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256992_ net/minecraft/world/item/CreativeModeTab$Builder/canScroll +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_257036_ net/minecraft/world/item/CreativeModeTab$Builder/backgroundSuffix +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_243878_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/featureFlagSet +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_244054_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/tab +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_244363_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/tabContents +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_244585_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/searchTabContents +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268429_ net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hasPermissions +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268485_ net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/holders +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268709_ net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/enabledFeatures +FD: net/minecraft/world/item/CreativeModeTab$Row/$VALUES net/minecraft/world/item/CreativeModeTab$Row/$VALUES +FD: net/minecraft/world/item/CreativeModeTab$Row/BOTTOM net/minecraft/world/item/CreativeModeTab$Row/BOTTOM +FD: net/minecraft/world/item/CreativeModeTab$Row/TOP net/minecraft/world/item/CreativeModeTab$Row/TOP +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/$VALUES net/minecraft/world/item/CreativeModeTab$TabVisibility/$VALUES +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_AND_SEARCH_TABS net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_AND_SEARCH_TABS +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_TAB_ONLY net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_TAB_ONLY +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/SEARCH_TAB_ONLY net/minecraft/world/item/CreativeModeTab$TabVisibility/SEARCH_TAB_ONLY +FD: net/minecraft/world/item/CreativeModeTab$Type/$VALUES net/minecraft/world/item/CreativeModeTab$Type/$VALUES +FD: net/minecraft/world/item/CreativeModeTab$Type/CATEGORY net/minecraft/world/item/CreativeModeTab$Type/CATEGORY +FD: net/minecraft/world/item/CreativeModeTab$Type/HOTBAR net/minecraft/world/item/CreativeModeTab$Type/HOTBAR +FD: net/minecraft/world/item/CreativeModeTab$Type/INVENTORY net/minecraft/world/item/CreativeModeTab$Type/INVENTORY +FD: net/minecraft/world/item/CreativeModeTab$Type/SEARCH net/minecraft/world/item/CreativeModeTab$Type/SEARCH +FD: net/minecraft/world/item/CreativeModeTabs/f_256725_ net/minecraft/world/item/CreativeModeTabs/COLORED_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256731_ net/minecraft/world/item/CreativeModeTabs/SPAWN_EGGS +FD: net/minecraft/world/item/CreativeModeTabs/f_256750_ net/minecraft/world/item/CreativeModeTabs/SEARCH +FD: net/minecraft/world/item/CreativeModeTabs/f_256776_ net/minecraft/world/item/CreativeModeTabs/NATURAL_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256788_ net/minecraft/world/item/CreativeModeTabs/BUILDING_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256791_ net/minecraft/world/item/CreativeModeTabs/FUNCTIONAL_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256797_ net/minecraft/world/item/CreativeModeTabs/COMBAT +FD: net/minecraft/world/item/CreativeModeTabs/f_256837_ net/minecraft/world/item/CreativeModeTabs/OP_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256839_ net/minecraft/world/item/CreativeModeTabs/FOOD_AND_DRINKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256869_ net/minecraft/world/item/CreativeModeTabs/TOOLS_AND_UTILITIES +FD: net/minecraft/world/item/CreativeModeTabs/f_256917_ net/minecraft/world/item/CreativeModeTabs/HOTBAR +FD: net/minecraft/world/item/CreativeModeTabs/f_256968_ net/minecraft/world/item/CreativeModeTabs/INGREDIENTS +FD: net/minecraft/world/item/CreativeModeTabs/f_257028_ net/minecraft/world/item/CreativeModeTabs/REDSTONE_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_257039_ net/minecraft/world/item/CreativeModeTabs/INVENTORY +FD: net/minecraft/world/item/CreativeModeTabs/f_268478_ net/minecraft/world/item/CreativeModeTabs/PAINTING_COMPARATOR +FD: net/minecraft/world/item/CreativeModeTabs/f_268496_ net/minecraft/world/item/CreativeModeTabs/CACHED_PARAMETERS +FD: net/minecraft/world/item/CrossbowItem/f_150789_ net/minecraft/world/item/CrossbowItem/DEFAULT_RANGE +FD: net/minecraft/world/item/CrossbowItem/f_150790_ net/minecraft/world/item/CrossbowItem/TAG_CHARGED +FD: net/minecraft/world/item/CrossbowItem/f_150791_ net/minecraft/world/item/CrossbowItem/TAG_CHARGED_PROJECTILES +FD: net/minecraft/world/item/CrossbowItem/f_150792_ net/minecraft/world/item/CrossbowItem/MAX_CHARGE_DURATION +FD: net/minecraft/world/item/CrossbowItem/f_150793_ net/minecraft/world/item/CrossbowItem/START_SOUND_PERCENT +FD: net/minecraft/world/item/CrossbowItem/f_150794_ net/minecraft/world/item/CrossbowItem/MID_SOUND_PERCENT +FD: net/minecraft/world/item/CrossbowItem/f_150795_ net/minecraft/world/item/CrossbowItem/ARROW_POWER +FD: net/minecraft/world/item/CrossbowItem/f_150796_ net/minecraft/world/item/CrossbowItem/FIREWORK_POWER +FD: net/minecraft/world/item/CrossbowItem/f_40847_ net/minecraft/world/item/CrossbowItem/startSoundPlayed +FD: net/minecraft/world/item/CrossbowItem/f_40848_ net/minecraft/world/item/CrossbowItem/midLoadSoundPlayed +FD: net/minecraft/world/item/DiggerItem/f_40979_ net/minecraft/world/item/DiggerItem/blocks +FD: net/minecraft/world/item/DiggerItem/f_40980_ net/minecraft/world/item/DiggerItem/speed +FD: net/minecraft/world/item/DiggerItem/f_40981_ net/minecraft/world/item/DiggerItem/attackDamageBaseline +FD: net/minecraft/world/item/DiggerItem/f_40982_ net/minecraft/world/item/DiggerItem/defaultModifiers +FD: net/minecraft/world/item/DyeColor/$VALUES net/minecraft/world/item/DyeColor/$VALUES +FD: net/minecraft/world/item/DyeColor/BLACK net/minecraft/world/item/DyeColor/BLACK +FD: net/minecraft/world/item/DyeColor/BLUE net/minecraft/world/item/DyeColor/BLUE +FD: net/minecraft/world/item/DyeColor/BROWN net/minecraft/world/item/DyeColor/BROWN +FD: net/minecraft/world/item/DyeColor/CYAN net/minecraft/world/item/DyeColor/CYAN +FD: net/minecraft/world/item/DyeColor/GRAY net/minecraft/world/item/DyeColor/GRAY +FD: net/minecraft/world/item/DyeColor/GREEN net/minecraft/world/item/DyeColor/GREEN +FD: net/minecraft/world/item/DyeColor/LIGHT_BLUE net/minecraft/world/item/DyeColor/LIGHT_BLUE +FD: net/minecraft/world/item/DyeColor/LIGHT_GRAY net/minecraft/world/item/DyeColor/LIGHT_GRAY +FD: net/minecraft/world/item/DyeColor/LIME net/minecraft/world/item/DyeColor/LIME +FD: net/minecraft/world/item/DyeColor/MAGENTA net/minecraft/world/item/DyeColor/MAGENTA +FD: net/minecraft/world/item/DyeColor/ORANGE net/minecraft/world/item/DyeColor/ORANGE +FD: net/minecraft/world/item/DyeColor/PINK net/minecraft/world/item/DyeColor/PINK +FD: net/minecraft/world/item/DyeColor/PURPLE net/minecraft/world/item/DyeColor/PURPLE +FD: net/minecraft/world/item/DyeColor/RED net/minecraft/world/item/DyeColor/RED +FD: net/minecraft/world/item/DyeColor/WHITE net/minecraft/world/item/DyeColor/WHITE +FD: net/minecraft/world/item/DyeColor/YELLOW net/minecraft/world/item/DyeColor/YELLOW +FD: net/minecraft/world/item/DyeColor/f_262211_ net/minecraft/world/item/DyeColor/CODEC +FD: net/minecraft/world/item/DyeColor/f_283766_ net/minecraft/world/item/DyeColor/mapColor +FD: net/minecraft/world/item/DyeColor/f_41032_ net/minecraft/world/item/DyeColor/BY_ID +FD: net/minecraft/world/item/DyeColor/f_41033_ net/minecraft/world/item/DyeColor/BY_FIREWORK_COLOR +FD: net/minecraft/world/item/DyeColor/f_41034_ net/minecraft/world/item/DyeColor/id +FD: net/minecraft/world/item/DyeColor/f_41035_ net/minecraft/world/item/DyeColor/name +FD: net/minecraft/world/item/DyeColor/f_41039_ net/minecraft/world/item/DyeColor/textureDiffuseColors +FD: net/minecraft/world/item/DyeColor/f_41040_ net/minecraft/world/item/DyeColor/fireworkColor +FD: net/minecraft/world/item/DyeColor/f_41041_ net/minecraft/world/item/DyeColor/textColor +FD: net/minecraft/world/item/DyeItem/f_41076_ net/minecraft/world/item/DyeItem/ITEM_BY_COLOR +FD: net/minecraft/world/item/DyeItem/f_41077_ net/minecraft/world/item/DyeItem/dyeColor +FD: net/minecraft/world/item/DyeableLeatherItem/f_150826_ net/minecraft/world/item/DyeableLeatherItem/TAG_COLOR +FD: net/minecraft/world/item/DyeableLeatherItem/f_150827_ net/minecraft/world/item/DyeableLeatherItem/TAG_DISPLAY +FD: net/minecraft/world/item/DyeableLeatherItem/f_150828_ net/minecraft/world/item/DyeableLeatherItem/DEFAULT_LEATHER_COLOR +FD: net/minecraft/world/item/EnchantedBookItem/f_150830_ net/minecraft/world/item/EnchantedBookItem/TAG_STORED_ENCHANTMENTS +FD: net/minecraft/world/item/FireworkRocketItem/f_150831_ net/minecraft/world/item/FireworkRocketItem/TAG_FIREWORKS +FD: net/minecraft/world/item/FireworkRocketItem/f_150832_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION +FD: net/minecraft/world/item/FireworkRocketItem/f_150833_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSIONS +FD: net/minecraft/world/item/FireworkRocketItem/f_150834_ net/minecraft/world/item/FireworkRocketItem/TAG_FLIGHT +FD: net/minecraft/world/item/FireworkRocketItem/f_150835_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_TYPE +FD: net/minecraft/world/item/FireworkRocketItem/f_150836_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_TRAIL +FD: net/minecraft/world/item/FireworkRocketItem/f_150837_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_FLICKER +FD: net/minecraft/world/item/FireworkRocketItem/f_150838_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_COLORS +FD: net/minecraft/world/item/FireworkRocketItem/f_150839_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_FADECOLORS +FD: net/minecraft/world/item/FireworkRocketItem/f_150840_ net/minecraft/world/item/FireworkRocketItem/ROCKET_PLACEMENT_OFFSET +FD: net/minecraft/world/item/FireworkRocketItem/f_256994_ net/minecraft/world/item/FireworkRocketItem/CRAFTABLE_DURATIONS +FD: net/minecraft/world/item/FireworkRocketItem$Shape/$VALUES net/minecraft/world/item/FireworkRocketItem$Shape/$VALUES +FD: net/minecraft/world/item/FireworkRocketItem$Shape/BURST net/minecraft/world/item/FireworkRocketItem$Shape/BURST +FD: net/minecraft/world/item/FireworkRocketItem$Shape/CREEPER net/minecraft/world/item/FireworkRocketItem$Shape/CREEPER +FD: net/minecraft/world/item/FireworkRocketItem$Shape/LARGE_BALL net/minecraft/world/item/FireworkRocketItem$Shape/LARGE_BALL +FD: net/minecraft/world/item/FireworkRocketItem$Shape/SMALL_BALL net/minecraft/world/item/FireworkRocketItem$Shape/SMALL_BALL +FD: net/minecraft/world/item/FireworkRocketItem$Shape/STAR net/minecraft/world/item/FireworkRocketItem$Shape/STAR +FD: net/minecraft/world/item/FireworkRocketItem$Shape/f_41226_ net/minecraft/world/item/FireworkRocketItem$Shape/BY_ID +FD: net/minecraft/world/item/FireworkRocketItem$Shape/f_41227_ net/minecraft/world/item/FireworkRocketItem$Shape/id +FD: net/minecraft/world/item/FireworkRocketItem$Shape/f_41228_ net/minecraft/world/item/FireworkRocketItem$Shape/name +FD: net/minecraft/world/item/FoodOnAStickItem/f_41304_ net/minecraft/world/item/FoodOnAStickItem/canInteractWith +FD: net/minecraft/world/item/FoodOnAStickItem/f_41305_ net/minecraft/world/item/FoodOnAStickItem/consumeItemDamage +FD: net/minecraft/world/item/HangingEntityItem/f_268736_ net/minecraft/world/item/HangingEntityItem/TOOLTIP_RANDOM_VARIANT +FD: net/minecraft/world/item/HangingEntityItem/f_41322_ net/minecraft/world/item/HangingEntityItem/type +FD: net/minecraft/world/item/HoeItem/f_41332_ net/minecraft/world/item/HoeItem/TILLABLES +FD: net/minecraft/world/item/HoneyBottleItem/f_150862_ net/minecraft/world/item/HoneyBottleItem/DRINK_DURATION +FD: net/minecraft/world/item/HoneycombItem/f_150863_ net/minecraft/world/item/HoneycombItem/WAXABLES +FD: net/minecraft/world/item/HoneycombItem/f_150864_ net/minecraft/world/item/HoneycombItem/WAX_OFF_BY_BLOCK +FD: net/minecraft/world/item/HorseArmorItem/f_150882_ net/minecraft/world/item/HorseArmorItem/TEX_FOLDER +FD: net/minecraft/world/item/HorseArmorItem/f_41361_ net/minecraft/world/item/HorseArmorItem/protection +FD: net/minecraft/world/item/HorseArmorItem/f_41362_ net/minecraft/world/item/HorseArmorItem/texture +FD: net/minecraft/world/item/Instrument/f_220078_ net/minecraft/world/item/Instrument/CODEC +FD: net/minecraft/world/item/Instrument/f_220079_ net/minecraft/world/item/Instrument/soundEvent +FD: net/minecraft/world/item/Instrument/f_220080_ net/minecraft/world/item/Instrument/useDuration +FD: net/minecraft/world/item/Instrument/f_220081_ net/minecraft/world/item/Instrument/range +FD: net/minecraft/world/item/InstrumentItem/f_220096_ net/minecraft/world/item/InstrumentItem/TAG_INSTRUMENT +FD: net/minecraft/world/item/InstrumentItem/f_220097_ net/minecraft/world/item/InstrumentItem/instruments +FD: net/minecraft/world/item/Instruments/f_220137_ net/minecraft/world/item/Instruments/GOAT_HORN_RANGE_BLOCKS +FD: net/minecraft/world/item/Instruments/f_220138_ net/minecraft/world/item/Instruments/GOAT_HORN_DURATION +FD: net/minecraft/world/item/Instruments/f_220139_ net/minecraft/world/item/Instruments/PONDER_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220140_ net/minecraft/world/item/Instruments/SING_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220141_ net/minecraft/world/item/Instruments/SEEK_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220142_ net/minecraft/world/item/Instruments/FEEL_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220143_ net/minecraft/world/item/Instruments/ADMIRE_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220144_ net/minecraft/world/item/Instruments/CALL_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220145_ net/minecraft/world/item/Instruments/YEARN_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220146_ net/minecraft/world/item/Instruments/DREAM_GOAT_HORN +FD: net/minecraft/world/item/Item/f_150883_ net/minecraft/world/item/Item/LOGGER +FD: net/minecraft/world/item/Item/f_150884_ net/minecraft/world/item/Item/MAX_STACK_SIZE +FD: net/minecraft/world/item/Item/f_150885_ net/minecraft/world/item/Item/EAT_DURATION +FD: net/minecraft/world/item/Item/f_150886_ net/minecraft/world/item/Item/MAX_BAR_WIDTH +FD: net/minecraft/world/item/Item/f_204113_ net/minecraft/world/item/Item/builtInRegistryHolder +FD: net/minecraft/world/item/Item/f_243811_ net/minecraft/world/item/Item/requiredFeatures +FD: net/minecraft/world/item/Item/f_41369_ net/minecraft/world/item/Item/rarity +FD: net/minecraft/world/item/Item/f_41370_ net/minecraft/world/item/Item/maxStackSize +FD: net/minecraft/world/item/Item/f_41371_ net/minecraft/world/item/Item/maxDamage +FD: net/minecraft/world/item/Item/f_41372_ net/minecraft/world/item/Item/isFireResistant +FD: net/minecraft/world/item/Item/f_41373_ net/minecraft/world/item/Item/BY_BLOCK +FD: net/minecraft/world/item/Item/f_41374_ net/minecraft/world/item/Item/BASE_ATTACK_DAMAGE_UUID +FD: net/minecraft/world/item/Item/f_41375_ net/minecraft/world/item/Item/BASE_ATTACK_SPEED_UUID +FD: net/minecraft/world/item/Item/f_41378_ net/minecraft/world/item/Item/craftingRemainingItem +FD: net/minecraft/world/item/Item/f_41379_ net/minecraft/world/item/Item/descriptionId +FD: net/minecraft/world/item/Item/f_41380_ net/minecraft/world/item/Item/foodProperties +FD: net/minecraft/world/item/Item$1/f_41476_ net/minecraft/world/item/Item$1/$SwitchMap$net$minecraft$world$item$Rarity +FD: net/minecraft/world/item/Item$Properties/f_244559_ net/minecraft/world/item/Item$Properties/requiredFeatures +FD: net/minecraft/world/item/Item$Properties/f_41478_ net/minecraft/world/item/Item$Properties/maxStackSize +FD: net/minecraft/world/item/Item$Properties/f_41479_ net/minecraft/world/item/Item$Properties/maxDamage +FD: net/minecraft/world/item/Item$Properties/f_41480_ net/minecraft/world/item/Item$Properties/craftingRemainingItem +FD: net/minecraft/world/item/Item$Properties/f_41482_ net/minecraft/world/item/Item$Properties/rarity +FD: net/minecraft/world/item/Item$Properties/f_41483_ net/minecraft/world/item/Item$Properties/foodProperties +FD: net/minecraft/world/item/Item$Properties/f_41484_ net/minecraft/world/item/Item$Properties/isFireResistant +FD: net/minecraft/world/item/ItemCooldowns/f_41515_ net/minecraft/world/item/ItemCooldowns/cooldowns +FD: net/minecraft/world/item/ItemCooldowns/f_41516_ net/minecraft/world/item/ItemCooldowns/tickCount +FD: net/minecraft/world/item/ItemCooldowns$CooldownInstance/f_41533_ net/minecraft/world/item/ItemCooldowns$CooldownInstance/startTime +FD: net/minecraft/world/item/ItemCooldowns$CooldownInstance/f_41534_ net/minecraft/world/item/ItemCooldowns$CooldownInstance/endTime +FD: net/minecraft/world/item/ItemDisplayContext/$VALUES net/minecraft/world/item/ItemDisplayContext/$VALUES +FD: net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_LEFT_HAND net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_LEFT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_RIGHT_HAND net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_RIGHT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/FIXED net/minecraft/world/item/ItemDisplayContext/FIXED +FD: net/minecraft/world/item/ItemDisplayContext/GROUND net/minecraft/world/item/ItemDisplayContext/GROUND +FD: net/minecraft/world/item/ItemDisplayContext/GUI net/minecraft/world/item/ItemDisplayContext/GUI +FD: net/minecraft/world/item/ItemDisplayContext/HEAD net/minecraft/world/item/ItemDisplayContext/HEAD +FD: net/minecraft/world/item/ItemDisplayContext/NONE net/minecraft/world/item/ItemDisplayContext/NONE +FD: net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_LEFT_HAND net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_LEFT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_RIGHT_HAND net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_RIGHT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/f_268458_ net/minecraft/world/item/ItemDisplayContext/CODEC +FD: net/minecraft/world/item/ItemDisplayContext/f_268648_ net/minecraft/world/item/ItemDisplayContext/BY_ID +FD: net/minecraft/world/item/ItemDisplayContext/f_268735_ net/minecraft/world/item/ItemDisplayContext/id +FD: net/minecraft/world/item/ItemDisplayContext/f_268747_ net/minecraft/world/item/ItemDisplayContext/name +FD: net/minecraft/world/item/ItemStack/f_150906_ net/minecraft/world/item/ItemStack/TAG_ENCH +FD: net/minecraft/world/item/ItemStack/f_150909_ net/minecraft/world/item/ItemStack/TAG_DISPLAY +FD: net/minecraft/world/item/ItemStack/f_150910_ net/minecraft/world/item/ItemStack/TAG_DISPLAY_NAME +FD: net/minecraft/world/item/ItemStack/f_150911_ net/minecraft/world/item/ItemStack/TAG_LORE +FD: net/minecraft/world/item/ItemStack/f_150912_ net/minecraft/world/item/ItemStack/TAG_DAMAGE +FD: net/minecraft/world/item/ItemStack/f_150913_ net/minecraft/world/item/ItemStack/TAG_COLOR +FD: net/minecraft/world/item/ItemStack/f_150914_ net/minecraft/world/item/ItemStack/TAG_UNBREAKABLE +FD: net/minecraft/world/item/ItemStack/f_150915_ net/minecraft/world/item/ItemStack/TAG_REPAIR_COST +FD: net/minecraft/world/item/ItemStack/f_150916_ net/minecraft/world/item/ItemStack/TAG_CAN_DESTROY_BLOCK_LIST +FD: net/minecraft/world/item/ItemStack/f_150917_ net/minecraft/world/item/ItemStack/TAG_CAN_PLACE_ON_BLOCK_LIST +FD: net/minecraft/world/item/ItemStack/f_150918_ net/minecraft/world/item/ItemStack/TAG_HIDE_FLAGS +FD: net/minecraft/world/item/ItemStack/f_150919_ net/minecraft/world/item/ItemStack/DONT_HIDE_TOOLTIP +FD: net/minecraft/world/item/ItemStack/f_186360_ net/minecraft/world/item/ItemStack/adventureBreakCheck +FD: net/minecraft/world/item/ItemStack/f_186361_ net/minecraft/world/item/ItemStack/adventurePlaceCheck +FD: net/minecraft/world/item/ItemStack/f_243862_ net/minecraft/world/item/ItemStack/DISABLED_ITEM_TOOLTIP +FD: net/minecraft/world/item/ItemStack/f_41582_ net/minecraft/world/item/ItemStack/CODEC +FD: net/minecraft/world/item/ItemStack/f_41583_ net/minecraft/world/item/ItemStack/EMPTY +FD: net/minecraft/world/item/ItemStack/f_41584_ net/minecraft/world/item/ItemStack/ATTRIBUTE_MODIFIER_FORMAT +FD: net/minecraft/world/item/ItemStack/f_41585_ net/minecraft/world/item/ItemStack/LOGGER +FD: net/minecraft/world/item/ItemStack/f_41586_ net/minecraft/world/item/ItemStack/LORE_STYLE +FD: net/minecraft/world/item/ItemStack/f_41587_ net/minecraft/world/item/ItemStack/count +FD: net/minecraft/world/item/ItemStack/f_41588_ net/minecraft/world/item/ItemStack/popTime +FD: net/minecraft/world/item/ItemStack/f_41589_ net/minecraft/world/item/ItemStack/item +FD: net/minecraft/world/item/ItemStack/f_41590_ net/minecraft/world/item/ItemStack/tag +FD: net/minecraft/world/item/ItemStack/f_41592_ net/minecraft/world/item/ItemStack/entityRepresentation +FD: net/minecraft/world/item/ItemStack$TooltipPart/$VALUES net/minecraft/world/item/ItemStack$TooltipPart/$VALUES +FD: net/minecraft/world/item/ItemStack$TooltipPart/ADDITIONAL net/minecraft/world/item/ItemStack$TooltipPart/ADDITIONAL +FD: net/minecraft/world/item/ItemStack$TooltipPart/CAN_DESTROY net/minecraft/world/item/ItemStack$TooltipPart/CAN_DESTROY +FD: net/minecraft/world/item/ItemStack$TooltipPart/CAN_PLACE net/minecraft/world/item/ItemStack$TooltipPart/CAN_PLACE +FD: net/minecraft/world/item/ItemStack$TooltipPart/DYE net/minecraft/world/item/ItemStack$TooltipPart/DYE +FD: net/minecraft/world/item/ItemStack$TooltipPart/ENCHANTMENTS net/minecraft/world/item/ItemStack$TooltipPart/ENCHANTMENTS +FD: net/minecraft/world/item/ItemStack$TooltipPart/MODIFIERS net/minecraft/world/item/ItemStack$TooltipPart/MODIFIERS +FD: net/minecraft/world/item/ItemStack$TooltipPart/UNBREAKABLE net/minecraft/world/item/ItemStack$TooltipPart/UNBREAKABLE +FD: net/minecraft/world/item/ItemStack$TooltipPart/UPGRADES net/minecraft/world/item/ItemStack$TooltipPart/UPGRADES +FD: net/minecraft/world/item/ItemStack$TooltipPart/f_41803_ net/minecraft/world/item/ItemStack$TooltipPart/mask +FD: net/minecraft/world/item/ItemStackLinkedSet/f_260558_ net/minecraft/world/item/ItemStackLinkedSet/TYPE_AND_TAG +FD: net/minecraft/world/item/Items/f_150963_ net/minecraft/world/item/Items/DEEPSLATE_COAL_ORE +FD: net/minecraft/world/item/Items/f_150964_ net/minecraft/world/item/Items/DEEPSLATE_IRON_ORE +FD: net/minecraft/world/item/Items/f_150965_ net/minecraft/world/item/Items/COPPER_ORE +FD: net/minecraft/world/item/Items/f_150966_ net/minecraft/world/item/Items/DEEPSLATE_COPPER_ORE +FD: net/minecraft/world/item/Items/f_150967_ net/minecraft/world/item/Items/DEEPSLATE_GOLD_ORE +FD: net/minecraft/world/item/Items/f_150968_ net/minecraft/world/item/Items/DEEPSLATE_REDSTONE_ORE +FD: net/minecraft/world/item/Items/f_150969_ net/minecraft/world/item/Items/DEEPSLATE_EMERALD_ORE +FD: net/minecraft/world/item/Items/f_150970_ net/minecraft/world/item/Items/EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150971_ net/minecraft/world/item/Items/WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150972_ net/minecraft/world/item/Items/OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150973_ net/minecraft/world/item/Items/CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150974_ net/minecraft/world/item/Items/EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150975_ net/minecraft/world/item/Items/WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150976_ net/minecraft/world/item/Items/OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150977_ net/minecraft/world/item/Items/WAXED_COPPER_BLOCK +FD: net/minecraft/world/item/Items/f_150978_ net/minecraft/world/item/Items/WAXED_EXPOSED_COPPER +FD: net/minecraft/world/item/Items/f_150979_ net/minecraft/world/item/Items/WAXED_WEATHERED_COPPER +FD: net/minecraft/world/item/Items/f_150980_ net/minecraft/world/item/Items/WAXED_OXIDIZED_COPPER +FD: net/minecraft/world/item/Items/f_150981_ net/minecraft/world/item/Items/WAXED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150982_ net/minecraft/world/item/Items/WAXED_EXPOSED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150983_ net/minecraft/world/item/Items/WAXED_WEATHERED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150984_ net/minecraft/world/item/Items/WAXED_OXIDIZED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150985_ net/minecraft/world/item/Items/WAXED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150986_ net/minecraft/world/item/Items/WAXED_EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150987_ net/minecraft/world/item/Items/WAXED_WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150988_ net/minecraft/world/item/Items/WAXED_OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150989_ net/minecraft/world/item/Items/WAXED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150990_ net/minecraft/world/item/Items/WAXED_EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150991_ net/minecraft/world/item/Items/WAXED_WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150992_ net/minecraft/world/item/Items/WAXED_OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150993_ net/minecraft/world/item/Items/DEEPSLATE_LAPIS_ORE +FD: net/minecraft/world/item/Items/f_150994_ net/minecraft/world/item/Items/DEEPSLATE_DIAMOND_ORE +FD: net/minecraft/world/item/Items/f_150995_ net/minecraft/world/item/Items/RAW_IRON_BLOCK +FD: net/minecraft/world/item/Items/f_150996_ net/minecraft/world/item/Items/RAW_COPPER_BLOCK +FD: net/minecraft/world/item/Items/f_150997_ net/minecraft/world/item/Items/RAW_GOLD_BLOCK +FD: net/minecraft/world/item/Items/f_150998_ net/minecraft/world/item/Items/AMETHYST_BLOCK +FD: net/minecraft/world/item/Items/f_150999_ net/minecraft/world/item/Items/BUDDING_AMETHYST +FD: net/minecraft/world/item/Items/f_151000_ net/minecraft/world/item/Items/COPPER_BLOCK +FD: net/minecraft/world/item/Items/f_151001_ net/minecraft/world/item/Items/EXPOSED_COPPER +FD: net/minecraft/world/item/Items/f_151002_ net/minecraft/world/item/Items/WEATHERED_COPPER +FD: net/minecraft/world/item/Items/f_151003_ net/minecraft/world/item/Items/OXIDIZED_COPPER +FD: net/minecraft/world/item/Items/f_151004_ net/minecraft/world/item/Items/CUT_COPPER +FD: net/minecraft/world/item/Items/f_151005_ net/minecraft/world/item/Items/EXPOSED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_151006_ net/minecraft/world/item/Items/WEATHERED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_151007_ net/minecraft/world/item/Items/OXIDIZED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_151008_ net/minecraft/world/item/Items/CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_151009_ net/minecraft/world/item/Items/AZALEA_LEAVES +FD: net/minecraft/world/item/Items/f_151011_ net/minecraft/world/item/Items/TINTED_GLASS +FD: net/minecraft/world/item/Items/f_151012_ net/minecraft/world/item/Items/AZALEA +FD: net/minecraft/world/item/Items/f_151013_ net/minecraft/world/item/Items/FLOWERING_AZALEA +FD: net/minecraft/world/item/Items/f_151014_ net/minecraft/world/item/Items/SPORE_BLOSSOM +FD: net/minecraft/world/item/Items/f_151015_ net/minecraft/world/item/Items/MOSS_CARPET +FD: net/minecraft/world/item/Items/f_151016_ net/minecraft/world/item/Items/MOSS_BLOCK +FD: net/minecraft/world/item/Items/f_151017_ net/minecraft/world/item/Items/HANGING_ROOTS +FD: net/minecraft/world/item/Items/f_151018_ net/minecraft/world/item/Items/BIG_DRIPLEAF +FD: net/minecraft/world/item/Items/f_151019_ net/minecraft/world/item/Items/SMALL_DRIPLEAF +FD: net/minecraft/world/item/Items/f_151020_ net/minecraft/world/item/Items/DEEPSLATE_BRICKS +FD: net/minecraft/world/item/Items/f_151021_ net/minecraft/world/item/Items/CRACKED_DEEPSLATE_BRICKS +FD: net/minecraft/world/item/Items/f_151022_ net/minecraft/world/item/Items/DEEPSLATE_TILES +FD: net/minecraft/world/item/Items/f_151023_ net/minecraft/world/item/Items/CRACKED_DEEPSLATE_TILES +FD: net/minecraft/world/item/Items/f_151024_ net/minecraft/world/item/Items/CHISELED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151025_ net/minecraft/world/item/Items/GLOW_LICHEN +FD: net/minecraft/world/item/Items/f_151026_ net/minecraft/world/item/Items/SMOOTH_BASALT +FD: net/minecraft/world/item/Items/f_151027_ net/minecraft/world/item/Items/INFESTED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151028_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE_WALL +FD: net/minecraft/world/item/Items/f_151029_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE_WALL +FD: net/minecraft/world/item/Items/f_151030_ net/minecraft/world/item/Items/DEEPSLATE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_151031_ net/minecraft/world/item/Items/DEEPSLATE_TILE_WALL +FD: net/minecraft/world/item/Items/f_151032_ net/minecraft/world/item/Items/DIRT_PATH +FD: net/minecraft/world/item/Items/f_151033_ net/minecraft/world/item/Items/LIGHT +FD: net/minecraft/world/item/Items/f_151034_ net/minecraft/world/item/Items/DEEPSLATE +FD: net/minecraft/world/item/Items/f_151035_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151036_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE_STAIRS +FD: net/minecraft/world/item/Items/f_151037_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE_STAIRS +FD: net/minecraft/world/item/Items/f_151038_ net/minecraft/world/item/Items/DEEPSLATE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_151039_ net/minecraft/world/item/Items/DEEPSLATE_TILE_STAIRS +FD: net/minecraft/world/item/Items/f_151040_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151041_ net/minecraft/world/item/Items/LIGHTNING_ROD +FD: net/minecraft/world/item/Items/f_151042_ net/minecraft/world/item/Items/SCULK_SENSOR +FD: net/minecraft/world/item/Items/f_151043_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE_SLAB +FD: net/minecraft/world/item/Items/f_151044_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE_SLAB +FD: net/minecraft/world/item/Items/f_151045_ net/minecraft/world/item/Items/DEEPSLATE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_151046_ net/minecraft/world/item/Items/DEEPSLATE_TILE_SLAB +FD: net/minecraft/world/item/Items/f_151047_ net/minecraft/world/item/Items/CALCITE +FD: net/minecraft/world/item/Items/f_151048_ net/minecraft/world/item/Items/TUFF +FD: net/minecraft/world/item/Items/f_151049_ net/minecraft/world/item/Items/AMETHYST_SHARD +FD: net/minecraft/world/item/Items/f_151050_ net/minecraft/world/item/Items/RAW_IRON +FD: net/minecraft/world/item/Items/f_151051_ net/minecraft/world/item/Items/RAW_COPPER +FD: net/minecraft/world/item/Items/f_151052_ net/minecraft/world/item/Items/COPPER_INGOT +FD: net/minecraft/world/item/Items/f_151053_ net/minecraft/world/item/Items/RAW_GOLD +FD: net/minecraft/world/item/Items/f_151054_ net/minecraft/world/item/Items/DRIPSTONE_BLOCK +FD: net/minecraft/world/item/Items/f_151055_ net/minecraft/world/item/Items/POWDER_SNOW_BUCKET +FD: net/minecraft/world/item/Items/f_151056_ net/minecraft/world/item/Items/GLOW_INK_SAC +FD: net/minecraft/world/item/Items/f_151057_ net/minecraft/world/item/Items/AXOLOTL_BUCKET +FD: net/minecraft/world/item/Items/f_151058_ net/minecraft/world/item/Items/BUNDLE +FD: net/minecraft/world/item/Items/f_151059_ net/minecraft/world/item/Items/SPYGLASS +FD: net/minecraft/world/item/Items/f_151060_ net/minecraft/world/item/Items/AXOLOTL_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_151061_ net/minecraft/world/item/Items/GLOW_SQUID_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_151062_ net/minecraft/world/item/Items/GOAT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_151063_ net/minecraft/world/item/Items/GLOW_ITEM_FRAME +FD: net/minecraft/world/item/Items/f_151064_ net/minecraft/world/item/Items/ROOTED_DIRT +FD: net/minecraft/world/item/Items/f_151065_ net/minecraft/world/item/Items/CANDLE +FD: net/minecraft/world/item/Items/f_151066_ net/minecraft/world/item/Items/WHITE_CANDLE +FD: net/minecraft/world/item/Items/f_151067_ net/minecraft/world/item/Items/ORANGE_CANDLE +FD: net/minecraft/world/item/Items/f_151068_ net/minecraft/world/item/Items/MAGENTA_CANDLE +FD: net/minecraft/world/item/Items/f_151069_ net/minecraft/world/item/Items/LIGHT_BLUE_CANDLE +FD: net/minecraft/world/item/Items/f_151070_ net/minecraft/world/item/Items/YELLOW_CANDLE +FD: net/minecraft/world/item/Items/f_151071_ net/minecraft/world/item/Items/LIME_CANDLE +FD: net/minecraft/world/item/Items/f_151072_ net/minecraft/world/item/Items/PINK_CANDLE +FD: net/minecraft/world/item/Items/f_151073_ net/minecraft/world/item/Items/GRAY_CANDLE +FD: net/minecraft/world/item/Items/f_151074_ net/minecraft/world/item/Items/LIGHT_GRAY_CANDLE +FD: net/minecraft/world/item/Items/f_151075_ net/minecraft/world/item/Items/CYAN_CANDLE +FD: net/minecraft/world/item/Items/f_151076_ net/minecraft/world/item/Items/PURPLE_CANDLE +FD: net/minecraft/world/item/Items/f_151077_ net/minecraft/world/item/Items/BLUE_CANDLE +FD: net/minecraft/world/item/Items/f_151078_ net/minecraft/world/item/Items/BROWN_CANDLE +FD: net/minecraft/world/item/Items/f_151079_ net/minecraft/world/item/Items/GLOW_BERRIES +FD: net/minecraft/world/item/Items/f_151080_ net/minecraft/world/item/Items/GREEN_CANDLE +FD: net/minecraft/world/item/Items/f_151081_ net/minecraft/world/item/Items/RED_CANDLE +FD: net/minecraft/world/item/Items/f_151082_ net/minecraft/world/item/Items/BLACK_CANDLE +FD: net/minecraft/world/item/Items/f_151083_ net/minecraft/world/item/Items/SMALL_AMETHYST_BUD +FD: net/minecraft/world/item/Items/f_151084_ net/minecraft/world/item/Items/MEDIUM_AMETHYST_BUD +FD: net/minecraft/world/item/Items/f_151085_ net/minecraft/world/item/Items/LARGE_AMETHYST_BUD +FD: net/minecraft/world/item/Items/f_151086_ net/minecraft/world/item/Items/AMETHYST_CLUSTER +FD: net/minecraft/world/item/Items/f_151087_ net/minecraft/world/item/Items/POINTED_DRIPSTONE +FD: net/minecraft/world/item/Items/f_186362_ net/minecraft/world/item/Items/FLOWERING_AZALEA_LEAVES +FD: net/minecraft/world/item/Items/f_186363_ net/minecraft/world/item/Items/MUSIC_DISC_OTHERSIDE +FD: net/minecraft/world/item/Items/f_186364_ net/minecraft/world/item/Items/GLOBE_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_220174_ net/minecraft/world/item/Items/MANGROVE_PLANKS +FD: net/minecraft/world/item/Items/f_220175_ net/minecraft/world/item/Items/MANGROVE_PROPAGULE +FD: net/minecraft/world/item/Items/f_220176_ net/minecraft/world/item/Items/STRIPPED_MANGROVE_WOOD +FD: net/minecraft/world/item/Items/f_220177_ net/minecraft/world/item/Items/MANGROVE_WOOD +FD: net/minecraft/world/item/Items/f_220178_ net/minecraft/world/item/Items/MANGROVE_LEAVES +FD: net/minecraft/world/item/Items/f_220179_ net/minecraft/world/item/Items/MANGROVE_LOG +FD: net/minecraft/world/item/Items/f_220180_ net/minecraft/world/item/Items/MANGROVE_ROOTS +FD: net/minecraft/world/item/Items/f_220181_ net/minecraft/world/item/Items/MUDDY_MANGROVE_ROOTS +FD: net/minecraft/world/item/Items/f_220182_ net/minecraft/world/item/Items/STRIPPED_MANGROVE_LOG +FD: net/minecraft/world/item/Items/f_220183_ net/minecraft/world/item/Items/MANGROVE_SLAB +FD: net/minecraft/world/item/Items/f_220184_ net/minecraft/world/item/Items/MUD_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_220185_ net/minecraft/world/item/Items/PACKED_MUD +FD: net/minecraft/world/item/Items/f_220186_ net/minecraft/world/item/Items/MUD_BRICKS +FD: net/minecraft/world/item/Items/f_220187_ net/minecraft/world/item/Items/REINFORCED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_220188_ net/minecraft/world/item/Items/MANGROVE_FENCE +FD: net/minecraft/world/item/Items/f_220189_ net/minecraft/world/item/Items/MANGROVE_STAIRS +FD: net/minecraft/world/item/Items/f_220190_ net/minecraft/world/item/Items/MUD_BRICK_WALL +FD: net/minecraft/world/item/Items/f_220191_ net/minecraft/world/item/Items/MUD_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_220192_ net/minecraft/world/item/Items/SCULK +FD: net/minecraft/world/item/Items/f_220193_ net/minecraft/world/item/Items/SCULK_VEIN +FD: net/minecraft/world/item/Items/f_220194_ net/minecraft/world/item/Items/SCULK_CATALYST +FD: net/minecraft/world/item/Items/f_220195_ net/minecraft/world/item/Items/SCULK_SHRIEKER +FD: net/minecraft/world/item/Items/f_220196_ net/minecraft/world/item/Items/MANGROVE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_220197_ net/minecraft/world/item/Items/MANGROVE_DOOR +FD: net/minecraft/world/item/Items/f_220198_ net/minecraft/world/item/Items/MANGROVE_TRAPDOOR +FD: net/minecraft/world/item/Items/f_220199_ net/minecraft/world/item/Items/MANGROVE_BUTTON +FD: net/minecraft/world/item/Items/f_220200_ net/minecraft/world/item/Items/BIRCH_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220201_ net/minecraft/world/item/Items/JUNGLE_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220202_ net/minecraft/world/item/Items/ACACIA_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220203_ net/minecraft/world/item/Items/DARK_OAK_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220204_ net/minecraft/world/item/Items/MANGROVE_BOAT +FD: net/minecraft/world/item/Items/f_220205_ net/minecraft/world/item/Items/MANGROVE_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220206_ net/minecraft/world/item/Items/MANGROVE_FENCE_GATE +FD: net/minecraft/world/item/Items/f_220207_ net/minecraft/world/item/Items/OAK_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220208_ net/minecraft/world/item/Items/SPRUCE_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220209_ net/minecraft/world/item/Items/MANGROVE_SIGN +FD: net/minecraft/world/item/Items/f_220210_ net/minecraft/world/item/Items/TADPOLE_BUCKET +FD: net/minecraft/world/item/Items/f_220211_ net/minecraft/world/item/Items/RECOVERY_COMPASS +FD: net/minecraft/world/item/Items/f_220212_ net/minecraft/world/item/Items/ALLAY_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220213_ net/minecraft/world/item/Items/FROG_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220214_ net/minecraft/world/item/Items/TADPOLE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220215_ net/minecraft/world/item/Items/WARDEN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220216_ net/minecraft/world/item/Items/MUD +FD: net/minecraft/world/item/Items/f_220217_ net/minecraft/world/item/Items/MUSIC_DISC_5 +FD: net/minecraft/world/item/Items/f_220218_ net/minecraft/world/item/Items/DISC_FRAGMENT_5 +FD: net/minecraft/world/item/Items/f_220219_ net/minecraft/world/item/Items/GOAT_HORN +FD: net/minecraft/world/item/Items/f_220220_ net/minecraft/world/item/Items/OCHRE_FROGLIGHT +FD: net/minecraft/world/item/Items/f_220221_ net/minecraft/world/item/Items/VERDANT_FROGLIGHT +FD: net/minecraft/world/item/Items/f_220222_ net/minecraft/world/item/Items/PEARLESCENT_FROGLIGHT +FD: net/minecraft/world/item/Items/f_220223_ net/minecraft/world/item/Items/FROGSPAWN +FD: net/minecraft/world/item/Items/f_220224_ net/minecraft/world/item/Items/ECHO_SHARD +FD: net/minecraft/world/item/Items/f_243694_ net/minecraft/world/item/Items/BAMBOO_PLANKS +FD: net/minecraft/world/item/Items/f_243722_ net/minecraft/world/item/Items/JUNGLE_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_243767_ net/minecraft/world/item/Items/CAMEL_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_243805_ net/minecraft/world/item/Items/DARK_OAK_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_243813_ net/minecraft/world/item/Items/BAMBOO_MOSAIC +FD: net/minecraft/world/item/Items/f_243820_ net/minecraft/world/item/Items/BAMBOO_DOOR +FD: net/minecraft/world/item/Items/f_243828_ net/minecraft/world/item/Items/BAMBOO_MOSAIC_STAIRS +FD: net/minecraft/world/item/Items/f_243860_ net/minecraft/world/item/Items/BAMBOO_SLAB +FD: net/minecraft/world/item/Items/f_243963_ net/minecraft/world/item/Items/SPRUCE_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_243999_ net/minecraft/world/item/Items/BAMBOO_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244057_ net/minecraft/world/item/Items/BAMBOO_SIGN +FD: net/minecraft/world/item/Items/f_244106_ net/minecraft/world/item/Items/BAMBOO_FENCE +FD: net/minecraft/world/item/Items/f_244160_ net/minecraft/world/item/Items/BAMBOO_MOSAIC_SLAB +FD: net/minecraft/world/item/Items/f_244189_ net/minecraft/world/item/Items/BAMBOO_STAIRS +FD: net/minecraft/world/item/Items/f_244260_ net/minecraft/world/item/Items/BAMBOO_CHEST_RAFT +FD: net/minecraft/world/item/Items/f_244311_ net/minecraft/world/item/Items/BAMBOO_TRAPDOOR +FD: net/minecraft/world/item/Items/f_244345_ net/minecraft/world/item/Items/BAMBOO_FENCE_GATE +FD: net/minecraft/world/item/Items/f_244406_ net/minecraft/world/item/Items/OAK_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244424_ net/minecraft/world/item/Items/BAMBOO_BUTTON +FD: net/minecraft/world/item/Items/f_244431_ net/minecraft/world/item/Items/BIRCH_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244440_ net/minecraft/world/item/Items/ACACIA_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244469_ net/minecraft/world/item/Items/BAMBOO_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_244479_ net/minecraft/world/item/Items/MANGROVE_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244617_ net/minecraft/world/item/Items/CRIMSON_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244624_ net/minecraft/world/item/Items/BAMBOO_RAFT +FD: net/minecraft/world/item/Items/f_244637_ net/minecraft/world/item/Items/WARPED_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244640_ net/minecraft/world/item/Items/CHISELED_BOOKSHELF +FD: net/minecraft/world/item/Items/f_254656_ net/minecraft/world/item/Items/SNOW_GOLEM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_254669_ net/minecraft/world/item/Items/WITHER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_254703_ net/minecraft/world/item/Items/ENDER_DRAGON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_254737_ net/minecraft/world/item/Items/IRON_GOLEM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_256923_ net/minecraft/world/item/Items/STRIPPED_BAMBOO_BLOCK +FD: net/minecraft/world/item/Items/f_256933_ net/minecraft/world/item/Items/BAMBOO_BLOCK +FD: net/minecraft/world/item/Items/f_260451_ net/minecraft/world/item/Items/PIGLIN_HEAD +FD: net/minecraft/world/item/Items/f_265858_ net/minecraft/world/item/Items/RIB_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265887_ net/minecraft/world/item/Items/WILD_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265914_ net/minecraft/world/item/Items/COAST_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265918_ net/minecraft/world/item/Items/NETHERITE_UPGRADE_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265946_ net/minecraft/world/item/Items/TIDE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265964_ net/minecraft/world/item/Items/VEX_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265965_ net/minecraft/world/item/Items/EYE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265974_ net/minecraft/world/item/Items/SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265996_ net/minecraft/world/item/Items/SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_266029_ net/minecraft/world/item/Items/WARD_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_266078_ net/minecraft/world/item/Items/DUNE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_266114_ net/minecraft/world/item/Items/SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_271090_ net/minecraft/world/item/Items/CHERRY_LOG +FD: net/minecraft/world/item/Items/f_271114_ net/minecraft/world/item/Items/CHERRY_TRAPDOOR +FD: net/minecraft/world/item/Items/f_271133_ net/minecraft/world/item/Items/TORCHFLOWER_SEEDS +FD: net/minecraft/world/item/Items/f_271154_ net/minecraft/world/item/Items/CHERRY_PLANKS +FD: net/minecraft/world/item/Items/f_271164_ net/minecraft/world/item/Items/STRIPPED_CHERRY_LOG +FD: net/minecraft/world/item/Items/f_271182_ net/minecraft/world/item/Items/STRIPPED_CHERRY_WOOD +FD: net/minecraft/world/item/Items/f_271205_ net/minecraft/world/item/Items/CHERRY_FENCE_GATE +FD: net/minecraft/world/item/Items/f_271209_ net/minecraft/world/item/Items/PINK_PETALS +FD: net/minecraft/world/item/Items/f_271282_ net/minecraft/world/item/Items/CHERRY_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_271302_ net/minecraft/world/item/Items/CHERRY_WOOD +FD: net/minecraft/world/item/Items/f_271316_ net/minecraft/world/item/Items/CHERRY_FENCE +FD: net/minecraft/world/item/Items/f_271327_ net/minecraft/world/item/Items/SUSPICIOUS_SAND +FD: net/minecraft/world/item/Items/f_271349_ net/minecraft/world/item/Items/CHERRY_SLAB +FD: net/minecraft/world/item/Items/f_271356_ net/minecraft/world/item/Items/BRUSH +FD: net/minecraft/world/item/Items/f_271374_ net/minecraft/world/item/Items/SNIFFER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_271375_ net/minecraft/world/item/Items/CHERRY_SAPLING +FD: net/minecraft/world/item/Items/f_271386_ net/minecraft/world/item/Items/CHERRY_BOAT +FD: net/minecraft/world/item/Items/f_271397_ net/minecraft/world/item/Items/CHERRY_STAIRS +FD: net/minecraft/world/item/Items/f_271459_ net/minecraft/world/item/Items/CHERRY_DOOR +FD: net/minecraft/world/item/Items/f_271471_ net/minecraft/world/item/Items/TORCHFLOWER +FD: net/minecraft/world/item/Items/f_271474_ net/minecraft/world/item/Items/CHERRY_BUTTON +FD: net/minecraft/world/item/Items/f_271478_ net/minecraft/world/item/Items/DECORATED_POT +FD: net/minecraft/world/item/Items/f_271490_ net/minecraft/world/item/Items/CHERRY_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_271501_ net/minecraft/world/item/Items/CHERRY_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_271504_ net/minecraft/world/item/Items/CHERRY_SIGN +FD: net/minecraft/world/item/Items/f_271517_ net/minecraft/world/item/Items/CHERRY_LEAVES +FD: net/minecraft/world/item/Items/f_276433_ net/minecraft/world/item/Items/HOST_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276465_ net/minecraft/world/item/Items/RAISER_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276468_ net/minecraft/world/item/Items/SNIFFER_EGG +FD: net/minecraft/world/item/Items/f_276537_ net/minecraft/world/item/Items/SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276539_ net/minecraft/world/item/Items/CALIBRATED_SCULK_SENSOR +FD: net/minecraft/world/item/Items/f_276546_ net/minecraft/world/item/Items/SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276594_ net/minecraft/world/item/Items/PITCHER_POD +FD: net/minecraft/world/item/Items/f_276612_ net/minecraft/world/item/Items/WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276672_ net/minecraft/world/item/Items/SUSPICIOUS_GRAVEL +FD: net/minecraft/world/item/Items/f_276698_ net/minecraft/world/item/Items/PITCHER_PLANT +FD: net/minecraft/world/item/Items/f_279528_ net/minecraft/world/item/Items/PRIZE_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279529_ net/minecraft/world/item/Items/SHELTER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279545_ net/minecraft/world/item/Items/SHEAF_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279559_ net/minecraft/world/item/Items/MINER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279560_ net/minecraft/world/item/Items/MOURNER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279567_ net/minecraft/world/item/Items/BLADE_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279570_ net/minecraft/world/item/Items/SKULL_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279583_ net/minecraft/world/item/Items/BREWER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279584_ net/minecraft/world/item/Items/FRIEND_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279598_ net/minecraft/world/item/Items/HOWL_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279606_ net/minecraft/world/item/Items/HEARTBREAK_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279616_ net/minecraft/world/item/Items/EXPLORER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279619_ net/minecraft/world/item/Items/DANGER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279623_ net/minecraft/world/item/Items/HEART_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279633_ net/minecraft/world/item/Items/ANGLER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279634_ net/minecraft/world/item/Items/ARMS_UP_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279636_ net/minecraft/world/item/Items/SNORT_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279642_ net/minecraft/world/item/Items/ARCHER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279647_ net/minecraft/world/item/Items/PLENTY_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279650_ net/minecraft/world/item/Items/BURN_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_283830_ net/minecraft/world/item/Items/MUSIC_DISC_RELIC +FD: net/minecraft/world/item/Items/f_41826_ net/minecraft/world/item/Items/JUNGLE_SAPLING +FD: net/minecraft/world/item/Items/f_41827_ net/minecraft/world/item/Items/ACACIA_SAPLING +FD: net/minecraft/world/item/Items/f_41828_ net/minecraft/world/item/Items/DARK_OAK_SAPLING +FD: net/minecraft/world/item/Items/f_41829_ net/minecraft/world/item/Items/BEDROCK +FD: net/minecraft/world/item/Items/f_41830_ net/minecraft/world/item/Items/SAND +FD: net/minecraft/world/item/Items/f_41831_ net/minecraft/world/item/Items/RED_SAND +FD: net/minecraft/world/item/Items/f_41832_ net/minecraft/world/item/Items/GRAVEL +FD: net/minecraft/world/item/Items/f_41833_ net/minecraft/world/item/Items/GOLD_ORE +FD: net/minecraft/world/item/Items/f_41834_ net/minecraft/world/item/Items/IRON_ORE +FD: net/minecraft/world/item/Items/f_41835_ net/minecraft/world/item/Items/COAL_ORE +FD: net/minecraft/world/item/Items/f_41836_ net/minecraft/world/item/Items/NETHER_GOLD_ORE +FD: net/minecraft/world/item/Items/f_41837_ net/minecraft/world/item/Items/OAK_LOG +FD: net/minecraft/world/item/Items/f_41838_ net/minecraft/world/item/Items/SPRUCE_LOG +FD: net/minecraft/world/item/Items/f_41839_ net/minecraft/world/item/Items/BIRCH_LOG +FD: net/minecraft/world/item/Items/f_41840_ net/minecraft/world/item/Items/JUNGLE_LOG +FD: net/minecraft/world/item/Items/f_41841_ net/minecraft/world/item/Items/ACACIA_LOG +FD: net/minecraft/world/item/Items/f_41842_ net/minecraft/world/item/Items/DARK_OAK_LOG +FD: net/minecraft/world/item/Items/f_41843_ net/minecraft/world/item/Items/CRIMSON_STEM +FD: net/minecraft/world/item/Items/f_41844_ net/minecraft/world/item/Items/WARPED_STEM +FD: net/minecraft/world/item/Items/f_41845_ net/minecraft/world/item/Items/STRIPPED_OAK_LOG +FD: net/minecraft/world/item/Items/f_41846_ net/minecraft/world/item/Items/STRIPPED_SPRUCE_LOG +FD: net/minecraft/world/item/Items/f_41847_ net/minecraft/world/item/Items/STRIPPED_BIRCH_LOG +FD: net/minecraft/world/item/Items/f_41848_ net/minecraft/world/item/Items/STRIPPED_JUNGLE_LOG +FD: net/minecraft/world/item/Items/f_41849_ net/minecraft/world/item/Items/STRIPPED_ACACIA_LOG +FD: net/minecraft/world/item/Items/f_41850_ net/minecraft/world/item/Items/STRIPPED_DARK_OAK_LOG +FD: net/minecraft/world/item/Items/f_41851_ net/minecraft/world/item/Items/STRIPPED_CRIMSON_STEM +FD: net/minecraft/world/item/Items/f_41852_ net/minecraft/world/item/Items/AIR +FD: net/minecraft/world/item/Items/f_41853_ net/minecraft/world/item/Items/LAPIS_ORE +FD: net/minecraft/world/item/Items/f_41854_ net/minecraft/world/item/Items/LAPIS_BLOCK +FD: net/minecraft/world/item/Items/f_41855_ net/minecraft/world/item/Items/DISPENSER +FD: net/minecraft/world/item/Items/f_41856_ net/minecraft/world/item/Items/SANDSTONE +FD: net/minecraft/world/item/Items/f_41857_ net/minecraft/world/item/Items/CHISELED_SANDSTONE +FD: net/minecraft/world/item/Items/f_41858_ net/minecraft/world/item/Items/CUT_SANDSTONE +FD: net/minecraft/world/item/Items/f_41859_ net/minecraft/world/item/Items/NOTE_BLOCK +FD: net/minecraft/world/item/Items/f_41860_ net/minecraft/world/item/Items/POWERED_RAIL +FD: net/minecraft/world/item/Items/f_41861_ net/minecraft/world/item/Items/DETECTOR_RAIL +FD: net/minecraft/world/item/Items/f_41862_ net/minecraft/world/item/Items/STICKY_PISTON +FD: net/minecraft/world/item/Items/f_41863_ net/minecraft/world/item/Items/COBWEB +FD: net/minecraft/world/item/Items/f_41864_ net/minecraft/world/item/Items/GRASS +FD: net/minecraft/world/item/Items/f_41865_ net/minecraft/world/item/Items/FERN +FD: net/minecraft/world/item/Items/f_41866_ net/minecraft/world/item/Items/DEAD_BUSH +FD: net/minecraft/world/item/Items/f_41867_ net/minecraft/world/item/Items/SEAGRASS +FD: net/minecraft/world/item/Items/f_41868_ net/minecraft/world/item/Items/SEA_PICKLE +FD: net/minecraft/world/item/Items/f_41869_ net/minecraft/world/item/Items/PISTON +FD: net/minecraft/world/item/Items/f_41870_ net/minecraft/world/item/Items/WHITE_WOOL +FD: net/minecraft/world/item/Items/f_41871_ net/minecraft/world/item/Items/ORANGE_WOOL +FD: net/minecraft/world/item/Items/f_41872_ net/minecraft/world/item/Items/MAGENTA_WOOL +FD: net/minecraft/world/item/Items/f_41873_ net/minecraft/world/item/Items/LIGHT_BLUE_WOOL +FD: net/minecraft/world/item/Items/f_41874_ net/minecraft/world/item/Items/YELLOW_WOOL +FD: net/minecraft/world/item/Items/f_41875_ net/minecraft/world/item/Items/LIME_WOOL +FD: net/minecraft/world/item/Items/f_41876_ net/minecraft/world/item/Items/PINK_WOOL +FD: net/minecraft/world/item/Items/f_41877_ net/minecraft/world/item/Items/GRAY_WOOL +FD: net/minecraft/world/item/Items/f_41878_ net/minecraft/world/item/Items/LIGHT_GRAY_WOOL +FD: net/minecraft/world/item/Items/f_41879_ net/minecraft/world/item/Items/STRIPPED_WARPED_STEM +FD: net/minecraft/world/item/Items/f_41880_ net/minecraft/world/item/Items/STRIPPED_OAK_WOOD +FD: net/minecraft/world/item/Items/f_41881_ net/minecraft/world/item/Items/STRIPPED_SPRUCE_WOOD +FD: net/minecraft/world/item/Items/f_41882_ net/minecraft/world/item/Items/STRIPPED_BIRCH_WOOD +FD: net/minecraft/world/item/Items/f_41883_ net/minecraft/world/item/Items/STRIPPED_JUNGLE_WOOD +FD: net/minecraft/world/item/Items/f_41884_ net/minecraft/world/item/Items/STRIPPED_ACACIA_WOOD +FD: net/minecraft/world/item/Items/f_41885_ net/minecraft/world/item/Items/STRIPPED_DARK_OAK_WOOD +FD: net/minecraft/world/item/Items/f_41886_ net/minecraft/world/item/Items/STRIPPED_CRIMSON_HYPHAE +FD: net/minecraft/world/item/Items/f_41887_ net/minecraft/world/item/Items/STRIPPED_WARPED_HYPHAE +FD: net/minecraft/world/item/Items/f_41888_ net/minecraft/world/item/Items/OAK_WOOD +FD: net/minecraft/world/item/Items/f_41889_ net/minecraft/world/item/Items/SPRUCE_WOOD +FD: net/minecraft/world/item/Items/f_41890_ net/minecraft/world/item/Items/BIRCH_WOOD +FD: net/minecraft/world/item/Items/f_41891_ net/minecraft/world/item/Items/JUNGLE_WOOD +FD: net/minecraft/world/item/Items/f_41892_ net/minecraft/world/item/Items/ACACIA_WOOD +FD: net/minecraft/world/item/Items/f_41893_ net/minecraft/world/item/Items/DARK_OAK_WOOD +FD: net/minecraft/world/item/Items/f_41894_ net/minecraft/world/item/Items/CRIMSON_HYPHAE +FD: net/minecraft/world/item/Items/f_41895_ net/minecraft/world/item/Items/WARPED_HYPHAE +FD: net/minecraft/world/item/Items/f_41896_ net/minecraft/world/item/Items/OAK_LEAVES +FD: net/minecraft/world/item/Items/f_41897_ net/minecraft/world/item/Items/SPRUCE_LEAVES +FD: net/minecraft/world/item/Items/f_41898_ net/minecraft/world/item/Items/BIRCH_LEAVES +FD: net/minecraft/world/item/Items/f_41899_ net/minecraft/world/item/Items/JUNGLE_LEAVES +FD: net/minecraft/world/item/Items/f_41900_ net/minecraft/world/item/Items/ACACIA_LEAVES +FD: net/minecraft/world/item/Items/f_41901_ net/minecraft/world/item/Items/DARK_OAK_LEAVES +FD: net/minecraft/world/item/Items/f_41902_ net/minecraft/world/item/Items/SPONGE +FD: net/minecraft/world/item/Items/f_41903_ net/minecraft/world/item/Items/WET_SPONGE +FD: net/minecraft/world/item/Items/f_41904_ net/minecraft/world/item/Items/GLASS +FD: net/minecraft/world/item/Items/f_41905_ net/minecraft/world/item/Items/STONE +FD: net/minecraft/world/item/Items/f_41906_ net/minecraft/world/item/Items/NETHER_SPROUTS +FD: net/minecraft/world/item/Items/f_41907_ net/minecraft/world/item/Items/WEEPING_VINES +FD: net/minecraft/world/item/Items/f_41908_ net/minecraft/world/item/Items/TWISTING_VINES +FD: net/minecraft/world/item/Items/f_41909_ net/minecraft/world/item/Items/SUGAR_CANE +FD: net/minecraft/world/item/Items/f_41910_ net/minecraft/world/item/Items/KELP +FD: net/minecraft/world/item/Items/f_41911_ net/minecraft/world/item/Items/BAMBOO +FD: net/minecraft/world/item/Items/f_41912_ net/minecraft/world/item/Items/GOLD_BLOCK +FD: net/minecraft/world/item/Items/f_41913_ net/minecraft/world/item/Items/IRON_BLOCK +FD: net/minecraft/world/item/Items/f_41914_ net/minecraft/world/item/Items/OAK_SLAB +FD: net/minecraft/world/item/Items/f_41915_ net/minecraft/world/item/Items/SPRUCE_SLAB +FD: net/minecraft/world/item/Items/f_41916_ net/minecraft/world/item/Items/BIRCH_SLAB +FD: net/minecraft/world/item/Items/f_41917_ net/minecraft/world/item/Items/JUNGLE_SLAB +FD: net/minecraft/world/item/Items/f_41918_ net/minecraft/world/item/Items/ACACIA_SLAB +FD: net/minecraft/world/item/Items/f_41919_ net/minecraft/world/item/Items/DARK_OAK_SLAB +FD: net/minecraft/world/item/Items/f_41920_ net/minecraft/world/item/Items/CRIMSON_SLAB +FD: net/minecraft/world/item/Items/f_41921_ net/minecraft/world/item/Items/WARPED_SLAB +FD: net/minecraft/world/item/Items/f_41922_ net/minecraft/world/item/Items/STONE_SLAB +FD: net/minecraft/world/item/Items/f_41923_ net/minecraft/world/item/Items/SMOOTH_STONE_SLAB +FD: net/minecraft/world/item/Items/f_41924_ net/minecraft/world/item/Items/SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41925_ net/minecraft/world/item/Items/CUT_STANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41926_ net/minecraft/world/item/Items/PETRIFIED_OAK_SLAB +FD: net/minecraft/world/item/Items/f_41927_ net/minecraft/world/item/Items/COBBLESTONE_SLAB +FD: net/minecraft/world/item/Items/f_41928_ net/minecraft/world/item/Items/BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41929_ net/minecraft/world/item/Items/STONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41930_ net/minecraft/world/item/Items/NETHER_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41931_ net/minecraft/world/item/Items/QUARTZ_SLAB +FD: net/minecraft/world/item/Items/f_41932_ net/minecraft/world/item/Items/CYAN_WOOL +FD: net/minecraft/world/item/Items/f_41933_ net/minecraft/world/item/Items/PURPLE_WOOL +FD: net/minecraft/world/item/Items/f_41934_ net/minecraft/world/item/Items/BLUE_WOOL +FD: net/minecraft/world/item/Items/f_41935_ net/minecraft/world/item/Items/BROWN_WOOL +FD: net/minecraft/world/item/Items/f_41936_ net/minecraft/world/item/Items/GREEN_WOOL +FD: net/minecraft/world/item/Items/f_41937_ net/minecraft/world/item/Items/RED_WOOL +FD: net/minecraft/world/item/Items/f_41938_ net/minecraft/world/item/Items/BLACK_WOOL +FD: net/minecraft/world/item/Items/f_41939_ net/minecraft/world/item/Items/DANDELION +FD: net/minecraft/world/item/Items/f_41940_ net/minecraft/world/item/Items/POPPY +FD: net/minecraft/world/item/Items/f_41941_ net/minecraft/world/item/Items/BLUE_ORCHID +FD: net/minecraft/world/item/Items/f_41942_ net/minecraft/world/item/Items/ALLIUM +FD: net/minecraft/world/item/Items/f_41943_ net/minecraft/world/item/Items/AZURE_BLUET +FD: net/minecraft/world/item/Items/f_41944_ net/minecraft/world/item/Items/RED_TULIP +FD: net/minecraft/world/item/Items/f_41945_ net/minecraft/world/item/Items/ORANGE_TULIP +FD: net/minecraft/world/item/Items/f_41946_ net/minecraft/world/item/Items/WHITE_TULIP +FD: net/minecraft/world/item/Items/f_41947_ net/minecraft/world/item/Items/PINK_TULIP +FD: net/minecraft/world/item/Items/f_41948_ net/minecraft/world/item/Items/OXEYE_DAISY +FD: net/minecraft/world/item/Items/f_41949_ net/minecraft/world/item/Items/CORNFLOWER +FD: net/minecraft/world/item/Items/f_41950_ net/minecraft/world/item/Items/LILY_OF_THE_VALLEY +FD: net/minecraft/world/item/Items/f_41951_ net/minecraft/world/item/Items/WITHER_ROSE +FD: net/minecraft/world/item/Items/f_41952_ net/minecraft/world/item/Items/BROWN_MUSHROOM +FD: net/minecraft/world/item/Items/f_41953_ net/minecraft/world/item/Items/RED_MUSHROOM +FD: net/minecraft/world/item/Items/f_41954_ net/minecraft/world/item/Items/CRIMSON_FUNGUS +FD: net/minecraft/world/item/Items/f_41955_ net/minecraft/world/item/Items/WARPED_FUNGUS +FD: net/minecraft/world/item/Items/f_41956_ net/minecraft/world/item/Items/CRIMSON_ROOTS +FD: net/minecraft/world/item/Items/f_41957_ net/minecraft/world/item/Items/WARPED_ROOTS +FD: net/minecraft/world/item/Items/f_41958_ net/minecraft/world/item/Items/GRANITE +FD: net/minecraft/world/item/Items/f_41959_ net/minecraft/world/item/Items/DIAMOND_BLOCK +FD: net/minecraft/world/item/Items/f_41960_ net/minecraft/world/item/Items/CRAFTING_TABLE +FD: net/minecraft/world/item/Items/f_41961_ net/minecraft/world/item/Items/FARMLAND +FD: net/minecraft/world/item/Items/f_41962_ net/minecraft/world/item/Items/FURNACE +FD: net/minecraft/world/item/Items/f_41963_ net/minecraft/world/item/Items/LADDER +FD: net/minecraft/world/item/Items/f_41964_ net/minecraft/world/item/Items/RAIL +FD: net/minecraft/world/item/Items/f_41965_ net/minecraft/world/item/Items/COBBLESTONE_STAIRS +FD: net/minecraft/world/item/Items/f_41966_ net/minecraft/world/item/Items/LEVER +FD: net/minecraft/world/item/Items/f_41967_ net/minecraft/world/item/Items/STONE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41968_ net/minecraft/world/item/Items/OAK_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41969_ net/minecraft/world/item/Items/SPRUCE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41970_ net/minecraft/world/item/Items/BIRCH_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41971_ net/minecraft/world/item/Items/JUNGLE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41972_ net/minecraft/world/item/Items/ACACIA_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41973_ net/minecraft/world/item/Items/DARK_OAK_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41974_ net/minecraft/world/item/Items/CRIMSON_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41975_ net/minecraft/world/item/Items/WARPED_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41976_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41977_ net/minecraft/world/item/Items/REDSTONE_ORE +FD: net/minecraft/world/item/Items/f_41978_ net/minecraft/world/item/Items/REDSTONE_TORCH +FD: net/minecraft/world/item/Items/f_41979_ net/minecraft/world/item/Items/SNOW +FD: net/minecraft/world/item/Items/f_41980_ net/minecraft/world/item/Items/ICE +FD: net/minecraft/world/item/Items/f_41981_ net/minecraft/world/item/Items/SNOW_BLOCK +FD: net/minecraft/world/item/Items/f_41982_ net/minecraft/world/item/Items/CACTUS +FD: net/minecraft/world/item/Items/f_41983_ net/minecraft/world/item/Items/CLAY +FD: net/minecraft/world/item/Items/f_41984_ net/minecraft/world/item/Items/JUKEBOX +FD: net/minecraft/world/item/Items/f_41985_ net/minecraft/world/item/Items/RED_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41986_ net/minecraft/world/item/Items/CUT_RED_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41987_ net/minecraft/world/item/Items/PURPUR_SLAB +FD: net/minecraft/world/item/Items/f_41988_ net/minecraft/world/item/Items/PRISMARINE_SLAB +FD: net/minecraft/world/item/Items/f_41989_ net/minecraft/world/item/Items/PRISMARINE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41990_ net/minecraft/world/item/Items/DARK_PRISMARINE_SLAB +FD: net/minecraft/world/item/Items/f_41991_ net/minecraft/world/item/Items/SMOOTH_QUARTZ +FD: net/minecraft/world/item/Items/f_41992_ net/minecraft/world/item/Items/SMOOTH_RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_41993_ net/minecraft/world/item/Items/SMOOTH_SANDSTONE +FD: net/minecraft/world/item/Items/f_41994_ net/minecraft/world/item/Items/SMOOTH_STONE +FD: net/minecraft/world/item/Items/f_41995_ net/minecraft/world/item/Items/BRICKS +FD: net/minecraft/world/item/Items/f_41996_ net/minecraft/world/item/Items/TNT +FD: net/minecraft/world/item/Items/f_41997_ net/minecraft/world/item/Items/BOOKSHELF +FD: net/minecraft/world/item/Items/f_41998_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE +FD: net/minecraft/world/item/Items/f_41999_ net/minecraft/world/item/Items/OBSIDIAN +FD: net/minecraft/world/item/Items/f_42000_ net/minecraft/world/item/Items/TORCH +FD: net/minecraft/world/item/Items/f_42001_ net/minecraft/world/item/Items/END_ROD +FD: net/minecraft/world/item/Items/f_42002_ net/minecraft/world/item/Items/CHORUS_PLANT +FD: net/minecraft/world/item/Items/f_42003_ net/minecraft/world/item/Items/CHORUS_FLOWER +FD: net/minecraft/world/item/Items/f_42004_ net/minecraft/world/item/Items/PURPUR_BLOCK +FD: net/minecraft/world/item/Items/f_42005_ net/minecraft/world/item/Items/PURPUR_PILLAR +FD: net/minecraft/world/item/Items/f_42006_ net/minecraft/world/item/Items/PURPUR_STAIRS +FD: net/minecraft/world/item/Items/f_42007_ net/minecraft/world/item/Items/SPAWNER +FD: net/minecraft/world/item/Items/f_42008_ net/minecraft/world/item/Items/OAK_STAIRS +FD: net/minecraft/world/item/Items/f_42009_ net/minecraft/world/item/Items/CHEST +FD: net/minecraft/world/item/Items/f_42010_ net/minecraft/world/item/Items/DIAMOND_ORE +FD: net/minecraft/world/item/Items/f_42011_ net/minecraft/world/item/Items/POLISHED_GRANITE +FD: net/minecraft/world/item/Items/f_42012_ net/minecraft/world/item/Items/INFESTED_STONE +FD: net/minecraft/world/item/Items/f_42013_ net/minecraft/world/item/Items/INFESTED_COBBLESTONE +FD: net/minecraft/world/item/Items/f_42014_ net/minecraft/world/item/Items/INFESTED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42015_ net/minecraft/world/item/Items/INFESTED_MOSSY_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42016_ net/minecraft/world/item/Items/INFESTED_CRACKED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42017_ net/minecraft/world/item/Items/INFESTED_CHISELED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42018_ net/minecraft/world/item/Items/STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42019_ net/minecraft/world/item/Items/MOSSY_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42020_ net/minecraft/world/item/Items/CRACKED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42021_ net/minecraft/world/item/Items/CHISELED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42022_ net/minecraft/world/item/Items/BROWN_MUSHROOM_BLOCK +FD: net/minecraft/world/item/Items/f_42023_ net/minecraft/world/item/Items/RED_MUSHROOM_BLOCK +FD: net/minecraft/world/item/Items/f_42024_ net/minecraft/world/item/Items/MUSHROOM_STEM +FD: net/minecraft/world/item/Items/f_42025_ net/minecraft/world/item/Items/IRON_BARS +FD: net/minecraft/world/item/Items/f_42026_ net/minecraft/world/item/Items/CHAIN +FD: net/minecraft/world/item/Items/f_42027_ net/minecraft/world/item/Items/GLASS_PANE +FD: net/minecraft/world/item/Items/f_42028_ net/minecraft/world/item/Items/MELON +FD: net/minecraft/world/item/Items/f_42029_ net/minecraft/world/item/Items/VINE +FD: net/minecraft/world/item/Items/f_42030_ net/minecraft/world/item/Items/OAK_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42031_ net/minecraft/world/item/Items/SPRUCE_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42032_ net/minecraft/world/item/Items/BIRCH_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42033_ net/minecraft/world/item/Items/JUNGLE_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42034_ net/minecraft/world/item/Items/ACACIA_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42035_ net/minecraft/world/item/Items/DARK_OAK_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42036_ net/minecraft/world/item/Items/CRIMSON_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42037_ net/minecraft/world/item/Items/WARPED_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42038_ net/minecraft/world/item/Items/OAK_FENCE +FD: net/minecraft/world/item/Items/f_42039_ net/minecraft/world/item/Items/SPRUCE_FENCE +FD: net/minecraft/world/item/Items/f_42040_ net/minecraft/world/item/Items/BIRCH_FENCE +FD: net/minecraft/world/item/Items/f_42041_ net/minecraft/world/item/Items/JUNGLE_FENCE +FD: net/minecraft/world/item/Items/f_42042_ net/minecraft/world/item/Items/ACACIA_FENCE +FD: net/minecraft/world/item/Items/f_42043_ net/minecraft/world/item/Items/DARK_OAK_FENCE +FD: net/minecraft/world/item/Items/f_42044_ net/minecraft/world/item/Items/CRIMSON_FENCE +FD: net/minecraft/world/item/Items/f_42045_ net/minecraft/world/item/Items/WARPED_FENCE +FD: net/minecraft/world/item/Items/f_42046_ net/minecraft/world/item/Items/PUMPKIN +FD: net/minecraft/world/item/Items/f_42047_ net/minecraft/world/item/Items/CARVED_PUMPKIN +FD: net/minecraft/world/item/Items/f_42048_ net/minecraft/world/item/Items/NETHERRACK +FD: net/minecraft/world/item/Items/f_42049_ net/minecraft/world/item/Items/SOUL_SAND +FD: net/minecraft/world/item/Items/f_42050_ net/minecraft/world/item/Items/SOUL_SOIL +FD: net/minecraft/world/item/Items/f_42051_ net/minecraft/world/item/Items/BASALT +FD: net/minecraft/world/item/Items/f_42052_ net/minecraft/world/item/Items/POLISHED_BASALT +FD: net/minecraft/world/item/Items/f_42053_ net/minecraft/world/item/Items/SOUL_TORCH +FD: net/minecraft/world/item/Items/f_42054_ net/minecraft/world/item/Items/GLOWSTONE +FD: net/minecraft/world/item/Items/f_42055_ net/minecraft/world/item/Items/JACK_O_LANTERN +FD: net/minecraft/world/item/Items/f_42056_ net/minecraft/world/item/Items/OAK_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42057_ net/minecraft/world/item/Items/SPRUCE_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42058_ net/minecraft/world/item/Items/BIRCH_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42059_ net/minecraft/world/item/Items/JUNGLE_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42060_ net/minecraft/world/item/Items/ACACIA_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42061_ net/minecraft/world/item/Items/DARK_OAK_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42062_ net/minecraft/world/item/Items/CRIMSON_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42063_ net/minecraft/world/item/Items/WARPED_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42064_ net/minecraft/world/item/Items/DIORITE +FD: net/minecraft/world/item/Items/f_42065_ net/minecraft/world/item/Items/BEACON +FD: net/minecraft/world/item/Items/f_42066_ net/minecraft/world/item/Items/COBBLESTONE_WALL +FD: net/minecraft/world/item/Items/f_42067_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE_WALL +FD: net/minecraft/world/item/Items/f_42068_ net/minecraft/world/item/Items/BRICK_WALL +FD: net/minecraft/world/item/Items/f_42069_ net/minecraft/world/item/Items/PRISMARINE_WALL +FD: net/minecraft/world/item/Items/f_42070_ net/minecraft/world/item/Items/RED_SANDSTONE_WALL +FD: net/minecraft/world/item/Items/f_42071_ net/minecraft/world/item/Items/MOSSY_STONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42072_ net/minecraft/world/item/Items/GRANITE_WALL +FD: net/minecraft/world/item/Items/f_42073_ net/minecraft/world/item/Items/STONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42074_ net/minecraft/world/item/Items/NETHER_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42075_ net/minecraft/world/item/Items/ANDESITE_WALL +FD: net/minecraft/world/item/Items/f_42076_ net/minecraft/world/item/Items/RED_NETHER_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42077_ net/minecraft/world/item/Items/SANDSTONE_WALL +FD: net/minecraft/world/item/Items/f_42078_ net/minecraft/world/item/Items/END_STONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42079_ net/minecraft/world/item/Items/DIORITE_WALL +FD: net/minecraft/world/item/Items/f_42080_ net/minecraft/world/item/Items/BLACKSTONE_WALL +FD: net/minecraft/world/item/Items/f_42081_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_WALL +FD: net/minecraft/world/item/Items/f_42082_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42083_ net/minecraft/world/item/Items/STONE_BUTTON +FD: net/minecraft/world/item/Items/f_42084_ net/minecraft/world/item/Items/OAK_BUTTON +FD: net/minecraft/world/item/Items/f_42085_ net/minecraft/world/item/Items/SPRUCE_BUTTON +FD: net/minecraft/world/item/Items/f_42086_ net/minecraft/world/item/Items/BIRCH_BUTTON +FD: net/minecraft/world/item/Items/f_42087_ net/minecraft/world/item/Items/JUNGLE_BUTTON +FD: net/minecraft/world/item/Items/f_42088_ net/minecraft/world/item/Items/ACACIA_BUTTON +FD: net/minecraft/world/item/Items/f_42089_ net/minecraft/world/item/Items/DARK_OAK_BUTTON +FD: net/minecraft/world/item/Items/f_42090_ net/minecraft/world/item/Items/CRIMSON_BUTTON +FD: net/minecraft/world/item/Items/f_42091_ net/minecraft/world/item/Items/BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42092_ net/minecraft/world/item/Items/STONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42093_ net/minecraft/world/item/Items/MYCELIUM +FD: net/minecraft/world/item/Items/f_42094_ net/minecraft/world/item/Items/LILY_PAD +FD: net/minecraft/world/item/Items/f_42095_ net/minecraft/world/item/Items/NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42096_ net/minecraft/world/item/Items/CRACKED_NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42097_ net/minecraft/world/item/Items/CHISELED_NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42098_ net/minecraft/world/item/Items/NETHER_BRICK_FENCE +FD: net/minecraft/world/item/Items/f_42099_ net/minecraft/world/item/Items/NETHER_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42100_ net/minecraft/world/item/Items/ENCHANTING_TABLE +FD: net/minecraft/world/item/Items/f_42101_ net/minecraft/world/item/Items/END_PORTAL_FRAME +FD: net/minecraft/world/item/Items/f_42102_ net/minecraft/world/item/Items/END_STONE +FD: net/minecraft/world/item/Items/f_42103_ net/minecraft/world/item/Items/END_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42104_ net/minecraft/world/item/Items/DRAGON_EGG +FD: net/minecraft/world/item/Items/f_42105_ net/minecraft/world/item/Items/REDSTONE_LAMP +FD: net/minecraft/world/item/Items/f_42106_ net/minecraft/world/item/Items/SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42107_ net/minecraft/world/item/Items/EMERALD_ORE +FD: net/minecraft/world/item/Items/f_42108_ net/minecraft/world/item/Items/ENDER_CHEST +FD: net/minecraft/world/item/Items/f_42109_ net/minecraft/world/item/Items/TRIPWIRE_HOOK +FD: net/minecraft/world/item/Items/f_42110_ net/minecraft/world/item/Items/EMERALD_BLOCK +FD: net/minecraft/world/item/Items/f_42111_ net/minecraft/world/item/Items/SPRUCE_STAIRS +FD: net/minecraft/world/item/Items/f_42112_ net/minecraft/world/item/Items/BIRCH_STAIRS +FD: net/minecraft/world/item/Items/f_42113_ net/minecraft/world/item/Items/JUNGLE_STAIRS +FD: net/minecraft/world/item/Items/f_42114_ net/minecraft/world/item/Items/CRIMSON_STAIRS +FD: net/minecraft/world/item/Items/f_42115_ net/minecraft/world/item/Items/WARPED_STAIRS +FD: net/minecraft/world/item/Items/f_42116_ net/minecraft/world/item/Items/COMMAND_BLOCK +FD: net/minecraft/world/item/Items/f_42117_ net/minecraft/world/item/Items/POLISHED_DIORITE +FD: net/minecraft/world/item/Items/f_42118_ net/minecraft/world/item/Items/GRAY_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42119_ net/minecraft/world/item/Items/LIGHT_GRAY_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42120_ net/minecraft/world/item/Items/CYAN_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42121_ net/minecraft/world/item/Items/PURPLE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42122_ net/minecraft/world/item/Items/BLUE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42123_ net/minecraft/world/item/Items/BROWN_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42124_ net/minecraft/world/item/Items/GREEN_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42125_ net/minecraft/world/item/Items/RED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42126_ net/minecraft/world/item/Items/BLACK_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42127_ net/minecraft/world/item/Items/BARRIER +FD: net/minecraft/world/item/Items/f_42128_ net/minecraft/world/item/Items/IRON_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42129_ net/minecraft/world/item/Items/HAY_BLOCK +FD: net/minecraft/world/item/Items/f_42130_ net/minecraft/world/item/Items/WHITE_CARPET +FD: net/minecraft/world/item/Items/f_42131_ net/minecraft/world/item/Items/ORANGE_CARPET +FD: net/minecraft/world/item/Items/f_42132_ net/minecraft/world/item/Items/MAGENTA_CARPET +FD: net/minecraft/world/item/Items/f_42133_ net/minecraft/world/item/Items/LIGHT_BLUE_CARPET +FD: net/minecraft/world/item/Items/f_42134_ net/minecraft/world/item/Items/YELLOW_CARPET +FD: net/minecraft/world/item/Items/f_42135_ net/minecraft/world/item/Items/LIME_CARPET +FD: net/minecraft/world/item/Items/f_42136_ net/minecraft/world/item/Items/PINK_CARPET +FD: net/minecraft/world/item/Items/f_42137_ net/minecraft/world/item/Items/GRAY_CARPET +FD: net/minecraft/world/item/Items/f_42138_ net/minecraft/world/item/Items/LIGHT_GRAY_CARPET +FD: net/minecraft/world/item/Items/f_42139_ net/minecraft/world/item/Items/CYAN_CARPET +FD: net/minecraft/world/item/Items/f_42140_ net/minecraft/world/item/Items/PURPLE_CARPET +FD: net/minecraft/world/item/Items/f_42141_ net/minecraft/world/item/Items/BLUE_CARPET +FD: net/minecraft/world/item/Items/f_42142_ net/minecraft/world/item/Items/BROWN_CARPET +FD: net/minecraft/world/item/Items/f_42143_ net/minecraft/world/item/Items/GREEN_CARPET +FD: net/minecraft/world/item/Items/f_42144_ net/minecraft/world/item/Items/WARPED_BUTTON +FD: net/minecraft/world/item/Items/f_42145_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BUTTON +FD: net/minecraft/world/item/Items/f_42146_ net/minecraft/world/item/Items/ANVIL +FD: net/minecraft/world/item/Items/f_42147_ net/minecraft/world/item/Items/CHIPPED_ANVIL +FD: net/minecraft/world/item/Items/f_42148_ net/minecraft/world/item/Items/DAMAGED_ANVIL +FD: net/minecraft/world/item/Items/f_42149_ net/minecraft/world/item/Items/TRAPPED_CHEST +FD: net/minecraft/world/item/Items/f_42150_ net/minecraft/world/item/Items/LIGHT_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_42151_ net/minecraft/world/item/Items/HEAVY_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_42152_ net/minecraft/world/item/Items/DAYLIGHT_DETECTOR +FD: net/minecraft/world/item/Items/f_42153_ net/minecraft/world/item/Items/REDSTONE_BLOCK +FD: net/minecraft/world/item/Items/f_42154_ net/minecraft/world/item/Items/NETHER_QUARTZ_ORE +FD: net/minecraft/world/item/Items/f_42155_ net/minecraft/world/item/Items/HOPPER +FD: net/minecraft/world/item/Items/f_42156_ net/minecraft/world/item/Items/CHISELED_QUARTZ_BLOCK +FD: net/minecraft/world/item/Items/f_42157_ net/minecraft/world/item/Items/QUARTZ_BLOCK +FD: net/minecraft/world/item/Items/f_42158_ net/minecraft/world/item/Items/QUARTZ_BRICKS +FD: net/minecraft/world/item/Items/f_42159_ net/minecraft/world/item/Items/QUARTZ_PILLAR +FD: net/minecraft/world/item/Items/f_42160_ net/minecraft/world/item/Items/QUARTZ_STAIRS +FD: net/minecraft/world/item/Items/f_42161_ net/minecraft/world/item/Items/ACTIVATOR_RAIL +FD: net/minecraft/world/item/Items/f_42162_ net/minecraft/world/item/Items/DROPPER +FD: net/minecraft/world/item/Items/f_42163_ net/minecraft/world/item/Items/WHITE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42164_ net/minecraft/world/item/Items/ORANGE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42165_ net/minecraft/world/item/Items/MAGENTA_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42166_ net/minecraft/world/item/Items/LIGHT_BLUE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42167_ net/minecraft/world/item/Items/YELLOW_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42168_ net/minecraft/world/item/Items/LIME_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42169_ net/minecraft/world/item/Items/PINK_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42170_ net/minecraft/world/item/Items/ANDESITE +FD: net/minecraft/world/item/Items/f_42171_ net/minecraft/world/item/Items/BLUE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42172_ net/minecraft/world/item/Items/BROWN_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42173_ net/minecraft/world/item/Items/GREEN_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42174_ net/minecraft/world/item/Items/RED_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42175_ net/minecraft/world/item/Items/BLACK_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42176_ net/minecraft/world/item/Items/WHITE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42177_ net/minecraft/world/item/Items/ORANGE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42178_ net/minecraft/world/item/Items/MAGENTA_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42179_ net/minecraft/world/item/Items/LIGHT_BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42180_ net/minecraft/world/item/Items/YELLOW_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42181_ net/minecraft/world/item/Items/LIME_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42182_ net/minecraft/world/item/Items/PINK_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42183_ net/minecraft/world/item/Items/GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42184_ net/minecraft/world/item/Items/LIGHT_GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42185_ net/minecraft/world/item/Items/CYAN_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42186_ net/minecraft/world/item/Items/PURPLE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42187_ net/minecraft/world/item/Items/BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42188_ net/minecraft/world/item/Items/BROWN_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42189_ net/minecraft/world/item/Items/GREEN_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42190_ net/minecraft/world/item/Items/RED_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42191_ net/minecraft/world/item/Items/BLACK_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42192_ net/minecraft/world/item/Items/PRISMARINE +FD: net/minecraft/world/item/Items/f_42193_ net/minecraft/world/item/Items/PRISMARINE_BRICKS +FD: net/minecraft/world/item/Items/f_42194_ net/minecraft/world/item/Items/DARK_PRISMARINE +FD: net/minecraft/world/item/Items/f_42195_ net/minecraft/world/item/Items/PRISMARINE_STAIRS +FD: net/minecraft/world/item/Items/f_42196_ net/minecraft/world/item/Items/PRISMARINE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42197_ net/minecraft/world/item/Items/RED_CARPET +FD: net/minecraft/world/item/Items/f_42198_ net/minecraft/world/item/Items/BLACK_CARPET +FD: net/minecraft/world/item/Items/f_42199_ net/minecraft/world/item/Items/TERRACOTTA +FD: net/minecraft/world/item/Items/f_42200_ net/minecraft/world/item/Items/COAL_BLOCK +FD: net/minecraft/world/item/Items/f_42201_ net/minecraft/world/item/Items/PACKED_ICE +FD: net/minecraft/world/item/Items/f_42202_ net/minecraft/world/item/Items/ACACIA_STAIRS +FD: net/minecraft/world/item/Items/f_42203_ net/minecraft/world/item/Items/DARK_OAK_STAIRS +FD: net/minecraft/world/item/Items/f_42204_ net/minecraft/world/item/Items/SLIME_BLOCK +FD: net/minecraft/world/item/Items/f_42206_ net/minecraft/world/item/Items/SUNFLOWER +FD: net/minecraft/world/item/Items/f_42207_ net/minecraft/world/item/Items/LILAC +FD: net/minecraft/world/item/Items/f_42208_ net/minecraft/world/item/Items/ROSE_BUSH +FD: net/minecraft/world/item/Items/f_42209_ net/minecraft/world/item/Items/PEONY +FD: net/minecraft/world/item/Items/f_42210_ net/minecraft/world/item/Items/TALL_GRASS +FD: net/minecraft/world/item/Items/f_42211_ net/minecraft/world/item/Items/LARGE_FERN +FD: net/minecraft/world/item/Items/f_42212_ net/minecraft/world/item/Items/WHITE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42213_ net/minecraft/world/item/Items/ORANGE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42214_ net/minecraft/world/item/Items/MAGENTA_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42215_ net/minecraft/world/item/Items/LIGHT_BLUE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42216_ net/minecraft/world/item/Items/YELLOW_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42217_ net/minecraft/world/item/Items/LIME_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42218_ net/minecraft/world/item/Items/PINK_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42219_ net/minecraft/world/item/Items/GRAY_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42220_ net/minecraft/world/item/Items/LIGHT_GRAY_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42221_ net/minecraft/world/item/Items/CYAN_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42222_ net/minecraft/world/item/Items/PURPLE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42223_ net/minecraft/world/item/Items/POLISHED_ANDESITE +FD: net/minecraft/world/item/Items/f_42224_ net/minecraft/world/item/Items/PURPLE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42225_ net/minecraft/world/item/Items/BLUE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42226_ net/minecraft/world/item/Items/BROWN_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42227_ net/minecraft/world/item/Items/GREEN_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42228_ net/minecraft/world/item/Items/RED_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42229_ net/minecraft/world/item/Items/BLACK_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42230_ net/minecraft/world/item/Items/WHITE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42231_ net/minecraft/world/item/Items/ORANGE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42232_ net/minecraft/world/item/Items/MAGENTA_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42233_ net/minecraft/world/item/Items/LIGHT_BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42234_ net/minecraft/world/item/Items/YELLOW_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42235_ net/minecraft/world/item/Items/LIME_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42236_ net/minecraft/world/item/Items/PINK_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42237_ net/minecraft/world/item/Items/GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42238_ net/minecraft/world/item/Items/LIGHT_GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42239_ net/minecraft/world/item/Items/CYAN_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42240_ net/minecraft/world/item/Items/PURPLE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42241_ net/minecraft/world/item/Items/BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42242_ net/minecraft/world/item/Items/BROWN_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42243_ net/minecraft/world/item/Items/GREEN_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42244_ net/minecraft/world/item/Items/RED_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42245_ net/minecraft/world/item/Items/BLACK_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42246_ net/minecraft/world/item/Items/WHITE_CONCRETE +FD: net/minecraft/world/item/Items/f_42247_ net/minecraft/world/item/Items/ORANGE_CONCRETE +FD: net/minecraft/world/item/Items/f_42248_ net/minecraft/world/item/Items/MAGENTA_CONCRETE +FD: net/minecraft/world/item/Items/f_42249_ net/minecraft/world/item/Items/LIGHT_BLUE_CONCRETE +FD: net/minecraft/world/item/Items/f_42250_ net/minecraft/world/item/Items/DARK_PRISMARINE_STAIRS +FD: net/minecraft/world/item/Items/f_42251_ net/minecraft/world/item/Items/SEA_LANTERN +FD: net/minecraft/world/item/Items/f_42252_ net/minecraft/world/item/Items/RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_42253_ net/minecraft/world/item/Items/CHISELED_RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_42254_ net/minecraft/world/item/Items/CUT_RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_42255_ net/minecraft/world/item/Items/RED_SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42256_ net/minecraft/world/item/Items/REPEATING_COMMAND_BLOCK +FD: net/minecraft/world/item/Items/f_42257_ net/minecraft/world/item/Items/CHAIN_COMMAND_BLOCK +FD: net/minecraft/world/item/Items/f_42258_ net/minecraft/world/item/Items/MAGMA_BLOCK +FD: net/minecraft/world/item/Items/f_42259_ net/minecraft/world/item/Items/NETHER_WART_BLOCK +FD: net/minecraft/world/item/Items/f_42260_ net/minecraft/world/item/Items/WARPED_WART_BLOCK +FD: net/minecraft/world/item/Items/f_42261_ net/minecraft/world/item/Items/RED_NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42262_ net/minecraft/world/item/Items/BONE_BLOCK +FD: net/minecraft/world/item/Items/f_42263_ net/minecraft/world/item/Items/STRUCTURE_VOID +FD: net/minecraft/world/item/Items/f_42264_ net/minecraft/world/item/Items/OBSERVER +FD: net/minecraft/world/item/Items/f_42265_ net/minecraft/world/item/Items/SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42266_ net/minecraft/world/item/Items/WHITE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42267_ net/minecraft/world/item/Items/ORANGE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42268_ net/minecraft/world/item/Items/MAGENTA_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42269_ net/minecraft/world/item/Items/LIGHT_BLUE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42270_ net/minecraft/world/item/Items/YELLOW_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42271_ net/minecraft/world/item/Items/LIME_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42272_ net/minecraft/world/item/Items/PINK_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42273_ net/minecraft/world/item/Items/GRAY_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42274_ net/minecraft/world/item/Items/LIGHT_GRAY_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42275_ net/minecraft/world/item/Items/CYAN_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42276_ net/minecraft/world/item/Items/GRASS_BLOCK +FD: net/minecraft/world/item/Items/f_42277_ net/minecraft/world/item/Items/RED_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42278_ net/minecraft/world/item/Items/BLACK_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42279_ net/minecraft/world/item/Items/TURTLE_EGG +FD: net/minecraft/world/item/Items/f_42280_ net/minecraft/world/item/Items/DEAD_TUBE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42281_ net/minecraft/world/item/Items/DEAD_BRAIN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42282_ net/minecraft/world/item/Items/DEAD_BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42283_ net/minecraft/world/item/Items/DEAD_FIRE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42284_ net/minecraft/world/item/Items/DEAD_HORN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42285_ net/minecraft/world/item/Items/TUBE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42286_ net/minecraft/world/item/Items/BRAIN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42287_ net/minecraft/world/item/Items/BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42288_ net/minecraft/world/item/Items/FIRE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42289_ net/minecraft/world/item/Items/HORN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42290_ net/minecraft/world/item/Items/TUBE_CORAL +FD: net/minecraft/world/item/Items/f_42291_ net/minecraft/world/item/Items/BRAIN_CORAL +FD: net/minecraft/world/item/Items/f_42292_ net/minecraft/world/item/Items/BUBBLE_CORAL +FD: net/minecraft/world/item/Items/f_42293_ net/minecraft/world/item/Items/FIRE_CORAL +FD: net/minecraft/world/item/Items/f_42294_ net/minecraft/world/item/Items/HORN_CORAL +FD: net/minecraft/world/item/Items/f_42295_ net/minecraft/world/item/Items/DEAD_BRAIN_CORAL +FD: net/minecraft/world/item/Items/f_42296_ net/minecraft/world/item/Items/DEAD_BUBBLE_CORAL +FD: net/minecraft/world/item/Items/f_42297_ net/minecraft/world/item/Items/DEAD_FIRE_CORAL +FD: net/minecraft/world/item/Items/f_42298_ net/minecraft/world/item/Items/DEAD_HORN_CORAL +FD: net/minecraft/world/item/Items/f_42299_ net/minecraft/world/item/Items/DEAD_TUBE_CORAL +FD: net/minecraft/world/item/Items/f_42300_ net/minecraft/world/item/Items/TUBE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42301_ net/minecraft/world/item/Items/BRAIN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42302_ net/minecraft/world/item/Items/BUBBLE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42303_ net/minecraft/world/item/Items/YELLOW_CONCRETE +FD: net/minecraft/world/item/Items/f_42304_ net/minecraft/world/item/Items/LIME_CONCRETE +FD: net/minecraft/world/item/Items/f_42305_ net/minecraft/world/item/Items/PINK_CONCRETE +FD: net/minecraft/world/item/Items/f_42306_ net/minecraft/world/item/Items/GRAY_CONCRETE +FD: net/minecraft/world/item/Items/f_42307_ net/minecraft/world/item/Items/LIGHT_GRAY_CONCRETE +FD: net/minecraft/world/item/Items/f_42308_ net/minecraft/world/item/Items/CYAN_CONCRETE +FD: net/minecraft/world/item/Items/f_42309_ net/minecraft/world/item/Items/PURPLE_CONCRETE +FD: net/minecraft/world/item/Items/f_42310_ net/minecraft/world/item/Items/BLUE_CONCRETE +FD: net/minecraft/world/item/Items/f_42311_ net/minecraft/world/item/Items/BROWN_CONCRETE +FD: net/minecraft/world/item/Items/f_42312_ net/minecraft/world/item/Items/GREEN_CONCRETE +FD: net/minecraft/world/item/Items/f_42313_ net/minecraft/world/item/Items/RED_CONCRETE +FD: net/minecraft/world/item/Items/f_42314_ net/minecraft/world/item/Items/BLACK_CONCRETE +FD: net/minecraft/world/item/Items/f_42315_ net/minecraft/world/item/Items/WHITE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42316_ net/minecraft/world/item/Items/ORANGE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42317_ net/minecraft/world/item/Items/MAGENTA_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42318_ net/minecraft/world/item/Items/LIGHT_BLUE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42319_ net/minecraft/world/item/Items/YELLOW_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42320_ net/minecraft/world/item/Items/LIME_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42321_ net/minecraft/world/item/Items/PINK_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42322_ net/minecraft/world/item/Items/GRAY_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42323_ net/minecraft/world/item/Items/LIGHT_GRAY_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42324_ net/minecraft/world/item/Items/CYAN_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42325_ net/minecraft/world/item/Items/PURPLE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42326_ net/minecraft/world/item/Items/BLUE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42327_ net/minecraft/world/item/Items/BROWN_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42328_ net/minecraft/world/item/Items/GREEN_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42329_ net/minecraft/world/item/Items/DIRT +FD: net/minecraft/world/item/Items/f_42330_ net/minecraft/world/item/Items/POLISHED_DIORITE_SLAB +FD: net/minecraft/world/item/Items/f_42331_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE_SLAB +FD: net/minecraft/world/item/Items/f_42332_ net/minecraft/world/item/Items/END_STONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42333_ net/minecraft/world/item/Items/SMOOTH_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42334_ net/minecraft/world/item/Items/SMOOTH_QUARTZ_SLAB +FD: net/minecraft/world/item/Items/f_42335_ net/minecraft/world/item/Items/GRANITE_SLAB +FD: net/minecraft/world/item/Items/f_42336_ net/minecraft/world/item/Items/ANDESITE_SLAB +FD: net/minecraft/world/item/Items/f_42337_ net/minecraft/world/item/Items/RED_NETHER_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42338_ net/minecraft/world/item/Items/POLISHED_ANDESITE_SLAB +FD: net/minecraft/world/item/Items/f_42339_ net/minecraft/world/item/Items/DIORITE_SLAB +FD: net/minecraft/world/item/Items/f_42340_ net/minecraft/world/item/Items/SCAFFOLDING +FD: net/minecraft/world/item/Items/f_42341_ net/minecraft/world/item/Items/IRON_DOOR +FD: net/minecraft/world/item/Items/f_42342_ net/minecraft/world/item/Items/OAK_DOOR +FD: net/minecraft/world/item/Items/f_42343_ net/minecraft/world/item/Items/SPRUCE_DOOR +FD: net/minecraft/world/item/Items/f_42344_ net/minecraft/world/item/Items/BIRCH_DOOR +FD: net/minecraft/world/item/Items/f_42345_ net/minecraft/world/item/Items/JUNGLE_DOOR +FD: net/minecraft/world/item/Items/f_42346_ net/minecraft/world/item/Items/ACACIA_DOOR +FD: net/minecraft/world/item/Items/f_42347_ net/minecraft/world/item/Items/DARK_OAK_DOOR +FD: net/minecraft/world/item/Items/f_42348_ net/minecraft/world/item/Items/CRIMSON_DOOR +FD: net/minecraft/world/item/Items/f_42349_ net/minecraft/world/item/Items/WARPED_DOOR +FD: net/minecraft/world/item/Items/f_42350_ net/minecraft/world/item/Items/REPEATER +FD: net/minecraft/world/item/Items/f_42351_ net/minecraft/world/item/Items/COMPARATOR +FD: net/minecraft/world/item/Items/f_42352_ net/minecraft/world/item/Items/STRUCTURE_BLOCK +FD: net/minecraft/world/item/Items/f_42353_ net/minecraft/world/item/Items/JIGSAW +FD: net/minecraft/world/item/Items/f_42354_ net/minecraft/world/item/Items/TURTLE_HELMET +FD: net/minecraft/world/item/Items/f_42355_ net/minecraft/world/item/Items/SCUTE +FD: net/minecraft/world/item/Items/f_42356_ net/minecraft/world/item/Items/FIRE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42357_ net/minecraft/world/item/Items/HORN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42358_ net/minecraft/world/item/Items/DEAD_TUBE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42359_ net/minecraft/world/item/Items/DEAD_BRAIN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42360_ net/minecraft/world/item/Items/DEAD_BUBBLE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42361_ net/minecraft/world/item/Items/DEAD_FIRE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42362_ net/minecraft/world/item/Items/DEAD_HORN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42363_ net/minecraft/world/item/Items/BLUE_ICE +FD: net/minecraft/world/item/Items/f_42364_ net/minecraft/world/item/Items/CONDUIT +FD: net/minecraft/world/item/Items/f_42365_ net/minecraft/world/item/Items/POLISHED_GRANITE_STAIRS +FD: net/minecraft/world/item/Items/f_42366_ net/minecraft/world/item/Items/SMOOTH_RED_SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42367_ net/minecraft/world/item/Items/MOSSY_STONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42368_ net/minecraft/world/item/Items/POLISHED_DIORITE_STAIRS +FD: net/minecraft/world/item/Items/f_42369_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42370_ net/minecraft/world/item/Items/END_STONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42371_ net/minecraft/world/item/Items/STONE_STAIRS +FD: net/minecraft/world/item/Items/f_42372_ net/minecraft/world/item/Items/SMOOTH_SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42373_ net/minecraft/world/item/Items/SMOOTH_QUARTZ_STAIRS +FD: net/minecraft/world/item/Items/f_42374_ net/minecraft/world/item/Items/GRANITE_STAIRS +FD: net/minecraft/world/item/Items/f_42375_ net/minecraft/world/item/Items/ANDESITE_STAIRS +FD: net/minecraft/world/item/Items/f_42376_ net/minecraft/world/item/Items/RED_NETHER_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42377_ net/minecraft/world/item/Items/POLISHED_ANDESITE_STAIRS +FD: net/minecraft/world/item/Items/f_42378_ net/minecraft/world/item/Items/DIORITE_STAIRS +FD: net/minecraft/world/item/Items/f_42379_ net/minecraft/world/item/Items/POLISHED_GRANITE_SLAB +FD: net/minecraft/world/item/Items/f_42380_ net/minecraft/world/item/Items/SMOOTH_RED_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42381_ net/minecraft/world/item/Items/MOSSY_STONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42382_ net/minecraft/world/item/Items/COARSE_DIRT +FD: net/minecraft/world/item/Items/f_42383_ net/minecraft/world/item/Items/IRON_SWORD +FD: net/minecraft/world/item/Items/f_42384_ net/minecraft/world/item/Items/IRON_SHOVEL +FD: net/minecraft/world/item/Items/f_42385_ net/minecraft/world/item/Items/IRON_PICKAXE +FD: net/minecraft/world/item/Items/f_42386_ net/minecraft/world/item/Items/IRON_AXE +FD: net/minecraft/world/item/Items/f_42387_ net/minecraft/world/item/Items/IRON_HOE +FD: net/minecraft/world/item/Items/f_42388_ net/minecraft/world/item/Items/DIAMOND_SWORD +FD: net/minecraft/world/item/Items/f_42389_ net/minecraft/world/item/Items/DIAMOND_SHOVEL +FD: net/minecraft/world/item/Items/f_42390_ net/minecraft/world/item/Items/DIAMOND_PICKAXE +FD: net/minecraft/world/item/Items/f_42391_ net/minecraft/world/item/Items/DIAMOND_AXE +FD: net/minecraft/world/item/Items/f_42392_ net/minecraft/world/item/Items/DIAMOND_HOE +FD: net/minecraft/world/item/Items/f_42393_ net/minecraft/world/item/Items/NETHERITE_SWORD +FD: net/minecraft/world/item/Items/f_42394_ net/minecraft/world/item/Items/NETHERITE_SHOVEL +FD: net/minecraft/world/item/Items/f_42395_ net/minecraft/world/item/Items/NETHERITE_PICKAXE +FD: net/minecraft/world/item/Items/f_42396_ net/minecraft/world/item/Items/NETHERITE_AXE +FD: net/minecraft/world/item/Items/f_42397_ net/minecraft/world/item/Items/NETHERITE_HOE +FD: net/minecraft/world/item/Items/f_42398_ net/minecraft/world/item/Items/STICK +FD: net/minecraft/world/item/Items/f_42399_ net/minecraft/world/item/Items/BOWL +FD: net/minecraft/world/item/Items/f_42400_ net/minecraft/world/item/Items/MUSHROOM_STEW +FD: net/minecraft/world/item/Items/f_42401_ net/minecraft/world/item/Items/STRING +FD: net/minecraft/world/item/Items/f_42402_ net/minecraft/world/item/Items/FEATHER +FD: net/minecraft/world/item/Items/f_42403_ net/minecraft/world/item/Items/GUNPOWDER +FD: net/minecraft/world/item/Items/f_42404_ net/minecraft/world/item/Items/WHEAT_SEEDS +FD: net/minecraft/world/item/Items/f_42405_ net/minecraft/world/item/Items/WHEAT +FD: net/minecraft/world/item/Items/f_42406_ net/minecraft/world/item/Items/BREAD +FD: net/minecraft/world/item/Items/f_42407_ net/minecraft/world/item/Items/LEATHER_HELMET +FD: net/minecraft/world/item/Items/f_42408_ net/minecraft/world/item/Items/LEATHER_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42409_ net/minecraft/world/item/Items/FLINT_AND_STEEL +FD: net/minecraft/world/item/Items/f_42410_ net/minecraft/world/item/Items/APPLE +FD: net/minecraft/world/item/Items/f_42411_ net/minecraft/world/item/Items/BOW +FD: net/minecraft/world/item/Items/f_42412_ net/minecraft/world/item/Items/ARROW +FD: net/minecraft/world/item/Items/f_42413_ net/minecraft/world/item/Items/COAL +FD: net/minecraft/world/item/Items/f_42414_ net/minecraft/world/item/Items/CHARCOAL +FD: net/minecraft/world/item/Items/f_42415_ net/minecraft/world/item/Items/DIAMOND +FD: net/minecraft/world/item/Items/f_42416_ net/minecraft/world/item/Items/IRON_INGOT +FD: net/minecraft/world/item/Items/f_42417_ net/minecraft/world/item/Items/GOLD_INGOT +FD: net/minecraft/world/item/Items/f_42418_ net/minecraft/world/item/Items/NETHERITE_INGOT +FD: net/minecraft/world/item/Items/f_42419_ net/minecraft/world/item/Items/NETHERITE_SCRAP +FD: net/minecraft/world/item/Items/f_42420_ net/minecraft/world/item/Items/WOODEN_SWORD +FD: net/minecraft/world/item/Items/f_42421_ net/minecraft/world/item/Items/WOODEN_SHOVEL +FD: net/minecraft/world/item/Items/f_42422_ net/minecraft/world/item/Items/WOODEN_PICKAXE +FD: net/minecraft/world/item/Items/f_42423_ net/minecraft/world/item/Items/WOODEN_AXE +FD: net/minecraft/world/item/Items/f_42424_ net/minecraft/world/item/Items/WOODEN_HOE +FD: net/minecraft/world/item/Items/f_42425_ net/minecraft/world/item/Items/STONE_SWORD +FD: net/minecraft/world/item/Items/f_42426_ net/minecraft/world/item/Items/STONE_SHOVEL +FD: net/minecraft/world/item/Items/f_42427_ net/minecraft/world/item/Items/STONE_PICKAXE +FD: net/minecraft/world/item/Items/f_42428_ net/minecraft/world/item/Items/STONE_AXE +FD: net/minecraft/world/item/Items/f_42429_ net/minecraft/world/item/Items/STONE_HOE +FD: net/minecraft/world/item/Items/f_42430_ net/minecraft/world/item/Items/GOLDEN_SWORD +FD: net/minecraft/world/item/Items/f_42431_ net/minecraft/world/item/Items/GOLDEN_SHOVEL +FD: net/minecraft/world/item/Items/f_42432_ net/minecraft/world/item/Items/GOLDEN_PICKAXE +FD: net/minecraft/world/item/Items/f_42433_ net/minecraft/world/item/Items/GOLDEN_AXE +FD: net/minecraft/world/item/Items/f_42434_ net/minecraft/world/item/Items/GOLDEN_HOE +FD: net/minecraft/world/item/Items/f_42435_ net/minecraft/world/item/Items/PODZOL +FD: net/minecraft/world/item/Items/f_42436_ net/minecraft/world/item/Items/GOLDEN_APPLE +FD: net/minecraft/world/item/Items/f_42437_ net/minecraft/world/item/Items/ENCHANTED_GOLDEN_APPLE +FD: net/minecraft/world/item/Items/f_42438_ net/minecraft/world/item/Items/OAK_SIGN +FD: net/minecraft/world/item/Items/f_42439_ net/minecraft/world/item/Items/SPRUCE_SIGN +FD: net/minecraft/world/item/Items/f_42440_ net/minecraft/world/item/Items/BIRCH_SIGN +FD: net/minecraft/world/item/Items/f_42441_ net/minecraft/world/item/Items/JUNGLE_SIGN +FD: net/minecraft/world/item/Items/f_42442_ net/minecraft/world/item/Items/ACACIA_SIGN +FD: net/minecraft/world/item/Items/f_42443_ net/minecraft/world/item/Items/DARK_OAK_SIGN +FD: net/minecraft/world/item/Items/f_42444_ net/minecraft/world/item/Items/CRIMSON_SIGN +FD: net/minecraft/world/item/Items/f_42445_ net/minecraft/world/item/Items/WARPED_SIGN +FD: net/minecraft/world/item/Items/f_42446_ net/minecraft/world/item/Items/BUCKET +FD: net/minecraft/world/item/Items/f_42447_ net/minecraft/world/item/Items/WATER_BUCKET +FD: net/minecraft/world/item/Items/f_42448_ net/minecraft/world/item/Items/LAVA_BUCKET +FD: net/minecraft/world/item/Items/f_42449_ net/minecraft/world/item/Items/MINECART +FD: net/minecraft/world/item/Items/f_42450_ net/minecraft/world/item/Items/SADDLE +FD: net/minecraft/world/item/Items/f_42451_ net/minecraft/world/item/Items/REDSTONE +FD: net/minecraft/world/item/Items/f_42452_ net/minecraft/world/item/Items/SNOWBALL +FD: net/minecraft/world/item/Items/f_42453_ net/minecraft/world/item/Items/OAK_BOAT +FD: net/minecraft/world/item/Items/f_42454_ net/minecraft/world/item/Items/LEATHER +FD: net/minecraft/world/item/Items/f_42455_ net/minecraft/world/item/Items/MILK_BUCKET +FD: net/minecraft/world/item/Items/f_42456_ net/minecraft/world/item/Items/PUFFERFISH_BUCKET +FD: net/minecraft/world/item/Items/f_42457_ net/minecraft/world/item/Items/SALMON_BUCKET +FD: net/minecraft/world/item/Items/f_42458_ net/minecraft/world/item/Items/COD_BUCKET +FD: net/minecraft/world/item/Items/f_42459_ net/minecraft/world/item/Items/TROPICAL_FISH_BUCKET +FD: net/minecraft/world/item/Items/f_42460_ net/minecraft/world/item/Items/BRICK +FD: net/minecraft/world/item/Items/f_42461_ net/minecraft/world/item/Items/CLAY_BALL +FD: net/minecraft/world/item/Items/f_42462_ net/minecraft/world/item/Items/LEATHER_LEGGINGS +FD: net/minecraft/world/item/Items/f_42463_ net/minecraft/world/item/Items/LEATHER_BOOTS +FD: net/minecraft/world/item/Items/f_42464_ net/minecraft/world/item/Items/CHAINMAIL_HELMET +FD: net/minecraft/world/item/Items/f_42465_ net/minecraft/world/item/Items/CHAINMAIL_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42466_ net/minecraft/world/item/Items/CHAINMAIL_LEGGINGS +FD: net/minecraft/world/item/Items/f_42467_ net/minecraft/world/item/Items/CHAINMAIL_BOOTS +FD: net/minecraft/world/item/Items/f_42468_ net/minecraft/world/item/Items/IRON_HELMET +FD: net/minecraft/world/item/Items/f_42469_ net/minecraft/world/item/Items/IRON_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42470_ net/minecraft/world/item/Items/IRON_LEGGINGS +FD: net/minecraft/world/item/Items/f_42471_ net/minecraft/world/item/Items/IRON_BOOTS +FD: net/minecraft/world/item/Items/f_42472_ net/minecraft/world/item/Items/DIAMOND_HELMET +FD: net/minecraft/world/item/Items/f_42473_ net/minecraft/world/item/Items/DIAMOND_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42474_ net/minecraft/world/item/Items/DIAMOND_LEGGINGS +FD: net/minecraft/world/item/Items/f_42475_ net/minecraft/world/item/Items/DIAMOND_BOOTS +FD: net/minecraft/world/item/Items/f_42476_ net/minecraft/world/item/Items/GOLDEN_HELMET +FD: net/minecraft/world/item/Items/f_42477_ net/minecraft/world/item/Items/GOLDEN_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42478_ net/minecraft/world/item/Items/GOLDEN_LEGGINGS +FD: net/minecraft/world/item/Items/f_42479_ net/minecraft/world/item/Items/GOLDEN_BOOTS +FD: net/minecraft/world/item/Items/f_42480_ net/minecraft/world/item/Items/NETHERITE_HELMET +FD: net/minecraft/world/item/Items/f_42481_ net/minecraft/world/item/Items/NETHERITE_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42482_ net/minecraft/world/item/Items/NETHERITE_LEGGINGS +FD: net/minecraft/world/item/Items/f_42483_ net/minecraft/world/item/Items/NETHERITE_BOOTS +FD: net/minecraft/world/item/Items/f_42484_ net/minecraft/world/item/Items/FLINT +FD: net/minecraft/world/item/Items/f_42485_ net/minecraft/world/item/Items/PORKCHOP +FD: net/minecraft/world/item/Items/f_42486_ net/minecraft/world/item/Items/COOKED_PORKCHOP +FD: net/minecraft/world/item/Items/f_42487_ net/minecraft/world/item/Items/PAINTING +FD: net/minecraft/world/item/Items/f_42488_ net/minecraft/world/item/Items/CRIMSON_NYLIUM +FD: net/minecraft/world/item/Items/f_42489_ net/minecraft/world/item/Items/PINK_DYE +FD: net/minecraft/world/item/Items/f_42490_ net/minecraft/world/item/Items/GRAY_DYE +FD: net/minecraft/world/item/Items/f_42491_ net/minecraft/world/item/Items/LIGHT_GRAY_DYE +FD: net/minecraft/world/item/Items/f_42492_ net/minecraft/world/item/Items/CYAN_DYE +FD: net/minecraft/world/item/Items/f_42493_ net/minecraft/world/item/Items/PURPLE_DYE +FD: net/minecraft/world/item/Items/f_42494_ net/minecraft/world/item/Items/BLUE_DYE +FD: net/minecraft/world/item/Items/f_42495_ net/minecraft/world/item/Items/BROWN_DYE +FD: net/minecraft/world/item/Items/f_42496_ net/minecraft/world/item/Items/GREEN_DYE +FD: net/minecraft/world/item/Items/f_42497_ net/minecraft/world/item/Items/RED_DYE +FD: net/minecraft/world/item/Items/f_42498_ net/minecraft/world/item/Items/BLACK_DYE +FD: net/minecraft/world/item/Items/f_42499_ net/minecraft/world/item/Items/BONE_MEAL +FD: net/minecraft/world/item/Items/f_42500_ net/minecraft/world/item/Items/BONE +FD: net/minecraft/world/item/Items/f_42501_ net/minecraft/world/item/Items/SUGAR +FD: net/minecraft/world/item/Items/f_42502_ net/minecraft/world/item/Items/CAKE +FD: net/minecraft/world/item/Items/f_42503_ net/minecraft/world/item/Items/WHITE_BED +FD: net/minecraft/world/item/Items/f_42504_ net/minecraft/world/item/Items/ORANGE_BED +FD: net/minecraft/world/item/Items/f_42505_ net/minecraft/world/item/Items/MAGENTA_BED +FD: net/minecraft/world/item/Items/f_42506_ net/minecraft/world/item/Items/LIGHT_BLUE_BED +FD: net/minecraft/world/item/Items/f_42507_ net/minecraft/world/item/Items/YELLOW_BED +FD: net/minecraft/world/item/Items/f_42508_ net/minecraft/world/item/Items/LIME_BED +FD: net/minecraft/world/item/Items/f_42509_ net/minecraft/world/item/Items/PINK_BED +FD: net/minecraft/world/item/Items/f_42510_ net/minecraft/world/item/Items/GRAY_BED +FD: net/minecraft/world/item/Items/f_42511_ net/minecraft/world/item/Items/LIGHT_GRAY_BED +FD: net/minecraft/world/item/Items/f_42512_ net/minecraft/world/item/Items/CYAN_BED +FD: net/minecraft/world/item/Items/f_42513_ net/minecraft/world/item/Items/PURPLE_BED +FD: net/minecraft/world/item/Items/f_42514_ net/minecraft/world/item/Items/BLUE_BED +FD: net/minecraft/world/item/Items/f_42515_ net/minecraft/world/item/Items/DRIED_KELP_BLOCK +FD: net/minecraft/world/item/Items/f_42516_ net/minecraft/world/item/Items/PAPER +FD: net/minecraft/world/item/Items/f_42517_ net/minecraft/world/item/Items/BOOK +FD: net/minecraft/world/item/Items/f_42518_ net/minecraft/world/item/Items/SLIME_BALL +FD: net/minecraft/world/item/Items/f_42519_ net/minecraft/world/item/Items/CHEST_MINECART +FD: net/minecraft/world/item/Items/f_42520_ net/minecraft/world/item/Items/FURNACE_MINECART +FD: net/minecraft/world/item/Items/f_42521_ net/minecraft/world/item/Items/EGG +FD: net/minecraft/world/item/Items/f_42522_ net/minecraft/world/item/Items/COMPASS +FD: net/minecraft/world/item/Items/f_42523_ net/minecraft/world/item/Items/FISHING_ROD +FD: net/minecraft/world/item/Items/f_42524_ net/minecraft/world/item/Items/CLOCK +FD: net/minecraft/world/item/Items/f_42525_ net/minecraft/world/item/Items/GLOWSTONE_DUST +FD: net/minecraft/world/item/Items/f_42526_ net/minecraft/world/item/Items/COD +FD: net/minecraft/world/item/Items/f_42527_ net/minecraft/world/item/Items/SALMON +FD: net/minecraft/world/item/Items/f_42528_ net/minecraft/world/item/Items/TROPICAL_FISH +FD: net/minecraft/world/item/Items/f_42529_ net/minecraft/world/item/Items/PUFFERFISH +FD: net/minecraft/world/item/Items/f_42530_ net/minecraft/world/item/Items/COOKED_COD +FD: net/minecraft/world/item/Items/f_42531_ net/minecraft/world/item/Items/COOKED_SALMON +FD: net/minecraft/world/item/Items/f_42532_ net/minecraft/world/item/Items/INK_SAC +FD: net/minecraft/world/item/Items/f_42533_ net/minecraft/world/item/Items/COCOA_BEANS +FD: net/minecraft/world/item/Items/f_42534_ net/minecraft/world/item/Items/LAPIS_LAZULI +FD: net/minecraft/world/item/Items/f_42535_ net/minecraft/world/item/Items/WHITE_DYE +FD: net/minecraft/world/item/Items/f_42536_ net/minecraft/world/item/Items/ORANGE_DYE +FD: net/minecraft/world/item/Items/f_42537_ net/minecraft/world/item/Items/MAGENTA_DYE +FD: net/minecraft/world/item/Items/f_42538_ net/minecraft/world/item/Items/LIGHT_BLUE_DYE +FD: net/minecraft/world/item/Items/f_42539_ net/minecraft/world/item/Items/YELLOW_DYE +FD: net/minecraft/world/item/Items/f_42540_ net/minecraft/world/item/Items/LIME_DYE +FD: net/minecraft/world/item/Items/f_42541_ net/minecraft/world/item/Items/WARPED_NYLIUM +FD: net/minecraft/world/item/Items/f_42542_ net/minecraft/world/item/Items/MAGMA_CREAM +FD: net/minecraft/world/item/Items/f_42543_ net/minecraft/world/item/Items/BREWING_STAND +FD: net/minecraft/world/item/Items/f_42544_ net/minecraft/world/item/Items/CAULDRON +FD: net/minecraft/world/item/Items/f_42545_ net/minecraft/world/item/Items/ENDER_EYE +FD: net/minecraft/world/item/Items/f_42546_ net/minecraft/world/item/Items/GLISTERING_MELON_SLICE +FD: net/minecraft/world/item/Items/f_42547_ net/minecraft/world/item/Items/BAT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42548_ net/minecraft/world/item/Items/BEE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42549_ net/minecraft/world/item/Items/BLAZE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42550_ net/minecraft/world/item/Items/CAT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42551_ net/minecraft/world/item/Items/CAVE_SPIDER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42552_ net/minecraft/world/item/Items/CHICKEN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42553_ net/minecraft/world/item/Items/COD_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42554_ net/minecraft/world/item/Items/COW_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42555_ net/minecraft/world/item/Items/CREEPER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42556_ net/minecraft/world/item/Items/DOLPHIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42557_ net/minecraft/world/item/Items/DONKEY_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42558_ net/minecraft/world/item/Items/DROWNED_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42559_ net/minecraft/world/item/Items/ELDER_GUARDIAN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42560_ net/minecraft/world/item/Items/ENDERMAN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42561_ net/minecraft/world/item/Items/ENDERMITE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42562_ net/minecraft/world/item/Items/EVOKER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42563_ net/minecraft/world/item/Items/FOX_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42564_ net/minecraft/world/item/Items/GHAST_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42565_ net/minecraft/world/item/Items/GUARDIAN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42566_ net/minecraft/world/item/Items/HOGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42567_ net/minecraft/world/item/Items/HORSE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42568_ net/minecraft/world/item/Items/BROWN_BED +FD: net/minecraft/world/item/Items/f_42569_ net/minecraft/world/item/Items/GREEN_BED +FD: net/minecraft/world/item/Items/f_42570_ net/minecraft/world/item/Items/RED_BED +FD: net/minecraft/world/item/Items/f_42571_ net/minecraft/world/item/Items/BLACK_BED +FD: net/minecraft/world/item/Items/f_42572_ net/minecraft/world/item/Items/COOKIE +FD: net/minecraft/world/item/Items/f_42573_ net/minecraft/world/item/Items/FILLED_MAP +FD: net/minecraft/world/item/Items/f_42574_ net/minecraft/world/item/Items/SHEARS +FD: net/minecraft/world/item/Items/f_42575_ net/minecraft/world/item/Items/MELON_SLICE +FD: net/minecraft/world/item/Items/f_42576_ net/minecraft/world/item/Items/DRIED_KELP +FD: net/minecraft/world/item/Items/f_42577_ net/minecraft/world/item/Items/PUMPKIN_SEEDS +FD: net/minecraft/world/item/Items/f_42578_ net/minecraft/world/item/Items/MELON_SEEDS +FD: net/minecraft/world/item/Items/f_42579_ net/minecraft/world/item/Items/BEEF +FD: net/minecraft/world/item/Items/f_42580_ net/minecraft/world/item/Items/COOKED_BEEF +FD: net/minecraft/world/item/Items/f_42581_ net/minecraft/world/item/Items/CHICKEN +FD: net/minecraft/world/item/Items/f_42582_ net/minecraft/world/item/Items/COOKED_CHICKEN +FD: net/minecraft/world/item/Items/f_42583_ net/minecraft/world/item/Items/ROTTEN_FLESH +FD: net/minecraft/world/item/Items/f_42584_ net/minecraft/world/item/Items/ENDER_PEARL +FD: net/minecraft/world/item/Items/f_42585_ net/minecraft/world/item/Items/BLAZE_ROD +FD: net/minecraft/world/item/Items/f_42586_ net/minecraft/world/item/Items/GHAST_TEAR +FD: net/minecraft/world/item/Items/f_42587_ net/minecraft/world/item/Items/GOLD_NUGGET +FD: net/minecraft/world/item/Items/f_42588_ net/minecraft/world/item/Items/NETHER_WART +FD: net/minecraft/world/item/Items/f_42589_ net/minecraft/world/item/Items/POTION +FD: net/minecraft/world/item/Items/f_42590_ net/minecraft/world/item/Items/GLASS_BOTTLE +FD: net/minecraft/world/item/Items/f_42591_ net/minecraft/world/item/Items/SPIDER_EYE +FD: net/minecraft/world/item/Items/f_42592_ net/minecraft/world/item/Items/FERMENTED_SPIDER_EYE +FD: net/minecraft/world/item/Items/f_42593_ net/minecraft/world/item/Items/BLAZE_POWDER +FD: net/minecraft/world/item/Items/f_42594_ net/minecraft/world/item/Items/COBBLESTONE +FD: net/minecraft/world/item/Items/f_42595_ net/minecraft/world/item/Items/STRAY_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42596_ net/minecraft/world/item/Items/STRIDER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42597_ net/minecraft/world/item/Items/TRADER_LLAMA_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42598_ net/minecraft/world/item/Items/TROPICAL_FISH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42599_ net/minecraft/world/item/Items/TURTLE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42600_ net/minecraft/world/item/Items/VEX_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42601_ net/minecraft/world/item/Items/VILLAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42602_ net/minecraft/world/item/Items/VINDICATOR_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42603_ net/minecraft/world/item/Items/WANDERING_TRADER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42604_ net/minecraft/world/item/Items/WITCH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42605_ net/minecraft/world/item/Items/WITHER_SKELETON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42606_ net/minecraft/world/item/Items/WOLF_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42607_ net/minecraft/world/item/Items/ZOGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42608_ net/minecraft/world/item/Items/ZOMBIE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42609_ net/minecraft/world/item/Items/ZOMBIE_HORSE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42610_ net/minecraft/world/item/Items/ZOMBIE_VILLAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42611_ net/minecraft/world/item/Items/ZOMBIFIED_PIGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42612_ net/minecraft/world/item/Items/EXPERIENCE_BOTTLE +FD: net/minecraft/world/item/Items/f_42613_ net/minecraft/world/item/Items/FIRE_CHARGE +FD: net/minecraft/world/item/Items/f_42614_ net/minecraft/world/item/Items/WRITABLE_BOOK +FD: net/minecraft/world/item/Items/f_42615_ net/minecraft/world/item/Items/WRITTEN_BOOK +FD: net/minecraft/world/item/Items/f_42616_ net/minecraft/world/item/Items/EMERALD +FD: net/minecraft/world/item/Items/f_42617_ net/minecraft/world/item/Items/ITEM_FRAME +FD: net/minecraft/world/item/Items/f_42618_ net/minecraft/world/item/Items/FLOWER_POT +FD: net/minecraft/world/item/Items/f_42619_ net/minecraft/world/item/Items/CARROT +FD: net/minecraft/world/item/Items/f_42620_ net/minecraft/world/item/Items/POTATO +FD: net/minecraft/world/item/Items/f_42621_ net/minecraft/world/item/Items/HUSK_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42622_ net/minecraft/world/item/Items/LLAMA_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42623_ net/minecraft/world/item/Items/MAGMA_CUBE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42624_ net/minecraft/world/item/Items/MOOSHROOM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42625_ net/minecraft/world/item/Items/MULE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42626_ net/minecraft/world/item/Items/OCELOT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42627_ net/minecraft/world/item/Items/PANDA_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42628_ net/minecraft/world/item/Items/PARROT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42629_ net/minecraft/world/item/Items/PHANTOM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42630_ net/minecraft/world/item/Items/PIG_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42631_ net/minecraft/world/item/Items/PIGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42632_ net/minecraft/world/item/Items/PIGLIN_BRUTE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42633_ net/minecraft/world/item/Items/PILLAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42634_ net/minecraft/world/item/Items/POLAR_BEAR_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42635_ net/minecraft/world/item/Items/PUFFERFISH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42636_ net/minecraft/world/item/Items/RABBIT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42637_ net/minecraft/world/item/Items/RAVAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42638_ net/minecraft/world/item/Items/SALMON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42639_ net/minecraft/world/item/Items/SHEEP_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42640_ net/minecraft/world/item/Items/SHULKER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42641_ net/minecraft/world/item/Items/SILVERFISH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42642_ net/minecraft/world/item/Items/SKELETON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42643_ net/minecraft/world/item/Items/SKELETON_HORSE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42644_ net/minecraft/world/item/Items/SLIME_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42645_ net/minecraft/world/item/Items/SPIDER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42646_ net/minecraft/world/item/Items/SQUID_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42647_ net/minecraft/world/item/Items/OAK_PLANKS +FD: net/minecraft/world/item/Items/f_42648_ net/minecraft/world/item/Items/RABBIT_FOOT +FD: net/minecraft/world/item/Items/f_42649_ net/minecraft/world/item/Items/RABBIT_HIDE +FD: net/minecraft/world/item/Items/f_42650_ net/minecraft/world/item/Items/ARMOR_STAND +FD: net/minecraft/world/item/Items/f_42651_ net/minecraft/world/item/Items/IRON_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42652_ net/minecraft/world/item/Items/GOLDEN_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42653_ net/minecraft/world/item/Items/DIAMOND_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42654_ net/minecraft/world/item/Items/LEATHER_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42655_ net/minecraft/world/item/Items/LEAD +FD: net/minecraft/world/item/Items/f_42656_ net/minecraft/world/item/Items/NAME_TAG +FD: net/minecraft/world/item/Items/f_42657_ net/minecraft/world/item/Items/COMMAND_BLOCK_MINECART +FD: net/minecraft/world/item/Items/f_42658_ net/minecraft/world/item/Items/MUTTON +FD: net/minecraft/world/item/Items/f_42659_ net/minecraft/world/item/Items/COOKED_MUTTON +FD: net/minecraft/world/item/Items/f_42660_ net/minecraft/world/item/Items/WHITE_BANNER +FD: net/minecraft/world/item/Items/f_42661_ net/minecraft/world/item/Items/ORANGE_BANNER +FD: net/minecraft/world/item/Items/f_42662_ net/minecraft/world/item/Items/MAGENTA_BANNER +FD: net/minecraft/world/item/Items/f_42663_ net/minecraft/world/item/Items/LIGHT_BLUE_BANNER +FD: net/minecraft/world/item/Items/f_42664_ net/minecraft/world/item/Items/YELLOW_BANNER +FD: net/minecraft/world/item/Items/f_42665_ net/minecraft/world/item/Items/LIME_BANNER +FD: net/minecraft/world/item/Items/f_42666_ net/minecraft/world/item/Items/PINK_BANNER +FD: net/minecraft/world/item/Items/f_42667_ net/minecraft/world/item/Items/GRAY_BANNER +FD: net/minecraft/world/item/Items/f_42668_ net/minecraft/world/item/Items/LIGHT_GRAY_BANNER +FD: net/minecraft/world/item/Items/f_42669_ net/minecraft/world/item/Items/CYAN_BANNER +FD: net/minecraft/world/item/Items/f_42670_ net/minecraft/world/item/Items/PURPLE_BANNER +FD: net/minecraft/world/item/Items/f_42671_ net/minecraft/world/item/Items/BLUE_BANNER +FD: net/minecraft/world/item/Items/f_42672_ net/minecraft/world/item/Items/BROWN_BANNER +FD: net/minecraft/world/item/Items/f_42673_ net/minecraft/world/item/Items/GREEN_BANNER +FD: net/minecraft/world/item/Items/f_42674_ net/minecraft/world/item/Items/BAKED_POTATO +FD: net/minecraft/world/item/Items/f_42675_ net/minecraft/world/item/Items/POISONOUS_POTATO +FD: net/minecraft/world/item/Items/f_42676_ net/minecraft/world/item/Items/MAP +FD: net/minecraft/world/item/Items/f_42677_ net/minecraft/world/item/Items/GOLDEN_CARROT +FD: net/minecraft/world/item/Items/f_42678_ net/minecraft/world/item/Items/SKELETON_SKULL +FD: net/minecraft/world/item/Items/f_42679_ net/minecraft/world/item/Items/WITHER_SKELETON_SKULL +FD: net/minecraft/world/item/Items/f_42680_ net/minecraft/world/item/Items/PLAYER_HEAD +FD: net/minecraft/world/item/Items/f_42681_ net/minecraft/world/item/Items/ZOMBIE_HEAD +FD: net/minecraft/world/item/Items/f_42682_ net/minecraft/world/item/Items/CREEPER_HEAD +FD: net/minecraft/world/item/Items/f_42683_ net/minecraft/world/item/Items/DRAGON_HEAD +FD: net/minecraft/world/item/Items/f_42684_ net/minecraft/world/item/Items/CARROT_ON_A_STICK +FD: net/minecraft/world/item/Items/f_42685_ net/minecraft/world/item/Items/WARPED_FUNGUS_ON_A_STICK +FD: net/minecraft/world/item/Items/f_42686_ net/minecraft/world/item/Items/NETHER_STAR +FD: net/minecraft/world/item/Items/f_42687_ net/minecraft/world/item/Items/PUMPKIN_PIE +FD: net/minecraft/world/item/Items/f_42688_ net/minecraft/world/item/Items/FIREWORK_ROCKET +FD: net/minecraft/world/item/Items/f_42689_ net/minecraft/world/item/Items/FIREWORK_STAR +FD: net/minecraft/world/item/Items/f_42690_ net/minecraft/world/item/Items/ENCHANTED_BOOK +FD: net/minecraft/world/item/Items/f_42691_ net/minecraft/world/item/Items/NETHER_BRICK +FD: net/minecraft/world/item/Items/f_42692_ net/minecraft/world/item/Items/QUARTZ +FD: net/minecraft/world/item/Items/f_42693_ net/minecraft/world/item/Items/TNT_MINECART +FD: net/minecraft/world/item/Items/f_42694_ net/minecraft/world/item/Items/HOPPER_MINECART +FD: net/minecraft/world/item/Items/f_42695_ net/minecraft/world/item/Items/PRISMARINE_SHARD +FD: net/minecraft/world/item/Items/f_42696_ net/minecraft/world/item/Items/PRISMARINE_CRYSTALS +FD: net/minecraft/world/item/Items/f_42697_ net/minecraft/world/item/Items/RABBIT +FD: net/minecraft/world/item/Items/f_42698_ net/minecraft/world/item/Items/COOKED_RABBIT +FD: net/minecraft/world/item/Items/f_42699_ net/minecraft/world/item/Items/RABBIT_STEW +FD: net/minecraft/world/item/Items/f_42700_ net/minecraft/world/item/Items/SPRUCE_PLANKS +FD: net/minecraft/world/item/Items/f_42701_ net/minecraft/world/item/Items/MUSIC_DISC_CAT +FD: net/minecraft/world/item/Items/f_42702_ net/minecraft/world/item/Items/MUSIC_DISC_BLOCKS +FD: net/minecraft/world/item/Items/f_42703_ net/minecraft/world/item/Items/MUSIC_DISC_CHIRP +FD: net/minecraft/world/item/Items/f_42704_ net/minecraft/world/item/Items/MUSIC_DISC_FAR +FD: net/minecraft/world/item/Items/f_42705_ net/minecraft/world/item/Items/MUSIC_DISC_MALL +FD: net/minecraft/world/item/Items/f_42706_ net/minecraft/world/item/Items/MUSIC_DISC_MELLOHI +FD: net/minecraft/world/item/Items/f_42707_ net/minecraft/world/item/Items/MUSIC_DISC_STAL +FD: net/minecraft/world/item/Items/f_42708_ net/minecraft/world/item/Items/MUSIC_DISC_STRAD +FD: net/minecraft/world/item/Items/f_42709_ net/minecraft/world/item/Items/MUSIC_DISC_WARD +FD: net/minecraft/world/item/Items/f_42710_ net/minecraft/world/item/Items/MUSIC_DISC_11 +FD: net/minecraft/world/item/Items/f_42711_ net/minecraft/world/item/Items/MUSIC_DISC_WAIT +FD: net/minecraft/world/item/Items/f_42712_ net/minecraft/world/item/Items/MUSIC_DISC_PIGSTEP +FD: net/minecraft/world/item/Items/f_42713_ net/minecraft/world/item/Items/TRIDENT +FD: net/minecraft/world/item/Items/f_42714_ net/minecraft/world/item/Items/PHANTOM_MEMBRANE +FD: net/minecraft/world/item/Items/f_42715_ net/minecraft/world/item/Items/NAUTILUS_SHELL +FD: net/minecraft/world/item/Items/f_42716_ net/minecraft/world/item/Items/HEART_OF_THE_SEA +FD: net/minecraft/world/item/Items/f_42717_ net/minecraft/world/item/Items/CROSSBOW +FD: net/minecraft/world/item/Items/f_42718_ net/minecraft/world/item/Items/SUSPICIOUS_STEW +FD: net/minecraft/world/item/Items/f_42719_ net/minecraft/world/item/Items/LOOM +FD: net/minecraft/world/item/Items/f_42720_ net/minecraft/world/item/Items/FLOWER_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42721_ net/minecraft/world/item/Items/CREEPER_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42722_ net/minecraft/world/item/Items/SKULL_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42723_ net/minecraft/world/item/Items/MOJANG_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42725_ net/minecraft/world/item/Items/PIGLIN_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42726_ net/minecraft/world/item/Items/COMPOSTER +FD: net/minecraft/world/item/Items/f_42727_ net/minecraft/world/item/Items/RED_BANNER +FD: net/minecraft/world/item/Items/f_42728_ net/minecraft/world/item/Items/BLACK_BANNER +FD: net/minecraft/world/item/Items/f_42729_ net/minecraft/world/item/Items/END_CRYSTAL +FD: net/minecraft/world/item/Items/f_42730_ net/minecraft/world/item/Items/CHORUS_FRUIT +FD: net/minecraft/world/item/Items/f_42731_ net/minecraft/world/item/Items/POPPED_CHORUS_FRUIT +FD: net/minecraft/world/item/Items/f_42732_ net/minecraft/world/item/Items/BEETROOT +FD: net/minecraft/world/item/Items/f_42733_ net/minecraft/world/item/Items/BEETROOT_SEEDS +FD: net/minecraft/world/item/Items/f_42734_ net/minecraft/world/item/Items/BEETROOT_SOUP +FD: net/minecraft/world/item/Items/f_42735_ net/minecraft/world/item/Items/DRAGON_BREATH +FD: net/minecraft/world/item/Items/f_42736_ net/minecraft/world/item/Items/SPLASH_POTION +FD: net/minecraft/world/item/Items/f_42737_ net/minecraft/world/item/Items/SPECTRAL_ARROW +FD: net/minecraft/world/item/Items/f_42738_ net/minecraft/world/item/Items/TIPPED_ARROW +FD: net/minecraft/world/item/Items/f_42739_ net/minecraft/world/item/Items/LINGERING_POTION +FD: net/minecraft/world/item/Items/f_42740_ net/minecraft/world/item/Items/SHIELD +FD: net/minecraft/world/item/Items/f_42741_ net/minecraft/world/item/Items/ELYTRA +FD: net/minecraft/world/item/Items/f_42742_ net/minecraft/world/item/Items/SPRUCE_BOAT +FD: net/minecraft/world/item/Items/f_42743_ net/minecraft/world/item/Items/BIRCH_BOAT +FD: net/minecraft/world/item/Items/f_42744_ net/minecraft/world/item/Items/JUNGLE_BOAT +FD: net/minecraft/world/item/Items/f_42745_ net/minecraft/world/item/Items/ACACIA_BOAT +FD: net/minecraft/world/item/Items/f_42746_ net/minecraft/world/item/Items/DARK_OAK_BOAT +FD: net/minecraft/world/item/Items/f_42747_ net/minecraft/world/item/Items/TOTEM_OF_UNDYING +FD: net/minecraft/world/item/Items/f_42748_ net/minecraft/world/item/Items/SHULKER_SHELL +FD: net/minecraft/world/item/Items/f_42749_ net/minecraft/world/item/Items/IRON_NUGGET +FD: net/minecraft/world/item/Items/f_42750_ net/minecraft/world/item/Items/KNOWLEDGE_BOOK +FD: net/minecraft/world/item/Items/f_42751_ net/minecraft/world/item/Items/DEBUG_STICK +FD: net/minecraft/world/item/Items/f_42752_ net/minecraft/world/item/Items/MUSIC_DISC_13 +FD: net/minecraft/world/item/Items/f_42753_ net/minecraft/world/item/Items/BIRCH_PLANKS +FD: net/minecraft/world/item/Items/f_42754_ net/minecraft/world/item/Items/CRYING_OBSIDIAN +FD: net/minecraft/world/item/Items/f_42755_ net/minecraft/world/item/Items/BLACKSTONE +FD: net/minecraft/world/item/Items/f_42756_ net/minecraft/world/item/Items/BLACKSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42757_ net/minecraft/world/item/Items/BLACKSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42758_ net/minecraft/world/item/Items/GILDED_BLACKSTONE +FD: net/minecraft/world/item/Items/f_42759_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE +FD: net/minecraft/world/item/Items/f_42760_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42761_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42762_ net/minecraft/world/item/Items/CHISELED_POLISHED_BLACKSTONE +FD: net/minecraft/world/item/Items/f_42763_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/item/Items/f_42764_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42765_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42766_ net/minecraft/world/item/Items/CRACKED_POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/item/Items/f_42767_ net/minecraft/world/item/Items/RESPAWN_ANCHOR +FD: net/minecraft/world/item/Items/f_42768_ net/minecraft/world/item/Items/BARREL +FD: net/minecraft/world/item/Items/f_42769_ net/minecraft/world/item/Items/SMOKER +FD: net/minecraft/world/item/Items/f_42770_ net/minecraft/world/item/Items/BLAST_FURNACE +FD: net/minecraft/world/item/Items/f_42771_ net/minecraft/world/item/Items/CARTOGRAPHY_TABLE +FD: net/minecraft/world/item/Items/f_42772_ net/minecraft/world/item/Items/FLETCHING_TABLE +FD: net/minecraft/world/item/Items/f_42773_ net/minecraft/world/item/Items/GRINDSTONE +FD: net/minecraft/world/item/Items/f_42774_ net/minecraft/world/item/Items/LECTERN +FD: net/minecraft/world/item/Items/f_42775_ net/minecraft/world/item/Items/SMITHING_TABLE +FD: net/minecraft/world/item/Items/f_42776_ net/minecraft/world/item/Items/STONECUTTER +FD: net/minecraft/world/item/Items/f_42777_ net/minecraft/world/item/Items/BELL +FD: net/minecraft/world/item/Items/f_42778_ net/minecraft/world/item/Items/LANTERN +FD: net/minecraft/world/item/Items/f_42779_ net/minecraft/world/item/Items/SOUL_LANTERN +FD: net/minecraft/world/item/Items/f_42780_ net/minecraft/world/item/Items/SWEET_BERRIES +FD: net/minecraft/world/item/Items/f_42781_ net/minecraft/world/item/Items/CAMPFIRE +FD: net/minecraft/world/item/Items/f_42782_ net/minecraft/world/item/Items/SOUL_CAMPFIRE +FD: net/minecraft/world/item/Items/f_42783_ net/minecraft/world/item/Items/SHROOMLIGHT +FD: net/minecraft/world/item/Items/f_42784_ net/minecraft/world/item/Items/HONEYCOMB +FD: net/minecraft/world/item/Items/f_42785_ net/minecraft/world/item/Items/BEE_NEST +FD: net/minecraft/world/item/Items/f_42786_ net/minecraft/world/item/Items/BEEHIVE +FD: net/minecraft/world/item/Items/f_42787_ net/minecraft/world/item/Items/HONEY_BOTTLE +FD: net/minecraft/world/item/Items/f_42788_ net/minecraft/world/item/Items/HONEY_BLOCK +FD: net/minecraft/world/item/Items/f_42789_ net/minecraft/world/item/Items/HONEYCOMB_BLOCK +FD: net/minecraft/world/item/Items/f_42790_ net/minecraft/world/item/Items/LODESTONE +FD: net/minecraft/world/item/Items/f_42791_ net/minecraft/world/item/Items/NETHERITE_BLOCK +FD: net/minecraft/world/item/Items/f_42792_ net/minecraft/world/item/Items/ANCIENT_DEBRIS +FD: net/minecraft/world/item/Items/f_42793_ net/minecraft/world/item/Items/TARGET +FD: net/minecraft/world/item/Items/f_42794_ net/minecraft/world/item/Items/JUNGLE_PLANKS +FD: net/minecraft/world/item/Items/f_42795_ net/minecraft/world/item/Items/ACACIA_PLANKS +FD: net/minecraft/world/item/Items/f_42796_ net/minecraft/world/item/Items/DARK_OAK_PLANKS +FD: net/minecraft/world/item/Items/f_42797_ net/minecraft/world/item/Items/CRIMSON_PLANKS +FD: net/minecraft/world/item/Items/f_42798_ net/minecraft/world/item/Items/WARPED_PLANKS +FD: net/minecraft/world/item/Items/f_42799_ net/minecraft/world/item/Items/OAK_SAPLING +FD: net/minecraft/world/item/Items/f_42800_ net/minecraft/world/item/Items/SPRUCE_SAPLING +FD: net/minecraft/world/item/Items/f_42801_ net/minecraft/world/item/Items/BIRCH_SAPLING +FD: net/minecraft/world/item/KnowledgeBookItem/f_151103_ net/minecraft/world/item/KnowledgeBookItem/RECIPE_TAG +FD: net/minecraft/world/item/KnowledgeBookItem/f_42819_ net/minecraft/world/item/KnowledgeBookItem/LOGGER +FD: net/minecraft/world/item/MapItem/f_151104_ net/minecraft/world/item/MapItem/IMAGE_WIDTH +FD: net/minecraft/world/item/MapItem/f_151105_ net/minecraft/world/item/MapItem/IMAGE_HEIGHT +FD: net/minecraft/world/item/MapItem/f_151106_ net/minecraft/world/item/MapItem/DEFAULT_MAP_COLOR +FD: net/minecraft/world/item/MapItem/f_151107_ net/minecraft/world/item/MapItem/TAG_MAP +FD: net/minecraft/world/item/MapItem/f_256921_ net/minecraft/world/item/MapItem/MAP_LOCK_TAG +FD: net/minecraft/world/item/MapItem/f_257005_ net/minecraft/world/item/MapItem/MAP_SCALE_TAG +FD: net/minecraft/world/item/MilkBucketItem/f_151133_ net/minecraft/world/item/MilkBucketItem/DRINK_DURATION +FD: net/minecraft/world/item/MinecartItem/f_42934_ net/minecraft/world/item/MinecartItem/DISPENSE_ITEM_BEHAVIOR +FD: net/minecraft/world/item/MinecartItem/f_42935_ net/minecraft/world/item/MinecartItem/type +FD: net/minecraft/world/item/MinecartItem$1/f_42944_ net/minecraft/world/item/MinecartItem$1/defaultDispenseItemBehavior +FD: net/minecraft/world/item/MobBucketItem/f_151134_ net/minecraft/world/item/MobBucketItem/type +FD: net/minecraft/world/item/MobBucketItem/f_151135_ net/minecraft/world/item/MobBucketItem/emptySound +FD: net/minecraft/world/item/PlayerHeadItem/f_151174_ net/minecraft/world/item/PlayerHeadItem/TAG_SKULL_OWNER +FD: net/minecraft/world/item/PotionItem/f_151180_ net/minecraft/world/item/PotionItem/DRINK_DURATION +FD: net/minecraft/world/item/ProjectileWeaponItem/f_43005_ net/minecraft/world/item/ProjectileWeaponItem/ARROW_ONLY +FD: net/minecraft/world/item/ProjectileWeaponItem/f_43006_ net/minecraft/world/item/ProjectileWeaponItem/ARROW_OR_FIREWORK +FD: net/minecraft/world/item/Rarity/$VALUES net/minecraft/world/item/Rarity/$VALUES +FD: net/minecraft/world/item/Rarity/COMMON net/minecraft/world/item/Rarity/COMMON +FD: net/minecraft/world/item/Rarity/EPIC net/minecraft/world/item/Rarity/EPIC +FD: net/minecraft/world/item/Rarity/RARE net/minecraft/world/item/Rarity/RARE +FD: net/minecraft/world/item/Rarity/UNCOMMON net/minecraft/world/item/Rarity/UNCOMMON +FD: net/minecraft/world/item/Rarity/f_43022_ net/minecraft/world/item/Rarity/color +FD: net/minecraft/world/item/RecordItem/f_238749_ net/minecraft/world/item/RecordItem/lengthInTicks +FD: net/minecraft/world/item/RecordItem/f_43032_ net/minecraft/world/item/RecordItem/BY_NAME +FD: net/minecraft/world/item/RecordItem/f_43033_ net/minecraft/world/item/RecordItem/analogOutput +FD: net/minecraft/world/item/RecordItem/f_43034_ net/minecraft/world/item/RecordItem/sound +FD: net/minecraft/world/item/ServerItemCooldowns/f_43065_ net/minecraft/world/item/ServerItemCooldowns/player +FD: net/minecraft/world/item/ShieldItem/f_151182_ net/minecraft/world/item/ShieldItem/EFFECTIVE_BLOCK_DELAY +FD: net/minecraft/world/item/ShieldItem/f_151183_ net/minecraft/world/item/ShieldItem/MINIMUM_DURABILITY_DAMAGE +FD: net/minecraft/world/item/ShieldItem/f_151184_ net/minecraft/world/item/ShieldItem/TAG_BASE_COLOR +FD: net/minecraft/world/item/ShovelItem/f_43110_ net/minecraft/world/item/ShovelItem/FLATTENABLES +FD: net/minecraft/world/item/SmithingTemplateItem/f_265846_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_BASE_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_265856_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_INGREDIENTS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265859_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_LEGGINGS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265860_ net/minecraft/world/item/SmithingTemplateItem/DESCRIPTION_ID +FD: net/minecraft/world/item/SmithingTemplateItem/f_265863_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_BASE_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_265864_ net/minecraft/world/item/SmithingTemplateItem/INGREDIENTS_TITLE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265873_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_DIAMOND +FD: net/minecraft/world/item/SmithingTemplateItem/f_265875_ net/minecraft/world/item/SmithingTemplateItem/baseSlotEmptyIcons +FD: net/minecraft/world/item/SmithingTemplateItem/f_265879_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_LAPIS_LAZULI +FD: net/minecraft/world/item/SmithingTemplateItem/f_265894_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_QUARTZ +FD: net/minecraft/world/item/SmithingTemplateItem/f_265895_ net/minecraft/world/item/SmithingTemplateItem/APPLIES_TO_TITLE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265906_ net/minecraft/world/item/SmithingTemplateItem/TITLE_FORMAT +FD: net/minecraft/world/item/SmithingTemplateItem/f_265917_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_BOOTS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265923_ net/minecraft/world/item/SmithingTemplateItem/DESCRIPTION_FORMAT +FD: net/minecraft/world/item/SmithingTemplateItem/f_265932_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_SHOVEL +FD: net/minecraft/world/item/SmithingTemplateItem/f_265939_ net/minecraft/world/item/SmithingTemplateItem/upgradeDescription +FD: net/minecraft/world/item/SmithingTemplateItem/f_265948_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_APPLIES_TO +FD: net/minecraft/world/item/SmithingTemplateItem/f_265950_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_HOE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265955_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_PICKAXE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265960_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_INGREDIENTS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265982_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265990_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_AXE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265995_ net/minecraft/world/item/SmithingTemplateItem/baseSlotDescription +FD: net/minecraft/world/item/SmithingTemplateItem/f_266023_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_ADDITIONS_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_266026_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_INGOT +FD: net/minecraft/world/item/SmithingTemplateItem/f_266037_ net/minecraft/world/item/SmithingTemplateItem/ingredients +FD: net/minecraft/world/item/SmithingTemplateItem/f_266054_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_APPLIES_TO +FD: net/minecraft/world/item/SmithingTemplateItem/f_266066_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_CHESTPLATE +FD: net/minecraft/world/item/SmithingTemplateItem/f_266068_ net/minecraft/world/item/SmithingTemplateItem/additionalSlotEmptyIcons +FD: net/minecraft/world/item/SmithingTemplateItem/f_266072_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_ADDITIONS_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_266075_ net/minecraft/world/item/SmithingTemplateItem/additionsSlotDescription +FD: net/minecraft/world/item/SmithingTemplateItem/f_266082_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_REDSTONE_DUST +FD: net/minecraft/world/item/SmithingTemplateItem/f_266085_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_EMERALD +FD: net/minecraft/world/item/SmithingTemplateItem/f_266096_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_SWORD +FD: net/minecraft/world/item/SmithingTemplateItem/f_266097_ net/minecraft/world/item/SmithingTemplateItem/appliesTo +FD: net/minecraft/world/item/SmithingTemplateItem/f_266113_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_HELMET +FD: net/minecraft/world/item/SmithingTemplateItem/f_268746_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_AMETHYST_SHARD +FD: net/minecraft/world/item/SolidBucketItem/f_151185_ net/minecraft/world/item/SolidBucketItem/placeSound +FD: net/minecraft/world/item/SpawnEggItem/f_151200_ net/minecraft/world/item/SpawnEggItem/backgroundColor +FD: net/minecraft/world/item/SpawnEggItem/f_151201_ net/minecraft/world/item/SpawnEggItem/highlightColor +FD: net/minecraft/world/item/SpawnEggItem/f_43201_ net/minecraft/world/item/SpawnEggItem/BY_ID +FD: net/minecraft/world/item/SpawnEggItem/f_43204_ net/minecraft/world/item/SpawnEggItem/defaultType +FD: net/minecraft/world/item/SpyglassItem/f_151202_ net/minecraft/world/item/SpyglassItem/USE_DURATION +FD: net/minecraft/world/item/SpyglassItem/f_151203_ net/minecraft/world/item/SpyglassItem/ZOOM_FOV_MODIFIER +FD: net/minecraft/world/item/StandingAndWallBlockItem/f_244386_ net/minecraft/world/item/StandingAndWallBlockItem/attachmentDirection +FD: net/minecraft/world/item/StandingAndWallBlockItem/f_43246_ net/minecraft/world/item/StandingAndWallBlockItem/wallBlock +FD: net/minecraft/world/item/SuspiciousStewItem/f_151225_ net/minecraft/world/item/SuspiciousStewItem/EFFECTS_TAG +FD: net/minecraft/world/item/SuspiciousStewItem/f_151226_ net/minecraft/world/item/SuspiciousStewItem/EFFECT_ID_TAG +FD: net/minecraft/world/item/SuspiciousStewItem/f_151227_ net/minecraft/world/item/SuspiciousStewItem/EFFECT_DURATION_TAG +FD: net/minecraft/world/item/SuspiciousStewItem/f_256996_ net/minecraft/world/item/SuspiciousStewItem/DEFAULT_DURATION +FD: net/minecraft/world/item/SwordItem/f_43266_ net/minecraft/world/item/SwordItem/attackDamage +FD: net/minecraft/world/item/SwordItem/f_43267_ net/minecraft/world/item/SwordItem/defaultModifiers +FD: net/minecraft/world/item/TieredItem/f_43306_ net/minecraft/world/item/TieredItem/tier +FD: net/minecraft/world/item/Tiers/$VALUES net/minecraft/world/item/Tiers/$VALUES +FD: net/minecraft/world/item/Tiers/DIAMOND net/minecraft/world/item/Tiers/DIAMOND +FD: net/minecraft/world/item/Tiers/GOLD net/minecraft/world/item/Tiers/GOLD +FD: net/minecraft/world/item/Tiers/IRON net/minecraft/world/item/Tiers/IRON +FD: net/minecraft/world/item/Tiers/NETHERITE net/minecraft/world/item/Tiers/NETHERITE +FD: net/minecraft/world/item/Tiers/STONE net/minecraft/world/item/Tiers/STONE +FD: net/minecraft/world/item/Tiers/WOOD net/minecraft/world/item/Tiers/WOOD +FD: net/minecraft/world/item/Tiers/f_43321_ net/minecraft/world/item/Tiers/level +FD: net/minecraft/world/item/Tiers/f_43322_ net/minecraft/world/item/Tiers/uses +FD: net/minecraft/world/item/Tiers/f_43323_ net/minecraft/world/item/Tiers/speed +FD: net/minecraft/world/item/Tiers/f_43324_ net/minecraft/world/item/Tiers/damage +FD: net/minecraft/world/item/Tiers/f_43325_ net/minecraft/world/item/Tiers/enchantmentValue +FD: net/minecraft/world/item/Tiers/f_43326_ net/minecraft/world/item/Tiers/repairIngredient +FD: net/minecraft/world/item/TooltipFlag/f_256730_ net/minecraft/world/item/TooltipFlag/ADVANCED +FD: net/minecraft/world/item/TooltipFlag/f_256752_ net/minecraft/world/item/TooltipFlag/NORMAL +FD: net/minecraft/world/item/TooltipFlag$Default/f_257043_ net/minecraft/world/item/TooltipFlag$Default/creative +FD: net/minecraft/world/item/TooltipFlag$Default/f_43368_ net/minecraft/world/item/TooltipFlag$Default/advanced +FD: net/minecraft/world/item/TridentItem/f_151230_ net/minecraft/world/item/TridentItem/THROW_THRESHOLD_TIME +FD: net/minecraft/world/item/TridentItem/f_151231_ net/minecraft/world/item/TridentItem/BASE_DAMAGE +FD: net/minecraft/world/item/TridentItem/f_151232_ net/minecraft/world/item/TridentItem/SHOOT_POWER +FD: net/minecraft/world/item/TridentItem/f_43379_ net/minecraft/world/item/TridentItem/defaultModifiers +FD: net/minecraft/world/item/UseAnim/$VALUES net/minecraft/world/item/UseAnim/$VALUES +FD: net/minecraft/world/item/UseAnim/BLOCK net/minecraft/world/item/UseAnim/BLOCK +FD: net/minecraft/world/item/UseAnim/BOW net/minecraft/world/item/UseAnim/BOW +FD: net/minecraft/world/item/UseAnim/BRUSH net/minecraft/world/item/UseAnim/BRUSH +FD: net/minecraft/world/item/UseAnim/CROSSBOW net/minecraft/world/item/UseAnim/CROSSBOW +FD: net/minecraft/world/item/UseAnim/DRINK net/minecraft/world/item/UseAnim/DRINK +FD: net/minecraft/world/item/UseAnim/EAT net/minecraft/world/item/UseAnim/EAT +FD: net/minecraft/world/item/UseAnim/NONE net/minecraft/world/item/UseAnim/NONE +FD: net/minecraft/world/item/UseAnim/SPEAR net/minecraft/world/item/UseAnim/SPEAR +FD: net/minecraft/world/item/UseAnim/SPYGLASS net/minecraft/world/item/UseAnim/SPYGLASS +FD: net/minecraft/world/item/UseAnim/TOOT_HORN net/minecraft/world/item/UseAnim/TOOT_HORN +FD: net/minecraft/world/item/WrittenBookItem/f_151235_ net/minecraft/world/item/WrittenBookItem/TITLE_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151236_ net/minecraft/world/item/WrittenBookItem/TITLE_MAX_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151237_ net/minecraft/world/item/WrittenBookItem/PAGE_EDIT_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151238_ net/minecraft/world/item/WrittenBookItem/PAGE_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151239_ net/minecraft/world/item/WrittenBookItem/MAX_PAGES +FD: net/minecraft/world/item/WrittenBookItem/f_151240_ net/minecraft/world/item/WrittenBookItem/MAX_GENERATION +FD: net/minecraft/world/item/WrittenBookItem/f_151241_ net/minecraft/world/item/WrittenBookItem/TAG_TITLE +FD: net/minecraft/world/item/WrittenBookItem/f_151242_ net/minecraft/world/item/WrittenBookItem/TAG_FILTERED_TITLE +FD: net/minecraft/world/item/WrittenBookItem/f_151243_ net/minecraft/world/item/WrittenBookItem/TAG_AUTHOR +FD: net/minecraft/world/item/WrittenBookItem/f_151244_ net/minecraft/world/item/WrittenBookItem/TAG_PAGES +FD: net/minecraft/world/item/WrittenBookItem/f_151245_ net/minecraft/world/item/WrittenBookItem/TAG_FILTERED_PAGES +FD: net/minecraft/world/item/WrittenBookItem/f_151246_ net/minecraft/world/item/WrittenBookItem/TAG_GENERATION +FD: net/minecraft/world/item/WrittenBookItem/f_151247_ net/minecraft/world/item/WrittenBookItem/TAG_RESOLVED +FD: net/minecraft/world/item/alchemy/Potion/f_43481_ net/minecraft/world/item/alchemy/Potion/name +FD: net/minecraft/world/item/alchemy/Potion/f_43482_ net/minecraft/world/item/alchemy/Potion/effects +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_151252_ net/minecraft/world/item/alchemy/PotionBrewing/BREWING_TIME_SECONDS +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43494_ net/minecraft/world/item/alchemy/PotionBrewing/POTION_MIXES +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43495_ net/minecraft/world/item/alchemy/PotionBrewing/CONTAINER_MIXES +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43496_ net/minecraft/world/item/alchemy/PotionBrewing/ALLOWED_CONTAINERS +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43497_ net/minecraft/world/item/alchemy/PotionBrewing/ALLOWED_CONTAINER +FD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/f_43532_ net/minecraft/world/item/alchemy/PotionBrewing$Mix/from +FD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/f_43533_ net/minecraft/world/item/alchemy/PotionBrewing$Mix/ingredient +FD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/f_43534_ net/minecraft/world/item/alchemy/PotionBrewing$Mix/to +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151254_ net/minecraft/world/item/alchemy/PotionUtils/TAG_CUSTOM_POTION_EFFECTS +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151255_ net/minecraft/world/item/alchemy/PotionUtils/TAG_CUSTOM_POTION_COLOR +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151256_ net/minecraft/world/item/alchemy/PotionUtils/TAG_POTION +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151257_ net/minecraft/world/item/alchemy/PotionUtils/EMPTY_COLOR +FD: net/minecraft/world/item/alchemy/PotionUtils/f_43545_ net/minecraft/world/item/alchemy/PotionUtils/NO_EFFECT +FD: net/minecraft/world/item/alchemy/Potions/f_268695_ net/minecraft/world/item/alchemy/Potions/EMPTY_ID +FD: net/minecraft/world/item/alchemy/Potions/f_43581_ net/minecraft/world/item/alchemy/Potions/STRONG_HEALING +FD: net/minecraft/world/item/alchemy/Potions/f_43582_ net/minecraft/world/item/alchemy/Potions/HARMING +FD: net/minecraft/world/item/alchemy/Potions/f_43583_ net/minecraft/world/item/alchemy/Potions/STRONG_HARMING +FD: net/minecraft/world/item/alchemy/Potions/f_43584_ net/minecraft/world/item/alchemy/Potions/POISON +FD: net/minecraft/world/item/alchemy/Potions/f_43585_ net/minecraft/world/item/alchemy/Potions/LONG_POISON +FD: net/minecraft/world/item/alchemy/Potions/f_43586_ net/minecraft/world/item/alchemy/Potions/STRONG_POISON +FD: net/minecraft/world/item/alchemy/Potions/f_43587_ net/minecraft/world/item/alchemy/Potions/REGENERATION +FD: net/minecraft/world/item/alchemy/Potions/f_43588_ net/minecraft/world/item/alchemy/Potions/LONG_REGENERATION +FD: net/minecraft/world/item/alchemy/Potions/f_43589_ net/minecraft/world/item/alchemy/Potions/STRONG_REGENERATION +FD: net/minecraft/world/item/alchemy/Potions/f_43590_ net/minecraft/world/item/alchemy/Potions/STRENGTH +FD: net/minecraft/world/item/alchemy/Potions/f_43591_ net/minecraft/world/item/alchemy/Potions/LONG_STRENGTH +FD: net/minecraft/world/item/alchemy/Potions/f_43592_ net/minecraft/world/item/alchemy/Potions/STRONG_STRENGTH +FD: net/minecraft/world/item/alchemy/Potions/f_43593_ net/minecraft/world/item/alchemy/Potions/WEAKNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43594_ net/minecraft/world/item/alchemy/Potions/LONG_WEAKNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43595_ net/minecraft/world/item/alchemy/Potions/LUCK +FD: net/minecraft/world/item/alchemy/Potions/f_43596_ net/minecraft/world/item/alchemy/Potions/SLOW_FALLING +FD: net/minecraft/world/item/alchemy/Potions/f_43597_ net/minecraft/world/item/alchemy/Potions/LONG_SLOW_FALLING +FD: net/minecraft/world/item/alchemy/Potions/f_43598_ net/minecraft/world/item/alchemy/Potions/EMPTY +FD: net/minecraft/world/item/alchemy/Potions/f_43599_ net/minecraft/world/item/alchemy/Potions/WATER +FD: net/minecraft/world/item/alchemy/Potions/f_43600_ net/minecraft/world/item/alchemy/Potions/MUNDANE +FD: net/minecraft/world/item/alchemy/Potions/f_43601_ net/minecraft/world/item/alchemy/Potions/THICK +FD: net/minecraft/world/item/alchemy/Potions/f_43602_ net/minecraft/world/item/alchemy/Potions/AWKWARD +FD: net/minecraft/world/item/alchemy/Potions/f_43603_ net/minecraft/world/item/alchemy/Potions/NIGHT_VISION +FD: net/minecraft/world/item/alchemy/Potions/f_43604_ net/minecraft/world/item/alchemy/Potions/LONG_NIGHT_VISION +FD: net/minecraft/world/item/alchemy/Potions/f_43605_ net/minecraft/world/item/alchemy/Potions/INVISIBILITY +FD: net/minecraft/world/item/alchemy/Potions/f_43606_ net/minecraft/world/item/alchemy/Potions/LONG_INVISIBILITY +FD: net/minecraft/world/item/alchemy/Potions/f_43607_ net/minecraft/world/item/alchemy/Potions/LEAPING +FD: net/minecraft/world/item/alchemy/Potions/f_43608_ net/minecraft/world/item/alchemy/Potions/LONG_LEAPING +FD: net/minecraft/world/item/alchemy/Potions/f_43609_ net/minecraft/world/item/alchemy/Potions/STRONG_LEAPING +FD: net/minecraft/world/item/alchemy/Potions/f_43610_ net/minecraft/world/item/alchemy/Potions/FIRE_RESISTANCE +FD: net/minecraft/world/item/alchemy/Potions/f_43611_ net/minecraft/world/item/alchemy/Potions/LONG_FIRE_RESISTANCE +FD: net/minecraft/world/item/alchemy/Potions/f_43612_ net/minecraft/world/item/alchemy/Potions/SWIFTNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43613_ net/minecraft/world/item/alchemy/Potions/LONG_SWIFTNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43614_ net/minecraft/world/item/alchemy/Potions/STRONG_SWIFTNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43615_ net/minecraft/world/item/alchemy/Potions/SLOWNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43616_ net/minecraft/world/item/alchemy/Potions/LONG_SLOWNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43617_ net/minecraft/world/item/alchemy/Potions/STRONG_SLOWNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43618_ net/minecraft/world/item/alchemy/Potions/TURTLE_MASTER +FD: net/minecraft/world/item/alchemy/Potions/f_43619_ net/minecraft/world/item/alchemy/Potions/LONG_TURTLE_MASTER +FD: net/minecraft/world/item/alchemy/Potions/f_43620_ net/minecraft/world/item/alchemy/Potions/STRONG_TURTLE_MASTER +FD: net/minecraft/world/item/alchemy/Potions/f_43621_ net/minecraft/world/item/alchemy/Potions/WATER_BREATHING +FD: net/minecraft/world/item/alchemy/Potions/f_43622_ net/minecraft/world/item/alchemy/Potions/LONG_WATER_BREATHING +FD: net/minecraft/world/item/alchemy/Potions/f_43623_ net/minecraft/world/item/alchemy/Potions/HEALING +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265908_ net/minecraft/world/item/armortrim/ArmorTrim/TAG_TRIM_ID +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265943_ net/minecraft/world/item/armortrim/ArmorTrim/pattern +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265947_ net/minecraft/world/item/armortrim/ArmorTrim/innerTexture +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265975_ net/minecraft/world/item/armortrim/ArmorTrim/outerTexture +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265985_ net/minecraft/world/item/armortrim/ArmorTrim/CODEC +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_266045_ net/minecraft/world/item/armortrim/ArmorTrim/material +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_266060_ net/minecraft/world/item/armortrim/ArmorTrim/UPGRADE_TITLE +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_266079_ net/minecraft/world/item/armortrim/ArmorTrim/LOGGER +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_265854_ net/minecraft/world/item/armortrim/TrimMaterial/assetName +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_265933_ net/minecraft/world/item/armortrim/TrimMaterial/itemModelIndex +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_265970_ net/minecraft/world/item/armortrim/TrimMaterial/ingredient +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_266021_ net/minecraft/world/item/armortrim/TrimMaterial/description +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_266056_ net/minecraft/world/item/armortrim/TrimMaterial/CODEC +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_266095_ net/minecraft/world/item/armortrim/TrimMaterial/DIRECT_CODEC +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_267481_ net/minecraft/world/item/armortrim/TrimMaterial/overrideArmorMaterials +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265870_ net/minecraft/world/item/armortrim/TrimMaterials/REDSTONE +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265872_ net/minecraft/world/item/armortrim/TrimMaterials/AMETHYST +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265896_ net/minecraft/world/item/armortrim/TrimMaterials/NETHERITE +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265905_ net/minecraft/world/item/armortrim/TrimMaterials/QUARTZ +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265937_ net/minecraft/world/item/armortrim/TrimMaterials/GOLD +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265969_ net/minecraft/world/item/armortrim/TrimMaterials/COPPER +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265981_ net/minecraft/world/item/armortrim/TrimMaterials/LAPIS +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_266000_ net/minecraft/world/item/armortrim/TrimMaterials/IRON +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_266027_ net/minecraft/world/item/armortrim/TrimMaterials/DIAMOND +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_266071_ net/minecraft/world/item/armortrim/TrimMaterials/EMERALD +FD: net/minecraft/world/item/armortrim/TrimPattern/f_265847_ net/minecraft/world/item/armortrim/TrimPattern/templateItem +FD: net/minecraft/world/item/armortrim/TrimPattern/f_265850_ net/minecraft/world/item/armortrim/TrimPattern/description +FD: net/minecraft/world/item/armortrim/TrimPattern/f_265977_ net/minecraft/world/item/armortrim/TrimPattern/CODEC +FD: net/minecraft/world/item/armortrim/TrimPattern/f_266050_ net/minecraft/world/item/armortrim/TrimPattern/DIRECT_CODEC +FD: net/minecraft/world/item/armortrim/TrimPattern/f_266052_ net/minecraft/world/item/armortrim/TrimPattern/assetId +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265866_ net/minecraft/world/item/armortrim/TrimPatterns/SENTRY +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265901_ net/minecraft/world/item/armortrim/TrimPatterns/COAST +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265941_ net/minecraft/world/item/armortrim/TrimPatterns/DUNE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265976_ net/minecraft/world/item/armortrim/TrimPatterns/SPIRE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266039_ net/minecraft/world/item/armortrim/TrimPatterns/VEX +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266069_ net/minecraft/world/item/armortrim/TrimPatterns/TIDE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266074_ net/minecraft/world/item/armortrim/TrimPatterns/WARD +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266083_ net/minecraft/world/item/armortrim/TrimPatterns/SNOUT +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266087_ net/minecraft/world/item/armortrim/TrimPatterns/WILD +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266089_ net/minecraft/world/item/armortrim/TrimPatterns/RIB +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266091_ net/minecraft/world/item/armortrim/TrimPatterns/EYE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276435_ net/minecraft/world/item/armortrim/TrimPatterns/RAISER +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276510_ net/minecraft/world/item/armortrim/TrimPatterns/SILENCE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276573_ net/minecraft/world/item/armortrim/TrimPatterns/HOST +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276604_ net/minecraft/world/item/armortrim/TrimPatterns/SHAPER +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276615_ net/minecraft/world/item/armortrim/TrimPatterns/WAYFINDER +FD: net/minecraft/world/item/context/BlockPlaceContext/f_43628_ net/minecraft/world/item/context/BlockPlaceContext/replaceClicked +FD: net/minecraft/world/item/context/BlockPlaceContext/f_43629_ net/minecraft/world/item/context/BlockPlaceContext/relativePos +FD: net/minecraft/world/item/context/DirectionalPlaceContext/f_43648_ net/minecraft/world/item/context/DirectionalPlaceContext/direction +FD: net/minecraft/world/item/context/DirectionalPlaceContext$1/f_43663_ net/minecraft/world/item/context/DirectionalPlaceContext$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/item/context/UseOnContext/f_43703_ net/minecraft/world/item/context/UseOnContext/player +FD: net/minecraft/world/item/context/UseOnContext/f_43704_ net/minecraft/world/item/context/UseOnContext/hand +FD: net/minecraft/world/item/context/UseOnContext/f_43705_ net/minecraft/world/item/context/UseOnContext/hitResult +FD: net/minecraft/world/item/context/UseOnContext/f_43706_ net/minecraft/world/item/context/UseOnContext/level +FD: net/minecraft/world/item/context/UseOnContext/f_43707_ net/minecraft/world/item/context/UseOnContext/itemStack +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_243702_ net/minecraft/world/item/crafting/AbstractCookingRecipe/category +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43726_ net/minecraft/world/item/crafting/AbstractCookingRecipe/type +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43727_ net/minecraft/world/item/crafting/AbstractCookingRecipe/id +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43728_ net/minecraft/world/item/crafting/AbstractCookingRecipe/group +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43729_ net/minecraft/world/item/crafting/AbstractCookingRecipe/ingredient +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43730_ net/minecraft/world/item/crafting/AbstractCookingRecipe/result +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43731_ net/minecraft/world/item/crafting/AbstractCookingRecipe/experience +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43732_ net/minecraft/world/item/crafting/AbstractCookingRecipe/cookingTime +FD: net/minecraft/world/item/crafting/CookingBookCategory/$VALUES net/minecraft/world/item/crafting/CookingBookCategory/$VALUES +FD: net/minecraft/world/item/crafting/CookingBookCategory/BLOCKS net/minecraft/world/item/crafting/CookingBookCategory/BLOCKS +FD: net/minecraft/world/item/crafting/CookingBookCategory/FOOD net/minecraft/world/item/crafting/CookingBookCategory/FOOD +FD: net/minecraft/world/item/crafting/CookingBookCategory/MISC net/minecraft/world/item/crafting/CookingBookCategory/MISC +FD: net/minecraft/world/item/crafting/CookingBookCategory/f_244064_ net/minecraft/world/item/crafting/CookingBookCategory/name +FD: net/minecraft/world/item/crafting/CookingBookCategory/f_244271_ net/minecraft/world/item/crafting/CookingBookCategory/CODEC +FD: net/minecraft/world/item/crafting/CraftingBookCategory/$VALUES net/minecraft/world/item/crafting/CraftingBookCategory/$VALUES +FD: net/minecraft/world/item/crafting/CraftingBookCategory/BUILDING net/minecraft/world/item/crafting/CraftingBookCategory/BUILDING +FD: net/minecraft/world/item/crafting/CraftingBookCategory/EQUIPMENT net/minecraft/world/item/crafting/CraftingBookCategory/EQUIPMENT +FD: net/minecraft/world/item/crafting/CraftingBookCategory/MISC net/minecraft/world/item/crafting/CraftingBookCategory/MISC +FD: net/minecraft/world/item/crafting/CraftingBookCategory/REDSTONE net/minecraft/world/item/crafting/CraftingBookCategory/REDSTONE +FD: net/minecraft/world/item/crafting/CraftingBookCategory/f_244018_ net/minecraft/world/item/crafting/CraftingBookCategory/name +FD: net/minecraft/world/item/crafting/CraftingBookCategory/f_244644_ net/minecraft/world/item/crafting/CraftingBookCategory/CODEC +FD: net/minecraft/world/item/crafting/CustomRecipe/f_244184_ net/minecraft/world/item/crafting/CustomRecipe/category +FD: net/minecraft/world/item/crafting/CustomRecipe/f_43831_ net/minecraft/world/item/crafting/CustomRecipe/id +FD: net/minecraft/world/item/crafting/FireworkRocketRecipe/f_43837_ net/minecraft/world/item/crafting/FireworkRocketRecipe/PAPER_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkRocketRecipe/f_43838_ net/minecraft/world/item/crafting/FireworkRocketRecipe/GUNPOWDER_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkRocketRecipe/f_43839_ net/minecraft/world/item/crafting/FireworkRocketRecipe/STAR_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/f_43858_ net/minecraft/world/item/crafting/FireworkStarFadeRecipe/STAR_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43876_ net/minecraft/world/item/crafting/FireworkStarRecipe/SHAPE_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43877_ net/minecraft/world/item/crafting/FireworkStarRecipe/TRAIL_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43878_ net/minecraft/world/item/crafting/FireworkStarRecipe/FLICKER_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43879_ net/minecraft/world/item/crafting/FireworkStarRecipe/SHAPE_BY_ITEM +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43880_ net/minecraft/world/item/crafting/FireworkStarRecipe/GUNPOWDER_INGREDIENT +FD: net/minecraft/world/item/crafting/Ingredient/f_43901_ net/minecraft/world/item/crafting/Ingredient/EMPTY +FD: net/minecraft/world/item/crafting/Ingredient/f_43902_ net/minecraft/world/item/crafting/Ingredient/values +FD: net/minecraft/world/item/crafting/Ingredient/f_43903_ net/minecraft/world/item/crafting/Ingredient/itemStacks +FD: net/minecraft/world/item/crafting/Ingredient/f_43904_ net/minecraft/world/item/crafting/Ingredient/stackingIds +FD: net/minecraft/world/item/crafting/Ingredient$ItemValue/f_43951_ net/minecraft/world/item/crafting/Ingredient$ItemValue/item +FD: net/minecraft/world/item/crafting/Ingredient$TagValue/f_43959_ net/minecraft/world/item/crafting/Ingredient$TagValue/tag +FD: net/minecraft/world/item/crafting/RecipeManager/f_199900_ net/minecraft/world/item/crafting/RecipeManager/byName +FD: net/minecraft/world/item/crafting/RecipeManager/f_44005_ net/minecraft/world/item/crafting/RecipeManager/GSON +FD: net/minecraft/world/item/crafting/RecipeManager/f_44006_ net/minecraft/world/item/crafting/RecipeManager/LOGGER +FD: net/minecraft/world/item/crafting/RecipeManager/f_44007_ net/minecraft/world/item/crafting/RecipeManager/recipes +FD: net/minecraft/world/item/crafting/RecipeManager/f_44008_ net/minecraft/world/item/crafting/RecipeManager/hasErrors +FD: net/minecraft/world/item/crafting/RecipeManager$1/f_220273_ net/minecraft/world/item/crafting/RecipeManager$1/val$type +FD: net/minecraft/world/item/crafting/RecipeManager$1/f_220274_ net/minecraft/world/item/crafting/RecipeManager$1/lastRecipe +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_265968_ net/minecraft/world/item/crafting/RecipeSerializer/SMITHING_TRIM +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_266093_ net/minecraft/world/item/crafting/RecipeSerializer/SMITHING_TRANSFORM +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_271437_ net/minecraft/world/item/crafting/RecipeSerializer/DECORATED_POT_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44076_ net/minecraft/world/item/crafting/RecipeSerializer/SHAPED_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44077_ net/minecraft/world/item/crafting/RecipeSerializer/SHAPELESS_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44078_ net/minecraft/world/item/crafting/RecipeSerializer/ARMOR_DYE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44079_ net/minecraft/world/item/crafting/RecipeSerializer/BOOK_CLONING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44080_ net/minecraft/world/item/crafting/RecipeSerializer/MAP_CLONING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44081_ net/minecraft/world/item/crafting/RecipeSerializer/MAP_EXTENDING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44082_ net/minecraft/world/item/crafting/RecipeSerializer/FIREWORK_ROCKET +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44083_ net/minecraft/world/item/crafting/RecipeSerializer/FIREWORK_STAR +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44084_ net/minecraft/world/item/crafting/RecipeSerializer/FIREWORK_STAR_FADE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44085_ net/minecraft/world/item/crafting/RecipeSerializer/TIPPED_ARROW +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44086_ net/minecraft/world/item/crafting/RecipeSerializer/BANNER_DUPLICATE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44087_ net/minecraft/world/item/crafting/RecipeSerializer/SHIELD_DECORATION +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44088_ net/minecraft/world/item/crafting/RecipeSerializer/SHULKER_BOX_COLORING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44089_ net/minecraft/world/item/crafting/RecipeSerializer/SUSPICIOUS_STEW +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44090_ net/minecraft/world/item/crafting/RecipeSerializer/REPAIR_ITEM +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44091_ net/minecraft/world/item/crafting/RecipeSerializer/SMELTING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44092_ net/minecraft/world/item/crafting/RecipeSerializer/BLASTING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44093_ net/minecraft/world/item/crafting/RecipeSerializer/SMOKING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44094_ net/minecraft/world/item/crafting/RecipeSerializer/CAMPFIRE_COOKING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44095_ net/minecraft/world/item/crafting/RecipeSerializer/STONECUTTER +FD: net/minecraft/world/item/crafting/RecipeType/f_44107_ net/minecraft/world/item/crafting/RecipeType/CRAFTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44108_ net/minecraft/world/item/crafting/RecipeType/SMELTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44109_ net/minecraft/world/item/crafting/RecipeType/BLASTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44110_ net/minecraft/world/item/crafting/RecipeType/SMOKING +FD: net/minecraft/world/item/crafting/RecipeType/f_44111_ net/minecraft/world/item/crafting/RecipeType/CAMPFIRE_COOKING +FD: net/minecraft/world/item/crafting/RecipeType/f_44112_ net/minecraft/world/item/crafting/RecipeType/STONECUTTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44113_ net/minecraft/world/item/crafting/RecipeType/SMITHING +FD: net/minecraft/world/item/crafting/RecipeType$1/f_44121_ net/minecraft/world/item/crafting/RecipeType$1/val$name +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_244483_ net/minecraft/world/item/crafting/ShapedRecipe/category +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_271538_ net/minecraft/world/item/crafting/ShapedRecipe/showNotification +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44146_ net/minecraft/world/item/crafting/ShapedRecipe/width +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44147_ net/minecraft/world/item/crafting/ShapedRecipe/height +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44148_ net/minecraft/world/item/crafting/ShapedRecipe/recipeItems +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44149_ net/minecraft/world/item/crafting/ShapedRecipe/result +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44150_ net/minecraft/world/item/crafting/ShapedRecipe/id +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44151_ net/minecraft/world/item/crafting/ShapedRecipe/group +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_244076_ net/minecraft/world/item/crafting/ShapelessRecipe/category +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44241_ net/minecraft/world/item/crafting/ShapelessRecipe/id +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44242_ net/minecraft/world/item/crafting/ShapelessRecipe/group +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44243_ net/minecraft/world/item/crafting/ShapelessRecipe/result +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44244_ net/minecraft/world/item/crafting/ShapelessRecipe/ingredients +FD: net/minecraft/world/item/crafting/SimpleCookingSerializer/f_44327_ net/minecraft/world/item/crafting/SimpleCookingSerializer/defaultCookingTime +FD: net/minecraft/world/item/crafting/SimpleCookingSerializer/f_44328_ net/minecraft/world/item/crafting/SimpleCookingSerializer/factory +FD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/f_244567_ net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/constructor +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44409_ net/minecraft/world/item/crafting/SingleItemRecipe/ingredient +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44410_ net/minecraft/world/item/crafting/SingleItemRecipe/result +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44411_ net/minecraft/world/item/crafting/SingleItemRecipe/id +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44412_ net/minecraft/world/item/crafting/SingleItemRecipe/group +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44413_ net/minecraft/world/item/crafting/SingleItemRecipe/type +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44414_ net/minecraft/world/item/crafting/SingleItemRecipe/serializer +FD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/f_44433_ net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/factory +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265888_ net/minecraft/world/item/crafting/SmithingTransformRecipe/base +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265907_ net/minecraft/world/item/crafting/SmithingTransformRecipe/addition +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265924_ net/minecraft/world/item/crafting/SmithingTransformRecipe/id +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265949_ net/minecraft/world/item/crafting/SmithingTransformRecipe/template +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_266098_ net/minecraft/world/item/crafting/SmithingTransformRecipe/result +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_265885_ net/minecraft/world/item/crafting/SmithingTrimRecipe/id +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_265958_ net/minecraft/world/item/crafting/SmithingTrimRecipe/template +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_266040_ net/minecraft/world/item/crafting/SmithingTrimRecipe/base +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_266053_ net/minecraft/world/item/crafting/SmithingTrimRecipe/addition +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_151289_ net/minecraft/world/item/enchantment/DamageEnchantment/ALL +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_151290_ net/minecraft/world/item/enchantment/DamageEnchantment/UNDEAD +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_151291_ net/minecraft/world/item/enchantment/DamageEnchantment/ARTHROPODS +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44621_ net/minecraft/world/item/enchantment/DamageEnchantment/type +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44622_ net/minecraft/world/item/enchantment/DamageEnchantment/NAMES +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44623_ net/minecraft/world/item/enchantment/DamageEnchantment/MIN_COST +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44624_ net/minecraft/world/item/enchantment/DamageEnchantment/LEVEL_COST +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44625_ net/minecraft/world/item/enchantment/DamageEnchantment/LEVEL_COST_SPAN +FD: net/minecraft/world/item/enchantment/Enchantment/f_44671_ net/minecraft/world/item/enchantment/Enchantment/slots +FD: net/minecraft/world/item/enchantment/Enchantment/f_44672_ net/minecraft/world/item/enchantment/Enchantment/category +FD: net/minecraft/world/item/enchantment/Enchantment/f_44673_ net/minecraft/world/item/enchantment/Enchantment/descriptionId +FD: net/minecraft/world/item/enchantment/Enchantment/f_44674_ net/minecraft/world/item/enchantment/Enchantment/rarity +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/$VALUES net/minecraft/world/item/enchantment/Enchantment$Rarity/$VALUES +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/COMMON net/minecraft/world/item/enchantment/Enchantment$Rarity/COMMON +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/RARE net/minecraft/world/item/enchantment/Enchantment$Rarity/RARE +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/UNCOMMON net/minecraft/world/item/enchantment/Enchantment$Rarity/UNCOMMON +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/VERY_RARE net/minecraft/world/item/enchantment/Enchantment$Rarity/VERY_RARE +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/f_44709_ net/minecraft/world/item/enchantment/Enchantment$Rarity/weight +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/$VALUES net/minecraft/world/item/enchantment/EnchantmentCategory/$VALUES +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_CHEST net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_CHEST +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_FEET net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_FEET +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_HEAD net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_HEAD +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_LEGS net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_LEGS +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/BOW net/minecraft/world/item/enchantment/EnchantmentCategory/BOW +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/BREAKABLE net/minecraft/world/item/enchantment/EnchantmentCategory/BREAKABLE +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/CROSSBOW net/minecraft/world/item/enchantment/EnchantmentCategory/CROSSBOW +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/DIGGER net/minecraft/world/item/enchantment/EnchantmentCategory/DIGGER +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/FISHING_ROD net/minecraft/world/item/enchantment/EnchantmentCategory/FISHING_ROD +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/TRIDENT net/minecraft/world/item/enchantment/EnchantmentCategory/TRIDENT +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/VANISHABLE net/minecraft/world/item/enchantment/EnchantmentCategory/VANISHABLE +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/WEAPON net/minecraft/world/item/enchantment/EnchantmentCategory/WEAPON +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/WEARABLE net/minecraft/world/item/enchantment/EnchantmentCategory/WEARABLE +FD: net/minecraft/world/item/enchantment/EnchantmentHelper/f_182430_ net/minecraft/world/item/enchantment/EnchantmentHelper/TAG_ENCH_ID +FD: net/minecraft/world/item/enchantment/EnchantmentHelper/f_182431_ net/minecraft/world/item/enchantment/EnchantmentHelper/TAG_ENCH_LEVEL +FD: net/minecraft/world/item/enchantment/EnchantmentHelper/f_220286_ net/minecraft/world/item/enchantment/EnchantmentHelper/SWIFT_SNEAK_EXTRA_FACTOR +FD: net/minecraft/world/item/enchantment/EnchantmentInstance/f_44947_ net/minecraft/world/item/enchantment/EnchantmentInstance/enchantment +FD: net/minecraft/world/item/enchantment/EnchantmentInstance/f_44948_ net/minecraft/world/item/enchantment/EnchantmentInstance/level +FD: net/minecraft/world/item/enchantment/Enchantments/f_220304_ net/minecraft/world/item/enchantment/Enchantments/SWIFT_SNEAK +FD: net/minecraft/world/item/enchantment/Enchantments/f_44952_ net/minecraft/world/item/enchantment/Enchantments/INFINITY_ARROWS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44953_ net/minecraft/world/item/enchantment/Enchantments/FISHING_LUCK +FD: net/minecraft/world/item/enchantment/Enchantments/f_44954_ net/minecraft/world/item/enchantment/Enchantments/FISHING_SPEED +FD: net/minecraft/world/item/enchantment/Enchantments/f_44955_ net/minecraft/world/item/enchantment/Enchantments/LOYALTY +FD: net/minecraft/world/item/enchantment/Enchantments/f_44956_ net/minecraft/world/item/enchantment/Enchantments/IMPALING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44957_ net/minecraft/world/item/enchantment/Enchantments/RIPTIDE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44958_ net/minecraft/world/item/enchantment/Enchantments/CHANNELING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44959_ net/minecraft/world/item/enchantment/Enchantments/MULTISHOT +FD: net/minecraft/world/item/enchantment/Enchantments/f_44960_ net/minecraft/world/item/enchantment/Enchantments/QUICK_CHARGE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44961_ net/minecraft/world/item/enchantment/Enchantments/PIERCING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44962_ net/minecraft/world/item/enchantment/Enchantments/MENDING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44963_ net/minecraft/world/item/enchantment/Enchantments/VANISHING_CURSE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44964_ net/minecraft/world/item/enchantment/Enchantments/ARMOR_SLOTS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44965_ net/minecraft/world/item/enchantment/Enchantments/ALL_DAMAGE_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44966_ net/minecraft/world/item/enchantment/Enchantments/FIRE_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44967_ net/minecraft/world/item/enchantment/Enchantments/FALL_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44968_ net/minecraft/world/item/enchantment/Enchantments/BLAST_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44969_ net/minecraft/world/item/enchantment/Enchantments/PROJECTILE_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44970_ net/minecraft/world/item/enchantment/Enchantments/RESPIRATION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44971_ net/minecraft/world/item/enchantment/Enchantments/AQUA_AFFINITY +FD: net/minecraft/world/item/enchantment/Enchantments/f_44972_ net/minecraft/world/item/enchantment/Enchantments/THORNS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44973_ net/minecraft/world/item/enchantment/Enchantments/DEPTH_STRIDER +FD: net/minecraft/world/item/enchantment/Enchantments/f_44974_ net/minecraft/world/item/enchantment/Enchantments/FROST_WALKER +FD: net/minecraft/world/item/enchantment/Enchantments/f_44975_ net/minecraft/world/item/enchantment/Enchantments/BINDING_CURSE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44976_ net/minecraft/world/item/enchantment/Enchantments/SOUL_SPEED +FD: net/minecraft/world/item/enchantment/Enchantments/f_44977_ net/minecraft/world/item/enchantment/Enchantments/SHARPNESS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44978_ net/minecraft/world/item/enchantment/Enchantments/SMITE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44979_ net/minecraft/world/item/enchantment/Enchantments/BANE_OF_ARTHROPODS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44980_ net/minecraft/world/item/enchantment/Enchantments/KNOCKBACK +FD: net/minecraft/world/item/enchantment/Enchantments/f_44981_ net/minecraft/world/item/enchantment/Enchantments/FIRE_ASPECT +FD: net/minecraft/world/item/enchantment/Enchantments/f_44982_ net/minecraft/world/item/enchantment/Enchantments/MOB_LOOTING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44983_ net/minecraft/world/item/enchantment/Enchantments/SWEEPING_EDGE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44984_ net/minecraft/world/item/enchantment/Enchantments/BLOCK_EFFICIENCY +FD: net/minecraft/world/item/enchantment/Enchantments/f_44985_ net/minecraft/world/item/enchantment/Enchantments/SILK_TOUCH +FD: net/minecraft/world/item/enchantment/Enchantments/f_44986_ net/minecraft/world/item/enchantment/Enchantments/UNBREAKING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44987_ net/minecraft/world/item/enchantment/Enchantments/BLOCK_FORTUNE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44988_ net/minecraft/world/item/enchantment/Enchantments/POWER_ARROWS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44989_ net/minecraft/world/item/enchantment/Enchantments/PUNCH_ARROWS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44990_ net/minecraft/world/item/enchantment/Enchantments/FLAMING_ARROWS +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment/f_45124_ net/minecraft/world/item/enchantment/ProtectionEnchantment/type +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/$VALUES net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/$VALUES +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ALL net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ALL +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/EXPLOSION net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/EXPLOSION +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FALL net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FALL +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FIRE net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FIRE +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/PROJECTILE net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/PROJECTILE +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/f_45151_ net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/minCost +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/f_45152_ net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/levelCost +FD: net/minecraft/world/item/enchantment/ThornsEnchantment/f_151302_ net/minecraft/world/item/enchantment/ThornsEnchantment/CHANCE_PER_LEVEL +FD: net/minecraft/world/item/trading/MerchantOffer/f_45310_ net/minecraft/world/item/trading/MerchantOffer/baseCostA +FD: net/minecraft/world/item/trading/MerchantOffer/f_45311_ net/minecraft/world/item/trading/MerchantOffer/costB +FD: net/minecraft/world/item/trading/MerchantOffer/f_45312_ net/minecraft/world/item/trading/MerchantOffer/result +FD: net/minecraft/world/item/trading/MerchantOffer/f_45313_ net/minecraft/world/item/trading/MerchantOffer/uses +FD: net/minecraft/world/item/trading/MerchantOffer/f_45314_ net/minecraft/world/item/trading/MerchantOffer/maxUses +FD: net/minecraft/world/item/trading/MerchantOffer/f_45315_ net/minecraft/world/item/trading/MerchantOffer/rewardExp +FD: net/minecraft/world/item/trading/MerchantOffer/f_45316_ net/minecraft/world/item/trading/MerchantOffer/specialPriceDiff +FD: net/minecraft/world/item/trading/MerchantOffer/f_45317_ net/minecraft/world/item/trading/MerchantOffer/demand +FD: net/minecraft/world/item/trading/MerchantOffer/f_45318_ net/minecraft/world/item/trading/MerchantOffer/priceMultiplier +FD: net/minecraft/world/item/trading/MerchantOffer/f_45319_ net/minecraft/world/item/trading/MerchantOffer/xp +FD: net/minecraft/world/level/BaseCommandBlock/f_45397_ net/minecraft/world/level/BaseCommandBlock/TIME_FORMAT +FD: net/minecraft/world/level/BaseCommandBlock/f_45398_ net/minecraft/world/level/BaseCommandBlock/DEFAULT_NAME +FD: net/minecraft/world/level/BaseCommandBlock/f_45399_ net/minecraft/world/level/BaseCommandBlock/lastExecution +FD: net/minecraft/world/level/BaseCommandBlock/f_45400_ net/minecraft/world/level/BaseCommandBlock/updateLastExecution +FD: net/minecraft/world/level/BaseCommandBlock/f_45401_ net/minecraft/world/level/BaseCommandBlock/successCount +FD: net/minecraft/world/level/BaseCommandBlock/f_45402_ net/minecraft/world/level/BaseCommandBlock/trackOutput +FD: net/minecraft/world/level/BaseCommandBlock/f_45403_ net/minecraft/world/level/BaseCommandBlock/lastOutput +FD: net/minecraft/world/level/BaseCommandBlock/f_45404_ net/minecraft/world/level/BaseCommandBlock/command +FD: net/minecraft/world/level/BaseCommandBlock/f_45405_ net/minecraft/world/level/BaseCommandBlock/name +FD: net/minecraft/world/level/BaseSpawner/f_151303_ net/minecraft/world/level/BaseSpawner/EVENT_SPAWN +FD: net/minecraft/world/level/BaseSpawner/f_254624_ net/minecraft/world/level/BaseSpawner/SPAWN_DATA_TAG +FD: net/minecraft/world/level/BaseSpawner/f_45441_ net/minecraft/world/level/BaseSpawner/LOGGER +FD: net/minecraft/world/level/BaseSpawner/f_45442_ net/minecraft/world/level/BaseSpawner/spawnDelay +FD: net/minecraft/world/level/BaseSpawner/f_45443_ net/minecraft/world/level/BaseSpawner/spawnPotentials +FD: net/minecraft/world/level/BaseSpawner/f_45444_ net/minecraft/world/level/BaseSpawner/nextSpawnData +FD: net/minecraft/world/level/BaseSpawner/f_45445_ net/minecraft/world/level/BaseSpawner/spin +FD: net/minecraft/world/level/BaseSpawner/f_45446_ net/minecraft/world/level/BaseSpawner/oSpin +FD: net/minecraft/world/level/BaseSpawner/f_45447_ net/minecraft/world/level/BaseSpawner/minSpawnDelay +FD: net/minecraft/world/level/BaseSpawner/f_45448_ net/minecraft/world/level/BaseSpawner/maxSpawnDelay +FD: net/minecraft/world/level/BaseSpawner/f_45449_ net/minecraft/world/level/BaseSpawner/spawnCount +FD: net/minecraft/world/level/BaseSpawner/f_45450_ net/minecraft/world/level/BaseSpawner/displayEntity +FD: net/minecraft/world/level/BaseSpawner/f_45451_ net/minecraft/world/level/BaseSpawner/maxNearbyEntities +FD: net/minecraft/world/level/BaseSpawner/f_45452_ net/minecraft/world/level/BaseSpawner/requiredPlayerRange +FD: net/minecraft/world/level/BaseSpawner/f_45453_ net/minecraft/world/level/BaseSpawner/spawnRange +FD: net/minecraft/world/level/BlockCollisions/f_186392_ net/minecraft/world/level/BlockCollisions/box +FD: net/minecraft/world/level/BlockCollisions/f_186393_ net/minecraft/world/level/BlockCollisions/context +FD: net/minecraft/world/level/BlockCollisions/f_186394_ net/minecraft/world/level/BlockCollisions/cursor +FD: net/minecraft/world/level/BlockCollisions/f_186395_ net/minecraft/world/level/BlockCollisions/pos +FD: net/minecraft/world/level/BlockCollisions/f_186396_ net/minecraft/world/level/BlockCollisions/entityShape +FD: net/minecraft/world/level/BlockCollisions/f_186397_ net/minecraft/world/level/BlockCollisions/collisionGetter +FD: net/minecraft/world/level/BlockCollisions/f_186398_ net/minecraft/world/level/BlockCollisions/onlySuffocatingBlocks +FD: net/minecraft/world/level/BlockCollisions/f_186399_ net/minecraft/world/level/BlockCollisions/cachedBlockGetter +FD: net/minecraft/world/level/BlockCollisions/f_186400_ net/minecraft/world/level/BlockCollisions/cachedBlockGetterPos +FD: net/minecraft/world/level/BlockCollisions/f_285595_ net/minecraft/world/level/BlockCollisions/resultProvider +FD: net/minecraft/world/level/BlockEventData/f_45529_ net/minecraft/world/level/BlockEventData/pos +FD: net/minecraft/world/level/BlockEventData/f_45530_ net/minecraft/world/level/BlockEventData/block +FD: net/minecraft/world/level/BlockEventData/f_45531_ net/minecraft/world/level/BlockEventData/paramA +FD: net/minecraft/world/level/BlockEventData/f_45532_ net/minecraft/world/level/BlockEventData/paramB +FD: net/minecraft/world/level/ChunkPos/f_151375_ net/minecraft/world/level/ChunkPos/COORD_BITS +FD: net/minecraft/world/level/ChunkPos/f_151376_ net/minecraft/world/level/ChunkPos/COORD_MASK +FD: net/minecraft/world/level/ChunkPos/f_151377_ net/minecraft/world/level/ChunkPos/REGION_BITS +FD: net/minecraft/world/level/ChunkPos/f_151378_ net/minecraft/world/level/ChunkPos/REGION_MASK +FD: net/minecraft/world/level/ChunkPos/f_151379_ net/minecraft/world/level/ChunkPos/HASH_A +FD: net/minecraft/world/level/ChunkPos/f_151380_ net/minecraft/world/level/ChunkPos/HASH_C +FD: net/minecraft/world/level/ChunkPos/f_151381_ net/minecraft/world/level/ChunkPos/HASH_Z_XOR +FD: net/minecraft/world/level/ChunkPos/f_186419_ net/minecraft/world/level/ChunkPos/ZERO +FD: net/minecraft/world/level/ChunkPos/f_199440_ net/minecraft/world/level/ChunkPos/SAFETY_MARGIN +FD: net/minecraft/world/level/ChunkPos/f_220335_ net/minecraft/world/level/ChunkPos/REGION_SIZE +FD: net/minecraft/world/level/ChunkPos/f_220336_ net/minecraft/world/level/ChunkPos/REGION_MAX_INDEX +FD: net/minecraft/world/level/ChunkPos/f_45577_ net/minecraft/world/level/ChunkPos/INVALID_CHUNK_POS +FD: net/minecraft/world/level/ChunkPos/f_45578_ net/minecraft/world/level/ChunkPos/x +FD: net/minecraft/world/level/ChunkPos/f_45579_ net/minecraft/world/level/ChunkPos/z +FD: net/minecraft/world/level/ChunkPos$1/f_45617_ net/minecraft/world/level/ChunkPos$1/val$from +FD: net/minecraft/world/level/ChunkPos$1/f_45618_ net/minecraft/world/level/ChunkPos$1/val$to +FD: net/minecraft/world/level/ChunkPos$1/f_45619_ net/minecraft/world/level/ChunkPos$1/val$zDiff +FD: net/minecraft/world/level/ChunkPos$1/f_45620_ net/minecraft/world/level/ChunkPos$1/val$xDiff +FD: net/minecraft/world/level/ChunkPos$1/f_45621_ net/minecraft/world/level/ChunkPos$1/pos +FD: net/minecraft/world/level/ClipBlockStateContext/f_151397_ net/minecraft/world/level/ClipBlockStateContext/from +FD: net/minecraft/world/level/ClipBlockStateContext/f_151398_ net/minecraft/world/level/ClipBlockStateContext/to +FD: net/minecraft/world/level/ClipBlockStateContext/f_151399_ net/minecraft/world/level/ClipBlockStateContext/block +FD: net/minecraft/world/level/ClipContext/f_45682_ net/minecraft/world/level/ClipContext/from +FD: net/minecraft/world/level/ClipContext/f_45683_ net/minecraft/world/level/ClipContext/to +FD: net/minecraft/world/level/ClipContext/f_45684_ net/minecraft/world/level/ClipContext/block +FD: net/minecraft/world/level/ClipContext/f_45685_ net/minecraft/world/level/ClipContext/fluid +FD: net/minecraft/world/level/ClipContext/f_45686_ net/minecraft/world/level/ClipContext/collisionContext +FD: net/minecraft/world/level/ClipContext$Block/$VALUES net/minecraft/world/level/ClipContext$Block/$VALUES +FD: net/minecraft/world/level/ClipContext$Block/COLLIDER net/minecraft/world/level/ClipContext$Block/COLLIDER +FD: net/minecraft/world/level/ClipContext$Block/FALLDAMAGE_RESETTING net/minecraft/world/level/ClipContext$Block/FALLDAMAGE_RESETTING +FD: net/minecraft/world/level/ClipContext$Block/OUTLINE net/minecraft/world/level/ClipContext$Block/OUTLINE +FD: net/minecraft/world/level/ClipContext$Block/VISUAL net/minecraft/world/level/ClipContext$Block/VISUAL +FD: net/minecraft/world/level/ClipContext$Block/f_45706_ net/minecraft/world/level/ClipContext$Block/shapeGetter +FD: net/minecraft/world/level/ClipContext$Fluid/$VALUES net/minecraft/world/level/ClipContext$Fluid/$VALUES +FD: net/minecraft/world/level/ClipContext$Fluid/ANY net/minecraft/world/level/ClipContext$Fluid/ANY +FD: net/minecraft/world/level/ClipContext$Fluid/NONE net/minecraft/world/level/ClipContext$Fluid/NONE +FD: net/minecraft/world/level/ClipContext$Fluid/SOURCE_ONLY net/minecraft/world/level/ClipContext$Fluid/SOURCE_ONLY +FD: net/minecraft/world/level/ClipContext$Fluid/WATER net/minecraft/world/level/ClipContext$Fluid/WATER +FD: net/minecraft/world/level/ClipContext$Fluid/f_45724_ net/minecraft/world/level/ClipContext$Fluid/canPick +FD: net/minecraft/world/level/DataPackConfig/f_45842_ net/minecraft/world/level/DataPackConfig/DEFAULT +FD: net/minecraft/world/level/DataPackConfig/f_45843_ net/minecraft/world/level/DataPackConfig/CODEC +FD: net/minecraft/world/level/DataPackConfig/f_45844_ net/minecraft/world/level/DataPackConfig/enabled +FD: net/minecraft/world/level/DataPackConfig/f_45845_ net/minecraft/world/level/DataPackConfig/disabled +FD: net/minecraft/world/level/EmptyBlockGetter/$VALUES net/minecraft/world/level/EmptyBlockGetter/$VALUES +FD: net/minecraft/world/level/EmptyBlockGetter/INSTANCE net/minecraft/world/level/EmptyBlockGetter/INSTANCE +FD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/f_45892_ net/minecraft/world/level/EntityBasedExplosionDamageCalculator/source +FD: net/minecraft/world/level/Explosion/f_151469_ net/minecraft/world/level/Explosion/MAX_DROPS_PER_COMBINED_STACK +FD: net/minecraft/world/level/Explosion/f_46008_ net/minecraft/world/level/Explosion/EXPLOSION_DAMAGE_CALCULATOR +FD: net/minecraft/world/level/Explosion/f_46009_ net/minecraft/world/level/Explosion/fire +FD: net/minecraft/world/level/Explosion/f_46010_ net/minecraft/world/level/Explosion/blockInteraction +FD: net/minecraft/world/level/Explosion/f_46011_ net/minecraft/world/level/Explosion/random +FD: net/minecraft/world/level/Explosion/f_46012_ net/minecraft/world/level/Explosion/level +FD: net/minecraft/world/level/Explosion/f_46013_ net/minecraft/world/level/Explosion/x +FD: net/minecraft/world/level/Explosion/f_46014_ net/minecraft/world/level/Explosion/y +FD: net/minecraft/world/level/Explosion/f_46015_ net/minecraft/world/level/Explosion/z +FD: net/minecraft/world/level/Explosion/f_46016_ net/minecraft/world/level/Explosion/source +FD: net/minecraft/world/level/Explosion/f_46017_ net/minecraft/world/level/Explosion/radius +FD: net/minecraft/world/level/Explosion/f_46018_ net/minecraft/world/level/Explosion/damageSource +FD: net/minecraft/world/level/Explosion/f_46019_ net/minecraft/world/level/Explosion/damageCalculator +FD: net/minecraft/world/level/Explosion/f_46020_ net/minecraft/world/level/Explosion/toBlow +FD: net/minecraft/world/level/Explosion/f_46021_ net/minecraft/world/level/Explosion/hitPlayers +FD: net/minecraft/world/level/Explosion$BlockInteraction/$VALUES net/minecraft/world/level/Explosion$BlockInteraction/$VALUES +FD: net/minecraft/world/level/Explosion$BlockInteraction/DESTROY net/minecraft/world/level/Explosion$BlockInteraction/DESTROY +FD: net/minecraft/world/level/Explosion$BlockInteraction/DESTROY_WITH_DECAY net/minecraft/world/level/Explosion$BlockInteraction/DESTROY_WITH_DECAY +FD: net/minecraft/world/level/Explosion$BlockInteraction/KEEP net/minecraft/world/level/Explosion$BlockInteraction/KEEP +FD: net/minecraft/world/level/FoliageColor/f_46104_ net/minecraft/world/level/FoliageColor/pixels +FD: net/minecraft/world/level/ForcedChunksSavedData/f_151479_ net/minecraft/world/level/ForcedChunksSavedData/FILE_ID +FD: net/minecraft/world/level/ForcedChunksSavedData/f_151480_ net/minecraft/world/level/ForcedChunksSavedData/TAG_FORCED +FD: net/minecraft/world/level/ForcedChunksSavedData/f_46114_ net/minecraft/world/level/ForcedChunksSavedData/chunks +FD: net/minecraft/world/level/GameRules/f_151485_ net/minecraft/world/level/GameRules/RULE_FREEZE_DAMAGE +FD: net/minecraft/world/level/GameRules/f_151486_ net/minecraft/world/level/GameRules/RULE_PLAYERS_SLEEPING_PERCENTAGE +FD: net/minecraft/world/level/GameRules/f_151487_ net/minecraft/world/level/GameRules/DEFAULT_RANDOM_TICK_SPEED +FD: net/minecraft/world/level/GameRules/f_220347_ net/minecraft/world/level/GameRules/RULE_DO_WARDEN_SPAWNING +FD: net/minecraft/world/level/GameRules/f_254629_ net/minecraft/world/level/GameRules/RULE_BLOCK_EXPLOSION_DROP_DECAY +FD: net/minecraft/world/level/GameRules/f_254630_ net/minecraft/world/level/GameRules/RULE_GLOBAL_SOUND_EVENTS +FD: net/minecraft/world/level/GameRules/f_254637_ net/minecraft/world/level/GameRules/RULE_SNOW_ACCUMULATION_HEIGHT +FD: net/minecraft/world/level/GameRules/f_254672_ net/minecraft/world/level/GameRules/RULE_LAVA_SOURCE_CONVERSION +FD: net/minecraft/world/level/GameRules/f_254692_ net/minecraft/world/level/GameRules/RULE_MOB_EXPLOSION_DROP_DECAY +FD: net/minecraft/world/level/GameRules/f_254705_ net/minecraft/world/level/GameRules/RULE_TNT_EXPLOSION_DROP_DECAY +FD: net/minecraft/world/level/GameRules/f_254725_ net/minecraft/world/level/GameRules/RULE_WATER_SOURCE_CONVERSION +FD: net/minecraft/world/level/GameRules/f_263760_ net/minecraft/world/level/GameRules/RULE_COMMAND_MODIFICATION_BLOCK_LIMIT +FD: net/minecraft/world/level/GameRules/f_268705_ net/minecraft/world/level/GameRules/RULE_DO_VINES_SPREAD +FD: net/minecraft/world/level/GameRules/f_46121_ net/minecraft/world/level/GameRules/RULE_DROWNING_DAMAGE +FD: net/minecraft/world/level/GameRules/f_46122_ net/minecraft/world/level/GameRules/RULE_FALL_DAMAGE +FD: net/minecraft/world/level/GameRules/f_46123_ net/minecraft/world/level/GameRules/RULE_FIRE_DAMAGE +FD: net/minecraft/world/level/GameRules/f_46124_ net/minecraft/world/level/GameRules/RULE_DO_PATROL_SPAWNING +FD: net/minecraft/world/level/GameRules/f_46125_ net/minecraft/world/level/GameRules/RULE_DO_TRADER_SPAWNING +FD: net/minecraft/world/level/GameRules/f_46126_ net/minecraft/world/level/GameRules/RULE_FORGIVE_DEAD_PLAYERS +FD: net/minecraft/world/level/GameRules/f_46127_ net/minecraft/world/level/GameRules/RULE_UNIVERSAL_ANGER +FD: net/minecraft/world/level/GameRules/f_46128_ net/minecraft/world/level/GameRules/LOGGER +FD: net/minecraft/world/level/GameRules/f_46129_ net/minecraft/world/level/GameRules/GAME_RULE_TYPES +FD: net/minecraft/world/level/GameRules/f_46130_ net/minecraft/world/level/GameRules/rules +FD: net/minecraft/world/level/GameRules/f_46131_ net/minecraft/world/level/GameRules/RULE_DOFIRETICK +FD: net/minecraft/world/level/GameRules/f_46132_ net/minecraft/world/level/GameRules/RULE_MOBGRIEFING +FD: net/minecraft/world/level/GameRules/f_46133_ net/minecraft/world/level/GameRules/RULE_KEEPINVENTORY +FD: net/minecraft/world/level/GameRules/f_46134_ net/minecraft/world/level/GameRules/RULE_DOMOBSPAWNING +FD: net/minecraft/world/level/GameRules/f_46135_ net/minecraft/world/level/GameRules/RULE_DOMOBLOOT +FD: net/minecraft/world/level/GameRules/f_46136_ net/minecraft/world/level/GameRules/RULE_DOBLOCKDROPS +FD: net/minecraft/world/level/GameRules/f_46137_ net/minecraft/world/level/GameRules/RULE_DOENTITYDROPS +FD: net/minecraft/world/level/GameRules/f_46138_ net/minecraft/world/level/GameRules/RULE_COMMANDBLOCKOUTPUT +FD: net/minecraft/world/level/GameRules/f_46139_ net/minecraft/world/level/GameRules/RULE_NATURAL_REGENERATION +FD: net/minecraft/world/level/GameRules/f_46140_ net/minecraft/world/level/GameRules/RULE_DAYLIGHT +FD: net/minecraft/world/level/GameRules/f_46141_ net/minecraft/world/level/GameRules/RULE_LOGADMINCOMMANDS +FD: net/minecraft/world/level/GameRules/f_46142_ net/minecraft/world/level/GameRules/RULE_SHOWDEATHMESSAGES +FD: net/minecraft/world/level/GameRules/f_46143_ net/minecraft/world/level/GameRules/RULE_RANDOMTICKING +FD: net/minecraft/world/level/GameRules/f_46144_ net/minecraft/world/level/GameRules/RULE_SENDCOMMANDFEEDBACK +FD: net/minecraft/world/level/GameRules/f_46145_ net/minecraft/world/level/GameRules/RULE_REDUCEDDEBUGINFO +FD: net/minecraft/world/level/GameRules/f_46146_ net/minecraft/world/level/GameRules/RULE_SPECTATORSGENERATECHUNKS +FD: net/minecraft/world/level/GameRules/f_46147_ net/minecraft/world/level/GameRules/RULE_SPAWN_RADIUS +FD: net/minecraft/world/level/GameRules/f_46148_ net/minecraft/world/level/GameRules/RULE_DISABLE_ELYTRA_MOVEMENT_CHECK +FD: net/minecraft/world/level/GameRules/f_46149_ net/minecraft/world/level/GameRules/RULE_MAX_ENTITY_CRAMMING +FD: net/minecraft/world/level/GameRules/f_46150_ net/minecraft/world/level/GameRules/RULE_WEATHER_CYCLE +FD: net/minecraft/world/level/GameRules/f_46151_ net/minecraft/world/level/GameRules/RULE_LIMITED_CRAFTING +FD: net/minecraft/world/level/GameRules/f_46152_ net/minecraft/world/level/GameRules/RULE_MAX_COMMAND_CHAIN_LENGTH +FD: net/minecraft/world/level/GameRules/f_46153_ net/minecraft/world/level/GameRules/RULE_ANNOUNCE_ADVANCEMENTS +FD: net/minecraft/world/level/GameRules/f_46154_ net/minecraft/world/level/GameRules/RULE_DISABLE_RAIDS +FD: net/minecraft/world/level/GameRules/f_46155_ net/minecraft/world/level/GameRules/RULE_DOINSOMNIA +FD: net/minecraft/world/level/GameRules/f_46156_ net/minecraft/world/level/GameRules/RULE_DO_IMMEDIATE_RESPAWN +FD: net/minecraft/world/level/GameRules$BooleanValue/f_46219_ net/minecraft/world/level/GameRules$BooleanValue/value +FD: net/minecraft/world/level/GameRules$Category/$VALUES net/minecraft/world/level/GameRules$Category/$VALUES +FD: net/minecraft/world/level/GameRules$Category/CHAT net/minecraft/world/level/GameRules$Category/CHAT +FD: net/minecraft/world/level/GameRules$Category/DROPS net/minecraft/world/level/GameRules$Category/DROPS +FD: net/minecraft/world/level/GameRules$Category/MISC net/minecraft/world/level/GameRules$Category/MISC +FD: net/minecraft/world/level/GameRules$Category/MOBS net/minecraft/world/level/GameRules$Category/MOBS +FD: net/minecraft/world/level/GameRules$Category/PLAYER net/minecraft/world/level/GameRules$Category/PLAYER +FD: net/minecraft/world/level/GameRules$Category/SPAWNING net/minecraft/world/level/GameRules$Category/SPAWNING +FD: net/minecraft/world/level/GameRules$Category/UPDATES net/minecraft/world/level/GameRules$Category/UPDATES +FD: net/minecraft/world/level/GameRules$Category/f_46267_ net/minecraft/world/level/GameRules$Category/descriptionId +FD: net/minecraft/world/level/GameRules$IntegerValue/f_46284_ net/minecraft/world/level/GameRules$IntegerValue/value +FD: net/minecraft/world/level/GameRules$Key/f_46323_ net/minecraft/world/level/GameRules$Key/id +FD: net/minecraft/world/level/GameRules$Key/f_46324_ net/minecraft/world/level/GameRules$Key/category +FD: net/minecraft/world/level/GameRules$Type/f_46337_ net/minecraft/world/level/GameRules$Type/argument +FD: net/minecraft/world/level/GameRules$Type/f_46338_ net/minecraft/world/level/GameRules$Type/constructor +FD: net/minecraft/world/level/GameRules$Type/f_46339_ net/minecraft/world/level/GameRules$Type/callback +FD: net/minecraft/world/level/GameRules$Type/f_46340_ net/minecraft/world/level/GameRules$Type/visitorCaller +FD: net/minecraft/world/level/GameRules$Value/f_46360_ net/minecraft/world/level/GameRules$Value/type +FD: net/minecraft/world/level/GameType/$VALUES net/minecraft/world/level/GameType/$VALUES +FD: net/minecraft/world/level/GameType/ADVENTURE net/minecraft/world/level/GameType/ADVENTURE +FD: net/minecraft/world/level/GameType/CREATIVE net/minecraft/world/level/GameType/CREATIVE +FD: net/minecraft/world/level/GameType/SPECTATOR net/minecraft/world/level/GameType/SPECTATOR +FD: net/minecraft/world/level/GameType/SURVIVAL net/minecraft/world/level/GameType/SURVIVAL +FD: net/minecraft/world/level/GameType/f_151492_ net/minecraft/world/level/GameType/DEFAULT_MODE +FD: net/minecraft/world/level/GameType/f_151493_ net/minecraft/world/level/GameType/shortName +FD: net/minecraft/world/level/GameType/f_151494_ net/minecraft/world/level/GameType/longName +FD: net/minecraft/world/level/GameType/f_262728_ net/minecraft/world/level/GameType/BY_ID +FD: net/minecraft/world/level/GameType/f_262729_ net/minecraft/world/level/GameType/CODEC +FD: net/minecraft/world/level/GameType/f_46378_ net/minecraft/world/level/GameType/NOT_SET +FD: net/minecraft/world/level/GameType/f_46383_ net/minecraft/world/level/GameType/id +FD: net/minecraft/world/level/GameType/f_46384_ net/minecraft/world/level/GameType/name +FD: net/minecraft/world/level/GrassColor/f_46413_ net/minecraft/world/level/GrassColor/pixels +FD: net/minecraft/world/level/Level/f_151503_ net/minecraft/world/level/Level/pendingBlockEntityTickers +FD: net/minecraft/world/level/Level/f_151504_ net/minecraft/world/level/Level/tickingBlockEntities +FD: net/minecraft/world/level/Level/f_151505_ net/minecraft/world/level/Level/MAX_LEVEL_SIZE +FD: net/minecraft/world/level/Level/f_151506_ net/minecraft/world/level/Level/LONG_PARTICLE_CLIP_RANGE +FD: net/minecraft/world/level/Level/f_151507_ net/minecraft/world/level/Level/SHORT_PARTICLE_CLIP_RANGE +FD: net/minecraft/world/level/Level/f_151508_ net/minecraft/world/level/Level/MAX_BRIGHTNESS +FD: net/minecraft/world/level/Level/f_151509_ net/minecraft/world/level/Level/TICKS_PER_DAY +FD: net/minecraft/world/level/Level/f_151510_ net/minecraft/world/level/Level/MAX_ENTITY_SPAWN_Y +FD: net/minecraft/world/level/Level/f_151511_ net/minecraft/world/level/Level/MIN_ENTITY_SPAWN_Y +FD: net/minecraft/world/level/Level/f_151512_ net/minecraft/world/level/Level/blockEntityTickers +FD: net/minecraft/world/level/Level/f_186455_ net/minecraft/world/level/Level/subTickCount +FD: net/minecraft/world/level/Level/f_204147_ net/minecraft/world/level/Level/dimensionTypeRegistration +FD: net/minecraft/world/level/Level/f_220348_ net/minecraft/world/level/Level/threadSafeRandom +FD: net/minecraft/world/level/Level/f_220349_ net/minecraft/world/level/Level/dimensionTypeId +FD: net/minecraft/world/level/Level/f_220350_ net/minecraft/world/level/Level/neighborUpdater +FD: net/minecraft/world/level/Level/f_268497_ net/minecraft/world/level/Level/damageSources +FD: net/minecraft/world/level/Level/f_268710_ net/minecraft/world/level/Level/registryAccess +FD: net/minecraft/world/level/Level/f_46420_ net/minecraft/world/level/Level/biomeManager +FD: net/minecraft/world/level/Level/f_46421_ net/minecraft/world/level/Level/dimension +FD: net/minecraft/world/level/Level/f_46423_ net/minecraft/world/level/Level/thread +FD: net/minecraft/world/level/Level/f_46424_ net/minecraft/world/level/Level/isDebug +FD: net/minecraft/world/level/Level/f_46425_ net/minecraft/world/level/Level/skyDarken +FD: net/minecraft/world/level/Level/f_46427_ net/minecraft/world/level/Level/RESOURCE_KEY_CODEC +FD: net/minecraft/world/level/Level/f_46428_ net/minecraft/world/level/Level/OVERWORLD +FD: net/minecraft/world/level/Level/f_46429_ net/minecraft/world/level/Level/NETHER +FD: net/minecraft/world/level/Level/f_46430_ net/minecraft/world/level/Level/END +FD: net/minecraft/world/level/Level/f_46435_ net/minecraft/world/level/Level/randValue +FD: net/minecraft/world/level/Level/f_46436_ net/minecraft/world/level/Level/addend +FD: net/minecraft/world/level/Level/f_46437_ net/minecraft/world/level/Level/oRainLevel +FD: net/minecraft/world/level/Level/f_46438_ net/minecraft/world/level/Level/rainLevel +FD: net/minecraft/world/level/Level/f_46439_ net/minecraft/world/level/Level/oThunderLevel +FD: net/minecraft/world/level/Level/f_46440_ net/minecraft/world/level/Level/thunderLevel +FD: net/minecraft/world/level/Level/f_46441_ net/minecraft/world/level/Level/random +FD: net/minecraft/world/level/Level/f_46442_ net/minecraft/world/level/Level/levelData +FD: net/minecraft/world/level/Level/f_46443_ net/minecraft/world/level/Level/isClientSide +FD: net/minecraft/world/level/Level/f_46446_ net/minecraft/world/level/Level/profiler +FD: net/minecraft/world/level/Level/f_46447_ net/minecraft/world/level/Level/worldBorder +FD: net/minecraft/world/level/Level$1/f_220396_ net/minecraft/world/level/Level$1/val$dimensionType +FD: net/minecraft/world/level/Level$1/f_46765_ net/minecraft/world/level/Level$1/this$0 +FD: net/minecraft/world/level/Level$2/f_254640_ net/minecraft/world/level/Level$2/$SwitchMap$net$minecraft$world$level$Level$ExplosionInteraction +FD: net/minecraft/world/level/Level$ExplosionInteraction/$VALUES net/minecraft/world/level/Level$ExplosionInteraction/$VALUES +FD: net/minecraft/world/level/Level$ExplosionInteraction/BLOCK net/minecraft/world/level/Level$ExplosionInteraction/BLOCK +FD: net/minecraft/world/level/Level$ExplosionInteraction/MOB net/minecraft/world/level/Level$ExplosionInteraction/MOB +FD: net/minecraft/world/level/Level$ExplosionInteraction/NONE net/minecraft/world/level/Level$ExplosionInteraction/NONE +FD: net/minecraft/world/level/Level$ExplosionInteraction/TNT net/minecraft/world/level/Level$ExplosionInteraction/TNT +FD: net/minecraft/world/level/LevelHeightAccessor$1/f_186490_ net/minecraft/world/level/LevelHeightAccessor$1/val$height +FD: net/minecraft/world/level/LevelHeightAccessor$1/f_186491_ net/minecraft/world/level/LevelHeightAccessor$1/val$minBuildHeight +FD: net/minecraft/world/level/LevelSettings/f_243681_ net/minecraft/world/level/LevelSettings/dataConfiguration +FD: net/minecraft/world/level/LevelSettings/f_46902_ net/minecraft/world/level/LevelSettings/levelName +FD: net/minecraft/world/level/LevelSettings/f_46903_ net/minecraft/world/level/LevelSettings/gameType +FD: net/minecraft/world/level/LevelSettings/f_46904_ net/minecraft/world/level/LevelSettings/hardcore +FD: net/minecraft/world/level/LevelSettings/f_46905_ net/minecraft/world/level/LevelSettings/difficulty +FD: net/minecraft/world/level/LevelSettings/f_46906_ net/minecraft/world/level/LevelSettings/allowCommands +FD: net/minecraft/world/level/LevelSettings/f_46907_ net/minecraft/world/level/LevelSettings/gameRules +FD: net/minecraft/world/level/LightLayer/$VALUES net/minecraft/world/level/LightLayer/$VALUES +FD: net/minecraft/world/level/LightLayer/BLOCK net/minecraft/world/level/LightLayer/BLOCK +FD: net/minecraft/world/level/LightLayer/SKY net/minecraft/world/level/LightLayer/SKY +FD: net/minecraft/world/level/LocalMobCapCalculator/f_186497_ net/minecraft/world/level/LocalMobCapCalculator/playersNearChunk +FD: net/minecraft/world/level/LocalMobCapCalculator/f_186498_ net/minecraft/world/level/LocalMobCapCalculator/playerMobCounts +FD: net/minecraft/world/level/LocalMobCapCalculator/f_186499_ net/minecraft/world/level/LocalMobCapCalculator/chunkMap +FD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/f_186515_ net/minecraft/world/level/LocalMobCapCalculator$MobCounts/counts +FD: net/minecraft/world/level/NaturalSpawner/f_151587_ net/minecraft/world/level/NaturalSpawner/SPAWN_DISTANCE_CHUNK +FD: net/minecraft/world/level/NaturalSpawner/f_151588_ net/minecraft/world/level/NaturalSpawner/SPAWN_DISTANCE_BLOCK +FD: net/minecraft/world/level/NaturalSpawner/f_151589_ net/minecraft/world/level/NaturalSpawner/MIN_SPAWN_DISTANCE +FD: net/minecraft/world/level/NaturalSpawner/f_46977_ net/minecraft/world/level/NaturalSpawner/LOGGER +FD: net/minecraft/world/level/NaturalSpawner/f_46978_ net/minecraft/world/level/NaturalSpawner/MAGIC_NUMBER +FD: net/minecraft/world/level/NaturalSpawner/f_46979_ net/minecraft/world/level/NaturalSpawner/SPAWNING_CATEGORIES +FD: net/minecraft/world/level/NaturalSpawner$1/f_47098_ net/minecraft/world/level/NaturalSpawner$1/$SwitchMap$net$minecraft$world$entity$SpawnPlacements$Type +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_186542_ net/minecraft/world/level/NaturalSpawner$SpawnState/localMobCapCalculator +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47110_ net/minecraft/world/level/NaturalSpawner$SpawnState/spawnableChunkCount +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47111_ net/minecraft/world/level/NaturalSpawner$SpawnState/mobCategoryCounts +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47112_ net/minecraft/world/level/NaturalSpawner$SpawnState/spawnPotential +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47113_ net/minecraft/world/level/NaturalSpawner$SpawnState/unmodifiableMobCategoryCounts +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47114_ net/minecraft/world/level/NaturalSpawner$SpawnState/lastCheckedPos +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47115_ net/minecraft/world/level/NaturalSpawner$SpawnState/lastCheckedType +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47116_ net/minecraft/world/level/NaturalSpawner$SpawnState/lastCharge +FD: net/minecraft/world/level/NoiseColumn/f_151621_ net/minecraft/world/level/NoiseColumn/minY +FD: net/minecraft/world/level/NoiseColumn/f_47149_ net/minecraft/world/level/NoiseColumn/column +FD: net/minecraft/world/level/PathNavigationRegion/f_204180_ net/minecraft/world/level/PathNavigationRegion/plains +FD: net/minecraft/world/level/PathNavigationRegion/f_47158_ net/minecraft/world/level/PathNavigationRegion/centerX +FD: net/minecraft/world/level/PathNavigationRegion/f_47159_ net/minecraft/world/level/PathNavigationRegion/centerZ +FD: net/minecraft/world/level/PathNavigationRegion/f_47160_ net/minecraft/world/level/PathNavigationRegion/chunks +FD: net/minecraft/world/level/PathNavigationRegion/f_47161_ net/minecraft/world/level/PathNavigationRegion/allEmpty +FD: net/minecraft/world/level/PathNavigationRegion/f_47162_ net/minecraft/world/level/PathNavigationRegion/level +FD: net/minecraft/world/level/PotentialCalculator/f_47190_ net/minecraft/world/level/PotentialCalculator/charges +FD: net/minecraft/world/level/PotentialCalculator$PointCharge/f_47198_ net/minecraft/world/level/PotentialCalculator$PointCharge/pos +FD: net/minecraft/world/level/PotentialCalculator$PointCharge/f_47199_ net/minecraft/world/level/PotentialCalculator$PointCharge/charge +FD: net/minecraft/world/level/SignalGetter/f_276432_ net/minecraft/world/level/SignalGetter/DIRECTIONS +FD: net/minecraft/world/level/SpawnData/f_186559_ net/minecraft/world/level/SpawnData/CODEC +FD: net/minecraft/world/level/SpawnData/f_186560_ net/minecraft/world/level/SpawnData/LIST_CODEC +FD: net/minecraft/world/level/SpawnData/f_186561_ net/minecraft/world/level/SpawnData/entityToSpawn +FD: net/minecraft/world/level/SpawnData/f_186562_ net/minecraft/world/level/SpawnData/customSpawnRules +FD: net/minecraft/world/level/SpawnData/f_254695_ net/minecraft/world/level/SpawnData/ENTITY_TAG +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186583_ net/minecraft/world/level/SpawnData$CustomSpawnRules/CODEC +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186584_ net/minecraft/world/level/SpawnData$CustomSpawnRules/blockLightLimit +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186585_ net/minecraft/world/level/SpawnData$CustomSpawnRules/skyLightLimit +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186586_ net/minecraft/world/level/SpawnData$CustomSpawnRules/LIGHT_RANGE +FD: net/minecraft/world/level/StructureManager/f_220460_ net/minecraft/world/level/StructureManager/level +FD: net/minecraft/world/level/StructureManager/f_220462_ net/minecraft/world/level/StructureManager/structureCheck +FD: net/minecraft/world/level/StructureManager/f_244109_ net/minecraft/world/level/StructureManager/worldOptions +FD: net/minecraft/world/level/WorldDataConfiguration/f_243757_ net/minecraft/world/level/WorldDataConfiguration/ENABLED_FEATURES_ID +FD: net/minecraft/world/level/WorldDataConfiguration/f_243973_ net/minecraft/world/level/WorldDataConfiguration/enabledFeatures +FD: net/minecraft/world/level/WorldDataConfiguration/f_244096_ net/minecraft/world/level/WorldDataConfiguration/dataPacks +FD: net/minecraft/world/level/WorldDataConfiguration/f_244621_ net/minecraft/world/level/WorldDataConfiguration/CODEC +FD: net/minecraft/world/level/WorldDataConfiguration/f_244649_ net/minecraft/world/level/WorldDataConfiguration/DEFAULT +FD: net/minecraft/world/level/biome/AmbientAdditionsSettings/f_47371_ net/minecraft/world/level/biome/AmbientAdditionsSettings/CODEC +FD: net/minecraft/world/level/biome/AmbientAdditionsSettings/f_47372_ net/minecraft/world/level/biome/AmbientAdditionsSettings/soundEvent +FD: net/minecraft/world/level/biome/AmbientAdditionsSettings/f_47373_ net/minecraft/world/level/biome/AmbientAdditionsSettings/tickChance +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47386_ net/minecraft/world/level/biome/AmbientMoodSettings/CODEC +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47387_ net/minecraft/world/level/biome/AmbientMoodSettings/LEGACY_CAVE_SETTINGS +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47388_ net/minecraft/world/level/biome/AmbientMoodSettings/soundEvent +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47389_ net/minecraft/world/level/biome/AmbientMoodSettings/tickDelay +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47390_ net/minecraft/world/level/biome/AmbientMoodSettings/blockSearchExtent +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47391_ net/minecraft/world/level/biome/AmbientMoodSettings/soundPositionOffset +FD: net/minecraft/world/level/biome/AmbientParticleSettings/f_47412_ net/minecraft/world/level/biome/AmbientParticleSettings/CODEC +FD: net/minecraft/world/level/biome/AmbientParticleSettings/f_47413_ net/minecraft/world/level/biome/AmbientParticleSettings/options +FD: net/minecraft/world/level/biome/AmbientParticleSettings/f_47414_ net/minecraft/world/level/biome/AmbientParticleSettings/probability +FD: net/minecraft/world/level/biome/Biome/f_151655_ net/minecraft/world/level/biome/Biome/TEMPERATURE_CACHE_SIZE +FD: net/minecraft/world/level/biome/Biome/f_47429_ net/minecraft/world/level/biome/Biome/DIRECT_CODEC +FD: net/minecraft/world/level/biome/Biome/f_47430_ net/minecraft/world/level/biome/Biome/NETWORK_CODEC +FD: net/minecraft/world/level/biome/Biome/f_47431_ net/minecraft/world/level/biome/Biome/CODEC +FD: net/minecraft/world/level/biome/Biome/f_47432_ net/minecraft/world/level/biome/Biome/LIST_CODEC +FD: net/minecraft/world/level/biome/Biome/f_47433_ net/minecraft/world/level/biome/Biome/BIOME_INFO_NOISE +FD: net/minecraft/world/level/biome/Biome/f_47435_ net/minecraft/world/level/biome/Biome/TEMPERATURE_NOISE +FD: net/minecraft/world/level/biome/Biome/f_47436_ net/minecraft/world/level/biome/Biome/FROZEN_TEMPERATURE_NOISE +FD: net/minecraft/world/level/biome/Biome/f_47437_ net/minecraft/world/level/biome/Biome/climateSettings +FD: net/minecraft/world/level/biome/Biome/f_47438_ net/minecraft/world/level/biome/Biome/generationSettings +FD: net/minecraft/world/level/biome/Biome/f_47439_ net/minecraft/world/level/biome/Biome/mobSettings +FD: net/minecraft/world/level/biome/Biome/f_47443_ net/minecraft/world/level/biome/Biome/specialEffects +FD: net/minecraft/world/level/biome/Biome/f_47444_ net/minecraft/world/level/biome/Biome/temperatureCache +FD: net/minecraft/world/level/biome/Biome$1/f_47574_ net/minecraft/world/level/biome/Biome$1/this$0 +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_263814_ net/minecraft/world/level/biome/Biome$BiomeBuilder/hasPrecipitation +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47585_ net/minecraft/world/level/biome/Biome$BiomeBuilder/temperature +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47586_ net/minecraft/world/level/biome/Biome$BiomeBuilder/temperatureModifier +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47587_ net/minecraft/world/level/biome/Biome$BiomeBuilder/downfall +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47588_ net/minecraft/world/level/biome/Biome$BiomeBuilder/specialEffects +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47589_ net/minecraft/world/level/biome/Biome$BiomeBuilder/mobSpawnSettings +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47590_ net/minecraft/world/level/biome/Biome$BiomeBuilder/generationSettings +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_263819_ net/minecraft/world/level/biome/Biome$ClimateSettings/hasPrecipitation +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47679_ net/minecraft/world/level/biome/Biome$ClimateSettings/CODEC +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47681_ net/minecraft/world/level/biome/Biome$ClimateSettings/temperature +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47682_ net/minecraft/world/level/biome/Biome$ClimateSettings/temperatureModifier +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47683_ net/minecraft/world/level/biome/Biome$ClimateSettings/downfall +FD: net/minecraft/world/level/biome/Biome$Precipitation/$VALUES net/minecraft/world/level/biome/Biome$Precipitation/$VALUES +FD: net/minecraft/world/level/biome/Biome$Precipitation/NONE net/minecraft/world/level/biome/Biome$Precipitation/NONE +FD: net/minecraft/world/level/biome/Biome$Precipitation/RAIN net/minecraft/world/level/biome/Biome$Precipitation/RAIN +FD: net/minecraft/world/level/biome/Biome$Precipitation/SNOW net/minecraft/world/level/biome/Biome$Precipitation/SNOW +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/$VALUES net/minecraft/world/level/biome/Biome$TemperatureModifier/$VALUES +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/FROZEN net/minecraft/world/level/biome/Biome$TemperatureModifier/FROZEN +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/NONE net/minecraft/world/level/biome/Biome$TemperatureModifier/NONE +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/f_47737_ net/minecraft/world/level/biome/Biome$TemperatureModifier/CODEC +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/f_47738_ net/minecraft/world/level/biome/Biome$TemperatureModifier/name +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_186648_ net/minecraft/world/level/biome/BiomeGenerationSettings/featureSet +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47776_ net/minecraft/world/level/biome/BiomeGenerationSettings/LOGGER +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47777_ net/minecraft/world/level/biome/BiomeGenerationSettings/EMPTY +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47778_ net/minecraft/world/level/biome/BiomeGenerationSettings/CODEC +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47780_ net/minecraft/world/level/biome/BiomeGenerationSettings/carvers +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47781_ net/minecraft/world/level/biome/BiomeGenerationSettings/features +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47783_ net/minecraft/world/level/biome/BiomeGenerationSettings/flowerFeatures +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/f_254679_ net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/placedFeatures +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/f_254731_ net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/worldCarvers +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/f_254648_ net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/features +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/f_254678_ net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/carvers +FD: net/minecraft/world/level/biome/BiomeManager/f_151750_ net/minecraft/world/level/biome/BiomeManager/CHUNK_CENTER_QUART +FD: net/minecraft/world/level/biome/BiomeManager/f_186673_ net/minecraft/world/level/biome/BiomeManager/ZOOM_BITS +FD: net/minecraft/world/level/biome/BiomeManager/f_186674_ net/minecraft/world/level/biome/BiomeManager/ZOOM +FD: net/minecraft/world/level/biome/BiomeManager/f_186675_ net/minecraft/world/level/biome/BiomeManager/ZOOM_MASK +FD: net/minecraft/world/level/biome/BiomeManager/f_47862_ net/minecraft/world/level/biome/BiomeManager/noiseBiomeSource +FD: net/minecraft/world/level/biome/BiomeManager/f_47863_ net/minecraft/world/level/biome/BiomeManager/biomeZoomSeed +FD: net/minecraft/world/level/biome/BiomeSource/f_47888_ net/minecraft/world/level/biome/BiomeSource/CODEC +FD: net/minecraft/world/level/biome/BiomeSource/f_47891_ net/minecraft/world/level/biome/BiomeSource/possibleBiomes +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47926_ net/minecraft/world/level/biome/BiomeSpecialEffects/CODEC +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47927_ net/minecraft/world/level/biome/BiomeSpecialEffects/fogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47928_ net/minecraft/world/level/biome/BiomeSpecialEffects/waterColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47929_ net/minecraft/world/level/biome/BiomeSpecialEffects/waterFogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47930_ net/minecraft/world/level/biome/BiomeSpecialEffects/skyColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47931_ net/minecraft/world/level/biome/BiomeSpecialEffects/foliageColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47932_ net/minecraft/world/level/biome/BiomeSpecialEffects/grassColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47933_ net/minecraft/world/level/biome/BiomeSpecialEffects/grassColorModifier +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47934_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientParticleSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47935_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientLoopSoundEvent +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47936_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientMoodSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47937_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientAdditionsSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47938_ net/minecraft/world/level/biome/BiomeSpecialEffects/backgroundMusic +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48005_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/fogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48006_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48007_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterFogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48008_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/skyColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48009_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/foliageColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48010_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48011_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorModifier +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48012_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientParticle +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48013_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientLoopSoundEvent +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48014_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientMoodSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48015_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientAdditionsSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48016_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/backgroundMusic +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/$VALUES net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/$VALUES +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/DARK_FOREST net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/DARK_FOREST +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/NONE net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/NONE +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/SWAMP net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/SWAMP +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/f_48050_ net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/CODEC +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/f_48051_ net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/name +FD: net/minecraft/world/level/biome/Biomes/f_151784_ net/minecraft/world/level/biome/Biomes/DRIPSTONE_CAVES +FD: net/minecraft/world/level/biome/Biomes/f_151785_ net/minecraft/world/level/biome/Biomes/LUSH_CAVES +FD: net/minecraft/world/level/biome/Biomes/f_186753_ net/minecraft/world/level/biome/Biomes/WOODED_BADLANDS +FD: net/minecraft/world/level/biome/Biomes/f_186754_ net/minecraft/world/level/biome/Biomes/MEADOW +FD: net/minecraft/world/level/biome/Biomes/f_186755_ net/minecraft/world/level/biome/Biomes/GROVE +FD: net/minecraft/world/level/biome/Biomes/f_186756_ net/minecraft/world/level/biome/Biomes/SNOWY_SLOPES +FD: net/minecraft/world/level/biome/Biomes/f_186757_ net/minecraft/world/level/biome/Biomes/FROZEN_PEAKS +FD: net/minecraft/world/level/biome/Biomes/f_186758_ net/minecraft/world/level/biome/Biomes/JAGGED_PEAKS +FD: net/minecraft/world/level/biome/Biomes/f_186759_ net/minecraft/world/level/biome/Biomes/STONY_PEAKS +FD: net/minecraft/world/level/biome/Biomes/f_186760_ net/minecraft/world/level/biome/Biomes/STONY_SHORE +FD: net/minecraft/world/level/biome/Biomes/f_186761_ net/minecraft/world/level/biome/Biomes/SNOWY_PLAINS +FD: net/minecraft/world/level/biome/Biomes/f_186762_ net/minecraft/world/level/biome/Biomes/OLD_GROWTH_BIRCH_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_186763_ net/minecraft/world/level/biome/Biomes/OLD_GROWTH_PINE_TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_186764_ net/minecraft/world/level/biome/Biomes/OLD_GROWTH_SPRUCE_TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_186765_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_HILLS +FD: net/minecraft/world/level/biome/Biomes/f_186766_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_GRAVELLY_HILLS +FD: net/minecraft/world/level/biome/Biomes/f_186767_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_186768_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_SAVANNA +FD: net/minecraft/world/level/biome/Biomes/f_186769_ net/minecraft/world/level/biome/Biomes/SPARSE_JUNGLE +FD: net/minecraft/world/level/biome/Biomes/f_220594_ net/minecraft/world/level/biome/Biomes/DEEP_DARK +FD: net/minecraft/world/level/biome/Biomes/f_220595_ net/minecraft/world/level/biome/Biomes/MANGROVE_SWAMP +FD: net/minecraft/world/level/biome/Biomes/f_271432_ net/minecraft/world/level/biome/Biomes/CHERRY_GROVE +FD: net/minecraft/world/level/biome/Biomes/f_48148_ net/minecraft/world/level/biome/Biomes/SNOWY_BEACH +FD: net/minecraft/world/level/biome/Biomes/f_48149_ net/minecraft/world/level/biome/Biomes/BIRCH_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48151_ net/minecraft/world/level/biome/Biomes/DARK_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48152_ net/minecraft/world/level/biome/Biomes/SNOWY_TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_48157_ net/minecraft/world/level/biome/Biomes/SAVANNA +FD: net/minecraft/world/level/biome/Biomes/f_48158_ net/minecraft/world/level/biome/Biomes/SAVANNA_PLATEAU +FD: net/minecraft/world/level/biome/Biomes/f_48159_ net/minecraft/world/level/biome/Biomes/BADLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48162_ net/minecraft/world/level/biome/Biomes/SMALL_END_ISLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48163_ net/minecraft/world/level/biome/Biomes/END_MIDLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48164_ net/minecraft/world/level/biome/Biomes/END_HIGHLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48165_ net/minecraft/world/level/biome/Biomes/END_BARRENS +FD: net/minecraft/world/level/biome/Biomes/f_48166_ net/minecraft/world/level/biome/Biomes/WARM_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48167_ net/minecraft/world/level/biome/Biomes/LUKEWARM_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48168_ net/minecraft/world/level/biome/Biomes/COLD_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48170_ net/minecraft/world/level/biome/Biomes/DEEP_LUKEWARM_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48171_ net/minecraft/world/level/biome/Biomes/DEEP_COLD_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48172_ net/minecraft/world/level/biome/Biomes/DEEP_FROZEN_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48173_ net/minecraft/world/level/biome/Biomes/THE_VOID +FD: net/minecraft/world/level/biome/Biomes/f_48174_ net/minecraft/world/level/biome/Biomes/OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48175_ net/minecraft/world/level/biome/Biomes/BASALT_DELTAS +FD: net/minecraft/world/level/biome/Biomes/f_48176_ net/minecraft/world/level/biome/Biomes/SUNFLOWER_PLAINS +FD: net/minecraft/world/level/biome/Biomes/f_48179_ net/minecraft/world/level/biome/Biomes/FLOWER_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48182_ net/minecraft/world/level/biome/Biomes/ICE_SPIKES +FD: net/minecraft/world/level/biome/Biomes/f_48194_ net/minecraft/world/level/biome/Biomes/ERODED_BADLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48197_ net/minecraft/world/level/biome/Biomes/BAMBOO_JUNGLE +FD: net/minecraft/world/level/biome/Biomes/f_48199_ net/minecraft/world/level/biome/Biomes/SOUL_SAND_VALLEY +FD: net/minecraft/world/level/biome/Biomes/f_48200_ net/minecraft/world/level/biome/Biomes/CRIMSON_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48201_ net/minecraft/world/level/biome/Biomes/WARPED_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48202_ net/minecraft/world/level/biome/Biomes/PLAINS +FD: net/minecraft/world/level/biome/Biomes/f_48203_ net/minecraft/world/level/biome/Biomes/DESERT +FD: net/minecraft/world/level/biome/Biomes/f_48205_ net/minecraft/world/level/biome/Biomes/FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48206_ net/minecraft/world/level/biome/Biomes/TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_48207_ net/minecraft/world/level/biome/Biomes/SWAMP +FD: net/minecraft/world/level/biome/Biomes/f_48208_ net/minecraft/world/level/biome/Biomes/RIVER +FD: net/minecraft/world/level/biome/Biomes/f_48209_ net/minecraft/world/level/biome/Biomes/NETHER_WASTES +FD: net/minecraft/world/level/biome/Biomes/f_48210_ net/minecraft/world/level/biome/Biomes/THE_END +FD: net/minecraft/world/level/biome/Biomes/f_48211_ net/minecraft/world/level/biome/Biomes/FROZEN_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48212_ net/minecraft/world/level/biome/Biomes/FROZEN_RIVER +FD: net/minecraft/world/level/biome/Biomes/f_48215_ net/minecraft/world/level/biome/Biomes/MUSHROOM_FIELDS +FD: net/minecraft/world/level/biome/Biomes/f_48217_ net/minecraft/world/level/biome/Biomes/BEACH +FD: net/minecraft/world/level/biome/Biomes/f_48222_ net/minecraft/world/level/biome/Biomes/JUNGLE +FD: net/minecraft/world/level/biome/Biomes/f_48225_ net/minecraft/world/level/biome/Biomes/DEEP_OCEAN +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48230_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/CODEC +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48231_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/allowedBiomes +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48232_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/bitShift +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48233_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/size +FD: net/minecraft/world/level/biome/Climate/f_186775_ net/minecraft/world/level/biome/Climate/PARAMETER_COUNT +FD: net/minecraft/world/level/biome/Climate/f_186776_ net/minecraft/world/level/biome/Climate/DEBUG_SLOW_BIOME_SEARCH +FD: net/minecraft/world/level/biome/Climate/f_186777_ net/minecraft/world/level/biome/Climate/QUANTIZATION_FACTOR +FD: net/minecraft/world/level/biome/Climate$Parameter/f_186812_ net/minecraft/world/level/biome/Climate$Parameter/CODEC +FD: net/minecraft/world/level/biome/Climate$Parameter/f_186813_ net/minecraft/world/level/biome/Climate$Parameter/min +FD: net/minecraft/world/level/biome/Climate$Parameter/f_186814_ net/minecraft/world/level/biome/Climate$Parameter/max +FD: net/minecraft/world/level/biome/Climate$ParameterList/f_186846_ net/minecraft/world/level/biome/Climate$ParameterList/values +FD: net/minecraft/world/level/biome/Climate$ParameterList/f_186847_ net/minecraft/world/level/biome/Climate$ParameterList/index +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186862_ net/minecraft/world/level/biome/Climate$ParameterPoint/CODEC +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186863_ net/minecraft/world/level/biome/Climate$ParameterPoint/temperature +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186864_ net/minecraft/world/level/biome/Climate$ParameterPoint/humidity +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186865_ net/minecraft/world/level/biome/Climate$ParameterPoint/continentalness +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186866_ net/minecraft/world/level/biome/Climate$ParameterPoint/erosion +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186867_ net/minecraft/world/level/biome/Climate$ParameterPoint/depth +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186868_ net/minecraft/world/level/biome/Climate$ParameterPoint/weirdness +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186869_ net/minecraft/world/level/biome/Climate$ParameterPoint/offset +FD: net/minecraft/world/level/biome/Climate$RTree/f_186909_ net/minecraft/world/level/biome/Climate$RTree/CHILDREN_PER_NODE +FD: net/minecraft/world/level/biome/Climate$RTree/f_186910_ net/minecraft/world/level/biome/Climate$RTree/root +FD: net/minecraft/world/level/biome/Climate$RTree/f_186911_ net/minecraft/world/level/biome/Climate$RTree/lastResult +FD: net/minecraft/world/level/biome/Climate$RTree$Leaf/f_186948_ net/minecraft/world/level/biome/Climate$RTree$Leaf/value +FD: net/minecraft/world/level/biome/Climate$RTree$Node/f_186956_ net/minecraft/world/level/biome/Climate$RTree$Node/parameterSpace +FD: net/minecraft/world/level/biome/Climate$RTree$SubTree/f_186965_ net/minecraft/world/level/biome/Climate$RTree$SubTree/children +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207845_ net/minecraft/world/level/biome/Climate$Sampler/temperature +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207846_ net/minecraft/world/level/biome/Climate$Sampler/humidity +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207847_ net/minecraft/world/level/biome/Climate$Sampler/continentalness +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207848_ net/minecraft/world/level/biome/Climate$Sampler/erosion +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207849_ net/minecraft/world/level/biome/Climate$Sampler/depth +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207850_ net/minecraft/world/level/biome/Climate$Sampler/weirdness +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207851_ net/minecraft/world/level/biome/Climate$Sampler/spawnTarget +FD: net/minecraft/world/level/biome/Climate$SpawnFinder/f_186978_ net/minecraft/world/level/biome/Climate$SpawnFinder/result +FD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186992_ net/minecraft/world/level/biome/Climate$SpawnFinder$Result/location +FD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186993_ net/minecraft/world/level/biome/Climate$SpawnFinder$Result/fitness +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187003_ net/minecraft/world/level/biome/Climate$TargetPoint/temperature +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187004_ net/minecraft/world/level/biome/Climate$TargetPoint/humidity +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187005_ net/minecraft/world/level/biome/Climate$TargetPoint/continentalness +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187006_ net/minecraft/world/level/biome/Climate$TargetPoint/erosion +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187007_ net/minecraft/world/level/biome/Climate$TargetPoint/depth +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187008_ net/minecraft/world/level/biome/Climate$TargetPoint/weirdness +FD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220610_ net/minecraft/world/level/biome/FeatureSorter$1FeatureData/featureIndex +FD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220611_ net/minecraft/world/level/biome/FeatureSorter$1FeatureData/step +FD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220612_ net/minecraft/world/level/biome/FeatureSorter$1FeatureData/feature +FD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220624_ net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/features +FD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220625_ net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/indexMapping +FD: net/minecraft/world/level/biome/FixedBiomeSource/f_48251_ net/minecraft/world/level/biome/FixedBiomeSource/CODEC +FD: net/minecraft/world/level/biome/FixedBiomeSource/f_48252_ net/minecraft/world/level/biome/FixedBiomeSource/biome +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_151796_ net/minecraft/world/level/biome/MobSpawnSettings/EMPTY_MOB_LIST +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_151797_ net/minecraft/world/level/biome/MobSpawnSettings/DEFAULT_CREATURE_SPAWN_PROBABILITY +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48325_ net/minecraft/world/level/biome/MobSpawnSettings/LOGGER +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48326_ net/minecraft/world/level/biome/MobSpawnSettings/EMPTY +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48327_ net/minecraft/world/level/biome/MobSpawnSettings/CODEC +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48328_ net/minecraft/world/level/biome/MobSpawnSettings/creatureGenerationProbability +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48329_ net/minecraft/world/level/biome/MobSpawnSettings/spawners +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48330_ net/minecraft/world/level/biome/MobSpawnSettings/mobSpawnCosts +FD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/f_48362_ net/minecraft/world/level/biome/MobSpawnSettings$Builder/spawners +FD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/f_48363_ net/minecraft/world/level/biome/MobSpawnSettings$Builder/mobSpawnCosts +FD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/f_48364_ net/minecraft/world/level/biome/MobSpawnSettings$Builder/creatureGenerationProbability +FD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48384_ net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/CODEC +FD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48385_ net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/energyBudget +FD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48386_ net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/charge +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48403_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/CODEC +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48404_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/type +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48405_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/minCount +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48406_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/maxCount +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_273882_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/ENTRY_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_273891_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/PRESET_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_48424_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/DIRECT_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_48425_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_48435_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/parameters +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273815_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/parameters +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273907_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/DIRECT_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273930_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273943_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/preset +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273825_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273838_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/NETHER +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273865_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/provider +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273915_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/OVERWORLD +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273938_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/BY_NAME +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273944_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/id +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/f_273830_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/NETHER +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/f_273878_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/OVERWORLD +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187121_ net/minecraft/world/level/biome/OverworldBiomeBuilder/OCEANS +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187122_ net/minecraft/world/level/biome/OverworldBiomeBuilder/MIDDLE_BIOMES +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187123_ net/minecraft/world/level/biome/OverworldBiomeBuilder/MIDDLE_BIOMES_VARIANT +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187124_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PLATEAU_BIOMES +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187125_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PLATEAU_BIOMES_VARIANT +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187127_ net/minecraft/world/level/biome/OverworldBiomeBuilder/HIGH_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187128_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PEAK_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187129_ net/minecraft/world/level/biome/OverworldBiomeBuilder/NEAR_INLAND_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187130_ net/minecraft/world/level/biome/OverworldBiomeBuilder/MID_INLAND_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187131_ net/minecraft/world/level/biome/OverworldBiomeBuilder/FAR_INLAND_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187132_ net/minecraft/world/level/biome/OverworldBiomeBuilder/EROSION_INDEX_1_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187133_ net/minecraft/world/level/biome/OverworldBiomeBuilder/EROSION_INDEX_2_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187134_ net/minecraft/world/level/biome/OverworldBiomeBuilder/VALLEY_SIZE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187135_ net/minecraft/world/level/biome/OverworldBiomeBuilder/LOW_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187136_ net/minecraft/world/level/biome/OverworldBiomeBuilder/HIGH_END +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187137_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PEAK_SIZE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187138_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PEAK_END +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187139_ net/minecraft/world/level/biome/OverworldBiomeBuilder/FULL_RANGE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187140_ net/minecraft/world/level/biome/OverworldBiomeBuilder/temperatures +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187141_ net/minecraft/world/level/biome/OverworldBiomeBuilder/humidities +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187142_ net/minecraft/world/level/biome/OverworldBiomeBuilder/erosions +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187143_ net/minecraft/world/level/biome/OverworldBiomeBuilder/FROZEN_RANGE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187144_ net/minecraft/world/level/biome/OverworldBiomeBuilder/UNFROZEN_RANGE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187145_ net/minecraft/world/level/biome/OverworldBiomeBuilder/mushroomFieldsContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187146_ net/minecraft/world/level/biome/OverworldBiomeBuilder/deepOceanContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187147_ net/minecraft/world/level/biome/OverworldBiomeBuilder/oceanContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187148_ net/minecraft/world/level/biome/OverworldBiomeBuilder/coastContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187149_ net/minecraft/world/level/biome/OverworldBiomeBuilder/inlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187150_ net/minecraft/world/level/biome/OverworldBiomeBuilder/nearInlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187151_ net/minecraft/world/level/biome/OverworldBiomeBuilder/midInlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187152_ net/minecraft/world/level/biome/OverworldBiomeBuilder/farInlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_201989_ net/minecraft/world/level/biome/OverworldBiomeBuilder/SHATTERED_BIOMES +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_220663_ net/minecraft/world/level/biome/OverworldBiomeBuilder/EROSION_DEEP_DARK_DRYNESS_THRESHOLD +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_220664_ net/minecraft/world/level/biome/OverworldBiomeBuilder/DEPTH_DEEP_DARK_DRYNESS_THRESHOLD +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48617_ net/minecraft/world/level/biome/TheEndBiomeSource/CODEC +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48621_ net/minecraft/world/level/biome/TheEndBiomeSource/end +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48622_ net/minecraft/world/level/biome/TheEndBiomeSource/highlands +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48623_ net/minecraft/world/level/biome/TheEndBiomeSource/midlands +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48624_ net/minecraft/world/level/biome/TheEndBiomeSource/islands +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48625_ net/minecraft/world/level/biome/TheEndBiomeSource/barrens +FD: net/minecraft/world/level/block/AbstractBannerBlock/f_48657_ net/minecraft/world/level/block/AbstractBannerBlock/color +FD: net/minecraft/world/level/block/AbstractCandleBlock/f_151894_ net/minecraft/world/level/block/AbstractCandleBlock/LIGHT_PER_CANDLE +FD: net/minecraft/world/level/block/AbstractCandleBlock/f_151895_ net/minecraft/world/level/block/AbstractCandleBlock/LIT +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151936_ net/minecraft/world/level/block/AbstractCauldronBlock/FLOOR_LEVEL +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151937_ net/minecraft/world/level/block/AbstractCauldronBlock/SHAPE +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151938_ net/minecraft/world/level/block/AbstractCauldronBlock/SIDE_THICKNESS +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151939_ net/minecraft/world/level/block/AbstractCauldronBlock/LEG_WIDTH +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151940_ net/minecraft/world/level/block/AbstractCauldronBlock/LEG_HEIGHT +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151941_ net/minecraft/world/level/block/AbstractCauldronBlock/LEG_DEPTH +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151942_ net/minecraft/world/level/block/AbstractCauldronBlock/INSIDE +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151943_ net/minecraft/world/level/block/AbstractCauldronBlock/interactions +FD: net/minecraft/world/level/block/AbstractChestBlock/f_48675_ net/minecraft/world/level/block/AbstractChestBlock/blockEntityType +FD: net/minecraft/world/level/block/AbstractFurnaceBlock/f_48683_ net/minecraft/world/level/block/AbstractFurnaceBlock/FACING +FD: net/minecraft/world/level/block/AbstractFurnaceBlock/f_48684_ net/minecraft/world/level/block/AbstractFurnaceBlock/LIT +FD: net/minecraft/world/level/block/AbstractSkullBlock/f_48743_ net/minecraft/world/level/block/AbstractSkullBlock/type +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152005_ net/minecraft/world/level/block/AmethystClusterBlock/WATERLOGGED +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152006_ net/minecraft/world/level/block/AmethystClusterBlock/FACING +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152007_ net/minecraft/world/level/block/AmethystClusterBlock/northAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152008_ net/minecraft/world/level/block/AmethystClusterBlock/southAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152009_ net/minecraft/world/level/block/AmethystClusterBlock/eastAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152010_ net/minecraft/world/level/block/AmethystClusterBlock/westAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152011_ net/minecraft/world/level/block/AmethystClusterBlock/upAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152012_ net/minecraft/world/level/block/AmethystClusterBlock/downAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock$1/f_152048_ net/minecraft/world/level/block/AmethystClusterBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/AnvilBlock/f_152050_ net/minecraft/world/level/block/AnvilBlock/FALL_DAMAGE_PER_DISTANCE +FD: net/minecraft/world/level/block/AnvilBlock/f_152051_ net/minecraft/world/level/block/AnvilBlock/FALL_DAMAGE_MAX +FD: net/minecraft/world/level/block/AnvilBlock/f_48764_ net/minecraft/world/level/block/AnvilBlock/FACING +FD: net/minecraft/world/level/block/AnvilBlock/f_48765_ net/minecraft/world/level/block/AnvilBlock/BASE +FD: net/minecraft/world/level/block/AnvilBlock/f_48766_ net/minecraft/world/level/block/AnvilBlock/X_LEG1 +FD: net/minecraft/world/level/block/AnvilBlock/f_48767_ net/minecraft/world/level/block/AnvilBlock/X_LEG2 +FD: net/minecraft/world/level/block/AnvilBlock/f_48768_ net/minecraft/world/level/block/AnvilBlock/X_TOP +FD: net/minecraft/world/level/block/AnvilBlock/f_48769_ net/minecraft/world/level/block/AnvilBlock/Z_LEG1 +FD: net/minecraft/world/level/block/AnvilBlock/f_48770_ net/minecraft/world/level/block/AnvilBlock/Z_LEG2 +FD: net/minecraft/world/level/block/AnvilBlock/f_48771_ net/minecraft/world/level/block/AnvilBlock/Z_TOP +FD: net/minecraft/world/level/block/AnvilBlock/f_48772_ net/minecraft/world/level/block/AnvilBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/AnvilBlock/f_48773_ net/minecraft/world/level/block/AnvilBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/AnvilBlock/f_48774_ net/minecraft/world/level/block/AnvilBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/AttachedStemBlock/f_152057_ net/minecraft/world/level/block/AttachedStemBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/AttachedStemBlock/f_152058_ net/minecraft/world/level/block/AttachedStemBlock/seedSupplier +FD: net/minecraft/world/level/block/AttachedStemBlock/f_48830_ net/minecraft/world/level/block/AttachedStemBlock/FACING +FD: net/minecraft/world/level/block/AttachedStemBlock/f_48831_ net/minecraft/world/level/block/AttachedStemBlock/fruit +FD: net/minecraft/world/level/block/AttachedStemBlock/f_48832_ net/minecraft/world/level/block/AttachedStemBlock/AABBS +FD: net/minecraft/world/level/block/AzaleaBlock/f_152063_ net/minecraft/world/level/block/AzaleaBlock/TREE_GROWER +FD: net/minecraft/world/level/block/AzaleaBlock/f_152064_ net/minecraft/world/level/block/AzaleaBlock/SHAPE +FD: net/minecraft/world/level/block/BambooSaplingBlock/f_152100_ net/minecraft/world/level/block/BambooSaplingBlock/SAPLING_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooSaplingBlock/f_48954_ net/minecraft/world/level/block/BambooSaplingBlock/SAPLING_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260434_ net/minecraft/world/level/block/BambooStalkBlock/SMALL_LEAVES_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260479_ net/minecraft/world/level/block/BambooStalkBlock/SMALL_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260493_ net/minecraft/world/level/block/BambooStalkBlock/LARGE_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260497_ net/minecraft/world/level/block/BambooStalkBlock/AGE_THICK_BAMBOO +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260505_ net/minecraft/world/level/block/BambooStalkBlock/COLLISION_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260513_ net/minecraft/world/level/block/BambooStalkBlock/STAGE_DONE_GROWING +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260569_ net/minecraft/world/level/block/BambooStalkBlock/AGE_THIN_BAMBOO +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260603_ net/minecraft/world/level/block/BambooStalkBlock/AGE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260619_ net/minecraft/world/level/block/BambooStalkBlock/COLLISION_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260621_ net/minecraft/world/level/block/BambooStalkBlock/STAGE_GROWING +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260643_ net/minecraft/world/level/block/BambooStalkBlock/LARGE_LEAVES_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260667_ net/minecraft/world/level/block/BambooStalkBlock/MAX_HEIGHT +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260694_ net/minecraft/world/level/block/BambooStalkBlock/STAGE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260716_ net/minecraft/world/level/block/BambooStalkBlock/LEAVES +FD: net/minecraft/world/level/block/BannerBlock/f_49007_ net/minecraft/world/level/block/BannerBlock/ROTATION +FD: net/minecraft/world/level/block/BannerBlock/f_49008_ net/minecraft/world/level/block/BannerBlock/BY_COLOR +FD: net/minecraft/world/level/block/BannerBlock/f_49009_ net/minecraft/world/level/block/BannerBlock/SHAPE +FD: net/minecraft/world/level/block/BarrelBlock/f_49042_ net/minecraft/world/level/block/BarrelBlock/FACING +FD: net/minecraft/world/level/block/BarrelBlock/f_49043_ net/minecraft/world/level/block/BarrelBlock/OPEN +FD: net/minecraft/world/level/block/BaseCoralFanBlock/f_49103_ net/minecraft/world/level/block/BaseCoralFanBlock/AABB +FD: net/minecraft/world/level/block/BaseCoralPlantBlock/f_152104_ net/minecraft/world/level/block/BaseCoralPlantBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/BaseCoralPlantBlock/f_49148_ net/minecraft/world/level/block/BaseCoralPlantBlock/SHAPE +FD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/f_49157_ net/minecraft/world/level/block/BaseCoralPlantTypeBlock/AABB +FD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/f_49158_ net/minecraft/world/level/block/BaseCoralPlantTypeBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BaseCoralWallFanBlock/f_49192_ net/minecraft/world/level/block/BaseCoralWallFanBlock/FACING +FD: net/minecraft/world/level/block/BaseCoralWallFanBlock/f_49193_ net/minecraft/world/level/block/BaseCoralWallFanBlock/SHAPES +FD: net/minecraft/world/level/block/BaseFireBlock/f_152136_ net/minecraft/world/level/block/BaseFireBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/BaseFireBlock/f_152137_ net/minecraft/world/level/block/BaseFireBlock/SECONDS_ON_FIRE +FD: net/minecraft/world/level/block/BaseFireBlock/f_49237_ net/minecraft/world/level/block/BaseFireBlock/DOWN_AABB +FD: net/minecraft/world/level/block/BaseFireBlock/f_49238_ net/minecraft/world/level/block/BaseFireBlock/fireDamage +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_271167_ net/minecraft/world/level/block/BasePressurePlateBlock/type +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_49285_ net/minecraft/world/level/block/BasePressurePlateBlock/PRESSED_AABB +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_49286_ net/minecraft/world/level/block/BasePressurePlateBlock/AABB +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_49287_ net/minecraft/world/level/block/BasePressurePlateBlock/TOUCH_AABB +FD: net/minecraft/world/level/block/BaseRailBlock/f_152149_ net/minecraft/world/level/block/BaseRailBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BaseRailBlock/f_49355_ net/minecraft/world/level/block/BaseRailBlock/FLAT_AABB +FD: net/minecraft/world/level/block/BaseRailBlock/f_49356_ net/minecraft/world/level/block/BaseRailBlock/HALF_BLOCK_AABB +FD: net/minecraft/world/level/block/BaseRailBlock/f_49357_ net/minecraft/world/level/block/BaseRailBlock/isStraight +FD: net/minecraft/world/level/block/BaseRailBlock$1/f_49418_ net/minecraft/world/level/block/BaseRailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/BedBlock/f_152166_ net/minecraft/world/level/block/BedBlock/HEIGHT +FD: net/minecraft/world/level/block/BedBlock/f_152167_ net/minecraft/world/level/block/BedBlock/LEG_WIDTH +FD: net/minecraft/world/level/block/BedBlock/f_49440_ net/minecraft/world/level/block/BedBlock/PART +FD: net/minecraft/world/level/block/BedBlock/f_49441_ net/minecraft/world/level/block/BedBlock/OCCUPIED +FD: net/minecraft/world/level/block/BedBlock/f_49442_ net/minecraft/world/level/block/BedBlock/BASE +FD: net/minecraft/world/level/block/BedBlock/f_49443_ net/minecraft/world/level/block/BedBlock/LEG_NORTH_WEST +FD: net/minecraft/world/level/block/BedBlock/f_49444_ net/minecraft/world/level/block/BedBlock/LEG_SOUTH_WEST +FD: net/minecraft/world/level/block/BedBlock/f_49445_ net/minecraft/world/level/block/BedBlock/LEG_NORTH_EAST +FD: net/minecraft/world/level/block/BedBlock/f_49446_ net/minecraft/world/level/block/BedBlock/LEG_SOUTH_EAST +FD: net/minecraft/world/level/block/BedBlock/f_49447_ net/minecraft/world/level/block/BedBlock/NORTH_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49448_ net/minecraft/world/level/block/BedBlock/SOUTH_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49449_ net/minecraft/world/level/block/BedBlock/WEST_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49450_ net/minecraft/world/level/block/BedBlock/EAST_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49451_ net/minecraft/world/level/block/BedBlock/color +FD: net/minecraft/world/level/block/BedBlock$1/f_49561_ net/minecraft/world/level/block/BedBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/BeehiveBlock/f_152177_ net/minecraft/world/level/block/BeehiveBlock/MAX_HONEY_LEVELS +FD: net/minecraft/world/level/block/BeehiveBlock/f_152178_ net/minecraft/world/level/block/BeehiveBlock/SHEARED_HONEYCOMB_COUNT +FD: net/minecraft/world/level/block/BeehiveBlock/f_49563_ net/minecraft/world/level/block/BeehiveBlock/FACING +FD: net/minecraft/world/level/block/BeehiveBlock/f_49564_ net/minecraft/world/level/block/BeehiveBlock/HONEY_LEVEL +FD: net/minecraft/world/level/block/BeetrootBlock/f_152186_ net/minecraft/world/level/block/BeetrootBlock/MAX_AGE +FD: net/minecraft/world/level/block/BeetrootBlock/f_49657_ net/minecraft/world/level/block/BeetrootBlock/AGE +FD: net/minecraft/world/level/block/BeetrootBlock/f_49658_ net/minecraft/world/level/block/BeetrootBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/BellBlock/f_152187_ net/minecraft/world/level/block/BellBlock/EVENT_BELL_RING +FD: net/minecraft/world/level/block/BellBlock/f_49679_ net/minecraft/world/level/block/BellBlock/FACING +FD: net/minecraft/world/level/block/BellBlock/f_49680_ net/minecraft/world/level/block/BellBlock/ATTACHMENT +FD: net/minecraft/world/level/block/BellBlock/f_49681_ net/minecraft/world/level/block/BellBlock/POWERED +FD: net/minecraft/world/level/block/BellBlock/f_49682_ net/minecraft/world/level/block/BellBlock/NORTH_SOUTH_FLOOR_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49683_ net/minecraft/world/level/block/BellBlock/EAST_WEST_FLOOR_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49684_ net/minecraft/world/level/block/BellBlock/BELL_TOP_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49685_ net/minecraft/world/level/block/BellBlock/BELL_BOTTOM_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49686_ net/minecraft/world/level/block/BellBlock/BELL_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49687_ net/minecraft/world/level/block/BellBlock/NORTH_SOUTH_BETWEEN +FD: net/minecraft/world/level/block/BellBlock/f_49688_ net/minecraft/world/level/block/BellBlock/EAST_WEST_BETWEEN +FD: net/minecraft/world/level/block/BellBlock/f_49689_ net/minecraft/world/level/block/BellBlock/TO_WEST +FD: net/minecraft/world/level/block/BellBlock/f_49690_ net/minecraft/world/level/block/BellBlock/TO_EAST +FD: net/minecraft/world/level/block/BellBlock/f_49691_ net/minecraft/world/level/block/BellBlock/TO_NORTH +FD: net/minecraft/world/level/block/BellBlock/f_49692_ net/minecraft/world/level/block/BellBlock/TO_SOUTH +FD: net/minecraft/world/level/block/BellBlock/f_49693_ net/minecraft/world/level/block/BellBlock/CEILING_SHAPE +FD: net/minecraft/world/level/block/BellBlock$1/f_49770_ net/minecraft/world/level/block/BellBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$BellAttachType +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152200_ net/minecraft/world/level/block/BigDripleafBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152201_ net/minecraft/world/level/block/BigDripleafBlock/TILT +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152202_ net/minecraft/world/level/block/BigDripleafBlock/NO_TICK +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152203_ net/minecraft/world/level/block/BigDripleafBlock/DELAY_UNTIL_NEXT_TILT_STATE +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152204_ net/minecraft/world/level/block/BigDripleafBlock/MAX_GEN_HEIGHT +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152205_ net/minecraft/world/level/block/BigDripleafBlock/STEM_WIDTH +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152206_ net/minecraft/world/level/block/BigDripleafBlock/ENTITY_DETECTION_MIN_Y +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152207_ net/minecraft/world/level/block/BigDripleafBlock/LOWEST_LEAF_TOP +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152208_ net/minecraft/world/level/block/BigDripleafBlock/LEAF_SHAPES +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152209_ net/minecraft/world/level/block/BigDripleafBlock/STEM_SLICER +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152210_ net/minecraft/world/level/block/BigDripleafBlock/STEM_SHAPES +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152211_ net/minecraft/world/level/block/BigDripleafBlock/shapesCache +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152321_ net/minecraft/world/level/block/BigDripleafStemBlock/NORTH_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152322_ net/minecraft/world/level/block/BigDripleafStemBlock/SOUTH_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152323_ net/minecraft/world/level/block/BigDripleafStemBlock/EAST_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152324_ net/minecraft/world/level/block/BigDripleafStemBlock/WEST_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152325_ net/minecraft/world/level/block/BigDripleafStemBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152326_ net/minecraft/world/level/block/BigDripleafStemBlock/STEM_WIDTH +FD: net/minecraft/world/level/block/BigDripleafStemBlock$1/f_152379_ net/minecraft/world/level/block/BigDripleafStemBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/Block/f_152388_ net/minecraft/world/level/block/Block/UPDATE_ALL_IMMEDIATE +FD: net/minecraft/world/level/block/Block/f_152389_ net/minecraft/world/level/block/Block/INDESTRUCTIBLE +FD: net/minecraft/world/level/block/Block/f_152390_ net/minecraft/world/level/block/Block/INSTANT +FD: net/minecraft/world/level/block/Block/f_152391_ net/minecraft/world/level/block/Block/UPDATE_LIMIT +FD: net/minecraft/world/level/block/Block/f_152392_ net/minecraft/world/level/block/Block/CACHE_SIZE +FD: net/minecraft/world/level/block/Block/f_152393_ net/minecraft/world/level/block/Block/UPDATE_NEIGHBORS +FD: net/minecraft/world/level/block/Block/f_152394_ net/minecraft/world/level/block/Block/UPDATE_CLIENTS +FD: net/minecraft/world/level/block/Block/f_152395_ net/minecraft/world/level/block/Block/UPDATE_INVISIBLE +FD: net/minecraft/world/level/block/Block/f_152396_ net/minecraft/world/level/block/Block/UPDATE_IMMEDIATE +FD: net/minecraft/world/level/block/Block/f_152397_ net/minecraft/world/level/block/Block/UPDATE_KNOWN_SHAPE +FD: net/minecraft/world/level/block/Block/f_152398_ net/minecraft/world/level/block/Block/UPDATE_SUPPRESS_DROPS +FD: net/minecraft/world/level/block/Block/f_152399_ net/minecraft/world/level/block/Block/UPDATE_MOVE_BY_PISTON +FD: net/minecraft/world/level/block/Block/f_152401_ net/minecraft/world/level/block/Block/UPDATE_NONE +FD: net/minecraft/world/level/block/Block/f_152402_ net/minecraft/world/level/block/Block/UPDATE_ALL +FD: net/minecraft/world/level/block/Block/f_204296_ net/minecraft/world/level/block/Block/builtInRegistryHolder +FD: net/minecraft/world/level/block/Block/f_49785_ net/minecraft/world/level/block/Block/SHAPE_FULL_BLOCK_CACHE +FD: net/minecraft/world/level/block/Block/f_49786_ net/minecraft/world/level/block/Block/defaultBlockState +FD: net/minecraft/world/level/block/Block/f_49787_ net/minecraft/world/level/block/Block/descriptionId +FD: net/minecraft/world/level/block/Block/f_49788_ net/minecraft/world/level/block/Block/item +FD: net/minecraft/world/level/block/Block/f_49789_ net/minecraft/world/level/block/Block/OCCLUSION_CACHE +FD: net/minecraft/world/level/block/Block/f_49790_ net/minecraft/world/level/block/Block/LOGGER +FD: net/minecraft/world/level/block/Block/f_49791_ net/minecraft/world/level/block/Block/BLOCK_STATE_REGISTRY +FD: net/minecraft/world/level/block/Block/f_49792_ net/minecraft/world/level/block/Block/stateDefinition +FD: net/minecraft/world/level/block/Block$BlockStatePairKey/f_49980_ net/minecraft/world/level/block/Block$BlockStatePairKey/first +FD: net/minecraft/world/level/block/Block$BlockStatePairKey/f_49981_ net/minecraft/world/level/block/Block$BlockStatePairKey/second +FD: net/minecraft/world/level/block/Block$BlockStatePairKey/f_49982_ net/minecraft/world/level/block/Block$BlockStatePairKey/direction +FD: net/minecraft/world/level/block/Blocks/f_152467_ net/minecraft/world/level/block/Blocks/DEEPSLATE_GOLD_ORE +FD: net/minecraft/world/level/block/Blocks/f_152468_ net/minecraft/world/level/block/Blocks/DEEPSLATE_IRON_ORE +FD: net/minecraft/world/level/block/Blocks/f_152469_ net/minecraft/world/level/block/Blocks/DEEPSLATE_COAL_ORE +FD: net/minecraft/world/level/block/Blocks/f_152470_ net/minecraft/world/level/block/Blocks/AZALEA_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_152471_ net/minecraft/world/level/block/Blocks/FLOWERING_AZALEA_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_152472_ net/minecraft/world/level/block/Blocks/DEEPSLATE_LAPIS_ORE +FD: net/minecraft/world/level/block/Blocks/f_152473_ net/minecraft/world/level/block/Blocks/DEEPSLATE_REDSTONE_ORE +FD: net/minecraft/world/level/block/Blocks/f_152474_ net/minecraft/world/level/block/Blocks/DEEPSLATE_DIAMOND_ORE +FD: net/minecraft/world/level/block/Blocks/f_152475_ net/minecraft/world/level/block/Blocks/GLOW_LICHEN +FD: net/minecraft/world/level/block/Blocks/f_152476_ net/minecraft/world/level/block/Blocks/WATER_CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_152477_ net/minecraft/world/level/block/Blocks/LAVA_CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_152478_ net/minecraft/world/level/block/Blocks/POWDER_SNOW_CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_152479_ net/minecraft/world/level/block/Blocks/DEEPSLATE_EMERALD_ORE +FD: net/minecraft/world/level/block/Blocks/f_152480_ net/minecraft/world/level/block/Blocks/LIGHT +FD: net/minecraft/world/level/block/Blocks/f_152481_ net/minecraft/world/level/block/Blocks/DIRT_PATH +FD: net/minecraft/world/level/block/Blocks/f_152482_ net/minecraft/world/level/block/Blocks/CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152483_ net/minecraft/world/level/block/Blocks/WHITE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152484_ net/minecraft/world/level/block/Blocks/ORANGE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152485_ net/minecraft/world/level/block/Blocks/BLUE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152486_ net/minecraft/world/level/block/Blocks/BROWN_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152487_ net/minecraft/world/level/block/Blocks/GREEN_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152488_ net/minecraft/world/level/block/Blocks/RED_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152489_ net/minecraft/world/level/block/Blocks/BLACK_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152490_ net/minecraft/world/level/block/Blocks/AMETHYST_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152491_ net/minecraft/world/level/block/Blocks/BUDDING_AMETHYST +FD: net/minecraft/world/level/block/Blocks/f_152492_ net/minecraft/world/level/block/Blocks/AMETHYST_CLUSTER +FD: net/minecraft/world/level/block/Blocks/f_152493_ net/minecraft/world/level/block/Blocks/LARGE_AMETHYST_BUD +FD: net/minecraft/world/level/block/Blocks/f_152494_ net/minecraft/world/level/block/Blocks/MEDIUM_AMETHYST_BUD +FD: net/minecraft/world/level/block/Blocks/f_152495_ net/minecraft/world/level/block/Blocks/SMALL_AMETHYST_BUD +FD: net/minecraft/world/level/block/Blocks/f_152496_ net/minecraft/world/level/block/Blocks/TUFF +FD: net/minecraft/world/level/block/Blocks/f_152497_ net/minecraft/world/level/block/Blocks/CALCITE +FD: net/minecraft/world/level/block/Blocks/f_152498_ net/minecraft/world/level/block/Blocks/TINTED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_152499_ net/minecraft/world/level/block/Blocks/POWDER_SNOW +FD: net/minecraft/world/level/block/Blocks/f_152500_ net/minecraft/world/level/block/Blocks/SCULK_SENSOR +FD: net/minecraft/world/level/block/Blocks/f_152501_ net/minecraft/world/level/block/Blocks/OXIDIZED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152502_ net/minecraft/world/level/block/Blocks/WEATHERED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152503_ net/minecraft/world/level/block/Blocks/EXPOSED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152504_ net/minecraft/world/level/block/Blocks/COPPER_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152505_ net/minecraft/world/level/block/Blocks/COPPER_ORE +FD: net/minecraft/world/level/block/Blocks/f_152506_ net/minecraft/world/level/block/Blocks/DEEPSLATE_COPPER_ORE +FD: net/minecraft/world/level/block/Blocks/f_152507_ net/minecraft/world/level/block/Blocks/OXIDIZED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152508_ net/minecraft/world/level/block/Blocks/WEATHERED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152509_ net/minecraft/world/level/block/Blocks/EXPOSED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152510_ net/minecraft/world/level/block/Blocks/CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152511_ net/minecraft/world/level/block/Blocks/MAGENTA_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152512_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152513_ net/minecraft/world/level/block/Blocks/YELLOW_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152514_ net/minecraft/world/level/block/Blocks/LIME_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152515_ net/minecraft/world/level/block/Blocks/PINK_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152516_ net/minecraft/world/level/block/Blocks/GRAY_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152517_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152518_ net/minecraft/world/level/block/Blocks/CYAN_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152519_ net/minecraft/world/level/block/Blocks/PURPLE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152520_ net/minecraft/world/level/block/Blocks/BLUE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152521_ net/minecraft/world/level/block/Blocks/BROWN_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152522_ net/minecraft/world/level/block/Blocks/GREEN_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152523_ net/minecraft/world/level/block/Blocks/RED_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152524_ net/minecraft/world/level/block/Blocks/BLACK_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152525_ net/minecraft/world/level/block/Blocks/CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152526_ net/minecraft/world/level/block/Blocks/WHITE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152527_ net/minecraft/world/level/block/Blocks/ORANGE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152528_ net/minecraft/world/level/block/Blocks/MAGENTA_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152529_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152530_ net/minecraft/world/level/block/Blocks/YELLOW_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152531_ net/minecraft/world/level/block/Blocks/LIME_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152532_ net/minecraft/world/level/block/Blocks/PINK_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152533_ net/minecraft/world/level/block/Blocks/GRAY_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152534_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152535_ net/minecraft/world/level/block/Blocks/CYAN_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152536_ net/minecraft/world/level/block/Blocks/PURPLE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152537_ net/minecraft/world/level/block/Blocks/DRIPSTONE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152538_ net/minecraft/world/level/block/Blocks/CAVE_VINES +FD: net/minecraft/world/level/block/Blocks/f_152539_ net/minecraft/world/level/block/Blocks/CAVE_VINES_PLANT +FD: net/minecraft/world/level/block/Blocks/f_152540_ net/minecraft/world/level/block/Blocks/SPORE_BLOSSOM +FD: net/minecraft/world/level/block/Blocks/f_152541_ net/minecraft/world/level/block/Blocks/AZALEA +FD: net/minecraft/world/level/block/Blocks/f_152542_ net/minecraft/world/level/block/Blocks/FLOWERING_AZALEA +FD: net/minecraft/world/level/block/Blocks/f_152543_ net/minecraft/world/level/block/Blocks/MOSS_CARPET +FD: net/minecraft/world/level/block/Blocks/f_152544_ net/minecraft/world/level/block/Blocks/MOSS_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152545_ net/minecraft/world/level/block/Blocks/BIG_DRIPLEAF +FD: net/minecraft/world/level/block/Blocks/f_152546_ net/minecraft/world/level/block/Blocks/BIG_DRIPLEAF_STEM +FD: net/minecraft/world/level/block/Blocks/f_152547_ net/minecraft/world/level/block/Blocks/SMALL_DRIPLEAF +FD: net/minecraft/world/level/block/Blocks/f_152548_ net/minecraft/world/level/block/Blocks/HANGING_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_152549_ net/minecraft/world/level/block/Blocks/ROOTED_DIRT +FD: net/minecraft/world/level/block/Blocks/f_152550_ net/minecraft/world/level/block/Blocks/DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152551_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152552_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152553_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152554_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE_WALL +FD: net/minecraft/world/level/block/Blocks/f_152555_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152556_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152557_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152558_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE_WALL +FD: net/minecraft/world/level/block/Blocks/f_152559_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILES +FD: net/minecraft/world/level/block/Blocks/f_152560_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152561_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152562_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILE_WALL +FD: net/minecraft/world/level/block/Blocks/f_152563_ net/minecraft/world/level/block/Blocks/OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152564_ net/minecraft/world/level/block/Blocks/WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152565_ net/minecraft/world/level/block/Blocks/EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152566_ net/minecraft/world/level/block/Blocks/CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152567_ net/minecraft/world/level/block/Blocks/OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152568_ net/minecraft/world/level/block/Blocks/WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152569_ net/minecraft/world/level/block/Blocks/EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152570_ net/minecraft/world/level/block/Blocks/CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152571_ net/minecraft/world/level/block/Blocks/WAXED_COPPER_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152572_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152573_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152574_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152575_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152576_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152577_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152578_ net/minecraft/world/level/block/Blocks/WAXED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152579_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152580_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152581_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152582_ net/minecraft/world/level/block/Blocks/WAXED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152583_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152584_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152585_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152586_ net/minecraft/world/level/block/Blocks/WAXED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152587_ net/minecraft/world/level/block/Blocks/LIGHTNING_ROD +FD: net/minecraft/world/level/block/Blocks/f_152588_ net/minecraft/world/level/block/Blocks/POINTED_DRIPSTONE +FD: net/minecraft/world/level/block/Blocks/f_152589_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_152590_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152591_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152592_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_152593_ net/minecraft/world/level/block/Blocks/CHISELED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152594_ net/minecraft/world/level/block/Blocks/CRACKED_DEEPSLATE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_152595_ net/minecraft/world/level/block/Blocks/CRACKED_DEEPSLATE_TILES +FD: net/minecraft/world/level/block/Blocks/f_152596_ net/minecraft/world/level/block/Blocks/INFESTED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152597_ net/minecraft/world/level/block/Blocks/SMOOTH_BASALT +FD: net/minecraft/world/level/block/Blocks/f_152598_ net/minecraft/world/level/block/Blocks/RAW_IRON_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152599_ net/minecraft/world/level/block/Blocks/RAW_COPPER_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152600_ net/minecraft/world/level/block/Blocks/RAW_GOLD_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152601_ net/minecraft/world/level/block/Blocks/POTTED_AZALEA +FD: net/minecraft/world/level/block/Blocks/f_152602_ net/minecraft/world/level/block/Blocks/POTTED_FLOWERING_AZALEA +FD: net/minecraft/world/level/block/Blocks/f_220831_ net/minecraft/world/level/block/Blocks/MANGROVE_PROPAGULE +FD: net/minecraft/world/level/block/Blocks/f_220832_ net/minecraft/world/level/block/Blocks/MANGROVE_LOG +FD: net/minecraft/world/level/block/Blocks/f_220833_ net/minecraft/world/level/block/Blocks/MANGROVE_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_220834_ net/minecraft/world/level/block/Blocks/MUDDY_MANGROVE_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_220835_ net/minecraft/world/level/block/Blocks/STRIPPED_MANGROVE_LOG +FD: net/minecraft/world/level/block/Blocks/f_220836_ net/minecraft/world/level/block/Blocks/MANGROVE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_220837_ net/minecraft/world/level/block/Blocks/STRIPPED_MANGROVE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_220838_ net/minecraft/world/level/block/Blocks/MANGROVE_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_220839_ net/minecraft/world/level/block/Blocks/MANGROVE_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_220840_ net/minecraft/world/level/block/Blocks/MANGROVE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_220841_ net/minecraft/world/level/block/Blocks/MANGROVE_SIGN +FD: net/minecraft/world/level/block/Blocks/f_220842_ net/minecraft/world/level/block/Blocks/MANGROVE_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_220843_ net/minecraft/world/level/block/Blocks/PACKED_MUD +FD: net/minecraft/world/level/block/Blocks/f_220844_ net/minecraft/world/level/block/Blocks/MUD_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_220845_ net/minecraft/world/level/block/Blocks/MUD_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_220846_ net/minecraft/world/level/block/Blocks/MANGROVE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_220847_ net/minecraft/world/level/block/Blocks/POTTED_MANGROVE_PROPAGULE +FD: net/minecraft/world/level/block/Blocks/f_220848_ net/minecraft/world/level/block/Blocks/MANGROVE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_220849_ net/minecraft/world/level/block/Blocks/MUD_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_220850_ net/minecraft/world/level/block/Blocks/MANGROVE_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_220851_ net/minecraft/world/level/block/Blocks/MANGROVE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_220852_ net/minecraft/world/level/block/Blocks/MANGROVE_FENCE +FD: net/minecraft/world/level/block/Blocks/f_220853_ net/minecraft/world/level/block/Blocks/MANGROVE_DOOR +FD: net/minecraft/world/level/block/Blocks/f_220854_ net/minecraft/world/level/block/Blocks/MUD_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_220855_ net/minecraft/world/level/block/Blocks/SCULK +FD: net/minecraft/world/level/block/Blocks/f_220856_ net/minecraft/world/level/block/Blocks/SCULK_VEIN +FD: net/minecraft/world/level/block/Blocks/f_220857_ net/minecraft/world/level/block/Blocks/SCULK_CATALYST +FD: net/minecraft/world/level/block/Blocks/f_220858_ net/minecraft/world/level/block/Blocks/SCULK_SHRIEKER +FD: net/minecraft/world/level/block/Blocks/f_220859_ net/minecraft/world/level/block/Blocks/OCHRE_FROGLIGHT +FD: net/minecraft/world/level/block/Blocks/f_220860_ net/minecraft/world/level/block/Blocks/VERDANT_FROGLIGHT +FD: net/minecraft/world/level/block/Blocks/f_220861_ net/minecraft/world/level/block/Blocks/PEARLESCENT_FROGLIGHT +FD: net/minecraft/world/level/block/Blocks/f_220862_ net/minecraft/world/level/block/Blocks/FROGSPAWN +FD: net/minecraft/world/level/block/Blocks/f_220863_ net/minecraft/world/level/block/Blocks/REINFORCED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_220864_ net/minecraft/world/level/block/Blocks/MUD +FD: net/minecraft/world/level/block/Blocks/f_220865_ net/minecraft/world/level/block/Blocks/MANGROVE_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_243716_ net/minecraft/world/level/block/Blocks/ACACIA_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243755_ net/minecraft/world/level/block/Blocks/BAMBOO_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_243773_ net/minecraft/world/level/block/Blocks/ACACIA_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243890_ net/minecraft/world/level/block/Blocks/BIRCH_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243895_ net/minecraft/world/level/block/Blocks/SPRUCE_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243897_ net/minecraft/world/level/block/Blocks/JUNGLE_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243960_ net/minecraft/world/level/block/Blocks/DARK_OAK_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243998_ net/minecraft/world/level/block/Blocks/DARK_OAK_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244004_ net/minecraft/world/level/block/Blocks/BAMBOO_SLAB +FD: net/minecraft/world/level/block/Blocks/f_244091_ net/minecraft/world/level/block/Blocks/BAMBOO_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244093_ net/minecraft/world/level/block/Blocks/OAK_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244147_ net/minecraft/world/level/block/Blocks/CRIMSON_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244183_ net/minecraft/world/level/block/Blocks/BAMBOO_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_244193_ net/minecraft/world/level/block/Blocks/BAMBOO_MOSAIC_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_244230_ net/minecraft/world/level/block/Blocks/BAMBOO_MOSAIC_SLAB +FD: net/minecraft/world/level/block/Blocks/f_244241_ net/minecraft/world/level/block/Blocks/WARPED_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244263_ net/minecraft/world/level/block/Blocks/JUNGLE_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244281_ net/minecraft/world/level/block/Blocks/CRIMSON_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244296_ net/minecraft/world/level/block/Blocks/BIRCH_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244299_ net/minecraft/world/level/block/Blocks/CHISELED_BOOKSHELF +FD: net/minecraft/world/level/block/Blocks/f_244313_ net/minecraft/world/level/block/Blocks/BAMBOO_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_244319_ net/minecraft/world/level/block/Blocks/OAK_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244385_ net/minecraft/world/level/block/Blocks/MANGROVE_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244396_ net/minecraft/world/level/block/Blocks/WARPED_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244433_ net/minecraft/world/level/block/Blocks/BAMBOO_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244462_ net/minecraft/world/level/block/Blocks/BAMBOO_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244477_ net/minecraft/world/level/block/Blocks/BAMBOO_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_244485_ net/minecraft/world/level/block/Blocks/MANGROVE_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244489_ net/minecraft/world/level/block/Blocks/BAMBOO_MOSAIC +FD: net/minecraft/world/level/block/Blocks/f_244549_ net/minecraft/world/level/block/Blocks/BAMBOO_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_244608_ net/minecraft/world/level/block/Blocks/BAMBOO_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244625_ net/minecraft/world/level/block/Blocks/BAMBOO_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_244633_ net/minecraft/world/level/block/Blocks/SPRUCE_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244641_ net/minecraft/world/level/block/Blocks/BAMBOO_FENCE +FD: net/minecraft/world/level/block/Blocks/f_244648_ net/minecraft/world/level/block/Blocks/BAMBOO_DOOR +FD: net/minecraft/world/level/block/Blocks/f_256740_ net/minecraft/world/level/block/Blocks/STRIPPED_BAMBOO_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_256831_ net/minecraft/world/level/block/Blocks/BAMBOO_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_260585_ net/minecraft/world/level/block/Blocks/PIGLIN_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_260630_ net/minecraft/world/level/block/Blocks/PIGLIN_HEAD +FD: net/minecraft/world/level/block/Blocks/f_271106_ net/minecraft/world/level/block/Blocks/POTTED_CHERRY_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_271107_ net/minecraft/world/level/block/Blocks/CHERRY_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_271115_ net/minecraft/world/level/block/Blocks/CHERRY_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_271116_ net/minecraft/world/level/block/Blocks/CHERRY_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_271145_ net/minecraft/world/level/block/Blocks/STRIPPED_CHERRY_WOOD +FD: net/minecraft/world/level/block/Blocks/f_271169_ net/minecraft/world/level/block/Blocks/CHERRY_DOOR +FD: net/minecraft/world/level/block/Blocks/f_271170_ net/minecraft/world/level/block/Blocks/CHERRY_LOG +FD: net/minecraft/world/level/block/Blocks/f_271197_ net/minecraft/world/level/block/Blocks/DECORATED_POT +FD: net/minecraft/world/level/block/Blocks/f_271206_ net/minecraft/world/level/block/Blocks/CHERRY_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_271219_ net/minecraft/world/level/block/Blocks/CHERRY_FENCE +FD: net/minecraft/world/level/block/Blocks/f_271227_ net/minecraft/world/level/block/Blocks/CHERRY_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_271274_ net/minecraft/world/level/block/Blocks/CHERRY_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_271301_ net/minecraft/world/level/block/Blocks/CHERRY_SLAB +FD: net/minecraft/world/level/block/Blocks/f_271304_ net/minecraft/world/level/block/Blocks/CHERRY_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_271326_ net/minecraft/world/level/block/Blocks/STRIPPED_CHERRY_LOG +FD: net/minecraft/world/level/block/Blocks/f_271329_ net/minecraft/world/level/block/Blocks/TORCHFLOWER +FD: net/minecraft/world/level/block/Blocks/f_271334_ net/minecraft/world/level/block/Blocks/CHERRY_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_271348_ net/minecraft/world/level/block/Blocks/CHERRY_WOOD +FD: net/minecraft/world/level/block/Blocks/f_271350_ net/minecraft/world/level/block/Blocks/CHERRY_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_271396_ net/minecraft/world/level/block/Blocks/CHERRY_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_271410_ net/minecraft/world/level/block/Blocks/TORCHFLOWER_CROP +FD: net/minecraft/world/level/block/Blocks/f_271427_ net/minecraft/world/level/block/Blocks/CHERRY_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_271439_ net/minecraft/world/level/block/Blocks/SUSPICIOUS_SAND +FD: net/minecraft/world/level/block/Blocks/f_271445_ net/minecraft/world/level/block/Blocks/PINK_PETALS +FD: net/minecraft/world/level/block/Blocks/f_271468_ net/minecraft/world/level/block/Blocks/POTTED_TORCHFLOWER +FD: net/minecraft/world/level/block/Blocks/f_271516_ net/minecraft/world/level/block/Blocks/CHERRY_SIGN +FD: net/minecraft/world/level/block/Blocks/f_276445_ net/minecraft/world/level/block/Blocks/SUSPICIOUS_GRAVEL +FD: net/minecraft/world/level/block/Blocks/f_276595_ net/minecraft/world/level/block/Blocks/CALIBRATED_SCULK_SENSOR +FD: net/minecraft/world/level/block/Blocks/f_276643_ net/minecraft/world/level/block/Blocks/SNIFFER_EGG +FD: net/minecraft/world/level/block/Blocks/f_276665_ net/minecraft/world/level/block/Blocks/PITCHER_CROP +FD: net/minecraft/world/level/block/Blocks/f_276668_ net/minecraft/world/level/block/Blocks/PITCHER_PLANT +FD: net/minecraft/world/level/block/Blocks/f_49990_ net/minecraft/world/level/block/Blocks/WATER +FD: net/minecraft/world/level/block/Blocks/f_49991_ net/minecraft/world/level/block/Blocks/LAVA +FD: net/minecraft/world/level/block/Blocks/f_49992_ net/minecraft/world/level/block/Blocks/SAND +FD: net/minecraft/world/level/block/Blocks/f_49993_ net/minecraft/world/level/block/Blocks/RED_SAND +FD: net/minecraft/world/level/block/Blocks/f_49994_ net/minecraft/world/level/block/Blocks/GRAVEL +FD: net/minecraft/world/level/block/Blocks/f_49995_ net/minecraft/world/level/block/Blocks/GOLD_ORE +FD: net/minecraft/world/level/block/Blocks/f_49996_ net/minecraft/world/level/block/Blocks/IRON_ORE +FD: net/minecraft/world/level/block/Blocks/f_49997_ net/minecraft/world/level/block/Blocks/COAL_ORE +FD: net/minecraft/world/level/block/Blocks/f_49998_ net/minecraft/world/level/block/Blocks/NETHER_GOLD_ORE +FD: net/minecraft/world/level/block/Blocks/f_49999_ net/minecraft/world/level/block/Blocks/OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50000_ net/minecraft/world/level/block/Blocks/SPRUCE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50001_ net/minecraft/world/level/block/Blocks/BIRCH_LOG +FD: net/minecraft/world/level/block/Blocks/f_50002_ net/minecraft/world/level/block/Blocks/JUNGLE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50003_ net/minecraft/world/level/block/Blocks/ACACIA_LOG +FD: net/minecraft/world/level/block/Blocks/f_50004_ net/minecraft/world/level/block/Blocks/DARK_OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50005_ net/minecraft/world/level/block/Blocks/STRIPPED_SPRUCE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50006_ net/minecraft/world/level/block/Blocks/STRIPPED_BIRCH_LOG +FD: net/minecraft/world/level/block/Blocks/f_50007_ net/minecraft/world/level/block/Blocks/STRIPPED_JUNGLE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50008_ net/minecraft/world/level/block/Blocks/STRIPPED_ACACIA_LOG +FD: net/minecraft/world/level/block/Blocks/f_50009_ net/minecraft/world/level/block/Blocks/STRIPPED_DARK_OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50010_ net/minecraft/world/level/block/Blocks/STRIPPED_OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50011_ net/minecraft/world/level/block/Blocks/OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50012_ net/minecraft/world/level/block/Blocks/SPRUCE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50013_ net/minecraft/world/level/block/Blocks/BIRCH_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50014_ net/minecraft/world/level/block/Blocks/JUNGLE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50015_ net/minecraft/world/level/block/Blocks/ACACIA_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50016_ net/minecraft/world/level/block/Blocks/AIR +FD: net/minecraft/world/level/block/Blocks/f_50017_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_BED +FD: net/minecraft/world/level/block/Blocks/f_50018_ net/minecraft/world/level/block/Blocks/YELLOW_BED +FD: net/minecraft/world/level/block/Blocks/f_50019_ net/minecraft/world/level/block/Blocks/LIME_BED +FD: net/minecraft/world/level/block/Blocks/f_50020_ net/minecraft/world/level/block/Blocks/PINK_BED +FD: net/minecraft/world/level/block/Blocks/f_50021_ net/minecraft/world/level/block/Blocks/GRAY_BED +FD: net/minecraft/world/level/block/Blocks/f_50022_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_BED +FD: net/minecraft/world/level/block/Blocks/f_50023_ net/minecraft/world/level/block/Blocks/CYAN_BED +FD: net/minecraft/world/level/block/Blocks/f_50024_ net/minecraft/world/level/block/Blocks/PURPLE_BED +FD: net/minecraft/world/level/block/Blocks/f_50025_ net/minecraft/world/level/block/Blocks/BLUE_BED +FD: net/minecraft/world/level/block/Blocks/f_50026_ net/minecraft/world/level/block/Blocks/BROWN_BED +FD: net/minecraft/world/level/block/Blocks/f_50027_ net/minecraft/world/level/block/Blocks/GREEN_BED +FD: net/minecraft/world/level/block/Blocks/f_50028_ net/minecraft/world/level/block/Blocks/RED_BED +FD: net/minecraft/world/level/block/Blocks/f_50029_ net/minecraft/world/level/block/Blocks/BLACK_BED +FD: net/minecraft/world/level/block/Blocks/f_50030_ net/minecraft/world/level/block/Blocks/POWERED_RAIL +FD: net/minecraft/world/level/block/Blocks/f_50031_ net/minecraft/world/level/block/Blocks/DETECTOR_RAIL +FD: net/minecraft/world/level/block/Blocks/f_50032_ net/minecraft/world/level/block/Blocks/STICKY_PISTON +FD: net/minecraft/world/level/block/Blocks/f_50033_ net/minecraft/world/level/block/Blocks/COBWEB +FD: net/minecraft/world/level/block/Blocks/f_50034_ net/minecraft/world/level/block/Blocks/GRASS +FD: net/minecraft/world/level/block/Blocks/f_50035_ net/minecraft/world/level/block/Blocks/FERN +FD: net/minecraft/world/level/block/Blocks/f_50036_ net/minecraft/world/level/block/Blocks/DEAD_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50037_ net/minecraft/world/level/block/Blocks/SEAGRASS +FD: net/minecraft/world/level/block/Blocks/f_50038_ net/minecraft/world/level/block/Blocks/TALL_SEAGRASS +FD: net/minecraft/world/level/block/Blocks/f_50039_ net/minecraft/world/level/block/Blocks/PISTON +FD: net/minecraft/world/level/block/Blocks/f_50040_ net/minecraft/world/level/block/Blocks/PISTON_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50041_ net/minecraft/world/level/block/Blocks/WHITE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50042_ net/minecraft/world/level/block/Blocks/ORANGE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50043_ net/minecraft/world/level/block/Blocks/DARK_OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50044_ net/minecraft/world/level/block/Blocks/STRIPPED_OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50045_ net/minecraft/world/level/block/Blocks/STRIPPED_SPRUCE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50046_ net/minecraft/world/level/block/Blocks/STRIPPED_BIRCH_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50047_ net/minecraft/world/level/block/Blocks/STRIPPED_JUNGLE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50048_ net/minecraft/world/level/block/Blocks/STRIPPED_ACACIA_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50049_ net/minecraft/world/level/block/Blocks/STRIPPED_DARK_OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50050_ net/minecraft/world/level/block/Blocks/OAK_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50051_ net/minecraft/world/level/block/Blocks/SPRUCE_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50052_ net/minecraft/world/level/block/Blocks/BIRCH_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50053_ net/minecraft/world/level/block/Blocks/JUNGLE_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50054_ net/minecraft/world/level/block/Blocks/ACACIA_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50055_ net/minecraft/world/level/block/Blocks/DARK_OAK_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50056_ net/minecraft/world/level/block/Blocks/SPONGE +FD: net/minecraft/world/level/block/Blocks/f_50057_ net/minecraft/world/level/block/Blocks/WET_SPONGE +FD: net/minecraft/world/level/block/Blocks/f_50058_ net/minecraft/world/level/block/Blocks/GLASS +FD: net/minecraft/world/level/block/Blocks/f_50059_ net/minecraft/world/level/block/Blocks/LAPIS_ORE +FD: net/minecraft/world/level/block/Blocks/f_50060_ net/minecraft/world/level/block/Blocks/LAPIS_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50061_ net/minecraft/world/level/block/Blocks/DISPENSER +FD: net/minecraft/world/level/block/Blocks/f_50062_ net/minecraft/world/level/block/Blocks/SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50063_ net/minecraft/world/level/block/Blocks/CHISELED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50064_ net/minecraft/world/level/block/Blocks/CUT_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50065_ net/minecraft/world/level/block/Blocks/NOTE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50066_ net/minecraft/world/level/block/Blocks/WHITE_BED +FD: net/minecraft/world/level/block/Blocks/f_50067_ net/minecraft/world/level/block/Blocks/ORANGE_BED +FD: net/minecraft/world/level/block/Blocks/f_50068_ net/minecraft/world/level/block/Blocks/MAGENTA_BED +FD: net/minecraft/world/level/block/Blocks/f_50069_ net/minecraft/world/level/block/Blocks/STONE +FD: net/minecraft/world/level/block/Blocks/f_50070_ net/minecraft/world/level/block/Blocks/WITHER_ROSE +FD: net/minecraft/world/level/block/Blocks/f_50071_ net/minecraft/world/level/block/Blocks/LILY_OF_THE_VALLEY +FD: net/minecraft/world/level/block/Blocks/f_50072_ net/minecraft/world/level/block/Blocks/BROWN_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50073_ net/minecraft/world/level/block/Blocks/RED_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50074_ net/minecraft/world/level/block/Blocks/GOLD_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50075_ net/minecraft/world/level/block/Blocks/IRON_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50076_ net/minecraft/world/level/block/Blocks/BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50077_ net/minecraft/world/level/block/Blocks/TNT +FD: net/minecraft/world/level/block/Blocks/f_50078_ net/minecraft/world/level/block/Blocks/BOOKSHELF +FD: net/minecraft/world/level/block/Blocks/f_50079_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE +FD: net/minecraft/world/level/block/Blocks/f_50080_ net/minecraft/world/level/block/Blocks/OBSIDIAN +FD: net/minecraft/world/level/block/Blocks/f_50081_ net/minecraft/world/level/block/Blocks/TORCH +FD: net/minecraft/world/level/block/Blocks/f_50082_ net/minecraft/world/level/block/Blocks/WALL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50083_ net/minecraft/world/level/block/Blocks/FIRE +FD: net/minecraft/world/level/block/Blocks/f_50084_ net/minecraft/world/level/block/Blocks/SOUL_FIRE +FD: net/minecraft/world/level/block/Blocks/f_50085_ net/minecraft/world/level/block/Blocks/SPAWNER +FD: net/minecraft/world/level/block/Blocks/f_50086_ net/minecraft/world/level/block/Blocks/OAK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50087_ net/minecraft/world/level/block/Blocks/CHEST +FD: net/minecraft/world/level/block/Blocks/f_50088_ net/minecraft/world/level/block/Blocks/REDSTONE_WIRE +FD: net/minecraft/world/level/block/Blocks/f_50089_ net/minecraft/world/level/block/Blocks/DIAMOND_ORE +FD: net/minecraft/world/level/block/Blocks/f_50090_ net/minecraft/world/level/block/Blocks/DIAMOND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50091_ net/minecraft/world/level/block/Blocks/CRAFTING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50092_ net/minecraft/world/level/block/Blocks/WHEAT +FD: net/minecraft/world/level/block/Blocks/f_50093_ net/minecraft/world/level/block/Blocks/FARMLAND +FD: net/minecraft/world/level/block/Blocks/f_50094_ net/minecraft/world/level/block/Blocks/FURNACE +FD: net/minecraft/world/level/block/Blocks/f_50095_ net/minecraft/world/level/block/Blocks/OAK_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50096_ net/minecraft/world/level/block/Blocks/MAGENTA_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50097_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50098_ net/minecraft/world/level/block/Blocks/YELLOW_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50099_ net/minecraft/world/level/block/Blocks/LIME_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50100_ net/minecraft/world/level/block/Blocks/PINK_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50101_ net/minecraft/world/level/block/Blocks/GRAY_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50102_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50103_ net/minecraft/world/level/block/Blocks/CYAN_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50104_ net/minecraft/world/level/block/Blocks/PURPLE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50105_ net/minecraft/world/level/block/Blocks/BLUE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50106_ net/minecraft/world/level/block/Blocks/BROWN_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50107_ net/minecraft/world/level/block/Blocks/GREEN_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50108_ net/minecraft/world/level/block/Blocks/RED_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50109_ net/minecraft/world/level/block/Blocks/BLACK_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50110_ net/minecraft/world/level/block/Blocks/MOVING_PISTON +FD: net/minecraft/world/level/block/Blocks/f_50111_ net/minecraft/world/level/block/Blocks/DANDELION +FD: net/minecraft/world/level/block/Blocks/f_50112_ net/minecraft/world/level/block/Blocks/POPPY +FD: net/minecraft/world/level/block/Blocks/f_50113_ net/minecraft/world/level/block/Blocks/BLUE_ORCHID +FD: net/minecraft/world/level/block/Blocks/f_50114_ net/minecraft/world/level/block/Blocks/ALLIUM +FD: net/minecraft/world/level/block/Blocks/f_50115_ net/minecraft/world/level/block/Blocks/AZURE_BLUET +FD: net/minecraft/world/level/block/Blocks/f_50116_ net/minecraft/world/level/block/Blocks/RED_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50117_ net/minecraft/world/level/block/Blocks/ORANGE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50118_ net/minecraft/world/level/block/Blocks/WHITE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50119_ net/minecraft/world/level/block/Blocks/PINK_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50120_ net/minecraft/world/level/block/Blocks/OXEYE_DAISY +FD: net/minecraft/world/level/block/Blocks/f_50121_ net/minecraft/world/level/block/Blocks/CORNFLOWER +FD: net/minecraft/world/level/block/Blocks/f_50122_ net/minecraft/world/level/block/Blocks/GRANITE +FD: net/minecraft/world/level/block/Blocks/f_50123_ net/minecraft/world/level/block/Blocks/REDSTONE_WALL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50124_ net/minecraft/world/level/block/Blocks/STONE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50125_ net/minecraft/world/level/block/Blocks/SNOW +FD: net/minecraft/world/level/block/Blocks/f_50126_ net/minecraft/world/level/block/Blocks/ICE +FD: net/minecraft/world/level/block/Blocks/f_50127_ net/minecraft/world/level/block/Blocks/SNOW_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50128_ net/minecraft/world/level/block/Blocks/CACTUS +FD: net/minecraft/world/level/block/Blocks/f_50129_ net/minecraft/world/level/block/Blocks/CLAY +FD: net/minecraft/world/level/block/Blocks/f_50130_ net/minecraft/world/level/block/Blocks/SUGAR_CANE +FD: net/minecraft/world/level/block/Blocks/f_50131_ net/minecraft/world/level/block/Blocks/JUKEBOX +FD: net/minecraft/world/level/block/Blocks/f_50132_ net/minecraft/world/level/block/Blocks/OAK_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50133_ net/minecraft/world/level/block/Blocks/PUMPKIN +FD: net/minecraft/world/level/block/Blocks/f_50134_ net/minecraft/world/level/block/Blocks/NETHERRACK +FD: net/minecraft/world/level/block/Blocks/f_50135_ net/minecraft/world/level/block/Blocks/SOUL_SAND +FD: net/minecraft/world/level/block/Blocks/f_50136_ net/minecraft/world/level/block/Blocks/SOUL_SOIL +FD: net/minecraft/world/level/block/Blocks/f_50137_ net/minecraft/world/level/block/Blocks/BASALT +FD: net/minecraft/world/level/block/Blocks/f_50138_ net/minecraft/world/level/block/Blocks/POLISHED_BASALT +FD: net/minecraft/world/level/block/Blocks/f_50139_ net/minecraft/world/level/block/Blocks/SOUL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50140_ net/minecraft/world/level/block/Blocks/SOUL_WALL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50141_ net/minecraft/world/level/block/Blocks/GLOWSTONE +FD: net/minecraft/world/level/block/Blocks/f_50142_ net/minecraft/world/level/block/Blocks/NETHER_PORTAL +FD: net/minecraft/world/level/block/Blocks/f_50143_ net/minecraft/world/level/block/Blocks/CARVED_PUMPKIN +FD: net/minecraft/world/level/block/Blocks/f_50144_ net/minecraft/world/level/block/Blocks/JACK_O_LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50145_ net/minecraft/world/level/block/Blocks/CAKE +FD: net/minecraft/world/level/block/Blocks/f_50146_ net/minecraft/world/level/block/Blocks/REPEATER +FD: net/minecraft/world/level/block/Blocks/f_50147_ net/minecraft/world/level/block/Blocks/WHITE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50148_ net/minecraft/world/level/block/Blocks/ORANGE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50149_ net/minecraft/world/level/block/Blocks/SPRUCE_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50150_ net/minecraft/world/level/block/Blocks/BIRCH_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50151_ net/minecraft/world/level/block/Blocks/ACACIA_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50152_ net/minecraft/world/level/block/Blocks/JUNGLE_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50153_ net/minecraft/world/level/block/Blocks/DARK_OAK_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50154_ net/minecraft/world/level/block/Blocks/OAK_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50155_ net/minecraft/world/level/block/Blocks/LADDER +FD: net/minecraft/world/level/block/Blocks/f_50156_ net/minecraft/world/level/block/Blocks/RAIL +FD: net/minecraft/world/level/block/Blocks/f_50157_ net/minecraft/world/level/block/Blocks/COBBLESTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50158_ net/minecraft/world/level/block/Blocks/OAK_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50159_ net/minecraft/world/level/block/Blocks/SPRUCE_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50160_ net/minecraft/world/level/block/Blocks/BIRCH_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50161_ net/minecraft/world/level/block/Blocks/ACACIA_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50162_ net/minecraft/world/level/block/Blocks/JUNGLE_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50163_ net/minecraft/world/level/block/Blocks/DARK_OAK_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50164_ net/minecraft/world/level/block/Blocks/LEVER +FD: net/minecraft/world/level/block/Blocks/f_50165_ net/minecraft/world/level/block/Blocks/STONE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50166_ net/minecraft/world/level/block/Blocks/IRON_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50167_ net/minecraft/world/level/block/Blocks/OAK_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50168_ net/minecraft/world/level/block/Blocks/SPRUCE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50169_ net/minecraft/world/level/block/Blocks/BIRCH_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50170_ net/minecraft/world/level/block/Blocks/JUNGLE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50171_ net/minecraft/world/level/block/Blocks/ACACIA_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50172_ net/minecraft/world/level/block/Blocks/DARK_OAK_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50173_ net/minecraft/world/level/block/Blocks/REDSTONE_ORE +FD: net/minecraft/world/level/block/Blocks/f_50174_ net/minecraft/world/level/block/Blocks/REDSTONE_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50175_ net/minecraft/world/level/block/Blocks/POLISHED_GRANITE +FD: net/minecraft/world/level/block/Blocks/f_50176_ net/minecraft/world/level/block/Blocks/INFESTED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50177_ net/minecraft/world/level/block/Blocks/INFESTED_MOSSY_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50178_ net/minecraft/world/level/block/Blocks/INFESTED_CRACKED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50179_ net/minecraft/world/level/block/Blocks/INFESTED_CHISELED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50180_ net/minecraft/world/level/block/Blocks/BROWN_MUSHROOM_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50181_ net/minecraft/world/level/block/Blocks/RED_MUSHROOM_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50182_ net/minecraft/world/level/block/Blocks/MUSHROOM_STEM +FD: net/minecraft/world/level/block/Blocks/f_50183_ net/minecraft/world/level/block/Blocks/IRON_BARS +FD: net/minecraft/world/level/block/Blocks/f_50184_ net/minecraft/world/level/block/Blocks/CHAIN +FD: net/minecraft/world/level/block/Blocks/f_50185_ net/minecraft/world/level/block/Blocks/GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50186_ net/minecraft/world/level/block/Blocks/MELON +FD: net/minecraft/world/level/block/Blocks/f_50187_ net/minecraft/world/level/block/Blocks/ATTACHED_PUMPKIN_STEM +FD: net/minecraft/world/level/block/Blocks/f_50188_ net/minecraft/world/level/block/Blocks/ATTACHED_MELON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50189_ net/minecraft/world/level/block/Blocks/PUMPKIN_STEM +FD: net/minecraft/world/level/block/Blocks/f_50190_ net/minecraft/world/level/block/Blocks/MELON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50191_ net/minecraft/world/level/block/Blocks/VINE +FD: net/minecraft/world/level/block/Blocks/f_50192_ net/minecraft/world/level/block/Blocks/OAK_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50193_ net/minecraft/world/level/block/Blocks/BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50194_ net/minecraft/world/level/block/Blocks/STONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50195_ net/minecraft/world/level/block/Blocks/MYCELIUM +FD: net/minecraft/world/level/block/Blocks/f_50196_ net/minecraft/world/level/block/Blocks/LILY_PAD +FD: net/minecraft/world/level/block/Blocks/f_50197_ net/minecraft/world/level/block/Blocks/NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50198_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50199_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50200_ net/minecraft/world/level/block/Blocks/NETHER_WART +FD: net/minecraft/world/level/block/Blocks/f_50201_ net/minecraft/world/level/block/Blocks/ENCHANTING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50202_ net/minecraft/world/level/block/Blocks/MAGENTA_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50203_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50204_ net/minecraft/world/level/block/Blocks/YELLOW_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50205_ net/minecraft/world/level/block/Blocks/LIME_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50206_ net/minecraft/world/level/block/Blocks/PINK_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50207_ net/minecraft/world/level/block/Blocks/GRAY_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50208_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50209_ net/minecraft/world/level/block/Blocks/CYAN_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50210_ net/minecraft/world/level/block/Blocks/PURPLE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50211_ net/minecraft/world/level/block/Blocks/BLUE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50212_ net/minecraft/world/level/block/Blocks/BROWN_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50213_ net/minecraft/world/level/block/Blocks/GREEN_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50214_ net/minecraft/world/level/block/Blocks/RED_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50215_ net/minecraft/world/level/block/Blocks/BLACK_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50216_ net/minecraft/world/level/block/Blocks/OAK_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50217_ net/minecraft/world/level/block/Blocks/SPRUCE_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50218_ net/minecraft/world/level/block/Blocks/BIRCH_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50219_ net/minecraft/world/level/block/Blocks/JUNGLE_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50220_ net/minecraft/world/level/block/Blocks/ACACIA_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50221_ net/minecraft/world/level/block/Blocks/DARK_OAK_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50222_ net/minecraft/world/level/block/Blocks/STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50223_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50224_ net/minecraft/world/level/block/Blocks/CRACKED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50225_ net/minecraft/world/level/block/Blocks/CHISELED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50226_ net/minecraft/world/level/block/Blocks/INFESTED_STONE +FD: net/minecraft/world/level/block/Blocks/f_50227_ net/minecraft/world/level/block/Blocks/INFESTED_COBBLESTONE +FD: net/minecraft/world/level/block/Blocks/f_50228_ net/minecraft/world/level/block/Blocks/DIORITE +FD: net/minecraft/world/level/block/Blocks/f_50229_ net/minecraft/world/level/block/Blocks/POTTED_ACACIA_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50230_ net/minecraft/world/level/block/Blocks/POTTED_DARK_OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50231_ net/minecraft/world/level/block/Blocks/POTTED_FERN +FD: net/minecraft/world/level/block/Blocks/f_50232_ net/minecraft/world/level/block/Blocks/POTTED_DANDELION +FD: net/minecraft/world/level/block/Blocks/f_50233_ net/minecraft/world/level/block/Blocks/POTTED_POPPY +FD: net/minecraft/world/level/block/Blocks/f_50234_ net/minecraft/world/level/block/Blocks/POTTED_BLUE_ORCHID +FD: net/minecraft/world/level/block/Blocks/f_50235_ net/minecraft/world/level/block/Blocks/POTTED_ALLIUM +FD: net/minecraft/world/level/block/Blocks/f_50236_ net/minecraft/world/level/block/Blocks/POTTED_AZURE_BLUET +FD: net/minecraft/world/level/block/Blocks/f_50237_ net/minecraft/world/level/block/Blocks/POTTED_RED_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50238_ net/minecraft/world/level/block/Blocks/POTTED_ORANGE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50239_ net/minecraft/world/level/block/Blocks/POTTED_WHITE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50240_ net/minecraft/world/level/block/Blocks/POTTED_PINK_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50241_ net/minecraft/world/level/block/Blocks/POTTED_OXEYE_DAISY +FD: net/minecraft/world/level/block/Blocks/f_50242_ net/minecraft/world/level/block/Blocks/POTTED_CORNFLOWER +FD: net/minecraft/world/level/block/Blocks/f_50243_ net/minecraft/world/level/block/Blocks/POTTED_LILY_OF_THE_VALLEY +FD: net/minecraft/world/level/block/Blocks/f_50244_ net/minecraft/world/level/block/Blocks/POTTED_WITHER_ROSE +FD: net/minecraft/world/level/block/Blocks/f_50245_ net/minecraft/world/level/block/Blocks/POTTED_RED_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50246_ net/minecraft/world/level/block/Blocks/POTTED_BROWN_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50247_ net/minecraft/world/level/block/Blocks/POTTED_DEAD_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50248_ net/minecraft/world/level/block/Blocks/POTTED_CACTUS +FD: net/minecraft/world/level/block/Blocks/f_50249_ net/minecraft/world/level/block/Blocks/CARROTS +FD: net/minecraft/world/level/block/Blocks/f_50250_ net/minecraft/world/level/block/Blocks/POTATOES +FD: net/minecraft/world/level/block/Blocks/f_50251_ net/minecraft/world/level/block/Blocks/OAK_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50252_ net/minecraft/world/level/block/Blocks/SPRUCE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50253_ net/minecraft/world/level/block/Blocks/BIRCH_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50254_ net/minecraft/world/level/block/Blocks/JUNGLE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50255_ net/minecraft/world/level/block/Blocks/BREWING_STAND +FD: net/minecraft/world/level/block/Blocks/f_50256_ net/minecraft/world/level/block/Blocks/CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_50257_ net/minecraft/world/level/block/Blocks/END_PORTAL +FD: net/minecraft/world/level/block/Blocks/f_50258_ net/minecraft/world/level/block/Blocks/END_PORTAL_FRAME +FD: net/minecraft/world/level/block/Blocks/f_50259_ net/minecraft/world/level/block/Blocks/END_STONE +FD: net/minecraft/world/level/block/Blocks/f_50260_ net/minecraft/world/level/block/Blocks/DRAGON_EGG +FD: net/minecraft/world/level/block/Blocks/f_50261_ net/minecraft/world/level/block/Blocks/REDSTONE_LAMP +FD: net/minecraft/world/level/block/Blocks/f_50262_ net/minecraft/world/level/block/Blocks/COCOA +FD: net/minecraft/world/level/block/Blocks/f_50263_ net/minecraft/world/level/block/Blocks/SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50264_ net/minecraft/world/level/block/Blocks/EMERALD_ORE +FD: net/minecraft/world/level/block/Blocks/f_50265_ net/minecraft/world/level/block/Blocks/ENDER_CHEST +FD: net/minecraft/world/level/block/Blocks/f_50266_ net/minecraft/world/level/block/Blocks/TRIPWIRE_HOOK +FD: net/minecraft/world/level/block/Blocks/f_50267_ net/minecraft/world/level/block/Blocks/TRIPWIRE +FD: net/minecraft/world/level/block/Blocks/f_50268_ net/minecraft/world/level/block/Blocks/EMERALD_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50269_ net/minecraft/world/level/block/Blocks/SPRUCE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50270_ net/minecraft/world/level/block/Blocks/BIRCH_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50271_ net/minecraft/world/level/block/Blocks/JUNGLE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50272_ net/minecraft/world/level/block/Blocks/COMMAND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50273_ net/minecraft/world/level/block/Blocks/BEACON +FD: net/minecraft/world/level/block/Blocks/f_50274_ net/minecraft/world/level/block/Blocks/COBBLESTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50275_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50276_ net/minecraft/world/level/block/Blocks/FLOWER_POT +FD: net/minecraft/world/level/block/Blocks/f_50277_ net/minecraft/world/level/block/Blocks/POTTED_OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50278_ net/minecraft/world/level/block/Blocks/POTTED_SPRUCE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50279_ net/minecraft/world/level/block/Blocks/POTTED_BIRCH_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50280_ net/minecraft/world/level/block/Blocks/POTTED_JUNGLE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50281_ net/minecraft/world/level/block/Blocks/POLISHED_DIORITE +FD: net/minecraft/world/level/block/Blocks/f_50282_ net/minecraft/world/level/block/Blocks/CHISELED_QUARTZ_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50283_ net/minecraft/world/level/block/Blocks/QUARTZ_PILLAR +FD: net/minecraft/world/level/block/Blocks/f_50284_ net/minecraft/world/level/block/Blocks/QUARTZ_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50285_ net/minecraft/world/level/block/Blocks/ACTIVATOR_RAIL +FD: net/minecraft/world/level/block/Blocks/f_50286_ net/minecraft/world/level/block/Blocks/DROPPER +FD: net/minecraft/world/level/block/Blocks/f_50287_ net/minecraft/world/level/block/Blocks/WHITE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50288_ net/minecraft/world/level/block/Blocks/ORANGE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50289_ net/minecraft/world/level/block/Blocks/MAGENTA_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50290_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50291_ net/minecraft/world/level/block/Blocks/YELLOW_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50292_ net/minecraft/world/level/block/Blocks/LIME_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50293_ net/minecraft/world/level/block/Blocks/PINK_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50294_ net/minecraft/world/level/block/Blocks/GRAY_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50295_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50296_ net/minecraft/world/level/block/Blocks/CYAN_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50297_ net/minecraft/world/level/block/Blocks/PURPLE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50298_ net/minecraft/world/level/block/Blocks/BLUE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50299_ net/minecraft/world/level/block/Blocks/BROWN_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50300_ net/minecraft/world/level/block/Blocks/GREEN_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50301_ net/minecraft/world/level/block/Blocks/RED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50302_ net/minecraft/world/level/block/Blocks/BLACK_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50303_ net/minecraft/world/level/block/Blocks/WHITE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50304_ net/minecraft/world/level/block/Blocks/ORANGE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50305_ net/minecraft/world/level/block/Blocks/MAGENTA_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50306_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50307_ net/minecraft/world/level/block/Blocks/YELLOW_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50308_ net/minecraft/world/level/block/Blocks/ACACIA_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50309_ net/minecraft/world/level/block/Blocks/DARK_OAK_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50310_ net/minecraft/world/level/block/Blocks/SKELETON_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50311_ net/minecraft/world/level/block/Blocks/SKELETON_WALL_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50312_ net/minecraft/world/level/block/Blocks/WITHER_SKELETON_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50313_ net/minecraft/world/level/block/Blocks/WITHER_SKELETON_WALL_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50314_ net/minecraft/world/level/block/Blocks/ZOMBIE_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50315_ net/minecraft/world/level/block/Blocks/ZOMBIE_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50316_ net/minecraft/world/level/block/Blocks/PLAYER_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50317_ net/minecraft/world/level/block/Blocks/PLAYER_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50318_ net/minecraft/world/level/block/Blocks/CREEPER_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50319_ net/minecraft/world/level/block/Blocks/CREEPER_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50320_ net/minecraft/world/level/block/Blocks/DRAGON_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50321_ net/minecraft/world/level/block/Blocks/DRAGON_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50322_ net/minecraft/world/level/block/Blocks/ANVIL +FD: net/minecraft/world/level/block/Blocks/f_50323_ net/minecraft/world/level/block/Blocks/CHIPPED_ANVIL +FD: net/minecraft/world/level/block/Blocks/f_50324_ net/minecraft/world/level/block/Blocks/DAMAGED_ANVIL +FD: net/minecraft/world/level/block/Blocks/f_50325_ net/minecraft/world/level/block/Blocks/TRAPPED_CHEST +FD: net/minecraft/world/level/block/Blocks/f_50326_ net/minecraft/world/level/block/Blocks/LIGHT_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50327_ net/minecraft/world/level/block/Blocks/HEAVY_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50328_ net/minecraft/world/level/block/Blocks/COMPARATOR +FD: net/minecraft/world/level/block/Blocks/f_50329_ net/minecraft/world/level/block/Blocks/DAYLIGHT_DETECTOR +FD: net/minecraft/world/level/block/Blocks/f_50330_ net/minecraft/world/level/block/Blocks/REDSTONE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50331_ net/minecraft/world/level/block/Blocks/NETHER_QUARTZ_ORE +FD: net/minecraft/world/level/block/Blocks/f_50332_ net/minecraft/world/level/block/Blocks/HOPPER +FD: net/minecraft/world/level/block/Blocks/f_50333_ net/minecraft/world/level/block/Blocks/QUARTZ_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50334_ net/minecraft/world/level/block/Blocks/ANDESITE +FD: net/minecraft/world/level/block/Blocks/f_50335_ net/minecraft/world/level/block/Blocks/HAY_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50336_ net/minecraft/world/level/block/Blocks/WHITE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50337_ net/minecraft/world/level/block/Blocks/ORANGE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50338_ net/minecraft/world/level/block/Blocks/MAGENTA_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50339_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50340_ net/minecraft/world/level/block/Blocks/YELLOW_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50341_ net/minecraft/world/level/block/Blocks/LIME_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50342_ net/minecraft/world/level/block/Blocks/PINK_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50343_ net/minecraft/world/level/block/Blocks/GRAY_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50344_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50345_ net/minecraft/world/level/block/Blocks/CYAN_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50346_ net/minecraft/world/level/block/Blocks/PURPLE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50347_ net/minecraft/world/level/block/Blocks/BLUE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50348_ net/minecraft/world/level/block/Blocks/BROWN_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50349_ net/minecraft/world/level/block/Blocks/GREEN_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50350_ net/minecraft/world/level/block/Blocks/RED_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50351_ net/minecraft/world/level/block/Blocks/BLACK_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50352_ net/minecraft/world/level/block/Blocks/TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50353_ net/minecraft/world/level/block/Blocks/COAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50354_ net/minecraft/world/level/block/Blocks/PACKED_ICE +FD: net/minecraft/world/level/block/Blocks/f_50355_ net/minecraft/world/level/block/Blocks/SUNFLOWER +FD: net/minecraft/world/level/block/Blocks/f_50356_ net/minecraft/world/level/block/Blocks/LILAC +FD: net/minecraft/world/level/block/Blocks/f_50357_ net/minecraft/world/level/block/Blocks/ROSE_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50358_ net/minecraft/world/level/block/Blocks/PEONY +FD: net/minecraft/world/level/block/Blocks/f_50359_ net/minecraft/world/level/block/Blocks/TALL_GRASS +FD: net/minecraft/world/level/block/Blocks/f_50360_ net/minecraft/world/level/block/Blocks/LARGE_FERN +FD: net/minecraft/world/level/block/Blocks/f_50361_ net/minecraft/world/level/block/Blocks/LIME_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50362_ net/minecraft/world/level/block/Blocks/PINK_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50363_ net/minecraft/world/level/block/Blocks/GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50364_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50365_ net/minecraft/world/level/block/Blocks/CYAN_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50366_ net/minecraft/world/level/block/Blocks/PURPLE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50367_ net/minecraft/world/level/block/Blocks/BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50368_ net/minecraft/world/level/block/Blocks/BROWN_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50369_ net/minecraft/world/level/block/Blocks/GREEN_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50370_ net/minecraft/world/level/block/Blocks/RED_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50371_ net/minecraft/world/level/block/Blocks/BLACK_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50372_ net/minecraft/world/level/block/Blocks/ACACIA_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50373_ net/minecraft/world/level/block/Blocks/DARK_OAK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50374_ net/minecraft/world/level/block/Blocks/SLIME_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50375_ net/minecraft/world/level/block/Blocks/BARRIER +FD: net/minecraft/world/level/block/Blocks/f_50376_ net/minecraft/world/level/block/Blocks/IRON_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50377_ net/minecraft/world/level/block/Blocks/PRISMARINE +FD: net/minecraft/world/level/block/Blocks/f_50378_ net/minecraft/world/level/block/Blocks/PRISMARINE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50379_ net/minecraft/world/level/block/Blocks/DARK_PRISMARINE +FD: net/minecraft/world/level/block/Blocks/f_50380_ net/minecraft/world/level/block/Blocks/PRISMARINE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50381_ net/minecraft/world/level/block/Blocks/PRISMARINE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50382_ net/minecraft/world/level/block/Blocks/DARK_PRISMARINE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50383_ net/minecraft/world/level/block/Blocks/PRISMARINE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50384_ net/minecraft/world/level/block/Blocks/PRISMARINE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50385_ net/minecraft/world/level/block/Blocks/DARK_PRISMARINE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50386_ net/minecraft/world/level/block/Blocks/SEA_LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50387_ net/minecraft/world/level/block/Blocks/POLISHED_ANDESITE +FD: net/minecraft/world/level/block/Blocks/f_50388_ net/minecraft/world/level/block/Blocks/PURPLE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50389_ net/minecraft/world/level/block/Blocks/BLUE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50390_ net/minecraft/world/level/block/Blocks/BROWN_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50391_ net/minecraft/world/level/block/Blocks/GREEN_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50392_ net/minecraft/world/level/block/Blocks/RED_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50393_ net/minecraft/world/level/block/Blocks/BLACK_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50394_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50395_ net/minecraft/world/level/block/Blocks/CHISELED_RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50396_ net/minecraft/world/level/block/Blocks/CUT_RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50397_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50398_ net/minecraft/world/level/block/Blocks/OAK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50399_ net/minecraft/world/level/block/Blocks/SPRUCE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50400_ net/minecraft/world/level/block/Blocks/BIRCH_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50401_ net/minecraft/world/level/block/Blocks/JUNGLE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50402_ net/minecraft/world/level/block/Blocks/ACACIA_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50403_ net/minecraft/world/level/block/Blocks/DARK_OAK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50404_ net/minecraft/world/level/block/Blocks/STONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50405_ net/minecraft/world/level/block/Blocks/SMOOTH_STONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50406_ net/minecraft/world/level/block/Blocks/SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50407_ net/minecraft/world/level/block/Blocks/CUT_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50408_ net/minecraft/world/level/block/Blocks/PETRIFIED_OAK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50409_ net/minecraft/world/level/block/Blocks/COBBLESTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50410_ net/minecraft/world/level/block/Blocks/BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50411_ net/minecraft/world/level/block/Blocks/STONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50412_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50413_ net/minecraft/world/level/block/Blocks/QUARTZ_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50414_ net/minecraft/world/level/block/Blocks/WHITE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50415_ net/minecraft/world/level/block/Blocks/ORANGE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50416_ net/minecraft/world/level/block/Blocks/MAGENTA_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50417_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50418_ net/minecraft/world/level/block/Blocks/YELLOW_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50419_ net/minecraft/world/level/block/Blocks/LIME_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50420_ net/minecraft/world/level/block/Blocks/PINK_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50421_ net/minecraft/world/level/block/Blocks/GRAY_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50422_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50423_ net/minecraft/world/level/block/Blocks/CYAN_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50424_ net/minecraft/world/level/block/Blocks/PURPLE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50425_ net/minecraft/world/level/block/Blocks/BLUE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50426_ net/minecraft/world/level/block/Blocks/BROWN_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50427_ net/minecraft/world/level/block/Blocks/GREEN_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50428_ net/minecraft/world/level/block/Blocks/RED_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50429_ net/minecraft/world/level/block/Blocks/BLACK_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50430_ net/minecraft/world/level/block/Blocks/WHITE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50431_ net/minecraft/world/level/block/Blocks/ORANGE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50432_ net/minecraft/world/level/block/Blocks/MAGENTA_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50433_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50434_ net/minecraft/world/level/block/Blocks/YELLOW_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50435_ net/minecraft/world/level/block/Blocks/LIME_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50436_ net/minecraft/world/level/block/Blocks/PINK_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50437_ net/minecraft/world/level/block/Blocks/GRAY_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50438_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50439_ net/minecraft/world/level/block/Blocks/CYAN_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50440_ net/minecraft/world/level/block/Blocks/GRASS_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50441_ net/minecraft/world/level/block/Blocks/PURPUR_PILLAR +FD: net/minecraft/world/level/block/Blocks/f_50442_ net/minecraft/world/level/block/Blocks/PURPUR_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50443_ net/minecraft/world/level/block/Blocks/END_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50444_ net/minecraft/world/level/block/Blocks/BEETROOTS +FD: net/minecraft/world/level/block/Blocks/f_50446_ net/minecraft/world/level/block/Blocks/END_GATEWAY +FD: net/minecraft/world/level/block/Blocks/f_50447_ net/minecraft/world/level/block/Blocks/REPEATING_COMMAND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50448_ net/minecraft/world/level/block/Blocks/CHAIN_COMMAND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50449_ net/minecraft/world/level/block/Blocks/FROSTED_ICE +FD: net/minecraft/world/level/block/Blocks/f_50450_ net/minecraft/world/level/block/Blocks/MAGMA_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50451_ net/minecraft/world/level/block/Blocks/NETHER_WART_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50452_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50453_ net/minecraft/world/level/block/Blocks/BONE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50454_ net/minecraft/world/level/block/Blocks/STRUCTURE_VOID +FD: net/minecraft/world/level/block/Blocks/f_50455_ net/minecraft/world/level/block/Blocks/OBSERVER +FD: net/minecraft/world/level/block/Blocks/f_50456_ net/minecraft/world/level/block/Blocks/SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50457_ net/minecraft/world/level/block/Blocks/WHITE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50458_ net/minecraft/world/level/block/Blocks/ORANGE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50459_ net/minecraft/world/level/block/Blocks/MAGENTA_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50460_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50461_ net/minecraft/world/level/block/Blocks/YELLOW_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50462_ net/minecraft/world/level/block/Blocks/LIME_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50463_ net/minecraft/world/level/block/Blocks/PINK_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50464_ net/minecraft/world/level/block/Blocks/GRAY_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50465_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50466_ net/minecraft/world/level/block/Blocks/CYAN_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50467_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50468_ net/minecraft/world/level/block/Blocks/CUT_RED_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50469_ net/minecraft/world/level/block/Blocks/PURPUR_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50470_ net/minecraft/world/level/block/Blocks/SMOOTH_STONE +FD: net/minecraft/world/level/block/Blocks/f_50471_ net/minecraft/world/level/block/Blocks/SMOOTH_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50472_ net/minecraft/world/level/block/Blocks/SMOOTH_QUARTZ +FD: net/minecraft/world/level/block/Blocks/f_50473_ net/minecraft/world/level/block/Blocks/SMOOTH_RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50474_ net/minecraft/world/level/block/Blocks/SPRUCE_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50475_ net/minecraft/world/level/block/Blocks/BIRCH_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50476_ net/minecraft/world/level/block/Blocks/JUNGLE_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50477_ net/minecraft/world/level/block/Blocks/ACACIA_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50478_ net/minecraft/world/level/block/Blocks/DARK_OAK_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50479_ net/minecraft/world/level/block/Blocks/SPRUCE_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50480_ net/minecraft/world/level/block/Blocks/BIRCH_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50481_ net/minecraft/world/level/block/Blocks/JUNGLE_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50482_ net/minecraft/world/level/block/Blocks/ACACIA_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50483_ net/minecraft/world/level/block/Blocks/DARK_OAK_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50484_ net/minecraft/world/level/block/Blocks/SPRUCE_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50485_ net/minecraft/world/level/block/Blocks/BIRCH_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50486_ net/minecraft/world/level/block/Blocks/JUNGLE_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50487_ net/minecraft/world/level/block/Blocks/ACACIA_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50488_ net/minecraft/world/level/block/Blocks/DARK_OAK_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50489_ net/minecraft/world/level/block/Blocks/END_ROD +FD: net/minecraft/world/level/block/Blocks/f_50490_ net/minecraft/world/level/block/Blocks/CHORUS_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50491_ net/minecraft/world/level/block/Blocks/CHORUS_FLOWER +FD: net/minecraft/world/level/block/Blocks/f_50492_ net/minecraft/world/level/block/Blocks/PURPUR_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50493_ net/minecraft/world/level/block/Blocks/DIRT +FD: net/minecraft/world/level/block/Blocks/f_50494_ net/minecraft/world/level/block/Blocks/YELLOW_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50495_ net/minecraft/world/level/block/Blocks/LIME_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50496_ net/minecraft/world/level/block/Blocks/PINK_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50497_ net/minecraft/world/level/block/Blocks/GRAY_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50498_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50499_ net/minecraft/world/level/block/Blocks/CYAN_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50500_ net/minecraft/world/level/block/Blocks/PURPLE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50501_ net/minecraft/world/level/block/Blocks/BLUE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50502_ net/minecraft/world/level/block/Blocks/BROWN_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50503_ net/minecraft/world/level/block/Blocks/GREEN_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50504_ net/minecraft/world/level/block/Blocks/RED_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50505_ net/minecraft/world/level/block/Blocks/BLACK_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50506_ net/minecraft/world/level/block/Blocks/WHITE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50507_ net/minecraft/world/level/block/Blocks/ORANGE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50508_ net/minecraft/world/level/block/Blocks/MAGENTA_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50509_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50510_ net/minecraft/world/level/block/Blocks/YELLOW_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50511_ net/minecraft/world/level/block/Blocks/LIME_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50512_ net/minecraft/world/level/block/Blocks/PINK_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50513_ net/minecraft/world/level/block/Blocks/GRAY_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50514_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50515_ net/minecraft/world/level/block/Blocks/CYAN_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50516_ net/minecraft/world/level/block/Blocks/PURPLE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50517_ net/minecraft/world/level/block/Blocks/BLUE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50518_ net/minecraft/world/level/block/Blocks/BROWN_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50519_ net/minecraft/world/level/block/Blocks/GREEN_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50520_ net/minecraft/world/level/block/Blocks/PURPLE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50521_ net/minecraft/world/level/block/Blocks/BLUE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50522_ net/minecraft/world/level/block/Blocks/BROWN_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50523_ net/minecraft/world/level/block/Blocks/GREEN_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50524_ net/minecraft/world/level/block/Blocks/RED_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50525_ net/minecraft/world/level/block/Blocks/BLACK_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50526_ net/minecraft/world/level/block/Blocks/WHITE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50527_ net/minecraft/world/level/block/Blocks/ORANGE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50528_ net/minecraft/world/level/block/Blocks/MAGENTA_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50529_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50530_ net/minecraft/world/level/block/Blocks/YELLOW_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50531_ net/minecraft/world/level/block/Blocks/LIME_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50532_ net/minecraft/world/level/block/Blocks/PINK_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50533_ net/minecraft/world/level/block/Blocks/GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50534_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50535_ net/minecraft/world/level/block/Blocks/CYAN_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50536_ net/minecraft/world/level/block/Blocks/PURPLE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50537_ net/minecraft/world/level/block/Blocks/BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50538_ net/minecraft/world/level/block/Blocks/BROWN_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50539_ net/minecraft/world/level/block/Blocks/GREEN_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50540_ net/minecraft/world/level/block/Blocks/RED_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50541_ net/minecraft/world/level/block/Blocks/BLACK_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50542_ net/minecraft/world/level/block/Blocks/WHITE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50543_ net/minecraft/world/level/block/Blocks/ORANGE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50544_ net/minecraft/world/level/block/Blocks/MAGENTA_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50545_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50546_ net/minecraft/world/level/block/Blocks/COARSE_DIRT +FD: net/minecraft/world/level/block/Blocks/f_50547_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50548_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50549_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50550_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50551_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50552_ net/minecraft/world/level/block/Blocks/TUBE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50553_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50554_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50555_ net/minecraft/world/level/block/Blocks/FIRE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50556_ net/minecraft/world/level/block/Blocks/HORN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50557_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50558_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50559_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50560_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50561_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50562_ net/minecraft/world/level/block/Blocks/TUBE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50563_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50564_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50565_ net/minecraft/world/level/block/Blocks/FIRE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50566_ net/minecraft/world/level/block/Blocks/HORN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50567_ net/minecraft/world/level/block/Blocks/SEA_PICKLE +FD: net/minecraft/world/level/block/Blocks/f_50568_ net/minecraft/world/level/block/Blocks/BLUE_ICE +FD: net/minecraft/world/level/block/Blocks/f_50569_ net/minecraft/world/level/block/Blocks/CONDUIT +FD: net/minecraft/world/level/block/Blocks/f_50570_ net/minecraft/world/level/block/Blocks/BAMBOO_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50571_ net/minecraft/world/level/block/Blocks/BAMBOO +FD: net/minecraft/world/level/block/Blocks/f_50572_ net/minecraft/world/level/block/Blocks/POTTED_BAMBOO +FD: net/minecraft/world/level/block/Blocks/f_50573_ net/minecraft/world/level/block/Blocks/RED_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50574_ net/minecraft/world/level/block/Blocks/BLACK_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50575_ net/minecraft/world/level/block/Blocks/KELP +FD: net/minecraft/world/level/block/Blocks/f_50576_ net/minecraft/world/level/block/Blocks/KELP_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50577_ net/minecraft/world/level/block/Blocks/DRIED_KELP_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50578_ net/minecraft/world/level/block/Blocks/TURTLE_EGG +FD: net/minecraft/world/level/block/Blocks/f_50579_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50580_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50581_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50582_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50583_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50584_ net/minecraft/world/level/block/Blocks/TUBE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50585_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50586_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50587_ net/minecraft/world/level/block/Blocks/FIRE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50588_ net/minecraft/world/level/block/Blocks/HORN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50589_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50590_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50591_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50592_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50593_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50594_ net/minecraft/world/level/block/Blocks/TUBE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50595_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50596_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50597_ net/minecraft/world/level/block/Blocks/FIRE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50598_ net/minecraft/world/level/block/Blocks/HORN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50599_ net/minecraft/world/level/block/Blocks/PODZOL +FD: net/minecraft/world/level/block/Blocks/f_50600_ net/minecraft/world/level/block/Blocks/ANDESITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50601_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50602_ net/minecraft/world/level/block/Blocks/POLISHED_ANDESITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50603_ net/minecraft/world/level/block/Blocks/DIORITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50604_ net/minecraft/world/level/block/Blocks/BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50605_ net/minecraft/world/level/block/Blocks/PRISMARINE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50606_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50607_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50608_ net/minecraft/world/level/block/Blocks/GRANITE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50609_ net/minecraft/world/level/block/Blocks/STONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50610_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50611_ net/minecraft/world/level/block/Blocks/ANDESITE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50612_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50613_ net/minecraft/world/level/block/Blocks/SANDSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50614_ net/minecraft/world/level/block/Blocks/END_STONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50615_ net/minecraft/world/level/block/Blocks/DIORITE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50616_ net/minecraft/world/level/block/Blocks/SCAFFOLDING +FD: net/minecraft/world/level/block/Blocks/f_50617_ net/minecraft/world/level/block/Blocks/LOOM +FD: net/minecraft/world/level/block/Blocks/f_50618_ net/minecraft/world/level/block/Blocks/BARREL +FD: net/minecraft/world/level/block/Blocks/f_50619_ net/minecraft/world/level/block/Blocks/SMOKER +FD: net/minecraft/world/level/block/Blocks/f_50620_ net/minecraft/world/level/block/Blocks/BLAST_FURNACE +FD: net/minecraft/world/level/block/Blocks/f_50621_ net/minecraft/world/level/block/Blocks/CARTOGRAPHY_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50622_ net/minecraft/world/level/block/Blocks/FLETCHING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50623_ net/minecraft/world/level/block/Blocks/GRINDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50624_ net/minecraft/world/level/block/Blocks/LECTERN +FD: net/minecraft/world/level/block/Blocks/f_50625_ net/minecraft/world/level/block/Blocks/SMITHING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50626_ net/minecraft/world/level/block/Blocks/VOID_AIR +FD: net/minecraft/world/level/block/Blocks/f_50627_ net/minecraft/world/level/block/Blocks/CAVE_AIR +FD: net/minecraft/world/level/block/Blocks/f_50628_ net/minecraft/world/level/block/Blocks/BUBBLE_COLUMN +FD: net/minecraft/world/level/block/Blocks/f_50629_ net/minecraft/world/level/block/Blocks/POLISHED_GRANITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50630_ net/minecraft/world/level/block/Blocks/SMOOTH_RED_SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50631_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50632_ net/minecraft/world/level/block/Blocks/POLISHED_DIORITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50633_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50634_ net/minecraft/world/level/block/Blocks/END_STONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50635_ net/minecraft/world/level/block/Blocks/STONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50636_ net/minecraft/world/level/block/Blocks/SMOOTH_SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50637_ net/minecraft/world/level/block/Blocks/SMOOTH_QUARTZ_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50638_ net/minecraft/world/level/block/Blocks/GRANITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50639_ net/minecraft/world/level/block/Blocks/ANDESITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50640_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50641_ net/minecraft/world/level/block/Blocks/POLISHED_ANDESITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50642_ net/minecraft/world/level/block/Blocks/DIORITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50643_ net/minecraft/world/level/block/Blocks/POLISHED_GRANITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50644_ net/minecraft/world/level/block/Blocks/SMOOTH_RED_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50645_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50646_ net/minecraft/world/level/block/Blocks/POLISHED_DIORITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50647_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50648_ net/minecraft/world/level/block/Blocks/END_STONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50649_ net/minecraft/world/level/block/Blocks/SMOOTH_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50650_ net/minecraft/world/level/block/Blocks/SMOOTH_QUARTZ_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50651_ net/minecraft/world/level/block/Blocks/GRANITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50652_ net/minecraft/world/level/block/Blocks/COBBLESTONE +FD: net/minecraft/world/level/block/Blocks/f_50653_ net/minecraft/world/level/block/Blocks/TWISTING_VINES_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50654_ net/minecraft/world/level/block/Blocks/CRIMSON_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50655_ net/minecraft/world/level/block/Blocks/CRIMSON_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50656_ net/minecraft/world/level/block/Blocks/WARPED_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50657_ net/minecraft/world/level/block/Blocks/CRIMSON_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50658_ net/minecraft/world/level/block/Blocks/WARPED_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50659_ net/minecraft/world/level/block/Blocks/CRIMSON_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50660_ net/minecraft/world/level/block/Blocks/WARPED_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50661_ net/minecraft/world/level/block/Blocks/CRIMSON_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50662_ net/minecraft/world/level/block/Blocks/WARPED_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50663_ net/minecraft/world/level/block/Blocks/CRIMSON_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50664_ net/minecraft/world/level/block/Blocks/WARPED_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50665_ net/minecraft/world/level/block/Blocks/CRIMSON_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50666_ net/minecraft/world/level/block/Blocks/WARPED_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50667_ net/minecraft/world/level/block/Blocks/CRIMSON_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50668_ net/minecraft/world/level/block/Blocks/WARPED_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50669_ net/minecraft/world/level/block/Blocks/CRIMSON_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50670_ net/minecraft/world/level/block/Blocks/WARPED_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50671_ net/minecraft/world/level/block/Blocks/CRIMSON_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50672_ net/minecraft/world/level/block/Blocks/WARPED_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50673_ net/minecraft/world/level/block/Blocks/CRIMSON_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50674_ net/minecraft/world/level/block/Blocks/WARPED_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50675_ net/minecraft/world/level/block/Blocks/CRIMSON_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50676_ net/minecraft/world/level/block/Blocks/WARPED_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50677_ net/minecraft/world/level/block/Blocks/STRUCTURE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50678_ net/minecraft/world/level/block/Blocks/JIGSAW +FD: net/minecraft/world/level/block/Blocks/f_50679_ net/minecraft/world/level/block/Blocks/STONECUTTER +FD: net/minecraft/world/level/block/Blocks/f_50680_ net/minecraft/world/level/block/Blocks/BELL +FD: net/minecraft/world/level/block/Blocks/f_50681_ net/minecraft/world/level/block/Blocks/LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50682_ net/minecraft/world/level/block/Blocks/SOUL_LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50683_ net/minecraft/world/level/block/Blocks/CAMPFIRE +FD: net/minecraft/world/level/block/Blocks/f_50684_ net/minecraft/world/level/block/Blocks/SOUL_CAMPFIRE +FD: net/minecraft/world/level/block/Blocks/f_50685_ net/minecraft/world/level/block/Blocks/SWEET_BERRY_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50686_ net/minecraft/world/level/block/Blocks/WARPED_STEM +FD: net/minecraft/world/level/block/Blocks/f_50687_ net/minecraft/world/level/block/Blocks/STRIPPED_WARPED_STEM +FD: net/minecraft/world/level/block/Blocks/f_50688_ net/minecraft/world/level/block/Blocks/WARPED_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50689_ net/minecraft/world/level/block/Blocks/STRIPPED_WARPED_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50690_ net/minecraft/world/level/block/Blocks/WARPED_NYLIUM +FD: net/minecraft/world/level/block/Blocks/f_50691_ net/minecraft/world/level/block/Blocks/WARPED_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50692_ net/minecraft/world/level/block/Blocks/WARPED_WART_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50693_ net/minecraft/world/level/block/Blocks/WARPED_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50694_ net/minecraft/world/level/block/Blocks/NETHER_SPROUTS +FD: net/minecraft/world/level/block/Blocks/f_50695_ net/minecraft/world/level/block/Blocks/CRIMSON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50696_ net/minecraft/world/level/block/Blocks/STRIPPED_CRIMSON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50697_ net/minecraft/world/level/block/Blocks/CRIMSON_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50698_ net/minecraft/world/level/block/Blocks/STRIPPED_CRIMSON_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50699_ net/minecraft/world/level/block/Blocks/CRIMSON_NYLIUM +FD: net/minecraft/world/level/block/Blocks/f_50700_ net/minecraft/world/level/block/Blocks/CRIMSON_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50701_ net/minecraft/world/level/block/Blocks/SHROOMLIGHT +FD: net/minecraft/world/level/block/Blocks/f_50702_ net/minecraft/world/level/block/Blocks/WEEPING_VINES +FD: net/minecraft/world/level/block/Blocks/f_50703_ net/minecraft/world/level/block/Blocks/WEEPING_VINES_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50704_ net/minecraft/world/level/block/Blocks/TWISTING_VINES +FD: net/minecraft/world/level/block/Blocks/f_50705_ net/minecraft/world/level/block/Blocks/OAK_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50706_ net/minecraft/world/level/block/Blocks/GILDED_BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50707_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50708_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50709_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50710_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50711_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50712_ net/minecraft/world/level/block/Blocks/CHISELED_NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50713_ net/minecraft/world/level/block/Blocks/CRACKED_NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50714_ net/minecraft/world/level/block/Blocks/QUARTZ_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50715_ net/minecraft/world/level/block/Blocks/COMPOSTER +FD: net/minecraft/world/level/block/Blocks/f_50716_ net/minecraft/world/level/block/Blocks/TARGET +FD: net/minecraft/world/level/block/Blocks/f_50717_ net/minecraft/world/level/block/Blocks/BEE_NEST +FD: net/minecraft/world/level/block/Blocks/f_50718_ net/minecraft/world/level/block/Blocks/BEEHIVE +FD: net/minecraft/world/level/block/Blocks/f_50719_ net/minecraft/world/level/block/Blocks/HONEY_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50720_ net/minecraft/world/level/block/Blocks/HONEYCOMB_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50721_ net/minecraft/world/level/block/Blocks/NETHERITE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50722_ net/minecraft/world/level/block/Blocks/ANCIENT_DEBRIS +FD: net/minecraft/world/level/block/Blocks/f_50723_ net/minecraft/world/level/block/Blocks/CRYING_OBSIDIAN +FD: net/minecraft/world/level/block/Blocks/f_50724_ net/minecraft/world/level/block/Blocks/RESPAWN_ANCHOR +FD: net/minecraft/world/level/block/Blocks/f_50725_ net/minecraft/world/level/block/Blocks/POTTED_CRIMSON_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50726_ net/minecraft/world/level/block/Blocks/POTTED_WARPED_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50727_ net/minecraft/world/level/block/Blocks/POTTED_CRIMSON_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50728_ net/minecraft/world/level/block/Blocks/POTTED_WARPED_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50729_ net/minecraft/world/level/block/Blocks/LODESTONE +FD: net/minecraft/world/level/block/Blocks/f_50730_ net/minecraft/world/level/block/Blocks/BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50731_ net/minecraft/world/level/block/Blocks/BLACKSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50732_ net/minecraft/world/level/block/Blocks/BLACKSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50733_ net/minecraft/world/level/block/Blocks/BLACKSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50734_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50735_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50736_ net/minecraft/world/level/block/Blocks/CRACKED_POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50737_ net/minecraft/world/level/block/Blocks/CHISELED_POLISHED_BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50738_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50739_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50740_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50741_ net/minecraft/world/level/block/Blocks/SPRUCE_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50742_ net/minecraft/world/level/block/Blocks/BIRCH_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50743_ net/minecraft/world/level/block/Blocks/JUNGLE_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50744_ net/minecraft/world/level/block/Blocks/ACACIA_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50745_ net/minecraft/world/level/block/Blocks/DARK_OAK_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50746_ net/minecraft/world/level/block/Blocks/OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50747_ net/minecraft/world/level/block/Blocks/SPRUCE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50748_ net/minecraft/world/level/block/Blocks/BIRCH_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50749_ net/minecraft/world/level/block/Blocks/JUNGLE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50750_ net/minecraft/world/level/block/Blocks/ACACIA_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50751_ net/minecraft/world/level/block/Blocks/DARK_OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50752_ net/minecraft/world/level/block/Blocks/BEDROCK +FD: net/minecraft/world/level/block/BrewingStandBlock/f_50905_ net/minecraft/world/level/block/BrewingStandBlock/HAS_BOTTLE +FD: net/minecraft/world/level/block/BrewingStandBlock/f_50906_ net/minecraft/world/level/block/BrewingStandBlock/SHAPE +FD: net/minecraft/world/level/block/BrushableBlock/f_276488_ net/minecraft/world/level/block/BrushableBlock/DUSTED +FD: net/minecraft/world/level/block/BrushableBlock/f_276507_ net/minecraft/world/level/block/BrushableBlock/brushSound +FD: net/minecraft/world/level/block/BrushableBlock/f_276547_ net/minecraft/world/level/block/BrushableBlock/TICK_DELAY +FD: net/minecraft/world/level/block/BrushableBlock/f_276601_ net/minecraft/world/level/block/BrushableBlock/turnsInto +FD: net/minecraft/world/level/block/BrushableBlock/f_276618_ net/minecraft/world/level/block/BrushableBlock/brushCompletedSound +FD: net/minecraft/world/level/block/BubbleColumnBlock/f_152700_ net/minecraft/world/level/block/BubbleColumnBlock/CHECK_PERIOD +FD: net/minecraft/world/level/block/BubbleColumnBlock/f_50956_ net/minecraft/world/level/block/BubbleColumnBlock/DRAG_DOWN +FD: net/minecraft/world/level/block/BuddingAmethystBlock/f_152722_ net/minecraft/world/level/block/BuddingAmethystBlock/GROWTH_CHANCE +FD: net/minecraft/world/level/block/BuddingAmethystBlock/f_152723_ net/minecraft/world/level/block/BuddingAmethystBlock/DIRECTIONS +FD: net/minecraft/world/level/block/ButtonBlock/f_152736_ net/minecraft/world/level/block/ButtonBlock/PRESSED_DEPTH +FD: net/minecraft/world/level/block/ButtonBlock/f_152737_ net/minecraft/world/level/block/ButtonBlock/UNPRESSED_DEPTH +FD: net/minecraft/world/level/block/ButtonBlock/f_152738_ net/minecraft/world/level/block/ButtonBlock/HALF_AABB_HEIGHT +FD: net/minecraft/world/level/block/ButtonBlock/f_152739_ net/minecraft/world/level/block/ButtonBlock/HALF_AABB_WIDTH +FD: net/minecraft/world/level/block/ButtonBlock/f_243959_ net/minecraft/world/level/block/ButtonBlock/arrowsCanPress +FD: net/minecraft/world/level/block/ButtonBlock/f_244105_ net/minecraft/world/level/block/ButtonBlock/ticksToStayPressed +FD: net/minecraft/world/level/block/ButtonBlock/f_271519_ net/minecraft/world/level/block/ButtonBlock/type +FD: net/minecraft/world/level/block/ButtonBlock/f_51045_ net/minecraft/world/level/block/ButtonBlock/POWERED +FD: net/minecraft/world/level/block/ButtonBlock/f_51046_ net/minecraft/world/level/block/ButtonBlock/CEILING_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51047_ net/minecraft/world/level/block/ButtonBlock/CEILING_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51048_ net/minecraft/world/level/block/ButtonBlock/FLOOR_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51049_ net/minecraft/world/level/block/ButtonBlock/FLOOR_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51050_ net/minecraft/world/level/block/ButtonBlock/NORTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51051_ net/minecraft/world/level/block/ButtonBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51052_ net/minecraft/world/level/block/ButtonBlock/WEST_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51053_ net/minecraft/world/level/block/ButtonBlock/EAST_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51054_ net/minecraft/world/level/block/ButtonBlock/PRESSED_CEILING_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51055_ net/minecraft/world/level/block/ButtonBlock/PRESSED_CEILING_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51056_ net/minecraft/world/level/block/ButtonBlock/PRESSED_FLOOR_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51057_ net/minecraft/world/level/block/ButtonBlock/PRESSED_FLOOR_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51058_ net/minecraft/world/level/block/ButtonBlock/PRESSED_NORTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51059_ net/minecraft/world/level/block/ButtonBlock/PRESSED_SOUTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51060_ net/minecraft/world/level/block/ButtonBlock/PRESSED_WEST_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51061_ net/minecraft/world/level/block/ButtonBlock/PRESSED_EAST_AABB +FD: net/minecraft/world/level/block/ButtonBlock$1/f_51128_ net/minecraft/world/level/block/ButtonBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/ButtonBlock$1/f_51129_ net/minecraft/world/level/block/ButtonBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/CactusBlock/f_152740_ net/minecraft/world/level/block/CactusBlock/MAX_AGE +FD: net/minecraft/world/level/block/CactusBlock/f_152741_ net/minecraft/world/level/block/CactusBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CactusBlock/f_51131_ net/minecraft/world/level/block/CactusBlock/AGE +FD: net/minecraft/world/level/block/CactusBlock/f_51132_ net/minecraft/world/level/block/CactusBlock/COLLISION_SHAPE +FD: net/minecraft/world/level/block/CactusBlock/f_51133_ net/minecraft/world/level/block/CactusBlock/OUTLINE_SHAPE +FD: net/minecraft/world/level/block/CakeBlock/f_152742_ net/minecraft/world/level/block/CakeBlock/MAX_BITES +FD: net/minecraft/world/level/block/CakeBlock/f_152743_ net/minecraft/world/level/block/CakeBlock/FULL_CAKE_SIGNAL +FD: net/minecraft/world/level/block/CakeBlock/f_152744_ net/minecraft/world/level/block/CakeBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CakeBlock/f_152745_ net/minecraft/world/level/block/CakeBlock/AABB_SIZE_PER_BITE +FD: net/minecraft/world/level/block/CakeBlock/f_51180_ net/minecraft/world/level/block/CakeBlock/BITES +FD: net/minecraft/world/level/block/CakeBlock/f_51181_ net/minecraft/world/level/block/CakeBlock/SHAPE_BY_BITE +FD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/f_276692_ net/minecraft/world/level/block/CalibratedSculkSensorBlock/FACING +FD: net/minecraft/world/level/block/CampfireBlock/f_152748_ net/minecraft/world/level/block/CampfireBlock/SMOKE_DISTANCE +FD: net/minecraft/world/level/block/CampfireBlock/f_51226_ net/minecraft/world/level/block/CampfireBlock/SHAPE +FD: net/minecraft/world/level/block/CampfireBlock/f_51227_ net/minecraft/world/level/block/CampfireBlock/LIT +FD: net/minecraft/world/level/block/CampfireBlock/f_51228_ net/minecraft/world/level/block/CampfireBlock/SIGNAL_FIRE +FD: net/minecraft/world/level/block/CampfireBlock/f_51229_ net/minecraft/world/level/block/CampfireBlock/WATERLOGGED +FD: net/minecraft/world/level/block/CampfireBlock/f_51230_ net/minecraft/world/level/block/CampfireBlock/FACING +FD: net/minecraft/world/level/block/CampfireBlock/f_51231_ net/minecraft/world/level/block/CampfireBlock/VIRTUAL_FENCE_POST +FD: net/minecraft/world/level/block/CampfireBlock/f_51232_ net/minecraft/world/level/block/CampfireBlock/spawnParticles +FD: net/minecraft/world/level/block/CampfireBlock/f_51233_ net/minecraft/world/level/block/CampfireBlock/fireDamage +FD: net/minecraft/world/level/block/CandleBlock/f_152788_ net/minecraft/world/level/block/CandleBlock/MIN_CANDLES +FD: net/minecraft/world/level/block/CandleBlock/f_152789_ net/minecraft/world/level/block/CandleBlock/MAX_CANDLES +FD: net/minecraft/world/level/block/CandleBlock/f_152790_ net/minecraft/world/level/block/CandleBlock/CANDLES +FD: net/minecraft/world/level/block/CandleBlock/f_152791_ net/minecraft/world/level/block/CandleBlock/LIT +FD: net/minecraft/world/level/block/CandleBlock/f_152792_ net/minecraft/world/level/block/CandleBlock/WATERLOGGED +FD: net/minecraft/world/level/block/CandleBlock/f_152793_ net/minecraft/world/level/block/CandleBlock/LIGHT_EMISSION +FD: net/minecraft/world/level/block/CandleBlock/f_152794_ net/minecraft/world/level/block/CandleBlock/PARTICLE_OFFSETS +FD: net/minecraft/world/level/block/CandleBlock/f_152795_ net/minecraft/world/level/block/CandleBlock/ONE_AABB +FD: net/minecraft/world/level/block/CandleBlock/f_152796_ net/minecraft/world/level/block/CandleBlock/TWO_AABB +FD: net/minecraft/world/level/block/CandleBlock/f_152797_ net/minecraft/world/level/block/CandleBlock/THREE_AABB +FD: net/minecraft/world/level/block/CandleBlock/f_152798_ net/minecraft/world/level/block/CandleBlock/FOUR_AABB +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152850_ net/minecraft/world/level/block/CandleCakeBlock/LIT +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152851_ net/minecraft/world/level/block/CandleCakeBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152852_ net/minecraft/world/level/block/CandleCakeBlock/CAKE_SHAPE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152853_ net/minecraft/world/level/block/CandleCakeBlock/CANDLE_SHAPE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152854_ net/minecraft/world/level/block/CandleCakeBlock/SHAPE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152855_ net/minecraft/world/level/block/CandleCakeBlock/BY_CANDLE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152856_ net/minecraft/world/level/block/CandleCakeBlock/PARTICLE_OFFSETS +FD: net/minecraft/world/level/block/CarpetBlock/f_152912_ net/minecraft/world/level/block/CarpetBlock/SHAPE +FD: net/minecraft/world/level/block/CarrotBlock/f_51325_ net/minecraft/world/level/block/CarrotBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/CartographyTableBlock/f_51346_ net/minecraft/world/level/block/CartographyTableBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51367_ net/minecraft/world/level/block/CarvedPumpkinBlock/FACING +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51368_ net/minecraft/world/level/block/CarvedPumpkinBlock/snowGolemBase +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51369_ net/minecraft/world/level/block/CarvedPumpkinBlock/snowGolemFull +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51370_ net/minecraft/world/level/block/CarvedPumpkinBlock/ironGolemBase +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51371_ net/minecraft/world/level/block/CarvedPumpkinBlock/ironGolemFull +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51372_ net/minecraft/world/level/block/CarvedPumpkinBlock/PUMPKINS_PREDICATE +FD: net/minecraft/world/level/block/CauldronBlock/f_182448_ net/minecraft/world/level/block/CauldronBlock/RAIN_FILL_CHANCE +FD: net/minecraft/world/level/block/CauldronBlock/f_182449_ net/minecraft/world/level/block/CauldronBlock/POWDER_SNOW_FILL_CHANCE +FD: net/minecraft/world/level/block/CaveVines/f_152948_ net/minecraft/world/level/block/CaveVines/SHAPE +FD: net/minecraft/world/level/block/CaveVines/f_152949_ net/minecraft/world/level/block/CaveVines/BERRIES +FD: net/minecraft/world/level/block/CaveVinesBlock/f_152957_ net/minecraft/world/level/block/CaveVinesBlock/CHANCE_OF_BERRIES_ON_GROWTH +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_243683_ net/minecraft/world/level/block/CeilingHangingSignBlock/AABBS +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_243835_ net/minecraft/world/level/block/CeilingHangingSignBlock/ATTACHED +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_244083_ net/minecraft/world/level/block/CeilingHangingSignBlock/ROTATION +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_244092_ net/minecraft/world/level/block/CeilingHangingSignBlock/SHAPE +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_244550_ net/minecraft/world/level/block/CeilingHangingSignBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/ChainBlock/f_153033_ net/minecraft/world/level/block/ChainBlock/AABB_MIN +FD: net/minecraft/world/level/block/ChainBlock/f_153034_ net/minecraft/world/level/block/ChainBlock/AABB_MAX +FD: net/minecraft/world/level/block/ChainBlock/f_51446_ net/minecraft/world/level/block/ChainBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ChainBlock/f_51447_ net/minecraft/world/level/block/ChainBlock/Y_AXIS_AABB +FD: net/minecraft/world/level/block/ChainBlock/f_51448_ net/minecraft/world/level/block/ChainBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/ChainBlock/f_51449_ net/minecraft/world/level/block/ChainBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/ChainBlock$1/f_51476_ net/minecraft/world/level/block/ChainBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/ChangeOverTimeBlock/f_153035_ net/minecraft/world/level/block/ChangeOverTimeBlock/SCAN_DISTANCE +FD: net/minecraft/world/level/block/ChestBlock/f_153051_ net/minecraft/world/level/block/ChestBlock/EVENT_SET_OPEN_COUNT +FD: net/minecraft/world/level/block/ChestBlock/f_153052_ net/minecraft/world/level/block/ChestBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/ChestBlock/f_153053_ net/minecraft/world/level/block/ChestBlock/AABB_HEIGHT +FD: net/minecraft/world/level/block/ChestBlock/f_51478_ net/minecraft/world/level/block/ChestBlock/FACING +FD: net/minecraft/world/level/block/ChestBlock/f_51479_ net/minecraft/world/level/block/ChestBlock/TYPE +FD: net/minecraft/world/level/block/ChestBlock/f_51480_ net/minecraft/world/level/block/ChestBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ChestBlock/f_51481_ net/minecraft/world/level/block/ChestBlock/NORTH_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51482_ net/minecraft/world/level/block/ChestBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51483_ net/minecraft/world/level/block/ChestBlock/WEST_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51484_ net/minecraft/world/level/block/ChestBlock/EAST_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51485_ net/minecraft/world/level/block/ChestBlock/AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51486_ net/minecraft/world/level/block/ChestBlock/CHEST_COMBINER +FD: net/minecraft/world/level/block/ChestBlock/f_51487_ net/minecraft/world/level/block/ChestBlock/MENU_PROVIDER_COMBINER +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51612_ net/minecraft/world/level/block/ChestBlock$2$1/val$first +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51613_ net/minecraft/world/level/block/ChestBlock$2$1/val$second +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51614_ net/minecraft/world/level/block/ChestBlock$2$1/val$container +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51615_ net/minecraft/world/level/block/ChestBlock$2$1/this$0 +FD: net/minecraft/world/level/block/ChestBlock$3/f_51626_ net/minecraft/world/level/block/ChestBlock$3/val$entity +FD: net/minecraft/world/level/block/ChestBlock$4/f_51645_ net/minecraft/world/level/block/ChestBlock$4/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock/f_260522_ net/minecraft/world/level/block/ChiseledBookShelfBlock/MAX_BOOKS_IN_STORAGE +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock/f_260633_ net/minecraft/world/level/block/ChiseledBookShelfBlock/BOOKS_PER_ROW +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock/f_260698_ net/minecraft/world/level/block/ChiseledBookShelfBlock/SLOT_OCCUPIED_PROPERTIES +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock$1/f_260481_ net/minecraft/world/level/block/ChiseledBookShelfBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/ChorusFlowerBlock/f_153067_ net/minecraft/world/level/block/ChorusFlowerBlock/DEAD_AGE +FD: net/minecraft/world/level/block/ChorusFlowerBlock/f_51647_ net/minecraft/world/level/block/ChorusFlowerBlock/AGE +FD: net/minecraft/world/level/block/ChorusFlowerBlock/f_51648_ net/minecraft/world/level/block/ChorusFlowerBlock/plant +FD: net/minecraft/world/level/block/CocoaBlock/f_153068_ net/minecraft/world/level/block/CocoaBlock/MAX_AGE +FD: net/minecraft/world/level/block/CocoaBlock/f_153069_ net/minecraft/world/level/block/CocoaBlock/AGE_0_WIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153070_ net/minecraft/world/level/block/CocoaBlock/AGE_0_HEIGHT +FD: net/minecraft/world/level/block/CocoaBlock/f_153071_ net/minecraft/world/level/block/CocoaBlock/AGE_0_HALFWIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153072_ net/minecraft/world/level/block/CocoaBlock/AGE_1_WIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153073_ net/minecraft/world/level/block/CocoaBlock/AGE_1_HEIGHT +FD: net/minecraft/world/level/block/CocoaBlock/f_153074_ net/minecraft/world/level/block/CocoaBlock/AGE_1_HALFWIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153075_ net/minecraft/world/level/block/CocoaBlock/AGE_2_WIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153076_ net/minecraft/world/level/block/CocoaBlock/AGE_2_HEIGHT +FD: net/minecraft/world/level/block/CocoaBlock/f_153077_ net/minecraft/world/level/block/CocoaBlock/AGE_2_HALFWIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_51736_ net/minecraft/world/level/block/CocoaBlock/AGE +FD: net/minecraft/world/level/block/CocoaBlock/f_51737_ net/minecraft/world/level/block/CocoaBlock/EAST_AABB +FD: net/minecraft/world/level/block/CocoaBlock/f_51738_ net/minecraft/world/level/block/CocoaBlock/WEST_AABB +FD: net/minecraft/world/level/block/CocoaBlock/f_51739_ net/minecraft/world/level/block/CocoaBlock/NORTH_AABB +FD: net/minecraft/world/level/block/CocoaBlock/f_51740_ net/minecraft/world/level/block/CocoaBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/CocoaBlock$1/f_51791_ net/minecraft/world/level/block/CocoaBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/CommandBlock/f_153078_ net/minecraft/world/level/block/CommandBlock/automatic +FD: net/minecraft/world/level/block/CommandBlock/f_51793_ net/minecraft/world/level/block/CommandBlock/FACING +FD: net/minecraft/world/level/block/CommandBlock/f_51794_ net/minecraft/world/level/block/CommandBlock/CONDITIONAL +FD: net/minecraft/world/level/block/CommandBlock/f_51795_ net/minecraft/world/level/block/CommandBlock/LOGGER +FD: net/minecraft/world/level/block/ComparatorBlock/f_51854_ net/minecraft/world/level/block/ComparatorBlock/MODE +FD: net/minecraft/world/level/block/ComposterBlock/f_153088_ net/minecraft/world/level/block/ComposterBlock/READY +FD: net/minecraft/world/level/block/ComposterBlock/f_153089_ net/minecraft/world/level/block/ComposterBlock/MIN_LEVEL +FD: net/minecraft/world/level/block/ComposterBlock/f_153090_ net/minecraft/world/level/block/ComposterBlock/MAX_LEVEL +FD: net/minecraft/world/level/block/ComposterBlock/f_153091_ net/minecraft/world/level/block/ComposterBlock/AABB_SIDE_THICKNESS +FD: net/minecraft/world/level/block/ComposterBlock/f_51913_ net/minecraft/world/level/block/ComposterBlock/LEVEL +FD: net/minecraft/world/level/block/ComposterBlock/f_51914_ net/minecraft/world/level/block/ComposterBlock/COMPOSTABLES +FD: net/minecraft/world/level/block/ComposterBlock/f_51915_ net/minecraft/world/level/block/ComposterBlock/OUTER_SHAPE +FD: net/minecraft/world/level/block/ComposterBlock/f_51916_ net/minecraft/world/level/block/ComposterBlock/SHAPES +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52017_ net/minecraft/world/level/block/ComposterBlock$InputContainer/state +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52018_ net/minecraft/world/level/block/ComposterBlock$InputContainer/level +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52019_ net/minecraft/world/level/block/ComposterBlock$InputContainer/pos +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52020_ net/minecraft/world/level/block/ComposterBlock$InputContainer/changed +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52037_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/state +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52038_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/level +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52039_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/pos +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52040_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/changed +FD: net/minecraft/world/level/block/ConcretePowderBlock/f_52058_ net/minecraft/world/level/block/ConcretePowderBlock/concrete +FD: net/minecraft/world/level/block/ConduitBlock/f_153092_ net/minecraft/world/level/block/ConduitBlock/SIZE +FD: net/minecraft/world/level/block/ConduitBlock/f_52090_ net/minecraft/world/level/block/ConduitBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ConduitBlock/f_52091_ net/minecraft/world/level/block/ConduitBlock/SHAPE +FD: net/minecraft/world/level/block/CoralBlock/f_52128_ net/minecraft/world/level/block/CoralBlock/deadBlock +FD: net/minecraft/world/level/block/CoralFanBlock/f_52149_ net/minecraft/world/level/block/CoralFanBlock/deadBlock +FD: net/minecraft/world/level/block/CoralPlantBlock/f_153100_ net/minecraft/world/level/block/CoralPlantBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CoralPlantBlock/f_52171_ net/minecraft/world/level/block/CoralPlantBlock/SHAPE +FD: net/minecraft/world/level/block/CoralPlantBlock/f_52172_ net/minecraft/world/level/block/CoralPlantBlock/deadBlock +FD: net/minecraft/world/level/block/CoralWallFanBlock/f_52200_ net/minecraft/world/level/block/CoralWallFanBlock/deadBlock +FD: net/minecraft/world/level/block/CraftingTableBlock/f_52222_ net/minecraft/world/level/block/CraftingTableBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/CropBlock/f_153107_ net/minecraft/world/level/block/CropBlock/MAX_AGE +FD: net/minecraft/world/level/block/CropBlock/f_52243_ net/minecraft/world/level/block/CropBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/CropBlock/f_52244_ net/minecraft/world/level/block/CropBlock/AGE +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52309_ net/minecraft/world/level/block/CrossCollisionBlock/NORTH +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52310_ net/minecraft/world/level/block/CrossCollisionBlock/EAST +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52311_ net/minecraft/world/level/block/CrossCollisionBlock/SOUTH +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52312_ net/minecraft/world/level/block/CrossCollisionBlock/WEST +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52313_ net/minecraft/world/level/block/CrossCollisionBlock/WATERLOGGED +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52314_ net/minecraft/world/level/block/CrossCollisionBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52315_ net/minecraft/world/level/block/CrossCollisionBlock/collisionShapeByIndex +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52316_ net/minecraft/world/level/block/CrossCollisionBlock/shapeByIndex +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52317_ net/minecraft/world/level/block/CrossCollisionBlock/stateToIndex +FD: net/minecraft/world/level/block/CrossCollisionBlock$1/f_52367_ net/minecraft/world/level/block/CrossCollisionBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/CrossCollisionBlock$1/f_52368_ net/minecraft/world/level/block/CrossCollisionBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/DaylightDetectorBlock/f_52377_ net/minecraft/world/level/block/DaylightDetectorBlock/POWER +FD: net/minecraft/world/level/block/DaylightDetectorBlock/f_52378_ net/minecraft/world/level/block/DaylightDetectorBlock/INVERTED +FD: net/minecraft/world/level/block/DaylightDetectorBlock/f_52379_ net/minecraft/world/level/block/DaylightDetectorBlock/SHAPE +FD: net/minecraft/world/level/block/DeadBushBlock/f_153120_ net/minecraft/world/level/block/DeadBushBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/DeadBushBlock/f_52414_ net/minecraft/world/level/block/DeadBushBlock/SHAPE +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_271091_ net/minecraft/world/level/block/DecoratedPotBlock/BOUNDING_BOX +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_271222_ net/minecraft/world/level/block/DecoratedPotBlock/WATERLOGGED +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_271251_ net/minecraft/world/level/block/DecoratedPotBlock/HORIZONTAL_FACING +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_276567_ net/minecraft/world/level/block/DecoratedPotBlock/CRACKED +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_283767_ net/minecraft/world/level/block/DecoratedPotBlock/SHERDS_DYNAMIC_DROP_ID +FD: net/minecraft/world/level/block/DetectorRailBlock/f_153121_ net/minecraft/world/level/block/DetectorRailBlock/PRESSED_CHECK_PERIOD +FD: net/minecraft/world/level/block/DetectorRailBlock/f_52427_ net/minecraft/world/level/block/DetectorRailBlock/SHAPE +FD: net/minecraft/world/level/block/DetectorRailBlock/f_52428_ net/minecraft/world/level/block/DetectorRailBlock/POWERED +FD: net/minecraft/world/level/block/DetectorRailBlock$1/f_52491_ net/minecraft/world/level/block/DetectorRailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/DetectorRailBlock$1/f_52492_ net/minecraft/world/level/block/DetectorRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/DetectorRailBlock$1/f_52493_ net/minecraft/world/level/block/DetectorRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/DiodeBlock/f_52495_ net/minecraft/world/level/block/DiodeBlock/SHAPE +FD: net/minecraft/world/level/block/DiodeBlock/f_52496_ net/minecraft/world/level/block/DiodeBlock/POWERED +FD: net/minecraft/world/level/block/DirectionalBlock/f_52588_ net/minecraft/world/level/block/DirectionalBlock/FACING +FD: net/minecraft/world/level/block/DirtPathBlock/f_153126_ net/minecraft/world/level/block/DirtPathBlock/SHAPE +FD: net/minecraft/world/level/block/DispenserBlock/f_153160_ net/minecraft/world/level/block/DispenserBlock/TRIGGER_DURATION +FD: net/minecraft/world/level/block/DispenserBlock/f_52659_ net/minecraft/world/level/block/DispenserBlock/FACING +FD: net/minecraft/world/level/block/DispenserBlock/f_52660_ net/minecraft/world/level/block/DispenserBlock/TRIGGERED +FD: net/minecraft/world/level/block/DispenserBlock/f_52661_ net/minecraft/world/level/block/DispenserBlock/DISPENSER_REGISTRY +FD: net/minecraft/world/level/block/DoorBlock/f_153164_ net/minecraft/world/level/block/DoorBlock/AABB_DOOR_THICKNESS +FD: net/minecraft/world/level/block/DoorBlock/f_271255_ net/minecraft/world/level/block/DoorBlock/type +FD: net/minecraft/world/level/block/DoorBlock/f_52726_ net/minecraft/world/level/block/DoorBlock/FACING +FD: net/minecraft/world/level/block/DoorBlock/f_52727_ net/minecraft/world/level/block/DoorBlock/OPEN +FD: net/minecraft/world/level/block/DoorBlock/f_52728_ net/minecraft/world/level/block/DoorBlock/HINGE +FD: net/minecraft/world/level/block/DoorBlock/f_52729_ net/minecraft/world/level/block/DoorBlock/POWERED +FD: net/minecraft/world/level/block/DoorBlock/f_52730_ net/minecraft/world/level/block/DoorBlock/HALF +FD: net/minecraft/world/level/block/DoorBlock/f_52731_ net/minecraft/world/level/block/DoorBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/DoorBlock/f_52732_ net/minecraft/world/level/block/DoorBlock/NORTH_AABB +FD: net/minecraft/world/level/block/DoorBlock/f_52733_ net/minecraft/world/level/block/DoorBlock/WEST_AABB +FD: net/minecraft/world/level/block/DoorBlock/f_52734_ net/minecraft/world/level/block/DoorBlock/EAST_AABB +FD: net/minecraft/world/level/block/DoorBlock$1/f_52819_ net/minecraft/world/level/block/DoorBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/DoorBlock$1/f_52820_ net/minecraft/world/level/block/DoorBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/$VALUES net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/$VALUES +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/FIRST net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/FIRST +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SECOND net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SECOND +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SINGLE net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SINGLE +FD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/f_52846_ net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/first +FD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/f_52847_ net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/second +FD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/f_52853_ net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/single +FD: net/minecraft/world/level/block/DoublePlantBlock/f_52858_ net/minecraft/world/level/block/DoublePlantBlock/HALF +FD: net/minecraft/world/level/block/DragonEggBlock/f_52908_ net/minecraft/world/level/block/DragonEggBlock/SHAPE +FD: net/minecraft/world/level/block/DropExperienceBlock/f_221079_ net/minecraft/world/level/block/DropExperienceBlock/xpRange +FD: net/minecraft/world/level/block/DropperBlock/f_52939_ net/minecraft/world/level/block/DropperBlock/DISPENSE_BEHAVIOUR +FD: net/minecraft/world/level/block/EnchantmentTableBlock/f_207902_ net/minecraft/world/level/block/EnchantmentTableBlock/BOOKSHELF_OFFSETS +FD: net/minecraft/world/level/block/EnchantmentTableBlock/f_52950_ net/minecraft/world/level/block/EnchantmentTableBlock/SHAPE +FD: net/minecraft/world/level/block/EndPortalBlock/f_53014_ net/minecraft/world/level/block/EndPortalBlock/SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53042_ net/minecraft/world/level/block/EndPortalFrameBlock/FACING +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53043_ net/minecraft/world/level/block/EndPortalFrameBlock/HAS_EYE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53044_ net/minecraft/world/level/block/EndPortalFrameBlock/BASE_SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53045_ net/minecraft/world/level/block/EndPortalFrameBlock/EYE_SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53046_ net/minecraft/world/level/block/EndPortalFrameBlock/FULL_SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53047_ net/minecraft/world/level/block/EndPortalFrameBlock/portalShape +FD: net/minecraft/world/level/block/EnderChestBlock/f_53115_ net/minecraft/world/level/block/EnderChestBlock/FACING +FD: net/minecraft/world/level/block/EnderChestBlock/f_53116_ net/minecraft/world/level/block/EnderChestBlock/WATERLOGGED +FD: net/minecraft/world/level/block/EnderChestBlock/f_53117_ net/minecraft/world/level/block/EnderChestBlock/SHAPE +FD: net/minecraft/world/level/block/EnderChestBlock/f_53118_ net/minecraft/world/level/block/EnderChestBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/f_53179_ net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/FACE +FD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/f_53202_ net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/FarmBlock/f_153225_ net/minecraft/world/level/block/FarmBlock/MAX_MOISTURE +FD: net/minecraft/world/level/block/FarmBlock/f_53243_ net/minecraft/world/level/block/FarmBlock/MOISTURE +FD: net/minecraft/world/level/block/FarmBlock/f_53244_ net/minecraft/world/level/block/FarmBlock/SHAPE +FD: net/minecraft/world/level/block/FenceBlock/f_53300_ net/minecraft/world/level/block/FenceBlock/occlusionByIndex +FD: net/minecraft/world/level/block/FenceGateBlock/f_252514_ net/minecraft/world/level/block/FenceGateBlock/X_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_252518_ net/minecraft/world/level/block/FenceGateBlock/Z_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_271446_ net/minecraft/world/level/block/FenceGateBlock/type +FD: net/minecraft/world/level/block/FenceGateBlock/f_53341_ net/minecraft/world/level/block/FenceGateBlock/OPEN +FD: net/minecraft/world/level/block/FenceGateBlock/f_53342_ net/minecraft/world/level/block/FenceGateBlock/POWERED +FD: net/minecraft/world/level/block/FenceGateBlock/f_53343_ net/minecraft/world/level/block/FenceGateBlock/IN_WALL +FD: net/minecraft/world/level/block/FenceGateBlock/f_53344_ net/minecraft/world/level/block/FenceGateBlock/Z_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53345_ net/minecraft/world/level/block/FenceGateBlock/X_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53346_ net/minecraft/world/level/block/FenceGateBlock/Z_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock/f_53347_ net/minecraft/world/level/block/FenceGateBlock/X_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock/f_53348_ net/minecraft/world/level/block/FenceGateBlock/Z_COLLISION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53349_ net/minecraft/world/level/block/FenceGateBlock/X_COLLISION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53350_ net/minecraft/world/level/block/FenceGateBlock/Z_OCCLUSION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53351_ net/minecraft/world/level/block/FenceGateBlock/X_OCCLUSION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53352_ net/minecraft/world/level/block/FenceGateBlock/Z_OCCLUSION_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock/f_53353_ net/minecraft/world/level/block/FenceGateBlock/X_OCCLUSION_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock$1/f_53406_ net/minecraft/world/level/block/FenceGateBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/FireBlock/f_153260_ net/minecraft/world/level/block/FireBlock/BURN_INSTANT +FD: net/minecraft/world/level/block/FireBlock/f_153261_ net/minecraft/world/level/block/FireBlock/BURN_EASY +FD: net/minecraft/world/level/block/FireBlock/f_153262_ net/minecraft/world/level/block/FireBlock/BURN_MEDIUM +FD: net/minecraft/world/level/block/FireBlock/f_153263_ net/minecraft/world/level/block/FireBlock/BURN_HARD +FD: net/minecraft/world/level/block/FireBlock/f_153264_ net/minecraft/world/level/block/FireBlock/MAX_AGE +FD: net/minecraft/world/level/block/FireBlock/f_221143_ net/minecraft/world/level/block/FireBlock/IGNITE_INSTANT +FD: net/minecraft/world/level/block/FireBlock/f_221144_ net/minecraft/world/level/block/FireBlock/IGNITE_EASY +FD: net/minecraft/world/level/block/FireBlock/f_221145_ net/minecraft/world/level/block/FireBlock/IGNITE_MEDIUM +FD: net/minecraft/world/level/block/FireBlock/f_221146_ net/minecraft/world/level/block/FireBlock/IGNITE_HARD +FD: net/minecraft/world/level/block/FireBlock/f_221147_ net/minecraft/world/level/block/FireBlock/igniteOdds +FD: net/minecraft/world/level/block/FireBlock/f_53408_ net/minecraft/world/level/block/FireBlock/AGE +FD: net/minecraft/world/level/block/FireBlock/f_53409_ net/minecraft/world/level/block/FireBlock/NORTH +FD: net/minecraft/world/level/block/FireBlock/f_53410_ net/minecraft/world/level/block/FireBlock/EAST +FD: net/minecraft/world/level/block/FireBlock/f_53411_ net/minecraft/world/level/block/FireBlock/SOUTH +FD: net/minecraft/world/level/block/FireBlock/f_53412_ net/minecraft/world/level/block/FireBlock/WEST +FD: net/minecraft/world/level/block/FireBlock/f_53413_ net/minecraft/world/level/block/FireBlock/UP +FD: net/minecraft/world/level/block/FireBlock/f_53414_ net/minecraft/world/level/block/FireBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/FireBlock/f_53415_ net/minecraft/world/level/block/FireBlock/UP_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53416_ net/minecraft/world/level/block/FireBlock/WEST_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53417_ net/minecraft/world/level/block/FireBlock/EAST_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53418_ net/minecraft/world/level/block/FireBlock/NORTH_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53419_ net/minecraft/world/level/block/FireBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53420_ net/minecraft/world/level/block/FireBlock/shapesCache +FD: net/minecraft/world/level/block/FireBlock/f_53422_ net/minecraft/world/level/block/FireBlock/burnOdds +FD: net/minecraft/world/level/block/FlowerBlock/f_153265_ net/minecraft/world/level/block/FlowerBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/FlowerBlock/f_53507_ net/minecraft/world/level/block/FlowerBlock/SHAPE +FD: net/minecraft/world/level/block/FlowerBlock/f_53508_ net/minecraft/world/level/block/FlowerBlock/suspiciousStewEffect +FD: net/minecraft/world/level/block/FlowerBlock/f_53509_ net/minecraft/world/level/block/FlowerBlock/effectDuration +FD: net/minecraft/world/level/block/FlowerPotBlock/f_153266_ net/minecraft/world/level/block/FlowerPotBlock/AABB_SIZE +FD: net/minecraft/world/level/block/FlowerPotBlock/f_53523_ net/minecraft/world/level/block/FlowerPotBlock/SHAPE +FD: net/minecraft/world/level/block/FlowerPotBlock/f_53524_ net/minecraft/world/level/block/FlowerPotBlock/POTTED_BY_CONTENT +FD: net/minecraft/world/level/block/FlowerPotBlock/f_53525_ net/minecraft/world/level/block/FlowerPotBlock/content +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221168_ net/minecraft/world/level/block/FrogspawnBlock/SHAPE +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221169_ net/minecraft/world/level/block/FrogspawnBlock/MIN_TADPOLES_SPAWN +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221170_ net/minecraft/world/level/block/FrogspawnBlock/MAX_TADPOLES_SPAWN +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221171_ net/minecraft/world/level/block/FrogspawnBlock/DEFAULT_MIN_HATCH_TICK_DELAY +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221172_ net/minecraft/world/level/block/FrogspawnBlock/DEFAULT_MAX_HATCH_TICK_DELAY +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221173_ net/minecraft/world/level/block/FrogspawnBlock/minHatchTickDelay +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221174_ net/minecraft/world/level/block/FrogspawnBlock/maxHatchTickDelay +FD: net/minecraft/world/level/block/FrostedIceBlock/f_153268_ net/minecraft/world/level/block/FrostedIceBlock/MAX_AGE +FD: net/minecraft/world/level/block/FrostedIceBlock/f_153269_ net/minecraft/world/level/block/FrostedIceBlock/NEIGHBORS_TO_AGE +FD: net/minecraft/world/level/block/FrostedIceBlock/f_153270_ net/minecraft/world/level/block/FrostedIceBlock/NEIGHBORS_TO_MELT +FD: net/minecraft/world/level/block/FrostedIceBlock/f_53561_ net/minecraft/world/level/block/FrostedIceBlock/AGE +FD: net/minecraft/world/level/block/FungusBlock/f_153271_ net/minecraft/world/level/block/FungusBlock/BONEMEAL_SUCCESS_PROBABILITY +FD: net/minecraft/world/level/block/FungusBlock/f_256997_ net/minecraft/world/level/block/FungusBlock/requiredBlock +FD: net/minecraft/world/level/block/FungusBlock/f_53596_ net/minecraft/world/level/block/FungusBlock/SHAPE +FD: net/minecraft/world/level/block/FungusBlock/f_53597_ net/minecraft/world/level/block/FungusBlock/feature +FD: net/minecraft/world/level/block/GlowLichenBlock/f_153279_ net/minecraft/world/level/block/GlowLichenBlock/WATERLOGGED +FD: net/minecraft/world/level/block/GlowLichenBlock/f_221257_ net/minecraft/world/level/block/GlowLichenBlock/spreader +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53741_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53742_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53743_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53744_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53745_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53746_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53747_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53748_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53749_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53750_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53751_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53752_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53753_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53754_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53755_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53756_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53757_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53758_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53759_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53760_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53761_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53762_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53763_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53764_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53765_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53766_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53767_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53768_ net/minecraft/world/level/block/GrindstoneBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53769_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53770_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53771_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53772_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53773_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53774_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53775_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53776_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53777_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53778_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53779_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53780_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53781_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53782_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53783_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53784_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53785_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53786_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53787_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53788_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53789_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53790_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53791_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53792_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53793_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53794_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53795_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53796_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53797_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53798_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53799_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53800_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53801_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53802_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53803_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53804_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53805_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock$1/f_53857_ net/minecraft/world/level/block/GrindstoneBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/GrowingPlantBlock/f_53859_ net/minecraft/world/level/block/GrowingPlantBlock/growthDirection +FD: net/minecraft/world/level/block/GrowingPlantBlock/f_53860_ net/minecraft/world/level/block/GrowingPlantBlock/scheduleFluidTicks +FD: net/minecraft/world/level/block/GrowingPlantBlock/f_53861_ net/minecraft/world/level/block/GrowingPlantBlock/shape +FD: net/minecraft/world/level/block/GrowingPlantHeadBlock/f_153328_ net/minecraft/world/level/block/GrowingPlantHeadBlock/MAX_AGE +FD: net/minecraft/world/level/block/GrowingPlantHeadBlock/f_53924_ net/minecraft/world/level/block/GrowingPlantHeadBlock/AGE +FD: net/minecraft/world/level/block/GrowingPlantHeadBlock/f_53925_ net/minecraft/world/level/block/GrowingPlantHeadBlock/growPerTickProbability +FD: net/minecraft/world/level/block/HangingRootsBlock/f_153333_ net/minecraft/world/level/block/HangingRootsBlock/SHAPE +FD: net/minecraft/world/level/block/HangingRootsBlock/f_153334_ net/minecraft/world/level/block/HangingRootsBlock/WATERLOGGED +FD: net/minecraft/world/level/block/HoneyBlock/f_153367_ net/minecraft/world/level/block/HoneyBlock/SLIDE_STARTS_WHEN_VERTICAL_SPEED_IS_AT_LEAST +FD: net/minecraft/world/level/block/HoneyBlock/f_153368_ net/minecraft/world/level/block/HoneyBlock/MIN_FALL_SPEED_TO_BE_CONSIDERED_SLIDING +FD: net/minecraft/world/level/block/HoneyBlock/f_153369_ net/minecraft/world/level/block/HoneyBlock/THROTTLE_SLIDE_SPEED_TO +FD: net/minecraft/world/level/block/HoneyBlock/f_153370_ net/minecraft/world/level/block/HoneyBlock/SLIDE_ADVANCEMENT_CHECK_INTERVAL +FD: net/minecraft/world/level/block/HoneyBlock/f_53982_ net/minecraft/world/level/block/HoneyBlock/SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54021_ net/minecraft/world/level/block/HopperBlock/FACING +FD: net/minecraft/world/level/block/HopperBlock/f_54022_ net/minecraft/world/level/block/HopperBlock/ENABLED +FD: net/minecraft/world/level/block/HopperBlock/f_54023_ net/minecraft/world/level/block/HopperBlock/TOP +FD: net/minecraft/world/level/block/HopperBlock/f_54024_ net/minecraft/world/level/block/HopperBlock/FUNNEL +FD: net/minecraft/world/level/block/HopperBlock/f_54025_ net/minecraft/world/level/block/HopperBlock/CONVEX_BASE +FD: net/minecraft/world/level/block/HopperBlock/f_54026_ net/minecraft/world/level/block/HopperBlock/BASE +FD: net/minecraft/world/level/block/HopperBlock/f_54027_ net/minecraft/world/level/block/HopperBlock/DOWN_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54028_ net/minecraft/world/level/block/HopperBlock/EAST_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54029_ net/minecraft/world/level/block/HopperBlock/NORTH_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54030_ net/minecraft/world/level/block/HopperBlock/SOUTH_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54031_ net/minecraft/world/level/block/HopperBlock/WEST_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54032_ net/minecraft/world/level/block/HopperBlock/DOWN_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54033_ net/minecraft/world/level/block/HopperBlock/EAST_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54034_ net/minecraft/world/level/block/HopperBlock/NORTH_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54035_ net/minecraft/world/level/block/HopperBlock/SOUTH_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54036_ net/minecraft/world/level/block/HopperBlock/WEST_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock$1/f_54115_ net/minecraft/world/level/block/HopperBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/HorizontalDirectionalBlock/f_54117_ net/minecraft/world/level/block/HorizontalDirectionalBlock/FACING +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54127_ net/minecraft/world/level/block/HugeMushroomBlock/NORTH +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54128_ net/minecraft/world/level/block/HugeMushroomBlock/EAST +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54129_ net/minecraft/world/level/block/HugeMushroomBlock/SOUTH +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54130_ net/minecraft/world/level/block/HugeMushroomBlock/WEST +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54131_ net/minecraft/world/level/block/HugeMushroomBlock/UP +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54132_ net/minecraft/world/level/block/HugeMushroomBlock/DOWN +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54133_ net/minecraft/world/level/block/HugeMushroomBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/InfestedBlock/f_153421_ net/minecraft/world/level/block/InfestedBlock/HOST_TO_INFESTED_STATES +FD: net/minecraft/world/level/block/InfestedBlock/f_153422_ net/minecraft/world/level/block/InfestedBlock/INFESTED_TO_HOST_STATES +FD: net/minecraft/world/level/block/InfestedBlock/f_54174_ net/minecraft/world/level/block/InfestedBlock/hostBlock +FD: net/minecraft/world/level/block/InfestedBlock/f_54175_ net/minecraft/world/level/block/InfestedBlock/BLOCK_BY_HOST_BLOCK +FD: net/minecraft/world/level/block/JigsawBlock/f_54222_ net/minecraft/world/level/block/JigsawBlock/ORIENTATION +FD: net/minecraft/world/level/block/JukeboxBlock/f_54254_ net/minecraft/world/level/block/JukeboxBlock/HAS_RECORD +FD: net/minecraft/world/level/block/KelpBlock/f_153453_ net/minecraft/world/level/block/KelpBlock/GROW_PER_TICK_PROBABILITY +FD: net/minecraft/world/level/block/KelpBlock/f_54297_ net/minecraft/world/level/block/KelpBlock/SHAPE +FD: net/minecraft/world/level/block/LadderBlock/f_153458_ net/minecraft/world/level/block/LadderBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/LadderBlock/f_54337_ net/minecraft/world/level/block/LadderBlock/FACING +FD: net/minecraft/world/level/block/LadderBlock/f_54338_ net/minecraft/world/level/block/LadderBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LadderBlock/f_54339_ net/minecraft/world/level/block/LadderBlock/EAST_AABB +FD: net/minecraft/world/level/block/LadderBlock/f_54340_ net/minecraft/world/level/block/LadderBlock/WEST_AABB +FD: net/minecraft/world/level/block/LadderBlock/f_54341_ net/minecraft/world/level/block/LadderBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/LadderBlock/f_54342_ net/minecraft/world/level/block/LadderBlock/NORTH_AABB +FD: net/minecraft/world/level/block/LadderBlock$1/f_54378_ net/minecraft/world/level/block/LadderBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/LanternBlock/f_153459_ net/minecraft/world/level/block/LanternBlock/HANGING +FD: net/minecraft/world/level/block/LanternBlock/f_153460_ net/minecraft/world/level/block/LanternBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LanternBlock/f_153461_ net/minecraft/world/level/block/LanternBlock/AABB +FD: net/minecraft/world/level/block/LanternBlock/f_153462_ net/minecraft/world/level/block/LanternBlock/HANGING_AABB +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153512_ net/minecraft/world/level/block/LayeredCauldronBlock/MIN_FILL_LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153513_ net/minecraft/world/level/block/LayeredCauldronBlock/MAX_FILL_LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153514_ net/minecraft/world/level/block/LayeredCauldronBlock/LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153515_ net/minecraft/world/level/block/LayeredCauldronBlock/RAIN +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153516_ net/minecraft/world/level/block/LayeredCauldronBlock/SNOW +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153517_ net/minecraft/world/level/block/LayeredCauldronBlock/BASE_CONTENT_HEIGHT +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153518_ net/minecraft/world/level/block/LayeredCauldronBlock/HEIGHT_PER_LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153519_ net/minecraft/world/level/block/LayeredCauldronBlock/fillPredicate +FD: net/minecraft/world/level/block/LeavesBlock/f_153563_ net/minecraft/world/level/block/LeavesBlock/DECAY_DISTANCE +FD: net/minecraft/world/level/block/LeavesBlock/f_153564_ net/minecraft/world/level/block/LeavesBlock/TICK_DELAY +FD: net/minecraft/world/level/block/LeavesBlock/f_221367_ net/minecraft/world/level/block/LeavesBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LeavesBlock/f_54418_ net/minecraft/world/level/block/LeavesBlock/DISTANCE +FD: net/minecraft/world/level/block/LeavesBlock/f_54419_ net/minecraft/world/level/block/LeavesBlock/PERSISTENT +FD: net/minecraft/world/level/block/LecternBlock/f_153565_ net/minecraft/world/level/block/LecternBlock/PAGE_CHANGE_IMPULSE_TICKS +FD: net/minecraft/world/level/block/LecternBlock/f_54465_ net/minecraft/world/level/block/LecternBlock/FACING +FD: net/minecraft/world/level/block/LecternBlock/f_54466_ net/minecraft/world/level/block/LecternBlock/POWERED +FD: net/minecraft/world/level/block/LecternBlock/f_54467_ net/minecraft/world/level/block/LecternBlock/HAS_BOOK +FD: net/minecraft/world/level/block/LecternBlock/f_54468_ net/minecraft/world/level/block/LecternBlock/SHAPE_BASE +FD: net/minecraft/world/level/block/LecternBlock/f_54469_ net/minecraft/world/level/block/LecternBlock/SHAPE_POST +FD: net/minecraft/world/level/block/LecternBlock/f_54470_ net/minecraft/world/level/block/LecternBlock/SHAPE_COMMON +FD: net/minecraft/world/level/block/LecternBlock/f_54471_ net/minecraft/world/level/block/LecternBlock/SHAPE_TOP_PLATE +FD: net/minecraft/world/level/block/LecternBlock/f_54472_ net/minecraft/world/level/block/LecternBlock/SHAPE_COLLISION +FD: net/minecraft/world/level/block/LecternBlock/f_54473_ net/minecraft/world/level/block/LecternBlock/SHAPE_WEST +FD: net/minecraft/world/level/block/LecternBlock/f_54474_ net/minecraft/world/level/block/LecternBlock/SHAPE_NORTH +FD: net/minecraft/world/level/block/LecternBlock/f_54475_ net/minecraft/world/level/block/LecternBlock/SHAPE_EAST +FD: net/minecraft/world/level/block/LecternBlock/f_54476_ net/minecraft/world/level/block/LecternBlock/SHAPE_SOUTH +FD: net/minecraft/world/level/block/LecternBlock$1/f_54591_ net/minecraft/world/level/block/LecternBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/LevelEvent/f_153581_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_INFECTED +FD: net/minecraft/world/level/block/LevelEvent/f_153582_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_CONVERTED +FD: net/minecraft/world/level/block/LevelEvent/f_153583_ net/minecraft/world/level/block/LevelEvent/SOUND_DRAGON_DEATH +FD: net/minecraft/world/level/block/LevelEvent/f_153584_ net/minecraft/world/level/block/LevelEvent/SOUND_ANVIL_BROKEN +FD: net/minecraft/world/level/block/LevelEvent/f_153585_ net/minecraft/world/level/block/LevelEvent/SOUND_ANVIL_USED +FD: net/minecraft/world/level/block/LevelEvent/f_153586_ net/minecraft/world/level/block/LevelEvent/SOUND_ANVIL_LAND +FD: net/minecraft/world/level/block/LevelEvent/f_153587_ net/minecraft/world/level/block/LevelEvent/SOUND_PORTAL_TRAVEL +FD: net/minecraft/world/level/block/LevelEvent/f_153588_ net/minecraft/world/level/block/LevelEvent/SOUND_CHORUS_GROW +FD: net/minecraft/world/level/block/LevelEvent/f_153589_ net/minecraft/world/level/block/LevelEvent/SOUND_CHORUS_DEATH +FD: net/minecraft/world/level/block/LevelEvent/f_153590_ net/minecraft/world/level/block/LevelEvent/SOUND_BREWING_STAND_BREW +FD: net/minecraft/world/level/block/LevelEvent/f_153593_ net/minecraft/world/level/block/LevelEvent/SOUND_END_PORTAL_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153594_ net/minecraft/world/level/block/LevelEvent/SOUND_PHANTOM_BITE +FD: net/minecraft/world/level/block/LevelEvent/f_153595_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_TO_DROWNED +FD: net/minecraft/world/level/block/LevelEvent/f_153596_ net/minecraft/world/level/block/LevelEvent/SOUND_HUSK_TO_ZOMBIE +FD: net/minecraft/world/level/block/LevelEvent/f_153597_ net/minecraft/world/level/block/LevelEvent/SOUND_GRINDSTONE_USED +FD: net/minecraft/world/level/block/LevelEvent/f_153598_ net/minecraft/world/level/block/LevelEvent/SOUND_PAGE_TURN +FD: net/minecraft/world/level/block/LevelEvent/f_153599_ net/minecraft/world/level/block/LevelEvent/SOUND_SMITHING_TABLE_USED +FD: net/minecraft/world/level/block/LevelEvent/f_153600_ net/minecraft/world/level/block/LevelEvent/SOUND_POINTED_DRIPSTONE_LAND +FD: net/minecraft/world/level/block/LevelEvent/f_153601_ net/minecraft/world/level/block/LevelEvent/SOUND_DRIP_LAVA_INTO_CAULDRON +FD: net/minecraft/world/level/block/LevelEvent/f_153602_ net/minecraft/world/level/block/LevelEvent/SOUND_DRIP_WATER_INTO_CAULDRON +FD: net/minecraft/world/level/block/LevelEvent/f_153603_ net/minecraft/world/level/block/LevelEvent/SOUND_SKELETON_TO_STRAY +FD: net/minecraft/world/level/block/LevelEvent/f_153604_ net/minecraft/world/level/block/LevelEvent/COMPOSTER_FILL +FD: net/minecraft/world/level/block/LevelEvent/f_153605_ net/minecraft/world/level/block/LevelEvent/LAVA_FIZZ +FD: net/minecraft/world/level/block/LevelEvent/f_153606_ net/minecraft/world/level/block/LevelEvent/REDSTONE_TORCH_BURNOUT +FD: net/minecraft/world/level/block/LevelEvent/f_153607_ net/minecraft/world/level/block/LevelEvent/SOUND_DISPENSER_DISPENSE +FD: net/minecraft/world/level/block/LevelEvent/f_153608_ net/minecraft/world/level/block/LevelEvent/END_PORTAL_FRAME_FILL +FD: net/minecraft/world/level/block/LevelEvent/f_153609_ net/minecraft/world/level/block/LevelEvent/DRIPSTONE_DRIP +FD: net/minecraft/world/level/block/LevelEvent/f_153610_ net/minecraft/world/level/block/LevelEvent/PARTICLES_AND_SOUND_PLANT_GROWTH +FD: net/minecraft/world/level/block/LevelEvent/f_153611_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SHOOT +FD: net/minecraft/world/level/block/LevelEvent/f_153612_ net/minecraft/world/level/block/LevelEvent/PARTICLES_DESTROY_BLOCK +FD: net/minecraft/world/level/block/LevelEvent/f_153613_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SPELL_POTION_SPLASH +FD: net/minecraft/world/level/block/LevelEvent/f_153614_ net/minecraft/world/level/block/LevelEvent/PARTICLES_EYE_OF_ENDER_DEATH +FD: net/minecraft/world/level/block/LevelEvent/f_153615_ net/minecraft/world/level/block/LevelEvent/PARTICLES_MOBBLOCK_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153616_ net/minecraft/world/level/block/LevelEvent/PARTICLES_PLANT_GROWTH +FD: net/minecraft/world/level/block/LevelEvent/f_153617_ net/minecraft/world/level/block/LevelEvent/PARTICLES_DRAGON_FIREBALL_SPLASH +FD: net/minecraft/world/level/block/LevelEvent/f_153618_ net/minecraft/world/level/block/LevelEvent/PARTICLES_INSTANT_POTION_SPLASH +FD: net/minecraft/world/level/block/LevelEvent/f_153619_ net/minecraft/world/level/block/LevelEvent/PARTICLES_DRAGON_BLOCK_BREAK +FD: net/minecraft/world/level/block/LevelEvent/f_153620_ net/minecraft/world/level/block/LevelEvent/PARTICLES_WATER_EVAPORATING +FD: net/minecraft/world/level/block/LevelEvent/f_153621_ net/minecraft/world/level/block/LevelEvent/ANIMATION_END_GATEWAY_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153622_ net/minecraft/world/level/block/LevelEvent/ANIMATION_DRAGON_SUMMON_ROAR +FD: net/minecraft/world/level/block/LevelEvent/f_153623_ net/minecraft/world/level/block/LevelEvent/PARTICLES_ELECTRIC_SPARK +FD: net/minecraft/world/level/block/LevelEvent/f_153624_ net/minecraft/world/level/block/LevelEvent/PARTICLES_AND_SOUND_WAX_ON +FD: net/minecraft/world/level/block/LevelEvent/f_153625_ net/minecraft/world/level/block/LevelEvent/PARTICLES_WAX_OFF +FD: net/minecraft/world/level/block/LevelEvent/f_153626_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SCRAPE +FD: net/minecraft/world/level/block/LevelEvent/f_153627_ net/minecraft/world/level/block/LevelEvent/SOUND_DISPENSER_FAIL +FD: net/minecraft/world/level/block/LevelEvent/f_153628_ net/minecraft/world/level/block/LevelEvent/SOUND_DISPENSER_PROJECTILE_LAUNCH +FD: net/minecraft/world/level/block/LevelEvent/f_153629_ net/minecraft/world/level/block/LevelEvent/SOUND_ENDER_EYE_LAUNCH +FD: net/minecraft/world/level/block/LevelEvent/f_153630_ net/minecraft/world/level/block/LevelEvent/SOUND_FIREWORK_SHOOT +FD: net/minecraft/world/level/block/LevelEvent/f_153635_ net/minecraft/world/level/block/LevelEvent/SOUND_EXTINGUISH_FIRE +FD: net/minecraft/world/level/block/LevelEvent/f_153641_ net/minecraft/world/level/block/LevelEvent/SOUND_GHAST_WARNING +FD: net/minecraft/world/level/block/LevelEvent/f_153642_ net/minecraft/world/level/block/LevelEvent/SOUND_GHAST_FIREBALL +FD: net/minecraft/world/level/block/LevelEvent/f_153643_ net/minecraft/world/level/block/LevelEvent/SOUND_DRAGON_FIREBALL +FD: net/minecraft/world/level/block/LevelEvent/f_153644_ net/minecraft/world/level/block/LevelEvent/SOUND_BLAZE_FIREBALL +FD: net/minecraft/world/level/block/LevelEvent/f_153645_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_WOODEN_DOOR +FD: net/minecraft/world/level/block/LevelEvent/f_153646_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_IRON_DOOR +FD: net/minecraft/world/level/block/LevelEvent/f_153647_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_DOOR_CRASH +FD: net/minecraft/world/level/block/LevelEvent/f_153648_ net/minecraft/world/level/block/LevelEvent/SOUND_WITHER_BLOCK_BREAK +FD: net/minecraft/world/level/block/LevelEvent/f_153649_ net/minecraft/world/level/block/LevelEvent/SOUND_WITHER_BOSS_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153650_ net/minecraft/world/level/block/LevelEvent/SOUND_WITHER_BOSS_SHOOT +FD: net/minecraft/world/level/block/LevelEvent/f_153651_ net/minecraft/world/level/block/LevelEvent/SOUND_BAT_LIFTOFF +FD: net/minecraft/world/level/block/LevelEvent/f_221392_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SCULK_CHARGE +FD: net/minecraft/world/level/block/LevelEvent/f_221393_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SCULK_SHRIEK +FD: net/minecraft/world/level/block/LevelEvent/f_271287_ net/minecraft/world/level/block/LevelEvent/SOUND_STOP_JUKEBOX_SONG +FD: net/minecraft/world/level/block/LevelEvent/f_271424_ net/minecraft/world/level/block/LevelEvent/PARTICLES_AND_SOUND_BRUSH_BLOCK_COMPLETE +FD: net/minecraft/world/level/block/LevelEvent/f_271529_ net/minecraft/world/level/block/LevelEvent/SOUND_PLAY_JUKEBOX_SONG +FD: net/minecraft/world/level/block/LevelEvent/f_276522_ net/minecraft/world/level/block/LevelEvent/PARTICLES_EGG_CRACK +FD: net/minecraft/world/level/block/LeverBlock/f_153653_ net/minecraft/world/level/block/LeverBlock/DEPTH +FD: net/minecraft/world/level/block/LeverBlock/f_153654_ net/minecraft/world/level/block/LeverBlock/WIDTH +FD: net/minecraft/world/level/block/LeverBlock/f_153655_ net/minecraft/world/level/block/LeverBlock/HEIGHT +FD: net/minecraft/world/level/block/LeverBlock/f_54622_ net/minecraft/world/level/block/LeverBlock/POWERED +FD: net/minecraft/world/level/block/LeverBlock/f_54623_ net/minecraft/world/level/block/LeverBlock/NORTH_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54624_ net/minecraft/world/level/block/LeverBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54625_ net/minecraft/world/level/block/LeverBlock/WEST_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54626_ net/minecraft/world/level/block/LeverBlock/EAST_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54627_ net/minecraft/world/level/block/LeverBlock/UP_AABB_Z +FD: net/minecraft/world/level/block/LeverBlock/f_54628_ net/minecraft/world/level/block/LeverBlock/UP_AABB_X +FD: net/minecraft/world/level/block/LeverBlock/f_54629_ net/minecraft/world/level/block/LeverBlock/DOWN_AABB_Z +FD: net/minecraft/world/level/block/LeverBlock/f_54630_ net/minecraft/world/level/block/LeverBlock/DOWN_AABB_X +FD: net/minecraft/world/level/block/LeverBlock$1/f_54684_ net/minecraft/world/level/block/LeverBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/LeverBlock$1/f_54685_ net/minecraft/world/level/block/LeverBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/LeverBlock$1/f_54686_ net/minecraft/world/level/block/LeverBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/LightBlock/f_153656_ net/minecraft/world/level/block/LightBlock/MAX_LEVEL +FD: net/minecraft/world/level/block/LightBlock/f_153657_ net/minecraft/world/level/block/LightBlock/LEVEL +FD: net/minecraft/world/level/block/LightBlock/f_153658_ net/minecraft/world/level/block/LightBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LightBlock/f_153659_ net/minecraft/world/level/block/LightBlock/LIGHT_EMISSION +FD: net/minecraft/world/level/block/LightningRodBlock/f_153702_ net/minecraft/world/level/block/LightningRodBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LightningRodBlock/f_153703_ net/minecraft/world/level/block/LightningRodBlock/POWERED +FD: net/minecraft/world/level/block/LightningRodBlock/f_153704_ net/minecraft/world/level/block/LightningRodBlock/RANGE +FD: net/minecraft/world/level/block/LightningRodBlock/f_153705_ net/minecraft/world/level/block/LightningRodBlock/ACTIVATION_TICKS +FD: net/minecraft/world/level/block/LightningRodBlock/f_153706_ net/minecraft/world/level/block/LightningRodBlock/SPARK_CYCLE +FD: net/minecraft/world/level/block/LiquidBlock/f_181233_ net/minecraft/world/level/block/LiquidBlock/POSSIBLE_FLOW_DIRECTIONS +FD: net/minecraft/world/level/block/LiquidBlock/f_54688_ net/minecraft/world/level/block/LiquidBlock/LEVEL +FD: net/minecraft/world/level/block/LiquidBlock/f_54689_ net/minecraft/world/level/block/LiquidBlock/fluid +FD: net/minecraft/world/level/block/LiquidBlock/f_54690_ net/minecraft/world/level/block/LiquidBlock/STABLE_SHAPE +FD: net/minecraft/world/level/block/LiquidBlock/f_54691_ net/minecraft/world/level/block/LiquidBlock/stateCache +FD: net/minecraft/world/level/block/LoomBlock/f_54774_ net/minecraft/world/level/block/LoomBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/MagmaBlock/f_153775_ net/minecraft/world/level/block/MagmaBlock/BUBBLE_COLUMN_CHECK_DELAY +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221441_ net/minecraft/world/level/block/MangrovePropaguleBlock/AGE +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221442_ net/minecraft/world/level/block/MangrovePropaguleBlock/MAX_AGE +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221443_ net/minecraft/world/level/block/MangrovePropaguleBlock/HANGING +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221444_ net/minecraft/world/level/block/MangrovePropaguleBlock/SHAPE_PER_AGE +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221445_ net/minecraft/world/level/block/MangrovePropaguleBlock/WATERLOGGED +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221446_ net/minecraft/world/level/block/MangrovePropaguleBlock/GROW_TALL_MANGROVE_PROBABILITY +FD: net/minecraft/world/level/block/MangroveRootsBlock/f_221503_ net/minecraft/world/level/block/MangroveRootsBlock/WATERLOGGED +FD: net/minecraft/world/level/block/Mirror/$VALUES net/minecraft/world/level/block/Mirror/$VALUES +FD: net/minecraft/world/level/block/Mirror/FRONT_BACK net/minecraft/world/level/block/Mirror/FRONT_BACK +FD: net/minecraft/world/level/block/Mirror/LEFT_RIGHT net/minecraft/world/level/block/Mirror/LEFT_RIGHT +FD: net/minecraft/world/level/block/Mirror/NONE net/minecraft/world/level/block/Mirror/NONE +FD: net/minecraft/world/level/block/Mirror/f_153781_ net/minecraft/world/level/block/Mirror/symbol +FD: net/minecraft/world/level/block/Mirror/f_221524_ net/minecraft/world/level/block/Mirror/CODEC +FD: net/minecraft/world/level/block/Mirror/f_221525_ net/minecraft/world/level/block/Mirror/id +FD: net/minecraft/world/level/block/Mirror/f_54835_ net/minecraft/world/level/block/Mirror/rotation +FD: net/minecraft/world/level/block/Mirror$1/f_54853_ net/minecraft/world/level/block/Mirror$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/MudBlock/f_221542_ net/minecraft/world/level/block/MudBlock/SHAPE +FD: net/minecraft/world/level/block/MultifaceBlock/f_153806_ net/minecraft/world/level/block/MultifaceBlock/DIRECTIONS +FD: net/minecraft/world/level/block/MultifaceBlock/f_153807_ net/minecraft/world/level/block/MultifaceBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/MultifaceBlock/f_153808_ net/minecraft/world/level/block/MultifaceBlock/UP_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153809_ net/minecraft/world/level/block/MultifaceBlock/DOWN_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153810_ net/minecraft/world/level/block/MultifaceBlock/WEST_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153811_ net/minecraft/world/level/block/MultifaceBlock/EAST_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153812_ net/minecraft/world/level/block/MultifaceBlock/NORTH_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153813_ net/minecraft/world/level/block/MultifaceBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153814_ net/minecraft/world/level/block/MultifaceBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/MultifaceBlock/f_153815_ net/minecraft/world/level/block/MultifaceBlock/SHAPE_BY_DIRECTION +FD: net/minecraft/world/level/block/MultifaceBlock/f_153816_ net/minecraft/world/level/block/MultifaceBlock/shapesCache +FD: net/minecraft/world/level/block/MultifaceBlock/f_153817_ net/minecraft/world/level/block/MultifaceBlock/canRotate +FD: net/minecraft/world/level/block/MultifaceBlock/f_153818_ net/minecraft/world/level/block/MultifaceBlock/canMirrorX +FD: net/minecraft/world/level/block/MultifaceBlock/f_153819_ net/minecraft/world/level/block/MultifaceBlock/canMirrorZ +FD: net/minecraft/world/level/block/MultifaceSpreader/f_221586_ net/minecraft/world/level/block/MultifaceSpreader/DEFAULT_SPREAD_ORDER +FD: net/minecraft/world/level/block/MultifaceSpreader/f_221587_ net/minecraft/world/level/block/MultifaceSpreader/config +FD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/f_221681_ net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/block +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221717_ net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/pos +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221718_ net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/face +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/$VALUES net/minecraft/world/level/block/MultifaceSpreader$SpreadType/$VALUES +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_PLANE net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_PLANE +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_POSITION net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_POSITION +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/WRAP_AROUND net/minecraft/world/level/block/MultifaceSpreader$SpreadType/WRAP_AROUND +FD: net/minecraft/world/level/block/MushroomBlock/f_153980_ net/minecraft/world/level/block/MushroomBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/MushroomBlock/f_254650_ net/minecraft/world/level/block/MushroomBlock/feature +FD: net/minecraft/world/level/block/MushroomBlock/f_54855_ net/minecraft/world/level/block/MushroomBlock/SHAPE +FD: net/minecraft/world/level/block/NetherPortalBlock/f_153985_ net/minecraft/world/level/block/NetherPortalBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/NetherPortalBlock/f_54904_ net/minecraft/world/level/block/NetherPortalBlock/AXIS +FD: net/minecraft/world/level/block/NetherPortalBlock/f_54905_ net/minecraft/world/level/block/NetherPortalBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/NetherPortalBlock/f_54906_ net/minecraft/world/level/block/NetherPortalBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/NetherPortalBlock$1/f_54946_ net/minecraft/world/level/block/NetherPortalBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/NetherPortalBlock$1/f_54947_ net/minecraft/world/level/block/NetherPortalBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/NetherSproutsBlock/f_54949_ net/minecraft/world/level/block/NetherSproutsBlock/SHAPE +FD: net/minecraft/world/level/block/NetherVines/f_153986_ net/minecraft/world/level/block/NetherVines/GROW_PER_TICK_PROBABILITY +FD: net/minecraft/world/level/block/NetherVines/f_153987_ net/minecraft/world/level/block/NetherVines/BONEMEAL_GROW_PROBABILITY_DECREASE_RATE +FD: net/minecraft/world/level/block/NetherWartBlock/f_153989_ net/minecraft/world/level/block/NetherWartBlock/MAX_AGE +FD: net/minecraft/world/level/block/NetherWartBlock/f_54967_ net/minecraft/world/level/block/NetherWartBlock/AGE +FD: net/minecraft/world/level/block/NetherWartBlock/f_54968_ net/minecraft/world/level/block/NetherWartBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/NoteBlock/f_262759_ net/minecraft/world/level/block/NoteBlock/NOTE_VOLUME +FD: net/minecraft/world/level/block/NoteBlock/f_55011_ net/minecraft/world/level/block/NoteBlock/INSTRUMENT +FD: net/minecraft/world/level/block/NoteBlock/f_55012_ net/minecraft/world/level/block/NoteBlock/POWERED +FD: net/minecraft/world/level/block/NoteBlock/f_55013_ net/minecraft/world/level/block/NoteBlock/NOTE +FD: net/minecraft/world/level/block/ObserverBlock/f_55082_ net/minecraft/world/level/block/ObserverBlock/POWERED +FD: net/minecraft/world/level/block/PiglinWallSkullBlock/f_260652_ net/minecraft/world/level/block/PiglinWallSkullBlock/AABBS +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271110_ net/minecraft/world/level/block/PinkPetalsBlock/MIN_FLOWERS +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271156_ net/minecraft/world/level/block/PinkPetalsBlock/MAX_FLOWERS +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271347_ net/minecraft/world/level/block/PinkPetalsBlock/FACING +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271373_ net/minecraft/world/level/block/PinkPetalsBlock/AMOUNT +FD: net/minecraft/world/level/block/PipeBlock/f_55148_ net/minecraft/world/level/block/PipeBlock/NORTH +FD: net/minecraft/world/level/block/PipeBlock/f_55149_ net/minecraft/world/level/block/PipeBlock/EAST +FD: net/minecraft/world/level/block/PipeBlock/f_55150_ net/minecraft/world/level/block/PipeBlock/SOUTH +FD: net/minecraft/world/level/block/PipeBlock/f_55151_ net/minecraft/world/level/block/PipeBlock/WEST +FD: net/minecraft/world/level/block/PipeBlock/f_55152_ net/minecraft/world/level/block/PipeBlock/UP +FD: net/minecraft/world/level/block/PipeBlock/f_55153_ net/minecraft/world/level/block/PipeBlock/DOWN +FD: net/minecraft/world/level/block/PipeBlock/f_55154_ net/minecraft/world/level/block/PipeBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/PipeBlock/f_55155_ net/minecraft/world/level/block/PipeBlock/shapeByIndex +FD: net/minecraft/world/level/block/PipeBlock/f_55156_ net/minecraft/world/level/block/PipeBlock/DIRECTIONS +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276478_ net/minecraft/world/level/block/PitcherCropBlock/AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276589_ net/minecraft/world/level/block/PitcherCropBlock/COLLISION_SHAPE_CROP +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276596_ net/minecraft/world/level/block/PitcherCropBlock/DOUBLE_PLANT_AGE_INTERSECTION +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276671_ net/minecraft/world/level/block/PitcherCropBlock/MAX_AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276694_ net/minecraft/world/level/block/PitcherCropBlock/COLLISION_SHAPE_BULB +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278117_ net/minecraft/world/level/block/PitcherCropBlock/BONEMEAL_INCREASE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278397_ net/minecraft/world/level/block/PitcherCropBlock/LOWER_SHAPE_BY_AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278400_ net/minecraft/world/level/block/PitcherCropBlock/FULL_LOWER_SHAPE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278405_ net/minecraft/world/level/block/PitcherCropBlock/UPPER_SHAPE_BY_AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278440_ net/minecraft/world/level/block/PitcherCropBlock/FULL_UPPER_SHAPE +FD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289993_ net/minecraft/world/level/block/PitcherCropBlock$PosAndState/state +FD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289994_ net/minecraft/world/level/block/PitcherCropBlock$PosAndState/pos +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153994_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_STALACTITE_HEIGHT_FOR_DAMAGE_CALCULATION +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153995_ net/minecraft/world/level/block/PointedDripstoneBlock/STALAGMITE_FALL_DISTANCE_OFFSET +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153996_ net/minecraft/world/level/block/PointedDripstoneBlock/STALAGMITE_FALL_DAMAGE_MODIFIER +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153997_ net/minecraft/world/level/block/PointedDripstoneBlock/AVERAGE_DAYS_PER_GROWTH +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153998_ net/minecraft/world/level/block/PointedDripstoneBlock/GROWTH_PROBABILITY_PER_RANDOM_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153999_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_GROWTH_LENGTH +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154000_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_STALAGMITE_SEARCH_RANGE_WHEN_GROWING +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154001_ net/minecraft/world/level/block/PointedDripstoneBlock/STALACTITE_DRIP_START_PIXEL +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154002_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_MERGE_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154003_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_SHAPE_UP +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154004_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_SHAPE_DOWN +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154005_ net/minecraft/world/level/block/PointedDripstoneBlock/FRUSTUM_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154006_ net/minecraft/world/level/block/PointedDripstoneBlock/MIDDLE_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154007_ net/minecraft/world/level/block/PointedDripstoneBlock/BASE_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154008_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_HORIZONTAL_OFFSET +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154009_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_DIRECTION +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154010_ net/minecraft/world/level/block/PointedDripstoneBlock/THICKNESS +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154011_ net/minecraft/world/level/block/PointedDripstoneBlock/WATERLOGGED +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154012_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_SEARCH_LENGTH_WHEN_CHECKING_DRIP_TYPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154014_ net/minecraft/world/level/block/PointedDripstoneBlock/DELAY_BEFORE_FALLING +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154015_ net/minecraft/world/level/block/PointedDripstoneBlock/DRIP_PROBABILITY_PER_ANIMATE_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154016_ net/minecraft/world/level/block/PointedDripstoneBlock/DRIP_PROBABILITY_PER_ANIMATE_TICK_IF_UNDER_LIQUID_SOURCE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154017_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_SEARCH_LENGTH_BETWEEN_STALACTITE_TIP_AND_CAULDRON +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154020_ net/minecraft/world/level/block/PointedDripstoneBlock/MIN_TRIDENT_VELOCITY_TO_BREAK_DRIPSTONE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154021_ net/minecraft/world/level/block/PointedDripstoneBlock/STALACTITE_DAMAGE_PER_FALL_DISTANCE_AND_SIZE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154022_ net/minecraft/world/level/block/PointedDripstoneBlock/STALACTITE_MAX_DAMAGE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_202005_ net/minecraft/world/level/block/PointedDripstoneBlock/REQUIRED_SPACE_TO_DRIP_THROUGH_NON_SOLID_BLOCK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_221844_ net/minecraft/world/level/block/PointedDripstoneBlock/WATER_TRANSFER_PROBABILITY_PER_RANDOM_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_221845_ net/minecraft/world/level/block/PointedDripstoneBlock/LAVA_TRANSFER_PROBABILITY_PER_RANDOM_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221892_ net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/pos +FD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221893_ net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/fluid +FD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221894_ net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/sourceState +FD: net/minecraft/world/level/block/PotatoBlock/f_55195_ net/minecraft/world/level/block/PotatoBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154246_ net/minecraft/world/level/block/PowderSnowBlock/HORIZONTAL_PARTICLE_MOMENTUM_FACTOR +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154247_ net/minecraft/world/level/block/PowderSnowBlock/IN_BLOCK_HORIZONTAL_SPEED_MULTIPLIER +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154248_ net/minecraft/world/level/block/PowderSnowBlock/IN_BLOCK_VERTICAL_SPEED_MULTIPLIER +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154249_ net/minecraft/world/level/block/PowderSnowBlock/NUM_BLOCKS_TO_FALL_INTO_BLOCK +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154250_ net/minecraft/world/level/block/PowderSnowBlock/FALLING_COLLISION_SHAPE +FD: net/minecraft/world/level/block/PowderSnowBlock/f_196692_ net/minecraft/world/level/block/PowderSnowBlock/MINIMUM_FALL_DISTANCE_FOR_SOUND +FD: net/minecraft/world/level/block/PowderSnowBlock/f_196693_ net/minecraft/world/level/block/PowderSnowBlock/MINIMUM_FALL_DISTANCE_FOR_BIG_SOUND +FD: net/minecraft/world/level/block/PoweredRailBlock/f_55214_ net/minecraft/world/level/block/PoweredRailBlock/SHAPE +FD: net/minecraft/world/level/block/PoweredRailBlock/f_55215_ net/minecraft/world/level/block/PoweredRailBlock/POWERED +FD: net/minecraft/world/level/block/PoweredRailBlock$1/f_55245_ net/minecraft/world/level/block/PoweredRailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/PoweredRailBlock$1/f_55246_ net/minecraft/world/level/block/PoweredRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/PoweredRailBlock$1/f_55247_ net/minecraft/world/level/block/PoweredRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/PressurePlateBlock/f_55249_ net/minecraft/world/level/block/PressurePlateBlock/POWERED +FD: net/minecraft/world/level/block/PressurePlateBlock/f_55250_ net/minecraft/world/level/block/PressurePlateBlock/sensitivity +FD: net/minecraft/world/level/block/PressurePlateBlock$1/f_55271_ net/minecraft/world/level/block/PressurePlateBlock$1/$SwitchMap$net$minecraft$world$level$block$PressurePlateBlock$Sensitivity +FD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/$VALUES net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/$VALUES +FD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/EVERYTHING net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/EVERYTHING +FD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/MOBS net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/MOBS +FD: net/minecraft/world/level/block/RailBlock/f_55392_ net/minecraft/world/level/block/RailBlock/SHAPE +FD: net/minecraft/world/level/block/RailBlock$1/f_55410_ net/minecraft/world/level/block/RailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/RailBlock$1/f_55411_ net/minecraft/world/level/block/RailBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/RailBlock$1/f_55412_ net/minecraft/world/level/block/RailBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/RailState/f_55414_ net/minecraft/world/level/block/RailState/level +FD: net/minecraft/world/level/block/RailState/f_55415_ net/minecraft/world/level/block/RailState/pos +FD: net/minecraft/world/level/block/RailState/f_55416_ net/minecraft/world/level/block/RailState/block +FD: net/minecraft/world/level/block/RailState/f_55417_ net/minecraft/world/level/block/RailState/state +FD: net/minecraft/world/level/block/RailState/f_55418_ net/minecraft/world/level/block/RailState/isStraight +FD: net/minecraft/world/level/block/RailState/f_55419_ net/minecraft/world/level/block/RailState/connections +FD: net/minecraft/world/level/block/RailState$1/f_55448_ net/minecraft/world/level/block/RailState$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/RedStoneOreBlock/f_55450_ net/minecraft/world/level/block/RedStoneOreBlock/LIT +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154303_ net/minecraft/world/level/block/RedStoneWireBlock/PARTICLE_DENSITY +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154304_ net/minecraft/world/level/block/RedStoneWireBlock/H +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154305_ net/minecraft/world/level/block/RedStoneWireBlock/W +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154306_ net/minecraft/world/level/block/RedStoneWireBlock/E +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154307_ net/minecraft/world/level/block/RedStoneWireBlock/N +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154308_ net/minecraft/world/level/block/RedStoneWireBlock/S +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55496_ net/minecraft/world/level/block/RedStoneWireBlock/NORTH +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55497_ net/minecraft/world/level/block/RedStoneWireBlock/EAST +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55498_ net/minecraft/world/level/block/RedStoneWireBlock/SOUTH +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55499_ net/minecraft/world/level/block/RedStoneWireBlock/WEST +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55500_ net/minecraft/world/level/block/RedStoneWireBlock/POWER +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55501_ net/minecraft/world/level/block/RedStoneWireBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55502_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPE_DOT +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55503_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPES_FLOOR +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55504_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPES_UP +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55505_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPES_CACHE +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55506_ net/minecraft/world/level/block/RedStoneWireBlock/COLORS +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55507_ net/minecraft/world/level/block/RedStoneWireBlock/crossState +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55508_ net/minecraft/world/level/block/RedStoneWireBlock/shouldSignal +FD: net/minecraft/world/level/block/RedStoneWireBlock$1/f_55650_ net/minecraft/world/level/block/RedStoneWireBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RedstoneSide +FD: net/minecraft/world/level/block/RedStoneWireBlock$1/f_55651_ net/minecraft/world/level/block/RedStoneWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/RedStoneWireBlock$1/f_55652_ net/minecraft/world/level/block/RedStoneWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/RedstoneLampBlock/f_55654_ net/minecraft/world/level/block/RedstoneLampBlock/LIT +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154325_ net/minecraft/world/level/block/RedstoneTorchBlock/RECENT_TOGGLE_TIMER +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154326_ net/minecraft/world/level/block/RedstoneTorchBlock/MAX_RECENT_TOGGLES +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154327_ net/minecraft/world/level/block/RedstoneTorchBlock/RESTART_DELAY +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154328_ net/minecraft/world/level/block/RedstoneTorchBlock/TOGGLE_DELAY +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_55674_ net/minecraft/world/level/block/RedstoneTorchBlock/LIT +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_55675_ net/minecraft/world/level/block/RedstoneTorchBlock/RECENT_TOGGLES +FD: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/f_55731_ net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/pos +FD: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/f_55732_ net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/when +FD: net/minecraft/world/level/block/RedstoneWallTorchBlock/f_55740_ net/minecraft/world/level/block/RedstoneWallTorchBlock/FACING +FD: net/minecraft/world/level/block/RedstoneWallTorchBlock/f_55741_ net/minecraft/world/level/block/RedstoneWallTorchBlock/LIT +FD: net/minecraft/world/level/block/RenderShape/$VALUES net/minecraft/world/level/block/RenderShape/$VALUES +FD: net/minecraft/world/level/block/RenderShape/ENTITYBLOCK_ANIMATED net/minecraft/world/level/block/RenderShape/ENTITYBLOCK_ANIMATED +FD: net/minecraft/world/level/block/RenderShape/INVISIBLE net/minecraft/world/level/block/RenderShape/INVISIBLE +FD: net/minecraft/world/level/block/RenderShape/MODEL net/minecraft/world/level/block/RenderShape/MODEL +FD: net/minecraft/world/level/block/RepeaterBlock/f_55797_ net/minecraft/world/level/block/RepeaterBlock/LOCKED +FD: net/minecraft/world/level/block/RepeaterBlock/f_55798_ net/minecraft/world/level/block/RepeaterBlock/DELAY +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_154330_ net/minecraft/world/level/block/RespawnAnchorBlock/MIN_CHARGES +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_154331_ net/minecraft/world/level/block/RespawnAnchorBlock/MAX_CHARGES +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_55833_ net/minecraft/world/level/block/RespawnAnchorBlock/CHARGE +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_55834_ net/minecraft/world/level/block/RespawnAnchorBlock/RESPAWN_HORIZONTAL_OFFSETS +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_55835_ net/minecraft/world/level/block/RespawnAnchorBlock/RESPAWN_OFFSETS +FD: net/minecraft/world/level/block/RespawnAnchorBlock$1/f_55896_ net/minecraft/world/level/block/RespawnAnchorBlock$1/val$pos +FD: net/minecraft/world/level/block/RespawnAnchorBlock$1/f_55897_ net/minecraft/world/level/block/RespawnAnchorBlock$1/val$inWater +FD: net/minecraft/world/level/block/RespawnAnchorBlock$1/f_55898_ net/minecraft/world/level/block/RespawnAnchorBlock$1/this$0 +FD: net/minecraft/world/level/block/RodBlock/f_154332_ net/minecraft/world/level/block/RodBlock/AABB_MIN +FD: net/minecraft/world/level/block/RodBlock/f_154333_ net/minecraft/world/level/block/RodBlock/AABB_MAX +FD: net/minecraft/world/level/block/RodBlock/f_154334_ net/minecraft/world/level/block/RodBlock/Y_AXIS_AABB +FD: net/minecraft/world/level/block/RodBlock/f_154335_ net/minecraft/world/level/block/RodBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/RodBlock/f_154336_ net/minecraft/world/level/block/RodBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/RodBlock$1/f_154356_ net/minecraft/world/level/block/RodBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/RootsBlock/f_154375_ net/minecraft/world/level/block/RootsBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/RootsBlock/f_55909_ net/minecraft/world/level/block/RootsBlock/SHAPE +FD: net/minecraft/world/level/block/RotatedPillarBlock/f_55923_ net/minecraft/world/level/block/RotatedPillarBlock/AXIS +FD: net/minecraft/world/level/block/RotatedPillarBlock$1/f_55934_ net/minecraft/world/level/block/RotatedPillarBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/RotatedPillarBlock$1/f_55935_ net/minecraft/world/level/block/RotatedPillarBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/Rotation/$VALUES net/minecraft/world/level/block/Rotation/$VALUES +FD: net/minecraft/world/level/block/Rotation/CLOCKWISE_180 net/minecraft/world/level/block/Rotation/CLOCKWISE_180 +FD: net/minecraft/world/level/block/Rotation/CLOCKWISE_90 net/minecraft/world/level/block/Rotation/CLOCKWISE_90 +FD: net/minecraft/world/level/block/Rotation/COUNTERCLOCKWISE_90 net/minecraft/world/level/block/Rotation/COUNTERCLOCKWISE_90 +FD: net/minecraft/world/level/block/Rotation/NONE net/minecraft/world/level/block/Rotation/NONE +FD: net/minecraft/world/level/block/Rotation/f_221983_ net/minecraft/world/level/block/Rotation/CODEC +FD: net/minecraft/world/level/block/Rotation/f_221984_ net/minecraft/world/level/block/Rotation/id +FD: net/minecraft/world/level/block/Rotation/f_55941_ net/minecraft/world/level/block/Rotation/rotation +FD: net/minecraft/world/level/block/Rotation$1/f_55963_ net/minecraft/world/level/block/Rotation$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/SandBlock/f_55965_ net/minecraft/world/level/block/SandBlock/dustColor +FD: net/minecraft/world/level/block/SaplingBlock/f_154380_ net/minecraft/world/level/block/SaplingBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SaplingBlock/f_55973_ net/minecraft/world/level/block/SaplingBlock/STAGE +FD: net/minecraft/world/level/block/SaplingBlock/f_55974_ net/minecraft/world/level/block/SaplingBlock/SHAPE +FD: net/minecraft/world/level/block/SaplingBlock/f_55975_ net/minecraft/world/level/block/SaplingBlock/treeGrower +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_154381_ net/minecraft/world/level/block/ScaffoldingBlock/STABILITY_MAX_DISTANCE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_154382_ net/minecraft/world/level/block/ScaffoldingBlock/TICK_DELAY +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56012_ net/minecraft/world/level/block/ScaffoldingBlock/DISTANCE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56013_ net/minecraft/world/level/block/ScaffoldingBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56014_ net/minecraft/world/level/block/ScaffoldingBlock/BOTTOM +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56015_ net/minecraft/world/level/block/ScaffoldingBlock/STABLE_SHAPE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56016_ net/minecraft/world/level/block/ScaffoldingBlock/UNSTABLE_SHAPE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56017_ net/minecraft/world/level/block/ScaffoldingBlock/UNSTABLE_SHAPE_BOTTOM +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56018_ net/minecraft/world/level/block/ScaffoldingBlock/BELOW_BLOCK +FD: net/minecraft/world/level/block/SculkBehaviour/f_222023_ net/minecraft/world/level/block/SculkBehaviour/DEFAULT +FD: net/minecraft/world/level/block/SculkCatalystBlock/f_222086_ net/minecraft/world/level/block/SculkCatalystBlock/PULSE +FD: net/minecraft/world/level/block/SculkCatalystBlock/f_222087_ net/minecraft/world/level/block/SculkCatalystBlock/xpRange +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154383_ net/minecraft/world/level/block/SculkSensorBlock/ACTIVE_TICKS +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154384_ net/minecraft/world/level/block/SculkSensorBlock/COOLDOWN_TICKS +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154386_ net/minecraft/world/level/block/SculkSensorBlock/PHASE +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154387_ net/minecraft/world/level/block/SculkSensorBlock/POWER +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154388_ net/minecraft/world/level/block/SculkSensorBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154389_ net/minecraft/world/level/block/SculkSensorBlock/SHAPE +FD: net/minecraft/world/level/block/SculkSensorBlock/f_276565_ net/minecraft/world/level/block/SculkSensorBlock/RESONANCE_PITCH_BEND +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222152_ net/minecraft/world/level/block/SculkShriekerBlock/SHRIEKING +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222153_ net/minecraft/world/level/block/SculkShriekerBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222154_ net/minecraft/world/level/block/SculkShriekerBlock/CAN_SUMMON +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222155_ net/minecraft/world/level/block/SculkShriekerBlock/COLLIDER +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222156_ net/minecraft/world/level/block/SculkShriekerBlock/TOP_Y +FD: net/minecraft/world/level/block/SculkSpreader/f_222233_ net/minecraft/world/level/block/SculkSpreader/MAX_GROWTH_RATE_RADIUS +FD: net/minecraft/world/level/block/SculkSpreader/f_222234_ net/minecraft/world/level/block/SculkSpreader/MAX_CHARGE +FD: net/minecraft/world/level/block/SculkSpreader/f_222235_ net/minecraft/world/level/block/SculkSpreader/MAX_DECAY_FACTOR +FD: net/minecraft/world/level/block/SculkSpreader/f_222236_ net/minecraft/world/level/block/SculkSpreader/SHRIEKER_PLACEMENT_RATE +FD: net/minecraft/world/level/block/SculkSpreader/f_222237_ net/minecraft/world/level/block/SculkSpreader/MAX_CURSORS +FD: net/minecraft/world/level/block/SculkSpreader/f_222238_ net/minecraft/world/level/block/SculkSpreader/isWorldGeneration +FD: net/minecraft/world/level/block/SculkSpreader/f_222239_ net/minecraft/world/level/block/SculkSpreader/replaceableBlocks +FD: net/minecraft/world/level/block/SculkSpreader/f_222240_ net/minecraft/world/level/block/SculkSpreader/growthSpawnCost +FD: net/minecraft/world/level/block/SculkSpreader/f_222241_ net/minecraft/world/level/block/SculkSpreader/noGrowthRadius +FD: net/minecraft/world/level/block/SculkSpreader/f_222242_ net/minecraft/world/level/block/SculkSpreader/chargeDecayRate +FD: net/minecraft/world/level/block/SculkSpreader/f_222243_ net/minecraft/world/level/block/SculkSpreader/additionalDecayRate +FD: net/minecraft/world/level/block/SculkSpreader/f_222244_ net/minecraft/world/level/block/SculkSpreader/cursors +FD: net/minecraft/world/level/block/SculkSpreader/f_222245_ net/minecraft/world/level/block/SculkSpreader/LOGGER +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222285_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/MAX_CURSOR_DECAY_DELAY +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222286_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/CODEC +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222287_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/NON_CORNER_NEIGHBOURS +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222288_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/pos +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222289_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/charge +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222290_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/updateDelay +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222291_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/decayDelay +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222292_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/facings +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222293_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/DIRECTION_SET +FD: net/minecraft/world/level/block/SculkVeinBlock/f_222348_ net/minecraft/world/level/block/SculkVeinBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SculkVeinBlock/f_222349_ net/minecraft/world/level/block/SculkVeinBlock/veinSpreader +FD: net/minecraft/world/level/block/SculkVeinBlock/f_222350_ net/minecraft/world/level/block/SculkVeinBlock/sameSpaceSpreader +FD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/f_222398_ net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/this$0 +FD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/f_222399_ net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/spreadTypes +FD: net/minecraft/world/level/block/SeaPickleBlock/f_154491_ net/minecraft/world/level/block/SeaPickleBlock/MAX_PICKLES +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56074_ net/minecraft/world/level/block/SeaPickleBlock/PICKLES +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56075_ net/minecraft/world/level/block/SeaPickleBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56076_ net/minecraft/world/level/block/SeaPickleBlock/ONE_AABB +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56077_ net/minecraft/world/level/block/SeaPickleBlock/TWO_AABB +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56078_ net/minecraft/world/level/block/SeaPickleBlock/THREE_AABB +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56079_ net/minecraft/world/level/block/SeaPickleBlock/FOUR_AABB +FD: net/minecraft/world/level/block/SeagrassBlock/f_154492_ net/minecraft/world/level/block/SeagrassBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SeagrassBlock/f_154493_ net/minecraft/world/level/block/SeagrassBlock/SHAPE +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256794_ net/minecraft/world/level/block/ShulkerBoxBlock/SOUTH_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256795_ net/minecraft/world/level/block/ShulkerBoxBlock/DOWN_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256800_ net/minecraft/world/level/block/ShulkerBoxBlock/WES_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256820_ net/minecraft/world/level/block/ShulkerBoxBlock/OPEN_AABB_SIZE +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256830_ net/minecraft/world/level/block/ShulkerBoxBlock/OPEN_SHAPE_BY_DIRECTION +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256853_ net/minecraft/world/level/block/ShulkerBoxBlock/UP_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256867_ net/minecraft/world/level/block/ShulkerBoxBlock/NORTH_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_257037_ net/minecraft/world/level/block/ShulkerBoxBlock/EAST_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_56183_ net/minecraft/world/level/block/ShulkerBoxBlock/FACING +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_56184_ net/minecraft/world/level/block/ShulkerBoxBlock/CONTENTS +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_56185_ net/minecraft/world/level/block/ShulkerBoxBlock/color +FD: net/minecraft/world/level/block/ShulkerBoxBlock$1/f_56266_ net/minecraft/world/level/block/ShulkerBoxBlock$1/$SwitchMap$net$minecraft$world$item$DyeColor +FD: net/minecraft/world/level/block/SignBlock/f_154554_ net/minecraft/world/level/block/SignBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SignBlock/f_56268_ net/minecraft/world/level/block/SignBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SignBlock/f_56269_ net/minecraft/world/level/block/SignBlock/SHAPE +FD: net/minecraft/world/level/block/SignBlock/f_56270_ net/minecraft/world/level/block/SignBlock/type +FD: net/minecraft/world/level/block/SkullBlock/f_154563_ net/minecraft/world/level/block/SkullBlock/MAX +FD: net/minecraft/world/level/block/SkullBlock/f_154564_ net/minecraft/world/level/block/SkullBlock/ROTATIONS +FD: net/minecraft/world/level/block/SkullBlock/f_260503_ net/minecraft/world/level/block/SkullBlock/PIGLIN_SHAPE +FD: net/minecraft/world/level/block/SkullBlock/f_56314_ net/minecraft/world/level/block/SkullBlock/ROTATION +FD: net/minecraft/world/level/block/SkullBlock/f_56315_ net/minecraft/world/level/block/SkullBlock/SHAPE +FD: net/minecraft/world/level/block/SkullBlock$Types/$VALUES net/minecraft/world/level/block/SkullBlock$Types/$VALUES +FD: net/minecraft/world/level/block/SkullBlock$Types/CREEPER net/minecraft/world/level/block/SkullBlock$Types/CREEPER +FD: net/minecraft/world/level/block/SkullBlock$Types/DRAGON net/minecraft/world/level/block/SkullBlock$Types/DRAGON +FD: net/minecraft/world/level/block/SkullBlock$Types/PIGLIN net/minecraft/world/level/block/SkullBlock$Types/PIGLIN +FD: net/minecraft/world/level/block/SkullBlock$Types/PLAYER net/minecraft/world/level/block/SkullBlock$Types/PLAYER +FD: net/minecraft/world/level/block/SkullBlock$Types/SKELETON net/minecraft/world/level/block/SkullBlock$Types/SKELETON +FD: net/minecraft/world/level/block/SkullBlock$Types/WITHER_SKELETON net/minecraft/world/level/block/SkullBlock$Types/WITHER_SKELETON +FD: net/minecraft/world/level/block/SkullBlock$Types/ZOMBIE net/minecraft/world/level/block/SkullBlock$Types/ZOMBIE +FD: net/minecraft/world/level/block/SlabBlock/f_56353_ net/minecraft/world/level/block/SlabBlock/TYPE +FD: net/minecraft/world/level/block/SlabBlock/f_56354_ net/minecraft/world/level/block/SlabBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SlabBlock/f_56355_ net/minecraft/world/level/block/SlabBlock/BOTTOM_AABB +FD: net/minecraft/world/level/block/SlabBlock/f_56356_ net/minecraft/world/level/block/SlabBlock/TOP_AABB +FD: net/minecraft/world/level/block/SlabBlock$1/f_56398_ net/minecraft/world/level/block/SlabBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$SlabType +FD: net/minecraft/world/level/block/SlabBlock$1/f_56399_ net/minecraft/world/level/block/SlabBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154577_ net/minecraft/world/level/block/SmallDripleafBlock/FACING +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154578_ net/minecraft/world/level/block/SmallDripleafBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154579_ net/minecraft/world/level/block/SmallDripleafBlock/SHAPE +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154580_ net/minecraft/world/level/block/SmallDripleafBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SmithingTableBlock/f_56417_ net/minecraft/world/level/block/SmithingTableBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276447_ net/minecraft/world/level/block/SnifferEggBlock/BOOSTED_HATCH_TIME_TICKS +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276603_ net/minecraft/world/level/block/SnifferEggBlock/REGULAR_HATCH_TIME_TICKS +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276649_ net/minecraft/world/level/block/SnifferEggBlock/RANDOM_HATCH_OFFSET_TICKS +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276696_ net/minecraft/world/level/block/SnifferEggBlock/SHAPE +FD: net/minecraft/world/level/block/SnifferEggBlock/f_278392_ net/minecraft/world/level/block/SnifferEggBlock/MAX_HATCH_LEVEL +FD: net/minecraft/world/level/block/SnifferEggBlock/f_278491_ net/minecraft/world/level/block/SnifferEggBlock/HATCH +FD: net/minecraft/world/level/block/SnowLayerBlock/f_154646_ net/minecraft/world/level/block/SnowLayerBlock/MAX_HEIGHT +FD: net/minecraft/world/level/block/SnowLayerBlock/f_154647_ net/minecraft/world/level/block/SnowLayerBlock/HEIGHT_IMPASSABLE +FD: net/minecraft/world/level/block/SnowLayerBlock/f_56581_ net/minecraft/world/level/block/SnowLayerBlock/LAYERS +FD: net/minecraft/world/level/block/SnowLayerBlock/f_56582_ net/minecraft/world/level/block/SnowLayerBlock/SHAPE_BY_LAYER +FD: net/minecraft/world/level/block/SnowLayerBlock$1/f_56635_ net/minecraft/world/level/block/SnowLayerBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/SnowyDirtBlock/f_56637_ net/minecraft/world/level/block/SnowyDirtBlock/SNOWY +FD: net/minecraft/world/level/block/SoulSandBlock/f_154652_ net/minecraft/world/level/block/SoulSandBlock/BUBBLE_COLUMN_CHECK_DELAY +FD: net/minecraft/world/level/block/SoulSandBlock/f_56669_ net/minecraft/world/level/block/SoulSandBlock/SHAPE +FD: net/minecraft/world/level/block/SoundType/f_154653_ net/minecraft/world/level/block/SoundType/CANDLE +FD: net/minecraft/world/level/block/SoundType/f_154654_ net/minecraft/world/level/block/SoundType/AMETHYST +FD: net/minecraft/world/level/block/SoundType/f_154655_ net/minecraft/world/level/block/SoundType/AMETHYST_CLUSTER +FD: net/minecraft/world/level/block/SoundType/f_154656_ net/minecraft/world/level/block/SoundType/SMALL_AMETHYST_BUD +FD: net/minecraft/world/level/block/SoundType/f_154657_ net/minecraft/world/level/block/SoundType/MEDIUM_AMETHYST_BUD +FD: net/minecraft/world/level/block/SoundType/f_154658_ net/minecraft/world/level/block/SoundType/LARGE_AMETHYST_BUD +FD: net/minecraft/world/level/block/SoundType/f_154659_ net/minecraft/world/level/block/SoundType/TUFF +FD: net/minecraft/world/level/block/SoundType/f_154660_ net/minecraft/world/level/block/SoundType/CALCITE +FD: net/minecraft/world/level/block/SoundType/f_154661_ net/minecraft/world/level/block/SoundType/DRIPSTONE_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_154662_ net/minecraft/world/level/block/SoundType/POINTED_DRIPSTONE +FD: net/minecraft/world/level/block/SoundType/f_154663_ net/minecraft/world/level/block/SoundType/COPPER +FD: net/minecraft/world/level/block/SoundType/f_154664_ net/minecraft/world/level/block/SoundType/CAVE_VINES +FD: net/minecraft/world/level/block/SoundType/f_154665_ net/minecraft/world/level/block/SoundType/SPORE_BLOSSOM +FD: net/minecraft/world/level/block/SoundType/f_154666_ net/minecraft/world/level/block/SoundType/AZALEA +FD: net/minecraft/world/level/block/SoundType/f_154667_ net/minecraft/world/level/block/SoundType/FLOWERING_AZALEA +FD: net/minecraft/world/level/block/SoundType/f_154668_ net/minecraft/world/level/block/SoundType/MOSS_CARPET +FD: net/minecraft/world/level/block/SoundType/f_154669_ net/minecraft/world/level/block/SoundType/MOSS +FD: net/minecraft/world/level/block/SoundType/f_154670_ net/minecraft/world/level/block/SoundType/BIG_DRIPLEAF +FD: net/minecraft/world/level/block/SoundType/f_154671_ net/minecraft/world/level/block/SoundType/SMALL_DRIPLEAF +FD: net/minecraft/world/level/block/SoundType/f_154672_ net/minecraft/world/level/block/SoundType/ROOTED_DIRT +FD: net/minecraft/world/level/block/SoundType/f_154673_ net/minecraft/world/level/block/SoundType/HANGING_ROOTS +FD: net/minecraft/world/level/block/SoundType/f_154674_ net/minecraft/world/level/block/SoundType/AZALEA_LEAVES +FD: net/minecraft/world/level/block/SoundType/f_154675_ net/minecraft/world/level/block/SoundType/SCULK_SENSOR +FD: net/minecraft/world/level/block/SoundType/f_154676_ net/minecraft/world/level/block/SoundType/GLOW_LICHEN +FD: net/minecraft/world/level/block/SoundType/f_154677_ net/minecraft/world/level/block/SoundType/DEEPSLATE +FD: net/minecraft/world/level/block/SoundType/f_154678_ net/minecraft/world/level/block/SoundType/DEEPSLATE_BRICKS +FD: net/minecraft/world/level/block/SoundType/f_154679_ net/minecraft/world/level/block/SoundType/DEEPSLATE_TILES +FD: net/minecraft/world/level/block/SoundType/f_154680_ net/minecraft/world/level/block/SoundType/POLISHED_DEEPSLATE +FD: net/minecraft/world/level/block/SoundType/f_154681_ net/minecraft/world/level/block/SoundType/POWDER_SNOW +FD: net/minecraft/world/level/block/SoundType/f_222465_ net/minecraft/world/level/block/SoundType/FROGLIGHT +FD: net/minecraft/world/level/block/SoundType/f_222466_ net/minecraft/world/level/block/SoundType/FROGSPAWN +FD: net/minecraft/world/level/block/SoundType/f_222467_ net/minecraft/world/level/block/SoundType/MANGROVE_ROOTS +FD: net/minecraft/world/level/block/SoundType/f_222468_ net/minecraft/world/level/block/SoundType/MUDDY_MANGROVE_ROOTS +FD: net/minecraft/world/level/block/SoundType/f_222469_ net/minecraft/world/level/block/SoundType/MUD +FD: net/minecraft/world/level/block/SoundType/f_222470_ net/minecraft/world/level/block/SoundType/MUD_BRICKS +FD: net/minecraft/world/level/block/SoundType/f_222471_ net/minecraft/world/level/block/SoundType/PACKED_MUD +FD: net/minecraft/world/level/block/SoundType/f_222472_ net/minecraft/world/level/block/SoundType/SCULK_CATALYST +FD: net/minecraft/world/level/block/SoundType/f_222473_ net/minecraft/world/level/block/SoundType/SCULK +FD: net/minecraft/world/level/block/SoundType/f_222474_ net/minecraft/world/level/block/SoundType/SCULK_VEIN +FD: net/minecraft/world/level/block/SoundType/f_222475_ net/minecraft/world/level/block/SoundType/SCULK_SHRIEKER +FD: net/minecraft/world/level/block/SoundType/f_243772_ net/minecraft/world/level/block/SoundType/BAMBOO_WOOD +FD: net/minecraft/world/level/block/SoundType/f_244174_ net/minecraft/world/level/block/SoundType/HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_244244_ net/minecraft/world/level/block/SoundType/NETHER_WOOD +FD: net/minecraft/world/level/block/SoundType/f_256908_ net/minecraft/world/level/block/SoundType/NETHER_WOOD_HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_256956_ net/minecraft/world/level/block/SoundType/CHISELED_BOOKSHELF +FD: net/minecraft/world/level/block/SoundType/f_256995_ net/minecraft/world/level/block/SoundType/BAMBOO_WOOD_HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_271094_ net/minecraft/world/level/block/SoundType/CHERRY_WOOD_HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_271137_ net/minecraft/world/level/block/SoundType/PINK_PETALS +FD: net/minecraft/world/level/block/SoundType/f_271168_ net/minecraft/world/level/block/SoundType/SUSPICIOUS_SAND +FD: net/minecraft/world/level/block/SoundType/f_271215_ net/minecraft/world/level/block/SoundType/DECORATED_POT +FD: net/minecraft/world/level/block/SoundType/f_271239_ net/minecraft/world/level/block/SoundType/CHERRY_LEAVES +FD: net/minecraft/world/level/block/SoundType/f_271370_ net/minecraft/world/level/block/SoundType/CHERRY_SAPLING +FD: net/minecraft/world/level/block/SoundType/f_271497_ net/minecraft/world/level/block/SoundType/CHERRY_WOOD +FD: net/minecraft/world/level/block/SoundType/f_276571_ net/minecraft/world/level/block/SoundType/DECORATED_POT_CRACKED +FD: net/minecraft/world/level/block/SoundType/f_276658_ net/minecraft/world/level/block/SoundType/SUSPICIOUS_GRAVEL +FD: net/minecraft/world/level/block/SoundType/f_279557_ net/minecraft/world/level/block/SoundType/EMPTY +FD: net/minecraft/world/level/block/SoundType/f_56710_ net/minecraft/world/level/block/SoundType/NYLIUM +FD: net/minecraft/world/level/block/SoundType/f_56711_ net/minecraft/world/level/block/SoundType/FUNGUS +FD: net/minecraft/world/level/block/SoundType/f_56712_ net/minecraft/world/level/block/SoundType/ROOTS +FD: net/minecraft/world/level/block/SoundType/f_56713_ net/minecraft/world/level/block/SoundType/SHROOMLIGHT +FD: net/minecraft/world/level/block/SoundType/f_56714_ net/minecraft/world/level/block/SoundType/WEEPING_VINES +FD: net/minecraft/world/level/block/SoundType/f_56715_ net/minecraft/world/level/block/SoundType/TWISTING_VINES +FD: net/minecraft/world/level/block/SoundType/f_56716_ net/minecraft/world/level/block/SoundType/SOUL_SAND +FD: net/minecraft/world/level/block/SoundType/f_56717_ net/minecraft/world/level/block/SoundType/SOUL_SOIL +FD: net/minecraft/world/level/block/SoundType/f_56718_ net/minecraft/world/level/block/SoundType/BASALT +FD: net/minecraft/world/level/block/SoundType/f_56719_ net/minecraft/world/level/block/SoundType/WART_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56720_ net/minecraft/world/level/block/SoundType/NETHERRACK +FD: net/minecraft/world/level/block/SoundType/f_56721_ net/minecraft/world/level/block/SoundType/NETHER_BRICKS +FD: net/minecraft/world/level/block/SoundType/f_56722_ net/minecraft/world/level/block/SoundType/NETHER_SPROUTS +FD: net/minecraft/world/level/block/SoundType/f_56723_ net/minecraft/world/level/block/SoundType/NETHER_ORE +FD: net/minecraft/world/level/block/SoundType/f_56724_ net/minecraft/world/level/block/SoundType/BONE_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56725_ net/minecraft/world/level/block/SoundType/NETHERITE_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56726_ net/minecraft/world/level/block/SoundType/ANCIENT_DEBRIS +FD: net/minecraft/world/level/block/SoundType/f_56727_ net/minecraft/world/level/block/SoundType/LODESTONE +FD: net/minecraft/world/level/block/SoundType/f_56728_ net/minecraft/world/level/block/SoundType/CHAIN +FD: net/minecraft/world/level/block/SoundType/f_56729_ net/minecraft/world/level/block/SoundType/NETHER_GOLD_ORE +FD: net/minecraft/world/level/block/SoundType/f_56730_ net/minecraft/world/level/block/SoundType/GILDED_BLACKSTONE +FD: net/minecraft/world/level/block/SoundType/f_56731_ net/minecraft/world/level/block/SoundType/volume +FD: net/minecraft/world/level/block/SoundType/f_56732_ net/minecraft/world/level/block/SoundType/pitch +FD: net/minecraft/world/level/block/SoundType/f_56733_ net/minecraft/world/level/block/SoundType/breakSound +FD: net/minecraft/world/level/block/SoundType/f_56734_ net/minecraft/world/level/block/SoundType/stepSound +FD: net/minecraft/world/level/block/SoundType/f_56735_ net/minecraft/world/level/block/SoundType/placeSound +FD: net/minecraft/world/level/block/SoundType/f_56736_ net/minecraft/world/level/block/SoundType/WOOD +FD: net/minecraft/world/level/block/SoundType/f_56737_ net/minecraft/world/level/block/SoundType/hitSound +FD: net/minecraft/world/level/block/SoundType/f_56738_ net/minecraft/world/level/block/SoundType/fallSound +FD: net/minecraft/world/level/block/SoundType/f_56739_ net/minecraft/world/level/block/SoundType/GRAVEL +FD: net/minecraft/world/level/block/SoundType/f_56740_ net/minecraft/world/level/block/SoundType/GRASS +FD: net/minecraft/world/level/block/SoundType/f_56741_ net/minecraft/world/level/block/SoundType/LILY_PAD +FD: net/minecraft/world/level/block/SoundType/f_56742_ net/minecraft/world/level/block/SoundType/STONE +FD: net/minecraft/world/level/block/SoundType/f_56743_ net/minecraft/world/level/block/SoundType/METAL +FD: net/minecraft/world/level/block/SoundType/f_56744_ net/minecraft/world/level/block/SoundType/GLASS +FD: net/minecraft/world/level/block/SoundType/f_56745_ net/minecraft/world/level/block/SoundType/WOOL +FD: net/minecraft/world/level/block/SoundType/f_56746_ net/minecraft/world/level/block/SoundType/SAND +FD: net/minecraft/world/level/block/SoundType/f_56747_ net/minecraft/world/level/block/SoundType/SNOW +FD: net/minecraft/world/level/block/SoundType/f_56748_ net/minecraft/world/level/block/SoundType/LADDER +FD: net/minecraft/world/level/block/SoundType/f_56749_ net/minecraft/world/level/block/SoundType/ANVIL +FD: net/minecraft/world/level/block/SoundType/f_56750_ net/minecraft/world/level/block/SoundType/SLIME_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56751_ net/minecraft/world/level/block/SoundType/HONEY_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56752_ net/minecraft/world/level/block/SoundType/WET_GRASS +FD: net/minecraft/world/level/block/SoundType/f_56753_ net/minecraft/world/level/block/SoundType/CORAL_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56754_ net/minecraft/world/level/block/SoundType/BAMBOO +FD: net/minecraft/world/level/block/SoundType/f_56755_ net/minecraft/world/level/block/SoundType/BAMBOO_SAPLING +FD: net/minecraft/world/level/block/SoundType/f_56756_ net/minecraft/world/level/block/SoundType/SCAFFOLDING +FD: net/minecraft/world/level/block/SoundType/f_56757_ net/minecraft/world/level/block/SoundType/SWEET_BERRY_BUSH +FD: net/minecraft/world/level/block/SoundType/f_56758_ net/minecraft/world/level/block/SoundType/CROP +FD: net/minecraft/world/level/block/SoundType/f_56759_ net/minecraft/world/level/block/SoundType/HARD_CROP +FD: net/minecraft/world/level/block/SoundType/f_56760_ net/minecraft/world/level/block/SoundType/VINE +FD: net/minecraft/world/level/block/SoundType/f_56761_ net/minecraft/world/level/block/SoundType/NETHER_WART +FD: net/minecraft/world/level/block/SoundType/f_56762_ net/minecraft/world/level/block/SoundType/LANTERN +FD: net/minecraft/world/level/block/SoundType/f_56763_ net/minecraft/world/level/block/SoundType/STEM +FD: net/minecraft/world/level/block/SpongeBlock/f_154689_ net/minecraft/world/level/block/SpongeBlock/MAX_DEPTH +FD: net/minecraft/world/level/block/SpongeBlock/f_154690_ net/minecraft/world/level/block/SpongeBlock/MAX_COUNT +FD: net/minecraft/world/level/block/SpongeBlock/f_276425_ net/minecraft/world/level/block/SpongeBlock/ALL_DIRECTIONS +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154691_ net/minecraft/world/level/block/SporeBlossomBlock/SHAPE +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154692_ net/minecraft/world/level/block/SporeBlossomBlock/ADD_PARTICLE_ATTEMPTS +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154693_ net/minecraft/world/level/block/SporeBlossomBlock/PARTICLE_XZ_RADIUS +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154694_ net/minecraft/world/level/block/SporeBlossomBlock/PARTICLE_Y_MAX +FD: net/minecraft/world/level/block/StainedGlassBlock/f_56831_ net/minecraft/world/level/block/StainedGlassBlock/color +FD: net/minecraft/world/level/block/StainedGlassPaneBlock/f_56836_ net/minecraft/world/level/block/StainedGlassPaneBlock/color +FD: net/minecraft/world/level/block/StairBlock/f_56841_ net/minecraft/world/level/block/StairBlock/FACING +FD: net/minecraft/world/level/block/StairBlock/f_56842_ net/minecraft/world/level/block/StairBlock/HALF +FD: net/minecraft/world/level/block/StairBlock/f_56843_ net/minecraft/world/level/block/StairBlock/SHAPE +FD: net/minecraft/world/level/block/StairBlock/f_56844_ net/minecraft/world/level/block/StairBlock/WATERLOGGED +FD: net/minecraft/world/level/block/StairBlock/f_56845_ net/minecraft/world/level/block/StairBlock/TOP_AABB +FD: net/minecraft/world/level/block/StairBlock/f_56846_ net/minecraft/world/level/block/StairBlock/BOTTOM_AABB +FD: net/minecraft/world/level/block/StairBlock/f_56847_ net/minecraft/world/level/block/StairBlock/OCTET_NNN +FD: net/minecraft/world/level/block/StairBlock/f_56848_ net/minecraft/world/level/block/StairBlock/OCTET_NNP +FD: net/minecraft/world/level/block/StairBlock/f_56849_ net/minecraft/world/level/block/StairBlock/OCTET_NPN +FD: net/minecraft/world/level/block/StairBlock/f_56850_ net/minecraft/world/level/block/StairBlock/OCTET_NPP +FD: net/minecraft/world/level/block/StairBlock/f_56851_ net/minecraft/world/level/block/StairBlock/OCTET_PNN +FD: net/minecraft/world/level/block/StairBlock/f_56852_ net/minecraft/world/level/block/StairBlock/OCTET_PNP +FD: net/minecraft/world/level/block/StairBlock/f_56853_ net/minecraft/world/level/block/StairBlock/OCTET_PPN +FD: net/minecraft/world/level/block/StairBlock/f_56854_ net/minecraft/world/level/block/StairBlock/OCTET_PPP +FD: net/minecraft/world/level/block/StairBlock/f_56855_ net/minecraft/world/level/block/StairBlock/TOP_SHAPES +FD: net/minecraft/world/level/block/StairBlock/f_56856_ net/minecraft/world/level/block/StairBlock/BOTTOM_SHAPES +FD: net/minecraft/world/level/block/StairBlock/f_56857_ net/minecraft/world/level/block/StairBlock/SHAPE_BY_STATE +FD: net/minecraft/world/level/block/StairBlock/f_56858_ net/minecraft/world/level/block/StairBlock/base +FD: net/minecraft/world/level/block/StairBlock/f_56859_ net/minecraft/world/level/block/StairBlock/baseState +FD: net/minecraft/world/level/block/StairBlock$1/f_56984_ net/minecraft/world/level/block/StairBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$StairsShape +FD: net/minecraft/world/level/block/StairBlock$1/f_56985_ net/minecraft/world/level/block/StairBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/StandingSignBlock/f_56987_ net/minecraft/world/level/block/StandingSignBlock/ROTATION +FD: net/minecraft/world/level/block/StemBlock/f_154724_ net/minecraft/world/level/block/StemBlock/MAX_AGE +FD: net/minecraft/world/level/block/StemBlock/f_154725_ net/minecraft/world/level/block/StemBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/StemBlock/f_154726_ net/minecraft/world/level/block/StemBlock/seedSupplier +FD: net/minecraft/world/level/block/StemBlock/f_57013_ net/minecraft/world/level/block/StemBlock/AGE +FD: net/minecraft/world/level/block/StemBlock/f_57014_ net/minecraft/world/level/block/StemBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/StemBlock/f_57015_ net/minecraft/world/level/block/StemBlock/fruit +FD: net/minecraft/world/level/block/StonecutterBlock/f_57063_ net/minecraft/world/level/block/StonecutterBlock/FACING +FD: net/minecraft/world/level/block/StonecutterBlock/f_57064_ net/minecraft/world/level/block/StonecutterBlock/SHAPE +FD: net/minecraft/world/level/block/StonecutterBlock/f_57065_ net/minecraft/world/level/block/StonecutterBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/StructureBlock/f_57110_ net/minecraft/world/level/block/StructureBlock/MODE +FD: net/minecraft/world/level/block/StructureBlock$1/f_57145_ net/minecraft/world/level/block/StructureBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$StructureMode +FD: net/minecraft/world/level/block/StructureVoidBlock/f_154734_ net/minecraft/world/level/block/StructureVoidBlock/SIZE +FD: net/minecraft/world/level/block/StructureVoidBlock/f_57147_ net/minecraft/world/level/block/StructureVoidBlock/SHAPE +FD: net/minecraft/world/level/block/SugarCaneBlock/f_154735_ net/minecraft/world/level/block/SugarCaneBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SugarCaneBlock/f_57164_ net/minecraft/world/level/block/SugarCaneBlock/AGE +FD: net/minecraft/world/level/block/SugarCaneBlock/f_57165_ net/minecraft/world/level/block/SugarCaneBlock/SHAPE +FD: net/minecraft/world/level/block/SupportType/$VALUES net/minecraft/world/level/block/SupportType/$VALUES +FD: net/minecraft/world/level/block/SupportType/CENTER net/minecraft/world/level/block/SupportType/CENTER +FD: net/minecraft/world/level/block/SupportType/FULL net/minecraft/world/level/block/SupportType/FULL +FD: net/minecraft/world/level/block/SupportType/RIGID net/minecraft/world/level/block/SupportType/RIGID +FD: net/minecraft/world/level/block/SupportType$2/f_57224_ net/minecraft/world/level/block/SupportType$2/CENTER_SUPPORT_WIDTH +FD: net/minecraft/world/level/block/SupportType$2/f_57225_ net/minecraft/world/level/block/SupportType$2/CENTER_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/SupportType$3/f_57234_ net/minecraft/world/level/block/SupportType$3/RIGID_SUPPORT_WIDTH +FD: net/minecraft/world/level/block/SupportType$3/f_57235_ net/minecraft/world/level/block/SupportType$3/RIGID_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_154737_ net/minecraft/world/level/block/SweetBerryBushBlock/MAX_AGE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_154738_ net/minecraft/world/level/block/SweetBerryBushBlock/HURT_SPEED_THRESHOLD +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_57244_ net/minecraft/world/level/block/SweetBerryBushBlock/AGE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_57245_ net/minecraft/world/level/block/SweetBerryBushBlock/SAPLING_SHAPE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_57246_ net/minecraft/world/level/block/SweetBerryBushBlock/MID_GROWTH_SHAPE +FD: net/minecraft/world/level/block/TallGrassBlock/f_154739_ net/minecraft/world/level/block/TallGrassBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TallGrassBlock/f_57315_ net/minecraft/world/level/block/TallGrassBlock/SHAPE +FD: net/minecraft/world/level/block/TallSeagrassBlock/f_154740_ net/minecraft/world/level/block/TallSeagrassBlock/HALF +FD: net/minecraft/world/level/block/TallSeagrassBlock/f_154741_ net/minecraft/world/level/block/TallSeagrassBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TallSeagrassBlock/f_154742_ net/minecraft/world/level/block/TallSeagrassBlock/SHAPE +FD: net/minecraft/world/level/block/TargetBlock/f_154777_ net/minecraft/world/level/block/TargetBlock/ACTIVATION_TICKS_ARROWS +FD: net/minecraft/world/level/block/TargetBlock/f_154778_ net/minecraft/world/level/block/TargetBlock/ACTIVATION_TICKS_OTHER +FD: net/minecraft/world/level/block/TargetBlock/f_57376_ net/minecraft/world/level/block/TargetBlock/OUTPUT_POWER +FD: net/minecraft/world/level/block/TntBlock/f_57419_ net/minecraft/world/level/block/TntBlock/UNSTABLE +FD: net/minecraft/world/level/block/TorchBlock/f_154831_ net/minecraft/world/level/block/TorchBlock/AABB_STANDING_OFFSET +FD: net/minecraft/world/level/block/TorchBlock/f_57487_ net/minecraft/world/level/block/TorchBlock/AABB +FD: net/minecraft/world/level/block/TorchBlock/f_57488_ net/minecraft/world/level/block/TorchBlock/flameParticle +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271086_ net/minecraft/world/level/block/TorchflowerCropBlock/AGE +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271128_ net/minecraft/world/level/block/TorchflowerCropBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271140_ net/minecraft/world/level/block/TorchflowerCropBlock/MAX_AGE +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271351_ net/minecraft/world/level/block/TorchflowerCropBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_278489_ net/minecraft/world/level/block/TorchflowerCropBlock/BONEMEAL_INCREASE +FD: net/minecraft/world/level/block/TrapDoorBlock/f_154832_ net/minecraft/world/level/block/TrapDoorBlock/AABB_THICKNESS +FD: net/minecraft/world/level/block/TrapDoorBlock/f_271458_ net/minecraft/world/level/block/TrapDoorBlock/type +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57514_ net/minecraft/world/level/block/TrapDoorBlock/OPEN +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57515_ net/minecraft/world/level/block/TrapDoorBlock/HALF +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57516_ net/minecraft/world/level/block/TrapDoorBlock/POWERED +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57517_ net/minecraft/world/level/block/TrapDoorBlock/WATERLOGGED +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57518_ net/minecraft/world/level/block/TrapDoorBlock/EAST_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57519_ net/minecraft/world/level/block/TrapDoorBlock/WEST_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57520_ net/minecraft/world/level/block/TrapDoorBlock/SOUTH_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57521_ net/minecraft/world/level/block/TrapDoorBlock/NORTH_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57522_ net/minecraft/world/level/block/TrapDoorBlock/BOTTOM_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57523_ net/minecraft/world/level/block/TrapDoorBlock/TOP_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock$1/f_57569_ net/minecraft/world/level/block/TrapDoorBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/TrapDoorBlock$1/f_57570_ net/minecraft/world/level/block/TrapDoorBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/TripWireBlock/f_154836_ net/minecraft/world/level/block/TripWireBlock/RECHECK_PERIOD +FD: net/minecraft/world/level/block/TripWireBlock/f_57590_ net/minecraft/world/level/block/TripWireBlock/POWERED +FD: net/minecraft/world/level/block/TripWireBlock/f_57591_ net/minecraft/world/level/block/TripWireBlock/ATTACHED +FD: net/minecraft/world/level/block/TripWireBlock/f_57592_ net/minecraft/world/level/block/TripWireBlock/DISARMED +FD: net/minecraft/world/level/block/TripWireBlock/f_57593_ net/minecraft/world/level/block/TripWireBlock/NORTH +FD: net/minecraft/world/level/block/TripWireBlock/f_57594_ net/minecraft/world/level/block/TripWireBlock/EAST +FD: net/minecraft/world/level/block/TripWireBlock/f_57595_ net/minecraft/world/level/block/TripWireBlock/SOUTH +FD: net/minecraft/world/level/block/TripWireBlock/f_57596_ net/minecraft/world/level/block/TripWireBlock/WEST +FD: net/minecraft/world/level/block/TripWireBlock/f_57597_ net/minecraft/world/level/block/TripWireBlock/AABB +FD: net/minecraft/world/level/block/TripWireBlock/f_57598_ net/minecraft/world/level/block/TripWireBlock/NOT_ATTACHED_AABB +FD: net/minecraft/world/level/block/TripWireBlock/f_57599_ net/minecraft/world/level/block/TripWireBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/TripWireBlock/f_57600_ net/minecraft/world/level/block/TripWireBlock/hook +FD: net/minecraft/world/level/block/TripWireBlock$1/f_57664_ net/minecraft/world/level/block/TripWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/TripWireBlock$1/f_57665_ net/minecraft/world/level/block/TripWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154837_ net/minecraft/world/level/block/TripWireHookBlock/WIRE_DIST_MIN +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154838_ net/minecraft/world/level/block/TripWireHookBlock/WIRE_DIST_MAX +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154839_ net/minecraft/world/level/block/TripWireHookBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154840_ net/minecraft/world/level/block/TripWireHookBlock/RECHECK_PERIOD +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57667_ net/minecraft/world/level/block/TripWireHookBlock/FACING +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57668_ net/minecraft/world/level/block/TripWireHookBlock/POWERED +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57669_ net/minecraft/world/level/block/TripWireHookBlock/ATTACHED +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57670_ net/minecraft/world/level/block/TripWireHookBlock/NORTH_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57671_ net/minecraft/world/level/block/TripWireHookBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57672_ net/minecraft/world/level/block/TripWireHookBlock/WEST_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57673_ net/minecraft/world/level/block/TripWireHookBlock/EAST_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock$1/f_57751_ net/minecraft/world/level/block/TripWireHookBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/TurtleEggBlock/f_154841_ net/minecraft/world/level/block/TurtleEggBlock/MAX_HATCH_LEVEL +FD: net/minecraft/world/level/block/TurtleEggBlock/f_154842_ net/minecraft/world/level/block/TurtleEggBlock/MIN_EGGS +FD: net/minecraft/world/level/block/TurtleEggBlock/f_154843_ net/minecraft/world/level/block/TurtleEggBlock/MAX_EGGS +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57753_ net/minecraft/world/level/block/TurtleEggBlock/HATCH +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57754_ net/minecraft/world/level/block/TurtleEggBlock/EGGS +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57755_ net/minecraft/world/level/block/TurtleEggBlock/ONE_EGG_AABB +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57756_ net/minecraft/world/level/block/TurtleEggBlock/MULTIPLE_EGGS_AABB +FD: net/minecraft/world/level/block/TwistingVinesBlock/f_154861_ net/minecraft/world/level/block/TwistingVinesBlock/SHAPE +FD: net/minecraft/world/level/block/TwistingVinesPlantBlock/f_154870_ net/minecraft/world/level/block/TwistingVinesPlantBlock/SHAPE +FD: net/minecraft/world/level/block/VineBlock/f_154875_ net/minecraft/world/level/block/VineBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/VineBlock/f_57833_ net/minecraft/world/level/block/VineBlock/UP +FD: net/minecraft/world/level/block/VineBlock/f_57834_ net/minecraft/world/level/block/VineBlock/NORTH +FD: net/minecraft/world/level/block/VineBlock/f_57835_ net/minecraft/world/level/block/VineBlock/EAST +FD: net/minecraft/world/level/block/VineBlock/f_57836_ net/minecraft/world/level/block/VineBlock/SOUTH +FD: net/minecraft/world/level/block/VineBlock/f_57837_ net/minecraft/world/level/block/VineBlock/WEST +FD: net/minecraft/world/level/block/VineBlock/f_57838_ net/minecraft/world/level/block/VineBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/VineBlock/f_57839_ net/minecraft/world/level/block/VineBlock/UP_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57840_ net/minecraft/world/level/block/VineBlock/WEST_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57841_ net/minecraft/world/level/block/VineBlock/EAST_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57842_ net/minecraft/world/level/block/VineBlock/NORTH_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57843_ net/minecraft/world/level/block/VineBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57844_ net/minecraft/world/level/block/VineBlock/shapesCache +FD: net/minecraft/world/level/block/VineBlock$1/f_57913_ net/minecraft/world/level/block/VineBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/VineBlock$1/f_57914_ net/minecraft/world/level/block/VineBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/WallBannerBlock/f_57916_ net/minecraft/world/level/block/WallBannerBlock/FACING +FD: net/minecraft/world/level/block/WallBannerBlock/f_57917_ net/minecraft/world/level/block/WallBannerBlock/SHAPES +FD: net/minecraft/world/level/block/WallBlock/f_154876_ net/minecraft/world/level/block/WallBlock/WALL_WIDTH +FD: net/minecraft/world/level/block/WallBlock/f_154877_ net/minecraft/world/level/block/WallBlock/WALL_HEIGHT +FD: net/minecraft/world/level/block/WallBlock/f_154878_ net/minecraft/world/level/block/WallBlock/POST_WIDTH +FD: net/minecraft/world/level/block/WallBlock/f_154879_ net/minecraft/world/level/block/WallBlock/POST_COVER_WIDTH +FD: net/minecraft/world/level/block/WallBlock/f_154880_ net/minecraft/world/level/block/WallBlock/WALL_COVER_START +FD: net/minecraft/world/level/block/WallBlock/f_154881_ net/minecraft/world/level/block/WallBlock/WALL_COVER_END +FD: net/minecraft/world/level/block/WallBlock/f_57949_ net/minecraft/world/level/block/WallBlock/UP +FD: net/minecraft/world/level/block/WallBlock/f_57950_ net/minecraft/world/level/block/WallBlock/EAST_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57951_ net/minecraft/world/level/block/WallBlock/NORTH_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57952_ net/minecraft/world/level/block/WallBlock/SOUTH_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57953_ net/minecraft/world/level/block/WallBlock/WEST_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57954_ net/minecraft/world/level/block/WallBlock/WATERLOGGED +FD: net/minecraft/world/level/block/WallBlock/f_57955_ net/minecraft/world/level/block/WallBlock/shapeByIndex +FD: net/minecraft/world/level/block/WallBlock/f_57956_ net/minecraft/world/level/block/WallBlock/collisionShapeByIndex +FD: net/minecraft/world/level/block/WallBlock/f_57957_ net/minecraft/world/level/block/WallBlock/POST_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57958_ net/minecraft/world/level/block/WallBlock/NORTH_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57959_ net/minecraft/world/level/block/WallBlock/SOUTH_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57960_ net/minecraft/world/level/block/WallBlock/WEST_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57961_ net/minecraft/world/level/block/WallBlock/EAST_TEST +FD: net/minecraft/world/level/block/WallBlock$1/f_58061_ net/minecraft/world/level/block/WallBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/WallBlock$1/f_58062_ net/minecraft/world/level/block/WallBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_243914_ net/minecraft/world/level/block/WallHangingSignBlock/SHAPE_EASTWEST +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244007_ net/minecraft/world/level/block/WallHangingSignBlock/PLANK_NORTHSOUTH +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244065_ net/minecraft/world/level/block/WallHangingSignBlock/PLANK_EASTWEST +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244390_ net/minecraft/world/level/block/WallHangingSignBlock/FACING +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244437_ net/minecraft/world/level/block/WallHangingSignBlock/AABBS +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244474_ net/minecraft/world/level/block/WallHangingSignBlock/SHAPE_NORTHSOUTH +FD: net/minecraft/world/level/block/WallHangingSignBlock$1/f_243983_ net/minecraft/world/level/block/WallHangingSignBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/WallSignBlock/f_154882_ net/minecraft/world/level/block/WallSignBlock/AABB_THICKNESS +FD: net/minecraft/world/level/block/WallSignBlock/f_154883_ net/minecraft/world/level/block/WallSignBlock/AABB_BOTTOM +FD: net/minecraft/world/level/block/WallSignBlock/f_154884_ net/minecraft/world/level/block/WallSignBlock/AABB_TOP +FD: net/minecraft/world/level/block/WallSignBlock/f_58064_ net/minecraft/world/level/block/WallSignBlock/FACING +FD: net/minecraft/world/level/block/WallSignBlock/f_58065_ net/minecraft/world/level/block/WallSignBlock/AABBS +FD: net/minecraft/world/level/block/WallSkullBlock/f_58097_ net/minecraft/world/level/block/WallSkullBlock/FACING +FD: net/minecraft/world/level/block/WallSkullBlock/f_58098_ net/minecraft/world/level/block/WallSkullBlock/AABBS +FD: net/minecraft/world/level/block/WallTorchBlock/f_154885_ net/minecraft/world/level/block/WallTorchBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/WallTorchBlock/f_58119_ net/minecraft/world/level/block/WallTorchBlock/FACING +FD: net/minecraft/world/level/block/WallTorchBlock/f_58120_ net/minecraft/world/level/block/WallTorchBlock/AABBS +FD: net/minecraft/world/level/block/WaterlilyBlock/f_58159_ net/minecraft/world/level/block/WaterlilyBlock/AABB +FD: net/minecraft/world/level/block/WeatheringCopper/f_154886_ net/minecraft/world/level/block/WeatheringCopper/NEXT_BY_BLOCK +FD: net/minecraft/world/level/block/WeatheringCopper/f_154887_ net/minecraft/world/level/block/WeatheringCopper/PREVIOUS_BY_BLOCK +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/$VALUES net/minecraft/world/level/block/WeatheringCopper$WeatherState/$VALUES +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/EXPOSED net/minecraft/world/level/block/WeatheringCopper$WeatherState/EXPOSED +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/OXIDIZED net/minecraft/world/level/block/WeatheringCopper$WeatherState/OXIDIZED +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/UNAFFECTED net/minecraft/world/level/block/WeatheringCopper$WeatherState/UNAFFECTED +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/WEATHERED net/minecraft/world/level/block/WeatheringCopper$WeatherState/WEATHERED +FD: net/minecraft/world/level/block/WeatheringCopperFullBlock/f_154923_ net/minecraft/world/level/block/WeatheringCopperFullBlock/weatherState +FD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/f_154936_ net/minecraft/world/level/block/WeatheringCopperSlabBlock/weatherState +FD: net/minecraft/world/level/block/WeatheringCopperStairBlock/f_154949_ net/minecraft/world/level/block/WeatheringCopperStairBlock/weatherState +FD: net/minecraft/world/level/block/WeepingVinesBlock/f_154963_ net/minecraft/world/level/block/WeepingVinesBlock/SHAPE +FD: net/minecraft/world/level/block/WeepingVinesPlantBlock/f_154972_ net/minecraft/world/level/block/WeepingVinesPlantBlock/SHAPE +FD: net/minecraft/world/level/block/WeightedPressurePlateBlock/f_58198_ net/minecraft/world/level/block/WeightedPressurePlateBlock/POWER +FD: net/minecraft/world/level/block/WeightedPressurePlateBlock/f_58199_ net/minecraft/world/level/block/WeightedPressurePlateBlock/maxWeight +FD: net/minecraft/world/level/block/WitherSkullBlock/f_58251_ net/minecraft/world/level/block/WitherSkullBlock/witherPatternFull +FD: net/minecraft/world/level/block/WitherSkullBlock/f_58252_ net/minecraft/world/level/block/WitherSkullBlock/witherPatternBase +FD: net/minecraft/world/level/block/WoolCarpetBlock/f_58288_ net/minecraft/world/level/block/WoolCarpetBlock/color +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154980_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOT_INPUT +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154981_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOT_FUEL +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154982_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOT_RESULT +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154983_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_LIT_TIME +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154984_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_LIT_DURATION +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154985_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_COOKING_PROGRESS +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154986_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_COOKING_TOTAL_TIME +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154987_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/NUM_DATA_VALUES +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154988_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/BURN_TIME_STANDARD +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154989_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/BURN_COOL_SPEED +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_222691_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/quickCheck +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58310_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/items +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58311_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58313_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOTS_FOR_UP +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58314_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOTS_FOR_DOWN +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58315_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOTS_FOR_SIDES +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58316_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/litTime +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58317_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/litDuration +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58318_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/cookingProgress +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58319_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/cookingTotalTime +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58320_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/recipesUsed +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/f_58426_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155030_ net/minecraft/world/level/block/entity/BannerBlockEntity/MAX_PATTERNS +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155031_ net/minecraft/world/level/block/entity/BannerBlockEntity/TAG_PATTERNS +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155032_ net/minecraft/world/level/block/entity/BannerBlockEntity/TAG_PATTERN +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155033_ net/minecraft/world/level/block/entity/BannerBlockEntity/TAG_COLOR +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58473_ net/minecraft/world/level/block/entity/BannerBlockEntity/name +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58474_ net/minecraft/world/level/block/entity/BannerBlockEntity/baseColor +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58475_ net/minecraft/world/level/block/entity/BannerBlockEntity/itemPatterns +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58477_ net/minecraft/world/level/block/entity/BannerBlockEntity/patterns +FD: net/minecraft/world/level/block/entity/BannerPattern/f_58532_ net/minecraft/world/level/block/entity/BannerPattern/hashname +FD: net/minecraft/world/level/block/entity/BannerPattern$Builder/f_58585_ net/minecraft/world/level/block/entity/BannerPattern$Builder/patterns +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222711_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_VERTICAL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222712_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_HORIZONTAL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222713_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_VERTICAL_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222714_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_HORIZONTAL_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222715_ net/minecraft/world/level/block/entity/BannerPatterns/BORDER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222716_ net/minecraft/world/level/block/entity/BannerPatterns/CURLY_BORDER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222717_ net/minecraft/world/level/block/entity/BannerPatterns/GRADIENT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222718_ net/minecraft/world/level/block/entity/BannerPatterns/GRADIENT_UP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222719_ net/minecraft/world/level/block/entity/BannerPatterns/BRICKS +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222720_ net/minecraft/world/level/block/entity/BannerPatterns/GLOBE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222721_ net/minecraft/world/level/block/entity/BannerPatterns/CREEPER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222722_ net/minecraft/world/level/block/entity/BannerPatterns/SKULL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222723_ net/minecraft/world/level/block/entity/BannerPatterns/FLOWER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222724_ net/minecraft/world/level/block/entity/BannerPatterns/MOJANG +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222725_ net/minecraft/world/level/block/entity/BannerPatterns/PIGLIN +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222726_ net/minecraft/world/level/block/entity/BannerPatterns/BASE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222727_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_BOTTOM_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222728_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_BOTTOM_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222729_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_TOP_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222730_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_TOP_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222731_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_BOTTOM +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222732_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_TOP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222733_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222734_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222735_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_CENTER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222736_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_MIDDLE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222737_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_DOWNRIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222738_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_DOWNLEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222739_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_SMALL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222740_ net/minecraft/world/level/block/entity/BannerPatterns/CROSS +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222741_ net/minecraft/world/level/block/entity/BannerPatterns/STRAIGHT_CROSS +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222742_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLE_BOTTOM +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222743_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLE_TOP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222744_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLES_BOTTOM +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222745_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLES_TOP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222746_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222747_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222748_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_LEFT_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222749_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_RIGHT_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222750_ net/minecraft/world/level/block/entity/BannerPatterns/CIRCLE_MIDDLE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222751_ net/minecraft/world/level/block/entity/BannerPatterns/RHOMBUS_MIDDLE +FD: net/minecraft/world/level/block/entity/BarrelBlockEntity/f_155050_ net/minecraft/world/level/block/entity/BarrelBlockEntity/openersCounter +FD: net/minecraft/world/level/block/entity/BarrelBlockEntity/f_58591_ net/minecraft/world/level/block/entity/BarrelBlockEntity/items +FD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/f_155056_ net/minecraft/world/level/block/entity/BarrelBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/f_58621_ net/minecraft/world/level/block/entity/BaseContainerBlockEntity/lockKey +FD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/f_58622_ net/minecraft/world/level/block/entity/BaseContainerBlockEntity/name +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155081_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DATA_LEVELS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155082_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DATA_PRIMARY +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155083_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DATA_SECONDARY +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155084_ net/minecraft/world/level/block/entity/BeaconBlockEntity/NUM_DATA_VALUES +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155085_ net/minecraft/world/level/block/entity/BeaconBlockEntity/MAX_LEVELS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155086_ net/minecraft/world/level/block/entity/BeaconBlockEntity/BLOCKS_CHECK_PER_TICK +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_243996_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DEFAULT_NAME +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58646_ net/minecraft/world/level/block/entity/BeaconBlockEntity/BEACON_EFFECTS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58647_ net/minecraft/world/level/block/entity/BeaconBlockEntity/VALID_EFFECTS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58648_ net/minecraft/world/level/block/entity/BeaconBlockEntity/beamSections +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58649_ net/minecraft/world/level/block/entity/BeaconBlockEntity/checkingBeamSections +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58650_ net/minecraft/world/level/block/entity/BeaconBlockEntity/levels +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58651_ net/minecraft/world/level/block/entity/BeaconBlockEntity/lastCheckY +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58652_ net/minecraft/world/level/block/entity/BeaconBlockEntity/primaryPower +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58653_ net/minecraft/world/level/block/entity/BeaconBlockEntity/secondaryPower +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58654_ net/minecraft/world/level/block/entity/BeaconBlockEntity/name +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58655_ net/minecraft/world/level/block/entity/BeaconBlockEntity/lockKey +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58656_ net/minecraft/world/level/block/entity/BeaconBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/f_58706_ net/minecraft/world/level/block/entity/BeaconBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/f_58715_ net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/color +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/f_58716_ net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/height +FD: net/minecraft/world/level/block/entity/BedBlockEntity/f_58724_ net/minecraft/world/level/block/entity/BedBlockEntity/color +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155121_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/TAG_FLOWER_POS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155122_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_OCCUPATION_TICKS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155123_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/ENTITY_DATA +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155124_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/TICKS_IN_HIVE +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155125_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/HAS_NECTAR +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155126_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/BEES +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155127_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MAX_OCCUPANTS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155128_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_OCCUPATION_TICKS_NECTARLESS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155129_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/IGNORED_BEE_TAGS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155130_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_TICKS_BEFORE_REENTERING_HIVE +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155131_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_OCCUPATION_TICKS_NECTAR +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_58732_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/stored +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_58733_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/savedFlowerPos +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/f_58782_ net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/entityData +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/f_58783_ net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/ticksInHive +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/f_58784_ net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/minOccupationTicks +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/$VALUES net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/$VALUES +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/BEE_RELEASED net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/BEE_RELEASED +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/EMERGENCY net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/EMERGENCY +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/HONEY_DELIVERED net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/HONEY_DELIVERED +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155164_ net/minecraft/world/level/block/entity/BellBlockEntity/DURATION +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155165_ net/minecraft/world/level/block/entity/BellBlockEntity/GLOW_DURATION +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155166_ net/minecraft/world/level/block/entity/BellBlockEntity/MIN_TICKS_BETWEEN_SEARCHES +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155167_ net/minecraft/world/level/block/entity/BellBlockEntity/MAX_RESONATION_TICKS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155168_ net/minecraft/world/level/block/entity/BellBlockEntity/TICKS_BEFORE_RESONATION +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155169_ net/minecraft/world/level/block/entity/BellBlockEntity/SEARCH_RADIUS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155170_ net/minecraft/world/level/block/entity/BellBlockEntity/HEAR_BELL_RADIUS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155171_ net/minecraft/world/level/block/entity/BellBlockEntity/HIGHLIGHT_RAIDERS_RADIUS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58813_ net/minecraft/world/level/block/entity/BellBlockEntity/ticks +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58814_ net/minecraft/world/level/block/entity/BellBlockEntity/shaking +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58815_ net/minecraft/world/level/block/entity/BellBlockEntity/clickDirection +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58816_ net/minecraft/world/level/block/entity/BellBlockEntity/lastRingTimestamp +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58817_ net/minecraft/world/level/block/entity/BellBlockEntity/nearbyEntities +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58818_ net/minecraft/world/level/block/entity/BellBlockEntity/resonating +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58819_ net/minecraft/world/level/block/entity/BellBlockEntity/resonationTicks +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58854_ net/minecraft/world/level/block/entity/BlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58855_ net/minecraft/world/level/block/entity/BlockEntity/type +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58856_ net/minecraft/world/level/block/entity/BlockEntity/blockState +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58857_ net/minecraft/world/level/block/entity/BlockEntity/level +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58858_ net/minecraft/world/level/block/entity/BlockEntity/worldPosition +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58859_ net/minecraft/world/level/block/entity/BlockEntity/remove +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_155257_ net/minecraft/world/level/block/entity/BlockEntityType/SCULK_SENSOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_222758_ net/minecraft/world/level/block/entity/BlockEntityType/SCULK_CATALYST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_222759_ net/minecraft/world/level/block/entity/BlockEntityType/SCULK_SHRIEKER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_244310_ net/minecraft/world/level/block/entity/BlockEntityType/CHISELED_BOOKSHELF +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_244529_ net/minecraft/world/level/block/entity/BlockEntityType/HANGING_SIGN +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_271291_ net/minecraft/world/level/block/entity/BlockEntityType/DECORATED_POT +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_271323_ net/minecraft/world/level/block/entity/BlockEntityType/BRUSHABLE_BLOCK +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_276581_ net/minecraft/world/level/block/entity/BlockEntityType/CALIBRATED_SCULK_SENSOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58906_ net/minecraft/world/level/block/entity/BlockEntityType/SMOKER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58907_ net/minecraft/world/level/block/entity/BlockEntityType/BLAST_FURNACE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58908_ net/minecraft/world/level/block/entity/BlockEntityType/LECTERN +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58909_ net/minecraft/world/level/block/entity/BlockEntityType/BELL +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58910_ net/minecraft/world/level/block/entity/BlockEntityType/JIGSAW +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58911_ net/minecraft/world/level/block/entity/BlockEntityType/CAMPFIRE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58912_ net/minecraft/world/level/block/entity/BlockEntityType/BEEHIVE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58913_ net/minecraft/world/level/block/entity/BlockEntityType/LOGGER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58914_ net/minecraft/world/level/block/entity/BlockEntityType/factory +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58915_ net/minecraft/world/level/block/entity/BlockEntityType/validBlocks +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58916_ net/minecraft/world/level/block/entity/BlockEntityType/dataType +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58917_ net/minecraft/world/level/block/entity/BlockEntityType/FURNACE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58918_ net/minecraft/world/level/block/entity/BlockEntityType/CHEST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58919_ net/minecraft/world/level/block/entity/BlockEntityType/TRAPPED_CHEST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58920_ net/minecraft/world/level/block/entity/BlockEntityType/ENDER_CHEST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58921_ net/minecraft/world/level/block/entity/BlockEntityType/JUKEBOX +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58922_ net/minecraft/world/level/block/entity/BlockEntityType/DISPENSER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58923_ net/minecraft/world/level/block/entity/BlockEntityType/DROPPER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58924_ net/minecraft/world/level/block/entity/BlockEntityType/SIGN +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58925_ net/minecraft/world/level/block/entity/BlockEntityType/MOB_SPAWNER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58926_ net/minecraft/world/level/block/entity/BlockEntityType/PISTON +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58927_ net/minecraft/world/level/block/entity/BlockEntityType/BREWING_STAND +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58928_ net/minecraft/world/level/block/entity/BlockEntityType/ENCHANTING_TABLE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58929_ net/minecraft/world/level/block/entity/BlockEntityType/END_PORTAL +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58930_ net/minecraft/world/level/block/entity/BlockEntityType/BEACON +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58931_ net/minecraft/world/level/block/entity/BlockEntityType/SKULL +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58932_ net/minecraft/world/level/block/entity/BlockEntityType/DAYLIGHT_DETECTOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58933_ net/minecraft/world/level/block/entity/BlockEntityType/HOPPER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58934_ net/minecraft/world/level/block/entity/BlockEntityType/COMPARATOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58935_ net/minecraft/world/level/block/entity/BlockEntityType/BANNER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58936_ net/minecraft/world/level/block/entity/BlockEntityType/STRUCTURE_BLOCK +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58937_ net/minecraft/world/level/block/entity/BlockEntityType/END_GATEWAY +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58938_ net/minecraft/world/level/block/entity/BlockEntityType/COMMAND_BLOCK +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58939_ net/minecraft/world/level/block/entity/BlockEntityType/SHULKER_BOX +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58940_ net/minecraft/world/level/block/entity/BlockEntityType/BED +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58941_ net/minecraft/world/level/block/entity/BlockEntityType/CONDUIT +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58942_ net/minecraft/world/level/block/entity/BlockEntityType/BARREL +FD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/f_58959_ net/minecraft/world/level/block/entity/BlockEntityType$Builder/factory +FD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/f_58960_ net/minecraft/world/level/block/entity/BlockEntityType$Builder/validBlocks +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155276_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/FUEL_USES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155277_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/DATA_BREW_TIME +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155278_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/DATA_FUEL_USES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155279_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/NUM_DATA_VALUES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155280_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/INGREDIENT_SLOT +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155281_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/FUEL_SLOT +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58971_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58972_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/SLOTS_FOR_UP +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58973_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/SLOTS_FOR_DOWN +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58974_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/SLOTS_FOR_SIDES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58975_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/items +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58976_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/brewTime +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58977_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/lastPotionCount +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58978_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ingredient +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58979_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/fuel +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/f_59033_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276466_ net/minecraft/world/level/block/entity/BrushableBlockEntity/lootTable +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276481_ net/minecraft/world/level/block/entity/BrushableBlockEntity/LOOT_TABLE_SEED_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276487_ net/minecraft/world/level/block/entity/BrushableBlockEntity/lootTableSeed +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276497_ net/minecraft/world/level/block/entity/BrushableBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276499_ net/minecraft/world/level/block/entity/BrushableBlockEntity/BRUSH_RESET_TICKS +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276531_ net/minecraft/world/level/block/entity/BrushableBlockEntity/brushCount +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276551_ net/minecraft/world/level/block/entity/BrushableBlockEntity/BRUSH_COOLDOWN_TICKS +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276557_ net/minecraft/world/level/block/entity/BrushableBlockEntity/coolDownEndsAtTick +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276563_ net/minecraft/world/level/block/entity/BrushableBlockEntity/item +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276577_ net/minecraft/world/level/block/entity/BrushableBlockEntity/ITEM_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276583_ net/minecraft/world/level/block/entity/BrushableBlockEntity/REQUIRED_BRUSHES_TO_BREAK +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276606_ net/minecraft/world/level/block/entity/BrushableBlockEntity/HIT_DIRECTION_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276638_ net/minecraft/world/level/block/entity/BrushableBlockEntity/hitDirection +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276647_ net/minecraft/world/level/block/entity/BrushableBlockEntity/LOOT_TABLE_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276679_ net/minecraft/world/level/block/entity/BrushableBlockEntity/brushCountResetsAtTick +FD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/f_279588_ net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/this$0 +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_155298_ net/minecraft/world/level/block/entity/CampfireBlockEntity/BURN_COOL_SPEED +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_155299_ net/minecraft/world/level/block/entity/CampfireBlockEntity/NUM_SLOTS +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_222760_ net/minecraft/world/level/block/entity/CampfireBlockEntity/quickCheck +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_59042_ net/minecraft/world/level/block/entity/CampfireBlockEntity/items +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_59043_ net/minecraft/world/level/block/entity/CampfireBlockEntity/cookingProgress +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_59044_ net/minecraft/world/level/block/entity/CampfireBlockEntity/cookingTime +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_155323_ net/minecraft/world/level/block/entity/ChestBlockEntity/EVENT_SET_OPEN_COUNT +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_155324_ net/minecraft/world/level/block/entity/ChestBlockEntity/openersCounter +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_155325_ net/minecraft/world/level/block/entity/ChestBlockEntity/chestLidController +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_59073_ net/minecraft/world/level/block/entity/ChestBlockEntity/items +FD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/f_155351_ net/minecraft/world/level/block/entity/ChestBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/ChestLidController/f_155370_ net/minecraft/world/level/block/entity/ChestLidController/shouldBeOpen +FD: net/minecraft/world/level/block/entity/ChestLidController/f_155371_ net/minecraft/world/level/block/entity/ChestLidController/openness +FD: net/minecraft/world/level/block/entity/ChestLidController/f_155372_ net/minecraft/world/level/block/entity/ChestLidController/oOpenness +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_244647_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/MAX_BOOKS_IN_STORAGE +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_254661_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_260576_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/items +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_262317_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/lastInteractedSlot +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59123_ net/minecraft/world/level/block/entity/CommandBlockEntity/powered +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59124_ net/minecraft/world/level/block/entity/CommandBlockEntity/auto +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59125_ net/minecraft/world/level/block/entity/CommandBlockEntity/conditionMet +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59127_ net/minecraft/world/level/block/entity/CommandBlockEntity/commandBlock +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/f_59153_ net/minecraft/world/level/block/entity/CommandBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/$VALUES net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/$VALUES +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/AUTO net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/AUTO +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/REDSTONE net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/REDSTONE +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/SEQUENCE net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/SEQUENCE +FD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/f_59173_ net/minecraft/world/level/block/entity/ComparatorBlockEntity/output +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155390_ net/minecraft/world/level/block/entity/ConduitBlockEntity/BLOCK_REFRESH_RATE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155391_ net/minecraft/world/level/block/entity/ConduitBlockEntity/EFFECT_DURATION +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155392_ net/minecraft/world/level/block/entity/ConduitBlockEntity/ROTATION_SPEED +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155393_ net/minecraft/world/level/block/entity/ConduitBlockEntity/MIN_ACTIVE_SIZE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155394_ net/minecraft/world/level/block/entity/ConduitBlockEntity/MIN_KILL_SIZE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155395_ net/minecraft/world/level/block/entity/ConduitBlockEntity/KILL_RANGE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59183_ net/minecraft/world/level/block/entity/ConduitBlockEntity/tickCount +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59184_ net/minecraft/world/level/block/entity/ConduitBlockEntity/VALID_BLOCKS +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59185_ net/minecraft/world/level/block/entity/ConduitBlockEntity/activeRotation +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59186_ net/minecraft/world/level/block/entity/ConduitBlockEntity/isActive +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59187_ net/minecraft/world/level/block/entity/ConduitBlockEntity/isHunting +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59188_ net/minecraft/world/level/block/entity/ConduitBlockEntity/effectBlocks +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59189_ net/minecraft/world/level/block/entity/ConduitBlockEntity/destroyTarget +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59190_ net/minecraft/world/level/block/entity/ConduitBlockEntity/destroyTargetUUID +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59191_ net/minecraft/world/level/block/entity/ConduitBlockEntity/nextAmbientSoundActivation +FD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/f_155447_ net/minecraft/world/level/block/entity/ContainerOpenersCounter/CHECK_TICK_DELAY +FD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/f_155448_ net/minecraft/world/level/block/entity/ContainerOpenersCounter/openCount +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/f_271111_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/TAG_SHERDS +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/f_283890_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/decorations +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283770_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/EMPTY +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283809_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/left +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283810_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/front +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283873_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/right +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283886_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/back +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271149_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BRICK +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271184_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PRIZE_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271192_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BASE_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271238_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARCHER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271245_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BRICK_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271246_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SKULL +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271266_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BASE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271295_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARMS_UP_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271355_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARCHER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271367_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ITEM_TO_POT_TEXTURE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271411_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SKULL_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271431_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARMS_UP +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271499_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PRIZE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276417_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BLADE_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276418_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PLENTY_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276429_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/DANGER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276437_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHEAF_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276453_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BREWER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276456_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MOURNER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276473_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ANGLER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276474_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HOWL +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276482_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/EXPLORER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276483_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/EXPLORER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276511_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BLADE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276515_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BURN_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276521_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SNORT_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276523_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/FRIEND +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276529_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEART_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276534_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEART +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276550_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BURN +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276576_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MINER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276578_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEARTBREAK +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276584_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PLENTY +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276620_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BREWER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276623_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEARTBREAK_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276639_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/DANGER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276640_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHELTER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276641_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHELTER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276644_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SNORT +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276653_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ANGLER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276663_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/FRIEND_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276676_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MINER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276681_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HOWL_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276682_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHEAF +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276687_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MOURNER +FD: net/minecraft/world/level/block/entity/DispenserBlockEntity/f_155487_ net/minecraft/world/level/block/entity/DispenserBlockEntity/CONTAINER_SIZE +FD: net/minecraft/world/level/block/entity/DispenserBlockEntity/f_59228_ net/minecraft/world/level/block/entity/DispenserBlockEntity/items +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59251_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/time +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59252_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/flip +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59253_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/oFlip +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59254_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/flipT +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59255_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/flipA +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59256_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/open +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59257_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/oOpen +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59258_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/rot +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59259_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/oRot +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59260_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/tRot +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59261_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/RANDOM +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59262_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/name +FD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/f_155510_ net/minecraft/world/level/block/entity/EnderChestBlockEntity/chestLidController +FD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/f_155511_ net/minecraft/world/level/block/entity/EnderChestBlockEntity/openersCounter +FD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/f_155525_ net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/f_244305_ net/minecraft/world/level/block/entity/HangingSignBlockEntity/TEXT_LINE_HEIGHT +FD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/f_244379_ net/minecraft/world/level/block/entity/HangingSignBlockEntity/MAX_TEXT_LINE_WIDTH +FD: net/minecraft/world/level/block/entity/Hopper/f_59296_ net/minecraft/world/level/block/entity/Hopper/INSIDE +FD: net/minecraft/world/level/block/entity/Hopper/f_59297_ net/minecraft/world/level/block/entity/Hopper/ABOVE +FD: net/minecraft/world/level/block/entity/Hopper/f_59298_ net/minecraft/world/level/block/entity/Hopper/SUCK +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_155547_ net/minecraft/world/level/block/entity/HopperBlockEntity/MOVE_ITEM_SPEED +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_155548_ net/minecraft/world/level/block/entity/HopperBlockEntity/HOPPER_CONTAINER_SIZE +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_59301_ net/minecraft/world/level/block/entity/HopperBlockEntity/items +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_59302_ net/minecraft/world/level/block/entity/HopperBlockEntity/cooldownTime +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_59303_ net/minecraft/world/level/block/entity/HopperBlockEntity/tickedGameTime +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155599_ net/minecraft/world/level/block/entity/JigsawBlockEntity/TARGET +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155600_ net/minecraft/world/level/block/entity/JigsawBlockEntity/POOL +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155601_ net/minecraft/world/level/block/entity/JigsawBlockEntity/JOINT +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155602_ net/minecraft/world/level/block/entity/JigsawBlockEntity/NAME +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155603_ net/minecraft/world/level/block/entity/JigsawBlockEntity/FINAL_STATE +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59411_ net/minecraft/world/level/block/entity/JigsawBlockEntity/name +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59412_ net/minecraft/world/level/block/entity/JigsawBlockEntity/target +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59413_ net/minecraft/world/level/block/entity/JigsawBlockEntity/pool +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59414_ net/minecraft/world/level/block/entity/JigsawBlockEntity/joint +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59415_ net/minecraft/world/level/block/entity/JigsawBlockEntity/finalState +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/$VALUES net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/$VALUES +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ALIGNED net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ALIGNED +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ROLLABLE net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ROLLABLE +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/f_59449_ net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/name +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238572_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/recordStartedTick +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238637_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/isPlaying +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238695_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/tickCount +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238796_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/ticksSinceLastEvent +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_271436_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/items +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_271500_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/SONG_END_PADDING +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155617_ net/minecraft/world/level/block/entity/LecternBlockEntity/DATA_PAGE +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155618_ net/minecraft/world/level/block/entity/LecternBlockEntity/NUM_DATA +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155619_ net/minecraft/world/level/block/entity/LecternBlockEntity/SLOT_BOOK +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155620_ net/minecraft/world/level/block/entity/LecternBlockEntity/NUM_SLOTS +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59525_ net/minecraft/world/level/block/entity/LecternBlockEntity/bookAccess +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59526_ net/minecraft/world/level/block/entity/LecternBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59527_ net/minecraft/world/level/block/entity/LecternBlockEntity/book +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59528_ net/minecraft/world/level/block/entity/LecternBlockEntity/page +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59529_ net/minecraft/world/level/block/entity/LecternBlockEntity/pageCount +FD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/f_59572_ net/minecraft/world/level/block/entity/LecternBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/f_59595_ net/minecraft/world/level/block/entity/LecternBlockEntity$2/this$0 +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_155626_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/LOOT_TABLE_TAG +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_155627_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/LOOT_TABLE_SEED_TAG +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_59605_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/lootTable +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_59606_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/lootTableSeed +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/f_279609_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/catalystListener +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279622_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/positionSource +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279632_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/sculkSpreader +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279646_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/blockState +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279651_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/PULSE_TICKS +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_155633_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/lastVibrationFrequency +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_222794_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_279553_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/vibrationData +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_279572_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/vibrationUser +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_279626_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/vibrationListener +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279571_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/this$0 +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279624_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/LISTENER_RANGE +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279654_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/blockPos +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279659_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/positionSource +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222822_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222824_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARNING_SOUND_RADIUS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222825_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARDEN_SPAWN_ATTEMPTS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222826_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARDEN_SPAWN_RANGE_XZ +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222827_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARDEN_SPAWN_RANGE_Y +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222828_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/DARKNESS_RADIUS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222829_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/SOUND_BY_LEVEL +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222830_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/SHRIEKING_TICKS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222831_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/warningLevel +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_279562_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/vibrationData +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_279594_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/vibrationUser +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_279640_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/vibrationListener +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/f_279601_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/this$0 +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/f_279639_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/positionSource +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/f_279648_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/LISTENER_RADIUS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155657_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/COLUMNS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155658_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ROWS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155659_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/CONTAINER_SIZE +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155660_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/EVENT_SET_OPEN_COUNT +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155661_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/OPENING_TICK_LENGTH +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155662_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/MAX_LID_HEIGHT +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155663_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/MAX_LID_ROTATION +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155664_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ITEMS_TAG +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59644_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/SLOTS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59645_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/itemStacks +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59646_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/openCount +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59647_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/animationStatus +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59648_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/progress +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59649_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/progressOld +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59650_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/color +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/f_59705_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/$SwitchMap$net$minecraft$world$level$block$entity$ShulkerBoxBlockEntity$AnimationStatus +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/$VALUES net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/$VALUES +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSED net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSED +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSING net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSING +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENED net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENED +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENING net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENING +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_243840_ net/minecraft/world/level/block/entity/SignBlockEntity/MAX_TEXT_LINE_WIDTH +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_243968_ net/minecraft/world/level/block/entity/SignBlockEntity/TEXT_LINE_HEIGHT +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276476_ net/minecraft/world/level/block/entity/SignBlockEntity/backText +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276544_ net/minecraft/world/level/block/entity/SignBlockEntity/isWaxed +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276598_ net/minecraft/world/level/block/entity/SignBlockEntity/frontText +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276608_ net/minecraft/world/level/block/entity/SignBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_59722_ net/minecraft/world/level/block/entity/SignBlockEntity/playerWhoMayEdit +FD: net/minecraft/world/level/block/entity/SignText/f_276420_ net/minecraft/world/level/block/entity/SignText/hasGlowingText +FD: net/minecraft/world/level/block/entity/SignText/f_276467_ net/minecraft/world/level/block/entity/SignText/renderMessages +FD: net/minecraft/world/level/block/entity/SignText/f_276490_ net/minecraft/world/level/block/entity/SignText/LINES +FD: net/minecraft/world/level/block/entity/SignText/f_276558_ net/minecraft/world/level/block/entity/SignText/DIRECT_CODEC +FD: net/minecraft/world/level/block/entity/SignText/f_276587_ net/minecraft/world/level/block/entity/SignText/LINES_CODEC +FD: net/minecraft/world/level/block/entity/SignText/f_276590_ net/minecraft/world/level/block/entity/SignText/filteredMessages +FD: net/minecraft/world/level/block/entity/SignText/f_276632_ net/minecraft/world/level/block/entity/SignText/messages +FD: net/minecraft/world/level/block/entity/SignText/f_276669_ net/minecraft/world/level/block/entity/SignText/renderMessagedFiltered +FD: net/minecraft/world/level/block/entity/SignText/f_276673_ net/minecraft/world/level/block/entity/SignText/color +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_155729_ net/minecraft/world/level/block/entity/SkullBlockEntity/TAG_SKULL_OWNER +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_182457_ net/minecraft/world/level/block/entity/SkullBlockEntity/mainThreadExecutor +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_260504_ net/minecraft/world/level/block/entity/SkullBlockEntity/animationTickCount +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_260642_ net/minecraft/world/level/block/entity/SkullBlockEntity/isAnimating +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_262238_ net/minecraft/world/level/block/entity/SkullBlockEntity/TAG_NOTE_BLOCK_SOUND +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_262250_ net/minecraft/world/level/block/entity/SkullBlockEntity/noteBlockSound +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_59755_ net/minecraft/world/level/block/entity/SkullBlockEntity/profileCache +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_59756_ net/minecraft/world/level/block/entity/SkullBlockEntity/sessionService +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_59757_ net/minecraft/world/level/block/entity/SkullBlockEntity/owner +FD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/f_59788_ net/minecraft/world/level/block/entity/SpawnerBlockEntity/spawner +FD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/f_59803_ net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155774_ net/minecraft/world/level/block/entity/StructureBlockEntity/MAX_OFFSET_PER_AXIS +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155775_ net/minecraft/world/level/block/entity/StructureBlockEntity/MAX_SIZE_PER_AXIS +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155776_ net/minecraft/world/level/block/entity/StructureBlockEntity/AUTHOR_TAG +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155777_ net/minecraft/world/level/block/entity/StructureBlockEntity/SCAN_CORNER_BLOCKS_RANGE +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59812_ net/minecraft/world/level/block/entity/StructureBlockEntity/structureName +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59813_ net/minecraft/world/level/block/entity/StructureBlockEntity/author +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59814_ net/minecraft/world/level/block/entity/StructureBlockEntity/metaData +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59815_ net/minecraft/world/level/block/entity/StructureBlockEntity/structurePos +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59816_ net/minecraft/world/level/block/entity/StructureBlockEntity/structureSize +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59817_ net/minecraft/world/level/block/entity/StructureBlockEntity/mirror +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59818_ net/minecraft/world/level/block/entity/StructureBlockEntity/rotation +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59819_ net/minecraft/world/level/block/entity/StructureBlockEntity/mode +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59820_ net/minecraft/world/level/block/entity/StructureBlockEntity/ignoreEntities +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59821_ net/minecraft/world/level/block/entity/StructureBlockEntity/powered +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59822_ net/minecraft/world/level/block/entity/StructureBlockEntity/showAir +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59823_ net/minecraft/world/level/block/entity/StructureBlockEntity/showBoundingBox +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59824_ net/minecraft/world/level/block/entity/StructureBlockEntity/integrity +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59825_ net/minecraft/world/level/block/entity/StructureBlockEntity/seed +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/$VALUES net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/$VALUES +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/LOAD_AREA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/LOAD_AREA +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SAVE_AREA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SAVE_AREA +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SCAN_AREA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SCAN_AREA +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/UPDATE_DATA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/UPDATE_DATA +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155807_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/SPAWN_TIME +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155808_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/COOLDOWN_TIME +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155809_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ATTENTION_INTERVAL +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155810_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/EVENT_COOLDOWN +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155811_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/GATEWAY_HEIGHT_ABOVE_SURFACE +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59925_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59926_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/age +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59927_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/teleportCooldown +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59928_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/exitPortal +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59929_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/exactTeleport +FD: net/minecraft/world/level/block/grower/MangroveTreeGrower/f_222931_ net/minecraft/world/level/block/grower/MangroveTreeGrower/tallProbability +FD: net/minecraft/world/level/block/piston/MovingPistonBlock/f_60046_ net/minecraft/world/level/block/piston/MovingPistonBlock/FACING +FD: net/minecraft/world/level/block/piston/MovingPistonBlock/f_60047_ net/minecraft/world/level/block/piston/MovingPistonBlock/TYPE +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155888_ net/minecraft/world/level/block/piston/PistonBaseBlock/TRIGGER_EXTEND +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155889_ net/minecraft/world/level/block/piston/PistonBaseBlock/TRIGGER_CONTRACT +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155890_ net/minecraft/world/level/block/piston/PistonBaseBlock/TRIGGER_DROP +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155891_ net/minecraft/world/level/block/piston/PistonBaseBlock/PLATFORM_THICKNESS +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60153_ net/minecraft/world/level/block/piston/PistonBaseBlock/EXTENDED +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60154_ net/minecraft/world/level/block/piston/PistonBaseBlock/EAST_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60155_ net/minecraft/world/level/block/piston/PistonBaseBlock/WEST_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60156_ net/minecraft/world/level/block/piston/PistonBaseBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60157_ net/minecraft/world/level/block/piston/PistonBaseBlock/NORTH_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60158_ net/minecraft/world/level/block/piston/PistonBaseBlock/UP_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60159_ net/minecraft/world/level/block/piston/PistonBaseBlock/DOWN_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60160_ net/minecraft/world/level/block/piston/PistonBaseBlock/isSticky +FD: net/minecraft/world/level/block/piston/PistonBaseBlock$1/f_60232_ net/minecraft/world/level/block/piston/PistonBaseBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonBaseBlock$1/f_60233_ net/minecraft/world/level/block/piston/PistonBaseBlock$1/$SwitchMap$net$minecraft$world$level$material$PushReaction +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155892_ net/minecraft/world/level/block/piston/PistonHeadBlock/PLATFORM +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155893_ net/minecraft/world/level/block/piston/PistonHeadBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155894_ net/minecraft/world/level/block/piston/PistonHeadBlock/EDGE_MIN +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155895_ net/minecraft/world/level/block/piston/PistonHeadBlock/EDGE_MAX +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60235_ net/minecraft/world/level/block/piston/PistonHeadBlock/TYPE +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60236_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60237_ net/minecraft/world/level/block/piston/PistonHeadBlock/EAST_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60238_ net/minecraft/world/level/block/piston/PistonHeadBlock/WEST_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60239_ net/minecraft/world/level/block/piston/PistonHeadBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60240_ net/minecraft/world/level/block/piston/PistonHeadBlock/NORTH_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60241_ net/minecraft/world/level/block/piston/PistonHeadBlock/UP_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60242_ net/minecraft/world/level/block/piston/PistonHeadBlock/DOWN_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60243_ net/minecraft/world/level/block/piston/PistonHeadBlock/UP_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60244_ net/minecraft/world/level/block/piston/PistonHeadBlock/DOWN_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60245_ net/minecraft/world/level/block/piston/PistonHeadBlock/SOUTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60246_ net/minecraft/world/level/block/piston/PistonHeadBlock/NORTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60247_ net/minecraft/world/level/block/piston/PistonHeadBlock/EAST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60248_ net/minecraft/world/level/block/piston/PistonHeadBlock/WEST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60249_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_UP_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60250_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_DOWN_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60251_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_SOUTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60252_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_NORTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60253_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_EAST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60254_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_WEST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60255_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHAPES_SHORT +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60256_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHAPES_LONG +FD: net/minecraft/world/level/block/piston/PistonHeadBlock$1/f_60326_ net/minecraft/world/level/block/piston/PistonHeadBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonMath$1/f_60332_ net/minecraft/world/level/block/piston/PistonMath$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_155897_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/TICK_MOVEMENT +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_155898_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/TICKS_TO_EXTEND +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_155899_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/PUSH_OFFSET +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60334_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/movedState +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60335_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/direction +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60336_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/extending +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60337_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isSourcePiston +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60338_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/NOCLIP +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60339_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/progress +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60340_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/progressO +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60341_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/lastTicked +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60342_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/deathTicks +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/f_60406_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/f_60407_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_155936_ net/minecraft/world/level/block/piston/PistonStructureResolver/MAX_PUSH_DEPTH +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60409_ net/minecraft/world/level/block/piston/PistonStructureResolver/level +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60410_ net/minecraft/world/level/block/piston/PistonStructureResolver/pistonPos +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60411_ net/minecraft/world/level/block/piston/PistonStructureResolver/extending +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60412_ net/minecraft/world/level/block/piston/PistonStructureResolver/startPos +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60413_ net/minecraft/world/level/block/piston/PistonStructureResolver/pushDirection +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60414_ net/minecraft/world/level/block/piston/PistonStructureResolver/toPush +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60415_ net/minecraft/world/level/block/piston/PistonStructureResolver/toDestroy +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60416_ net/minecraft/world/level/block/piston/PistonStructureResolver/pistonDirection +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_243733_ net/minecraft/world/level/block/state/BlockBehaviour/requiredFeatures +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60438_ net/minecraft/world/level/block/state/BlockBehaviour/dynamicShape +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60439_ net/minecraft/world/level/block/state/BlockBehaviour/properties +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60440_ net/minecraft/world/level/block/state/BlockBehaviour/drops +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60441_ net/minecraft/world/level/block/state/BlockBehaviour/UPDATE_SHAPE_ORDER +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60443_ net/minecraft/world/level/block/state/BlockBehaviour/hasCollision +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60444_ net/minecraft/world/level/block/state/BlockBehaviour/explosionResistance +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60445_ net/minecraft/world/level/block/state/BlockBehaviour/isRandomlyTicking +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60446_ net/minecraft/world/level/block/state/BlockBehaviour/soundType +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60447_ net/minecraft/world/level/block/state/BlockBehaviour/friction +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60448_ net/minecraft/world/level/block/state/BlockBehaviour/speedFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60449_ net/minecraft/world/level/block/state/BlockBehaviour/jumpFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour$1/f_271377_ net/minecraft/world/level/block/state/BlockBehaviour$1/$SwitchMap$net$minecraft$world$level$block$state$BlockBehaviour$OffsetType +FD: net/minecraft/world/level/block/state/BlockBehaviour$1/f_60591_ net/minecraft/world/level/block/state/BlockBehaviour$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_243896_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/fluidState +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_244227_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRandomlyTicking +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_244264_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/spawnParticlesOnBreak +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_271099_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/offsetFunction +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_278120_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ignitedByLava +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_278134_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/pushReaction +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_278472_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/liquid +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_279551_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/legacySolid +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_279615_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/replaceable +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_279617_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/instrument +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_283893_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/mapColor +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60593_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/cache +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60594_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/lightEmission +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60595_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/useShapeForLightOcclusion +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60596_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isAir +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60599_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/destroySpeed +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60600_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/requiresCorrectToolForDrops +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60601_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canOcclude +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60602_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRedstoneConductor +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60603_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSuffocating +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60604_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isViewBlocking +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60605_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasPostProcess +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60606_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/emissiveRendering +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60841_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/solidRender +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60842_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/collisionShape +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60843_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/largeCollisionShape +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60844_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/isCollisionShapeFullBlock +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60845_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/DIRECTIONS +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60846_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/SUPPORT_TYPE_COUNT +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60847_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/propagatesSkylightDown +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60848_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/lightBlock +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60849_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/occlusionShapes +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60850_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/faceSturdy +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/$VALUES net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/$VALUES +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/NONE net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/NONE +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XYZ net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XYZ +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XZ net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XZ +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_243850_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/spawnParticlesOnBreak +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_244138_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiredFeatures +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_271289_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/offsetFunction +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_278123_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/ignitedByLava +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_278130_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/pushReaction +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_278418_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/liquid +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279538_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/instrument +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279618_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOn +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279630_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/replaceable +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279665_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOff +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_283880_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60884_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/hasCollision +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60885_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/soundType +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60886_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/lightEmission +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60887_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/explosionResistance +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60888_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/destroyTime +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60889_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiresCorrectToolForDrops +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60890_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isRandomlyTicking +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60891_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/friction +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60892_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/speedFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60893_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/jumpFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60894_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/drops +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60895_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/canOcclude +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60896_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isAir +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60897_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isValidSpawn +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60898_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isRedstoneConductor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60899_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isSuffocating +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60900_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isViewBlocking +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60901_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/hasPostProcess +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60902_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/emissiveRendering +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60903_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/dynamicShape +FD: net/minecraft/world/level/block/state/BlockState/f_61039_ net/minecraft/world/level/block/state/BlockState/CODEC +FD: net/minecraft/world/level/block/state/StateDefinition/f_61046_ net/minecraft/world/level/block/state/StateDefinition/NAME_PATTERN +FD: net/minecraft/world/level/block/state/StateDefinition/f_61047_ net/minecraft/world/level/block/state/StateDefinition/owner +FD: net/minecraft/world/level/block/state/StateDefinition/f_61048_ net/minecraft/world/level/block/state/StateDefinition/propertiesByName +FD: net/minecraft/world/level/block/state/StateDefinition/f_61049_ net/minecraft/world/level/block/state/StateDefinition/states +FD: net/minecraft/world/level/block/state/StateDefinition$Builder/f_61095_ net/minecraft/world/level/block/state/StateDefinition$Builder/owner +FD: net/minecraft/world/level/block/state/StateDefinition$Builder/f_61096_ net/minecraft/world/level/block/state/StateDefinition$Builder/properties +FD: net/minecraft/world/level/block/state/StateHolder/f_155962_ net/minecraft/world/level/block/state/StateHolder/NAME_TAG +FD: net/minecraft/world/level/block/state/StateHolder/f_155963_ net/minecraft/world/level/block/state/StateHolder/PROPERTIES_TAG +FD: net/minecraft/world/level/block/state/StateHolder/f_61110_ net/minecraft/world/level/block/state/StateHolder/PROPERTY_ENTRY_TO_STRING_FUNCTION +FD: net/minecraft/world/level/block/state/StateHolder/f_61111_ net/minecraft/world/level/block/state/StateHolder/values +FD: net/minecraft/world/level/block/state/StateHolder/f_61112_ net/minecraft/world/level/block/state/StateHolder/owner +FD: net/minecraft/world/level/block/state/StateHolder/f_61113_ net/minecraft/world/level/block/state/StateHolder/propertiesCodec +FD: net/minecraft/world/level/block/state/StateHolder/f_61114_ net/minecraft/world/level/block/state/StateHolder/neighbours +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61158_ net/minecraft/world/level/block/state/pattern/BlockInWorld/level +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61159_ net/minecraft/world/level/block/state/pattern/BlockInWorld/pos +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61160_ net/minecraft/world/level/block/state/pattern/BlockInWorld/loadChunks +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61161_ net/minecraft/world/level/block/state/pattern/BlockInWorld/state +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61162_ net/minecraft/world/level/block/state/pattern/BlockInWorld/entity +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61163_ net/minecraft/world/level/block/state/pattern/BlockInWorld/cachedEntity +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61177_ net/minecraft/world/level/block/state/pattern/BlockPattern/pattern +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61178_ net/minecraft/world/level/block/state/pattern/BlockPattern/depth +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61179_ net/minecraft/world/level/block/state/pattern/BlockPattern/height +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61180_ net/minecraft/world/level/block/state/pattern/BlockPattern/width +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/f_61204_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/level +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/f_61205_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/loadChunks +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61213_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/frontTopLeft +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61214_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/forwards +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61215_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/up +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61216_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/cache +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61217_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/width +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61218_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/height +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61219_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/depth +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61236_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/COMMA_JOINED +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61237_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/pattern +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61238_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/lookup +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61239_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/height +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61240_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/width +FD: net/minecraft/world/level/block/state/predicate/BlockPredicate/f_61272_ net/minecraft/world/level/block/state/predicate/BlockPredicate/block +FD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/f_61281_ net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ANY +FD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/f_61282_ net/minecraft/world/level/block/state/predicate/BlockStatePredicate/definition +FD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/f_61283_ net/minecraft/world/level/block/state/predicate/BlockStatePredicate/properties +FD: net/minecraft/world/level/block/state/properties/AttachFace/$VALUES net/minecraft/world/level/block/state/properties/AttachFace/$VALUES +FD: net/minecraft/world/level/block/state/properties/AttachFace/CEILING net/minecraft/world/level/block/state/properties/AttachFace/CEILING +FD: net/minecraft/world/level/block/state/properties/AttachFace/FLOOR net/minecraft/world/level/block/state/properties/AttachFace/FLOOR +FD: net/minecraft/world/level/block/state/properties/AttachFace/WALL net/minecraft/world/level/block/state/properties/AttachFace/WALL +FD: net/minecraft/world/level/block/state/properties/AttachFace/f_61305_ net/minecraft/world/level/block/state/properties/AttachFace/name +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/$VALUES net/minecraft/world/level/block/state/properties/BambooLeaves/$VALUES +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/LARGE net/minecraft/world/level/block/state/properties/BambooLeaves/LARGE +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/NONE net/minecraft/world/level/block/state/properties/BambooLeaves/NONE +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/SMALL net/minecraft/world/level/block/state/properties/BambooLeaves/SMALL +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/f_61319_ net/minecraft/world/level/block/state/properties/BambooLeaves/name +FD: net/minecraft/world/level/block/state/properties/BedPart/$VALUES net/minecraft/world/level/block/state/properties/BedPart/$VALUES +FD: net/minecraft/world/level/block/state/properties/BedPart/FOOT net/minecraft/world/level/block/state/properties/BedPart/FOOT +FD: net/minecraft/world/level/block/state/properties/BedPart/HEAD net/minecraft/world/level/block/state/properties/BedPart/HEAD +FD: net/minecraft/world/level/block/state/properties/BedPart/f_61333_ net/minecraft/world/level/block/state/properties/BedPart/name +FD: net/minecraft/world/level/block/state/properties/BellAttachType/$VALUES net/minecraft/world/level/block/state/properties/BellAttachType/$VALUES +FD: net/minecraft/world/level/block/state/properties/BellAttachType/CEILING net/minecraft/world/level/block/state/properties/BellAttachType/CEILING +FD: net/minecraft/world/level/block/state/properties/BellAttachType/DOUBLE_WALL net/minecraft/world/level/block/state/properties/BellAttachType/DOUBLE_WALL +FD: net/minecraft/world/level/block/state/properties/BellAttachType/FLOOR net/minecraft/world/level/block/state/properties/BellAttachType/FLOOR +FD: net/minecraft/world/level/block/state/properties/BellAttachType/SINGLE_WALL net/minecraft/world/level/block/state/properties/BellAttachType/SINGLE_WALL +FD: net/minecraft/world/level/block/state/properties/BellAttachType/f_61349_ net/minecraft/world/level/block/state/properties/BellAttachType/name +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271088_ net/minecraft/world/level/block/state/properties/BlockSetType/BAMBOO +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271100_ net/minecraft/world/level/block/state/properties/BlockSetType/SPRUCE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271132_ net/minecraft/world/level/block/state/properties/BlockSetType/IRON +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271136_ net/minecraft/world/level/block/state/properties/BlockSetType/soundType +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271141_ net/minecraft/world/level/block/state/properties/BlockSetType/doorOpen +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271187_ net/minecraft/world/level/block/state/properties/BlockSetType/JUNGLE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271194_ net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOff +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271198_ net/minecraft/world/level/block/state/properties/BlockSetType/OAK +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271208_ net/minecraft/world/level/block/state/properties/BlockSetType/GOLD +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271232_ net/minecraft/world/level/block/state/properties/BlockSetType/VALUES +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271234_ net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOff +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271253_ net/minecraft/world/level/block/state/properties/BlockSetType/name +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271258_ net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorOpen +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271263_ net/minecraft/world/level/block/state/properties/BlockSetType/POLISHED_BLACKSTONE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271290_ net/minecraft/world/level/block/state/properties/BlockSetType/CRIMSON +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271383_ net/minecraft/world/level/block/state/properties/BlockSetType/MANGROVE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271387_ net/minecraft/world/level/block/state/properties/BlockSetType/BIRCH +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271394_ net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOn +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271400_ net/minecraft/world/level/block/state/properties/BlockSetType/WARPED +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271401_ net/minecraft/world/level/block/state/properties/BlockSetType/CHERRY +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271425_ net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorClose +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271479_ net/minecraft/world/level/block/state/properties/BlockSetType/STONE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271481_ net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOn +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271502_ net/minecraft/world/level/block/state/properties/BlockSetType/doorClose +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271512_ net/minecraft/world/level/block/state/properties/BlockSetType/ACACIA +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271528_ net/minecraft/world/level/block/state/properties/BlockSetType/DARK_OAK +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_278463_ net/minecraft/world/level/block/state/properties/BlockSetType/canOpenByHand +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155977_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BERRIES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155978_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MIN_LEVEL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155979_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MIN_LEVEL_CAULDRON +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155980_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_LEVEL_3 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155981_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_LEVEL_8 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155982_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_LEVEL_15 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155983_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STABILITY_MAX_DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155984_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MIN_RESPAWN_ANCHOR_CHARGES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155985_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_RESPAWN_ANCHOR_CHARGES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155987_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_1 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155988_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_2 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155989_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_3 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155990_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_5 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155991_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_7 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155992_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_15 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155993_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_25 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155994_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CANDLES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155995_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155996_ net/minecraft/world/level/block/state/properties/BlockStateProperties/TILT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155997_ net/minecraft/world/level/block/state/properties/BlockStateProperties/VERTICAL_DIRECTION +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155998_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DRIPSTONE_THICKNESS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155999_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SCULK_SENSOR_PHASE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222995_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BLOOM +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222996_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SHRIEKING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222997_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CAN_SUMMON +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222998_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_4 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222999_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_4 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260439_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_5_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260472_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_0_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260519_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_4_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260538_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_2_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260553_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_1_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260590_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_3_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_271112_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DUSTED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_271526_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FLOWER_AMOUNT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_276520_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CRACKED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61360_ net/minecraft/world/level/block/state/properties/BlockStateProperties/TRIGGERED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61361_ net/minecraft/world/level/block/state/properties/BlockStateProperties/UNSTABLE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61362_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WATERLOGGED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61364_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HORIZONTAL_AXIS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61365_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AXIS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61366_ net/minecraft/world/level/block/state/properties/BlockStateProperties/UP +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61367_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DOWN +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61368_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NORTH +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61369_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EAST +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61370_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SOUTH +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61371_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WEST +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61372_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FACING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61373_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FACING_HOPPER +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61374_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HORIZONTAL_FACING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61375_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ORIENTATION +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61376_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ATTACH_FACE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61377_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BELL_ATTACHMENT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61378_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EAST_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61379_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NORTH_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61380_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SOUTH_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61381_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WEST_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61382_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EAST_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61383_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NORTH_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61384_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SOUTH_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61385_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WEST_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61386_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ATTACHED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61387_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STAGE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61388_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STABILITY_DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61389_ net/minecraft/world/level/block/state/properties/BlockStateProperties/RESPAWN_ANCHOR_CHARGES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61390_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ROTATION_16 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61391_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BED_PART +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61392_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHEST_TYPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61393_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MODE_COMPARATOR +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61394_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DOOR_HINGE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61395_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NOTEBLOCK_INSTRUMENT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61396_ net/minecraft/world/level/block/state/properties/BlockStateProperties/PISTON_TYPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61397_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SLAB_TYPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61398_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STAIRS_SHAPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61399_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STRUCTUREBLOCK_MODE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61400_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BAMBOO_LEAVES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61401_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DOUBLE_BLOCK_HALF +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61402_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HALF +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61403_ net/minecraft/world/level/block/state/properties/BlockStateProperties/RAIL_SHAPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61404_ net/minecraft/world/level/block/state/properties/BlockStateProperties/RAIL_SHAPE_STRAIGHT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61405_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_1 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61406_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_2 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61407_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_3 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61408_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_5 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61409_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_7 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61410_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_15 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61411_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_25 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61412_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BITES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61413_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DELAY +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61414_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61415_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EGGS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61416_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HATCH +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61417_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LAYERS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61418_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_CAULDRON +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61419_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_COMPOSTER +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61420_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_FLOWING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61421_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_HONEY +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61422_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61423_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MOISTURE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61424_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NOTE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61425_ net/minecraft/world/level/block/state/properties/BlockStateProperties/PICKLES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61426_ net/minecraft/world/level/block/state/properties/BlockStateProperties/POWER +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61427_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BOTTOM +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61428_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CONDITIONAL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61429_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DISARMED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61430_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DRAG +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61431_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ENABLED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61432_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EXTENDED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61433_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EYE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61434_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FALLING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61435_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HANGING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61436_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOTTLE_0 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61437_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOTTLE_1 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61438_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOTTLE_2 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61439_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_RECORD +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61440_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOOK +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61441_ net/minecraft/world/level/block/state/properties/BlockStateProperties/INVERTED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61442_ net/minecraft/world/level/block/state/properties/BlockStateProperties/IN_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61443_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LIT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61444_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LOCKED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61445_ net/minecraft/world/level/block/state/properties/BlockStateProperties/OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61446_ net/minecraft/world/level/block/state/properties/BlockStateProperties/OPEN +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61447_ net/minecraft/world/level/block/state/properties/BlockStateProperties/PERSISTENT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61448_ net/minecraft/world/level/block/state/properties/BlockStateProperties/POWERED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61449_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SHORT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61450_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SIGNAL_FIRE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61451_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SNOWY +FD: net/minecraft/world/level/block/state/properties/BooleanProperty/f_61457_ net/minecraft/world/level/block/state/properties/BooleanProperty/values +FD: net/minecraft/world/level/block/state/properties/ChestType/$VALUES net/minecraft/world/level/block/state/properties/ChestType/$VALUES +FD: net/minecraft/world/level/block/state/properties/ChestType/LEFT net/minecraft/world/level/block/state/properties/ChestType/LEFT +FD: net/minecraft/world/level/block/state/properties/ChestType/RIGHT net/minecraft/world/level/block/state/properties/ChestType/RIGHT +FD: net/minecraft/world/level/block/state/properties/ChestType/SINGLE net/minecraft/world/level/block/state/properties/ChestType/SINGLE +FD: net/minecraft/world/level/block/state/properties/ChestType/f_61476_ net/minecraft/world/level/block/state/properties/ChestType/name +FD: net/minecraft/world/level/block/state/properties/ChestType$1/f_262740_ net/minecraft/world/level/block/state/properties/ChestType$1/$SwitchMap$net$minecraft$world$level$block$state$properties$ChestType +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/$VALUES net/minecraft/world/level/block/state/properties/ComparatorMode/$VALUES +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/COMPARE net/minecraft/world/level/block/state/properties/ComparatorMode/COMPARE +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/SUBTRACT net/minecraft/world/level/block/state/properties/ComparatorMode/SUBTRACT +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/f_61528_ net/minecraft/world/level/block/state/properties/ComparatorMode/name +FD: net/minecraft/world/level/block/state/properties/DoorHingeSide/$VALUES net/minecraft/world/level/block/state/properties/DoorHingeSide/$VALUES +FD: net/minecraft/world/level/block/state/properties/DoorHingeSide/LEFT net/minecraft/world/level/block/state/properties/DoorHingeSide/LEFT +FD: net/minecraft/world/level/block/state/properties/DoorHingeSide/RIGHT net/minecraft/world/level/block/state/properties/DoorHingeSide/RIGHT +FD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/$VALUES net/minecraft/world/level/block/state/properties/DoubleBlockHalf/$VALUES +FD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/LOWER net/minecraft/world/level/block/state/properties/DoubleBlockHalf/LOWER +FD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/UPPER net/minecraft/world/level/block/state/properties/DoubleBlockHalf/UPPER +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/$VALUES net/minecraft/world/level/block/state/properties/DripstoneThickness/$VALUES +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/BASE net/minecraft/world/level/block/state/properties/DripstoneThickness/BASE +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/FRUSTUM net/minecraft/world/level/block/state/properties/DripstoneThickness/FRUSTUM +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/MIDDLE net/minecraft/world/level/block/state/properties/DripstoneThickness/MIDDLE +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP_MERGE net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP_MERGE +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/f_156012_ net/minecraft/world/level/block/state/properties/DripstoneThickness/name +FD: net/minecraft/world/level/block/state/properties/EnumProperty/f_61576_ net/minecraft/world/level/block/state/properties/EnumProperty/values +FD: net/minecraft/world/level/block/state/properties/EnumProperty/f_61577_ net/minecraft/world/level/block/state/properties/EnumProperty/names +FD: net/minecraft/world/level/block/state/properties/Half/$VALUES net/minecraft/world/level/block/state/properties/Half/$VALUES +FD: net/minecraft/world/level/block/state/properties/Half/BOTTOM net/minecraft/world/level/block/state/properties/Half/BOTTOM +FD: net/minecraft/world/level/block/state/properties/Half/TOP net/minecraft/world/level/block/state/properties/Half/TOP +FD: net/minecraft/world/level/block/state/properties/Half/f_61609_ net/minecraft/world/level/block/state/properties/Half/name +FD: net/minecraft/world/level/block/state/properties/IntegerProperty/f_223000_ net/minecraft/world/level/block/state/properties/IntegerProperty/min +FD: net/minecraft/world/level/block/state/properties/IntegerProperty/f_223001_ net/minecraft/world/level/block/state/properties/IntegerProperty/max +FD: net/minecraft/world/level/block/state/properties/IntegerProperty/f_61621_ net/minecraft/world/level/block/state/properties/IntegerProperty/values +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/$VALUES net/minecraft/world/level/block/state/properties/NoteBlockInstrument/$VALUES +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BANJO net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BANJO +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASEDRUM net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASEDRUM +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASS net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASS +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BELL net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BELL +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BIT net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BIT +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CHIME net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CHIME +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/COW_BELL net/minecraft/world/level/block/state/properties/NoteBlockInstrument/COW_BELL +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CREEPER net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CREEPER +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CUSTOM_HEAD net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CUSTOM_HEAD +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DIDGERIDOO net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DIDGERIDOO +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DRAGON net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DRAGON +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/FLUTE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/FLUTE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/GUITAR net/minecraft/world/level/block/state/properties/NoteBlockInstrument/GUITAR +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HARP net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HARP +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HAT net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HAT +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/IRON_XYLOPHONE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/IRON_XYLOPHONE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PIGLIN net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PIGLIN +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PLING net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PLING +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SKELETON net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SKELETON +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SNARE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SNARE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/WITHER_SKELETON net/minecraft/world/level/block/state/properties/NoteBlockInstrument/WITHER_SKELETON +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/XYLOPHONE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/XYLOPHONE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ZOMBIE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ZOMBIE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/f_262302_ net/minecraft/world/level/block/state/properties/NoteBlockInstrument/type +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/f_61656_ net/minecraft/world/level/block/state/properties/NoteBlockInstrument/name +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/f_61657_ net/minecraft/world/level/block/state/properties/NoteBlockInstrument/soundEvent +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/$VALUES net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/$VALUES +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/BASE_BLOCK net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/BASE_BLOCK +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/CUSTOM net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/CUSTOM +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/MOB_HEAD net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/MOB_HEAD +FD: net/minecraft/world/level/block/state/properties/PistonType/$VALUES net/minecraft/world/level/block/state/properties/PistonType/$VALUES +FD: net/minecraft/world/level/block/state/properties/PistonType/DEFAULT net/minecraft/world/level/block/state/properties/PistonType/DEFAULT +FD: net/minecraft/world/level/block/state/properties/PistonType/STICKY net/minecraft/world/level/block/state/properties/PistonType/STICKY +FD: net/minecraft/world/level/block/state/properties/PistonType/f_61674_ net/minecraft/world/level/block/state/properties/PistonType/name +FD: net/minecraft/world/level/block/state/properties/Property/f_61686_ net/minecraft/world/level/block/state/properties/Property/clazz +FD: net/minecraft/world/level/block/state/properties/Property/f_61687_ net/minecraft/world/level/block/state/properties/Property/name +FD: net/minecraft/world/level/block/state/properties/Property/f_61688_ net/minecraft/world/level/block/state/properties/Property/hashCode +FD: net/minecraft/world/level/block/state/properties/Property/f_61689_ net/minecraft/world/level/block/state/properties/Property/codec +FD: net/minecraft/world/level/block/state/properties/Property/f_61690_ net/minecraft/world/level/block/state/properties/Property/valueCodec +FD: net/minecraft/world/level/block/state/properties/Property$Value/f_61712_ net/minecraft/world/level/block/state/properties/Property$Value/property +FD: net/minecraft/world/level/block/state/properties/Property$Value/f_61713_ net/minecraft/world/level/block/state/properties/Property$Value/value +FD: net/minecraft/world/level/block/state/properties/RailShape/$VALUES net/minecraft/world/level/block/state/properties/RailShape/$VALUES +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_EAST net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_EAST +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_NORTH net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_NORTH +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_SOUTH net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_SOUTH +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_WEST net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/EAST_WEST net/minecraft/world/level/block/state/properties/RailShape/EAST_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/NORTH_EAST net/minecraft/world/level/block/state/properties/RailShape/NORTH_EAST +FD: net/minecraft/world/level/block/state/properties/RailShape/NORTH_SOUTH net/minecraft/world/level/block/state/properties/RailShape/NORTH_SOUTH +FD: net/minecraft/world/level/block/state/properties/RailShape/NORTH_WEST net/minecraft/world/level/block/state/properties/RailShape/NORTH_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/SOUTH_EAST net/minecraft/world/level/block/state/properties/RailShape/SOUTH_EAST +FD: net/minecraft/world/level/block/state/properties/RailShape/SOUTH_WEST net/minecraft/world/level/block/state/properties/RailShape/SOUTH_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/f_61737_ net/minecraft/world/level/block/state/properties/RailShape/name +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/$VALUES net/minecraft/world/level/block/state/properties/RedstoneSide/$VALUES +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/NONE net/minecraft/world/level/block/state/properties/RedstoneSide/NONE +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/SIDE net/minecraft/world/level/block/state/properties/RedstoneSide/SIDE +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/UP net/minecraft/world/level/block/state/properties/RedstoneSide/UP +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/f_61753_ net/minecraft/world/level/block/state/properties/RedstoneSide/name +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_243806_ net/minecraft/world/level/block/state/properties/RotationSegment/NORTH_0 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_243970_ net/minecraft/world/level/block/state/properties/RotationSegment/EAST_90 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_243971_ net/minecraft/world/level/block/state/properties/RotationSegment/WEST_270 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_244031_ net/minecraft/world/level/block/state/properties/RotationSegment/SOUTH_180 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_244269_ net/minecraft/world/level/block/state/properties/RotationSegment/MAX_SEGMENT_INDEX +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_263687_ net/minecraft/world/level/block/state/properties/RotationSegment/SEGMENTED_ANGLE16 +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/$VALUES net/minecraft/world/level/block/state/properties/SculkSensorPhase/$VALUES +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/ACTIVE net/minecraft/world/level/block/state/properties/SculkSensorPhase/ACTIVE +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/COOLDOWN net/minecraft/world/level/block/state/properties/SculkSensorPhase/COOLDOWN +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/INACTIVE net/minecraft/world/level/block/state/properties/SculkSensorPhase/INACTIVE +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/f_156044_ net/minecraft/world/level/block/state/properties/SculkSensorPhase/name +FD: net/minecraft/world/level/block/state/properties/SlabType/$VALUES net/minecraft/world/level/block/state/properties/SlabType/$VALUES +FD: net/minecraft/world/level/block/state/properties/SlabType/BOTTOM net/minecraft/world/level/block/state/properties/SlabType/BOTTOM +FD: net/minecraft/world/level/block/state/properties/SlabType/DOUBLE net/minecraft/world/level/block/state/properties/SlabType/DOUBLE +FD: net/minecraft/world/level/block/state/properties/SlabType/TOP net/minecraft/world/level/block/state/properties/SlabType/TOP +FD: net/minecraft/world/level/block/state/properties/SlabType/f_61769_ net/minecraft/world/level/block/state/properties/SlabType/name +FD: net/minecraft/world/level/block/state/properties/StairsShape/$VALUES net/minecraft/world/level/block/state/properties/StairsShape/$VALUES +FD: net/minecraft/world/level/block/state/properties/StairsShape/INNER_LEFT net/minecraft/world/level/block/state/properties/StairsShape/INNER_LEFT +FD: net/minecraft/world/level/block/state/properties/StairsShape/INNER_RIGHT net/minecraft/world/level/block/state/properties/StairsShape/INNER_RIGHT +FD: net/minecraft/world/level/block/state/properties/StairsShape/OUTER_LEFT net/minecraft/world/level/block/state/properties/StairsShape/OUTER_LEFT +FD: net/minecraft/world/level/block/state/properties/StairsShape/OUTER_RIGHT net/minecraft/world/level/block/state/properties/StairsShape/OUTER_RIGHT +FD: net/minecraft/world/level/block/state/properties/StairsShape/STRAIGHT net/minecraft/world/level/block/state/properties/StairsShape/STRAIGHT +FD: net/minecraft/world/level/block/state/properties/StairsShape/f_61786_ net/minecraft/world/level/block/state/properties/StairsShape/name +FD: net/minecraft/world/level/block/state/properties/StructureMode/$VALUES net/minecraft/world/level/block/state/properties/StructureMode/$VALUES +FD: net/minecraft/world/level/block/state/properties/StructureMode/CORNER net/minecraft/world/level/block/state/properties/StructureMode/CORNER +FD: net/minecraft/world/level/block/state/properties/StructureMode/DATA net/minecraft/world/level/block/state/properties/StructureMode/DATA +FD: net/minecraft/world/level/block/state/properties/StructureMode/LOAD net/minecraft/world/level/block/state/properties/StructureMode/LOAD +FD: net/minecraft/world/level/block/state/properties/StructureMode/SAVE net/minecraft/world/level/block/state/properties/StructureMode/SAVE +FD: net/minecraft/world/level/block/state/properties/StructureMode/f_61802_ net/minecraft/world/level/block/state/properties/StructureMode/name +FD: net/minecraft/world/level/block/state/properties/StructureMode/f_61803_ net/minecraft/world/level/block/state/properties/StructureMode/displayName +FD: net/minecraft/world/level/block/state/properties/Tilt/$VALUES net/minecraft/world/level/block/state/properties/Tilt/$VALUES +FD: net/minecraft/world/level/block/state/properties/Tilt/FULL net/minecraft/world/level/block/state/properties/Tilt/FULL +FD: net/minecraft/world/level/block/state/properties/Tilt/NONE net/minecraft/world/level/block/state/properties/Tilt/NONE +FD: net/minecraft/world/level/block/state/properties/Tilt/PARTIAL net/minecraft/world/level/block/state/properties/Tilt/PARTIAL +FD: net/minecraft/world/level/block/state/properties/Tilt/UNSTABLE net/minecraft/world/level/block/state/properties/Tilt/UNSTABLE +FD: net/minecraft/world/level/block/state/properties/Tilt/f_156075_ net/minecraft/world/level/block/state/properties/Tilt/name +FD: net/minecraft/world/level/block/state/properties/Tilt/f_156076_ net/minecraft/world/level/block/state/properties/Tilt/causesVibration +FD: net/minecraft/world/level/block/state/properties/WallSide/$VALUES net/minecraft/world/level/block/state/properties/WallSide/$VALUES +FD: net/minecraft/world/level/block/state/properties/WallSide/LOW net/minecraft/world/level/block/state/properties/WallSide/LOW +FD: net/minecraft/world/level/block/state/properties/WallSide/NONE net/minecraft/world/level/block/state/properties/WallSide/NONE +FD: net/minecraft/world/level/block/state/properties/WallSide/TALL net/minecraft/world/level/block/state/properties/WallSide/TALL +FD: net/minecraft/world/level/block/state/properties/WallSide/f_61818_ net/minecraft/world/level/block/state/properties/WallSide/name +FD: net/minecraft/world/level/block/state/properties/WoodType/f_223002_ net/minecraft/world/level/block/state/properties/WoodType/MANGROVE +FD: net/minecraft/world/level/block/state/properties/WoodType/f_244200_ net/minecraft/world/level/block/state/properties/WoodType/BAMBOO +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271162_ net/minecraft/world/level/block/state/properties/WoodType/fenceGateOpen +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271224_ net/minecraft/world/level/block/state/properties/WoodType/CHERRY +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271309_ net/minecraft/world/level/block/state/properties/WoodType/hangingSignSoundType +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271317_ net/minecraft/world/level/block/state/properties/WoodType/soundType +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271340_ net/minecraft/world/level/block/state/properties/WoodType/setType +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271365_ net/minecraft/world/level/block/state/properties/WoodType/fenceGateClose +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61830_ net/minecraft/world/level/block/state/properties/WoodType/OAK +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61831_ net/minecraft/world/level/block/state/properties/WoodType/SPRUCE +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61832_ net/minecraft/world/level/block/state/properties/WoodType/BIRCH +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61833_ net/minecraft/world/level/block/state/properties/WoodType/ACACIA +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61834_ net/minecraft/world/level/block/state/properties/WoodType/JUNGLE +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61835_ net/minecraft/world/level/block/state/properties/WoodType/DARK_OAK +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61836_ net/minecraft/world/level/block/state/properties/WoodType/CRIMSON +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61837_ net/minecraft/world/level/block/state/properties/WoodType/WARPED +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61838_ net/minecraft/world/level/block/state/properties/WoodType/VALUES +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61839_ net/minecraft/world/level/block/state/properties/WoodType/name +FD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/f_61864_ net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/worldBorder +FD: net/minecraft/world/level/border/BorderStatus/$VALUES net/minecraft/world/level/border/BorderStatus/$VALUES +FD: net/minecraft/world/level/border/BorderStatus/GROWING net/minecraft/world/level/border/BorderStatus/GROWING +FD: net/minecraft/world/level/border/BorderStatus/SHRINKING net/minecraft/world/level/border/BorderStatus/SHRINKING +FD: net/minecraft/world/level/border/BorderStatus/STATIONARY net/minecraft/world/level/border/BorderStatus/STATIONARY +FD: net/minecraft/world/level/border/BorderStatus/f_61894_ net/minecraft/world/level/border/BorderStatus/color +FD: net/minecraft/world/level/border/WorldBorder/f_156092_ net/minecraft/world/level/border/WorldBorder/MAX_SIZE +FD: net/minecraft/world/level/border/WorldBorder/f_196705_ net/minecraft/world/level/border/WorldBorder/MAX_CENTER_COORDINATE +FD: net/minecraft/world/level/border/WorldBorder/f_61905_ net/minecraft/world/level/border/WorldBorder/listeners +FD: net/minecraft/world/level/border/WorldBorder/f_61906_ net/minecraft/world/level/border/WorldBorder/damagePerBlock +FD: net/minecraft/world/level/border/WorldBorder/f_61907_ net/minecraft/world/level/border/WorldBorder/DEFAULT_SETTINGS +FD: net/minecraft/world/level/border/WorldBorder/f_61908_ net/minecraft/world/level/border/WorldBorder/damageSafeZone +FD: net/minecraft/world/level/border/WorldBorder/f_61909_ net/minecraft/world/level/border/WorldBorder/warningTime +FD: net/minecraft/world/level/border/WorldBorder/f_61910_ net/minecraft/world/level/border/WorldBorder/warningBlocks +FD: net/minecraft/world/level/border/WorldBorder/f_61911_ net/minecraft/world/level/border/WorldBorder/centerX +FD: net/minecraft/world/level/border/WorldBorder/f_61912_ net/minecraft/world/level/border/WorldBorder/centerZ +FD: net/minecraft/world/level/border/WorldBorder/f_61913_ net/minecraft/world/level/border/WorldBorder/absoluteMaxSize +FD: net/minecraft/world/level/border/WorldBorder/f_61914_ net/minecraft/world/level/border/WorldBorder/extent +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61971_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/this$0 +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61972_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/from +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61973_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/to +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61974_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/lerpEnd +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61975_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/lerpBegin +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61976_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/lerpDuration +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62001_ net/minecraft/world/level/border/WorldBorder$Settings/centerX +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62002_ net/minecraft/world/level/border/WorldBorder$Settings/centerZ +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62003_ net/minecraft/world/level/border/WorldBorder$Settings/damagePerBlock +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62004_ net/minecraft/world/level/border/WorldBorder$Settings/safeZone +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62005_ net/minecraft/world/level/border/WorldBorder$Settings/warningBlocks +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62006_ net/minecraft/world/level/border/WorldBorder$Settings/warningTime +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62007_ net/minecraft/world/level/border/WorldBorder$Settings/size +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62008_ net/minecraft/world/level/border/WorldBorder$Settings/sizeLerpTime +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62009_ net/minecraft/world/level/border/WorldBorder$Settings/sizeLerpTarget +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62050_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/this$0 +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62051_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/size +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62052_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/minX +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62053_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/minZ +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62054_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/maxX +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62055_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/maxZ +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62056_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/shape +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156098_ net/minecraft/world/level/chunk/BulkSectionAccess/level +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156099_ net/minecraft/world/level/chunk/BulkSectionAccess/acquiredSections +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156100_ net/minecraft/world/level/chunk/BulkSectionAccess/lastSection +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156101_ net/minecraft/world/level/chunk/BulkSectionAccess/lastSectionKey +FD: net/minecraft/world/level/chunk/CarvingMask/f_187576_ net/minecraft/world/level/chunk/CarvingMask/minY +FD: net/minecraft/world/level/chunk/CarvingMask/f_187577_ net/minecraft/world/level/chunk/CarvingMask/mask +FD: net/minecraft/world/level/chunk/CarvingMask/f_196706_ net/minecraft/world/level/chunk/CarvingMask/additionalMask +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187602_ net/minecraft/world/level/chunk/ChunkAccess/postProcessing +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187603_ net/minecraft/world/level/chunk/ChunkAccess/unsaved +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187604_ net/minecraft/world/level/chunk/ChunkAccess/chunkPos +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187605_ net/minecraft/world/level/chunk/ChunkAccess/noiseChunk +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187606_ net/minecraft/world/level/chunk/ChunkAccess/upgradeData +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187607_ net/minecraft/world/level/chunk/ChunkAccess/blendingData +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187608_ net/minecraft/world/level/chunk/ChunkAccess/heightmaps +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187609_ net/minecraft/world/level/chunk/ChunkAccess/pendingBlockEntities +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187610_ net/minecraft/world/level/chunk/ChunkAccess/blockEntities +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187611_ net/minecraft/world/level/chunk/ChunkAccess/levelHeightAccessor +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187612_ net/minecraft/world/level/chunk/ChunkAccess/sections +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187613_ net/minecraft/world/level/chunk/ChunkAccess/LOGGER +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187614_ net/minecraft/world/level/chunk/ChunkAccess/isLightCorrect +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187615_ net/minecraft/world/level/chunk/ChunkAccess/inhabitedTime +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187617_ net/minecraft/world/level/chunk/ChunkAccess/structureStarts +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187618_ net/minecraft/world/level/chunk/ChunkAccess/structuresRefences +FD: net/minecraft/world/level/chunk/ChunkAccess/f_207932_ net/minecraft/world/level/chunk/ChunkAccess/EMPTY_REFERENCE_SET +FD: net/minecraft/world/level/chunk/ChunkAccess/f_223003_ net/minecraft/world/level/chunk/ChunkAccess/carverBiomeSettings +FD: net/minecraft/world/level/chunk/ChunkAccess/f_279635_ net/minecraft/world/level/chunk/ChunkAccess/NO_FILLED_SECTION +FD: net/minecraft/world/level/chunk/ChunkAccess/f_283754_ net/minecraft/world/level/chunk/ChunkAccess/skyLightSources +FD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187680_ net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/blocks +FD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187681_ net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/fluids +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_223020_ net/minecraft/world/level/chunk/ChunkGenerator/featuresPerStep +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_223021_ net/minecraft/world/level/chunk/ChunkGenerator/generationSettingsGetter +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_62136_ net/minecraft/world/level/chunk/ChunkGenerator/CODEC +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_62137_ net/minecraft/world/level/chunk/ChunkGenerator/biomeSource +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254647_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/levelSeed +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254674_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ringPositions +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254677_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/randomState +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254681_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/biomeSource +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254706_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/LOGGER +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254708_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/possibleStructureSets +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254710_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/hasGeneratedPositions +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254729_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/placementsForStructure +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254746_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/concentricRingsSeed +FD: net/minecraft/world/level/chunk/ChunkStatus/f_187758_ net/minecraft/world/level/chunk/ChunkStatus/MAX_STRUCTURE_DISTANCE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_279602_ net/minecraft/world/level/chunk/ChunkStatus/hasLoadDependencies +FD: net/minecraft/world/level/chunk/ChunkStatus/f_279614_ net/minecraft/world/level/chunk/ChunkStatus/INITIALIZE_LIGHT +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62314_ net/minecraft/world/level/chunk/ChunkStatus/EMPTY +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62315_ net/minecraft/world/level/chunk/ChunkStatus/STRUCTURE_STARTS +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62316_ net/minecraft/world/level/chunk/ChunkStatus/STRUCTURE_REFERENCES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62317_ net/minecraft/world/level/chunk/ChunkStatus/BIOMES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62318_ net/minecraft/world/level/chunk/ChunkStatus/NOISE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62319_ net/minecraft/world/level/chunk/ChunkStatus/SURFACE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62320_ net/minecraft/world/level/chunk/ChunkStatus/CARVERS +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62322_ net/minecraft/world/level/chunk/ChunkStatus/FEATURES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62323_ net/minecraft/world/level/chunk/ChunkStatus/LIGHT +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62324_ net/minecraft/world/level/chunk/ChunkStatus/SPAWN +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62326_ net/minecraft/world/level/chunk/ChunkStatus/FULL +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62327_ net/minecraft/world/level/chunk/ChunkStatus/PRE_FEATURES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62328_ net/minecraft/world/level/chunk/ChunkStatus/POST_FEATURES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62329_ net/minecraft/world/level/chunk/ChunkStatus/PASSTHROUGH_LOAD_TASK +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62330_ net/minecraft/world/level/chunk/ChunkStatus/STATUS_BY_RANGE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62331_ net/minecraft/world/level/chunk/ChunkStatus/RANGE_BY_STATUS +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62333_ net/minecraft/world/level/chunk/ChunkStatus/index +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62334_ net/minecraft/world/level/chunk/ChunkStatus/parent +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62335_ net/minecraft/world/level/chunk/ChunkStatus/generationTask +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62336_ net/minecraft/world/level/chunk/ChunkStatus/loadingTask +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62337_ net/minecraft/world/level/chunk/ChunkStatus/range +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62338_ net/minecraft/world/level/chunk/ChunkStatus/chunkType +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62339_ net/minecraft/world/level/chunk/ChunkStatus/heightmapsAfter +FD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/$VALUES net/minecraft/world/level/chunk/ChunkStatus$ChunkType/$VALUES +FD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/LEVELCHUNK net/minecraft/world/level/chunk/ChunkStatus$ChunkType/LEVELCHUNK +FD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/PROTOCHUNK net/minecraft/world/level/chunk/ChunkStatus$ChunkType/PROTOCHUNK +FD: net/minecraft/world/level/chunk/DataLayer/f_156338_ net/minecraft/world/level/chunk/DataLayer/SIZE +FD: net/minecraft/world/level/chunk/DataLayer/f_156339_ net/minecraft/world/level/chunk/DataLayer/LAYER_SIZE +FD: net/minecraft/world/level/chunk/DataLayer/f_156340_ net/minecraft/world/level/chunk/DataLayer/NIBBLE_SIZE +FD: net/minecraft/world/level/chunk/DataLayer/f_182480_ net/minecraft/world/level/chunk/DataLayer/LAYER_COUNT +FD: net/minecraft/world/level/chunk/DataLayer/f_279645_ net/minecraft/world/level/chunk/DataLayer/defaultValue +FD: net/minecraft/world/level/chunk/DataLayer/f_62551_ net/minecraft/world/level/chunk/DataLayer/data +FD: net/minecraft/world/level/chunk/EmptyLevelChunk/f_204420_ net/minecraft/world/level/chunk/EmptyLevelChunk/biome +FD: net/minecraft/world/level/chunk/GlobalPalette/f_62639_ net/minecraft/world/level/chunk/GlobalPalette/registry +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62657_ net/minecraft/world/level/chunk/HashMapPalette/registry +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62658_ net/minecraft/world/level/chunk/HashMapPalette/values +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62659_ net/minecraft/world/level/chunk/HashMapPalette/resizeHandler +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62662_ net/minecraft/world/level/chunk/HashMapPalette/bits +FD: net/minecraft/world/level/chunk/ImposterProtoChunk/f_187918_ net/minecraft/world/level/chunk/ImposterProtoChunk/allowWrites +FD: net/minecraft/world/level/chunk/ImposterProtoChunk/f_62685_ net/minecraft/world/level/chunk/ImposterProtoChunk/wrapped +FD: net/minecraft/world/level/chunk/LevelChunk/f_156361_ net/minecraft/world/level/chunk/LevelChunk/NULL_TICKER +FD: net/minecraft/world/level/chunk/LevelChunk/f_156362_ net/minecraft/world/level/chunk/LevelChunk/tickersInLevel +FD: net/minecraft/world/level/chunk/LevelChunk/f_187943_ net/minecraft/world/level/chunk/LevelChunk/fluidTicks +FD: net/minecraft/world/level/chunk/LevelChunk/f_244451_ net/minecraft/world/level/chunk/LevelChunk/gameEventListenerRegistrySections +FD: net/minecraft/world/level/chunk/LevelChunk/f_62771_ net/minecraft/world/level/chunk/LevelChunk/LOGGER +FD: net/minecraft/world/level/chunk/LevelChunk/f_62775_ net/minecraft/world/level/chunk/LevelChunk/loaded +FD: net/minecraft/world/level/chunk/LevelChunk/f_62776_ net/minecraft/world/level/chunk/LevelChunk/level +FD: net/minecraft/world/level/chunk/LevelChunk/f_62784_ net/minecraft/world/level/chunk/LevelChunk/blockTicks +FD: net/minecraft/world/level/chunk/LevelChunk/f_62790_ net/minecraft/world/level/chunk/LevelChunk/fullStatus +FD: net/minecraft/world/level/chunk/LevelChunk/f_62791_ net/minecraft/world/level/chunk/LevelChunk/postLoad +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156427_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/this$0 +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156428_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/blockEntity +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156429_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/ticker +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156430_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/loggedInvalidBlockState +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/$VALUES net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/$VALUES +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/CHECK net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/CHECK +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/IMMEDIATE net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/IMMEDIATE +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/QUEUED net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/QUEUED +FD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/f_156443_ net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/this$0 +FD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/f_156444_ net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/ticker +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_156455_ net/minecraft/world/level/chunk/LevelChunkSection/SECTION_WIDTH +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_156456_ net/minecraft/world/level/chunk/LevelChunkSection/SECTION_HEIGHT +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_156457_ net/minecraft/world/level/chunk/LevelChunkSection/SECTION_SIZE +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_187994_ net/minecraft/world/level/chunk/LevelChunkSection/BIOME_CONTAINER_BITS +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_187995_ net/minecraft/world/level/chunk/LevelChunkSection/biomes +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62969_ net/minecraft/world/level/chunk/LevelChunkSection/nonEmptyBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62970_ net/minecraft/world/level/chunk/LevelChunkSection/tickingBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62971_ net/minecraft/world/level/chunk/LevelChunkSection/tickingFluidCount +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62972_ net/minecraft/world/level/chunk/LevelChunkSection/states +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204437_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/nonEmptyBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204438_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/tickingBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204439_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/tickingFluidCount +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204440_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/this$0 +FD: net/minecraft/world/level/chunk/LinearPalette/f_63025_ net/minecraft/world/level/chunk/LinearPalette/registry +FD: net/minecraft/world/level/chunk/LinearPalette/f_63026_ net/minecraft/world/level/chunk/LinearPalette/values +FD: net/minecraft/world/level/chunk/LinearPalette/f_63027_ net/minecraft/world/level/chunk/LinearPalette/resizeHandler +FD: net/minecraft/world/level/chunk/LinearPalette/f_63029_ net/minecraft/world/level/chunk/LinearPalette/bits +FD: net/minecraft/world/level/chunk/LinearPalette/f_63030_ net/minecraft/world/level/chunk/LinearPalette/size +FD: net/minecraft/world/level/chunk/PalettedContainer/f_188031_ net/minecraft/world/level/chunk/PalettedContainer/MIN_PALETTE_BITS +FD: net/minecraft/world/level/chunk/PalettedContainer/f_188032_ net/minecraft/world/level/chunk/PalettedContainer/data +FD: net/minecraft/world/level/chunk/PalettedContainer/f_188033_ net/minecraft/world/level/chunk/PalettedContainer/strategy +FD: net/minecraft/world/level/chunk/PalettedContainer/f_199441_ net/minecraft/world/level/chunk/PalettedContainer/threadingDetector +FD: net/minecraft/world/level/chunk/PalettedContainer/f_63070_ net/minecraft/world/level/chunk/PalettedContainer/dummyPaletteResize +FD: net/minecraft/world/level/chunk/PalettedContainer/f_63071_ net/minecraft/world/level/chunk/PalettedContainer/registry +FD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188085_ net/minecraft/world/level/chunk/PalettedContainer$Configuration/factory +FD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188086_ net/minecraft/world/level/chunk/PalettedContainer$Configuration/bits +FD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188100_ net/minecraft/world/level/chunk/PalettedContainer$Data/configuration +FD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188101_ net/minecraft/world/level/chunk/PalettedContainer$Data/storage +FD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188102_ net/minecraft/world/level/chunk/PalettedContainer$Data/palette +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188134_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/SINGLE_VALUE_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188135_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/LINEAR_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188136_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/HASHMAP_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188137_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/SECTION_STATES +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188138_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/SECTION_BIOMES +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188139_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/GLOBAL_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188140_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/sizeBits +FD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238179_ net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/storage +FD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238184_ net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/paletteEntries +FD: net/minecraft/world/level/chunk/ProtoChunk/f_188164_ net/minecraft/world/level/chunk/ProtoChunk/belowZeroRetrogen +FD: net/minecraft/world/level/chunk/ProtoChunk/f_188165_ net/minecraft/world/level/chunk/ProtoChunk/fluidTicks +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63151_ net/minecraft/world/level/chunk/ProtoChunk/lightEngine +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63153_ net/minecraft/world/level/chunk/ProtoChunk/status +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63157_ net/minecraft/world/level/chunk/ProtoChunk/entities +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63163_ net/minecraft/world/level/chunk/ProtoChunk/blockTicks +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63166_ net/minecraft/world/level/chunk/ProtoChunk/carvingMasks +FD: net/minecraft/world/level/chunk/SingleValuePalette/f_188203_ net/minecraft/world/level/chunk/SingleValuePalette/registry +FD: net/minecraft/world/level/chunk/SingleValuePalette/f_188204_ net/minecraft/world/level/chunk/SingleValuePalette/value +FD: net/minecraft/world/level/chunk/SingleValuePalette/f_188205_ net/minecraft/world/level/chunk/SingleValuePalette/resizeHandler +FD: net/minecraft/world/level/chunk/UpgradeData/f_156504_ net/minecraft/world/level/chunk/UpgradeData/TAG_INDICES +FD: net/minecraft/world/level/chunk/UpgradeData/f_208118_ net/minecraft/world/level/chunk/UpgradeData/neighborBlockTicks +FD: net/minecraft/world/level/chunk/UpgradeData/f_208119_ net/minecraft/world/level/chunk/UpgradeData/neighborFluidTicks +FD: net/minecraft/world/level/chunk/UpgradeData/f_63320_ net/minecraft/world/level/chunk/UpgradeData/EMPTY +FD: net/minecraft/world/level/chunk/UpgradeData/f_63321_ net/minecraft/world/level/chunk/UpgradeData/LOGGER +FD: net/minecraft/world/level/chunk/UpgradeData/f_63322_ net/minecraft/world/level/chunk/UpgradeData/DIRECTIONS +FD: net/minecraft/world/level/chunk/UpgradeData/f_63323_ net/minecraft/world/level/chunk/UpgradeData/sides +FD: net/minecraft/world/level/chunk/UpgradeData/f_63324_ net/minecraft/world/level/chunk/UpgradeData/index +FD: net/minecraft/world/level/chunk/UpgradeData/f_63325_ net/minecraft/world/level/chunk/UpgradeData/MAP +FD: net/minecraft/world/level/chunk/UpgradeData/f_63326_ net/minecraft/world/level/chunk/UpgradeData/CHUNKY_FIXERS +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/$VALUES net/minecraft/world/level/chunk/UpgradeData$BlockFixers/$VALUES +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/BLACKLIST net/minecraft/world/level/chunk/UpgradeData$BlockFixers/BLACKLIST +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/CHEST net/minecraft/world/level/chunk/UpgradeData$BlockFixers/CHEST +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/DEFAULT net/minecraft/world/level/chunk/UpgradeData$BlockFixers/DEFAULT +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/LEAVES net/minecraft/world/level/chunk/UpgradeData$BlockFixers/LEAVES +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/STEM_BLOCK net/minecraft/world/level/chunk/UpgradeData$BlockFixers/STEM_BLOCK +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/f_63363_ net/minecraft/world/level/chunk/UpgradeData$BlockFixers/DIRECTIONS +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/f_63422_ net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/queue +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_156511_ net/minecraft/world/level/chunk/storage/ChunkSerializer/TAG_UPGRADE_DATA +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_188227_ net/minecraft/world/level/chunk/storage/ChunkSerializer/BLOCK_STATE_CODEC +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_188228_ net/minecraft/world/level/chunk/storage/ChunkSerializer/BLOCK_TICKS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_188229_ net/minecraft/world/level/chunk/storage/ChunkSerializer/FLUID_TICKS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223441_ net/minecraft/world/level/chunk/storage/ChunkSerializer/X_POS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223442_ net/minecraft/world/level/chunk/storage/ChunkSerializer/Z_POS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223443_ net/minecraft/world/level/chunk/storage/ChunkSerializer/HEIGHTMAPS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223444_ net/minecraft/world/level/chunk/storage/ChunkSerializer/IS_LIGHT_ON_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223445_ net/minecraft/world/level/chunk/storage/ChunkSerializer/SECTIONS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223446_ net/minecraft/world/level/chunk/storage/ChunkSerializer/BLOCK_LIGHT_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223447_ net/minecraft/world/level/chunk/storage/ChunkSerializer/SKY_LIGHT_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_63449_ net/minecraft/world/level/chunk/storage/ChunkSerializer/LOGGER +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_196910_ net/minecraft/world/level/chunk/storage/ChunkStorage/LAST_MONOLYTH_STRUCTURE_DATA_VERSION +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_63495_ net/minecraft/world/level/chunk/storage/ChunkStorage/worker +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_63496_ net/minecraft/world/level/chunk/storage/ChunkStorage/fixerUpper +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_63497_ net/minecraft/world/level/chunk/storage/ChunkStorage/legacyStructureHandler +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156534_ net/minecraft/world/level/chunk/storage/EntityStorage/fixerUpper +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156535_ net/minecraft/world/level/chunk/storage/EntityStorage/LOGGER +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156536_ net/minecraft/world/level/chunk/storage/EntityStorage/ENTITIES_TAG +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156537_ net/minecraft/world/level/chunk/storage/EntityStorage/POSITION_TAG +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156538_ net/minecraft/world/level/chunk/storage/EntityStorage/level +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156539_ net/minecraft/world/level/chunk/storage/EntityStorage/worker +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156540_ net/minecraft/world/level/chunk/storage/EntityStorage/emptyChunks +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_182485_ net/minecraft/world/level/chunk/storage/EntityStorage/entityDeserializerQueue +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_223459_ net/minecraft/world/level/chunk/storage/IOWorker/regionCacheForBlender +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_223460_ net/minecraft/world/level/chunk/storage/IOWorker/REGION_CACHE_SIZE +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63515_ net/minecraft/world/level/chunk/storage/IOWorker/LOGGER +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63516_ net/minecraft/world/level/chunk/storage/IOWorker/shutdownRequested +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63517_ net/minecraft/world/level/chunk/storage/IOWorker/mailbox +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63518_ net/minecraft/world/level/chunk/storage/IOWorker/storage +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63519_ net/minecraft/world/level/chunk/storage/IOWorker/pendingWrites +FD: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/f_63565_ net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/data +FD: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/f_63566_ net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/result +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/$VALUES net/minecraft/world/level/chunk/storage/IOWorker$Priority/$VALUES +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/BACKGROUND net/minecraft/world/level/chunk/storage/IOWorker$Priority/BACKGROUND +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/FOREGROUND net/minecraft/world/level/chunk/storage/IOWorker$Priority/FOREGROUND +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/SHUTDOWN net/minecraft/world/level/chunk/storage/IOWorker$Priority/SHUTDOWN +FD: net/minecraft/world/level/chunk/storage/RegionBitmap/f_63608_ net/minecraft/world/level/chunk/storage/RegionBitmap/used +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156604_ net/minecraft/world/level/chunk/storage/RegionFile/SECTOR_INTS +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156605_ net/minecraft/world/level/chunk/storage/RegionFile/SECTOR_BYTES +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156606_ net/minecraft/world/level/chunk/storage/RegionFile/CHUNK_HEADER_SIZE +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156607_ net/minecraft/world/level/chunk/storage/RegionFile/HEADER_OFFSET +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156608_ net/minecraft/world/level/chunk/storage/RegionFile/EXTERNAL_FILE_EXTENSION +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156609_ net/minecraft/world/level/chunk/storage/RegionFile/EXTERNAL_STREAM_FLAG +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156610_ net/minecraft/world/level/chunk/storage/RegionFile/EXTERNAL_CHUNK_THRESHOLD +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156611_ net/minecraft/world/level/chunk/storage/RegionFile/CHUNK_NOT_PRESENT +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63618_ net/minecraft/world/level/chunk/storage/RegionFile/usedSectors +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63619_ net/minecraft/world/level/chunk/storage/RegionFile/LOGGER +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63620_ net/minecraft/world/level/chunk/storage/RegionFile/PADDING_BUFFER +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63621_ net/minecraft/world/level/chunk/storage/RegionFile/file +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63622_ net/minecraft/world/level/chunk/storage/RegionFile/externalFileDir +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63623_ net/minecraft/world/level/chunk/storage/RegionFile/version +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63624_ net/minecraft/world/level/chunk/storage/RegionFile/header +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63625_ net/minecraft/world/level/chunk/storage/RegionFile/offsets +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63626_ net/minecraft/world/level/chunk/storage/RegionFile/timestamps +FD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/f_63692_ net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/this$0 +FD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/f_63693_ net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/pos +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_156615_ net/minecraft/world/level/chunk/storage/RegionFileStorage/ANVIL_EXTENSION +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_156616_ net/minecraft/world/level/chunk/storage/RegionFileStorage/MAX_CACHE_SIZE +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_63699_ net/minecraft/world/level/chunk/storage/RegionFileStorage/regionCache +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_63700_ net/minecraft/world/level/chunk/storage/RegionFileStorage/folder +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_63701_ net/minecraft/world/level/chunk/storage/RegionFileStorage/sync +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63743_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSION_GZIP +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63744_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSION_DEFLATE +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63745_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSION_NONE +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63746_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSIONS +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63747_ net/minecraft/world/level/chunk/storage/RegionFileVersion/id +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63748_ net/minecraft/world/level/chunk/storage/RegionFileVersion/inputWrapper +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63749_ net/minecraft/world/level/chunk/storage/RegionFileVersion/outputWrapper +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_156617_ net/minecraft/world/level/chunk/storage/SectionStorage/SECTIONS_TAG +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_156618_ net/minecraft/world/level/chunk/storage/SectionStorage/levelHeightAccessor +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_223507_ net/minecraft/world/level/chunk/storage/SectionStorage/registryAccess +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63772_ net/minecraft/world/level/chunk/storage/SectionStorage/LOGGER +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63773_ net/minecraft/world/level/chunk/storage/SectionStorage/worker +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63774_ net/minecraft/world/level/chunk/storage/SectionStorage/storage +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63775_ net/minecraft/world/level/chunk/storage/SectionStorage/dirty +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63776_ net/minecraft/world/level/chunk/storage/SectionStorage/codec +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63777_ net/minecraft/world/level/chunk/storage/SectionStorage/factory +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63778_ net/minecraft/world/level/chunk/storage/SectionStorage/fixerUpper +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63779_ net/minecraft/world/level/chunk/storage/SectionStorage/type +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223538_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/OVERWORLD +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223539_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/NETHER +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223540_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/END +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223541_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/OVERWORLD_CAVES +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223542_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/OVERWORLD_EFFECTS +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223543_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/NETHER_EFFECTS +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223544_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/END_EFFECTS +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156634_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156635_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_LEVEL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156636_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_GENERATION_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156637_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_LOGICAL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156638_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156639_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_LEVEL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156640_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_GENERATION_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156641_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_LOGICAL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156642_ net/minecraft/world/level/dimension/DimensionDefaults/END_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156643_ net/minecraft/world/level/dimension/DimensionDefaults/END_LEVEL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156644_ net/minecraft/world/level/dimension/DimensionDefaults/END_GENERATION_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156645_ net/minecraft/world/level/dimension/DimensionDefaults/END_LOGICAL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionType/f_156647_ net/minecraft/world/level/dimension/DimensionType/minY +FD: net/minecraft/world/level/dimension/DimensionType/f_156648_ net/minecraft/world/level/dimension/DimensionType/height +FD: net/minecraft/world/level/dimension/DimensionType/f_156649_ net/minecraft/world/level/dimension/DimensionType/BITS_FOR_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_156650_ net/minecraft/world/level/dimension/DimensionType/MIN_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionType/f_156651_ net/minecraft/world/level/dimension/DimensionType/Y_SIZE +FD: net/minecraft/world/level/dimension/DimensionType/f_156652_ net/minecraft/world/level/dimension/DimensionType/MAX_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_156653_ net/minecraft/world/level/dimension/DimensionType/MIN_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_156654_ net/minecraft/world/level/dimension/DimensionType/MOON_PHASES +FD: net/minecraft/world/level/dimension/DimensionType/f_188293_ net/minecraft/world/level/dimension/DimensionType/WAY_ABOVE_MAX_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_188294_ net/minecraft/world/level/dimension/DimensionType/WAY_BELOW_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_223549_ net/minecraft/world/level/dimension/DimensionType/hasSkyLight +FD: net/minecraft/world/level/dimension/DimensionType/f_223550_ net/minecraft/world/level/dimension/DimensionType/monsterSettings +FD: net/minecraft/world/level/dimension/DimensionType/f_63836_ net/minecraft/world/level/dimension/DimensionType/infiniburn +FD: net/minecraft/world/level/dimension/DimensionType/f_63837_ net/minecraft/world/level/dimension/DimensionType/effectsLocation +FD: net/minecraft/world/level/dimension/DimensionType/f_63838_ net/minecraft/world/level/dimension/DimensionType/ambientLight +FD: net/minecraft/world/level/dimension/DimensionType/f_63843_ net/minecraft/world/level/dimension/DimensionType/DIRECT_CODEC +FD: net/minecraft/world/level/dimension/DimensionType/f_63844_ net/minecraft/world/level/dimension/DimensionType/MOON_BRIGHTNESS_PER_PHASE +FD: net/minecraft/world/level/dimension/DimensionType/f_63853_ net/minecraft/world/level/dimension/DimensionType/CODEC +FD: net/minecraft/world/level/dimension/DimensionType/f_63854_ net/minecraft/world/level/dimension/DimensionType/fixedTime +FD: net/minecraft/world/level/dimension/DimensionType/f_63856_ net/minecraft/world/level/dimension/DimensionType/hasCeiling +FD: net/minecraft/world/level/dimension/DimensionType/f_63857_ net/minecraft/world/level/dimension/DimensionType/ultraWarm +FD: net/minecraft/world/level/dimension/DimensionType/f_63858_ net/minecraft/world/level/dimension/DimensionType/natural +FD: net/minecraft/world/level/dimension/DimensionType/f_63859_ net/minecraft/world/level/dimension/DimensionType/coordinateScale +FD: net/minecraft/world/level/dimension/DimensionType/f_63862_ net/minecraft/world/level/dimension/DimensionType/bedWorks +FD: net/minecraft/world/level/dimension/DimensionType/f_63863_ net/minecraft/world/level/dimension/DimensionType/respawnAnchorWorks +FD: net/minecraft/world/level/dimension/DimensionType/f_63865_ net/minecraft/world/level/dimension/DimensionType/logicalHeight +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223578_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/CODEC +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223579_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/piglinSafe +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223580_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hasRaids +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223581_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnLightTest +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223582_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnBlockLightLimit +FD: net/minecraft/world/level/dimension/LevelStem/f_63970_ net/minecraft/world/level/dimension/LevelStem/CODEC +FD: net/minecraft/world/level/dimension/LevelStem/f_63971_ net/minecraft/world/level/dimension/LevelStem/OVERWORLD +FD: net/minecraft/world/level/dimension/LevelStem/f_63972_ net/minecraft/world/level/dimension/LevelStem/NETHER +FD: net/minecraft/world/level/dimension/LevelStem/f_63973_ net/minecraft/world/level/dimension/LevelStem/END +FD: net/minecraft/world/level/dimension/LevelStem/f_63975_ net/minecraft/world/level/dimension/LevelStem/type +FD: net/minecraft/world/level/dimension/LevelStem/f_63976_ net/minecraft/world/level/dimension/LevelStem/generator +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/$VALUES net/minecraft/world/level/dimension/end/DragonRespawnAnimation/$VALUES +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/END net/minecraft/world/level/dimension/end/DragonRespawnAnimation/END +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/PREPARING_TO_SUMMON_PILLARS net/minecraft/world/level/dimension/end/DragonRespawnAnimation/PREPARING_TO_SUMMON_PILLARS +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/START net/minecraft/world/level/dimension/end/DragonRespawnAnimation/START +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_DRAGON net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_DRAGON +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_PILLARS net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_PILLARS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156735_ net/minecraft/world/level/dimension/end/EndDragonFight/ARENA_TICKET_LEVEL +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156736_ net/minecraft/world/level/dimension/end/EndDragonFight/DRAGON_SPAWN_Y +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156737_ net/minecraft/world/level/dimension/end/EndDragonFight/MAX_TICKS_BEFORE_DRAGON_RESPAWN +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156738_ net/minecraft/world/level/dimension/end/EndDragonFight/TIME_BETWEEN_CRYSTAL_SCANS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156739_ net/minecraft/world/level/dimension/end/EndDragonFight/TIME_BETWEEN_PLAYER_SCANS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156740_ net/minecraft/world/level/dimension/end/EndDragonFight/ARENA_SIZE_CHUNKS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156741_ net/minecraft/world/level/dimension/end/EndDragonFight/GATEWAY_COUNT +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156742_ net/minecraft/world/level/dimension/end/EndDragonFight/GATEWAY_DISTANCE +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_286982_ net/minecraft/world/level/dimension/end/EndDragonFight/skipArenaLoadedCheck +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_286985_ net/minecraft/world/level/dimension/end/EndDragonFight/origin +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_286991_ net/minecraft/world/level/dimension/end/EndDragonFight/validPlayer +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64058_ net/minecraft/world/level/dimension/end/EndDragonFight/LOGGER +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64060_ net/minecraft/world/level/dimension/end/EndDragonFight/dragonEvent +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64061_ net/minecraft/world/level/dimension/end/EndDragonFight/level +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64062_ net/minecraft/world/level/dimension/end/EndDragonFight/gateways +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64063_ net/minecraft/world/level/dimension/end/EndDragonFight/exitPortalPattern +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64064_ net/minecraft/world/level/dimension/end/EndDragonFight/ticksSinceDragonSeen +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64065_ net/minecraft/world/level/dimension/end/EndDragonFight/crystalsAlive +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64066_ net/minecraft/world/level/dimension/end/EndDragonFight/ticksSinceCrystalsScanned +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64067_ net/minecraft/world/level/dimension/end/EndDragonFight/ticksSinceLastPlayerScan +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64068_ net/minecraft/world/level/dimension/end/EndDragonFight/dragonKilled +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64069_ net/minecraft/world/level/dimension/end/EndDragonFight/previouslyKilled +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64070_ net/minecraft/world/level/dimension/end/EndDragonFight/dragonUUID +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64071_ net/minecraft/world/level/dimension/end/EndDragonFight/needsStateScanning +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64072_ net/minecraft/world/level/dimension/end/EndDragonFight/portalLocation +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64073_ net/minecraft/world/level/dimension/end/EndDragonFight/respawnStage +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64074_ net/minecraft/world/level/dimension/end/EndDragonFight/respawnTime +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64075_ net/minecraft/world/level/dimension/end/EndDragonFight/respawnCrystals +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289702_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonUUID +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289703_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/isRespawning +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289704_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/previouslyKilled +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289705_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/gateways +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289707_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/CODEC +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289708_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/exitPortalLocation +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289709_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/DEFAULT +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289710_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/needsStateScanning +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289711_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonKilled +FD: net/minecraft/world/level/entity/ChunkEntities/f_156786_ net/minecraft/world/level/entity/ChunkEntities/pos +FD: net/minecraft/world/level/entity/ChunkEntities/f_156787_ net/minecraft/world/level/entity/ChunkEntities/entities +FD: net/minecraft/world/level/entity/EntityInLevelCallback/f_156799_ net/minecraft/world/level/entity/EntityInLevelCallback/NULL +FD: net/minecraft/world/level/entity/EntityLookup/f_156806_ net/minecraft/world/level/entity/EntityLookup/LOGGER +FD: net/minecraft/world/level/entity/EntityLookup/f_156807_ net/minecraft/world/level/entity/EntityLookup/byId +FD: net/minecraft/world/level/entity/EntityLookup/f_156808_ net/minecraft/world/level/entity/EntityLookup/byUuid +FD: net/minecraft/world/level/entity/EntitySection/f_156826_ net/minecraft/world/level/entity/EntitySection/LOGGER +FD: net/minecraft/world/level/entity/EntitySection/f_156827_ net/minecraft/world/level/entity/EntitySection/storage +FD: net/minecraft/world/level/entity/EntitySection/f_156828_ net/minecraft/world/level/entity/EntitySection/chunkStatus +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156850_ net/minecraft/world/level/entity/EntitySectionStorage/entityClass +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156851_ net/minecraft/world/level/entity/EntitySectionStorage/intialSectionVisibility +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156852_ net/minecraft/world/level/entity/EntitySectionStorage/sections +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156853_ net/minecraft/world/level/entity/EntitySectionStorage/sectionIds +FD: net/minecraft/world/level/entity/EntityTickList/f_156903_ net/minecraft/world/level/entity/EntityTickList/active +FD: net/minecraft/world/level/entity/EntityTickList/f_156904_ net/minecraft/world/level/entity/EntityTickList/passive +FD: net/minecraft/world/level/entity/EntityTickList/f_156905_ net/minecraft/world/level/entity/EntityTickList/iterated +FD: net/minecraft/world/level/entity/EntityTypeTest$1/f_156919_ net/minecraft/world/level/entity/EntityTypeTest$1/val$cls +FD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/f_156940_ net/minecraft/world/level/entity/LevelEntityGetterAdapter/visibleEntities +FD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/f_156941_ net/minecraft/world/level/entity/LevelEntityGetterAdapter/sectionStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157490_ net/minecraft/world/level/entity/PersistentEntitySectionManager/LOGGER +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157491_ net/minecraft/world/level/entity/PersistentEntitySectionManager/knownUuids +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157492_ net/minecraft/world/level/entity/PersistentEntitySectionManager/callbacks +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157493_ net/minecraft/world/level/entity/PersistentEntitySectionManager/permanentStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157494_ net/minecraft/world/level/entity/PersistentEntitySectionManager/visibleEntityStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157495_ net/minecraft/world/level/entity/PersistentEntitySectionManager/sectionStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157496_ net/minecraft/world/level/entity/PersistentEntitySectionManager/entityGetter +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157497_ net/minecraft/world/level/entity/PersistentEntitySectionManager/chunkVisibility +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157498_ net/minecraft/world/level/entity/PersistentEntitySectionManager/chunkLoadStatuses +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157499_ net/minecraft/world/level/entity/PersistentEntitySectionManager/chunksToUnload +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157500_ net/minecraft/world/level/entity/PersistentEntitySectionManager/loadingInbox +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157608_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/this$0 +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157609_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/entity +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157610_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/currentSectionKey +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157611_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/currentSection +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/$VALUES net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/$VALUES +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/FRESH net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/FRESH +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/LOADED net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/LOADED +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/PENDING net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/PENDING +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157635_ net/minecraft/world/level/entity/TransientEntitySectionManager/LOGGER +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157636_ net/minecraft/world/level/entity/TransientEntitySectionManager/callbacks +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157637_ net/minecraft/world/level/entity/TransientEntitySectionManager/entityStorage +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157638_ net/minecraft/world/level/entity/TransientEntitySectionManager/sectionStorage +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157639_ net/minecraft/world/level/entity/TransientEntitySectionManager/tickingChunks +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157640_ net/minecraft/world/level/entity/TransientEntitySectionManager/entityGetter +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157667_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/this$0 +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157668_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/entity +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157669_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/currentSectionKey +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157670_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/currentSection +FD: net/minecraft/world/level/entity/Visibility/$VALUES net/minecraft/world/level/entity/Visibility/$VALUES +FD: net/minecraft/world/level/entity/Visibility/HIDDEN net/minecraft/world/level/entity/Visibility/HIDDEN +FD: net/minecraft/world/level/entity/Visibility/TICKING net/minecraft/world/level/entity/Visibility/TICKING +FD: net/minecraft/world/level/entity/Visibility/TRACKED net/minecraft/world/level/entity/Visibility/TRACKED +FD: net/minecraft/world/level/entity/Visibility/f_157682_ net/minecraft/world/level/entity/Visibility/accessible +FD: net/minecraft/world/level/entity/Visibility/f_157683_ net/minecraft/world/level/entity/Visibility/ticking +FD: net/minecraft/world/level/gameevent/BlockPositionSource/f_157699_ net/minecraft/world/level/gameevent/BlockPositionSource/CODEC +FD: net/minecraft/world/level/gameevent/BlockPositionSource/f_157700_ net/minecraft/world/level/gameevent/BlockPositionSource/pos +FD: net/minecraft/world/level/gameevent/DynamicGameEventListener/f_223612_ net/minecraft/world/level/gameevent/DynamicGameEventListener/listener +FD: net/minecraft/world/level/gameevent/DynamicGameEventListener/f_223613_ net/minecraft/world/level/gameevent/DynamicGameEventListener/lastSection +FD: net/minecraft/world/level/gameevent/EntityPositionSource/f_157725_ net/minecraft/world/level/gameevent/EntityPositionSource/CODEC +FD: net/minecraft/world/level/gameevent/EntityPositionSource/f_223645_ net/minecraft/world/level/gameevent/EntityPositionSource/entityOrUuidOrId +FD: net/minecraft/world/level/gameevent/EntityPositionSource/f_223646_ net/minecraft/world/level/gameevent/EntityPositionSource/yOffset +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244008_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/listenersToAdd +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244249_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/processing +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244308_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/listenersToRemove +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244422_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/listeners +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244607_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/level +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_279540_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/sectionY +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_279576_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/onEmptyAction +FD: net/minecraft/world/level/gameevent/GameEvent/f_157769_ net/minecraft/world/level/gameevent/GameEvent/FLUID_PLACE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157770_ net/minecraft/world/level/gameevent/GameEvent/HIT_GROUND +FD: net/minecraft/world/level/gameevent/GameEvent/f_157772_ net/minecraft/world/level/gameevent/GameEvent/LIGHTNING_STRIKE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157776_ net/minecraft/world/level/gameevent/GameEvent/PRIME_FUSE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157777_ net/minecraft/world/level/gameevent/GameEvent/PROJECTILE_LAND +FD: net/minecraft/world/level/gameevent/GameEvent/f_157778_ net/minecraft/world/level/gameevent/GameEvent/PROJECTILE_SHOOT +FD: net/minecraft/world/level/gameevent/GameEvent/f_157781_ net/minecraft/world/level/gameevent/GameEvent/SHEAR +FD: net/minecraft/world/level/gameevent/GameEvent/f_157784_ net/minecraft/world/level/gameevent/GameEvent/SPLASH +FD: net/minecraft/world/level/gameevent/GameEvent/f_157785_ net/minecraft/world/level/gameevent/GameEvent/STEP +FD: net/minecraft/world/level/gameevent/GameEvent/f_157786_ net/minecraft/world/level/gameevent/GameEvent/SWIM +FD: net/minecraft/world/level/gameevent/GameEvent/f_157788_ net/minecraft/world/level/gameevent/GameEvent/DEFAULT_NOTIFICATION_RADIUS +FD: net/minecraft/world/level/gameevent/GameEvent/f_157789_ net/minecraft/world/level/gameevent/GameEvent/name +FD: net/minecraft/world/level/gameevent/GameEvent/f_157790_ net/minecraft/world/level/gameevent/GameEvent/notificationRadius +FD: net/minecraft/world/level/gameevent/GameEvent/f_157791_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_ATTACH +FD: net/minecraft/world/level/gameevent/GameEvent/f_157792_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_CHANGE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157793_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_CLOSE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157794_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_DESTROY +FD: net/minecraft/world/level/gameevent/GameEvent/f_157795_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_DETACH +FD: net/minecraft/world/level/gameevent/GameEvent/f_157796_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_OPEN +FD: net/minecraft/world/level/gameevent/GameEvent/f_157797_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_PLACE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157802_ net/minecraft/world/level/gameevent/GameEvent/CONTAINER_CLOSE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157803_ net/minecraft/world/level/gameevent/GameEvent/CONTAINER_OPEN +FD: net/minecraft/world/level/gameevent/GameEvent/f_157806_ net/minecraft/world/level/gameevent/GameEvent/EAT +FD: net/minecraft/world/level/gameevent/GameEvent/f_157810_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_PLACE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157811_ net/minecraft/world/level/gameevent/GameEvent/EQUIP +FD: net/minecraft/world/level/gameevent/GameEvent/f_157812_ net/minecraft/world/level/gameevent/GameEvent/EXPLODE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157815_ net/minecraft/world/level/gameevent/GameEvent/FLAP +FD: net/minecraft/world/level/gameevent/GameEvent/f_157816_ net/minecraft/world/level/gameevent/GameEvent/FLUID_PICKUP +FD: net/minecraft/world/level/gameevent/GameEvent/f_204527_ net/minecraft/world/level/gameevent/GameEvent/builtInRegistryHolder +FD: net/minecraft/world/level/gameevent/GameEvent/f_223696_ net/minecraft/world/level/gameevent/GameEvent/INSTRUMENT_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_223697_ net/minecraft/world/level/gameevent/GameEvent/ITEM_INTERACT_FINISH +FD: net/minecraft/world/level/gameevent/GameEvent/f_223698_ net/minecraft/world/level/gameevent/GameEvent/ITEM_INTERACT_START +FD: net/minecraft/world/level/gameevent/GameEvent/f_223699_ net/minecraft/world/level/gameevent/GameEvent/NOTE_BLOCK_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_223700_ net/minecraft/world/level/gameevent/GameEvent/SCULK_SENSOR_TENDRILS_CLICKING +FD: net/minecraft/world/level/gameevent/GameEvent/f_223701_ net/minecraft/world/level/gameevent/GameEvent/SHRIEK +FD: net/minecraft/world/level/gameevent/GameEvent/f_223702_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_ACTIVATE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223703_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_DEACTIVATE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223704_ net/minecraft/world/level/gameevent/GameEvent/DRINK +FD: net/minecraft/world/level/gameevent/GameEvent/f_223705_ net/minecraft/world/level/gameevent/GameEvent/ELYTRA_GLIDE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223706_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_DAMAGE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223707_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_DIE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223708_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_INTERACT +FD: net/minecraft/world/level/gameevent/GameEvent/f_223709_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_ROAR +FD: net/minecraft/world/level/gameevent/GameEvent/f_223710_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_SHAKE +FD: net/minecraft/world/level/gameevent/GameEvent/f_238175_ net/minecraft/world/level/gameevent/GameEvent/TELEPORT +FD: net/minecraft/world/level/gameevent/GameEvent/f_238649_ net/minecraft/world/level/gameevent/GameEvent/JUKEBOX_STOP_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_238690_ net/minecraft/world/level/gameevent/GameEvent/JUKEBOX_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_268500_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_MOUNT +FD: net/minecraft/world/level/gameevent/GameEvent/f_268533_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_DISMOUNT +FD: net/minecraft/world/level/gameevent/GameEvent/f_276419_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_9 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276431_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_10 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276436_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_15 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276454_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_14 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276494_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_8 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276518_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_6 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276530_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_2 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276533_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_4 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276548_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_12 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276553_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_1 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276569_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_13 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276621_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_11 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276655_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_7 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276691_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_3 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276695_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_5 +FD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223711_ net/minecraft/world/level/gameevent/GameEvent$Context/sourceEntity +FD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223712_ net/minecraft/world/level/gameevent/GameEvent$Context/affectedState +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_243994_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/distanceToRecipient +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244423_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/source +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244470_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/context +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244497_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/gameEvent +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244568_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/recipient +FD: net/minecraft/world/level/gameevent/GameEventDispatcher/f_243917_ net/minecraft/world/level/gameevent/GameEventDispatcher/level +FD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/$VALUES net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/$VALUES +FD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/BY_DISTANCE net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/BY_DISTANCE +FD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/UNSPECIFIED net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/UNSPECIFIED +FD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/f_244154_ net/minecraft/world/level/gameevent/GameEventListenerRegistry/NOOP +FD: net/minecraft/world/level/gameevent/PositionSource/f_157868_ net/minecraft/world/level/gameevent/PositionSource/CODEC +FD: net/minecraft/world/level/gameevent/PositionSourceType/f_157871_ net/minecraft/world/level/gameevent/PositionSourceType/BLOCK +FD: net/minecraft/world/level/gameevent/PositionSourceType/f_157872_ net/minecraft/world/level/gameevent/PositionSourceType/ENTITY +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243709_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/gameEvent +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243776_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/distance +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243797_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/uuid +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243906_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/pos +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243913_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/projectileOwnerUuid +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_244048_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/entity +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_244481_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/CODEC +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/f_244309_ net/minecraft/world/level/gameevent/vibrations/VibrationSelector/CODEC +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/f_244532_ net/minecraft/world/level/gameevent/vibrations/VibrationSelector/currentVibrationData +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/f_279561_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem/VIBRATION_FREQUENCY_FOR_EVENT +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/f_279664_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem/RESONANCE_EVENTS +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279525_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/NBT_TAG_KEY +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279593_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/selectionStrategy +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279613_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/reloadVibrationParticle +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279637_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/CODEC +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279638_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/travelTimeInTicks +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279652_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/currentVibration +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/f_279547_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/system +FD: net/minecraft/world/level/levelgen/Aquifer$1/f_188388_ net/minecraft/world/level/levelgen/Aquifer$1/val$fluidRule +FD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/f_188400_ net/minecraft/world/level/levelgen/Aquifer$FluidStatus/fluidLevel +FD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/f_188401_ net/minecraft/world/level/levelgen/Aquifer$FluidStatus/fluidType +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157985_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/X_RANGE +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157986_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Y_RANGE +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157987_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Z_RANGE +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157988_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/X_SEPARATION +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157989_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Y_SEPARATION +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157990_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Z_SEPARATION +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157991_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/X_SPACING +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157992_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Y_SPACING +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157993_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Z_SPACING +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157994_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/barrierNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157996_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/lavaNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157998_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/aquiferCache +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157999_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/aquiferLocationCache +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158000_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/shouldScheduleFluidUpdate +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158002_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/minGridX +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158003_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/minGridY +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158004_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/minGridZ +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158005_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridSizeX +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158006_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridSizeZ +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188407_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/noiseChunk +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188408_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/fluidLevelFloodednessNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188409_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/fluidLevelSpreadNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188410_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/positionalRandomFactory +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188411_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/globalFluidPicker +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188412_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/SURFACE_SAMPLING_OFFSETS_IN_CHUNKS +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_196978_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/MAX_REASONABLE_DISTANCE_TO_AQUIFER_CENTER +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_196979_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/FLOWING_UPDATE_SIMULARITY +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_223888_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/erosion +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_223889_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/depth +FD: net/minecraft/world/level/levelgen/Beardifier/f_158060_ net/minecraft/world/level/levelgen/Beardifier/BEARD_KERNEL_RADIUS +FD: net/minecraft/world/level/levelgen/Beardifier/f_158061_ net/minecraft/world/level/levelgen/Beardifier/BEARD_KERNEL_SIZE +FD: net/minecraft/world/level/levelgen/Beardifier/f_158062_ net/minecraft/world/level/levelgen/Beardifier/BEARD_KERNEL +FD: net/minecraft/world/level/levelgen/Beardifier/f_158065_ net/minecraft/world/level/levelgen/Beardifier/pieceIterator +FD: net/minecraft/world/level/levelgen/Beardifier/f_158066_ net/minecraft/world/level/levelgen/Beardifier/junctionIterator +FD: net/minecraft/world/level/levelgen/Beardifier$1/f_223942_ net/minecraft/world/level/levelgen/Beardifier$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$TerrainAdjustment +FD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223944_ net/minecraft/world/level/levelgen/Beardifier$Rigid/box +FD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223945_ net/minecraft/world/level/levelgen/Beardifier$Rigid/terrainAdjustment +FD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223946_ net/minecraft/world/level/levelgen/Beardifier$Rigid/groundLevelDelta +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188455_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/CODEC +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188456_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/UPGRADE_HEIGHT_ACCESSOR +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188457_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/EMPTY +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188458_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/BITSET_CODEC +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188459_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/NON_EMPTY_CHUNK_STATUS +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188460_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/targetStatus +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188461_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/missingBedrock +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_196980_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/RETAINED_RETROGEN_BIOMES +FD: net/minecraft/world/level/levelgen/BitRandomSource/f_188496_ net/minecraft/world/level/levelgen/BitRandomSource/FLOAT_MULTIPLIER +FD: net/minecraft/world/level/levelgen/BitRandomSource/f_188497_ net/minecraft/world/level/levelgen/BitRandomSource/DOUBLE_MULTIPLIER +FD: net/minecraft/world/level/levelgen/Column$Line/f_158197_ net/minecraft/world/level/levelgen/Column$Line/INSTANCE +FD: net/minecraft/world/level/levelgen/Column$Range/f_158204_ net/minecraft/world/level/levelgen/Column$Range/floor +FD: net/minecraft/world/level/levelgen/Column$Range/f_158205_ net/minecraft/world/level/levelgen/Column$Range/ceiling +FD: net/minecraft/world/level/levelgen/Column$Ray/f_158216_ net/minecraft/world/level/levelgen/Column$Ray/edge +FD: net/minecraft/world/level/levelgen/Column$Ray/f_158217_ net/minecraft/world/level/levelgen/Column$Ray/pointingUp +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_158225_ net/minecraft/world/level/levelgen/DebugLevelSource/HEIGHT +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_158226_ net/minecraft/world/level/levelgen/DebugLevelSource/BARRIER_HEIGHT +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_158227_ net/minecraft/world/level/levelgen/DebugLevelSource/BLOCK_MARGIN +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64111_ net/minecraft/world/level/levelgen/DebugLevelSource/CODEC +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64112_ net/minecraft/world/level/levelgen/DebugLevelSource/AIR +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64113_ net/minecraft/world/level/levelgen/DebugLevelSource/BARRIER +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64114_ net/minecraft/world/level/levelgen/DebugLevelSource/ALL_BLOCKS +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64115_ net/minecraft/world/level/levelgen/DebugLevelSource/GRID_WIDTH +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64116_ net/minecraft/world/level/levelgen/DebugLevelSource/GRID_HEIGHT +FD: net/minecraft/world/level/levelgen/Density/f_188536_ net/minecraft/world/level/levelgen/Density/SURFACE +FD: net/minecraft/world/level/levelgen/Density/f_188537_ net/minecraft/world/level/levelgen/Density/UNRECOVERABLY_DENSE +FD: net/minecraft/world/level/levelgen/Density/f_188538_ net/minecraft/world/level/levelgen/Density/UNRECOVERABLY_THIN +FD: net/minecraft/world/level/levelgen/DensityFunction/f_208216_ net/minecraft/world/level/levelgen/DensityFunction/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction/f_208217_ net/minecraft/world/level/levelgen/DensityFunction/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction/f_208218_ net/minecraft/world/level/levelgen/DensityFunction/HOLDER_HELPER_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223996_ net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223997_ net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noiseData +FD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223998_ net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noise +FD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/f_208243_ net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockX +FD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/f_208244_ net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockY +FD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/f_208245_ net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockZ +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208257_ net/minecraft/world/level/levelgen/DensityFunctions/MAX_REASONABLE_NOISE_VALUE +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208258_ net/minecraft/world/level/levelgen/DensityFunctions/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208259_ net/minecraft/world/level/levelgen/DensityFunctions/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208260_ net/minecraft/world/level/levelgen/DensityFunctions/NOISE_VALUE_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$1/f_208393_ net/minecraft/world/level/levelgen/DensityFunctions$1/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$Mapped$Type +FD: net/minecraft/world/level/levelgen/DensityFunctions$1/f_208394_ net/minecraft/world/level/levelgen/DensityFunctions$1/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$TwoArgumentSimpleFunction$Type +FD: net/minecraft/world/level/levelgen/DensityFunctions$1/f_208395_ net/minecraft/world/level/levelgen/DensityFunctions$1/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$MulOrAdd$Type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208397_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208398_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument1 +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208399_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument2 +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208400_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208401_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/INSTANCE net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/INSTANCE +FD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/f_208524_ net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/INSTANCE net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/INSTANCE +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/f_208528_ net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/f_208546_ net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/f_208547_ net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/INSTANCE net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/INSTANCE +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/f_208565_ net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208583_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208584_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208585_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208586_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208587_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208607_ net/minecraft/world/level/levelgen/DensityFunctions$Constant/value +FD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208608_ net/minecraft/world/level/levelgen/DensityFunctions$Constant/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208609_ net/minecraft/world/level/levelgen/DensityFunctions$Constant/ZERO +FD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/f_208626_ net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/f_208627_ net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/islandNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/f_224061_ net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ISLAND_THRESHOLD +FD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/f_208636_ net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/function +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208654_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208655_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208656_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208657_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ABS net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ABS +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/CUBE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/CUBE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/HALF_NEGATIVE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/HALF_NEGATIVE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/QUARTER_NEGATIVE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/QUARTER_NEGATIVE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUARE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUARE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUEEZE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUEEZE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/f_208690_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/f_208691_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/codec +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/f_208705_ net/minecraft/world/level/levelgen/DensityFunctions$Marker/type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/f_208706_ net/minecraft/world/level/levelgen/DensityFunctions$Marker/wrapped +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Cache2D net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Cache2D +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheAllInCell net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheAllInCell +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheOnce net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheOnce +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/FlatCache net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/FlatCache +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Interpolated net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Interpolated +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/f_208730_ net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/f_208731_ net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/codec +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208746_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/specificType +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208747_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208748_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208749_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208750_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ADD net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ADD +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/MUL net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/MUL +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208784_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208785_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208787_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/noise +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208788_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/xzScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208789_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/yScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208821_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208822_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208823_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208824_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/minInclusive +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208825_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/maxExclusive +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208826_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenInRange +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208827_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenOutOfRange +FD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/f_208857_ net/minecraft/world/level/levelgen/DensityFunctions$Shift/offsetNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/f_208858_ net/minecraft/world/level/levelgen/DensityFunctions$Shift/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/f_208877_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/offsetNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/f_208878_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/f_208897_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/offsetNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/f_208898_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208923_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208924_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftX +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208925_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftY +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208926_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftZ +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208927_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/xzScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208928_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/yScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208930_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/noise +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208931_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211701_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211702_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/spline +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211705_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_224114_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/SPLINE_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/f_224121_ net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/f_224122_ net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/function +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/f_224139_ net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/context +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/f_209071_ net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/LOGGER +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ADD net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ADD +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MAX net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MAX +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MIN net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MIN +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MUL net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MUL +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/f_209082_ net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/codec +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/f_209083_ net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208424_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208425_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208427_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/noise +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208428_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/rarityValueMapper +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208429_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE1 net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE1 +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE2 net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE2 +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208460_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208462_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208463_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/mapper +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208464_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/maxRarity +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208480_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208481_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromY +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208482_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toY +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208483_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208484_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208485_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/DATA_CODEC +FD: net/minecraft/world/level/levelgen/FlatLevelSource/f_64164_ net/minecraft/world/level/levelgen/FlatLevelSource/CODEC +FD: net/minecraft/world/level/levelgen/FlatLevelSource/f_64165_ net/minecraft/world/level/levelgen/FlatLevelSource/settings +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/$VALUES net/minecraft/world/level/levelgen/GenerationStep$Carving/$VALUES +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/AIR net/minecraft/world/level/levelgen/GenerationStep$Carving/AIR +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/LIQUID net/minecraft/world/level/levelgen/GenerationStep$Carving/LIQUID +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/f_64194_ net/minecraft/world/level/levelgen/GenerationStep$Carving/CODEC +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/f_64196_ net/minecraft/world/level/levelgen/GenerationStep$Carving/name +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/$VALUES net/minecraft/world/level/levelgen/GenerationStep$Decoration/$VALUES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/FLUID_SPRINGS net/minecraft/world/level/levelgen/GenerationStep$Decoration/FLUID_SPRINGS +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/LAKES net/minecraft/world/level/levelgen/GenerationStep$Decoration/LAKES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/LOCAL_MODIFICATIONS net/minecraft/world/level/levelgen/GenerationStep$Decoration/LOCAL_MODIFICATIONS +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/RAW_GENERATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/RAW_GENERATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/STRONGHOLDS net/minecraft/world/level/levelgen/GenerationStep$Decoration/STRONGHOLDS +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/SURFACE_STRUCTURES net/minecraft/world/level/levelgen/GenerationStep$Decoration/SURFACE_STRUCTURES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/TOP_LAYER_MODIFICATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/TOP_LAYER_MODIFICATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_DECORATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_DECORATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_ORES net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_ORES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_STRUCTURES net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_STRUCTURES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/VEGETAL_DECORATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/VEGETAL_DECORATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/f_224188_ net/minecraft/world/level/levelgen/GenerationStep$Decoration/CODEC +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/f_224189_ net/minecraft/world/level/levelgen/GenerationStep$Decoration/name +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158287_ net/minecraft/world/level/levelgen/GeodeBlockSettings/fillingProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158288_ net/minecraft/world/level/levelgen/GeodeBlockSettings/innerLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158289_ net/minecraft/world/level/levelgen/GeodeBlockSettings/alternateInnerLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158290_ net/minecraft/world/level/levelgen/GeodeBlockSettings/middleLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158291_ net/minecraft/world/level/levelgen/GeodeBlockSettings/outerLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158292_ net/minecraft/world/level/levelgen/GeodeBlockSettings/innerPlacements +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158293_ net/minecraft/world/level/levelgen/GeodeBlockSettings/cannotReplace +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158294_ net/minecraft/world/level/levelgen/GeodeBlockSettings/invalidBlocks +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158295_ net/minecraft/world/level/levelgen/GeodeBlockSettings/CODEC +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158324_ net/minecraft/world/level/levelgen/GeodeCrackSettings/CODEC +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158325_ net/minecraft/world/level/levelgen/GeodeCrackSettings/generateCrackChance +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158326_ net/minecraft/world/level/levelgen/GeodeCrackSettings/baseCrackSize +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158327_ net/minecraft/world/level/levelgen/GeodeCrackSettings/crackPointOffset +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158341_ net/minecraft/world/level/levelgen/GeodeLayerSettings/CODEC +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158342_ net/minecraft/world/level/levelgen/GeodeLayerSettings/filling +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158343_ net/minecraft/world/level/levelgen/GeodeLayerSettings/innerLayer +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158344_ net/minecraft/world/level/levelgen/GeodeLayerSettings/middleLayer +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158345_ net/minecraft/world/level/levelgen/GeodeLayerSettings/outerLayer +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158346_ net/minecraft/world/level/levelgen/GeodeLayerSettings/LAYER_RANGE +FD: net/minecraft/world/level/levelgen/Heightmap/f_158363_ net/minecraft/world/level/levelgen/Heightmap/LOGGER +FD: net/minecraft/world/level/levelgen/Heightmap/f_64230_ net/minecraft/world/level/levelgen/Heightmap/NOT_AIR +FD: net/minecraft/world/level/levelgen/Heightmap/f_64231_ net/minecraft/world/level/levelgen/Heightmap/MATERIAL_MOTION_BLOCKING +FD: net/minecraft/world/level/levelgen/Heightmap/f_64232_ net/minecraft/world/level/levelgen/Heightmap/data +FD: net/minecraft/world/level/levelgen/Heightmap/f_64233_ net/minecraft/world/level/levelgen/Heightmap/isOpaque +FD: net/minecraft/world/level/levelgen/Heightmap/f_64234_ net/minecraft/world/level/levelgen/Heightmap/chunk +FD: net/minecraft/world/level/levelgen/Heightmap$Types/$VALUES net/minecraft/world/level/levelgen/Heightmap$Types/$VALUES +FD: net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING +FD: net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING_NO_LEAVES net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING_NO_LEAVES +FD: net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR +FD: net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR_WG net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR_WG +FD: net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE +FD: net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE_WG net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE_WG +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64274_ net/minecraft/world/level/levelgen/Heightmap$Types/CODEC +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64275_ net/minecraft/world/level/levelgen/Heightmap$Types/serializationKey +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64276_ net/minecraft/world/level/levelgen/Heightmap$Types/usage +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64277_ net/minecraft/world/level/levelgen/Heightmap$Types/isOpaque +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/$VALUES net/minecraft/world/level/levelgen/Heightmap$Usage/$VALUES +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/CLIENT net/minecraft/world/level/levelgen/Heightmap$Usage/CLIENT +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/LIVE_WORLD net/minecraft/world/level/levelgen/Heightmap$Usage/LIVE_WORLD +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/WORLDGEN net/minecraft/world/level/levelgen/Heightmap$Usage/WORLDGEN +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188571_ net/minecraft/world/level/levelgen/LegacyRandomSource/MODULUS_BITS +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188572_ net/minecraft/world/level/levelgen/LegacyRandomSource/MODULUS_MASK +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188573_ net/minecraft/world/level/levelgen/LegacyRandomSource/MULTIPLIER +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188574_ net/minecraft/world/level/levelgen/LegacyRandomSource/INCREMENT +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188575_ net/minecraft/world/level/levelgen/LegacyRandomSource/seed +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188576_ net/minecraft/world/level/levelgen/LegacyRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/f_188586_ net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/seed +FD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/f_188597_ net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/randomSource +FD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/f_188598_ net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/nextNextGaussian +FD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/f_188599_ net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/haveNextNextGaussian +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_188607_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/globalFluidPicker +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_64314_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/CODEC +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_64318_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/settings +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_64321_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/AIR +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188717_ net/minecraft/world/level/levelgen/NoiseChunk/noiseSettings +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188718_ net/minecraft/world/level/levelgen/NoiseChunk/cellCountXZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188719_ net/minecraft/world/level/levelgen/NoiseChunk/cellCountY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188720_ net/minecraft/world/level/levelgen/NoiseChunk/cellNoiseMinY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188721_ net/minecraft/world/level/levelgen/NoiseChunk/firstCellX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188722_ net/minecraft/world/level/levelgen/NoiseChunk/firstCellZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188723_ net/minecraft/world/level/levelgen/NoiseChunk/firstNoiseX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188724_ net/minecraft/world/level/levelgen/NoiseChunk/firstNoiseZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188725_ net/minecraft/world/level/levelgen/NoiseChunk/interpolators +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188728_ net/minecraft/world/level/levelgen/NoiseChunk/aquifer +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188731_ net/minecraft/world/level/levelgen/NoiseChunk/blender +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_198238_ net/minecraft/world/level/levelgen/NoiseChunk/preliminarySurfaceLevel +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209150_ net/minecraft/world/level/levelgen/NoiseChunk/cellStartBlockX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209151_ net/minecraft/world/level/levelgen/NoiseChunk/cellStartBlockY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209152_ net/minecraft/world/level/levelgen/NoiseChunk/cellStartBlockZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209153_ net/minecraft/world/level/levelgen/NoiseChunk/inCellX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209154_ net/minecraft/world/level/levelgen/NoiseChunk/inCellY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209155_ net/minecraft/world/level/levelgen/NoiseChunk/inCellZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209156_ net/minecraft/world/level/levelgen/NoiseChunk/interpolationCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209157_ net/minecraft/world/level/levelgen/NoiseChunk/arrayInterpolationCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209158_ net/minecraft/world/level/levelgen/NoiseChunk/arrayIndex +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209159_ net/minecraft/world/level/levelgen/NoiseChunk/sliceFillingContextProvider +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209160_ net/minecraft/world/level/levelgen/NoiseChunk/cellCaches +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209161_ net/minecraft/world/level/levelgen/NoiseChunk/wrapped +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209162_ net/minecraft/world/level/levelgen/NoiseChunk/initialDensityNoJaggedness +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209163_ net/minecraft/world/level/levelgen/NoiseChunk/blockStateRule +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209164_ net/minecraft/world/level/levelgen/NoiseChunk/blendAlpha +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209165_ net/minecraft/world/level/levelgen/NoiseChunk/blendOffset +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209166_ net/minecraft/world/level/levelgen/NoiseChunk/beardifier +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209167_ net/minecraft/world/level/levelgen/NoiseChunk/lastBlendingDataPos +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209168_ net/minecraft/world/level/levelgen/NoiseChunk/lastBlendingOutput +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209169_ net/minecraft/world/level/levelgen/NoiseChunk/noiseSizeXZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209170_ net/minecraft/world/level/levelgen/NoiseChunk/cellWidth +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209171_ net/minecraft/world/level/levelgen/NoiseChunk/cellHeight +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209172_ net/minecraft/world/level/levelgen/NoiseChunk/interpolating +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209173_ net/minecraft/world/level/levelgen/NoiseChunk/fillingCell +FD: net/minecraft/world/level/levelgen/NoiseChunk$1/f_209249_ net/minecraft/world/level/levelgen/NoiseChunk$1/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$2/f_209257_ net/minecraft/world/level/levelgen/NoiseChunk$2/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$Marker$Type +FD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/f_209259_ net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/f_209271_ net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/f_209284_ net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/function +FD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/f_209285_ net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/lastPos2D +FD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/f_209286_ net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/lastValue +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/f_209296_ net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/f_209297_ net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/noiseFiller +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/f_209298_ net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/values +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209309_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209310_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/function +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209311_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209312_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastArrayCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209313_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastValue +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209314_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastArray +FD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/f_209325_ net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/f_209326_ net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/noiseFiller +FD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/f_209327_ net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/values +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188827_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188828_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/slice0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188829_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/slice1 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188830_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noiseFiller +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188831_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise000 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188832_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise001 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188833_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise100 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188834_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise101 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188835_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise010 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188836_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise011 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188837_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise110 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188838_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise111 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188839_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ00 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188840_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ10 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188841_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ01 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188842_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ11 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188843_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueZ0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188844_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueZ1 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188845_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/value +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_158533_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/aquifersEnabled +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_158536_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/oreVeinsEnabled +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_188869_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/LARGE_BIOMES +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_188871_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/surfaceRule +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209353_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseRouter +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209354_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/useLegacyRandomSource +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_224370_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/spawnTarget +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64430_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64431_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/CODEC +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64432_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/OVERWORLD +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64433_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64434_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/NETHER +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64435_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/END +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64436_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/CAVES +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64437_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/FLOATING_ISLANDS +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64439_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseSettings +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64440_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultBlock +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64441_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultFluid +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64444_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/seaLevel +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64445_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/disableMobGeneration +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209378_ net/minecraft/world/level/levelgen/NoiseRouter/barrierNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209379_ net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelFloodednessNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209380_ net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelSpreadNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209381_ net/minecraft/world/level/levelgen/NoiseRouter/lavaNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209384_ net/minecraft/world/level/levelgen/NoiseRouter/temperature +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209386_ net/minecraft/world/level/levelgen/NoiseRouter/continents +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209387_ net/minecraft/world/level/levelgen/NoiseRouter/erosion +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209388_ net/minecraft/world/level/levelgen/NoiseRouter/depth +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209389_ net/minecraft/world/level/levelgen/NoiseRouter/ridges +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209390_ net/minecraft/world/level/levelgen/NoiseRouter/initialDensityWithoutJaggedness +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209391_ net/minecraft/world/level/levelgen/NoiseRouter/finalDensity +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209392_ net/minecraft/world/level/levelgen/NoiseRouter/veinToggle +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209393_ net/minecraft/world/level/levelgen/NoiseRouter/veinRidged +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209394_ net/minecraft/world/level/levelgen/NoiseRouter/veinGap +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_224391_ net/minecraft/world/level/levelgen/NoiseRouter/CODEC +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_224392_ net/minecraft/world/level/levelgen/NoiseRouter/vegetation +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209437_ net/minecraft/world/level/levelgen/NoiseRouterData/PILLARS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209438_ net/minecraft/world/level/levelgen/NoiseRouterData/SPAGHETTI_2D_THICKNESS_MODULATOR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209439_ net/minecraft/world/level/levelgen/NoiseRouterData/SPAGHETTI_2D +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209440_ net/minecraft/world/level/levelgen/NoiseRouterData/ORE_THICKNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209441_ net/minecraft/world/level/levelgen/NoiseRouterData/VEININESS_FREQUENCY +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209442_ net/minecraft/world/level/levelgen/NoiseRouterData/NOODLE_SPACING_AND_STRAIGHTNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209443_ net/minecraft/world/level/levelgen/NoiseRouterData/SURFACE_DENSITY_THRESHOLD +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209444_ net/minecraft/world/level/levelgen/NoiseRouterData/BLENDING_FACTOR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209445_ net/minecraft/world/level/levelgen/NoiseRouterData/BLENDING_JAGGEDNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209446_ net/minecraft/world/level/levelgen/NoiseRouterData/ZERO +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209447_ net/minecraft/world/level/levelgen/NoiseRouterData/Y +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209448_ net/minecraft/world/level/levelgen/NoiseRouterData/SHIFT_X +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209449_ net/minecraft/world/level/levelgen/NoiseRouterData/SHIFT_Z +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209451_ net/minecraft/world/level/levelgen/NoiseRouterData/CONTINENTS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209452_ net/minecraft/world/level/levelgen/NoiseRouterData/EROSION +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209453_ net/minecraft/world/level/levelgen/NoiseRouterData/RIDGES +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209454_ net/minecraft/world/level/levelgen/NoiseRouterData/FACTOR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209455_ net/minecraft/world/level/levelgen/NoiseRouterData/DEPTH +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209456_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209457_ net/minecraft/world/level/levelgen/NoiseRouterData/CONTINENTS_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209458_ net/minecraft/world/level/levelgen/NoiseRouterData/EROSION_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209459_ net/minecraft/world/level/levelgen/NoiseRouterData/FACTOR_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209460_ net/minecraft/world/level/levelgen/NoiseRouterData/DEPTH_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209461_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209462_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE_END +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209463_ net/minecraft/world/level/levelgen/NoiseRouterData/SPAGHETTI_ROUGHNESS_FUNCTION +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209464_ net/minecraft/world/level/levelgen/NoiseRouterData/ENTRANCES +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209465_ net/minecraft/world/level/levelgen/NoiseRouterData/NOODLE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224418_ net/minecraft/world/level/levelgen/NoiseRouterData/BASE_3D_NOISE_END +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224419_ net/minecraft/world/level/levelgen/NoiseRouterData/OFFSET_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224420_ net/minecraft/world/level/levelgen/NoiseRouterData/JAGGEDNESS_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224421_ net/minecraft/world/level/levelgen/NoiseRouterData/OFFSET_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224422_ net/minecraft/world/level/levelgen/NoiseRouterData/FACTOR_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224423_ net/minecraft/world/level/levelgen/NoiseRouterData/JAGGEDNESS_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224424_ net/minecraft/world/level/levelgen/NoiseRouterData/DEPTH_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224425_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224426_ net/minecraft/world/level/levelgen/NoiseRouterData/GLOBAL_OFFSET +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224427_ net/minecraft/world/level/levelgen/NoiseRouterData/ISLAND_CHUNK_DISTANCE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224428_ net/minecraft/world/level/levelgen/NoiseRouterData/ISLAND_CHUNK_DISTANCE_SQR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224429_ net/minecraft/world/level/levelgen/NoiseRouterData/RIDGES_FOLDED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224430_ net/minecraft/world/level/levelgen/NoiseRouterData/OFFSET +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224431_ net/minecraft/world/level/levelgen/NoiseRouterData/JAGGEDNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224432_ net/minecraft/world/level/levelgen/NoiseRouterData/CHEESE_NOISE_TARGET +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224433_ net/minecraft/world/level/levelgen/NoiseRouterData/BASE_3D_NOISE_OVERWORLD +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224434_ net/minecraft/world/level/levelgen/NoiseRouterData/BASE_3D_NOISE_NETHER +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_158688_ net/minecraft/world/level/levelgen/NoiseSettings/minY +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209630_ net/minecraft/world/level/levelgen/NoiseSettings/NETHER_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209631_ net/minecraft/world/level/levelgen/NoiseSettings/END_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209632_ net/minecraft/world/level/levelgen/NoiseSettings/CAVES_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209633_ net/minecraft/world/level/levelgen/NoiseSettings/FLOATING_ISLANDS_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_224519_ net/minecraft/world/level/levelgen/NoiseSettings/OVERWORLD_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64507_ net/minecraft/world/level/levelgen/NoiseSettings/CODEC +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64508_ net/minecraft/world/level/levelgen/NoiseSettings/height +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64512_ net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeHorizontal +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64513_ net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeVertical +FD: net/minecraft/world/level/levelgen/Noises/f_189243_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_ROUGHNESS_MODULATOR +FD: net/minecraft/world/level/levelgen/Noises/f_189244_ net/minecraft/world/level/levelgen/Noises/CAVE_ENTRANCE +FD: net/minecraft/world/level/levelgen/Noises/f_189245_ net/minecraft/world/level/levelgen/Noises/CAVE_LAYER +FD: net/minecraft/world/level/levelgen/Noises/f_189246_ net/minecraft/world/level/levelgen/Noises/CAVE_CHEESE +FD: net/minecraft/world/level/levelgen/Noises/f_189247_ net/minecraft/world/level/levelgen/Noises/ORE_VEININESS +FD: net/minecraft/world/level/levelgen/Noises/f_189248_ net/minecraft/world/level/levelgen/Noises/ORE_VEIN_A +FD: net/minecraft/world/level/levelgen/Noises/f_189249_ net/minecraft/world/level/levelgen/Noises/ORE_VEIN_B +FD: net/minecraft/world/level/levelgen/Noises/f_189250_ net/minecraft/world/level/levelgen/Noises/ORE_GAP +FD: net/minecraft/world/level/levelgen/Noises/f_189251_ net/minecraft/world/level/levelgen/Noises/NOODLE +FD: net/minecraft/world/level/levelgen/Noises/f_189252_ net/minecraft/world/level/levelgen/Noises/NOODLE_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189253_ net/minecraft/world/level/levelgen/Noises/NOODLE_RIDGE_A +FD: net/minecraft/world/level/levelgen/Noises/f_189254_ net/minecraft/world/level/levelgen/Noises/NOODLE_RIDGE_B +FD: net/minecraft/world/level/levelgen/Noises/f_189255_ net/minecraft/world/level/levelgen/Noises/JAGGED +FD: net/minecraft/world/level/levelgen/Noises/f_189256_ net/minecraft/world/level/levelgen/Noises/SURFACE +FD: net/minecraft/world/level/levelgen/Noises/f_189257_ net/minecraft/world/level/levelgen/Noises/SURFACE_SECONDARY +FD: net/minecraft/world/level/levelgen/Noises/f_189258_ net/minecraft/world/level/levelgen/Noises/CLAY_BANDS_OFFSET +FD: net/minecraft/world/level/levelgen/Noises/f_189259_ net/minecraft/world/level/levelgen/Noises/BADLANDS_PILLAR +FD: net/minecraft/world/level/levelgen/Noises/f_189260_ net/minecraft/world/level/levelgen/Noises/BADLANDS_PILLAR_ROOF +FD: net/minecraft/world/level/levelgen/Noises/f_189261_ net/minecraft/world/level/levelgen/Noises/BADLANDS_SURFACE +FD: net/minecraft/world/level/levelgen/Noises/f_189262_ net/minecraft/world/level/levelgen/Noises/ICEBERG_PILLAR +FD: net/minecraft/world/level/levelgen/Noises/f_189263_ net/minecraft/world/level/levelgen/Noises/ICEBERG_PILLAR_ROOF +FD: net/minecraft/world/level/levelgen/Noises/f_189264_ net/minecraft/world/level/levelgen/Noises/ICEBERG_SURFACE +FD: net/minecraft/world/level/levelgen/Noises/f_189265_ net/minecraft/world/level/levelgen/Noises/SWAMP +FD: net/minecraft/world/level/levelgen/Noises/f_189266_ net/minecraft/world/level/levelgen/Noises/CALCITE +FD: net/minecraft/world/level/levelgen/Noises/f_189267_ net/minecraft/world/level/levelgen/Noises/GRAVEL +FD: net/minecraft/world/level/levelgen/Noises/f_189268_ net/minecraft/world/level/levelgen/Noises/POWDER_SNOW +FD: net/minecraft/world/level/levelgen/Noises/f_189269_ net/minecraft/world/level/levelgen/Noises/TEMPERATURE +FD: net/minecraft/world/level/levelgen/Noises/f_189270_ net/minecraft/world/level/levelgen/Noises/PACKED_ICE +FD: net/minecraft/world/level/levelgen/Noises/f_189271_ net/minecraft/world/level/levelgen/Noises/ICE +FD: net/minecraft/world/level/levelgen/Noises/f_189272_ net/minecraft/world/level/levelgen/Noises/SOUL_SAND_LAYER +FD: net/minecraft/world/level/levelgen/Noises/f_189273_ net/minecraft/world/level/levelgen/Noises/GRAVEL_LAYER +FD: net/minecraft/world/level/levelgen/Noises/f_189274_ net/minecraft/world/level/levelgen/Noises/PATCH +FD: net/minecraft/world/level/levelgen/Noises/f_189275_ net/minecraft/world/level/levelgen/Noises/NETHERRACK +FD: net/minecraft/world/level/levelgen/Noises/f_189276_ net/minecraft/world/level/levelgen/Noises/NETHER_WART +FD: net/minecraft/world/level/levelgen/Noises/f_189277_ net/minecraft/world/level/levelgen/Noises/NETHER_STATE_SELECTOR +FD: net/minecraft/world/level/levelgen/Noises/f_189278_ net/minecraft/world/level/levelgen/Noises/VEGETATION +FD: net/minecraft/world/level/levelgen/Noises/f_189279_ net/minecraft/world/level/levelgen/Noises/CONTINENTALNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189280_ net/minecraft/world/level/levelgen/Noises/EROSION +FD: net/minecraft/world/level/levelgen/Noises/f_189281_ net/minecraft/world/level/levelgen/Noises/TEMPERATURE_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189282_ net/minecraft/world/level/levelgen/Noises/VEGETATION_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189283_ net/minecraft/world/level/levelgen/Noises/CONTINENTALNESS_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189284_ net/minecraft/world/level/levelgen/Noises/EROSION_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189285_ net/minecraft/world/level/levelgen/Noises/RIDGE +FD: net/minecraft/world/level/levelgen/Noises/f_189286_ net/minecraft/world/level/levelgen/Noises/SHIFT +FD: net/minecraft/world/level/levelgen/Noises/f_189287_ net/minecraft/world/level/levelgen/Noises/AQUIFER_BARRIER +FD: net/minecraft/world/level/levelgen/Noises/f_189288_ net/minecraft/world/level/levelgen/Noises/AQUIFER_FLUID_LEVEL_FLOODEDNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189289_ net/minecraft/world/level/levelgen/Noises/AQUIFER_LAVA +FD: net/minecraft/world/level/levelgen/Noises/f_189290_ net/minecraft/world/level/levelgen/Noises/AQUIFER_FLUID_LEVEL_SPREAD +FD: net/minecraft/world/level/levelgen/Noises/f_189291_ net/minecraft/world/level/levelgen/Noises/PILLAR +FD: net/minecraft/world/level/levelgen/Noises/f_189292_ net/minecraft/world/level/levelgen/Noises/PILLAR_RARENESS +FD: net/minecraft/world/level/levelgen/Noises/f_189293_ net/minecraft/world/level/levelgen/Noises/PILLAR_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189294_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D +FD: net/minecraft/world/level/levelgen/Noises/f_189295_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D_ELEVATION +FD: net/minecraft/world/level/levelgen/Noises/f_189296_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D_MODULATOR +FD: net/minecraft/world/level/levelgen/Noises/f_189297_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189298_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_1 +FD: net/minecraft/world/level/levelgen/Noises/f_189299_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_2 +FD: net/minecraft/world/level/levelgen/Noises/f_189300_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_RARITY +FD: net/minecraft/world/level/levelgen/Noises/f_189301_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189302_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_ROUGHNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209650_ net/minecraft/world/level/levelgen/OreVeinifier/VEININESS_THRESHOLD +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209651_ net/minecraft/world/level/levelgen/OreVeinifier/EDGE_ROUNDOFF_BEGIN +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209652_ net/minecraft/world/level/levelgen/OreVeinifier/MAX_EDGE_ROUNDOFF +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209653_ net/minecraft/world/level/levelgen/OreVeinifier/VEIN_SOLIDNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209654_ net/minecraft/world/level/levelgen/OreVeinifier/MIN_RICHNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209655_ net/minecraft/world/level/levelgen/OreVeinifier/MAX_RICHNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209656_ net/minecraft/world/level/levelgen/OreVeinifier/MAX_RICHNESS_THRESHOLD +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209657_ net/minecraft/world/level/levelgen/OreVeinifier/CHANCE_OF_RAW_ORE_BLOCK +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209658_ net/minecraft/world/level/levelgen/OreVeinifier/SKIP_ORE_IF_GAP_NOISE_IS_BELOW +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/$VALUES net/minecraft/world/level/levelgen/OreVeinifier$VeinType/$VALUES +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/COPPER net/minecraft/world/level/levelgen/OreVeinifier$VeinType/COPPER +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/IRON net/minecraft/world/level/levelgen/OreVeinifier$VeinType/IRON +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209674_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/minY +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209675_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/maxY +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209676_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ore +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209677_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/rawOreBlock +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209678_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/filler +FD: net/minecraft/world/level/levelgen/PatrolSpawner/f_64562_ net/minecraft/world/level/levelgen/PatrolSpawner/nextTick +FD: net/minecraft/world/level/levelgen/PhantomSpawner/f_64573_ net/minecraft/world/level/levelgen/PhantomSpawner/nextTick +FD: net/minecraft/world/level/levelgen/RandomState/f_224545_ net/minecraft/world/level/levelgen/RandomState/random +FD: net/minecraft/world/level/levelgen/RandomState/f_224547_ net/minecraft/world/level/levelgen/RandomState/noises +FD: net/minecraft/world/level/levelgen/RandomState/f_224548_ net/minecraft/world/level/levelgen/RandomState/router +FD: net/minecraft/world/level/levelgen/RandomState/f_224549_ net/minecraft/world/level/levelgen/RandomState/sampler +FD: net/minecraft/world/level/levelgen/RandomState/f_224550_ net/minecraft/world/level/levelgen/RandomState/surfaceSystem +FD: net/minecraft/world/level/levelgen/RandomState/f_224551_ net/minecraft/world/level/levelgen/RandomState/aquiferRandom +FD: net/minecraft/world/level/levelgen/RandomState/f_224552_ net/minecraft/world/level/levelgen/RandomState/oreRandom +FD: net/minecraft/world/level/levelgen/RandomState/f_224553_ net/minecraft/world/level/levelgen/RandomState/noiseIntances +FD: net/minecraft/world/level/levelgen/RandomState/f_224554_ net/minecraft/world/level/levelgen/RandomState/positionalRandoms +FD: net/minecraft/world/level/levelgen/RandomState$1/f_244167_ net/minecraft/world/level/levelgen/RandomState$1/this$0 +FD: net/minecraft/world/level/levelgen/RandomState$1/f_244328_ net/minecraft/world/level/levelgen/RandomState$1/wrapped +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224583_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/val$seed +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224584_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/val$useLegacyInit +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224585_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/this$0 +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224586_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/wrapped +FD: net/minecraft/world/level/levelgen/RandomSupport/f_189323_ net/minecraft/world/level/levelgen/RandomSupport/GOLDEN_RATIO_64 +FD: net/minecraft/world/level/levelgen/RandomSupport/f_189324_ net/minecraft/world/level/levelgen/RandomSupport/SILVER_RATIO_64 +FD: net/minecraft/world/level/levelgen/RandomSupport/f_189325_ net/minecraft/world/level/levelgen/RandomSupport/SEED_UNIQUIFIER +FD: net/minecraft/world/level/levelgen/RandomSupport/f_287788_ net/minecraft/world/level/levelgen/RandomSupport/MD5_128 +FD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189335_ net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedLo +FD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189336_ net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedHi +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189346_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/MODULUS_BITS +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189347_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/MODULUS_MASK +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189348_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/MULTIPLIER +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189349_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/INCREMENT +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189350_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/seed +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189351_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189375_ net/minecraft/world/level/levelgen/SurfaceRules/ON_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189376_ net/minecraft/world/level/levelgen/SurfaceRules/UNDER_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189377_ net/minecraft/world/level/levelgen/SurfaceRules/ON_CEILING +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189378_ net/minecraft/world/level/levelgen/SurfaceRules/UNDER_CEILING +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_202169_ net/minecraft/world/level/levelgen/SurfaceRules/DEEP_UNDER_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_202170_ net/minecraft/world/level/levelgen/SurfaceRules/VERY_DEEP_UNDER_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/f_189429_ net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/f_189474_ net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/f_189489_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/biomes +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/f_189490_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/f_204618_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/biomeNameTest +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/f_189504_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/f_189506_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189512_ net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/resultState +FD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189513_ net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/rule +FD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189514_ net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/f_189532_ net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189535_ net/minecraft/world/level/levelgen/SurfaceRules$Context/system +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189536_ net/minecraft/world/level/levelgen/SurfaceRules$Context/temperature +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189537_ net/minecraft/world/level/levelgen/SurfaceRules$Context/steep +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189538_ net/minecraft/world/level/levelgen/SurfaceRules$Context/hole +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189539_ net/minecraft/world/level/levelgen/SurfaceRules$Context/abovePreliminarySurface +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189540_ net/minecraft/world/level/levelgen/SurfaceRules$Context/chunk +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189541_ net/minecraft/world/level/levelgen/SurfaceRules$Context/noiseChunk +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189542_ net/minecraft/world/level/levelgen/SurfaceRules$Context/biomeGetter +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189544_ net/minecraft/world/level/levelgen/SurfaceRules$Context/context +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189545_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastUpdateXZ +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189546_ net/minecraft/world/level/levelgen/SurfaceRules$Context/blockX +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189547_ net/minecraft/world/level/levelgen/SurfaceRules$Context/blockZ +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189548_ net/minecraft/world/level/levelgen/SurfaceRules$Context/surfaceDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189549_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastSurfaceDepth2Update +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189551_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastMinSurfaceLevelUpdate +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189552_ net/minecraft/world/level/levelgen/SurfaceRules$Context/minSurfaceLevel +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189553_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastUpdateY +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189554_ net/minecraft/world/level/levelgen/SurfaceRules$Context/pos +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189555_ net/minecraft/world/level/levelgen/SurfaceRules$Context/biome +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189557_ net/minecraft/world/level/levelgen/SurfaceRules$Context/blockY +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189558_ net/minecraft/world/level/levelgen/SurfaceRules$Context/waterHeight +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189559_ net/minecraft/world/level/levelgen/SurfaceRules$Context/stoneDepthBelow +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189560_ net/minecraft/world/level/levelgen/SurfaceRules$Context/stoneDepthAbove +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198274_ net/minecraft/world/level/levelgen/SurfaceRules$Context/HOW_FAR_BELOW_PRELIMINARY_SURFACE_LEVEL_TO_BUILD_SURFACE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198275_ net/minecraft/world/level/levelgen/SurfaceRules$Context/SURFACE_CELL_BITS +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198276_ net/minecraft/world/level/levelgen/SurfaceRules$Context/SURFACE_CELL_SIZE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198277_ net/minecraft/world/level/levelgen/SurfaceRules$Context/SURFACE_CELL_MASK +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198278_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastPreliminarySurfaceCellOrigin +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198279_ net/minecraft/world/level/levelgen/SurfaceRules$Context/preliminarySurfaceCache +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_202180_ net/minecraft/world/level/levelgen/SurfaceRules$Context/surfaceSecondary +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_224614_ net/minecraft/world/level/levelgen/SurfaceRules$Context/randomState +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/f_189586_ net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Hole/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Hole/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/f_189600_ net/minecraft/world/level/levelgen/SurfaceRules$Hole/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/f_189615_ net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/lastUpdate +FD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/f_189616_ net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/context +FD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/f_189617_ net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/result +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189627_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/noise +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189628_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/minThreshold +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189629_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/maxThreshold +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189630_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/f_189650_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/f_189651_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/val$noise +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/f_189652_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/f_189658_ net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/target +FD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/f_189667_ net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/target +FD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/f_189668_ net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/f_189682_ net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/f_189685_ net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/rules +FD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/f_189697_ net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/sequence +FD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/f_189698_ net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/f_189712_ net/minecraft/world/level/levelgen/SurfaceRules$StateRule/state +FD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Steep/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Steep/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/f_189725_ net/minecraft/world/level/levelgen/SurfaceRules$Steep/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189740_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/offset +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189741_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/addSurfaceDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189743_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/surfaceType +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189744_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_202182_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/secondaryDepthRange +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/f_189766_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/f_189767_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/val$ceiling +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/f_189768_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Temperature/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Temperature/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/f_189778_ net/minecraft/world/level/levelgen/SurfaceRules$Temperature/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189793_ net/minecraft/world/level/levelgen/SurfaceRules$TestRule/condition +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189794_ net/minecraft/world/level/levelgen/SurfaceRules$TestRule/followup +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189808_ net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ifTrue +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189809_ net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/thenRun +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189810_ net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189828_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/randomName +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189829_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/trueAtAndBelow +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189830_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/falseAtAndAbove +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189831_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189851_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189852_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$trueAtAndBelow +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189853_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$falseAtAndAbove +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189854_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$randomFactory +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189855_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189863_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/offset +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189864_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/surfaceDepthMultiplier +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189865_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/addStoneDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189866_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/f_189886_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/f_189887_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189444_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/anchor +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189445_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/surfaceDepthMultiplier +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189446_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/addStoneDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189447_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/f_189467_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/f_189468_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189892_ net/minecraft/world/level/levelgen/SurfaceSystem/surfaceSecondaryNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189894_ net/minecraft/world/level/levelgen/SurfaceSystem/WHITE_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189895_ net/minecraft/world/level/levelgen/SurfaceSystem/ORANGE_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189896_ net/minecraft/world/level/levelgen/SurfaceSystem/TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189897_ net/minecraft/world/level/levelgen/SurfaceSystem/YELLOW_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189898_ net/minecraft/world/level/levelgen/SurfaceSystem/BROWN_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189899_ net/minecraft/world/level/levelgen/SurfaceSystem/RED_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189900_ net/minecraft/world/level/levelgen/SurfaceSystem/LIGHT_GRAY_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189901_ net/minecraft/world/level/levelgen/SurfaceSystem/PACKED_ICE +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189902_ net/minecraft/world/level/levelgen/SurfaceSystem/SNOW_BLOCK +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189904_ net/minecraft/world/level/levelgen/SurfaceSystem/defaultBlock +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189905_ net/minecraft/world/level/levelgen/SurfaceSystem/seaLevel +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189906_ net/minecraft/world/level/levelgen/SurfaceSystem/clayBands +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189907_ net/minecraft/world/level/levelgen/SurfaceSystem/clayBandsOffsetNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189908_ net/minecraft/world/level/levelgen/SurfaceSystem/badlandsPillarNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189909_ net/minecraft/world/level/levelgen/SurfaceSystem/badlandsPillarRoofNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189910_ net/minecraft/world/level/levelgen/SurfaceSystem/badlandsSurfaceNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189911_ net/minecraft/world/level/levelgen/SurfaceSystem/icebergPillarNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189912_ net/minecraft/world/level/levelgen/SurfaceSystem/icebergPillarRoofNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189913_ net/minecraft/world/level/levelgen/SurfaceSystem/icebergSurfaceNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189918_ net/minecraft/world/level/levelgen/SurfaceSystem/surfaceNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_224635_ net/minecraft/world/level/levelgen/SurfaceSystem/noiseRandom +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189996_ net/minecraft/world/level/levelgen/SurfaceSystem$1/val$protoChunk +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189997_ net/minecraft/world/level/levelgen/SurfaceSystem$1/val$columnPos +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189998_ net/minecraft/world/level/levelgen/SurfaceSystem$1/val$chunkPos +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189999_ net/minecraft/world/level/levelgen/SurfaceSystem$1/this$0 +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224657_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/MODULUS_BITS +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224658_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/MODULUS_MASK +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224659_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/MULTIPLIER +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224660_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/INCREMENT +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224661_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/seed +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224662_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/VerticalAnchor/f_158914_ net/minecraft/world/level/levelgen/VerticalAnchor/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor/f_158915_ net/minecraft/world/level/levelgen/VerticalAnchor/BOTTOM +FD: net/minecraft/world/level/levelgen/VerticalAnchor/f_158916_ net/minecraft/world/level/levelgen/VerticalAnchor/TOP +FD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/f_158937_ net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/f_209699_ net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/offset +FD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/f_158944_ net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/f_209704_ net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/y +FD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/f_158951_ net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/f_209709_ net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/offset +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243726_ net/minecraft/world/level/levelgen/WorldDimensions/BUILTIN_ORDER +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243810_ net/minecraft/world/level/levelgen/WorldDimensions/CODEC +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243847_ net/minecraft/world/level/levelgen/WorldDimensions/VANILLA_DIMENSION_COUNT +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243948_ net/minecraft/world/level/levelgen/WorldDimensions/dimensions +FD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_243758_ net/minecraft/world/level/levelgen/WorldDimensions$1Entry/value +FD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_244236_ net/minecraft/world/level/levelgen/WorldDimensions$1Entry/key +FD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244049_ net/minecraft/world/level/levelgen/WorldDimensions$Complete/dimensions +FD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244634_ net/minecraft/world/level/levelgen/WorldDimensions$Complete/specialWorldProperty +FD: net/minecraft/world/level/levelgen/WorldGenSettings/f_243992_ net/minecraft/world/level/levelgen/WorldGenSettings/options +FD: net/minecraft/world/level/levelgen/WorldGenSettings/f_64600_ net/minecraft/world/level/levelgen/WorldGenSettings/CODEC +FD: net/minecraft/world/level/levelgen/WorldGenSettings/f_64605_ net/minecraft/world/level/levelgen/WorldGenSettings/dimensions +FD: net/minecraft/world/level/levelgen/WorldGenerationContext/f_182504_ net/minecraft/world/level/levelgen/WorldGenerationContext/minY +FD: net/minecraft/world/level/levelgen/WorldGenerationContext/f_182505_ net/minecraft/world/level/levelgen/WorldGenerationContext/height +FD: net/minecraft/world/level/levelgen/WorldOptions/f_243816_ net/minecraft/world/level/levelgen/WorldOptions/seed +FD: net/minecraft/world/level/levelgen/WorldOptions/f_243984_ net/minecraft/world/level/levelgen/WorldOptions/legacyCustomOptions +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244001_ net/minecraft/world/level/levelgen/WorldOptions/generateStructures +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244225_ net/minecraft/world/level/levelgen/WorldOptions/DEMO_OPTIONS +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244615_ net/minecraft/world/level/levelgen/WorldOptions/generateBonusChest +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244622_ net/minecraft/world/level/levelgen/WorldOptions/CODEC +FD: net/minecraft/world/level/levelgen/WorldgenRandom/f_190054_ net/minecraft/world/level/levelgen/WorldgenRandom/randomSource +FD: net/minecraft/world/level/levelgen/WorldgenRandom/f_64676_ net/minecraft/world/level/levelgen/WorldgenRandom/count +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/$VALUES net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/$VALUES +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/LEGACY net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/LEGACY +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/XOROSHIRO net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/XOROSHIRO +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/f_190076_ net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/constructor +FD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/f_190089_ net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/seedLo +FD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/f_190090_ net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/seedHi +FD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/f_286992_ net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/CODEC +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190097_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/FLOAT_UNIT +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190098_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/DOUBLE_UNIT +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190099_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/randomNumberGenerator +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190100_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_286948_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/CODEC +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/f_190123_ net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/seedLo +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/f_190124_ net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/seedHi +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190137_ net/minecraft/world/level/levelgen/blending/Blender/EMPTY +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190138_ net/minecraft/world/level/levelgen/blending/Blender/SHIFT_NOISE +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190139_ net/minecraft/world/level/levelgen/blending/Blender/HEIGHT_BLENDING_RANGE_CELLS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190140_ net/minecraft/world/level/levelgen/blending/Blender/HEIGHT_BLENDING_RANGE_CHUNKS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190141_ net/minecraft/world/level/levelgen/blending/Blender/DENSITY_BLENDING_RANGE_CELLS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190142_ net/minecraft/world/level/levelgen/blending/Blender/DENSITY_BLENDING_RANGE_CHUNKS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_197017_ net/minecraft/world/level/levelgen/blending/Blender/OLD_CHUNK_XZ_RADIUS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_224696_ net/minecraft/world/level/levelgen/blending/Blender/heightAndBiomeBlendingData +FD: net/minecraft/world/level/levelgen/blending/Blender/f_224697_ net/minecraft/world/level/levelgen/blending/Blender/densityBlendingData +FD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209729_ net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/alpha +FD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209730_ net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/blendingOffset +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190252_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_HEIGHT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190253_ net/minecraft/world/level/levelgen/blending/BlendingData/NO_VALUE +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190254_ net/minecraft/world/level/levelgen/blending/BlendingData/CODEC +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190255_ net/minecraft/world/level/levelgen/blending/BlendingData/BLENDING_DENSITY_FACTOR +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190257_ net/minecraft/world/level/levelgen/blending/BlendingData/CELLS_PER_SECTION_Y +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190258_ net/minecraft/world/level/levelgen/blending/BlendingData/QUARTS_PER_SECTION +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190259_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_HORIZONTAL_MAX_INDEX_INSIDE +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190260_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_HORIZONTAL_MAX_INDEX_OUTSIDE +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190261_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_COLUMN_INSIDE_COUNT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190262_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_COLUMN_OUTSIDE_COUNT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190263_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_COLUMN_COUNT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190265_ net/minecraft/world/level/levelgen/blending/BlendingData/SURFACE_BLOCKS +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190267_ net/minecraft/world/level/levelgen/blending/BlendingData/hasCalculatedData +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190269_ net/minecraft/world/level/levelgen/blending/BlendingData/heights +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190270_ net/minecraft/world/level/levelgen/blending/BlendingData/densities +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190272_ net/minecraft/world/level/levelgen/blending/BlendingData/DOUBLE_ARRAY_CODEC +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_198290_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_WIDTH +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_198291_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_RATIO +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_202276_ net/minecraft/world/level/levelgen/blending/BlendingData/biomes +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_224736_ net/minecraft/world/level/levelgen/blending/BlendingData/SOLID_DENSITY +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_224737_ net/minecraft/world/level/levelgen/blending/BlendingData/AIR_DENSITY +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_224738_ net/minecraft/world/level/levelgen/blending/BlendingData/areaWithOldGeneration +FD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/f_190370_ net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/f_190381_ net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/f_190392_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/f_190393_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ONLY_IN_AIR_PREDICATE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/f_190394_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ONLY_IN_AIR_OR_WATER_PREDICATE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190436_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/MATCHING_BLOCKS +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190437_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/MATCHING_FLUIDS +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190438_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/SOLID +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190439_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/REPLACEABLE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190440_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/WOULD_SURVIVE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190441_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/INSIDE_WORLD_BOUNDS +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190442_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ANY_OF +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190443_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ALL_OF +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190444_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/NOT +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190445_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/TRUE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_198313_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/MATCHING_BLOCK_TAG +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_198314_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/HAS_STURDY_FACE +FD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/f_190453_ net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/predicates +FD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/f_198315_ net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/f_198316_ net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/f_198317_ net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/direction +FD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/f_190463_ net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/f_190464_ net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/f_198335_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/tag +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/f_198336_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/f_190479_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/f_190480_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/blocks +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/f_190492_ net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/f_190493_ net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/fluids +FD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/f_190505_ net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/f_190506_ net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/predicate +FD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/f_190521_ net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/f_190530_ net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/f_190539_ net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/f_190553_ net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/INSTANCE +FD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/f_190554_ net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/f_190565_ net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/f_190566_ net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/f_190567_ net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/state +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/f_158966_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/f_158967_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/verticalRotation +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/f_158968_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/shape +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158991_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158992_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/distanceFactor +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158993_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/thickness +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158994_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/widthSmoothness +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158995_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/horizontalRadiusFactor +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158996_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/verticalRadiusDefaultFactor +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158997_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/verticalRadiusCenterFactor +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159087_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159088_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/y +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159089_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/yScale +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159090_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/lavaLevel +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159092_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/debugSettings +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_224830_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/replaceable +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159114_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/DEFAULT +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159115_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/CODEC +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159116_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/debugMode +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159117_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/airState +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159118_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/waterState +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159119_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/lavaState +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159120_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/barrierState +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_190639_ net/minecraft/world/level/levelgen/carver/CarvingContext/registryAccess +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_190640_ net/minecraft/world/level/levelgen/carver/CarvingContext/noiseChunk +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_224842_ net/minecraft/world/level/levelgen/carver/CarvingContext/randomState +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_224843_ net/minecraft/world/level/levelgen/carver/CarvingContext/surfaceRule +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159154_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159155_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/horizontalRadiusMultiplier +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159156_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/verticalRadiusMultiplier +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159157_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/floorLevel +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64846_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64847_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/CODEC +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64848_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/LIST_CODEC +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64849_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/worldCarver +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64850_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/config +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64974_ net/minecraft/world/level/levelgen/carver/WorldCarver/CAVE +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64975_ net/minecraft/world/level/levelgen/carver/WorldCarver/NETHER_CAVE +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64976_ net/minecraft/world/level/levelgen/carver/WorldCarver/CANYON +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64979_ net/minecraft/world/level/levelgen/carver/WorldCarver/AIR +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64980_ net/minecraft/world/level/levelgen/carver/WorldCarver/CAVE_AIR +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64981_ net/minecraft/world/level/levelgen/carver/WorldCarver/WATER +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64982_ net/minecraft/world/level/levelgen/carver/WorldCarver/LAVA +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64984_ net/minecraft/world/level/levelgen/carver/WorldCarver/liquids +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64986_ net/minecraft/world/level/levelgen/carver/WorldCarver/configuredCodec +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65131_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_TRUNK +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65132_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_FINAL_LARGE +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65133_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_TOP_LARGE +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65134_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_TOP_SMALL +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159439_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/CLUSTERED_REACH +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159440_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/CLUSTERED_SIZE +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159441_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/UNCLUSTERED_REACH +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159442_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/UNCLUSTERED_SIZE +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_65150_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/CANNOT_PLACE_ON +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65373_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65374_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/CODEC +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65375_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/LIST_CODEC +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65377_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/feature +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65378_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/config +FD: net/minecraft/world/level/levelgen/feature/DeltaFeature/f_159546_ net/minecraft/world/level/levelgen/feature/DeltaFeature/RIM_SPAWN_CHANCE +FD: net/minecraft/world/level/levelgen/feature/DeltaFeature/f_65546_ net/minecraft/world/level/levelgen/feature/DeltaFeature/CANNOT_REPLACE +FD: net/minecraft/world/level/levelgen/feature/DeltaFeature/f_65547_ net/minecraft/world/level/levelgen/feature/DeltaFeature/DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_276683_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/sand +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65593_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/IS_SAND +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65594_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/sandSlab +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65595_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/sandstone +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65596_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/water +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159718_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/PODIUM_RADIUS +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159719_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/PODIUM_PILLAR_HEIGHT +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159720_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/RIM_RADIUS +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159721_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/CORNER_ROUNDING +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_65714_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/END_PODIUM_LOCATION +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_65715_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/active +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159724_ net/minecraft/world/level/levelgen/feature/Feature/ROOT_SYSTEM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159726_ net/minecraft/world/level/levelgen/feature/Feature/UNDERWATER_MAGMA +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159727_ net/minecraft/world/level/levelgen/feature/Feature/SCATTERED_ORE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159728_ net/minecraft/world/level/levelgen/feature/Feature/GEODE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159729_ net/minecraft/world/level/levelgen/feature/Feature/DRIPSTONE_CLUSTER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159730_ net/minecraft/world/level/levelgen/feature/Feature/LARGE_DRIPSTONE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159732_ net/minecraft/world/level/levelgen/feature/Feature/REPLACE_SINGLE_BLOCK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159734_ net/minecraft/world/level/levelgen/feature/Feature/VEGETATION_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159735_ net/minecraft/world/level/levelgen/feature/Feature/WATERLOGGED_VEGETATION_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_190874_ net/minecraft/world/level/levelgen/feature/Feature/POINTED_DRIPSTONE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_190875_ net/minecraft/world/level/levelgen/feature/Feature/BLOCK_COLUMN +FD: net/minecraft/world/level/levelgen/feature/Feature/f_225026_ net/minecraft/world/level/levelgen/feature/Feature/MULTIFACE_GROWTH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_225027_ net/minecraft/world/level/levelgen/feature/Feature/SCULK_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65731_ net/minecraft/world/level/levelgen/feature/Feature/ORE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65732_ net/minecraft/world/level/levelgen/feature/Feature/END_SPIKE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65733_ net/minecraft/world/level/levelgen/feature/Feature/END_ISLAND +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65734_ net/minecraft/world/level/levelgen/feature/Feature/END_GATEWAY +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65735_ net/minecraft/world/level/levelgen/feature/Feature/SEAGRASS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65736_ net/minecraft/world/level/levelgen/feature/Feature/KELP +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65737_ net/minecraft/world/level/levelgen/feature/Feature/CORAL_TREE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65738_ net/minecraft/world/level/levelgen/feature/Feature/CORAL_MUSHROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65739_ net/minecraft/world/level/levelgen/feature/Feature/CORAL_CLAW +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65740_ net/minecraft/world/level/levelgen/feature/Feature/SEA_PICKLE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65741_ net/minecraft/world/level/levelgen/feature/Feature/SIMPLE_BLOCK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65742_ net/minecraft/world/level/levelgen/feature/Feature/BAMBOO +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65743_ net/minecraft/world/level/levelgen/feature/Feature/HUGE_FUNGUS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65744_ net/minecraft/world/level/levelgen/feature/Feature/NETHER_FOREST_VEGETATION +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65745_ net/minecraft/world/level/levelgen/feature/Feature/WEEPING_VINES +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65746_ net/minecraft/world/level/levelgen/feature/Feature/TWISTING_VINES +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65747_ net/minecraft/world/level/levelgen/feature/Feature/BASALT_COLUMNS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65748_ net/minecraft/world/level/levelgen/feature/Feature/DELTA_FEATURE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65749_ net/minecraft/world/level/levelgen/feature/Feature/REPLACE_BLOBS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65750_ net/minecraft/world/level/levelgen/feature/Feature/FILL_LAYER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65751_ net/minecraft/world/level/levelgen/feature/Feature/BONUS_CHEST +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65752_ net/minecraft/world/level/levelgen/feature/Feature/BASALT_PILLAR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65754_ net/minecraft/world/level/levelgen/feature/Feature/RANDOM_SELECTOR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65755_ net/minecraft/world/level/levelgen/feature/Feature/SIMPLE_RANDOM_SELECTOR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65756_ net/minecraft/world/level/levelgen/feature/Feature/RANDOM_BOOLEAN_SELECTOR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65757_ net/minecraft/world/level/levelgen/feature/Feature/configuredCodec +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65759_ net/minecraft/world/level/levelgen/feature/Feature/NO_OP +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65760_ net/minecraft/world/level/levelgen/feature/Feature/TREE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65761_ net/minecraft/world/level/levelgen/feature/Feature/FLOWER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65762_ net/minecraft/world/level/levelgen/feature/Feature/NO_BONEMEAL_FLOWER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65763_ net/minecraft/world/level/levelgen/feature/Feature/RANDOM_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65764_ net/minecraft/world/level/levelgen/feature/Feature/BLOCK_PILE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65765_ net/minecraft/world/level/levelgen/feature/Feature/SPRING +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65766_ net/minecraft/world/level/levelgen/feature/Feature/CHORUS_PLANT +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65768_ net/minecraft/world/level/levelgen/feature/Feature/VOID_START_PLATFORM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65769_ net/minecraft/world/level/levelgen/feature/Feature/DESERT_WELL +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65770_ net/minecraft/world/level/levelgen/feature/Feature/FOSSIL +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65771_ net/minecraft/world/level/levelgen/feature/Feature/HUGE_RED_MUSHROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65772_ net/minecraft/world/level/levelgen/feature/Feature/HUGE_BROWN_MUSHROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65773_ net/minecraft/world/level/levelgen/feature/Feature/ICE_SPIKE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65774_ net/minecraft/world/level/levelgen/feature/Feature/GLOWSTONE_BLOB +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65775_ net/minecraft/world/level/levelgen/feature/Feature/FREEZE_TOP_LAYER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65776_ net/minecraft/world/level/levelgen/feature/Feature/VINES +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65777_ net/minecraft/world/level/levelgen/feature/Feature/MONSTER_ROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65778_ net/minecraft/world/level/levelgen/feature/Feature/BLUE_ICE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65779_ net/minecraft/world/level/levelgen/feature/Feature/ICEBERG +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65780_ net/minecraft/world/level/levelgen/feature/Feature/FOREST_ROCK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65781_ net/minecraft/world/level/levelgen/feature/Feature/DISK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65783_ net/minecraft/world/level/levelgen/feature/Feature/LAKE +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/f_190876_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker/LOGGER +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/f_190877_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker/data +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190905_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/feature +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190906_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/topFeature +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190916_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/featureData +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190917_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/chunksWithFeatures +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159763_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/level +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159764_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/chunkGenerator +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159765_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/random +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159766_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/origin +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159767_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/config +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_190927_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/topFeature +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159796_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159797_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/fossilStructures +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159798_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/overlayStructures +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159799_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/fossilProcessors +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159800_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/overlayProcessors +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159801_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/maxEmptyCornersAllowed +FD: net/minecraft/world/level/levelgen/feature/GeodeFeature/f_159831_ net/minecraft/world/level/levelgen/feature/GeodeFeature/DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_283781_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/replaceableBlocks +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65892_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65897_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/validBaseState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65898_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/stemState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65899_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/hatState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65900_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/decorState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65901_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/planted +FD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/f_159876_ net/minecraft/world/level/levelgen/feature/HugeFungusFeature/HUGE_PROBABILITY +FD: net/minecraft/world/level/levelgen/feature/LakeFeature/f_66256_ net/minecraft/world/level/levelgen/feature/LakeFeature/AIR +FD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190953_ net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/CODEC +FD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190954_ net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/fluid +FD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190955_ net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/barrier +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159975_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/root +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159976_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/pointingUp +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159977_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/radius +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159978_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/bluntness +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159979_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/scale +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/f_160000_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/originY +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/f_160001_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/windSpeed +FD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/f_66340_ net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/LOGGER +FD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/f_66341_ net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/MOBS +FD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/f_66342_ net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/AIR +FD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/f_160302_ net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/MAX_DIST_FROM_ORIGIN +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature/f_160369_ net/minecraft/world/level/levelgen/feature/SpikeFeature/NUMBER_OF_SPIKES +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature/f_160370_ net/minecraft/world/level/levelgen/feature/SpikeFeature/SPIKE_DISTANCE +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature/f_66849_ net/minecraft/world/level/levelgen/feature/SpikeFeature/SPIKE_CACHE +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66872_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/CODEC +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66873_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/centerX +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66874_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/centerZ +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66875_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/radius +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66876_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/height +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66877_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/guarded +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66878_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/topBoundingBox +FD: net/minecraft/world/level/levelgen/feature/TreeFeature/f_160509_ net/minecraft/world/level/levelgen/feature/TreeFeature/BLOCK_UPDATE_FLAGS +FD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/f_271236_ net/minecraft/world/level/levelgen/feature/TreeFeature$1/this$0 +FD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/f_271346_ net/minecraft/world/level/levelgen/feature/TreeFeature$1/val$foliage +FD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/f_271398_ net/minecraft/world/level/levelgen/feature/TreeFeature$1/val$level +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_160629_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_OFFSET +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_160630_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_RADIUS +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_160631_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_RADIUS_CHUNKS +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_67351_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_ORIGIN_CHUNK +FD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/f_67372_ net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/f_191171_ net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/CODEC +FD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/f_191172_ net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/feature +FD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/f_191173_ net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/chance +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191206_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191207_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/layers +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191208_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/direction +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191209_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/allowedPlacement +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191210_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/prioritizeTip +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191233_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191234_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/height +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191235_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/state +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/f_67539_ net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/f_67540_ net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/stateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/f_67546_ net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/f_67547_ net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/state +FD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/f_67553_ net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/f_67554_ net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/reach +FD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/f_67555_ net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/height +FD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/f_67568_ net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/f_67569_ net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/count +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67593_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67594_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/contents +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67595_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rim +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67596_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/size +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67597_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rimSize +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225372_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/stateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225373_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/target +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67618_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67620_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/radius +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67621_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/halfHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160758_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160759_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/floorToCeilingSearchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160760_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/height +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160761_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/radius +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160762_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/maxStalagmiteStalactiteHeightDiff +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160763_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/heightDeviation +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160764_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/dripstoneBlockLayerThickness +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160765_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/density +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160766_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/wetness +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160767_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/chanceOfDripstoneColumnAtMaxDistanceFromCenter +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160768_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/maxDistanceFromEdgeAffectingChanceOfDripstoneColumn +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160769_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/maxDistanceFromCenterAffectingHeightBias +FD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/f_67639_ net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/f_67640_ net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/exit +FD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/f_67641_ net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/exact +FD: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/f_67737_ net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/NONE +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160811_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/CHANCE_RANGE +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160812_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160813_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/geodeBlockSettings +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160814_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/geodeLayerSettings +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160815_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/geodeCrackSettings +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160816_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/usePotentialPlacementsChance +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160817_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/useAlternateLayer0Chance +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160818_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/placementsRequireLayer0Alternate +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160819_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/outerWallDistance +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160820_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/distributionPoints +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160821_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/pointOffset +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160822_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/minGenOffset +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160823_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/maxGenOffset +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160824_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/noiseMultiplier +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160825_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/invalidBlocksThreshold +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67739_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67740_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/capProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67741_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/stemProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67742_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/foliageRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160944_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160945_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/floorToCeilingSearchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160946_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/columnRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160947_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/heightScale +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160948_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/maxColumnRadiusToCaveHeightRatio +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160949_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/stalactiteBluntness +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160950_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/stalagmiteBluntness +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160951_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/windSpeed +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160952_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/minRadiusForWind +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160953_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/minBluntnessForWind +FD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/f_67767_ net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/f_67768_ net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/height +FD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/f_67769_ net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/state +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225381_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225382_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/placeBlock +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225383_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/searchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225384_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canPlaceOnFloor +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225385_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canPlaceOnCeiling +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225386_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canPlaceOnWall +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225387_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/chanceOfSpreading +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225388_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canBePlacedOn +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225389_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/validDirections +FD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/f_191258_ net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/f_191259_ net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/spreadWidth +FD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/f_191260_ net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/spreadHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/f_67815_ net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/f_67816_ net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/INSTANCE +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_161005_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/targetStates +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_161006_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/discardChanceOnAirExposure +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_67837_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_67839_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/size +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/f_161031_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/f_161032_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/target +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/f_161033_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/state +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191274_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191275_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfTallerDripstone +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191276_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfDirectionalSpread +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191277_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfSpreadRadius2 +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191278_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfSpreadRadius3 +FD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/f_67858_ net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/f_67859_ net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/probability +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/f_67867_ net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/f_67868_ net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/featureTrue +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/f_67869_ net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/featureFalse +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/f_67881_ net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/f_67882_ net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/features +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/f_67883_ net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/defaultFeature +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191302_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/xzSpread +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191303_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ySpread +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191304_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/feature +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_67902_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_67907_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/tries +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/f_161083_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/targetStates +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/f_68023_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68036_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68037_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/targetState +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68038_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/replaceState +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68039_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/radius +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161101_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161102_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/treeFeature +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161103_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/requiredVerticalSpaceForTree +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161104_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161105_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootReplaceable +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161106_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootStateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161107_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootPlacementAttempts +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161108_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootColumnMaxHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161109_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161110_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootsVerticalSpan +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161111_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootStateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161112_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootPlacementAttempts +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161113_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/allowedVerticalWaterForTree +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_198355_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/allowedTreePosition +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225425_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225426_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/chargeCount +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225427_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/amountPerCharge +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225428_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadAttempts +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225429_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/growthRounds +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225430_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadRounds +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225431_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/extraRareGrowths +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225432_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/catalystChance +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/f_68068_ net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/f_68069_ net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toPlace +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/f_68089_ net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/f_68090_ net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/features +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68099_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68100_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/crystalInvulnerable +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68101_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/spikes +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68102_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/crystalBeamTarget +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68123_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68124_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/state +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68125_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/requiresBlockBelow +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68126_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/rockCount +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68127_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/holeCount +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68128_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/validBlocks +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_161212_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/dirtProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_161213_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/foliageProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_161215_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/forceDirt +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_225455_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/rootPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68184_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68185_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/trunkProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68187_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/decorators +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68189_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/foliagePlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68190_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/trunkPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68191_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/minimumSize +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68193_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ignoreVines +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_161249_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/foliageProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_161251_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/dirtProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_161252_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/forceDirt +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_225479_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/rootPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68229_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/trunkProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68231_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/foliagePlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68232_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/trunkPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68233_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/minimumSize +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68234_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/decorators +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68236_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ignoreVines +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191364_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191365_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadWidth +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191366_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191367_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/maxHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161263_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161264_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/floorSearchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161265_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/placementRadiusAroundFloor +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161266_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/placementProbabilityPerValidPosition +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161280_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161281_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/replaceable +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161282_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/groundState +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161283_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/vegetationFeature +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161284_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/surface +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161285_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/depth +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161286_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/extraBottomBlockChance +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161287_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/verticalRange +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161288_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/vegetationChance +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161289_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/xzRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161290_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/extraEdgeColumnChance +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/f_161325_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/MAX_WIDTH +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/f_68281_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/CODEC +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/f_68282_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/minClippedHeight +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/f_68296_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/TWO_LAYERS_FEATURE_SIZE +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/f_68297_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/THREE_LAYERS_FEATURE_SIZE +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/f_68298_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/codec +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68306_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/CODEC +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68307_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/limit +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68308_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/upperLimit +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68309_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lowerSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68310_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/middleSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68311_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/upperSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68336_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/CODEC +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68337_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/limit +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68338_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lowerSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68339_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/upperSize +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/f_68362_ net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/f_68392_ net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/f_68393_ net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/f_68428_ net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271102_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271143_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/hangingLeavesChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271179_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/wideBottomLayerHoleChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271259_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271392_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/cornerHoleChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271510_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/hangingLeavesExtensionChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/f_68455_ net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/f_68492_ net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/f_68519_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/f_68520_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/radius +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/f_68521_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/offset +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/f_161450_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/pos +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/f_68582_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/radiusOffset +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/f_68583_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/doubleTrunk +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_161452_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/RANDOM_SPREAD_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_271376_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/CHERRY_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68591_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/BLOB_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68592_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/SPRUCE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68593_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/PINE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68594_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ACACIA_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68595_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/BUSH_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68596_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/FANCY_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68597_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/MEGA_JUNGLE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68598_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/MEGA_PINE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68599_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/DARK_OAK_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68600_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/codec +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/f_68608_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/f_68609_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/f_68642_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/f_68643_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/crownHeight +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/f_68676_ net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/f_68677_ net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/f_161501_ net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/f_161502_ net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/foliageHeight +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/f_161503_ net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/leafPlacementAttempts +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/f_68713_ net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/f_68714_ net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/trunkHeight +FD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225753_ net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225754_ net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootProvider +FD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225755_ net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootPlacementChance +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225772_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225773_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/canGrowThrough +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225774_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsIn +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225775_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsProvider +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225776_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootWidth +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225777_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootLength +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225778_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/randomSkewChance +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225811_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ROOT_WIDTH_LIMIT +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225812_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ROOT_LENGTH_LIMIT +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225813_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225814_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/mangroveRootPlacement +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225859_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225860_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/trunkOffsetY +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225861_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/rootProvider +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225862_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/aboveRootPlacement +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/f_225898_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/MANGROVE_ROOT_PLACER +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/f_225899_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/codec +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/f_68747_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_161554_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/RANDOMIZED_INT_STATE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_191386_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/NOISE_THRESHOLD_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_191387_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/NOISE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_191388_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/DUAL_NOISE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68752_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/SIMPLE_STATE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68753_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/WEIGHTED_STATE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68756_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ROTATED_BLOCK_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68757_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/codec +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191389_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191390_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/variety +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191391_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/slowNoiseParameters +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191392_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/slowScale +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191393_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/slowNoise +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191417_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/seed +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191418_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/parameters +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191419_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/scale +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191420_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/noise +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/f_191438_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/f_191439_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/states +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191463_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191464_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/threshold +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191465_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/highChance +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191466_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/defaultState +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191467_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lowStates +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191468_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/highStates +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161555_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161556_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/source +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161557_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/propertyName +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161558_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/property +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161559_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/values +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/f_68786_ net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/f_68787_ net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/block +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225924_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225925_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/fallback +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225926_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/rules +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225947_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225948_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ifTrue +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225949_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/then +FD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/f_68797_ net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/f_68798_ net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/state +FD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/f_68808_ net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/f_68809_ net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/weightedList +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/f_69302_ net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/f_69303_ net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/provider +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225979_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225980_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225981_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/exclusionRadiusXZ +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225982_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/exclusionRadiusY +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225983_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/blockProvider +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225984_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/requiredEmptyBlocks +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225985_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/directions +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_202294_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/WORLDGEN_FACING +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_202295_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/SPAWN_DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_69954_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_69955_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/f_69972_ net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/f_69973_ net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/f_226029_ net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/f_69996_ net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/f_70021_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226045_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/level +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226046_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/decorationSetter +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226047_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/random +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226048_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/logs +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226049_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/leaves +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226050_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/roots +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_226071_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ATTACHED_TO_LEAVES +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70042_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/TRUNK_VINE +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70043_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/LEAVE_VINE +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70044_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/COCOA +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70045_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/BEEHIVE +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70046_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ALTER_GROUND +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70047_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/codec +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/f_70055_ net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/f_70056_ net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/INSTANCE +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/f_161765_ net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/f_161766_ net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/minHeightForLeaves +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/f_161767_ net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/bendLength +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271123_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchEndOffsetFromTop +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271342_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchCount +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271384_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchHorizontalLength +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271407_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/secondBranchStartOffsetFromTop +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271464_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/BRANCH_START_CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271473_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchStartOffsetFromTop +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271475_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/f_70074_ net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161796_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/TRUNK_HEIGHT_SCALE +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161797_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/CLUSTER_DENSITY_MAGIC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161798_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/BRANCH_SLOPE +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161799_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/BRANCH_LENGTH_MAGIC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_70091_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/f_70137_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/attachment +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/f_70138_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/branchBase +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/f_70145_ net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/f_70162_ net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/f_70190_ net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/f_70245_ net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_161865_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/MAX_BASE_HEIGHT +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_161866_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/MAX_RAND +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_161867_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/MAX_HEIGHT +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70262_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70263_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/baseHeight +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70264_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/heightRandA +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70265_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/heightRandB +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_161899_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/BENDING_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_226193_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/UPWARDS_BRANCHING_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_271399_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/CHERRY_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70315_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/STRAIGHT_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70316_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/FORKING_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70317_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/GIANT_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70318_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/MEGA_JUNGLE_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70319_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/DARK_OAK_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70320_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/FANCY_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70321_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/codec +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226194_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226195_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/extraBranchSteps +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226196_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/placeBranchPerLogProbability +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226197_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/extraBranchLength +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226198_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/canGrowThrough +FD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/f_161900_ net/minecraft/world/level/levelgen/flat/FlatLayerInfo/block +FD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/f_70329_ net/minecraft/world/level/levelgen/flat/FlatLayerInfo/CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/f_70331_ net/minecraft/world/level/levelgen/flat/FlatLayerInfo/height +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226243_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226244_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226245_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/displayItem +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226246_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/settings +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226263_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/CLASSIC_FLAT +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226264_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/TUNNELERS_DREAM +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226265_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/WATER_WORLD +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226266_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/OVERWORLD +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226267_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/SNOWY_KINGDOM +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226268_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/BOTTOMLESS_PIT +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226269_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/DESERT +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226270_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/REDSTONE_READY +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226271_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/THE_VOID +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/f_254741_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/context +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_209788_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/structureOverrides +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_254642_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lakes +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70347_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70348_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/LOGGER +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70352_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/layersInfo +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70353_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/biome +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70354_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/layers +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70355_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/voidGen +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70356_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/decoration +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70357_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/addLakes +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161918_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161919_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161920_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161921_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161922_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/inner +FD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/f_161945_ net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ZERO +FD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/f_161946_ net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/f_161947_ net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/value +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/f_161969_ net/minecraft/world/level/levelgen/heightproviders/HeightProvider/CONSTANT_OR_DISPATCH_CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/f_161970_ net/minecraft/world/level/levelgen/heightproviders/HeightProvider/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161981_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/CONSTANT +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161982_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/UNIFORM +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161983_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/BIASED_TO_BOTTOM +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161984_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/VERY_BIASED_TO_BOTTOM +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161985_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/TRAPEZOID +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_191531_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/WEIGHTED_LIST +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161993_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161994_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161995_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161996_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161997_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/plateau +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162023_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162024_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162025_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162026_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_198374_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/warnedFor +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162045_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162046_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162047_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162048_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162049_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/inner +FD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/f_191532_ net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/f_191533_ net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/distribution +FD: net/minecraft/world/level/levelgen/material/MaterialRuleList/f_191545_ net/minecraft/world/level/levelgen/material/MaterialRuleList/materialRuleList +FD: net/minecraft/world/level/levelgen/placement/BiomeFilter/f_191557_ net/minecraft/world/level/levelgen/placement/BiomeFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/BiomeFilter/f_191558_ net/minecraft/world/level/levelgen/placement/BiomeFilter/INSTANCE +FD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/f_191569_ net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/f_191570_ net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/predicate +FD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/f_191585_ net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/f_191586_ net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/step +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/$VALUES net/minecraft/world/level/levelgen/placement/CaveSurface/$VALUES +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/CEILING net/minecraft/world/level/levelgen/placement/CaveSurface/CEILING +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/FLOOR net/minecraft/world/level/levelgen/placement/CaveSurface/FLOOR +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162094_ net/minecraft/world/level/levelgen/placement/CaveSurface/CODEC +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162095_ net/minecraft/world/level/levelgen/placement/CaveSurface/direction +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162096_ net/minecraft/world/level/levelgen/placement/CaveSurface/y +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162097_ net/minecraft/world/level/levelgen/placement/CaveSurface/id +FD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/f_191599_ net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/f_191600_ net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/count +FD: net/minecraft/world/level/levelgen/placement/CountPlacement/f_191623_ net/minecraft/world/level/levelgen/placement/CountPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/CountPlacement/f_191624_ net/minecraft/world/level/levelgen/placement/CountPlacement/count +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191638_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191639_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/directionOfSearch +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191640_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/targetCondition +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191641_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/allowedSearchCondition +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191642_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/maxSteps +FD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/f_191673_ net/minecraft/world/level/levelgen/placement/HeightRangePlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/f_191674_ net/minecraft/world/level/levelgen/placement/HeightRangePlacement/height +FD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/f_191695_ net/minecraft/world/level/levelgen/placement/HeightmapPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/f_191696_ net/minecraft/world/level/levelgen/placement/HeightmapPlacement/heightmap +FD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/f_191711_ net/minecraft/world/level/levelgen/placement/InSquarePlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/f_191712_ net/minecraft/world/level/levelgen/placement/InSquarePlacement/INSTANCE +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191722_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191723_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/noiseToCountRatio +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191724_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/noiseFactor +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191725_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/noiseOffset +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191747_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191748_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/noiseLevel +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191749_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/belowNoise +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191750_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/aboveNoise +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191772_ net/minecraft/world/level/levelgen/placement/PlacedFeature/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191773_ net/minecraft/world/level/levelgen/placement/PlacedFeature/CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191774_ net/minecraft/world/level/levelgen/placement/PlacedFeature/LIST_CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191775_ net/minecraft/world/level/levelgen/placement/PlacedFeature/feature +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191776_ net/minecraft/world/level/levelgen/placement/PlacedFeature/placement +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_204922_ net/minecraft/world/level/levelgen/placement/PlacedFeature/LIST_OF_LISTS_CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacementContext/f_191814_ net/minecraft/world/level/levelgen/placement/PlacementContext/level +FD: net/minecraft/world/level/levelgen/placement/PlacementContext/f_191815_ net/minecraft/world/level/levelgen/placement/PlacementContext/generator +FD: net/minecraft/world/level/levelgen/placement/PlacementContext/f_191816_ net/minecraft/world/level/levelgen/placement/PlacementContext/topFeature +FD: net/minecraft/world/level/levelgen/placement/PlacementModifier/f_191842_ net/minecraft/world/level/levelgen/placement/PlacementModifier/CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191848_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/BLOCK_PREDICATE_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191849_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/RARITY_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191850_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/SURFACE_RELATIVE_THRESHOLD_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191851_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/SURFACE_WATER_DEPTH_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191852_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/BIOME_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191853_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/COUNT +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191854_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/NOISE_BASED_COUNT +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191855_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/NOISE_THRESHOLD_COUNT +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191856_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/COUNT_ON_EVERY_LAYER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191857_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/ENVIRONMENT_SCAN +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191858_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/HEIGHTMAP +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191859_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/HEIGHT_RANGE +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191860_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/IN_SQUARE +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191861_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/RANDOM_OFFSET +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191862_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/CARVING_MASK_PLACEMENT +FD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/f_191870_ net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/f_191871_ net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/xzSpread +FD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/f_191872_ net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ySpread +FD: net/minecraft/world/level/levelgen/placement/RarityFilter/f_191895_ net/minecraft/world/level/levelgen/placement/RarityFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/RarityFilter/f_191896_ net/minecraft/world/level/levelgen/placement/RarityFilter/chance +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191919_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191920_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/heightmap +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191921_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/minInclusive +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191922_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/maxInclusive +FD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/f_191945_ net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/f_191946_ net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/maxWaterDepth +FD: net/minecraft/world/level/levelgen/presets/WorldPreset/f_226414_ net/minecraft/world/level/levelgen/presets/WorldPreset/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/presets/WorldPreset/f_226415_ net/minecraft/world/level/levelgen/presets/WorldPreset/CODEC +FD: net/minecraft/world/level/levelgen/presets/WorldPreset/f_226416_ net/minecraft/world/level/levelgen/presets/WorldPreset/dimensions +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226437_ net/minecraft/world/level/levelgen/presets/WorldPresets/NORMAL +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226438_ net/minecraft/world/level/levelgen/presets/WorldPresets/FLAT +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226439_ net/minecraft/world/level/levelgen/presets/WorldPresets/LARGE_BIOMES +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226440_ net/minecraft/world/level/levelgen/presets/WorldPresets/AMPLIFIED +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226441_ net/minecraft/world/level/levelgen/presets/WorldPresets/SINGLE_BIOME_SURFACE +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226442_ net/minecraft/world/level/levelgen/presets/WorldPresets/DEBUG +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226467_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/biomes +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226468_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/structureSets +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226469_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/noiseSettings +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226471_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/overworldDimensionType +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226474_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/netherStem +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226477_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/endStem +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_254745_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/context +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_254750_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/placedFeatures +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_273886_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/multiNoiseBiomeSourceParameterLists +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162354_ net/minecraft/world/level/levelgen/structure/BoundingBox/CODEC +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162355_ net/minecraft/world/level/levelgen/structure/BoundingBox/LOGGER +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162356_ net/minecraft/world/level/levelgen/structure/BoundingBox/minX +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162357_ net/minecraft/world/level/levelgen/structure/BoundingBox/minY +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162358_ net/minecraft/world/level/levelgen/structure/BoundingBox/minZ +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162359_ net/minecraft/world/level/levelgen/structure/BoundingBox/maxX +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162360_ net/minecraft/world/level/levelgen/structure/BoundingBox/maxY +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162361_ net/minecraft/world/level/levelgen/structure/BoundingBox/maxZ +FD: net/minecraft/world/level/levelgen/structure/BoundingBox$1/f_71062_ net/minecraft/world/level/levelgen/structure/BoundingBox$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209820_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/VILLAGES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209821_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/DESERT_PYRAMIDS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209822_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/IGLOOS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209823_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/JUNGLE_TEMPLES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209824_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/SWAMP_HUTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209825_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/PILLAGER_OUTPOSTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209826_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/OCEAN_MONUMENTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209827_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/WOODLAND_MANSIONS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209828_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/BURIED_TREASURES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209829_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/MINESHAFTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209830_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/RUINED_PORTALS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209831_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/SHIPWRECKS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209832_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/OCEAN_RUINS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209833_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/NETHER_COMPLEXES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209834_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/NETHER_FOSSILS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209835_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/END_CITIES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209836_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/STRONGHOLDS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_226491_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/ANCIENT_CITIES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_276475_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/TRAIL_RUINS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209840_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_JUNGLE +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209841_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_SWAMP +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209842_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_MOUNTAIN +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209843_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_OCEAN +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209844_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_NETHER +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209845_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/PILLAGER_OUTPOST +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209846_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/MINESHAFT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209847_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/MINESHAFT_MESA +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209848_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/WOODLAND_MANSION +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209849_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/JUNGLE_TEMPLE +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209850_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/DESERT_PYRAMID +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209851_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/IGLOO +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209852_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/SHIPWRECK +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209853_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/SHIPWRECK_BEACHED +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209854_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/SWAMP_HUT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209855_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/STRONGHOLD +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209856_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/OCEAN_MONUMENT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209857_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/OCEAN_RUIN_COLD +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209858_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/OCEAN_RUIN_WARM +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209859_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/FORTRESS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209860_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/NETHER_FOSSIL +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209861_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/END_CITY +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209862_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/BURIED_TREASURE +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209863_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/BASTION_REMNANT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209864_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_PLAINS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209865_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_DESERT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209866_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_SAVANNA +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209867_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_SNOWY +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209868_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_TAIGA +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209869_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_STANDARD +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209870_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_DESERT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_226492_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/ANCIENT_CITY +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_276588_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/TRAIL_RUINS +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_209874_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/OLD_STRUCTURE_REGISTRY_KEYS +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71299_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/CURRENT_TO_LEGACY_MAP +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71300_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/LEGACY_TO_CURRENT_MAP +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71301_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/hasLegacyData +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71302_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/dataMap +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71303_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/indexMap +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71304_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/legacyKeys +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71305_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/currentKeys +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_226493_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72597_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/element +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72598_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/position +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72599_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/rotation +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72600_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72601_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/groundLevelDelta +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72602_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/junctions +FD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/f_192427_ net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/NONE +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72787_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/width +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72788_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/height +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72789_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/depth +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72790_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/heightPosition +FD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/f_226533_ net/minecraft/world/level/levelgen/structure/SinglePieceStructure/constructor +FD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/f_226534_ net/minecraft/world/level/levelgen/structure/SinglePieceStructure/width +FD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/f_226535_ net/minecraft/world/level/levelgen/structure/SinglePieceStructure/depth +FD: net/minecraft/world/level/levelgen/structure/Structure/f_226553_ net/minecraft/world/level/levelgen/structure/Structure/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/Structure/f_226554_ net/minecraft/world/level/levelgen/structure/Structure/CODEC +FD: net/minecraft/world/level/levelgen/structure/Structure/f_226555_ net/minecraft/world/level/levelgen/structure/Structure/settings +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226621_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/registryAccess +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226622_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226623_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/biomeSource +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226624_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/randomState +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226625_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226626_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/random +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226627_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/seed +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226628_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkPos +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226629_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226630_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/validBiome +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226669_ net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/position +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226670_ net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/generator +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226688_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/CODEC +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226689_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/biomes +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226690_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/spawnOverrides +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226691_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/step +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226692_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/terrainAdaptation +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197235_ net/minecraft/world/level/levelgen/structure/StructureCheck/LOGGER +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197236_ net/minecraft/world/level/levelgen/structure/StructureCheck/NO_STRUCTURE +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197237_ net/minecraft/world/level/levelgen/structure/StructureCheck/storageAccess +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197238_ net/minecraft/world/level/levelgen/structure/StructureCheck/registryAccess +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197239_ net/minecraft/world/level/levelgen/structure/StructureCheck/biomes +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197241_ net/minecraft/world/level/levelgen/structure/StructureCheck/dimension +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197242_ net/minecraft/world/level/levelgen/structure/StructureCheck/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197243_ net/minecraft/world/level/levelgen/structure/StructureCheck/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197244_ net/minecraft/world/level/levelgen/structure/StructureCheck/biomeSource +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197245_ net/minecraft/world/level/levelgen/structure/StructureCheck/seed +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197246_ net/minecraft/world/level/levelgen/structure/StructureCheck/fixerUpper +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197247_ net/minecraft/world/level/levelgen/structure/StructureCheck/loadedChunks +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197248_ net/minecraft/world/level/levelgen/structure/StructureCheck/featureChecks +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_204945_ net/minecraft/world/level/levelgen/structure/StructureCheck/structureConfigs +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_226709_ net/minecraft/world/level/levelgen/structure/StructureCheck/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_226710_ net/minecraft/world/level/levelgen/structure/StructureCheck/randomState +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/$VALUES net/minecraft/world/level/levelgen/structure/StructureCheckResult/$VALUES +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/CHUNK_LOAD_NEEDED net/minecraft/world/level/levelgen/structure/StructureCheckResult/CHUNK_LOAD_NEEDED +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_NOT_PRESENT net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_NOT_PRESENT +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_PRESENT net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_PRESENT +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_163528_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/TAG_REMAINING_INDEXES +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_163529_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/TAG_All_INDEXES +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_73360_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/all +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_73361_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/remaining +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_163536_ net/minecraft/world/level/levelgen/structure/StructurePiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73377_ net/minecraft/world/level/levelgen/structure/StructurePiece/orientation +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73378_ net/minecraft/world/level/levelgen/structure/StructurePiece/mirror +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73379_ net/minecraft/world/level/levelgen/structure/StructurePiece/rotation +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73380_ net/minecraft/world/level/levelgen/structure/StructurePiece/type +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73381_ net/minecraft/world/level/levelgen/structure/StructurePiece/SHAPE_CHECK_BLOCKS +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73382_ net/minecraft/world/level/levelgen/structure/StructurePiece/CAVE_AIR +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73383_ net/minecraft/world/level/levelgen/structure/StructurePiece/boundingBox +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73384_ net/minecraft/world/level/levelgen/structure/StructurePiece/genDepth +FD: net/minecraft/world/level/levelgen/structure/StructurePiece$1/f_73551_ net/minecraft/world/level/levelgen/structure/StructurePiece$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/f_73553_ net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/next +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210001_ net/minecraft/world/level/levelgen/structure/StructureSet/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210002_ net/minecraft/world/level/levelgen/structure/StructureSet/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210003_ net/minecraft/world/level/levelgen/structure/StructureSet/structures +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210004_ net/minecraft/world/level/levelgen/structure/StructureSet/placement +FD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210025_ net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210026_ net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/structure +FD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210027_ net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/weight +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210042_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210043_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/boundingBox +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210044_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/spawns +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/$VALUES net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/$VALUES +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/PIECE net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/PIECE +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/STRUCTURE net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/STRUCTURE +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/f_210060_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/f_210061_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/id +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_163590_ net/minecraft/world/level/levelgen/structure/StructureStart/INVALID_START_ID +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_163592_ net/minecraft/world/level/levelgen/structure/StructureStart/chunkPos +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_163593_ net/minecraft/world/level/levelgen/structure/StructureStart/cachedBoundingBox +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_192654_ net/minecraft/world/level/levelgen/structure/StructureStart/pieceContainer +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_226843_ net/minecraft/world/level/levelgen/structure/StructureStart/LOGGER +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_226844_ net/minecraft/world/level/levelgen/structure/StructureStart/structure +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_73561_ net/minecraft/world/level/levelgen/structure/StructureStart/INVALID_START +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_73568_ net/minecraft/world/level/levelgen/structure/StructureStart/references +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226862_ net/minecraft/world/level/levelgen/structure/StructureType/BURIED_TREASURE +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226863_ net/minecraft/world/level/levelgen/structure/StructureType/DESERT_PYRAMID +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226864_ net/minecraft/world/level/levelgen/structure/StructureType/END_CITY +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226865_ net/minecraft/world/level/levelgen/structure/StructureType/FORTRESS +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226866_ net/minecraft/world/level/levelgen/structure/StructureType/IGLOO +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226867_ net/minecraft/world/level/levelgen/structure/StructureType/JIGSAW +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226868_ net/minecraft/world/level/levelgen/structure/StructureType/JUNGLE_TEMPLE +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226869_ net/minecraft/world/level/levelgen/structure/StructureType/MINESHAFT +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226870_ net/minecraft/world/level/levelgen/structure/StructureType/NETHER_FOSSIL +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226871_ net/minecraft/world/level/levelgen/structure/StructureType/OCEAN_MONUMENT +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226872_ net/minecraft/world/level/levelgen/structure/StructureType/OCEAN_RUIN +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226873_ net/minecraft/world/level/levelgen/structure/StructureType/RUINED_PORTAL +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226874_ net/minecraft/world/level/levelgen/structure/StructureType/SHIPWRECK +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226875_ net/minecraft/world/level/levelgen/structure/StructureType/STRONGHOLD +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226876_ net/minecraft/world/level/levelgen/structure/StructureType/SWAMP_HUT +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226877_ net/minecraft/world/level/levelgen/structure/StructureType/WOODLAND_MANSION +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_163658_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/templateName +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73656_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/template +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73657_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/placeSettings +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73658_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/templatePosition +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73659_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/$VALUES net/minecraft/world/level/levelgen/structure/TerrainAdjustment/$VALUES +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_BOX net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_BOX +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_THIN net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_THIN +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BURY net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BURY +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/NONE net/minecraft/world/level/levelgen/structure/TerrainAdjustment/NONE +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/f_226918_ net/minecraft/world/level/levelgen/structure/TerrainAdjustment/CODEC +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/f_226919_ net/minecraft/world/level/levelgen/structure/TerrainAdjustment/id +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192703_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192705_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkPos +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192707_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192708_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/random +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192709_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/seed +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_197328_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/config +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_226931_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197352_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197353_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/biomeSource +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197354_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/seed +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197355_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkPos +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197356_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/config +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197357_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197358_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/validBiome +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197360_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/registryAccess +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226941_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/randomState +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226942_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192741_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/pieces +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192742_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/LOGGER +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192743_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/JIGSAW_RENAME +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192744_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/RENAMES +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192762_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/resourceManager +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192763_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/registryAccess +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_226956_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210095_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_RIGHT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210096_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_ROOM_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210097_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_STAIRS_DOWN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210098_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_START +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210099_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_STRAIGHT +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210100_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_STRAIGHT_STAIRS_DOWN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210101_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/JUNGLE_PYRAMID_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210102_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_RUIN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210103_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/IGLOO +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210104_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/RUINED_PORTAL +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210105_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/SWAMPLAND_HUT +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210106_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/DESERT_PYRAMID_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210107_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_BUILDING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210108_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_CORE_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210109_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_X_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210110_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_XY_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210111_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_Y_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210112_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_YZ_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210113_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_Z_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210114_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_ENTRY_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210115_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_PENTHOUSE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210116_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_SIMPLE_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210117_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_SIMPLE_TOP_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210118_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_WING_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210119_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/END_CITY_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210120_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/WOODLAND_MANSION_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210121_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210122_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/BURIED_TREASURE_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210123_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/SHIPWRECK_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210124_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FOSSIL +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210125_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/JIGSAW +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210126_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210127_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210128_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_STAIRS +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210129_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_BRIDGE_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210130_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_BRIDGE_END_FILLER +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210131_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_BRIDGE_STRAIGHT +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210132_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_CORRIDOR_STAIRS +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210133_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_CORRIDOR_T_BALCONY +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210134_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_ENTRANCE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210135_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210136_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR_LEFT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210137_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210138_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR_RIGHT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210139_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_STALK_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210140_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_MONSTER_THRONE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210141_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_ROOM_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210142_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_STAIRS_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210143_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_START +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210144_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_CHEST_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210145_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_FILLER_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210146_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_FIVE_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210147_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_LEFT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210148_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_LIBRARY +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210149_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_PORTAL_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210150_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_PRISON_HALL +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/f_192778_ net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/pieces +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204949_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204950_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/distance +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204951_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/spread +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204952_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/count +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_226974_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/preferredBiomes +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204972_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204973_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spacing +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204974_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/separation +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204975_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spreadType +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/$VALUES net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/$VALUES +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/LINEAR net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/LINEAR +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/TRIANGULAR net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/TRIANGULAR +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/f_205014_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/f_205016_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/id +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/f_205034_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$placement$RandomSpreadType +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_205036_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227021_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/HIGHLY_ARBITRARY_RANDOM_SALT +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227022_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/locateOffset +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227023_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequencyReductionMethod +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227024_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequency +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227025_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/salt +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227026_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/exclusionZone +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227077_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227078_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/otherSet +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227079_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/chunkCount +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/$VALUES net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/$VALUES +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/DEFAULT net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/DEFAULT +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_1 net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_1 +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_2 net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_2 +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_3 net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_3 +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/f_227108_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/f_227109_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/name +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/f_227110_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/reducer +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/f_205041_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/RANDOM_SPREAD +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/f_205042_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/CONCENTRIC_RINGS +FD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/f_210174_ net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/f_210175_ net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/f_210204_ net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/f_210205_ net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/feature +FD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/f_210206_ net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/defaultJigsawNBT +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210241_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/sourceX +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210242_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/sourceGroundY +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210243_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/sourceZ +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210244_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/deltaY +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210245_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/destProjection +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/f_210265_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/LOGGER +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/f_210307_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/piece +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/f_210308_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/free +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/f_210309_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/depth +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210314_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/pools +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210315_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/maxDepth +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210317_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210319_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/pieces +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210320_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/random +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210321_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/placing +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_227256_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/f_210345_ net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/f_210359_ net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/f_210360_ net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/elements +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210409_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/TEMPLATE_CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210410_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210411_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/template +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210412_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/processors +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/f_210467_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/projection +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/f_210468_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/f_254734_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/EMPTY +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210542_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/SINGLE +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210543_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/LIST +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210544_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/FEATURE +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210545_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/EMPTY +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210546_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/LEGACY +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210554_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210555_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210557_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/SIZE_UNSET +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210559_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/rawTemplates +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210560_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/templates +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210561_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/fallback +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210562_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/maxSize +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_254652_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/CODEC_REFERENCE +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/$VALUES net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/$VALUES +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/RIGID net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/RIGID +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/TERRAIN_MATCHING net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/TERRAIN_MATCHING +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/f_210593_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/f_210595_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/name +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/f_210596_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/processors +FD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/f_227382_ net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_227395_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_227396_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_227397_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/hasPlacedChest +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_271477_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/potentialSuspiciousSandWorldPositions +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_278492_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/randomCollapsedRoofPos +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/f_227415_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227420_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/MAX_GEN_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227421_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/HOUSE_TOWER_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227422_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/TOWER_BRIDGES +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227423_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/TOWER_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227424_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/TOWER_BRIDGE_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227425_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/FAT_TOWER_BRIDGES +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227426_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/FAT_TOWER_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/f_227471_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/shipCreated +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/f_227523_ net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227540_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/GENERATION_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227541_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/STRUCTURE_LOCATION_IGLOO +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227542_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/STRUCTURE_LOCATION_LADDER +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227543_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/STRUCTURE_LOCATION_LABORATORY +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227544_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/PIVOTS +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227545_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/OFFSETS +FD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/f_227590_ net/minecraft/world/level/levelgen/structure/structures/IglooStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227603_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/MAX_TOTAL_STRUCTURE_RANGE +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227604_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227605_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/startPool +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227606_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/startJigsawName +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227607_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/maxDepth +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227608_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/startHeight +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227609_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/useExpansionHack +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227610_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/projectStartToHeightmap +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227611_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/maxDistanceFromCenter +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/f_227657_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$TerrainAdjustment +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227659_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227660_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227661_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedMainChest +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227662_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedHiddenChest +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227663_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedTrap1 +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227664_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedTrap2 +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227665_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/STONE_SELECTOR +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/f_227691_ net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227696_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAGIC_START_Y +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227697_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/LOGGER +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227698_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/DEFAULT_SHAFT_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227699_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/DEFAULT_SHAFT_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227700_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/DEFAULT_SHAFT_LENGTH +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227701_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAX_PILLAR_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227702_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAX_CHAIN_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227703_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAX_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/f_227724_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227726_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/hasRails +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227727_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/spiderCorridor +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227728_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/hasPlacedSpider +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227729_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/numSections +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/f_227826_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/direction +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/f_227827_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/isTwoFloored +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/f_227864_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/type +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/f_227900_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/childEntranceBoxes +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/f_227957_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/f_227958_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/type +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/$VALUES net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/MESA net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/MESA +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/NORMAL net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/NORMAL +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227975_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227976_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/name +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227977_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/woodState +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227978_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/planksState +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227979_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/fenceState +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_262747_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/BY_ID +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228000_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/MAGIC_START_Y +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228001_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/MAX_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228002_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/LOWEST_Y_POSITION +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228003_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/BRIDGE_PIECE_WEIGHTS +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228004_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/CASTLE_PIECE_WEIGHTS +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/f_228016_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/f_228018_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/f_228019_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/f_228020_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228053_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228054_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228055_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228056_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/selfSeed +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/f_228083_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/f_228084_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/f_228085_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/f_228113_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/f_228114_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/f_228115_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/f_228141_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/f_228142_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/f_228143_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/f_228169_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/f_228170_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/f_228171_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/f_228199_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/f_228200_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/f_228201_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228227_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228228_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228229_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228230_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/isNeedingChest +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/f_228261_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/f_228262_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/f_228263_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228289_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228290_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228291_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228292_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/isNeedingChest +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/f_228323_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/f_228324_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/f_228325_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228351_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228352_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228353_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228354_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/hasPlacedSpawner +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228434_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/pieceClass +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228435_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/weight +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228436_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/placeCount +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228437_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/maxPlaceCount +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228438_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/allowInRow +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/f_228451_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/f_228452_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/f_228453_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/f_228479_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/f_228480_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/f_228481_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228507_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/previousPiece +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228508_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/availableBridgePieces +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228509_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/availableCastlePieces +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228510_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/pendingChildren +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/f_228517_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/FORTRESS_ENEMIES +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/f_228518_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/f_228531_ net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/FOSSILS +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/f_228569_ net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/f_228570_ net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/height +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/f_228588_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228639_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228640_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228641_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228642_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/TOP_POSITION +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228643_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/sourceRoom +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228644_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/coreRoom +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228645_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/childPieces +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228646_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/BIOME_RANGE_CHECK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228802_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/PENTHOUSE_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228803_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/roomDefinition +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228804_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/BASE_GRAY +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228805_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/BASE_LIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228806_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/BASE_BLACK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228807_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/DOT_DECO_DATA +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228808_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/LAMP_BLOCK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228809_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/DO_FILL +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228810_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/FILL_BLOCK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228811_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/FILL_KEEP +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228812_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228813_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228814_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228815_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228816_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228817_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228818_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_FLOOR_COUNT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228819_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_SIZE +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228820_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_SOURCE_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228821_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_TOP_CONNECT_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228822_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_LEFTWING_CONNECT_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228823_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_RIGHTWING_CONNECT_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228824_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/LEFTWING_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228825_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/RIGHTWING_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/f_228893_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/mainDesign +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/f_228921_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/mainDesign +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228936_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/index +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228937_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/connections +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228938_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/hasOpening +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228939_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/claimed +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228940_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/isSource +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228941_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/scanIndex +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/f_228952_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228972_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/WARM_RUINS +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228973_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/RUINS_BRICK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228974_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/RUINS_CRACKED +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228975_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/RUINS_MOSSY +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228976_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_RUINS_BRICK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228977_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_RUINS_MOSSY +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228978_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_RUINS_CRACKED +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228979_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_WARM_RUINS +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_276541_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/COLD_SUSPICIOUS_BLOCK_PROCESSOR +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_276678_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/WARM_SUSPICIOUS_BLOCK_PROCESSOR +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/f_229012_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$structures$OceanRuinStructure$Type +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/f_229014_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/biomeType +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/f_229015_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/integrity +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/f_229016_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/isLarge +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229054_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229055_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/biomeTemp +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229056_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/largeProbability +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229057_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/clusterProbability +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/$VALUES net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/COLD net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/COLD +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/WARM net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/WARM +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/f_229083_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/f_229084_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/name +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229097_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229098_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/PROBABILITY_OF_GOLD_GONE +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229099_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/PROBABILITY_OF_MAGMA_INSTEAD_OF_NETHERRACK +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229100_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/PROBABILITY_OF_MAGMA_INSTEAD_OF_LAVA +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229101_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/verticalPlacement +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229102_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/properties +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229197_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229198_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/cold +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229199_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/mossiness +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229200_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/airPocket +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229201_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/overgrown +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229202_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/vines +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229203_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/replaceWithBlackstone +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/$VALUES net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_MOUNTAIN net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_MOUNTAIN +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_NETHER net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_NETHER +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_LAND_SURFACE net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_LAND_SURFACE +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_OCEAN_FLOOR net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_OCEAN_FLOOR +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/PARTLY_BURIED net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/PARTLY_BURIED +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/UNDERGROUND net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/UNDERGROUND +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/f_229233_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/f_229234_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/name +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229249_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229250_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/STRUCTURE_LOCATION_PORTALS +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229251_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/STRUCTURE_LOCATION_GIANT_PORTALS +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229252_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/PROBABILITY_OF_GIANT_PORTAL +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229253_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/MIN_Y_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229254_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/setups +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229306_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229307_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/placement +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229308_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/airPocketProbability +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229309_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/mossiness +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229310_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/overgrown +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229311_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/vines +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229312_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/canBeCold +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229313_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/replaceWithBlackstone +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229314_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/weight +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229339_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/PIVOT +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229340_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/STRUCTURE_LOCATION_BEACHED +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229341_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/STRUCTURE_LOCATION_OCEAN +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229342_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/MARKERS_TO_LOOT +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/f_229352_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/isBeached +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/f_229384_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/f_229385_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/isBeached +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229403_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/MAGIC_START_Y +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229404_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/SMALL_DOOR_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229405_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/SMALL_DOOR_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229406_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/MAX_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229407_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/LOWEST_Y_POSITION +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229408_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/CHECK_AIR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229409_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/STRONGHOLD_PIECE_WEIGHTS +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229410_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/currentPieces +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229411_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/imposedPiece +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229412_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/totalWeight +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229413_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/SMOOTH_STONE_SELECTOR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/f_229457_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/$SwitchMap$net$minecraft$world$level$levelgen$structure$structures$StrongholdPieces$StrongholdPiece$SmallDoorType +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/f_229458_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229460_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229461_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229462_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229463_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/hasPlacedChest +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/f_229494_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/steps +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229519_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229520_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229521_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229522_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/leftLow +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229523_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/leftHigh +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229524_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/rightLow +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229525_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/rightHigh +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229583_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229584_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229585_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/TALL_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229586_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229587_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/isTall +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229614_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/pieceClass +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229615_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/weight +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229616_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/placeCount +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229617_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/maxPlaceCount +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229624_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229625_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229626_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229627_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/hasPlacedSpawner +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/f_229656_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/f_229657_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/f_229658_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229713_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229714_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229715_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229716_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/type +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229754_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229755_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229756_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229757_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/isSource +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/f_229797_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/previousPiece +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/f_229798_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/portalRoomPiece +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/f_229799_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/pendingChildren +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229807_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229808_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229809_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229810_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/leftChild +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229811_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/rightChild +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/f_229842_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/f_229843_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/f_229844_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/f_229872_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/entryDoor +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/$VALUES net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/GRATES net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/GRATES +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/IRON_DOOR net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/IRON_DOOR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/OPENING net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/OPENING +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/WOOD_DOOR net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/WOOD_DOOR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/f_229926_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/f_229927_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/f_229928_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/f_229936_ net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/f_229949_ net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/spawnedWitch +FD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/f_229950_ net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/spawnedCat +FD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/f_229971_ net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230020_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/DEFAULT_SIZE +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230021_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/CLEAR +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230022_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230023_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230024_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/START_ROOM +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230025_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/TEST_ROOM +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230026_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/BLOCKED +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230027_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_1x1 +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230028_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_1x2 +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230029_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_2x2 +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230030_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_ORIGIN_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230031_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_DOOR_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230032_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_STAIRS_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230033_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_CORRIDOR_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230034_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_TYPE_MASK +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230035_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_ID_MASK +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230036_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/random +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230037_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/baseGrid +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230038_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/thirdFloorGrid +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230039_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/floorRooms +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230040_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/entranceX +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230041_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/entranceY +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230073_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230074_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/random +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230075_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/startX +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230076_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/startY +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/f_230138_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/rotation +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/f_230139_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/position +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/f_230140_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/wallType +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230159_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/grid +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230160_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/width +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230161_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/height +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230162_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/valueIfOutside +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/f_230222_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/f_73953_ net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/f_73954_ net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73962_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73963_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/minChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73964_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/maxChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73965_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/minDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73966_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/maxDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73967_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/axis +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/f_73993_ net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/f_73994_ net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/f_73995_ net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/replacements +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163720_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/PROBABILITY_OF_REPLACING_FULL_BLOCK +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163721_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/PROBABILITY_OF_REPLACING_STAIRS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163722_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/PROBABILITY_OF_REPLACING_OBSIDIAN +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163723_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/NON_MOSSY_REPLACEMENTS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_74009_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_74010_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/mossiness +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74045_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74046_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/STRUCTURE_BLOCK +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74047_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/AIR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74048_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/STRUCTURE_AND_AIR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74049_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/toIgnore +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/f_74063_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/f_74064_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/block +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/f_230279_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/rottableBlocks +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/f_74074_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/f_74075_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/integrity +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/f_74089_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/f_74090_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/blockState +FD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/f_276424_ net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/f_276479_ net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/limit +FD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/f_276605_ net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/delegate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/f_74100_ net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/f_74101_ net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/heightmap +FD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/f_74102_ net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/offset +FD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/f_276536_ net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/LOGGER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/f_74121_ net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/f_74122_ net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/f_74134_ net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/f_74135_ net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74147_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74148_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/minChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74149_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/maxChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74150_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/minDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74151_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/maxDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/f_74174_ net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/f_74175_ net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/f_74187_ net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/f_74188_ net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/f_74198_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/f_74205_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/ALWAYS_TRUE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/f_74206_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/LINEAR_POS_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/f_74207_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/AXIS_ALIGNED_LINEAR_POS_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_276504_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/blockEntityModifier +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_276568_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/DEFAULT_BLOCK_ENTITY_MODIFIER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74215_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74216_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/inputPredicate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74217_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/locPredicate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74218_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/posPredicate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74219_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/outputState +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/f_163748_ net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/cannotReplace +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/f_163749_ net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/f_74258_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/f_74259_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/block +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/f_74260_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/probability +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/f_74275_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/f_74276_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/blockState +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/f_74277_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/probability +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/f_74292_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/f_74293_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/rules +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/f_74307_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74312_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/ALWAYS_TRUE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74313_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/BLOCK_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74314_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/BLOCKSTATE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74315_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/TAG_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74316_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/RANDOM_BLOCK_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74317_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/RANDOM_BLOCKSTATE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74361_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/mirror +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74362_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/rotation +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74363_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/rotationPivot +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74364_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/ignoreEntities +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74366_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/boundingBox +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74367_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/keepLiquids +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74368_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/random +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74369_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/palette +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74370_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/processors +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74371_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/knownShape +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74372_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/finalizeEntities +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/f_74422_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/list +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_163784_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/PROTECTED_BLOCKS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_276421_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/CAPPED +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74456_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLOCK_IGNORE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74457_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLOCK_ROT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74458_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/GRAVITY +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74459_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/JIGSAW_REPLACEMENT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74460_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/RULE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74461_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/NOP +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74462_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLOCK_AGE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74463_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLACKSTONE_REPLACE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74464_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/LAVA_SUBMERGED_BLOCK +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74465_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/SINGLE_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74466_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/LIST_OBJECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74467_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74468_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/LIST_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163789_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/PALETTE_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163790_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/PALETTE_LIST_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163791_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITIES_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163792_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCKS_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163793_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCK_TAG_POS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163794_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCK_TAG_STATE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163795_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCK_TAG_NBT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163796_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITY_TAG_POS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163797_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITY_TAG_BLOCKPOS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163798_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITY_TAG_NBT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163799_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/SIZE_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74482_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/palettes +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74483_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/entityInfoList +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74484_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/size +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74485_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/author +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/f_74642_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/f_74643_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/f_74645_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/blocks +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/f_74646_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/cache +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/f_74660_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/DEFAULT_BLOCK_STATE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/f_74661_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ids +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/f_74662_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/lastId +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74675_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/pos +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74676_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/state +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74677_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/nbt +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/f_74683_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/pos +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/f_74684_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/blockPos +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/f_74685_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/nbt +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230340_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/LOGGER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230341_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/STRUCTURE_DIRECTORY_NAME +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230342_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/TEST_STRUCTURES_DIR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230343_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/STRUCTURE_FILE_EXTENSION +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230344_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/STRUCTURE_TEXT_FILE_EXTENSION +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230345_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/structureRepository +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230346_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/fixerUpper +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230347_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/resourceManager +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230348_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/generatedDir +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230349_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/sources +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_243724_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/blockLookup +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_244413_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/LISTER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230440_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/loader +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230441_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/lister +FD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/f_74690_ net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/f_74691_ net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/tag +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/f_276575_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lootTable +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/f_276677_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/LOGGER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/f_276688_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/f_276564_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/f_276635_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/tag +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/f_276495_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/f_276500_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/f_276645_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/f_276690_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/f_276484_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276423_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/APPEND_STATIC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276455_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/CLEAR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276528_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/PASSTHROUGH +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276561_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/APPEND_LOOT +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_164288_ net/minecraft/world/level/levelgen/synth/BlendedNoise/minLimitNoise +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_164289_ net/minecraft/world/level/levelgen/synth/BlendedNoise/maxLimitNoise +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_164290_ net/minecraft/world/level/levelgen/synth/BlendedNoise/mainNoise +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_192799_ net/minecraft/world/level/levelgen/synth/BlendedNoise/xzScale +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_192800_ net/minecraft/world/level/levelgen/synth/BlendedNoise/yScale +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_210616_ net/minecraft/world/level/levelgen/synth/BlendedNoise/CODEC +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_210617_ net/minecraft/world/level/levelgen/synth/BlendedNoise/maxValue +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230454_ net/minecraft/world/level/levelgen/synth/BlendedNoise/SCALE_RANGE +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230455_ net/minecraft/world/level/levelgen/synth/BlendedNoise/DATA_CODEC +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230456_ net/minecraft/world/level/levelgen/synth/BlendedNoise/xzMultiplier +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230457_ net/minecraft/world/level/levelgen/synth/BlendedNoise/yMultiplier +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230458_ net/minecraft/world/level/levelgen/synth/BlendedNoise/xzFactor +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230459_ net/minecraft/world/level/levelgen/synth/BlendedNoise/yFactor +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230460_ net/minecraft/world/level/levelgen/synth/BlendedNoise/smearScaleMultiplier +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_164305_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/SHIFT_UP_EPSILON +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75321_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/xo +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75322_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/yo +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75323_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/zo +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75324_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/p +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_164344_ net/minecraft/world/level/levelgen/synth/NormalNoise/INPUT_FACTOR +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_164345_ net/minecraft/world/level/levelgen/synth/NormalNoise/TARGET_DEVIATION +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_210624_ net/minecraft/world/level/levelgen/synth/NormalNoise/maxValue +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_210625_ net/minecraft/world/level/levelgen/synth/NormalNoise/parameters +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_75373_ net/minecraft/world/level/levelgen/synth/NormalNoise/valueFactor +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_75374_ net/minecraft/world/level/levelgen/synth/NormalNoise/first +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_75375_ net/minecraft/world/level/levelgen/synth/NormalNoise/second +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192851_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192852_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/CODEC +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192853_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/firstOctave +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192854_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/amplitudes +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_164358_ net/minecraft/world/level/levelgen/synth/PerlinNoise/ROUND_OFF +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_192867_ net/minecraft/world/level/levelgen/synth/PerlinNoise/firstOctave +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_210641_ net/minecraft/world/level/levelgen/synth/PerlinNoise/maxValue +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75390_ net/minecraft/world/level/levelgen/synth/PerlinNoise/noiseLevels +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75391_ net/minecraft/world/level/levelgen/synth/PerlinNoise/amplitudes +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75392_ net/minecraft/world/level/levelgen/synth/PerlinNoise/lowestFreqValueFactor +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75393_ net/minecraft/world/level/levelgen/synth/PerlinNoise/lowestFreqInputFactor +FD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/f_75432_ net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/noiseLevels +FD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/f_75433_ net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/highestFreqValueFactor +FD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/f_75434_ net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/highestFreqInputFactor +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75453_ net/minecraft/world/level/levelgen/synth/SimplexNoise/GRADIENT +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75454_ net/minecraft/world/level/levelgen/synth/SimplexNoise/xo +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75455_ net/minecraft/world/level/levelgen/synth/SimplexNoise/yo +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75456_ net/minecraft/world/level/levelgen/synth/SimplexNoise/zo +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75457_ net/minecraft/world/level/levelgen/synth/SimplexNoise/SQRT_3 +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75458_ net/minecraft/world/level/levelgen/synth/SimplexNoise/F2 +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75459_ net/minecraft/world/level/levelgen/synth/SimplexNoise/G2 +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75460_ net/minecraft/world/level/levelgen/synth/SimplexNoise/p +FD: net/minecraft/world/level/lighting/BlockLightEngine/f_75489_ net/minecraft/world/level/lighting/BlockLightEngine/mutablePos +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283752_ net/minecraft/world/level/lighting/ChunkSkyLightSources/SIZE +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283758_ net/minecraft/world/level/lighting/ChunkSkyLightSources/minY +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283783_ net/minecraft/world/level/lighting/ChunkSkyLightSources/mutablePos2 +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283790_ net/minecraft/world/level/lighting/ChunkSkyLightSources/NEGATIVE_INFINITY +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283859_ net/minecraft/world/level/lighting/ChunkSkyLightSources/mutablePos1 +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283905_ net/minecraft/world/level/lighting/ChunkSkyLightSources/heightmap +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_164421_ net/minecraft/world/level/lighting/DataLayerStorageMap/CACHE_SIZE +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75518_ net/minecraft/world/level/lighting/DataLayerStorageMap/map +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75519_ net/minecraft/world/level/lighting/DataLayerStorageMap/lastSectionKeys +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75520_ net/minecraft/world/level/lighting/DataLayerStorageMap/lastSections +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75521_ net/minecraft/world/level/lighting/DataLayerStorageMap/cacheEnabled +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_164422_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/NO_COMPUTED_LEVEL +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_278118_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/priorityQueue +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_278132_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/SOURCE +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_75537_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/levelCount +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_75539_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/computedLevels +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_75541_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/hasWork +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/f_278131_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/val$minMapSize +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/f_75604_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/this$0 +FD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/$VALUES net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/$VALUES +FD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/INSTANCE net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/INSTANCE +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_283775_ net/minecraft/world/level/lighting/LayerLightSectionStorage/columnsWithSources +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_283847_ net/minecraft/world/level/lighting/LayerLightSectionStorage/hasInconsistencies +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_283872_ net/minecraft/world/level/lighting/LayerLightSectionStorage/sectionStates +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75731_ net/minecraft/world/level/lighting/LayerLightSectionStorage/visibleSectionData +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75732_ net/minecraft/world/level/lighting/LayerLightSectionStorage/updatingSectionData +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75733_ net/minecraft/world/level/lighting/LayerLightSectionStorage/changedSections +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75734_ net/minecraft/world/level/lighting/LayerLightSectionStorage/sectionsAffectedByLightUpdates +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75735_ net/minecraft/world/level/lighting/LayerLightSectionStorage/queuedSections +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75738_ net/minecraft/world/level/lighting/LayerLightSectionStorage/layer +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75739_ net/minecraft/world/level/lighting/LayerLightSectionStorage/chunkSource +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75741_ net/minecraft/world/level/lighting/LayerLightSectionStorage/columnsToRetainQueuedDataFor +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75742_ net/minecraft/world/level/lighting/LayerLightSectionStorage/toRemove +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283742_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/MIN_NEIGHBORS +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283815_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/MAX_NEIGHBORS +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283852_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/NEIGHBOR_COUNT_BITS +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283868_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/HAS_DATA_BIT +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283943_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/EMPTY +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/$VALUES net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/$VALUES +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/EMPTY net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/EMPTY +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_AND_DATA net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_AND_DATA +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_ONLY net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_ONLY +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/f_283935_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/display +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_164444_ net/minecraft/world/level/lighting/LevelLightEngine/LIGHT_SECTION_PADDING +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_164445_ net/minecraft/world/level/lighting/LevelLightEngine/levelHeightAccessor +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_75802_ net/minecraft/world/level/lighting/LevelLightEngine/blockEngine +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_75803_ net/minecraft/world/level/lighting/LevelLightEngine/skyEngine +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue/f_278115_ net/minecraft/world/level/lighting/LeveledPriorityQueue/queues +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue/f_278119_ net/minecraft/world/level/lighting/LeveledPriorityQueue/levelCount +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue/f_278122_ net/minecraft/world/level/lighting/LeveledPriorityQueue/firstQueuedLevel +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/f_278129_ net/minecraft/world/level/lighting/LeveledPriorityQueue$1/val$minSize +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/f_278133_ net/minecraft/world/level/lighting/LeveledPriorityQueue$1/this$0 +FD: net/minecraft/world/level/lighting/LightEngine/f_283739_ net/minecraft/world/level/lighting/LightEngine/MIN_OPACITY +FD: net/minecraft/world/level/lighting/LightEngine/f_283746_ net/minecraft/world/level/lighting/LightEngine/MAX_LEVEL +FD: net/minecraft/world/level/lighting/LightEngine/f_283747_ net/minecraft/world/level/lighting/LightEngine/MIN_QUEUE_SIZE +FD: net/minecraft/world/level/lighting/LightEngine/f_283814_ net/minecraft/world/level/lighting/LightEngine/PROPAGATION_DIRECTIONS +FD: net/minecraft/world/level/lighting/LightEngine/f_283823_ net/minecraft/world/level/lighting/LightEngine/decreaseQueue +FD: net/minecraft/world/level/lighting/LightEngine/f_283833_ net/minecraft/world/level/lighting/LightEngine/lastChunkPos +FD: net/minecraft/world/level/lighting/LightEngine/f_283849_ net/minecraft/world/level/lighting/LightEngine/storage +FD: net/minecraft/world/level/lighting/LightEngine/f_283854_ net/minecraft/world/level/lighting/LightEngine/PULL_LIGHT_IN_ENTRY +FD: net/minecraft/world/level/lighting/LightEngine/f_283860_ net/minecraft/world/level/lighting/LightEngine/CACHE_SIZE +FD: net/minecraft/world/level/lighting/LightEngine/f_283863_ net/minecraft/world/level/lighting/LightEngine/blockNodesToCheck +FD: net/minecraft/world/level/lighting/LightEngine/f_283884_ net/minecraft/world/level/lighting/LightEngine/chunkSource +FD: net/minecraft/world/level/lighting/LightEngine/f_283888_ net/minecraft/world/level/lighting/LightEngine/lastChunk +FD: net/minecraft/world/level/lighting/LightEngine/f_283920_ net/minecraft/world/level/lighting/LightEngine/mutablePos +FD: net/minecraft/world/level/lighting/LightEngine/f_283934_ net/minecraft/world/level/lighting/LightEngine/increaseQueue +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283763_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/DIRECTION_BITS +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283793_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/FLAG_INCREASE_FROM_EMISSION +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283794_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/DIRECTIONS_MASK +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283813_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/FROM_LEVEL_BITS +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283865_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/FLAG_FROM_EMPTY_SHAPE +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283912_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/LEVEL_MASK +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283756_ net/minecraft/world/level/lighting/SkyLightEngine/ADD_SKY_SOURCE_ENTRY +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283759_ net/minecraft/world/level/lighting/SkyLightEngine/REMOVE_TOP_SKY_SOURCE_ENTRY +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283845_ net/minecraft/world/level/lighting/SkyLightEngine/REMOVE_SKY_SOURCE_ENTRY +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283853_ net/minecraft/world/level/lighting/SkyLightEngine/mutablePos +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283855_ net/minecraft/world/level/lighting/SkyLightEngine/emptyChunkSources +FD: net/minecraft/world/level/lighting/SkyLightEngine$1/f_283792_ net/minecraft/world/level/lighting/SkyLightEngine$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/f_75900_ net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/currentLowestY +FD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/f_75901_ net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/topSections +FD: net/minecraft/world/level/lighting/SpatialLongSet/f_164460_ net/minecraft/world/level/lighting/SpatialLongSet/map +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164471_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/X_BITS +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164472_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Z_BITS +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164473_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Y_BITS +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164474_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Y_OFFSET +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164475_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Z_OFFSET +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164476_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/X_OFFSET +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164477_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/OUTER_MASK +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164478_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/lastPos +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164479_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/lastOuterKey +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164480_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/minSize +FD: net/minecraft/world/level/material/FlowingFluid/f_164507_ net/minecraft/world/level/material/FlowingFluid/CACHE_SIZE +FD: net/minecraft/world/level/material/FlowingFluid/f_75947_ net/minecraft/world/level/material/FlowingFluid/FALLING +FD: net/minecraft/world/level/material/FlowingFluid/f_75948_ net/minecraft/world/level/material/FlowingFluid/LEVEL +FD: net/minecraft/world/level/material/FlowingFluid/f_75949_ net/minecraft/world/level/material/FlowingFluid/OCCLUSION_CACHE +FD: net/minecraft/world/level/material/FlowingFluid/f_75950_ net/minecraft/world/level/material/FlowingFluid/shapes +FD: net/minecraft/world/level/material/Fluid/f_205066_ net/minecraft/world/level/material/Fluid/builtInRegistryHolder +FD: net/minecraft/world/level/material/Fluid/f_76103_ net/minecraft/world/level/material/Fluid/defaultFluidState +FD: net/minecraft/world/level/material/Fluid/f_76104_ net/minecraft/world/level/material/Fluid/FLUID_STATE_REGISTRY +FD: net/minecraft/world/level/material/Fluid/f_76105_ net/minecraft/world/level/material/Fluid/stateDefinition +FD: net/minecraft/world/level/material/FluidState/f_164510_ net/minecraft/world/level/material/FluidState/AMOUNT_MAX +FD: net/minecraft/world/level/material/FluidState/f_164511_ net/minecraft/world/level/material/FluidState/AMOUNT_FULL +FD: net/minecraft/world/level/material/FluidState/f_76146_ net/minecraft/world/level/material/FluidState/CODEC +FD: net/minecraft/world/level/material/Fluids/f_76191_ net/minecraft/world/level/material/Fluids/EMPTY +FD: net/minecraft/world/level/material/Fluids/f_76192_ net/minecraft/world/level/material/Fluids/FLOWING_WATER +FD: net/minecraft/world/level/material/Fluids/f_76193_ net/minecraft/world/level/material/Fluids/WATER +FD: net/minecraft/world/level/material/Fluids/f_76194_ net/minecraft/world/level/material/Fluids/FLOWING_LAVA +FD: net/minecraft/world/level/material/Fluids/f_76195_ net/minecraft/world/level/material/Fluids/LAVA +FD: net/minecraft/world/level/material/FogType/$VALUES net/minecraft/world/level/material/FogType/$VALUES +FD: net/minecraft/world/level/material/FogType/LAVA net/minecraft/world/level/material/FogType/LAVA +FD: net/minecraft/world/level/material/FogType/NONE net/minecraft/world/level/material/FogType/NONE +FD: net/minecraft/world/level/material/FogType/POWDER_SNOW net/minecraft/world/level/material/FogType/POWDER_SNOW +FD: net/minecraft/world/level/material/FogType/WATER net/minecraft/world/level/material/FogType/WATER +FD: net/minecraft/world/level/material/LavaFluid/f_164528_ net/minecraft/world/level/material/LavaFluid/MIN_LEVEL_CUTOFF +FD: net/minecraft/world/level/material/MapColor/f_283743_ net/minecraft/world/level/material/MapColor/COLOR_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283744_ net/minecraft/world/level/material/MapColor/CLAY +FD: net/minecraft/world/level/material/MapColor/f_283745_ net/minecraft/world/level/material/MapColor/WARPED_NYLIUM +FD: net/minecraft/world/level/material/MapColor/f_283748_ net/minecraft/world/level/material/MapColor/COLOR_BROWN +FD: net/minecraft/world/level/material/MapColor/f_283749_ net/minecraft/world/level/material/MapColor/WARPED_STEM +FD: net/minecraft/world/level/material/MapColor/f_283750_ net/minecraft/world/level/material/MapColor/COLOR_ORANGE +FD: net/minecraft/world/level/material/MapColor/f_283757_ net/minecraft/world/level/material/MapColor/GOLD +FD: net/minecraft/world/level/material/MapColor/f_283761_ net/minecraft/world/level/material/MapColor/SAND +FD: net/minecraft/world/level/material/MapColor/f_283762_ net/minecraft/world/level/material/MapColor/DIRT +FD: net/minecraft/world/level/material/MapColor/f_283765_ net/minecraft/world/level/material/MapColor/COLOR_PINK +FD: net/minecraft/world/level/material/MapColor/f_283769_ net/minecraft/world/level/material/MapColor/GLOW_LICHEN +FD: net/minecraft/world/level/material/MapColor/f_283771_ net/minecraft/world/level/material/MapColor/TERRACOTTA_BLACK +FD: net/minecraft/world/level/material/MapColor/f_283772_ net/minecraft/world/level/material/MapColor/COLOR_CYAN +FD: net/minecraft/world/level/material/MapColor/f_283774_ net/minecraft/world/level/material/MapColor/TERRACOTTA_BROWN +FD: net/minecraft/world/level/material/MapColor/f_283778_ net/minecraft/world/level/material/MapColor/TERRACOTTA_LIGHT_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283779_ net/minecraft/world/level/material/MapColor/COLOR_LIGHT_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283784_ net/minecraft/world/level/material/MapColor/COLOR_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283791_ net/minecraft/world/level/material/MapColor/TERRACOTTA_LIGHT_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283798_ net/minecraft/world/level/material/MapColor/TERRACOTTA_RED +FD: net/minecraft/world/level/material/MapColor/f_283804_ net/minecraft/world/level/material/MapColor/CRIMSON_STEM +FD: net/minecraft/world/level/material/MapColor/f_283805_ net/minecraft/world/level/material/MapColor/id +FD: net/minecraft/world/level/material/MapColor/f_283807_ net/minecraft/world/level/material/MapColor/WARPED_HYPHAE +FD: net/minecraft/world/level/material/MapColor/f_283808_ net/minecraft/world/level/material/MapColor/NONE +FD: net/minecraft/world/level/material/MapColor/f_283811_ net/minecraft/world/level/material/MapColor/SNOW +FD: net/minecraft/world/level/material/MapColor/f_283812_ net/minecraft/world/level/material/MapColor/EMERALD +FD: net/minecraft/world/level/material/MapColor/f_283816_ net/minecraft/world/level/material/MapColor/FIRE +FD: net/minecraft/world/level/material/MapColor/f_283818_ net/minecraft/world/level/material/MapColor/COLOR_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283819_ net/minecraft/world/level/material/MapColor/PODZOL +FD: net/minecraft/world/level/material/MapColor/f_283820_ net/minecraft/world/level/material/MapColor/NETHER +FD: net/minecraft/world/level/material/MapColor/f_283821_ net/minecraft/world/level/material/MapColor/DIAMOND +FD: net/minecraft/world/level/material/MapColor/f_283824_ net/minecraft/world/level/material/MapColor/GRASS +FD: net/minecraft/world/level/material/MapColor/f_283825_ net/minecraft/world/level/material/MapColor/WOOD +FD: net/minecraft/world/level/material/MapColor/f_283828_ net/minecraft/world/level/material/MapColor/ICE +FD: net/minecraft/world/level/material/MapColor/f_283832_ net/minecraft/world/level/material/MapColor/COLOR_YELLOW +FD: net/minecraft/world/level/material/MapColor/f_283843_ net/minecraft/world/level/material/MapColor/TERRACOTTA_YELLOW +FD: net/minecraft/world/level/material/MapColor/f_283846_ net/minecraft/world/level/material/MapColor/TERRACOTTA_CYAN +FD: net/minecraft/world/level/material/MapColor/f_283850_ net/minecraft/world/level/material/MapColor/TERRACOTTA_MAGENTA +FD: net/minecraft/world/level/material/MapColor/f_283856_ net/minecraft/world/level/material/MapColor/TERRACOTTA_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283861_ net/minecraft/world/level/material/MapColor/TERRACOTTA_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283862_ net/minecraft/world/level/material/MapColor/MATERIAL_COLORS +FD: net/minecraft/world/level/material/MapColor/f_283864_ net/minecraft/world/level/material/MapColor/WATER +FD: net/minecraft/world/level/material/MapColor/f_283869_ net/minecraft/world/level/material/MapColor/COLOR_LIGHT_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283870_ net/minecraft/world/level/material/MapColor/TERRACOTTA_PINK +FD: net/minecraft/world/level/material/MapColor/f_283871_ net/minecraft/world/level/material/MapColor/col +FD: net/minecraft/world/level/material/MapColor/f_283875_ net/minecraft/world/level/material/MapColor/DEEPSLATE +FD: net/minecraft/world/level/material/MapColor/f_283877_ net/minecraft/world/level/material/MapColor/RAW_IRON +FD: net/minecraft/world/level/material/MapColor/f_283883_ net/minecraft/world/level/material/MapColor/CRIMSON_HYPHAE +FD: net/minecraft/world/level/material/MapColor/f_283889_ net/minecraft/world/level/material/MapColor/COLOR_PURPLE +FD: net/minecraft/world/level/material/MapColor/f_283892_ net/minecraft/world/level/material/MapColor/TERRACOTTA_PURPLE +FD: net/minecraft/world/level/material/MapColor/f_283895_ net/minecraft/world/level/material/MapColor/TERRACOTTA_ORANGE +FD: net/minecraft/world/level/material/MapColor/f_283898_ net/minecraft/world/level/material/MapColor/WARPED_WART_BLOCK +FD: net/minecraft/world/level/material/MapColor/f_283906_ net/minecraft/world/level/material/MapColor/METAL +FD: net/minecraft/world/level/material/MapColor/f_283907_ net/minecraft/world/level/material/MapColor/TERRACOTTA_LIGHT_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283908_ net/minecraft/world/level/material/MapColor/TERRACOTTA_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283909_ net/minecraft/world/level/material/MapColor/CRIMSON_NYLIUM +FD: net/minecraft/world/level/material/MapColor/f_283913_ net/minecraft/world/level/material/MapColor/COLOR_RED +FD: net/minecraft/world/level/material/MapColor/f_283915_ net/minecraft/world/level/material/MapColor/PLANT +FD: net/minecraft/world/level/material/MapColor/f_283916_ net/minecraft/world/level/material/MapColor/COLOR_LIGHT_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283919_ net/minecraft/world/level/material/MapColor/TERRACOTTA_WHITE +FD: net/minecraft/world/level/material/MapColor/f_283927_ net/minecraft/world/level/material/MapColor/COLOR_BLACK +FD: net/minecraft/world/level/material/MapColor/f_283930_ net/minecraft/world/level/material/MapColor/WOOL +FD: net/minecraft/world/level/material/MapColor/f_283931_ net/minecraft/world/level/material/MapColor/COLOR_MAGENTA +FD: net/minecraft/world/level/material/MapColor/f_283933_ net/minecraft/world/level/material/MapColor/LAPIS +FD: net/minecraft/world/level/material/MapColor/f_283942_ net/minecraft/world/level/material/MapColor/QUARTZ +FD: net/minecraft/world/level/material/MapColor/f_283947_ net/minecraft/world/level/material/MapColor/STONE +FD: net/minecraft/world/level/material/MapColor$Brightness/$VALUES net/minecraft/world/level/material/MapColor$Brightness/$VALUES +FD: net/minecraft/world/level/material/MapColor$Brightness/HIGH net/minecraft/world/level/material/MapColor$Brightness/HIGH +FD: net/minecraft/world/level/material/MapColor$Brightness/LOW net/minecraft/world/level/material/MapColor$Brightness/LOW +FD: net/minecraft/world/level/material/MapColor$Brightness/LOWEST net/minecraft/world/level/material/MapColor$Brightness/LOWEST +FD: net/minecraft/world/level/material/MapColor$Brightness/NORMAL net/minecraft/world/level/material/MapColor$Brightness/NORMAL +FD: net/minecraft/world/level/material/MapColor$Brightness/f_283785_ net/minecraft/world/level/material/MapColor$Brightness/modifier +FD: net/minecraft/world/level/material/MapColor$Brightness/f_283939_ net/minecraft/world/level/material/MapColor$Brightness/VALUES +FD: net/minecraft/world/level/material/MapColor$Brightness/f_283941_ net/minecraft/world/level/material/MapColor$Brightness/id +FD: net/minecraft/world/level/material/PushReaction/$VALUES net/minecraft/world/level/material/PushReaction/$VALUES +FD: net/minecraft/world/level/material/PushReaction/BLOCK net/minecraft/world/level/material/PushReaction/BLOCK +FD: net/minecraft/world/level/material/PushReaction/DESTROY net/minecraft/world/level/material/PushReaction/DESTROY +FD: net/minecraft/world/level/material/PushReaction/IGNORE net/minecraft/world/level/material/PushReaction/IGNORE +FD: net/minecraft/world/level/material/PushReaction/NORMAL net/minecraft/world/level/material/PushReaction/NORMAL +FD: net/minecraft/world/level/material/PushReaction/PUSH_ONLY net/minecraft/world/level/material/PushReaction/PUSH_ONLY +FD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/f_164655_ net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/prefersShallowSwimming +FD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/f_164656_ net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/oldWalkableCost +FD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/f_164657_ net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/oldWaterBorderCost +FD: net/minecraft/world/level/pathfinder/BinaryHeap/f_77078_ net/minecraft/world/level/pathfinder/BinaryHeap/heap +FD: net/minecraft/world/level/pathfinder/BinaryHeap/f_77079_ net/minecraft/world/level/pathfinder/BinaryHeap/size +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/$VALUES net/minecraft/world/level/pathfinder/BlockPathTypes/$VALUES +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/BLOCKED net/minecraft/world/level/pathfinder/BlockPathTypes/BLOCKED +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/BREACH net/minecraft/world/level/pathfinder/BlockPathTypes/BREACH +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/COCOA net/minecraft/world/level/pathfinder/BlockPathTypes/COCOA +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_CAUTIOUS net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_CAUTIOUS +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_FIRE net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_FIRE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_OTHER net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_OTHER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_FIRE net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_FIRE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_OTHER net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_OTHER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_POWDER_SNOW net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_POWDER_SNOW +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_IRON_CLOSED net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_IRON_CLOSED +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_OPEN net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_OPEN +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_WOOD_CLOSED net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_WOOD_CLOSED +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/FENCE net/minecraft/world/level/pathfinder/BlockPathTypes/FENCE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/LAVA net/minecraft/world/level/pathfinder/BlockPathTypes/LAVA +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/LEAVES net/minecraft/world/level/pathfinder/BlockPathTypes/LEAVES +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/OPEN net/minecraft/world/level/pathfinder/BlockPathTypes/OPEN +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/POWDER_SNOW net/minecraft/world/level/pathfinder/BlockPathTypes/POWDER_SNOW +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/RAIL net/minecraft/world/level/pathfinder/BlockPathTypes/RAIL +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/STICKY_HONEY net/minecraft/world/level/pathfinder/BlockPathTypes/STICKY_HONEY +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/TRAPDOOR net/minecraft/world/level/pathfinder/BlockPathTypes/TRAPDOOR +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/UNPASSABLE_RAIL net/minecraft/world/level/pathfinder/BlockPathTypes/UNPASSABLE_RAIL +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE_DOOR net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE_DOOR +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WATER net/minecraft/world/level/pathfinder/BlockPathTypes/WATER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WATER_BORDER net/minecraft/world/level/pathfinder/BlockPathTypes/WATER_BORDER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/f_77117_ net/minecraft/world/level/pathfinder/BlockPathTypes/malus +FD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/f_164687_ net/minecraft/world/level/pathfinder/FlyNodeEvaluator/pathTypeByPosCache +FD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/f_262722_ net/minecraft/world/level/pathfinder/FlyNodeEvaluator/SMALL_MOB_INFLATED_START_NODE_BOUNDING_BOX +FD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/f_262734_ net/minecraft/world/level/pathfinder/FlyNodeEvaluator/MAX_START_NODE_CANDIDATES +FD: net/minecraft/world/level/pathfinder/Node/f_77271_ net/minecraft/world/level/pathfinder/Node/x +FD: net/minecraft/world/level/pathfinder/Node/f_77272_ net/minecraft/world/level/pathfinder/Node/y +FD: net/minecraft/world/level/pathfinder/Node/f_77273_ net/minecraft/world/level/pathfinder/Node/z +FD: net/minecraft/world/level/pathfinder/Node/f_77274_ net/minecraft/world/level/pathfinder/Node/heapIdx +FD: net/minecraft/world/level/pathfinder/Node/f_77275_ net/minecraft/world/level/pathfinder/Node/g +FD: net/minecraft/world/level/pathfinder/Node/f_77276_ net/minecraft/world/level/pathfinder/Node/h +FD: net/minecraft/world/level/pathfinder/Node/f_77277_ net/minecraft/world/level/pathfinder/Node/f +FD: net/minecraft/world/level/pathfinder/Node/f_77278_ net/minecraft/world/level/pathfinder/Node/cameFrom +FD: net/minecraft/world/level/pathfinder/Node/f_77279_ net/minecraft/world/level/pathfinder/Node/closed +FD: net/minecraft/world/level/pathfinder/Node/f_77280_ net/minecraft/world/level/pathfinder/Node/walkedDistance +FD: net/minecraft/world/level/pathfinder/Node/f_77281_ net/minecraft/world/level/pathfinder/Node/costMalus +FD: net/minecraft/world/level/pathfinder/Node/f_77282_ net/minecraft/world/level/pathfinder/Node/type +FD: net/minecraft/world/level/pathfinder/Node/f_77283_ net/minecraft/world/level/pathfinder/Node/hash +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_254713_ net/minecraft/world/level/pathfinder/NodeEvaluator/canWalkOverFences +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77312_ net/minecraft/world/level/pathfinder/NodeEvaluator/level +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77313_ net/minecraft/world/level/pathfinder/NodeEvaluator/mob +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77314_ net/minecraft/world/level/pathfinder/NodeEvaluator/nodes +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77315_ net/minecraft/world/level/pathfinder/NodeEvaluator/entityWidth +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77316_ net/minecraft/world/level/pathfinder/NodeEvaluator/entityHeight +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77317_ net/minecraft/world/level/pathfinder/NodeEvaluator/entityDepth +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77318_ net/minecraft/world/level/pathfinder/NodeEvaluator/canPassDoors +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77319_ net/minecraft/world/level/pathfinder/NodeEvaluator/canOpenDoors +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77320_ net/minecraft/world/level/pathfinder/NodeEvaluator/canFloat +FD: net/minecraft/world/level/pathfinder/Path/f_77362_ net/minecraft/world/level/pathfinder/Path/nodes +FD: net/minecraft/world/level/pathfinder/Path/f_77363_ net/minecraft/world/level/pathfinder/Path/openSet +FD: net/minecraft/world/level/pathfinder/Path/f_77364_ net/minecraft/world/level/pathfinder/Path/closedSet +FD: net/minecraft/world/level/pathfinder/Path/f_77365_ net/minecraft/world/level/pathfinder/Path/targetNodes +FD: net/minecraft/world/level/pathfinder/Path/f_77366_ net/minecraft/world/level/pathfinder/Path/nextNodeIndex +FD: net/minecraft/world/level/pathfinder/Path/f_77367_ net/minecraft/world/level/pathfinder/Path/target +FD: net/minecraft/world/level/pathfinder/Path/f_77368_ net/minecraft/world/level/pathfinder/Path/distToTarget +FD: net/minecraft/world/level/pathfinder/Path/f_77369_ net/minecraft/world/level/pathfinder/Path/reached +FD: net/minecraft/world/level/pathfinder/PathComputationType/$VALUES net/minecraft/world/level/pathfinder/PathComputationType/$VALUES +FD: net/minecraft/world/level/pathfinder/PathComputationType/AIR net/minecraft/world/level/pathfinder/PathComputationType/AIR +FD: net/minecraft/world/level/pathfinder/PathComputationType/LAND net/minecraft/world/level/pathfinder/PathComputationType/LAND +FD: net/minecraft/world/level/pathfinder/PathComputationType/WATER net/minecraft/world/level/pathfinder/PathComputationType/WATER +FD: net/minecraft/world/level/pathfinder/PathFinder/f_164714_ net/minecraft/world/level/pathfinder/PathFinder/FUDGING +FD: net/minecraft/world/level/pathfinder/PathFinder/f_164715_ net/minecraft/world/level/pathfinder/PathFinder/DEBUG +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77420_ net/minecraft/world/level/pathfinder/PathFinder/neighbors +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77421_ net/minecraft/world/level/pathfinder/PathFinder/maxVisitedNodes +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77422_ net/minecraft/world/level/pathfinder/PathFinder/nodeEvaluator +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77423_ net/minecraft/world/level/pathfinder/PathFinder/openSet +FD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/f_192951_ net/minecraft/world/level/pathfinder/SwimNodeEvaluator/pathTypesByPosCache +FD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/f_77455_ net/minecraft/world/level/pathfinder/SwimNodeEvaluator/allowBreaching +FD: net/minecraft/world/level/pathfinder/Target/f_77494_ net/minecraft/world/level/pathfinder/Target/bestHeuristic +FD: net/minecraft/world/level/pathfinder/Target/f_77495_ net/minecraft/world/level/pathfinder/Target/bestNode +FD: net/minecraft/world/level/pathfinder/Target/f_77496_ net/minecraft/world/level/pathfinder/Target/reached +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_164724_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/SPACE_BETWEEN_WALL_POSTS +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_254631_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/DEFAULT_MOB_JUMP_HEIGHT +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_77545_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/pathTypesByPosCache +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_77546_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/collisionCache +FD: net/minecraft/world/level/portal/PortalForcer/f_164734_ net/minecraft/world/level/portal/PortalForcer/TICKET_RADIUS +FD: net/minecraft/world/level/portal/PortalForcer/f_164735_ net/minecraft/world/level/portal/PortalForcer/SEARCH_RADIUS +FD: net/minecraft/world/level/portal/PortalForcer/f_164736_ net/minecraft/world/level/portal/PortalForcer/CREATE_RADIUS +FD: net/minecraft/world/level/portal/PortalForcer/f_164737_ net/minecraft/world/level/portal/PortalForcer/FRAME_HEIGHT +FD: net/minecraft/world/level/portal/PortalForcer/f_164738_ net/minecraft/world/level/portal/PortalForcer/FRAME_WIDTH +FD: net/minecraft/world/level/portal/PortalForcer/f_164739_ net/minecraft/world/level/portal/PortalForcer/FRAME_BOX +FD: net/minecraft/world/level/portal/PortalForcer/f_164740_ net/minecraft/world/level/portal/PortalForcer/FRAME_HEIGHT_START +FD: net/minecraft/world/level/portal/PortalForcer/f_164741_ net/minecraft/world/level/portal/PortalForcer/FRAME_HEIGHT_END +FD: net/minecraft/world/level/portal/PortalForcer/f_164742_ net/minecraft/world/level/portal/PortalForcer/FRAME_WIDTH_START +FD: net/minecraft/world/level/portal/PortalForcer/f_164743_ net/minecraft/world/level/portal/PortalForcer/FRAME_WIDTH_END +FD: net/minecraft/world/level/portal/PortalForcer/f_164744_ net/minecraft/world/level/portal/PortalForcer/FRAME_BOX_START +FD: net/minecraft/world/level/portal/PortalForcer/f_164745_ net/minecraft/world/level/portal/PortalForcer/FRAME_BOX_END +FD: net/minecraft/world/level/portal/PortalForcer/f_164746_ net/minecraft/world/level/portal/PortalForcer/NOTHING_FOUND +FD: net/minecraft/world/level/portal/PortalForcer/f_77648_ net/minecraft/world/level/portal/PortalForcer/level +FD: net/minecraft/world/level/portal/PortalInfo/f_77676_ net/minecraft/world/level/portal/PortalInfo/pos +FD: net/minecraft/world/level/portal/PortalInfo/f_77677_ net/minecraft/world/level/portal/PortalInfo/speed +FD: net/minecraft/world/level/portal/PortalInfo/f_77678_ net/minecraft/world/level/portal/PortalInfo/yRot +FD: net/minecraft/world/level/portal/PortalInfo/f_77679_ net/minecraft/world/level/portal/PortalInfo/xRot +FD: net/minecraft/world/level/portal/PortalShape/f_164750_ net/minecraft/world/level/portal/PortalShape/MAX_WIDTH +FD: net/minecraft/world/level/portal/PortalShape/f_164751_ net/minecraft/world/level/portal/PortalShape/MAX_HEIGHT +FD: net/minecraft/world/level/portal/PortalShape/f_164752_ net/minecraft/world/level/portal/PortalShape/MIN_WIDTH +FD: net/minecraft/world/level/portal/PortalShape/f_164753_ net/minecraft/world/level/portal/PortalShape/MIN_HEIGHT +FD: net/minecraft/world/level/portal/PortalShape/f_256802_ net/minecraft/world/level/portal/PortalShape/SAFE_TRAVEL_MAX_VERTICAL_DELTA +FD: net/minecraft/world/level/portal/PortalShape/f_256985_ net/minecraft/world/level/portal/PortalShape/SAFE_TRAVEL_MAX_ENTITY_XY +FD: net/minecraft/world/level/portal/PortalShape/f_77685_ net/minecraft/world/level/portal/PortalShape/FRAME +FD: net/minecraft/world/level/portal/PortalShape/f_77686_ net/minecraft/world/level/portal/PortalShape/level +FD: net/minecraft/world/level/portal/PortalShape/f_77687_ net/minecraft/world/level/portal/PortalShape/axis +FD: net/minecraft/world/level/portal/PortalShape/f_77688_ net/minecraft/world/level/portal/PortalShape/rightDir +FD: net/minecraft/world/level/portal/PortalShape/f_77689_ net/minecraft/world/level/portal/PortalShape/numPortalBlocks +FD: net/minecraft/world/level/portal/PortalShape/f_77690_ net/minecraft/world/level/portal/PortalShape/bottomLeft +FD: net/minecraft/world/level/portal/PortalShape/f_77691_ net/minecraft/world/level/portal/PortalShape/height +FD: net/minecraft/world/level/portal/PortalShape/f_77692_ net/minecraft/world/level/portal/PortalShape/width +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230635_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/LOGGER +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230636_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/level +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230637_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/maxChainedNeighborUpdates +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230638_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/stack +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230639_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/addedThisLayer +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230640_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/count +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230670_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/state +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230671_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/pos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230672_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/block +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230673_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/neighborPos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230674_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/movedByPiston +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230692_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/sourcePos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230693_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/sourceBlock +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230694_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/skipDirection +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230695_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/idx +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230703_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/direction +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230704_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/state +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230705_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/pos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230706_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/neighborPos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230707_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateFlags +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_276599_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateLimit +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230725_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/pos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230726_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/block +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230727_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/neighborPos +FD: net/minecraft/world/level/redstone/InstantNeighborUpdater/f_230741_ net/minecraft/world/level/redstone/InstantNeighborUpdater/level +FD: net/minecraft/world/level/redstone/NeighborUpdater/f_230761_ net/minecraft/world/level/redstone/NeighborUpdater/UPDATE_ORDER +FD: net/minecraft/world/level/redstone/Redstone/f_164754_ net/minecraft/world/level/redstone/Redstone/SIGNAL_MIN +FD: net/minecraft/world/level/redstone/Redstone/f_164755_ net/minecraft/world/level/redstone/Redstone/SIGNAL_MAX +FD: net/minecraft/world/level/redstone/Redstone/f_164756_ net/minecraft/world/level/redstone/Redstone/SIGNAL_NONE +FD: net/minecraft/world/level/saveddata/SavedData/f_77751_ net/minecraft/world/level/saveddata/SavedData/LOGGER +FD: net/minecraft/world/level/saveddata/SavedData/f_77753_ net/minecraft/world/level/saveddata/SavedData/dirty +FD: net/minecraft/world/level/saveddata/maps/MapBanner/f_77766_ net/minecraft/world/level/saveddata/maps/MapBanner/pos +FD: net/minecraft/world/level/saveddata/maps/MapBanner/f_77767_ net/minecraft/world/level/saveddata/maps/MapBanner/color +FD: net/minecraft/world/level/saveddata/maps/MapBanner/f_77768_ net/minecraft/world/level/saveddata/maps/MapBanner/name +FD: net/minecraft/world/level/saveddata/maps/MapBanner$1/f_77789_ net/minecraft/world/level/saveddata/maps/MapBanner$1/$SwitchMap$net$minecraft$world$item$DyeColor +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77791_ net/minecraft/world/level/saveddata/maps/MapDecoration/type +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77792_ net/minecraft/world/level/saveddata/maps/MapDecoration/x +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77793_ net/minecraft/world/level/saveddata/maps/MapDecoration/y +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77794_ net/minecraft/world/level/saveddata/maps/MapDecoration/rot +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77795_ net/minecraft/world/level/saveddata/maps/MapDecoration/name +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/$VALUES net/minecraft/world/level/saveddata/maps/MapDecoration$Type/$VALUES +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLACK net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLACK +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLUE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLUE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BROWN net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BROWN +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_CYAN net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_CYAN +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GRAY net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GRAY +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GREEN net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GREEN +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_BLUE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_BLUE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_GRAY net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_GRAY +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIME net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIME +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_MAGENTA net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_MAGENTA +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_ORANGE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_ORANGE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PINK net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PINK +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PURPLE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PURPLE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_RED net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_RED +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_WHITE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_WHITE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_YELLOW net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_YELLOW +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BLUE_MARKER net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BLUE_MARKER +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/FRAME net/minecraft/world/level/saveddata/maps/MapDecoration$Type/FRAME +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MANSION net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MANSION +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MONUMENT net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MONUMENT +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_LIMITS net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_LIMITS +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_MAP net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_MAP +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_MARKER net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_MARKER +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_X net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_X +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_POINT net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_POINT +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_X net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_X +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_181294_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/trackCount +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_77813_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/icon +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_77814_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/renderedOnFrame +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_77815_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/mapColor +FD: net/minecraft/world/level/saveddata/maps/MapFrame/f_77862_ net/minecraft/world/level/saveddata/maps/MapFrame/pos +FD: net/minecraft/world/level/saveddata/maps/MapFrame/f_77863_ net/minecraft/world/level/saveddata/maps/MapFrame/rotation +FD: net/minecraft/world/level/saveddata/maps/MapFrame/f_77864_ net/minecraft/world/level/saveddata/maps/MapFrame/entityId +FD: net/minecraft/world/level/saveddata/maps/MapIndex/f_164761_ net/minecraft/world/level/saveddata/maps/MapIndex/FILE_NAME +FD: net/minecraft/world/level/saveddata/maps/MapIndex/f_77878_ net/minecraft/world/level/saveddata/maps/MapIndex/usedAuxIds +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_164764_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/MAX_SCALE +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_164765_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/MAP_SIZE +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_164766_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/HALF_MAP_SIZE +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_181307_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/TRACKED_DECORATION_LIMIT +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_181308_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/trackedDecorationCount +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_256718_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/centerX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_256789_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/centerZ +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77887_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/dimension +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77888_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/trackingPosition +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77889_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/unlimitedTracking +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77890_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/scale +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77891_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/colors +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77892_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/locked +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77893_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/carriedBy +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77894_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/decorations +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77895_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/LOGGER +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77896_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/carriedByPlayers +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77897_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/bannerMarkers +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77898_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/frameMarkers +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_164813_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/dirtyDecorations +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77959_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/player +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77960_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/step +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77961_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/this$0 +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77962_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/dirtyData +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77963_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/minDirtyX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77964_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/minDirtyY +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77965_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/maxDirtyX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77966_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/maxDirtyY +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77967_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/tick +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164821_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/startX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164822_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/startY +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164823_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/width +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164824_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/height +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164825_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/mapColors +FD: net/minecraft/world/level/storage/CommandStorage/f_164834_ net/minecraft/world/level/storage/CommandStorage/ID_PREFIX +FD: net/minecraft/world/level/storage/CommandStorage/f_78032_ net/minecraft/world/level/storage/CommandStorage/namespaces +FD: net/minecraft/world/level/storage/CommandStorage/f_78033_ net/minecraft/world/level/storage/CommandStorage/storage +FD: net/minecraft/world/level/storage/CommandStorage$Container/f_164847_ net/minecraft/world/level/storage/CommandStorage$Container/TAG_CONTENTS +FD: net/minecraft/world/level/storage/CommandStorage$Container/f_78055_ net/minecraft/world/level/storage/CommandStorage$Container/storage +FD: net/minecraft/world/level/storage/DataVersion/f_192993_ net/minecraft/world/level/storage/DataVersion/MAIN_SERIES +FD: net/minecraft/world/level/storage/DataVersion/f_192994_ net/minecraft/world/level/storage/DataVersion/version +FD: net/minecraft/world/level/storage/DataVersion/f_192995_ net/minecraft/world/level/storage/DataVersion/series +FD: net/minecraft/world/level/storage/DerivedLevelData/f_78076_ net/minecraft/world/level/storage/DerivedLevelData/worldData +FD: net/minecraft/world/level/storage/DerivedLevelData/f_78077_ net/minecraft/world/level/storage/DerivedLevelData/wrapped +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78143_ net/minecraft/world/level/storage/DimensionDataStorage/LOGGER +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78144_ net/minecraft/world/level/storage/DimensionDataStorage/cache +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78145_ net/minecraft/world/level/storage/DimensionDataStorage/fixerUpper +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78146_ net/minecraft/world/level/storage/DimensionDataStorage/dataFolder +FD: net/minecraft/world/level/storage/LevelResource/f_230800_ net/minecraft/world/level/storage/LevelResource/OLD_LEVEL_DATA_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_230801_ net/minecraft/world/level/storage/LevelResource/ICON_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_230802_ net/minecraft/world/level/storage/LevelResource/LOCK_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_78174_ net/minecraft/world/level/storage/LevelResource/PLAYER_ADVANCEMENTS_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78175_ net/minecraft/world/level/storage/LevelResource/PLAYER_STATS_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78176_ net/minecraft/world/level/storage/LevelResource/PLAYER_DATA_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78177_ net/minecraft/world/level/storage/LevelResource/PLAYER_OLD_DATA_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78178_ net/minecraft/world/level/storage/LevelResource/LEVEL_DATA_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_78179_ net/minecraft/world/level/storage/LevelResource/GENERATED_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78180_ net/minecraft/world/level/storage/LevelResource/DATAPACK_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78181_ net/minecraft/world/level/storage/LevelResource/MAP_RESOURCE_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_78182_ net/minecraft/world/level/storage/LevelResource/ROOT +FD: net/minecraft/world/level/storage/LevelResource/f_78183_ net/minecraft/world/level/storage/LevelResource/id +FD: net/minecraft/world/level/storage/LevelStorageException/f_230803_ net/minecraft/world/level/storage/LevelStorageException/messageComponent +FD: net/minecraft/world/level/storage/LevelStorageSource/f_202311_ net/minecraft/world/level/storage/LevelStorageSource/TAG_DATA +FD: net/minecraft/world/level/storage/LevelStorageSource/f_289816_ net/minecraft/world/level/storage/LevelStorageSource/worldDirValidator +FD: net/minecraft/world/level/storage/LevelStorageSource/f_289824_ net/minecraft/world/level/storage/LevelStorageSource/ALLOWED_SYMLINKS_CONFIG_NAME +FD: net/minecraft/world/level/storage/LevelStorageSource/f_289833_ net/minecraft/world/level/storage/LevelStorageSource/NO_SYMLINKS_ALLOWED +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78191_ net/minecraft/world/level/storage/LevelStorageSource/LOGGER +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78192_ net/minecraft/world/level/storage/LevelStorageSource/FORMATTER +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78193_ net/minecraft/world/level/storage/LevelStorageSource/OLD_SETTINGS_KEYS +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78194_ net/minecraft/world/level/storage/LevelStorageSource/baseDir +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78195_ net/minecraft/world/level/storage/LevelStorageSource/backupDir +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78196_ net/minecraft/world/level/storage/LevelStorageSource/fixerUpper +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/f_230840_ net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/levels +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/f_230850_ net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/path +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_230867_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/levelDirectory +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78269_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/this$0 +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78270_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/lock +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78272_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/levelId +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78273_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/resources +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/f_78314_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/val$lockPath +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/f_78315_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/this$1 +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/f_78331_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/val$rootPath +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/f_78332_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/val$stream +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/f_78333_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/this$1 +FD: net/minecraft/world/level/storage/LevelSummary/f_193019_ net/minecraft/world/level/storage/LevelSummary/requiresManualConversion +FD: net/minecraft/world/level/storage/LevelSummary/f_244135_ net/minecraft/world/level/storage/LevelSummary/experimental +FD: net/minecraft/world/level/storage/LevelSummary/f_78344_ net/minecraft/world/level/storage/LevelSummary/settings +FD: net/minecraft/world/level/storage/LevelSummary/f_78345_ net/minecraft/world/level/storage/LevelSummary/levelVersion +FD: net/minecraft/world/level/storage/LevelSummary/f_78346_ net/minecraft/world/level/storage/LevelSummary/levelId +FD: net/minecraft/world/level/storage/LevelSummary/f_78348_ net/minecraft/world/level/storage/LevelSummary/locked +FD: net/minecraft/world/level/storage/LevelSummary/f_78349_ net/minecraft/world/level/storage/LevelSummary/icon +FD: net/minecraft/world/level/storage/LevelSummary/f_78350_ net/minecraft/world/level/storage/LevelSummary/info +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/$VALUES net/minecraft/world/level/storage/LevelSummary$BackupStatus/$VALUES +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/DOWNGRADE net/minecraft/world/level/storage/LevelSummary$BackupStatus/DOWNGRADE +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/NONE net/minecraft/world/level/storage/LevelSummary$BackupStatus/NONE +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/UPGRADE_TO_SNAPSHOT net/minecraft/world/level/storage/LevelSummary$BackupStatus/UPGRADE_TO_SNAPSHOT +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/f_164920_ net/minecraft/world/level/storage/LevelSummary$BackupStatus/shouldBackup +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/f_164921_ net/minecraft/world/level/storage/LevelSummary$BackupStatus/severe +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/f_164922_ net/minecraft/world/level/storage/LevelSummary$BackupStatus/translationKey +FD: net/minecraft/world/level/storage/LevelVersion/f_78378_ net/minecraft/world/level/storage/LevelVersion/levelDataVersion +FD: net/minecraft/world/level/storage/LevelVersion/f_78379_ net/minecraft/world/level/storage/LevelVersion/lastPlayed +FD: net/minecraft/world/level/storage/LevelVersion/f_78380_ net/minecraft/world/level/storage/LevelVersion/minecraftVersionName +FD: net/minecraft/world/level/storage/LevelVersion/f_78381_ net/minecraft/world/level/storage/LevelVersion/minecraftVersion +FD: net/minecraft/world/level/storage/LevelVersion/f_78382_ net/minecraft/world/level/storage/LevelVersion/snapshot +FD: net/minecraft/world/level/storage/PlayerDataStorage/f_78425_ net/minecraft/world/level/storage/PlayerDataStorage/fixerUpper +FD: net/minecraft/world/level/storage/PlayerDataStorage/f_78426_ net/minecraft/world/level/storage/PlayerDataStorage/LOGGER +FD: net/minecraft/world/level/storage/PlayerDataStorage/f_78427_ net/minecraft/world/level/storage/PlayerDataStorage/playerDir +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_164940_ net/minecraft/world/level/storage/PrimaryLevelData/WORLD_GEN_SETTINGS +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_202314_ net/minecraft/world/level/storage/PrimaryLevelData/PLAYER +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_244368_ net/minecraft/world/level/storage/PrimaryLevelData/specialWorldProperty +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_244409_ net/minecraft/world/level/storage/PrimaryLevelData/worldOptions +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_276525_ net/minecraft/world/level/storage/PrimaryLevelData/removedFeatureFlags +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78437_ net/minecraft/world/level/storage/PrimaryLevelData/wanderingTraderSpawnChance +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78438_ net/minecraft/world/level/storage/PrimaryLevelData/wanderingTraderId +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78439_ net/minecraft/world/level/storage/PrimaryLevelData/knownServerBrands +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78440_ net/minecraft/world/level/storage/PrimaryLevelData/wasModded +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78441_ net/minecraft/world/level/storage/PrimaryLevelData/scheduledEvents +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78442_ net/minecraft/world/level/storage/PrimaryLevelData/LOGGER +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78443_ net/minecraft/world/level/storage/PrimaryLevelData/settings +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78445_ net/minecraft/world/level/storage/PrimaryLevelData/worldGenSettingsLifecycle +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78446_ net/minecraft/world/level/storage/PrimaryLevelData/xSpawn +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78447_ net/minecraft/world/level/storage/PrimaryLevelData/ySpawn +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78448_ net/minecraft/world/level/storage/PrimaryLevelData/zSpawn +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78449_ net/minecraft/world/level/storage/PrimaryLevelData/spawnAngle +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78450_ net/minecraft/world/level/storage/PrimaryLevelData/gameTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78451_ net/minecraft/world/level/storage/PrimaryLevelData/dayTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78452_ net/minecraft/world/level/storage/PrimaryLevelData/fixerUpper +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78453_ net/minecraft/world/level/storage/PrimaryLevelData/playerDataVersion +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78454_ net/minecraft/world/level/storage/PrimaryLevelData/upgradedPlayerTag +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78455_ net/minecraft/world/level/storage/PrimaryLevelData/loadedPlayerTag +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78456_ net/minecraft/world/level/storage/PrimaryLevelData/version +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78457_ net/minecraft/world/level/storage/PrimaryLevelData/clearWeatherTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78458_ net/minecraft/world/level/storage/PrimaryLevelData/raining +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78459_ net/minecraft/world/level/storage/PrimaryLevelData/rainTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78460_ net/minecraft/world/level/storage/PrimaryLevelData/thundering +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78461_ net/minecraft/world/level/storage/PrimaryLevelData/thunderTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78462_ net/minecraft/world/level/storage/PrimaryLevelData/initialized +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78463_ net/minecraft/world/level/storage/PrimaryLevelData/difficultyLocked +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78464_ net/minecraft/world/level/storage/PrimaryLevelData/worldBorder +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78465_ net/minecraft/world/level/storage/PrimaryLevelData/endDragonFightData +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78466_ net/minecraft/world/level/storage/PrimaryLevelData/customBossEvents +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78467_ net/minecraft/world/level/storage/PrimaryLevelData/wanderingTraderSpawnDelay +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/$VALUES net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/$VALUES +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/DEBUG net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/DEBUG +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/FLAT net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/FLAT +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/NONE net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/NONE +FD: net/minecraft/world/level/storage/WorldData/f_164978_ net/minecraft/world/level/storage/WorldData/ANVIL_VERSION_ID +FD: net/minecraft/world/level/storage/WorldData/f_164979_ net/minecraft/world/level/storage/WorldData/MCREGION_VERSION_ID +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_230876_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ANCIENT_CITY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_230877_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ANCIENT_CITY_ICE_BOX +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276611_ net/minecraft/world/level/storage/loot/BuiltInLootTables/OCEAN_RUIN_WARM_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276614_ net/minecraft/world/level/storage/loot/BuiltInLootTables/OCEAN_RUIN_COLD_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276661_ net/minecraft/world/level/storage/loot/BuiltInLootTables/DESERT_PYRAMID_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276662_ net/minecraft/world/level/storage/loot/BuiltInLootTables/DESERT_WELL_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_279573_ net/minecraft/world/level/storage/loot/BuiltInLootTables/TRAIL_RUINS_ARCHAEOLOGY_COMMON +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_279604_ net/minecraft/world/level/storage/loot/BuiltInLootTables/TRAIL_RUINS_ARCHAEOLOGY_RARE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_283841_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SNIFFER_DIGGING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78686_ net/minecraft/world/level/storage/loot/BuiltInLootTables/JUNGLE_TEMPLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78687_ net/minecraft/world/level/storage/loot/BuiltInLootTables/JUNGLE_TEMPLE_DISPENSER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78688_ net/minecraft/world/level/storage/loot/BuiltInLootTables/IGLOO_CHEST +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78689_ net/minecraft/world/level/storage/loot/BuiltInLootTables/WOODLAND_MANSION +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78690_ net/minecraft/world/level/storage/loot/BuiltInLootTables/UNDERWATER_RUIN_SMALL +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78691_ net/minecraft/world/level/storage/loot/BuiltInLootTables/UNDERWATER_RUIN_BIG +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78692_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BURIED_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78693_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHIPWRECK_MAP +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78694_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHIPWRECK_SUPPLY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78695_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHIPWRECK_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78696_ net/minecraft/world/level/storage/loot/BuiltInLootTables/PILLAGER_OUTPOST +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78697_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78698_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_OTHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78699_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_BRIDGE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78700_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_HOGLIN_STABLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78701_ net/minecraft/world/level/storage/loot/BuiltInLootTables/RUINED_PORTAL +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78702_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_WHITE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78703_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_ORANGE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78704_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_MAGENTA +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78705_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_LIGHT_BLUE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78706_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_YELLOW +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78707_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_LIME +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78708_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_PINK +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78709_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_GRAY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78710_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_LIGHT_GRAY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78711_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_CYAN +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78712_ net/minecraft/world/level/storage/loot/BuiltInLootTables/EMPTY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78713_ net/minecraft/world/level/storage/loot/BuiltInLootTables/IMMUTABLE_LOCATIONS +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78714_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_PURPLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78715_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_BLUE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78716_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_BROWN +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78717_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_GREEN +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78718_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_RED +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78719_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_BLACK +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78720_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78721_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING_JUNK +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78722_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78723_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING_FISH +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78724_ net/minecraft/world/level/storage/loot/BuiltInLootTables/CAT_MORNING_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78725_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ARMORER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78726_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BUTCHER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78727_ net/minecraft/world/level/storage/loot/BuiltInLootTables/CARTOGRAPHER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78728_ net/minecraft/world/level/storage/loot/BuiltInLootTables/CLERIC_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78729_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FARMER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78730_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHERMAN_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78731_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FLETCHER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78732_ net/minecraft/world/level/storage/loot/BuiltInLootTables/LEATHERWORKER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78733_ net/minecraft/world/level/storage/loot/BuiltInLootTables/LIBRARIAN_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78734_ net/minecraft/world/level/storage/loot/BuiltInLootTables/MASON_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78735_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEPHERD_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78736_ net/minecraft/world/level/storage/loot/BuiltInLootTables/TOOLSMITH_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78737_ net/minecraft/world/level/storage/loot/BuiltInLootTables/WEAPONSMITH_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78738_ net/minecraft/world/level/storage/loot/BuiltInLootTables/PIGLIN_BARTERING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78739_ net/minecraft/world/level/storage/loot/BuiltInLootTables/LOCATIONS +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78740_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SPAWN_BONUS_CHEST +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78741_ net/minecraft/world/level/storage/loot/BuiltInLootTables/END_CITY_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78742_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SIMPLE_DUNGEON +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78743_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_WEAPONSMITH +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78744_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TOOLSMITH +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78745_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_ARMORER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78746_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_CARTOGRAPHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78747_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_MASON +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78748_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_SHEPHERD +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78749_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_BUTCHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78750_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_FLETCHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78751_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_FISHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78752_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TANNERY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78753_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TEMPLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78754_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_DESERT_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78755_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_PLAINS_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78756_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TAIGA_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78757_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_SNOWY_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78758_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_SAVANNA_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78759_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ABANDONED_MINESHAFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78760_ net/minecraft/world/level/storage/loot/BuiltInLootTables/NETHER_BRIDGE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78761_ net/minecraft/world/level/storage/loot/BuiltInLootTables/STRONGHOLD_LIBRARY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78762_ net/minecraft/world/level/storage/loot/BuiltInLootTables/STRONGHOLD_CROSSING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78763_ net/minecraft/world/level/storage/loot/BuiltInLootTables/STRONGHOLD_CORRIDOR +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78764_ net/minecraft/world/level/storage/loot/BuiltInLootTables/DESERT_PYRAMID +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_164983_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/inlineType +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78806_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/registry +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78807_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/elementName +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78808_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/typeKey +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78809_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/typeGetter +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78810_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/defaultType +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_164993_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/inlineType +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78829_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/registry +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78830_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/elementName +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78831_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/typeKey +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78832_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/typeGetter +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78833_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/defaultType +FD: net/minecraft/world/level/storage/loot/IntRange/f_165001_ net/minecraft/world/level/storage/loot/IntRange/min +FD: net/minecraft/world/level/storage/loot/IntRange/f_165002_ net/minecraft/world/level/storage/loot/IntRange/max +FD: net/minecraft/world/level/storage/loot/IntRange/f_165003_ net/minecraft/world/level/storage/loot/IntRange/limiter +FD: net/minecraft/world/level/storage/loot/IntRange/f_165004_ net/minecraft/world/level/storage/loot/IntRange/predicate +FD: net/minecraft/world/level/storage/loot/LootContext/f_278421_ net/minecraft/world/level/storage/loot/LootContext/lootDataResolver +FD: net/minecraft/world/level/storage/loot/LootContext/f_278466_ net/minecraft/world/level/storage/loot/LootContext/visitedElements +FD: net/minecraft/world/level/storage/loot/LootContext/f_78907_ net/minecraft/world/level/storage/loot/LootContext/random +FD: net/minecraft/world/level/storage/loot/LootContext/f_78914_ net/minecraft/world/level/storage/loot/LootContext/params +FD: net/minecraft/world/level/storage/loot/LootContext$Builder/f_78956_ net/minecraft/world/level/storage/loot/LootContext$Builder/params +FD: net/minecraft/world/level/storage/loot/LootContext$Builder/f_78958_ net/minecraft/world/level/storage/loot/LootContext$Builder/random +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/$VALUES net/minecraft/world/level/storage/loot/LootContext$EntityTarget/$VALUES +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/DIRECT_KILLER net/minecraft/world/level/storage/loot/LootContext$EntityTarget/DIRECT_KILLER +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER_PLAYER net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER_PLAYER +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/THIS net/minecraft/world/level/storage/loot/LootContext$EntityTarget/THIS +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/f_78994_ net/minecraft/world/level/storage/loot/LootContext$EntityTarget/name +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/f_78995_ net/minecraft/world/level/storage/loot/LootContext$EntityTarget/param +FD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278374_ net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/value +FD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278478_ net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/type +FD: net/minecraft/world/level/storage/loot/LootDataId/f_278383_ net/minecraft/world/level/storage/loot/LootDataId/type +FD: net/minecraft/world/level/storage/loot/LootDataId/f_278500_ net/minecraft/world/level/storage/loot/LootDataId/location +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278404_ net/minecraft/world/level/storage/loot/LootDataManager/typeKeys +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278415_ net/minecraft/world/level/storage/loot/LootDataManager/elements +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278474_ net/minecraft/world/level/storage/loot/LootDataManager/EMPTY_LOOT_TABLE_KEY +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278476_ net/minecraft/world/level/storage/loot/LootDataManager/LOGGER +FD: net/minecraft/world/level/storage/loot/LootDataManager$1/f_278380_ net/minecraft/world/level/storage/loot/LootDataManager$1/val$bakedElements +FD: net/minecraft/world/level/storage/loot/LootDataManager$1/f_278498_ net/minecraft/world/level/storage/loot/LootDataManager$1/this$0 +FD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/f_278433_ net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/composedPredicate +FD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/f_278503_ net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/terms +FD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/f_278409_ net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/compositeFunction +FD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/f_278417_ net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/functions +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278407_ net/minecraft/world/level/storage/loot/LootDataType/PREDICATE +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278413_ net/minecraft/world/level/storage/loot/LootDataType/TABLE +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278425_ net/minecraft/world/level/storage/loot/LootDataType/LOGGER +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278443_ net/minecraft/world/level/storage/loot/LootDataType/validator +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278462_ net/minecraft/world/level/storage/loot/LootDataType/directory +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278485_ net/minecraft/world/level/storage/loot/LootDataType/topDeserializer +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278496_ net/minecraft/world/level/storage/loot/LootDataType/MODIFIER +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278508_ net/minecraft/world/level/storage/loot/LootDataType/parser +FD: net/minecraft/world/level/storage/loot/LootParams/f_286955_ net/minecraft/world/level/storage/loot/LootParams/dynamicDrops +FD: net/minecraft/world/level/storage/loot/LootParams/f_286957_ net/minecraft/world/level/storage/loot/LootParams/luck +FD: net/minecraft/world/level/storage/loot/LootParams/f_286977_ net/minecraft/world/level/storage/loot/LootParams/params +FD: net/minecraft/world/level/storage/loot/LootParams/f_286983_ net/minecraft/world/level/storage/loot/LootParams/level +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_286934_ net/minecraft/world/level/storage/loot/LootParams$Builder/level +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_286945_ net/minecraft/world/level/storage/loot/LootParams$Builder/params +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_286986_ net/minecraft/world/level/storage/loot/LootParams$Builder/dynamicDrops +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_287000_ net/minecraft/world/level/storage/loot/LootParams$Builder/luck +FD: net/minecraft/world/level/storage/loot/LootPool/f_79023_ net/minecraft/world/level/storage/loot/LootPool/entries +FD: net/minecraft/world/level/storage/loot/LootPool/f_79024_ net/minecraft/world/level/storage/loot/LootPool/conditions +FD: net/minecraft/world/level/storage/loot/LootPool/f_79025_ net/minecraft/world/level/storage/loot/LootPool/compositeCondition +FD: net/minecraft/world/level/storage/loot/LootPool/f_79026_ net/minecraft/world/level/storage/loot/LootPool/functions +FD: net/minecraft/world/level/storage/loot/LootPool/f_79027_ net/minecraft/world/level/storage/loot/LootPool/compositeFunction +FD: net/minecraft/world/level/storage/loot/LootPool/f_79028_ net/minecraft/world/level/storage/loot/LootPool/rolls +FD: net/minecraft/world/level/storage/loot/LootPool/f_79029_ net/minecraft/world/level/storage/loot/LootPool/bonusRolls +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79067_ net/minecraft/world/level/storage/loot/LootPool$Builder/entries +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79068_ net/minecraft/world/level/storage/loot/LootPool$Builder/conditions +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79069_ net/minecraft/world/level/storage/loot/LootPool$Builder/functions +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79070_ net/minecraft/world/level/storage/loot/LootPool$Builder/rolls +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79071_ net/minecraft/world/level/storage/loot/LootPool$Builder/bonusRolls +FD: net/minecraft/world/level/storage/loot/LootTable/f_286958_ net/minecraft/world/level/storage/loot/LootTable/randomSequence +FD: net/minecraft/world/level/storage/loot/LootTable/f_79105_ net/minecraft/world/level/storage/loot/LootTable/EMPTY +FD: net/minecraft/world/level/storage/loot/LootTable/f_79106_ net/minecraft/world/level/storage/loot/LootTable/DEFAULT_PARAM_SET +FD: net/minecraft/world/level/storage/loot/LootTable/f_79107_ net/minecraft/world/level/storage/loot/LootTable/LOGGER +FD: net/minecraft/world/level/storage/loot/LootTable/f_79108_ net/minecraft/world/level/storage/loot/LootTable/paramSet +FD: net/minecraft/world/level/storage/loot/LootTable/f_79109_ net/minecraft/world/level/storage/loot/LootTable/pools +FD: net/minecraft/world/level/storage/loot/LootTable/f_79110_ net/minecraft/world/level/storage/loot/LootTable/functions +FD: net/minecraft/world/level/storage/loot/LootTable/f_79111_ net/minecraft/world/level/storage/loot/LootTable/compositeFunction +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_287003_ net/minecraft/world/level/storage/loot/LootTable$Builder/randomSequence +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_79156_ net/minecraft/world/level/storage/loot/LootTable$Builder/pools +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_79157_ net/minecraft/world/level/storage/loot/LootTable$Builder/functions +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_79158_ net/minecraft/world/level/storage/loot/LootTable$Builder/paramSet +FD: net/minecraft/world/level/storage/loot/SerializerType/f_79328_ net/minecraft/world/level/storage/loot/SerializerType/serializer +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_278480_ net/minecraft/world/level/storage/loot/ValidationContext/resolver +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_278483_ net/minecraft/world/level/storage/loot/ValidationContext/visitedElements +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79332_ net/minecraft/world/level/storage/loot/ValidationContext/problems +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79333_ net/minecraft/world/level/storage/loot/ValidationContext/context +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79334_ net/minecraft/world/level/storage/loot/ValidationContext/params +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79339_ net/minecraft/world/level/storage/loot/ValidationContext/contextCache +FD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/f_79397_ net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/entries +FD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/f_79405_ net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ALWAYS_FALSE +FD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/f_79406_ net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ALWAYS_TRUE +FD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/f_79428_ net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/children +FD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/f_79429_ net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/composedChildren +FD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/f_79441_ net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/val$constructor +FD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/f_79463_ net/minecraft/world/level/storage/loot/entries/DynamicLoot/name +FD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/f_165139_ net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/entries +FD: net/minecraft/world/level/storage/loot/entries/LootItem/f_79564_ net/minecraft/world/level/storage/loot/entries/LootItem/item +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79619_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/EMPTY +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79620_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ITEM +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79621_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/REFERENCE +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79622_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/DYNAMIC +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79623_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/TAG +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79624_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ALTERNATIVES +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79625_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/SEQUENCE +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79626_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/GROUP +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/f_79635_ net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/compositeCondition +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/f_79636_ net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/conditions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/f_79642_ net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/conditions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_165150_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/DEFAULT_WEIGHT +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_165151_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/DEFAULT_QUALITY +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79675_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/weight +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79676_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/quality +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79677_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/functions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79678_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/compositeFunction +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79679_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/entry +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/f_79696_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/this$0 +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/f_79702_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/weight +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/f_79703_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/quality +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/f_79704_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/functions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/f_79715_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/constructor +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/f_79721_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/this$0 +FD: net/minecraft/world/level/storage/loot/entries/LootTableReference/f_79754_ net/minecraft/world/level/storage/loot/entries/LootTableReference/name +FD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/f_165154_ net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/entries +FD: net/minecraft/world/level/storage/loot/entries/TagEntry/f_79821_ net/minecraft/world/level/storage/loot/entries/TagEntry/tag +FD: net/minecraft/world/level/storage/loot/entries/TagEntry/f_79822_ net/minecraft/world/level/storage/loot/entries/TagEntry/expand +FD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/f_79863_ net/minecraft/world/level/storage/loot/entries/TagEntry$1/val$item +FD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/f_79864_ net/minecraft/world/level/storage/loot/entries/TagEntry$1/this$0 +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/f_79898_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/FORMULAS +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/f_79899_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/enchantment +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/f_79900_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/formula +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/f_79947_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/TYPE +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/f_79948_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/extraRounds +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/f_79949_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/probability +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/f_79973_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/TYPE +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/f_80012_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/TYPE +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/f_80013_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/bonusMultiplier +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/f_80047_ net/minecraft/world/level/storage/loot/functions/CopyBlockState/block +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/f_80048_ net/minecraft/world/level/storage/loot/functions/CopyBlockState/properties +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/f_80076_ net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/block +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/f_80077_ net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/properties +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/f_80175_ net/minecraft/world/level/storage/loot/functions/CopyNameFunction/source +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/$VALUES net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/$VALUES +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/BLOCK_ENTITY net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/BLOCK_ENTITY +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER_PLAYER net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER_PLAYER +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/THIS net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/THIS +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/f_80199_ net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/name +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/f_80200_ net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/param +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/f_80234_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/source +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/f_80235_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/operations +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/f_80271_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/source +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/f_80272_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/ops +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80288_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/sourcePathText +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80289_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/sourcePath +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80290_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/targetPathText +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80291_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/targetPath +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80292_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/op +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/$VALUES net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/$VALUES +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/APPEND net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/APPEND +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/MERGE net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/MERGE +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/REPLACE net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/REPLACE +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/f_80335_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/name +FD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/f_80414_ net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/f_80415_ net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/enchantments +FD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/f_80441_ net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/enchantments +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/f_80471_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/levels +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/f_80472_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/treasure +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/f_80492_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/levels +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/f_80493_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/treasure +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165201_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_DECORATION_NAME +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165202_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_ZOOM +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165203_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_SEARCH_RADIUS +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165204_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_SKIP_EXISTING +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_230983_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_DESTINATION +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80522_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_DECORATION +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80523_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80524_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/destination +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80525_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/mapDecoration +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80526_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/zoom +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80527_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/searchRadius +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80528_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/skipKnownStructures +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80562_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/destination +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80563_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/mapDecoration +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80564_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/zoom +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80565_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/searchRadius +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80566_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/skipKnownStructures +FD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/f_80602_ net/minecraft/world/level/storage/loot/functions/FillPlayerHead/entityTarget +FD: net/minecraft/world/level/storage/loot/functions/FunctionReference/f_278448_ net/minecraft/world/level/storage/loot/functions/FunctionReference/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/FunctionReference/f_278490_ net/minecraft/world/level/storage/loot/functions/FunctionReference/name +FD: net/minecraft/world/level/storage/loot/functions/LimitCount/f_80635_ net/minecraft/world/level/storage/loot/functions/LimitCount/limiter +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/f_80675_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/compositePredicates +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/f_80676_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/predicates +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/f_80691_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/conditions +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/f_80700_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/constructor +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_165221_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_ENCHANTMENTS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_165222_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_BANNER_PATTERN +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_193030_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_POTION +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_230994_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_INSTRUMENT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_278442_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/REFERENCE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80735_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/IDENTITY +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80736_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_COUNT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80737_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ENCHANT_WITH_LEVELS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80738_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ENCHANT_RANDOMLY +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80739_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_NBT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80740_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/FURNACE_SMELT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80741_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/LOOTING_ENCHANT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80742_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_DAMAGE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80743_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_ATTRIBUTES +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80744_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_NAME +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80745_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/EXPLORATION_MAP +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80746_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_STEW_EFFECT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80747_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/COPY_NAME +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80748_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_CONTENTS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80749_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/LIMIT_COUNT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80750_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/APPLY_BONUS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80751_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_LOOT_TABLE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80752_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/EXPLOSION_DECAY +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80753_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_LORE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80754_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/FILL_PLAYER_HEAD +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80755_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/COPY_NBT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80756_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/COPY_STATE +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/f_165224_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/NO_LIMIT +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/f_80776_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/value +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/f_80777_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/limit +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/f_80801_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/count +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/f_80802_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/limit +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/f_80831_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/modifiers +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/f_80845_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/$SwitchMap$net$minecraft$world$entity$ai$attributes$AttributeModifier$Operation +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/f_165242_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/modifiers +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80847_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/name +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80848_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/attribute +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80849_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/operation +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80850_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/amount +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80851_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/id +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80852_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/slots +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165256_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/name +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165257_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/attribute +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165258_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/operation +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165259_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/amount +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165260_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/id +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165261_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/slots +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/f_165272_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/patterns +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/f_165273_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/append +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/f_165284_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/patterns +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/f_165285_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/append +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/f_193031_ net/minecraft/world/level/storage/loot/functions/SetContainerContents/type +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/f_80902_ net/minecraft/world/level/storage/loot/functions/SetContainerContents/entries +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/f_193038_ net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/type +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/f_80927_ net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/entries +FD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/f_193043_ net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/type +FD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/f_80955_ net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/name +FD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/f_80956_ net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/seed +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/f_165334_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/enchantments +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/f_165335_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/add +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/f_165368_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/enchantments +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/f_165369_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/add +FD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/f_231006_ net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/options +FD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/f_165407_ net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/add +FD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/f_80997_ net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/value +FD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/f_165425_ net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/add +FD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/f_81037_ net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/f_81038_ net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/damage +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/f_81079_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction/replace +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/f_81080_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction/lore +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/f_81081_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction/resolutionContext +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/f_165444_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/replace +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/f_165445_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/resolutionContext +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/f_165446_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/lore +FD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/f_81122_ net/minecraft/world/level/storage/loot/functions/SetNameFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/f_81123_ net/minecraft/world/level/storage/loot/functions/SetNameFunction/name +FD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/f_81124_ net/minecraft/world/level/storage/loot/functions/SetNameFunction/resolutionContext +FD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/f_81174_ net/minecraft/world/level/storage/loot/functions/SetNbtFunction/tag +FD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/f_193067_ net/minecraft/world/level/storage/loot/functions/SetPotionFunction/potion +FD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/f_81214_ net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/effectDurationMap +FD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/f_81229_ net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/effectDurationMap +FD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/f_81260_ net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/f_81281_ net/minecraft/world/level/storage/loot/parameters/LootContextParam/name +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/f_81385_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/required +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/f_81386_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/all +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/f_81402_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/required +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/f_81403_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/optional +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_271368_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_285637_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ADVANCEMENT_LOCATION +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81410_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/EMPTY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81411_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/CHEST +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81412_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/COMMAND +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81413_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/SELECTOR +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81414_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/FISHING +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81415_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81416_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/GIFT +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81417_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/PIGLIN_BARTER +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81418_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ADVANCEMENT_REWARD +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81419_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ADVANCEMENT_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81420_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ALL_PARAMS +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81421_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/BLOCK +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81422_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/REGISTRY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81455_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/THIS_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81456_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/LAST_DAMAGE_PLAYER +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81457_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/DAMAGE_SOURCE +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81458_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/KILLER_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81459_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/DIRECT_KILLER_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81460_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/ORIGIN +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81461_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/BLOCK_STATE +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81462_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/BLOCK_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81463_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/TOOL +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81464_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/EXPLOSION_RADIUS +FD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/f_81507_ net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/enchantment +FD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/f_81508_ net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/values +FD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/f_285609_ net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/terms +FD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/f_285616_ net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/composedPredicate +FD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/f_285633_ net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/terms +FD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/f_81549_ net/minecraft/world/level/storage/loot/predicates/ConditionReference/LOGGER +FD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/f_81550_ net/minecraft/world/level/storage/loot/predicates/ConditionReference/name +FD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/f_81582_ net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/predicate +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/f_81615_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/scores +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/f_81616_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/entityTarget +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/f_165496_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/scores +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/f_165497_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/entityTarget +FD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/f_81654_ net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/INSTANCE +FD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/f_81681_ net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/term +FD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/f_81716_ net/minecraft/world/level/storage/loot/predicates/LocationCheck/predicate +FD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/f_81717_ net/minecraft/world/level/storage/loot/predicates/LocationCheck/offset +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/f_81759_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/block +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/f_81760_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/properties +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/f_81780_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/block +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/f_81781_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/properties +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_165504_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/VALUE_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_285643_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ANY_OF +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_285646_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ALL_OF +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81811_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/INVERTED +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81813_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/RANDOM_CHANCE +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81814_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/RANDOM_CHANCE_WITH_LOOTING +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81815_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ENTITY_PROPERTIES +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81816_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/KILLED_BY_PLAYER +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81817_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ENTITY_SCORES +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81818_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/BLOCK_STATE_PROPERTY +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81819_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/MATCH_TOOL +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81820_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/TABLE_BONUS +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81821_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/SURVIVES_EXPLOSION +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81822_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/DAMAGE_SOURCE_PROPERTIES +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81823_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/LOCATION_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81824_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/WEATHER_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81825_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/REFERENCE +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81826_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/TIME_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/f_81846_ net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/predicate +FD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/f_81847_ net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/entityTarget +FD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/f_81894_ net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/INSTANCE +FD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/f_81921_ net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/probability +FD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/f_81953_ net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/percent +FD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/f_81954_ net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/lootingMultiplier +FD: net/minecraft/world/level/storage/loot/predicates/MatchTool/f_81993_ net/minecraft/world/level/storage/loot/predicates/MatchTool/predicate +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/f_82023_ net/minecraft/world/level/storage/loot/predicates/TimeCheck/period +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/f_82024_ net/minecraft/world/level/storage/loot/predicates/TimeCheck/value +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/f_165512_ net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/period +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/f_165513_ net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/value +FD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/f_165520_ net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/provider +FD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/f_165521_ net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/range +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/f_82056_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck/isRaining +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/f_82057_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck/isThundering +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/f_165553_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/isRaining +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/f_165554_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/isThundering +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165562_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/BLOCK_ENTITY +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165563_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/BLOCK_ENTITY_ID +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165564_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/BLOCK_ENTITY_PROVIDER +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165565_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/getter +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/f_165584_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/val$target +FD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/f_165623_ net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/STORAGE +FD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/f_165624_ net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/CONTEXT +FD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/f_165631_ net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/id +FD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/f_165653_ net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/n +FD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/f_165654_ net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/p +FD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/f_165688_ net/minecraft/world/level/storage/loot/providers/number/ConstantValue/value +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165731_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/CONSTANT +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165732_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/UNIFORM +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165733_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/BINOMIAL +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165734_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/SCORE +FD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/f_165741_ net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/target +FD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/f_165742_ net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/score +FD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/f_165743_ net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/scale +FD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/f_165774_ net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/min +FD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/f_165775_ net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/max +FD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/f_165803_ net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/target +FD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/f_165840_ net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/name +FD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/f_165868_ net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/FIXED +FD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/f_165869_ net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/CONTEXT +FD: net/minecraft/world/level/timers/FunctionCallback/f_82162_ net/minecraft/world/level/timers/FunctionCallback/functionId +FD: net/minecraft/world/level/timers/FunctionTagCallback/f_82189_ net/minecraft/world/level/timers/FunctionTagCallback/tagId +FD: net/minecraft/world/level/timers/TimerCallback$Serializer/f_82216_ net/minecraft/world/level/timers/TimerCallback$Serializer/id +FD: net/minecraft/world/level/timers/TimerCallback$Serializer/f_82217_ net/minecraft/world/level/timers/TimerCallback$Serializer/cls +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82226_ net/minecraft/world/level/timers/TimerCallbacks/SERVER_CALLBACKS +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82227_ net/minecraft/world/level/timers/TimerCallbacks/LOGGER +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82228_ net/minecraft/world/level/timers/TimerCallbacks/idToSerializer +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82229_ net/minecraft/world/level/timers/TimerCallbacks/classToSerializer +FD: net/minecraft/world/level/timers/TimerQueue/f_165876_ net/minecraft/world/level/timers/TimerQueue/CALLBACK_DATA_TAG +FD: net/minecraft/world/level/timers/TimerQueue/f_165877_ net/minecraft/world/level/timers/TimerQueue/TIMER_NAME_TAG +FD: net/minecraft/world/level/timers/TimerQueue/f_165878_ net/minecraft/world/level/timers/TimerQueue/TIMER_TRIGGER_TIME_TAG +FD: net/minecraft/world/level/timers/TimerQueue/f_82240_ net/minecraft/world/level/timers/TimerQueue/LOGGER +FD: net/minecraft/world/level/timers/TimerQueue/f_82241_ net/minecraft/world/level/timers/TimerQueue/callbacksRegistry +FD: net/minecraft/world/level/timers/TimerQueue/f_82242_ net/minecraft/world/level/timers/TimerQueue/queue +FD: net/minecraft/world/level/timers/TimerQueue/f_82243_ net/minecraft/world/level/timers/TimerQueue/sequentialId +FD: net/minecraft/world/level/timers/TimerQueue/f_82244_ net/minecraft/world/level/timers/TimerQueue/events +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82273_ net/minecraft/world/level/timers/TimerQueue$Event/triggerTime +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82274_ net/minecraft/world/level/timers/TimerQueue$Event/sequentialId +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82275_ net/minecraft/world/level/timers/TimerQueue$Event/id +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82276_ net/minecraft/world/level/timers/TimerQueue$Event/callback +FD: net/minecraft/world/level/validation/ContentValidationException/f_289822_ net/minecraft/world/level/validation/ContentValidationException/directory +FD: net/minecraft/world/level/validation/ContentValidationException/f_289835_ net/minecraft/world/level/validation/ContentValidationException/entries +FD: net/minecraft/world/level/validation/DirectoryValidator/f_289823_ net/minecraft/world/level/validation/DirectoryValidator/symlinkTargetAllowList +FD: net/minecraft/world/level/validation/DirectoryValidator$1/f_289831_ net/minecraft/world/level/validation/DirectoryValidator$1/val$issues +FD: net/minecraft/world/level/validation/DirectoryValidator$1/f_289834_ net/minecraft/world/level/validation/DirectoryValidator$1/this$0 +FD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289826_ net/minecraft/world/level/validation/ForbiddenSymlinkInfo/link +FD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289840_ net/minecraft/world/level/validation/ForbiddenSymlinkInfo/target +FD: net/minecraft/world/level/validation/PathAllowList/f_289818_ net/minecraft/world/level/validation/PathAllowList/compiledPaths +FD: net/minecraft/world/level/validation/PathAllowList/f_289820_ net/minecraft/world/level/validation/PathAllowList/entries +FD: net/minecraft/world/level/validation/PathAllowList/f_289821_ net/minecraft/world/level/validation/PathAllowList/COMMENT_PREFIX +FD: net/minecraft/world/level/validation/PathAllowList/f_289832_ net/minecraft/world/level/validation/PathAllowList/LOGGER +FD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289830_ net/minecraft/world/level/validation/PathAllowList$ConfigEntry/type +FD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289839_ net/minecraft/world/level/validation/PathAllowList$ConfigEntry/pattern +FD: net/minecraft/world/level/validation/PathAllowList$EntryType/f_289828_ net/minecraft/world/level/validation/PathAllowList$EntryType/FILESYSTEM +FD: net/minecraft/world/level/validation/PathAllowList$EntryType/f_289838_ net/minecraft/world/level/validation/PathAllowList$EntryType/PREFIX +FD: net/minecraft/world/phys/AABB/f_165879_ net/minecraft/world/phys/AABB/EPSILON +FD: net/minecraft/world/phys/AABB/f_82288_ net/minecraft/world/phys/AABB/minX +FD: net/minecraft/world/phys/AABB/f_82289_ net/minecraft/world/phys/AABB/minY +FD: net/minecraft/world/phys/AABB/f_82290_ net/minecraft/world/phys/AABB/minZ +FD: net/minecraft/world/phys/AABB/f_82291_ net/minecraft/world/phys/AABB/maxX +FD: net/minecraft/world/phys/AABB/f_82292_ net/minecraft/world/phys/AABB/maxY +FD: net/minecraft/world/phys/AABB/f_82293_ net/minecraft/world/phys/AABB/maxZ +FD: net/minecraft/world/phys/BlockHitResult/f_82410_ net/minecraft/world/phys/BlockHitResult/direction +FD: net/minecraft/world/phys/BlockHitResult/f_82411_ net/minecraft/world/phys/BlockHitResult/blockPos +FD: net/minecraft/world/phys/BlockHitResult/f_82412_ net/minecraft/world/phys/BlockHitResult/miss +FD: net/minecraft/world/phys/BlockHitResult/f_82413_ net/minecraft/world/phys/BlockHitResult/inside +FD: net/minecraft/world/phys/EntityHitResult/f_82437_ net/minecraft/world/phys/EntityHitResult/entity +FD: net/minecraft/world/phys/HitResult/f_82445_ net/minecraft/world/phys/HitResult/location +FD: net/minecraft/world/phys/HitResult$Type/$VALUES net/minecraft/world/phys/HitResult$Type/$VALUES +FD: net/minecraft/world/phys/HitResult$Type/BLOCK net/minecraft/world/phys/HitResult$Type/BLOCK +FD: net/minecraft/world/phys/HitResult$Type/ENTITY net/minecraft/world/phys/HitResult$Type/ENTITY +FD: net/minecraft/world/phys/HitResult$Type/MISS net/minecraft/world/phys/HitResult$Type/MISS +FD: net/minecraft/world/phys/Vec2/f_82462_ net/minecraft/world/phys/Vec2/ZERO +FD: net/minecraft/world/phys/Vec2/f_82463_ net/minecraft/world/phys/Vec2/ONE +FD: net/minecraft/world/phys/Vec2/f_82464_ net/minecraft/world/phys/Vec2/UNIT_X +FD: net/minecraft/world/phys/Vec2/f_82465_ net/minecraft/world/phys/Vec2/NEG_UNIT_X +FD: net/minecraft/world/phys/Vec2/f_82466_ net/minecraft/world/phys/Vec2/UNIT_Y +FD: net/minecraft/world/phys/Vec2/f_82467_ net/minecraft/world/phys/Vec2/NEG_UNIT_Y +FD: net/minecraft/world/phys/Vec2/f_82468_ net/minecraft/world/phys/Vec2/MAX +FD: net/minecraft/world/phys/Vec2/f_82469_ net/minecraft/world/phys/Vec2/MIN +FD: net/minecraft/world/phys/Vec2/f_82470_ net/minecraft/world/phys/Vec2/x +FD: net/minecraft/world/phys/Vec2/f_82471_ net/minecraft/world/phys/Vec2/y +FD: net/minecraft/world/phys/Vec3/f_231074_ net/minecraft/world/phys/Vec3/CODEC +FD: net/minecraft/world/phys/Vec3/f_82478_ net/minecraft/world/phys/Vec3/ZERO +FD: net/minecraft/world/phys/Vec3/f_82479_ net/minecraft/world/phys/Vec3/x +FD: net/minecraft/world/phys/Vec3/f_82480_ net/minecraft/world/phys/Vec3/y +FD: net/minecraft/world/phys/Vec3/f_82481_ net/minecraft/world/phys/Vec3/z +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape/f_82563_ net/minecraft/world/phys/shapes/ArrayVoxelShape/xs +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape/f_82564_ net/minecraft/world/phys/shapes/ArrayVoxelShape/ys +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape/f_82565_ net/minecraft/world/phys/shapes/ArrayVoxelShape/zs +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape$1/f_82578_ net/minecraft/world/phys/shapes/ArrayVoxelShape$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82580_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/storage +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82581_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/xMin +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82582_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/yMin +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82583_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/zMin +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82584_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/xMax +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82585_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/yMax +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82586_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/zMax +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82681_ net/minecraft/world/phys/shapes/BooleanOp/FALSE +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82682_ net/minecraft/world/phys/shapes/BooleanOp/NOT_OR +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82683_ net/minecraft/world/phys/shapes/BooleanOp/ONLY_SECOND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82684_ net/minecraft/world/phys/shapes/BooleanOp/NOT_FIRST +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82685_ net/minecraft/world/phys/shapes/BooleanOp/ONLY_FIRST +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82686_ net/minecraft/world/phys/shapes/BooleanOp/NOT_SECOND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82687_ net/minecraft/world/phys/shapes/BooleanOp/NOT_SAME +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82688_ net/minecraft/world/phys/shapes/BooleanOp/NOT_AND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82689_ net/minecraft/world/phys/shapes/BooleanOp/AND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82690_ net/minecraft/world/phys/shapes/BooleanOp/SAME +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82691_ net/minecraft/world/phys/shapes/BooleanOp/SECOND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82692_ net/minecraft/world/phys/shapes/BooleanOp/CAUSES +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82693_ net/minecraft/world/phys/shapes/BooleanOp/FIRST +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82694_ net/minecraft/world/phys/shapes/BooleanOp/CAUSED_BY +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82695_ net/minecraft/world/phys/shapes/BooleanOp/OR +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82696_ net/minecraft/world/phys/shapes/BooleanOp/TRUE +FD: net/minecraft/world/phys/shapes/CubePointRange/f_82758_ net/minecraft/world/phys/shapes/CubePointRange/parts +FD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/f_165991_ net/minecraft/world/phys/shapes/DiscreteCubeMerger/firstDiv +FD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/f_165992_ net/minecraft/world/phys/shapes/DiscreteCubeMerger/secondDiv +FD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/f_82771_ net/minecraft/world/phys/shapes/DiscreteCubeMerger/result +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82781_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/xSize +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82782_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/ySize +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82783_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/zSize +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82784_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/AXIS_VALUES +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_166002_ net/minecraft/world/phys/shapes/EntityCollisionContext/entity +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82865_ net/minecraft/world/phys/shapes/EntityCollisionContext/EMPTY +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82866_ net/minecraft/world/phys/shapes/EntityCollisionContext/descending +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82867_ net/minecraft/world/phys/shapes/EntityCollisionContext/entityBottom +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82868_ net/minecraft/world/phys/shapes/EntityCollisionContext/heldItem +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82869_ net/minecraft/world/phys/shapes/EntityCollisionContext/canStandOnFluid +FD: net/minecraft/world/phys/shapes/IdenticalMerger/f_82901_ net/minecraft/world/phys/shapes/IdenticalMerger/coords +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_166021_ net/minecraft/world/phys/shapes/IndirectMerger/EMPTY +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_166022_ net/minecraft/world/phys/shapes/IndirectMerger/resultLength +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_82997_ net/minecraft/world/phys/shapes/IndirectMerger/result +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_82998_ net/minecraft/world/phys/shapes/IndirectMerger/firstIndices +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_82999_ net/minecraft/world/phys/shapes/IndirectMerger/secondIndices +FD: net/minecraft/world/phys/shapes/NonOverlappingMerger/f_83008_ net/minecraft/world/phys/shapes/NonOverlappingMerger/lower +FD: net/minecraft/world/phys/shapes/NonOverlappingMerger/f_83009_ net/minecraft/world/phys/shapes/NonOverlappingMerger/upper +FD: net/minecraft/world/phys/shapes/NonOverlappingMerger/f_83010_ net/minecraft/world/phys/shapes/NonOverlappingMerger/swap +FD: net/minecraft/world/phys/shapes/OffsetDoubleList/f_83028_ net/minecraft/world/phys/shapes/OffsetDoubleList/delegate +FD: net/minecraft/world/phys/shapes/OffsetDoubleList/f_83029_ net/minecraft/world/phys/shapes/OffsetDoubleList/offset +FD: net/minecraft/world/phys/shapes/Shapes/f_166025_ net/minecraft/world/phys/shapes/Shapes/EPSILON +FD: net/minecraft/world/phys/shapes/Shapes/f_166026_ net/minecraft/world/phys/shapes/Shapes/BIG_EPSILON +FD: net/minecraft/world/phys/shapes/Shapes/f_83036_ net/minecraft/world/phys/shapes/Shapes/INFINITY +FD: net/minecraft/world/phys/shapes/Shapes/f_83037_ net/minecraft/world/phys/shapes/Shapes/BLOCK +FD: net/minecraft/world/phys/shapes/Shapes/f_83038_ net/minecraft/world/phys/shapes/Shapes/EMPTY +FD: net/minecraft/world/phys/shapes/SliceShape/f_83168_ net/minecraft/world/phys/shapes/SliceShape/delegate +FD: net/minecraft/world/phys/shapes/SliceShape/f_83169_ net/minecraft/world/phys/shapes/SliceShape/axis +FD: net/minecraft/world/phys/shapes/SliceShape/f_83170_ net/minecraft/world/phys/shapes/SliceShape/SLICE_COORDS +FD: net/minecraft/world/phys/shapes/SubShape/f_83182_ net/minecraft/world/phys/shapes/SubShape/parent +FD: net/minecraft/world/phys/shapes/SubShape/f_83183_ net/minecraft/world/phys/shapes/SubShape/startX +FD: net/minecraft/world/phys/shapes/SubShape/f_83184_ net/minecraft/world/phys/shapes/SubShape/startY +FD: net/minecraft/world/phys/shapes/SubShape/f_83185_ net/minecraft/world/phys/shapes/SubShape/startZ +FD: net/minecraft/world/phys/shapes/SubShape/f_83186_ net/minecraft/world/phys/shapes/SubShape/endX +FD: net/minecraft/world/phys/shapes/SubShape/f_83187_ net/minecraft/world/phys/shapes/SubShape/endY +FD: net/minecraft/world/phys/shapes/SubShape/f_83188_ net/minecraft/world/phys/shapes/SubShape/endZ +FD: net/minecraft/world/phys/shapes/VoxelShape/f_83211_ net/minecraft/world/phys/shapes/VoxelShape/shape +FD: net/minecraft/world/phys/shapes/VoxelShape/f_83212_ net/minecraft/world/phys/shapes/VoxelShape/faces +FD: net/minecraft/world/scores/Objective/f_83301_ net/minecraft/world/scores/Objective/scoreboard +FD: net/minecraft/world/scores/Objective/f_83302_ net/minecraft/world/scores/Objective/name +FD: net/minecraft/world/scores/Objective/f_83303_ net/minecraft/world/scores/Objective/criteria +FD: net/minecraft/world/scores/Objective/f_83304_ net/minecraft/world/scores/Objective/displayName +FD: net/minecraft/world/scores/Objective/f_83305_ net/minecraft/world/scores/Objective/formattedDisplayName +FD: net/minecraft/world/scores/Objective/f_83306_ net/minecraft/world/scores/Objective/renderType +FD: net/minecraft/world/scores/PlayerTeam/f_166084_ net/minecraft/world/scores/PlayerTeam/BIT_FRIENDLY_FIRE +FD: net/minecraft/world/scores/PlayerTeam/f_166085_ net/minecraft/world/scores/PlayerTeam/BIT_SEE_INVISIBLES +FD: net/minecraft/world/scores/PlayerTeam/f_83326_ net/minecraft/world/scores/PlayerTeam/scoreboard +FD: net/minecraft/world/scores/PlayerTeam/f_83327_ net/minecraft/world/scores/PlayerTeam/name +FD: net/minecraft/world/scores/PlayerTeam/f_83328_ net/minecraft/world/scores/PlayerTeam/players +FD: net/minecraft/world/scores/PlayerTeam/f_83329_ net/minecraft/world/scores/PlayerTeam/displayName +FD: net/minecraft/world/scores/PlayerTeam/f_83330_ net/minecraft/world/scores/PlayerTeam/playerPrefix +FD: net/minecraft/world/scores/PlayerTeam/f_83331_ net/minecraft/world/scores/PlayerTeam/playerSuffix +FD: net/minecraft/world/scores/PlayerTeam/f_83332_ net/minecraft/world/scores/PlayerTeam/allowFriendlyFire +FD: net/minecraft/world/scores/PlayerTeam/f_83333_ net/minecraft/world/scores/PlayerTeam/seeFriendlyInvisibles +FD: net/minecraft/world/scores/PlayerTeam/f_83334_ net/minecraft/world/scores/PlayerTeam/nameTagVisibility +FD: net/minecraft/world/scores/PlayerTeam/f_83335_ net/minecraft/world/scores/PlayerTeam/deathMessageVisibility +FD: net/minecraft/world/scores/PlayerTeam/f_83336_ net/minecraft/world/scores/PlayerTeam/color +FD: net/minecraft/world/scores/PlayerTeam/f_83337_ net/minecraft/world/scores/PlayerTeam/collisionRule +FD: net/minecraft/world/scores/PlayerTeam/f_83338_ net/minecraft/world/scores/PlayerTeam/displayNameStyle +FD: net/minecraft/world/scores/Score/f_83380_ net/minecraft/world/scores/Score/SCORE_COMPARATOR +FD: net/minecraft/world/scores/Score/f_83381_ net/minecraft/world/scores/Score/scoreboard +FD: net/minecraft/world/scores/Score/f_83382_ net/minecraft/world/scores/Score/objective +FD: net/minecraft/world/scores/Score/f_83383_ net/minecraft/world/scores/Score/owner +FD: net/minecraft/world/scores/Score/f_83384_ net/minecraft/world/scores/Score/count +FD: net/minecraft/world/scores/Score/f_83385_ net/minecraft/world/scores/Score/locked +FD: net/minecraft/world/scores/Score/f_83386_ net/minecraft/world/scores/Score/forceUpdate +FD: net/minecraft/world/scores/Scoreboard/f_166087_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_LIST +FD: net/minecraft/world/scores/Scoreboard/f_166088_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_SIDEBAR +FD: net/minecraft/world/scores/Scoreboard/f_166089_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_BELOW_NAME +FD: net/minecraft/world/scores/Scoreboard/f_166090_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_TEAMS_SIDEBAR_START +FD: net/minecraft/world/scores/Scoreboard/f_166091_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_TEAMS_SIDEBAR_END +FD: net/minecraft/world/scores/Scoreboard/f_166092_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOTS +FD: net/minecraft/world/scores/Scoreboard/f_199933_ net/minecraft/world/scores/Scoreboard/LOGGER +FD: net/minecraft/world/scores/Scoreboard/f_83408_ net/minecraft/world/scores/Scoreboard/objectivesByName +FD: net/minecraft/world/scores/Scoreboard/f_83409_ net/minecraft/world/scores/Scoreboard/objectivesByCriteria +FD: net/minecraft/world/scores/Scoreboard/f_83410_ net/minecraft/world/scores/Scoreboard/playerScores +FD: net/minecraft/world/scores/Scoreboard/f_83411_ net/minecraft/world/scores/Scoreboard/displayObjectives +FD: net/minecraft/world/scores/Scoreboard/f_83412_ net/minecraft/world/scores/Scoreboard/teamsByName +FD: net/minecraft/world/scores/Scoreboard/f_83413_ net/minecraft/world/scores/Scoreboard/teamsByPlayer +FD: net/minecraft/world/scores/Scoreboard/f_83414_ net/minecraft/world/scores/Scoreboard/displaySlotNames +FD: net/minecraft/world/scores/ScoreboardSaveData/f_166099_ net/minecraft/world/scores/ScoreboardSaveData/FILE_ID +FD: net/minecraft/world/scores/ScoreboardSaveData/f_83509_ net/minecraft/world/scores/ScoreboardSaveData/scoreboard +FD: net/minecraft/world/scores/Team$CollisionRule/$VALUES net/minecraft/world/scores/Team$CollisionRule/$VALUES +FD: net/minecraft/world/scores/Team$CollisionRule/ALWAYS net/minecraft/world/scores/Team$CollisionRule/ALWAYS +FD: net/minecraft/world/scores/Team$CollisionRule/NEVER net/minecraft/world/scores/Team$CollisionRule/NEVER +FD: net/minecraft/world/scores/Team$CollisionRule/PUSH_OTHER_TEAMS net/minecraft/world/scores/Team$CollisionRule/PUSH_OTHER_TEAMS +FD: net/minecraft/world/scores/Team$CollisionRule/PUSH_OWN_TEAM net/minecraft/world/scores/Team$CollisionRule/PUSH_OWN_TEAM +FD: net/minecraft/world/scores/Team$CollisionRule/f_83543_ net/minecraft/world/scores/Team$CollisionRule/name +FD: net/minecraft/world/scores/Team$CollisionRule/f_83544_ net/minecraft/world/scores/Team$CollisionRule/id +FD: net/minecraft/world/scores/Team$CollisionRule/f_83545_ net/minecraft/world/scores/Team$CollisionRule/BY_NAME +FD: net/minecraft/world/scores/Team$Visibility/$VALUES net/minecraft/world/scores/Team$Visibility/$VALUES +FD: net/minecraft/world/scores/Team$Visibility/ALWAYS net/minecraft/world/scores/Team$Visibility/ALWAYS +FD: net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OTHER_TEAMS net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OTHER_TEAMS +FD: net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OWN_TEAM net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OWN_TEAM +FD: net/minecraft/world/scores/Team$Visibility/NEVER net/minecraft/world/scores/Team$Visibility/NEVER +FD: net/minecraft/world/scores/Team$Visibility/f_83567_ net/minecraft/world/scores/Team$Visibility/name +FD: net/minecraft/world/scores/Team$Visibility/f_83568_ net/minecraft/world/scores/Team$Visibility/id +FD: net/minecraft/world/scores/Team$Visibility/f_83569_ net/minecraft/world/scores/Team$Visibility/BY_NAME +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_166107_ net/minecraft/world/scores/criteria/ObjectiveCriteria/CUSTOM_CRITERIA +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_166108_ net/minecraft/world/scores/criteria/ObjectiveCriteria/CRITERIA_CACHE +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83588_ net/minecraft/world/scores/criteria/ObjectiveCriteria/DUMMY +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83589_ net/minecraft/world/scores/criteria/ObjectiveCriteria/TRIGGER +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83590_ net/minecraft/world/scores/criteria/ObjectiveCriteria/DEATH_COUNT +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83591_ net/minecraft/world/scores/criteria/ObjectiveCriteria/KILL_COUNT_PLAYERS +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83592_ net/minecraft/world/scores/criteria/ObjectiveCriteria/KILL_COUNT_ALL +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83593_ net/minecraft/world/scores/criteria/ObjectiveCriteria/HEALTH +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83594_ net/minecraft/world/scores/criteria/ObjectiveCriteria/FOOD +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83595_ net/minecraft/world/scores/criteria/ObjectiveCriteria/AIR +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83596_ net/minecraft/world/scores/criteria/ObjectiveCriteria/ARMOR +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83597_ net/minecraft/world/scores/criteria/ObjectiveCriteria/EXPERIENCE +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83598_ net/minecraft/world/scores/criteria/ObjectiveCriteria/LEVEL +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83599_ net/minecraft/world/scores/criteria/ObjectiveCriteria/TEAM_KILL +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83600_ net/minecraft/world/scores/criteria/ObjectiveCriteria/KILLED_BY_TEAM +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83601_ net/minecraft/world/scores/criteria/ObjectiveCriteria/name +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83602_ net/minecraft/world/scores/criteria/ObjectiveCriteria/readOnly +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83603_ net/minecraft/world/scores/criteria/ObjectiveCriteria/renderType +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/$VALUES net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/$VALUES +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/HEARTS net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/HEARTS +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/INTEGER net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/INTEGER +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/f_262724_ net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/CODEC +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/f_83625_ net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/id +FD: net/minecraft/world/ticks/BlackholeTickAccess/f_193140_ net/minecraft/world/ticks/BlackholeTickAccess/CONTAINER_BLACKHOLE +FD: net/minecraft/world/ticks/BlackholeTickAccess/f_193141_ net/minecraft/world/ticks/BlackholeTickAccess/LEVEL_BLACKHOLE +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193163_ net/minecraft/world/ticks/LevelChunkTicks/tickQueue +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193164_ net/minecraft/world/ticks/LevelChunkTicks/pendingTicks +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193165_ net/minecraft/world/ticks/LevelChunkTicks/ticksPerPosition +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193166_ net/minecraft/world/ticks/LevelChunkTicks/onTickAdded +FD: net/minecraft/world/ticks/LevelTicks/f_193199_ net/minecraft/world/ticks/LevelTicks/CONTAINER_DRAIN_ORDER +FD: net/minecraft/world/ticks/LevelTicks/f_193200_ net/minecraft/world/ticks/LevelTicks/tickCheck +FD: net/minecraft/world/ticks/LevelTicks/f_193201_ net/minecraft/world/ticks/LevelTicks/profiler +FD: net/minecraft/world/ticks/LevelTicks/f_193202_ net/minecraft/world/ticks/LevelTicks/allContainers +FD: net/minecraft/world/ticks/LevelTicks/f_193203_ net/minecraft/world/ticks/LevelTicks/nextTickForContainer +FD: net/minecraft/world/ticks/LevelTicks/f_193204_ net/minecraft/world/ticks/LevelTicks/containersToTick +FD: net/minecraft/world/ticks/LevelTicks/f_193205_ net/minecraft/world/ticks/LevelTicks/toRunThisTick +FD: net/minecraft/world/ticks/LevelTicks/f_193206_ net/minecraft/world/ticks/LevelTicks/alreadyRunThisTick +FD: net/minecraft/world/ticks/LevelTicks/f_193207_ net/minecraft/world/ticks/LevelTicks/toRunThisTickSet +FD: net/minecraft/world/ticks/LevelTicks/f_193208_ net/minecraft/world/ticks/LevelTicks/chunkScheduleUpdater +FD: net/minecraft/world/ticks/ProtoChunkTicks/f_193291_ net/minecraft/world/ticks/ProtoChunkTicks/ticks +FD: net/minecraft/world/ticks/ProtoChunkTicks/f_193292_ net/minecraft/world/ticks/ProtoChunkTicks/ticksPerPosition +FD: net/minecraft/world/ticks/SavedTick/f_193310_ net/minecraft/world/ticks/SavedTick/UNIQUE_TICK_HASH +FD: net/minecraft/world/ticks/SavedTick/f_193311_ net/minecraft/world/ticks/SavedTick/type +FD: net/minecraft/world/ticks/SavedTick/f_193312_ net/minecraft/world/ticks/SavedTick/pos +FD: net/minecraft/world/ticks/SavedTick/f_193313_ net/minecraft/world/ticks/SavedTick/delay +FD: net/minecraft/world/ticks/SavedTick/f_193314_ net/minecraft/world/ticks/SavedTick/priority +FD: net/minecraft/world/ticks/SavedTick/f_193315_ net/minecraft/world/ticks/SavedTick/TAG_ID +FD: net/minecraft/world/ticks/SavedTick/f_193316_ net/minecraft/world/ticks/SavedTick/TAG_X +FD: net/minecraft/world/ticks/SavedTick/f_193317_ net/minecraft/world/ticks/SavedTick/TAG_Y +FD: net/minecraft/world/ticks/SavedTick/f_193318_ net/minecraft/world/ticks/SavedTick/TAG_Z +FD: net/minecraft/world/ticks/SavedTick/f_193319_ net/minecraft/world/ticks/SavedTick/TAG_DELAY +FD: net/minecraft/world/ticks/SavedTick/f_193320_ net/minecraft/world/ticks/SavedTick/TAG_PRIORITY +FD: net/minecraft/world/ticks/ScheduledTick/f_193373_ net/minecraft/world/ticks/ScheduledTick/DRAIN_ORDER +FD: net/minecraft/world/ticks/ScheduledTick/f_193374_ net/minecraft/world/ticks/ScheduledTick/INTRA_TICK_DRAIN_ORDER +FD: net/minecraft/world/ticks/ScheduledTick/f_193375_ net/minecraft/world/ticks/ScheduledTick/UNIQUE_TICK_HASH +FD: net/minecraft/world/ticks/ScheduledTick/f_193376_ net/minecraft/world/ticks/ScheduledTick/type +FD: net/minecraft/world/ticks/ScheduledTick/f_193377_ net/minecraft/world/ticks/ScheduledTick/pos +FD: net/minecraft/world/ticks/ScheduledTick/f_193378_ net/minecraft/world/ticks/ScheduledTick/triggerTick +FD: net/minecraft/world/ticks/ScheduledTick/f_193379_ net/minecraft/world/ticks/ScheduledTick/priority +FD: net/minecraft/world/ticks/ScheduledTick/f_193380_ net/minecraft/world/ticks/ScheduledTick/subTickOrder +FD: net/minecraft/world/ticks/TickPriority/$VALUES net/minecraft/world/ticks/TickPriority/$VALUES +FD: net/minecraft/world/ticks/TickPriority/EXTREMELY_HIGH net/minecraft/world/ticks/TickPriority/EXTREMELY_HIGH +FD: net/minecraft/world/ticks/TickPriority/EXTREMELY_LOW net/minecraft/world/ticks/TickPriority/EXTREMELY_LOW +FD: net/minecraft/world/ticks/TickPriority/HIGH net/minecraft/world/ticks/TickPriority/HIGH +FD: net/minecraft/world/ticks/TickPriority/LOW net/minecraft/world/ticks/TickPriority/LOW +FD: net/minecraft/world/ticks/TickPriority/NORMAL net/minecraft/world/ticks/TickPriority/NORMAL +FD: net/minecraft/world/ticks/TickPriority/VERY_HIGH net/minecraft/world/ticks/TickPriority/VERY_HIGH +FD: net/minecraft/world/ticks/TickPriority/VERY_LOW net/minecraft/world/ticks/TickPriority/VERY_LOW +FD: net/minecraft/world/ticks/TickPriority/f_193438_ net/minecraft/world/ticks/TickPriority/value +FD: net/minecraft/world/ticks/WorldGenTickAccess/f_193452_ net/minecraft/world/ticks/WorldGenTickAccess/containerGetter +MD: com/mojang/blaze3d/Blaze3D/ ()V com/mojang/blaze3d/Blaze3D/ ()V +MD: com/mojang/blaze3d/Blaze3D/m_166118_ (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V com/mojang/blaze3d/Blaze3D/process (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V +MD: com/mojang/blaze3d/Blaze3D/m_166121_ (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V com/mojang/blaze3d/Blaze3D/render (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V +MD: com/mojang/blaze3d/Blaze3D/m_83639_ ()V com/mojang/blaze3d/Blaze3D/youJustLostTheGame ()V +MD: com/mojang/blaze3d/Blaze3D/m_83640_ ()D com/mojang/blaze3d/Blaze3D/getTime ()D +MD: com/mojang/blaze3d/audio/Channel/ ()V com/mojang/blaze3d/audio/Channel/ ()V +MD: com/mojang/blaze3d/audio/Channel/ (I)V com/mojang/blaze3d/audio/Channel/ (I)V +MD: com/mojang/blaze3d/audio/Channel/m_166126_ ()Z com/mojang/blaze3d/audio/Channel/playing ()Z +MD: com/mojang/blaze3d/audio/Channel/m_83649_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Channel/create ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Channel/m_83650_ (F)V com/mojang/blaze3d/audio/Channel/setPitch (F)V +MD: com/mojang/blaze3d/audio/Channel/m_83652_ (I)V com/mojang/blaze3d/audio/Channel/pumpBuffers (I)V +MD: com/mojang/blaze3d/audio/Channel/m_83654_ (Lnet/minecraft/world/phys/Vec3;)V com/mojang/blaze3d/audio/Channel/setSelfPosition (Lnet/minecraft/world/phys/Vec3;)V +MD: com/mojang/blaze3d/audio/Channel/m_83656_ (Lcom/mojang/blaze3d/audio/SoundBuffer;)V com/mojang/blaze3d/audio/Channel/attachStaticBuffer (Lcom/mojang/blaze3d/audio/SoundBuffer;)V +MD: com/mojang/blaze3d/audio/Channel/m_83658_ (Lnet/minecraft/client/sounds/AudioStream;)V com/mojang/blaze3d/audio/Channel/attachBufferStream (Lnet/minecraft/client/sounds/AudioStream;)V +MD: com/mojang/blaze3d/audio/Channel/m_83660_ (Ljavax/sound/sampled/AudioFormat;I)I com/mojang/blaze3d/audio/Channel/calculateBufferSize (Ljavax/sound/sampled/AudioFormat;I)I +MD: com/mojang/blaze3d/audio/Channel/m_83663_ (Z)V com/mojang/blaze3d/audio/Channel/setLooping (Z)V +MD: com/mojang/blaze3d/audio/Channel/m_83665_ ()V com/mojang/blaze3d/audio/Channel/destroy ()V +MD: com/mojang/blaze3d/audio/Channel/m_83666_ (F)V com/mojang/blaze3d/audio/Channel/setVolume (F)V +MD: com/mojang/blaze3d/audio/Channel/m_83668_ (I)V com/mojang/blaze3d/audio/Channel/lambda$pumpBuffers$1 (I)V +MD: com/mojang/blaze3d/audio/Channel/m_83670_ (Z)V com/mojang/blaze3d/audio/Channel/setRelative (Z)V +MD: com/mojang/blaze3d/audio/Channel/m_83672_ ()V com/mojang/blaze3d/audio/Channel/play ()V +MD: com/mojang/blaze3d/audio/Channel/m_83673_ (F)V com/mojang/blaze3d/audio/Channel/linearAttenuation (F)V +MD: com/mojang/blaze3d/audio/Channel/m_83675_ (I)V com/mojang/blaze3d/audio/Channel/lambda$attachStaticBuffer$0 (I)V +MD: com/mojang/blaze3d/audio/Channel/m_83677_ ()V com/mojang/blaze3d/audio/Channel/pause ()V +MD: com/mojang/blaze3d/audio/Channel/m_83678_ ()V com/mojang/blaze3d/audio/Channel/unpause ()V +MD: com/mojang/blaze3d/audio/Channel/m_83679_ ()V com/mojang/blaze3d/audio/Channel/stop ()V +MD: com/mojang/blaze3d/audio/Channel/m_83680_ ()Z com/mojang/blaze3d/audio/Channel/stopped ()Z +MD: com/mojang/blaze3d/audio/Channel/m_83681_ ()V com/mojang/blaze3d/audio/Channel/disableAttenuation ()V +MD: com/mojang/blaze3d/audio/Channel/m_83682_ ()V com/mojang/blaze3d/audio/Channel/updateStream ()V +MD: com/mojang/blaze3d/audio/Channel/m_83683_ ()I com/mojang/blaze3d/audio/Channel/getState ()I +MD: com/mojang/blaze3d/audio/Channel/m_83684_ ()I com/mojang/blaze3d/audio/Channel/removeProcessedBuffers ()I +MD: com/mojang/blaze3d/audio/Library/ ()V com/mojang/blaze3d/audio/Library/ ()V +MD: com/mojang/blaze3d/audio/Library/ ()V com/mojang/blaze3d/audio/Library/ ()V +MD: com/mojang/blaze3d/audio/Library/m_193468_ ()Ljava/lang/String; com/mojang/blaze3d/audio/Library/getDefaultDeviceName ()Ljava/lang/String; +MD: com/mojang/blaze3d/audio/Library/m_193471_ ()Ljava/lang/String; com/mojang/blaze3d/audio/Library/getCurrentDeviceName ()Ljava/lang/String; +MD: com/mojang/blaze3d/audio/Library/m_193472_ (Ljava/lang/String;)J com/mojang/blaze3d/audio/Library/openDeviceOrFallback (Ljava/lang/String;)J +MD: com/mojang/blaze3d/audio/Library/m_193474_ ()Z com/mojang/blaze3d/audio/Library/hasDefaultDeviceChanged ()Z +MD: com/mojang/blaze3d/audio/Library/m_193475_ (Ljava/lang/String;)Ljava/util/OptionalLong; com/mojang/blaze3d/audio/Library/tryOpenDevice (Ljava/lang/String;)Ljava/util/OptionalLong; +MD: com/mojang/blaze3d/audio/Library/m_193477_ ()Ljava/util/List; com/mojang/blaze3d/audio/Library/getAvailableSoundDevices ()Ljava/util/List; +MD: com/mojang/blaze3d/audio/Library/m_193478_ ()Z com/mojang/blaze3d/audio/Library/isCurrentDeviceDisconnected ()Z +MD: com/mojang/blaze3d/audio/Library/m_231084_ (Ljava/lang/String;Z)V com/mojang/blaze3d/audio/Library/init (Ljava/lang/String;Z)V +MD: com/mojang/blaze3d/audio/Library/m_241879_ (Z)V com/mojang/blaze3d/audio/Library/setHrtf (Z)V +MD: com/mojang/blaze3d/audio/Library/m_83695_ (Lcom/mojang/blaze3d/audio/Channel;)V com/mojang/blaze3d/audio/Library/releaseChannel (Lcom/mojang/blaze3d/audio/Channel;)V +MD: com/mojang/blaze3d/audio/Library/m_83697_ (Lcom/mojang/blaze3d/audio/Library$Pool;)Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library/acquireChannel (Lcom/mojang/blaze3d/audio/Library$Pool;)Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library/m_83699_ ()V com/mojang/blaze3d/audio/Library/cleanup ()V +MD: com/mojang/blaze3d/audio/Library/m_83700_ ()Lcom/mojang/blaze3d/audio/Listener; com/mojang/blaze3d/audio/Library/getListener ()Lcom/mojang/blaze3d/audio/Listener; +MD: com/mojang/blaze3d/audio/Library/m_83701_ ()Ljava/lang/String; com/mojang/blaze3d/audio/Library/getDebugString ()Ljava/lang/String; +MD: com/mojang/blaze3d/audio/Library/m_83703_ ()I com/mojang/blaze3d/audio/Library/getChannelCount ()I +MD: com/mojang/blaze3d/audio/Library$1/ ()V com/mojang/blaze3d/audio/Library$1/ ()V +MD: com/mojang/blaze3d/audio/Library$1/m_5574_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library$1/acquire ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library$1/m_5658_ (Lcom/mojang/blaze3d/audio/Channel;)Z com/mojang/blaze3d/audio/Library$1/release (Lcom/mojang/blaze3d/audio/Channel;)Z +MD: com/mojang/blaze3d/audio/Library$1/m_6471_ ()V com/mojang/blaze3d/audio/Library$1/cleanup ()V +MD: com/mojang/blaze3d/audio/Library$1/m_6492_ ()I com/mojang/blaze3d/audio/Library$1/getMaxCount ()I +MD: com/mojang/blaze3d/audio/Library$1/m_6500_ ()I com/mojang/blaze3d/audio/Library$1/getUsedCount ()I +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_5574_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library$ChannelPool/acquire ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_5658_ (Lcom/mojang/blaze3d/audio/Channel;)Z com/mojang/blaze3d/audio/Library$ChannelPool/release (Lcom/mojang/blaze3d/audio/Channel;)Z +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_6471_ ()V com/mojang/blaze3d/audio/Library$ChannelPool/cleanup ()V +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_6492_ ()I com/mojang/blaze3d/audio/Library$ChannelPool/getMaxCount ()I +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_6500_ ()I com/mojang/blaze3d/audio/Library$ChannelPool/getUsedCount ()I +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/ (I)V com/mojang/blaze3d/audio/Library$CountingChannelPool/ (I)V +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_5574_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library$CountingChannelPool/acquire ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_5658_ (Lcom/mojang/blaze3d/audio/Channel;)Z com/mojang/blaze3d/audio/Library$CountingChannelPool/release (Lcom/mojang/blaze3d/audio/Channel;)Z +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_6471_ ()V com/mojang/blaze3d/audio/Library$CountingChannelPool/cleanup ()V +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_6492_ ()I com/mojang/blaze3d/audio/Library$CountingChannelPool/getMaxCount ()I +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_6500_ ()I com/mojang/blaze3d/audio/Library$CountingChannelPool/getUsedCount ()I +MD: com/mojang/blaze3d/audio/Library$Pool/ ()V com/mojang/blaze3d/audio/Library$Pool/ ()V +MD: com/mojang/blaze3d/audio/Library$Pool/ (Ljava/lang/String;I)V com/mojang/blaze3d/audio/Library$Pool/ (Ljava/lang/String;I)V +MD: com/mojang/blaze3d/audio/Library$Pool/m_166129_ ()[Lcom/mojang/blaze3d/audio/Library$Pool; com/mojang/blaze3d/audio/Library$Pool/$values ()[Lcom/mojang/blaze3d/audio/Library$Pool; +MD: com/mojang/blaze3d/audio/Library$Pool/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/audio/Library$Pool; com/mojang/blaze3d/audio/Library$Pool/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/audio/Library$Pool; +MD: com/mojang/blaze3d/audio/Library$Pool/values ()[Lcom/mojang/blaze3d/audio/Library$Pool; com/mojang/blaze3d/audio/Library$Pool/values ()[Lcom/mojang/blaze3d/audio/Library$Pool; +MD: com/mojang/blaze3d/audio/Listener/ ()V com/mojang/blaze3d/audio/Listener/ ()V +MD: com/mojang/blaze3d/audio/Listener/m_252991_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/audio/Listener/setListenerOrientation (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/audio/Listener/m_83736_ ()Lnet/minecraft/world/phys/Vec3; com/mojang/blaze3d/audio/Listener/getListenerPosition ()Lnet/minecraft/world/phys/Vec3; +MD: com/mojang/blaze3d/audio/Listener/m_83737_ (F)V com/mojang/blaze3d/audio/Listener/setGain (F)V +MD: com/mojang/blaze3d/audio/Listener/m_83739_ (Lnet/minecraft/world/phys/Vec3;)V com/mojang/blaze3d/audio/Listener/setListenerPosition (Lnet/minecraft/world/phys/Vec3;)V +MD: com/mojang/blaze3d/audio/Listener/m_83744_ ()F com/mojang/blaze3d/audio/Listener/getGain ()F +MD: com/mojang/blaze3d/audio/Listener/m_83745_ ()V com/mojang/blaze3d/audio/Listener/reset ()V +MD: com/mojang/blaze3d/audio/OggAudioStream/ (Ljava/io/InputStream;)V com/mojang/blaze3d/audio/OggAudioStream/ (Ljava/io/InputStream;)V +MD: com/mojang/blaze3d/audio/OggAudioStream/close ()V com/mojang/blaze3d/audio/OggAudioStream/close ()V +MD: com/mojang/blaze3d/audio/OggAudioStream/m_6206_ ()Ljavax/sound/sampled/AudioFormat; com/mojang/blaze3d/audio/OggAudioStream/getFormat ()Ljavax/sound/sampled/AudioFormat; +MD: com/mojang/blaze3d/audio/OggAudioStream/m_7118_ (I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/audio/OggAudioStream/read (I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83755_ (Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)Z com/mojang/blaze3d/audio/OggAudioStream/readFrame (Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)Z +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83757_ (Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V com/mojang/blaze3d/audio/OggAudioStream/convertMono (Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83760_ (Ljava/nio/FloatBuffer;Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V com/mojang/blaze3d/audio/OggAudioStream/convertStereo (Ljava/nio/FloatBuffer;Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83764_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/audio/OggAudioStream/readAll ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83765_ ()Z com/mojang/blaze3d/audio/OggAudioStream/refillFromStream ()Z +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83767_ ()V com/mojang/blaze3d/audio/OggAudioStream/forwardBuffer ()V +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/ (I)V com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/ (I)V +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/m_83774_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/get ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/m_83775_ (F)V com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/put (F)V +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/m_83779_ ()V com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/createNewBuffer ()V +MD: com/mojang/blaze3d/audio/OpenAlUtil/ ()V com/mojang/blaze3d/audio/OpenAlUtil/ ()V +MD: com/mojang/blaze3d/audio/OpenAlUtil/ ()V com/mojang/blaze3d/audio/OpenAlUtil/ ()V +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83782_ (I)Ljava/lang/String; com/mojang/blaze3d/audio/OpenAlUtil/alErrorToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83784_ (JLjava/lang/String;)Z com/mojang/blaze3d/audio/OpenAlUtil/checkALCError (JLjava/lang/String;)Z +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83787_ (Ljava/lang/String;)Z com/mojang/blaze3d/audio/OpenAlUtil/checkALError (Ljava/lang/String;)Z +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83789_ (Ljavax/sound/sampled/AudioFormat;)I com/mojang/blaze3d/audio/OpenAlUtil/audioFormatToOpenAl (Ljavax/sound/sampled/AudioFormat;)I +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83791_ (I)Ljava/lang/String; com/mojang/blaze3d/audio/OpenAlUtil/alcErrorToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/audio/SoundBuffer/ (Ljava/nio/ByteBuffer;Ljavax/sound/sampled/AudioFormat;)V com/mojang/blaze3d/audio/SoundBuffer/ (Ljava/nio/ByteBuffer;Ljavax/sound/sampled/AudioFormat;)V +MD: com/mojang/blaze3d/audio/SoundBuffer/m_83800_ ()Ljava/util/OptionalInt; com/mojang/blaze3d/audio/SoundBuffer/getAlBuffer ()Ljava/util/OptionalInt; +MD: com/mojang/blaze3d/audio/SoundBuffer/m_83801_ ()V com/mojang/blaze3d/audio/SoundBuffer/discardAlBuffer ()V +MD: com/mojang/blaze3d/audio/SoundBuffer/m_83802_ ()Ljava/util/OptionalInt; com/mojang/blaze3d/audio/SoundBuffer/releaseAlBuffer ()Ljava/util/OptionalInt; +MD: com/mojang/blaze3d/font/GlyphInfo/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; com/mojang/blaze3d/font/GlyphInfo/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: com/mojang/blaze3d/font/GlyphInfo/m_5619_ ()F com/mojang/blaze3d/font/GlyphInfo/getBoldOffset ()F +MD: com/mojang/blaze3d/font/GlyphInfo/m_5645_ ()F com/mojang/blaze3d/font/GlyphInfo/getShadowOffset ()F +MD: com/mojang/blaze3d/font/GlyphInfo/m_7403_ ()F com/mojang/blaze3d/font/GlyphInfo/getAdvance ()F +MD: com/mojang/blaze3d/font/GlyphInfo/m_83827_ (Z)F com/mojang/blaze3d/font/GlyphInfo/getAdvance (Z)F +MD: com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: com/mojang/blaze3d/font/GlyphProvider/close ()V com/mojang/blaze3d/font/GlyphProvider/close ()V +MD: com/mojang/blaze3d/font/GlyphProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; com/mojang/blaze3d/font/GlyphProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: com/mojang/blaze3d/font/GlyphProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; com/mojang/blaze3d/font/GlyphProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213958_ (II)V com/mojang/blaze3d/font/SheetGlyphInfo/upload (II)V +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213961_ ()I com/mojang/blaze3d/font/SheetGlyphInfo/getPixelHeight ()I +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213962_ ()I com/mojang/blaze3d/font/SheetGlyphInfo/getPixelWidth ()I +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213963_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getOversample ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213964_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getBearingY ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213965_ ()Z com/mojang/blaze3d/font/SheetGlyphInfo/isColored ()Z +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213966_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getBearingX ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231094_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getLeft ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231095_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getRight ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231096_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getUp ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231097_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getDown ()F +MD: com/mojang/blaze3d/font/SpaceProvider/ (Ljava/util/Map;)V com/mojang/blaze3d/font/SpaceProvider/ (Ljava/util/Map;)V +MD: com/mojang/blaze3d/font/SpaceProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; com/mojang/blaze3d/font/SpaceProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: com/mojang/blaze3d/font/SpaceProvider/m_285663_ (Ljava/lang/Integer;Ljava/lang/Float;)V com/mojang/blaze3d/font/SpaceProvider/lambda$new$1 (Ljava/lang/Integer;Ljava/lang/Float;)V +MD: com/mojang/blaze3d/font/SpaceProvider/m_285664_ (Ljava/lang/Float;)F com/mojang/blaze3d/font/SpaceProvider/lambda$new$0 (Ljava/lang/Float;)F +MD: com/mojang/blaze3d/font/SpaceProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; com/mojang/blaze3d/font/SpaceProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/ ()V com/mojang/blaze3d/font/SpaceProvider$Definition/ ()V +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/ (Ljava/util/Map;)V com/mojang/blaze3d/font/SpaceProvider$Definition/ (Ljava/util/Map;)V +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/font/SpaceProvider$Definition/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/f_285580_ ()Ljava/util/Map; com/mojang/blaze3d/font/SpaceProvider$Definition/advances ()Ljava/util/Map; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/hashCode ()I com/mojang/blaze3d/font/SpaceProvider$Definition/hashCode ()I +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_285782_ ()Lcom/mojang/datafixers/util/Either; com/mojang/blaze3d/font/SpaceProvider$Definition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; com/mojang/blaze3d/font/SpaceProvider$Definition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_285951_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; com/mojang/blaze3d/font/SpaceProvider$Definition/lambda$unpack$1 (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_286087_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; com/mojang/blaze3d/font/SpaceProvider$Definition/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/toString ()Ljava/lang/String; com/mojang/blaze3d/font/SpaceProvider$Definition/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/ (Ljava/nio/ByteBuffer;Lorg/lwjgl/stb/STBTTFontinfo;FFFFLjava/lang/String;)V com/mojang/blaze3d/font/TrueTypeGlyphProvider/ (Ljava/nio/ByteBuffer;Lorg/lwjgl/stb/STBTTFontinfo;FFFFLjava/lang/String;)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/close ()V com/mojang/blaze3d/font/TrueTypeGlyphProvider/close ()V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; com/mojang/blaze3d/font/TrueTypeGlyphProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_231113_ (F)F com/mojang/blaze3d/font/TrueTypeGlyphProvider/lambda$getGlyph$0 (F)F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_231117_ (I)Z com/mojang/blaze3d/font/TrueTypeGlyphProvider/lambda$getSupportedGlyphs$1 (I)Z +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_287161_ ()Lorg/lwjgl/stb/STBTTFontinfo; com/mojang/blaze3d/font/TrueTypeGlyphProvider/validateFontOpen ()Lorg/lwjgl/stb/STBTTFontinfo; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; com/mojang/blaze3d/font/TrueTypeGlyphProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider;IIIIFFI)V com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider;IIIIFFI)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/m_7403_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/getAdvance ()F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph;)V com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph;)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213958_ (II)V com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/upload (II)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213961_ ()I com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getPixelHeight ()I +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213962_ ()I com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getPixelWidth ()I +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213963_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getOversample ()F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213964_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getBearingY ()F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213965_ ()Z com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/isColored ()Z +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213966_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getBearingX ()F +MD: com/mojang/blaze3d/pipeline/MainTarget/ ()V com/mojang/blaze3d/pipeline/MainTarget/ ()V +MD: com/mojang/blaze3d/pipeline/MainTarget/ (II)V com/mojang/blaze3d/pipeline/MainTarget/ (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166139_ (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z com/mojang/blaze3d/pipeline/MainTarget/allocateColorAttachment (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166141_ (II)V com/mojang/blaze3d/pipeline/MainTarget/createFrameBuffer (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166144_ (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z com/mojang/blaze3d/pipeline/MainTarget/allocateDepthAttachment (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166146_ (II)Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension; com/mojang/blaze3d/pipeline/MainTarget/allocateAttachments (II)Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension; +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166149_ (II)V com/mojang/blaze3d/pipeline/MainTarget/lambda$new$0 (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ ()V com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ ()V +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ (Ljava/lang/String;I)V com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ (Ljava/lang/String;I)V +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/m_166162_ ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/$values ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/m_166163_ (Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/with (Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/values ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/values ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/ (II)V com/mojang/blaze3d/pipeline/MainTarget$Dimension/ (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/pipeline/MainTarget$Dimension/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/hashCode ()I com/mojang/blaze3d/pipeline/MainTarget$Dimension/hashCode ()I +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/m_166173_ (II)Ljava/util/List; com/mojang/blaze3d/pipeline/MainTarget$Dimension/listWithFallback (II)Ljava/util/List; +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/toString ()Ljava/lang/String; com/mojang/blaze3d/pipeline/MainTarget$Dimension/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/pipeline/RenderCall/m_83909_ ()V com/mojang/blaze3d/pipeline/RenderCall/execute ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/ ()V com/mojang/blaze3d/pipeline/RenderPipeline/ ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166182_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/canBeginRecording ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166183_ (Lcom/mojang/blaze3d/pipeline/RenderCall;)V com/mojang/blaze3d/pipeline/RenderPipeline/recordRenderCall (Lcom/mojang/blaze3d/pipeline/RenderCall;)V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166185_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/beginRecording ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166186_ ()V com/mojang/blaze3d/pipeline/RenderPipeline/endRecording ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166187_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/canBeginProcessing ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166188_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/beginProcessing ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166189_ ()V com/mojang/blaze3d/pipeline/RenderPipeline/processRecordedQueue ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166190_ ()V com/mojang/blaze3d/pipeline/RenderPipeline/endProcessing ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166191_ ()Ljava/util/concurrent/ConcurrentLinkedQueue; com/mojang/blaze3d/pipeline/RenderPipeline/startRendering ()Ljava/util/concurrent/ConcurrentLinkedQueue; +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166192_ ()Ljava/util/concurrent/ConcurrentLinkedQueue; com/mojang/blaze3d/pipeline/RenderPipeline/getRecordingQueue ()Ljava/util/concurrent/ConcurrentLinkedQueue; +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166193_ ()Ljava/util/concurrent/ConcurrentLinkedQueue; com/mojang/blaze3d/pipeline/RenderPipeline/getProcessedQueue ()Ljava/util/concurrent/ConcurrentLinkedQueue; +MD: com/mojang/blaze3d/pipeline/RenderTarget/ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/ (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166200_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/lambda$bindWrite$2 (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166202_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/lambda$blitToScreen$4 (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166206_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/lambda$resize$1 (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166210_ ()V com/mojang/blaze3d/pipeline/RenderTarget/lambda$unbindWrite$3 ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166211_ ()[F com/mojang/blaze3d/pipeline/RenderTarget/lambda$new$0 ()[F +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83930_ ()V com/mojang/blaze3d/pipeline/RenderTarget/destroyBuffers ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83931_ (FFFF)V com/mojang/blaze3d/pipeline/RenderTarget/setClearColor (FFFF)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83936_ (I)V com/mojang/blaze3d/pipeline/RenderTarget/setFilterMode (I)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83938_ (II)V com/mojang/blaze3d/pipeline/RenderTarget/blitToScreen (II)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83941_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/resize (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83945_ (Lcom/mojang/blaze3d/pipeline/RenderTarget;)V com/mojang/blaze3d/pipeline/RenderTarget/copyDepthFrom (Lcom/mojang/blaze3d/pipeline/RenderTarget;)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83947_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/bindWrite (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83949_ ()V com/mojang/blaze3d/pipeline/RenderTarget/checkStatus ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83950_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/createBuffers (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83954_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/clear (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83956_ ()V com/mojang/blaze3d/pipeline/RenderTarget/bindRead ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83957_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/blitToScreen (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83961_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/_bindWrite (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83963_ ()V com/mojang/blaze3d/pipeline/RenderTarget/unbindRead ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83964_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/_resize (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83970_ ()V com/mojang/blaze3d/pipeline/RenderTarget/unbindWrite ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83971_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/_blitToScreen (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83975_ ()I com/mojang/blaze3d/pipeline/RenderTarget/getColorTextureId ()I +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83980_ ()I com/mojang/blaze3d/pipeline/RenderTarget/getDepthTextureId ()I +MD: com/mojang/blaze3d/pipeline/TextureTarget/ (IIZZ)V com/mojang/blaze3d/pipeline/TextureTarget/ (IIZZ)V +MD: com/mojang/blaze3d/platform/ClipboardManager/ ()V com/mojang/blaze3d/platform/ClipboardManager/ ()V +MD: com/mojang/blaze3d/platform/ClipboardManager/m_83988_ (JLjava/lang/String;)V com/mojang/blaze3d/platform/ClipboardManager/setClipboard (JLjava/lang/String;)V +MD: com/mojang/blaze3d/platform/ClipboardManager/m_83991_ (JLjava/nio/ByteBuffer;[B)V com/mojang/blaze3d/platform/ClipboardManager/pushClipboard (JLjava/nio/ByteBuffer;[B)V +MD: com/mojang/blaze3d/platform/ClipboardManager/m_83995_ (JLorg/lwjgl/glfw/GLFWErrorCallbackI;)Ljava/lang/String; com/mojang/blaze3d/platform/ClipboardManager/getClipboard (JLorg/lwjgl/glfw/GLFWErrorCallbackI;)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/m_84000_ ()Ljava/lang/invoke/MethodHandle; com/mojang/blaze3d/platform/DebugMemoryUntracker/lambda$static$0 ()Ljava/lang/invoke/MethodHandle; +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/m_84001_ (J)V com/mojang/blaze3d/platform/DebugMemoryUntracker/untrack (J)V +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/m_84003_ (Lorg/lwjgl/system/Pointer;)V com/mojang/blaze3d/platform/DebugMemoryUntracker/untrack (Lorg/lwjgl/system/Pointer;)V +MD: com/mojang/blaze3d/platform/DisplayData/ (IILjava/util/OptionalInt;Ljava/util/OptionalInt;Z)V com/mojang/blaze3d/platform/DisplayData/ (IILjava/util/OptionalInt;Ljava/util/OptionalInt;Z)V +MD: com/mojang/blaze3d/platform/GLX/ ()V com/mojang/blaze3d/platform/GLX/ ()V +MD: com/mojang/blaze3d/platform/GLX/ ()V com/mojang/blaze3d/platform/GLX/ ()V +MD: com/mojang/blaze3d/platform/GLX/_getCpuInfo ()Ljava/lang/String; com/mojang/blaze3d/platform/GLX/_getCpuInfo ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GLX/_getLWJGLVersion ()Ljava/lang/String; com/mojang/blaze3d/platform/GLX/_getLWJGLVersion ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GLX/_getRefreshRate (Lcom/mojang/blaze3d/platform/Window;)I com/mojang/blaze3d/platform/GLX/_getRefreshRate (Lcom/mojang/blaze3d/platform/Window;)I +MD: com/mojang/blaze3d/platform/GLX/_init (IZ)V com/mojang/blaze3d/platform/GLX/_init (IZ)V +MD: com/mojang/blaze3d/platform/GLX/_initGlfw ()Ljava/util/function/LongSupplier; com/mojang/blaze3d/platform/GLX/_initGlfw ()Ljava/util/function/LongSupplier; +MD: com/mojang/blaze3d/platform/GLX/_renderCrosshair (IZZZ)V com/mojang/blaze3d/platform/GLX/_renderCrosshair (IZZZ)V +MD: com/mojang/blaze3d/platform/GLX/_setGlfwErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V com/mojang/blaze3d/platform/GLX/_setGlfwErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V +MD: com/mojang/blaze3d/platform/GLX/_shouldClose (Lcom/mojang/blaze3d/platform/Window;)Z com/mojang/blaze3d/platform/GLX/_shouldClose (Lcom/mojang/blaze3d/platform/Window;)Z +MD: com/mojang/blaze3d/platform/GLX/getOpenGLVersionString ()Ljava/lang/String; com/mojang/blaze3d/platform/GLX/getOpenGLVersionString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$0 (Ljava/lang/Integer;Ljava/lang/String;)V com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$0 (Ljava/lang/Integer;Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$1 (Ljava/util/List;IJ)V com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$1 (Ljava/util/List;IJ)V +MD: com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$2 ()J com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$2 ()J +MD: com/mojang/blaze3d/platform/GLX/make (Ljava/util/function/Supplier;)Ljava/lang/Object; com/mojang/blaze3d/platform/GLX/make (Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: com/mojang/blaze3d/platform/GLX/make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; com/mojang/blaze3d/platform/GLX/make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; +MD: com/mojang/blaze3d/platform/GlConst/ ()V com/mojang/blaze3d/platform/GlConst/ ()V +MD: com/mojang/blaze3d/platform/GlDebug/ ()V com/mojang/blaze3d/platform/GlDebug/ ()V +MD: com/mojang/blaze3d/platform/GlDebug/ ()V com/mojang/blaze3d/platform/GlDebug/ ()V +MD: com/mojang/blaze3d/platform/GlDebug/m_166225_ ()Ljava/util/List; com/mojang/blaze3d/platform/GlDebug/getLastOpenGlDebugMessages ()Ljava/util/List; +MD: com/mojang/blaze3d/platform/GlDebug/m_166226_ ()Z com/mojang/blaze3d/platform/GlDebug/isDebugEnabled ()Z +MD: com/mojang/blaze3d/platform/GlDebug/m_84036_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/printUnknownToken (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug/m_84038_ (IIIIIJJ)V com/mojang/blaze3d/platform/GlDebug/printDebugLog (IIIIIJJ)V +MD: com/mojang/blaze3d/platform/GlDebug/m_84049_ (IZ)V com/mojang/blaze3d/platform/GlDebug/enableDebugCallback (IZ)V +MD: com/mojang/blaze3d/platform/GlDebug/m_84055_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/sourceToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug/m_84057_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/typeToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug/m_84059_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/severityToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug$LogEntry/ (IIIILjava/lang/String;)V com/mojang/blaze3d/platform/GlDebug$LogEntry/ (IIIILjava/lang/String;)V +MD: com/mojang/blaze3d/platform/GlDebug$LogEntry/m_166239_ (IIIILjava/lang/String;)Z com/mojang/blaze3d/platform/GlDebug$LogEntry/isSame (IIIILjava/lang/String;)Z +MD: com/mojang/blaze3d/platform/GlDebug$LogEntry/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug$LogEntry/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/ ()V com/mojang/blaze3d/platform/GlStateManager/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager/ ()V com/mojang/blaze3d/platform/GlStateManager/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_activeTexture (I)V com/mojang/blaze3d/platform/GlStateManager/_activeTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_bindTexture (I)V com/mojang/blaze3d/platform/GlStateManager/_bindTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_blendEquation (I)V com/mojang/blaze3d/platform/GlStateManager/_blendEquation (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_blendFunc (II)V com/mojang/blaze3d/platform/GlStateManager/_blendFunc (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_blendFuncSeparate (IIII)V com/mojang/blaze3d/platform/GlStateManager/_blendFuncSeparate (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clear (IZ)V com/mojang/blaze3d/platform/GlStateManager/_clear (IZ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clearColor (FFFF)V com/mojang/blaze3d/platform/GlStateManager/_clearColor (FFFF)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clearDepth (D)V com/mojang/blaze3d/platform/GlStateManager/_clearDepth (D)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clearStencil (I)V com/mojang/blaze3d/platform/GlStateManager/_clearStencil (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_colorMask (ZZZZ)V com/mojang/blaze3d/platform/GlStateManager/_colorMask (ZZZZ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_deleteTexture (I)V com/mojang/blaze3d/platform/GlStateManager/_deleteTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_deleteTextures ([I)V com/mojang/blaze3d/platform/GlStateManager/_deleteTextures ([I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_depthFunc (I)V com/mojang/blaze3d/platform/GlStateManager/_depthFunc (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_depthMask (Z)V com/mojang/blaze3d/platform/GlStateManager/_depthMask (Z)V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableBlend ()V com/mojang/blaze3d/platform/GlStateManager/_disableBlend ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableColorLogicOp ()V com/mojang/blaze3d/platform/GlStateManager/_disableColorLogicOp ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableCull ()V com/mojang/blaze3d/platform/GlStateManager/_disableCull ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableDepthTest ()V com/mojang/blaze3d/platform/GlStateManager/_disableDepthTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disablePolygonOffset ()V com/mojang/blaze3d/platform/GlStateManager/_disablePolygonOffset ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableScissorTest ()V com/mojang/blaze3d/platform/GlStateManager/_disableScissorTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableVertexAttribArray (I)V com/mojang/blaze3d/platform/GlStateManager/_disableVertexAttribArray (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_drawElements (IIIJ)V com/mojang/blaze3d/platform/GlStateManager/_drawElements (IIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableBlend ()V com/mojang/blaze3d/platform/GlStateManager/_enableBlend ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableColorLogicOp ()V com/mojang/blaze3d/platform/GlStateManager/_enableColorLogicOp ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableCull ()V com/mojang/blaze3d/platform/GlStateManager/_enableCull ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableDepthTest ()V com/mojang/blaze3d/platform/GlStateManager/_enableDepthTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enablePolygonOffset ()V com/mojang/blaze3d/platform/GlStateManager/_enablePolygonOffset ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableScissorTest ()V com/mojang/blaze3d/platform/GlStateManager/_enableScissorTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableVertexAttribArray (I)V com/mojang/blaze3d/platform/GlStateManager/_enableVertexAttribArray (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_genTexture ()I com/mojang/blaze3d/platform/GlStateManager/_genTexture ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_genTextures ([I)V com/mojang/blaze3d/platform/GlStateManager/_genTextures ([I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_getActiveTexture ()I com/mojang/blaze3d/platform/GlStateManager/_getActiveTexture ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_getError ()I com/mojang/blaze3d/platform/GlStateManager/_getError ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_getInteger (I)I com/mojang/blaze3d/platform/GlStateManager/_getInteger (I)I +MD: com/mojang/blaze3d/platform/GlStateManager/_getString (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlStateManager/_getString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/_getTexImage (IIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_getTexImage (IIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_getTexLevelParameter (III)I com/mojang/blaze3d/platform/GlStateManager/_getTexLevelParameter (III)I +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindAttribLocation (IILjava/lang/CharSequence;)V com/mojang/blaze3d/platform/GlStateManager/_glBindAttribLocation (IILjava/lang/CharSequence;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindBuffer (II)V com/mojang/blaze3d/platform/GlStateManager/_glBindBuffer (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindFramebuffer (II)V com/mojang/blaze3d/platform/GlStateManager/_glBindFramebuffer (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindRenderbuffer (II)V com/mojang/blaze3d/platform/GlStateManager/_glBindRenderbuffer (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindVertexArray (I)V com/mojang/blaze3d/platform/GlStateManager/_glBindVertexArray (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBlitFrameBuffer (IIIIIIIIII)V com/mojang/blaze3d/platform/GlStateManager/_glBlitFrameBuffer (IIIIIIIIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBufferData (IJI)V com/mojang/blaze3d/platform/GlStateManager/_glBufferData (IJI)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBufferData (ILjava/nio/ByteBuffer;I)V com/mojang/blaze3d/platform/GlStateManager/_glBufferData (ILjava/nio/ByteBuffer;I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glCopyTexSubImage2D (IIIIIIII)V com/mojang/blaze3d/platform/GlStateManager/_glCopyTexSubImage2D (IIIIIIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteBuffers (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteBuffers (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteFramebuffers (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteFramebuffers (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteRenderbuffers (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteRenderbuffers (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteVertexArrays (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteVertexArrays (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDrawPixels (IIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_glDrawPixels (IIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glFramebufferRenderbuffer (IIII)V com/mojang/blaze3d/platform/GlStateManager/_glFramebufferRenderbuffer (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glFramebufferTexture2D (IIIII)V com/mojang/blaze3d/platform/GlStateManager/_glFramebufferTexture2D (IIIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glGenBuffers ()I com/mojang/blaze3d/platform/GlStateManager/_glGenBuffers ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_glGenVertexArrays ()I com/mojang/blaze3d/platform/GlStateManager/_glGenVertexArrays ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_glGetAttribLocation (ILjava/lang/CharSequence;)I com/mojang/blaze3d/platform/GlStateManager/_glGetAttribLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/platform/GlStateManager/_glGetUniformLocation (ILjava/lang/CharSequence;)I com/mojang/blaze3d/platform/GlStateManager/_glGetUniformLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/platform/GlStateManager/_glMapBuffer (II)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/GlStateManager/_glMapBuffer (II)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/GlStateManager/_glRenderbufferStorage (IIII)V com/mojang/blaze3d/platform/GlStateManager/_glRenderbufferStorage (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform1i (II)V com/mojang/blaze3d/platform/GlStateManager/_glUniform1i (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUnmapBuffer (I)V com/mojang/blaze3d/platform/GlStateManager/_glUnmapBuffer (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUseProgram (I)V com/mojang/blaze3d/platform/GlStateManager/_glUseProgram (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_logicOp (I)V com/mojang/blaze3d/platform/GlStateManager/_logicOp (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_pixelStore (II)V com/mojang/blaze3d/platform/GlStateManager/_pixelStore (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_polygonMode (II)V com/mojang/blaze3d/platform/GlStateManager/_polygonMode (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_polygonOffset (FF)V com/mojang/blaze3d/platform/GlStateManager/_polygonOffset (FF)V +MD: com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIILjava/nio/ByteBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIILjava/nio/ByteBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_scissorBox (IIII)V com/mojang/blaze3d/platform/GlStateManager/_scissorBox (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_stencilFunc (III)V com/mojang/blaze3d/platform/GlStateManager/_stencilFunc (III)V +MD: com/mojang/blaze3d/platform/GlStateManager/_stencilMask (I)V com/mojang/blaze3d/platform/GlStateManager/_stencilMask (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_stencilOp (III)V com/mojang/blaze3d/platform/GlStateManager/_stencilOp (III)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texImage2D (IIIIIIIILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_texImage2D (IIIIIIIILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texParameter (IIF)V com/mojang/blaze3d/platform/GlStateManager/_texParameter (IIF)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texParameter (III)V com/mojang/blaze3d/platform/GlStateManager/_texParameter (III)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texSubImage2D (IIIIIIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_texSubImage2D (IIIIIIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V com/mojang/blaze3d/platform/GlStateManager/_upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_vertexAttribIPointer (IIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_vertexAttribIPointer (IIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_vertexAttribPointer (IIIZIJ)V com/mojang/blaze3d/platform/GlStateManager/_vertexAttribPointer (IIIZIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_viewport (IIII)V com/mojang/blaze3d/platform/GlStateManager/_viewport (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/getBoundFramebuffer ()I com/mojang/blaze3d/platform/GlStateManager/getBoundFramebuffer ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glActiveTexture (I)V com/mojang/blaze3d/platform/GlStateManager/glActiveTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glAttachShader (II)V com/mojang/blaze3d/platform/GlStateManager/glAttachShader (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/glBlendFuncSeparate (IIII)V com/mojang/blaze3d/platform/GlStateManager/glBlendFuncSeparate (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/glCheckFramebufferStatus (I)I com/mojang/blaze3d/platform/GlStateManager/glCheckFramebufferStatus (I)I +MD: com/mojang/blaze3d/platform/GlStateManager/glCompileShader (I)V com/mojang/blaze3d/platform/GlStateManager/glCompileShader (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glCreateProgram ()I com/mojang/blaze3d/platform/GlStateManager/glCreateProgram ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glCreateShader (I)I com/mojang/blaze3d/platform/GlStateManager/glCreateShader (I)I +MD: com/mojang/blaze3d/platform/GlStateManager/glDeleteProgram (I)V com/mojang/blaze3d/platform/GlStateManager/glDeleteProgram (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glDeleteShader (I)V com/mojang/blaze3d/platform/GlStateManager/glDeleteShader (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glGenFramebuffers ()I com/mojang/blaze3d/platform/GlStateManager/glGenFramebuffers ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glGenRenderbuffers ()I com/mojang/blaze3d/platform/GlStateManager/glGenRenderbuffers ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glGetProgramInfoLog (II)Ljava/lang/String; com/mojang/blaze3d/platform/GlStateManager/glGetProgramInfoLog (II)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/glGetProgrami (II)I com/mojang/blaze3d/platform/GlStateManager/glGetProgrami (II)I +MD: com/mojang/blaze3d/platform/GlStateManager/glGetShaderInfoLog (II)Ljava/lang/String; com/mojang/blaze3d/platform/GlStateManager/glGetShaderInfoLog (II)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/glGetShaderi (II)I com/mojang/blaze3d/platform/GlStateManager/glGetShaderi (II)I +MD: com/mojang/blaze3d/platform/GlStateManager/glLinkProgram (I)V com/mojang/blaze3d/platform/GlStateManager/glLinkProgram (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glShaderSource (ILjava/util/List;)V com/mojang/blaze3d/platform/GlStateManager/glShaderSource (ILjava/util/List;)V +MD: com/mojang/blaze3d/platform/GlStateManager/lambda$static$0 (I)Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; com/mojang/blaze3d/platform/GlStateManager/lambda$static$0 (I)Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; +MD: com/mojang/blaze3d/platform/GlStateManager/lambda$static$1 (I)[Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; com/mojang/blaze3d/platform/GlStateManager/lambda$static$1 (I)[Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; +MD: com/mojang/blaze3d/platform/GlStateManager/lambda$upload$2 (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V com/mojang/blaze3d/platform/GlStateManager/lambda$upload$2 (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/platform/GlStateManager/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/platform/GlStateManager/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/platform/GlStateManager/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/platform/GlStateManager/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V com/mojang/blaze3d/platform/GlStateManager/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/platform/GlStateManager/upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V com/mojang/blaze3d/platform/GlStateManager/upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/platform/GlStateManager$BlendState/ ()V com/mojang/blaze3d/platform/GlStateManager$BlendState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/ (I)V com/mojang/blaze3d/platform/GlStateManager$BooleanState/ (I)V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/m_84589_ ()V com/mojang/blaze3d/platform/GlStateManager$BooleanState/disable ()V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/m_84590_ (Z)V com/mojang/blaze3d/platform/GlStateManager$BooleanState/setEnabled (Z)V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/m_84592_ ()V com/mojang/blaze3d/platform/GlStateManager$BooleanState/enable ()V +MD: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/ ()V com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/ ()V com/mojang/blaze3d/platform/GlStateManager$ColorMask/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$CullState/ ()V com/mojang/blaze3d/platform/GlStateManager$CullState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$DepthState/ ()V com/mojang/blaze3d/platform/GlStateManager$DepthState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; com/mojang/blaze3d/platform/GlStateManager$DestFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ ()V com/mojang/blaze3d/platform/GlStateManager$DestFactor/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/GlStateManager$DestFactor/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; com/mojang/blaze3d/platform/GlStateManager$DestFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; com/mojang/blaze3d/platform/GlStateManager$DestFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/ ()V com/mojang/blaze3d/platform/GlStateManager$LogicOp/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/GlStateManager$LogicOp/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/m_157125_ ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; com/mojang/blaze3d/platform/GlStateManager$LogicOp/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; com/mojang/blaze3d/platform/GlStateManager$LogicOp/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; com/mojang/blaze3d/platform/GlStateManager$LogicOp/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +MD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/ ()V com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$ScissorState/ ()V com/mojang/blaze3d/platform/GlStateManager$ScissorState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ ()V com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; com/mojang/blaze3d/platform/GlStateManager$SourceFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; com/mojang/blaze3d/platform/GlStateManager$SourceFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/ ()V com/mojang/blaze3d/platform/GlStateManager$StencilFunc/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$StencilState/ ()V com/mojang/blaze3d/platform/GlStateManager$StencilState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$TextureState/ ()V com/mojang/blaze3d/platform/GlStateManager$TextureState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/ ()V com/mojang/blaze3d/platform/GlStateManager$Viewport/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/ (Ljava/lang/String;I)V com/mojang/blaze3d/platform/GlStateManager$Viewport/ (Ljava/lang/String;I)V +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157126_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/x ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157127_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/y ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157128_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/width ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157129_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/height ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157130_ ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; com/mojang/blaze3d/platform/GlStateManager$Viewport/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; com/mojang/blaze3d/platform/GlStateManager$Viewport/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; com/mojang/blaze3d/platform/GlStateManager$Viewport/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +MD: com/mojang/blaze3d/platform/GlUtil/ ()V com/mojang/blaze3d/platform/GlUtil/ ()V +MD: com/mojang/blaze3d/platform/GlUtil/m_166247_ (I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/GlUtil/allocateMemory (I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/GlUtil/m_166251_ (Ljava/nio/Buffer;)V com/mojang/blaze3d/platform/GlUtil/freeMemory (Ljava/nio/Buffer;)V +MD: com/mojang/blaze3d/platform/GlUtil/m_84818_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getVendor ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlUtil/m_84819_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getCpuInfo ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlUtil/m_84820_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getRenderer ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlUtil/m_84821_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getOpenGLVersion ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/IconSet/ ()V com/mojang/blaze3d/platform/IconSet/ ()V +MD: com/mojang/blaze3d/platform/IconSet/ (Ljava/lang/String;I[Ljava/lang/String;)V com/mojang/blaze3d/platform/IconSet/ (Ljava/lang/String;I[Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/IconSet/m_280095_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/IoSupplier; com/mojang/blaze3d/platform/IconSet/getMacIcon (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: com/mojang/blaze3d/platform/IconSet/m_280117_ (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; com/mojang/blaze3d/platform/IconSet/getFile (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: com/mojang/blaze3d/platform/IconSet/m_280284_ (Lnet/minecraft/server/packs/PackResources;)Ljava/util/List; com/mojang/blaze3d/platform/IconSet/getStandardIcons (Lnet/minecraft/server/packs/PackResources;)Ljava/util/List; +MD: com/mojang/blaze3d/platform/IconSet/m_280441_ ()[Lcom/mojang/blaze3d/platform/IconSet; com/mojang/blaze3d/platform/IconSet/$values ()[Lcom/mojang/blaze3d/platform/IconSet; +MD: com/mojang/blaze3d/platform/IconSet/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/IconSet; com/mojang/blaze3d/platform/IconSet/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/IconSet; +MD: com/mojang/blaze3d/platform/IconSet/values ()[Lcom/mojang/blaze3d/platform/IconSet; com/mojang/blaze3d/platform/IconSet/values ()[Lcom/mojang/blaze3d/platform/IconSet; +MD: com/mojang/blaze3d/platform/InputConstants/ ()V com/mojang/blaze3d/platform/InputConstants/ ()V +MD: com/mojang/blaze3d/platform/InputConstants/ ()V com/mojang/blaze3d/platform/InputConstants/ ()V +MD: com/mojang/blaze3d/platform/InputConstants/m_84826_ ()Z com/mojang/blaze3d/platform/InputConstants/isRawMouseInputSupported ()Z +MD: com/mojang/blaze3d/platform/InputConstants/m_84827_ (II)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants/getKey (II)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants/m_84830_ (JI)Z com/mojang/blaze3d/platform/InputConstants/isKeyDown (JI)Z +MD: com/mojang/blaze3d/platform/InputConstants/m_84833_ (JIDD)V com/mojang/blaze3d/platform/InputConstants/grabOrReleaseMouse (JIDD)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84838_ (JLorg/lwjgl/glfw/GLFWCursorPosCallbackI;Lorg/lwjgl/glfw/GLFWMouseButtonCallbackI;Lorg/lwjgl/glfw/GLFWScrollCallbackI;Lorg/lwjgl/glfw/GLFWDropCallbackI;)V com/mojang/blaze3d/platform/InputConstants/setupMouseCallbacks (JLorg/lwjgl/glfw/GLFWCursorPosCallbackI;Lorg/lwjgl/glfw/GLFWMouseButtonCallbackI;Lorg/lwjgl/glfw/GLFWScrollCallbackI;Lorg/lwjgl/glfw/GLFWDropCallbackI;)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84844_ (JLorg/lwjgl/glfw/GLFWKeyCallbackI;Lorg/lwjgl/glfw/GLFWCharModsCallbackI;)V com/mojang/blaze3d/platform/InputConstants/setupKeyboardCallbacks (JLorg/lwjgl/glfw/GLFWKeyCallbackI;Lorg/lwjgl/glfw/GLFWCharModsCallbackI;)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84848_ (JZ)V com/mojang/blaze3d/platform/InputConstants/updateRawMouseInput (JZ)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84851_ (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants/getKey (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants$Key/ ()V com/mojang/blaze3d/platform/InputConstants$Key/ ()V +MD: com/mojang/blaze3d/platform/InputConstants$Key/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;I)V com/mojang/blaze3d/platform/InputConstants$Key/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;I)V +MD: com/mojang/blaze3d/platform/InputConstants$Key/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/platform/InputConstants$Key/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/platform/InputConstants$Key/hashCode ()I com/mojang/blaze3d/platform/InputConstants$Key/hashCode ()I +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84868_ ()Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Key/getType ()Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84869_ (Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Key/lambda$new$0 (Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84873_ ()I com/mojang/blaze3d/platform/InputConstants$Key/getValue ()I +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84874_ ()Ljava/lang/String; com/mojang/blaze3d/platform/InputConstants$Key/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84875_ ()Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Key/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84876_ ()Ljava/util/OptionalInt; com/mojang/blaze3d/platform/InputConstants$Key/getNumericKeyValue ()Ljava/util/OptionalInt; +MD: com/mojang/blaze3d/platform/InputConstants$Key/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/InputConstants$Key/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/InputConstants$Type/ ()V com/mojang/blaze3d/platform/InputConstants$Type/ ()V +MD: com/mojang/blaze3d/platform/InputConstants$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V com/mojang/blaze3d/platform/InputConstants$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_166380_ ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Type/$values ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_287794_ (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Type/lambda$static$0 (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84895_ (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants$Type/getOrCreate (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84899_ (Lcom/mojang/blaze3d/platform/InputConstants$Type;Ljava/lang/String;I)V com/mojang/blaze3d/platform/InputConstants$Type/addKey (Lcom/mojang/blaze3d/platform/InputConstants$Type;Ljava/lang/String;I)V +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84903_ (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Type/lambda$static$2 (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84906_ (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants$Type/lambda$getOrCreate$3 (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84910_ (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Type/lambda$static$1 (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/InputConstants$Type/values ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Type/values ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/Lighting/ ()V com/mojang/blaze3d/platform/Lighting/ ()V +MD: com/mojang/blaze3d/platform/Lighting/ ()V com/mojang/blaze3d/platform/Lighting/ ()V +MD: com/mojang/blaze3d/platform/Lighting/m_166384_ ()V com/mojang/blaze3d/platform/Lighting/setupForEntityInInventory ()V +MD: com/mojang/blaze3d/platform/Lighting/m_252756_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/platform/Lighting/setupLevel (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/platform/Lighting/m_252995_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/platform/Lighting/setupNetherLevel (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/platform/Lighting/m_84930_ ()V com/mojang/blaze3d/platform/Lighting/setupForFlatItems ()V +MD: com/mojang/blaze3d/platform/Lighting/m_84931_ ()V com/mojang/blaze3d/platform/Lighting/setupFor3DItems ()V +MD: com/mojang/blaze3d/platform/MacosUtil/ ()V com/mojang/blaze3d/platform/MacosUtil/ ()V +MD: com/mojang/blaze3d/platform/MacosUtil/m_182517_ (J)V com/mojang/blaze3d/platform/MacosUtil/toggleFullscreen (J)V +MD: com/mojang/blaze3d/platform/MacosUtil/m_182519_ (Lca/weblite/objc/NSObject;)Z com/mojang/blaze3d/platform/MacosUtil/isInKioskMode (Lca/weblite/objc/NSObject;)Z +MD: com/mojang/blaze3d/platform/MacosUtil/m_182521_ (J)Ljava/util/Optional; com/mojang/blaze3d/platform/MacosUtil/getNsWindow (J)Ljava/util/Optional; +MD: com/mojang/blaze3d/platform/MacosUtil/m_182523_ (Lca/weblite/objc/NSObject;)V com/mojang/blaze3d/platform/MacosUtil/toggleFullscreen (Lca/weblite/objc/NSObject;)V +MD: com/mojang/blaze3d/platform/MacosUtil/m_247671_ (Lnet/minecraft/server/packs/resources/IoSupplier;)V com/mojang/blaze3d/platform/MacosUtil/loadIcon (Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: com/mojang/blaze3d/platform/MemoryTracker/ ()V com/mojang/blaze3d/platform/MemoryTracker/ ()V +MD: com/mojang/blaze3d/platform/MemoryTracker/ ()V com/mojang/blaze3d/platform/MemoryTracker/ ()V +MD: com/mojang/blaze3d/platform/MemoryTracker/m_182527_ (I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/MemoryTracker/create (I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/MemoryTracker/m_182529_ (Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/MemoryTracker/resize (Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/Monitor/ (J)V com/mojang/blaze3d/platform/Monitor/ (J)V +MD: com/mojang/blaze3d/platform/Monitor/m_84943_ ()V com/mojang/blaze3d/platform/Monitor/refreshVideoModes ()V +MD: com/mojang/blaze3d/platform/Monitor/m_84944_ (I)Lcom/mojang/blaze3d/platform/VideoMode; com/mojang/blaze3d/platform/Monitor/getMode (I)Lcom/mojang/blaze3d/platform/VideoMode; +MD: com/mojang/blaze3d/platform/Monitor/m_84946_ (Lcom/mojang/blaze3d/platform/VideoMode;)I com/mojang/blaze3d/platform/Monitor/getVideoModeIndex (Lcom/mojang/blaze3d/platform/VideoMode;)I +MD: com/mojang/blaze3d/platform/Monitor/m_84948_ (Ljava/util/Optional;)Lcom/mojang/blaze3d/platform/VideoMode; com/mojang/blaze3d/platform/Monitor/getPreferredVidMode (Ljava/util/Optional;)Lcom/mojang/blaze3d/platform/VideoMode; +MD: com/mojang/blaze3d/platform/Monitor/m_84950_ ()Lcom/mojang/blaze3d/platform/VideoMode; com/mojang/blaze3d/platform/Monitor/getCurrentMode ()Lcom/mojang/blaze3d/platform/VideoMode; +MD: com/mojang/blaze3d/platform/Monitor/m_84951_ ()I com/mojang/blaze3d/platform/Monitor/getX ()I +MD: com/mojang/blaze3d/platform/Monitor/m_84952_ ()I com/mojang/blaze3d/platform/Monitor/getY ()I +MD: com/mojang/blaze3d/platform/Monitor/m_84953_ ()I com/mojang/blaze3d/platform/Monitor/getModeCount ()I +MD: com/mojang/blaze3d/platform/Monitor/m_84954_ ()J com/mojang/blaze3d/platform/Monitor/getMonitor ()J +MD: com/mojang/blaze3d/platform/Monitor/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/Monitor/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/MonitorCreator/m_84956_ (J)Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/MonitorCreator/createMonitor (J)Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/NativeImage/ ()V com/mojang/blaze3d/platform/NativeImage/ ()V +MD: com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZ)V com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZ)V +MD: com/mojang/blaze3d/platform/NativeImage/ (IIZ)V com/mojang/blaze3d/platform/NativeImage/ (IIZ)V +MD: com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZJ)V com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZJ)V +MD: com/mojang/blaze3d/platform/NativeImage/close ()V com/mojang/blaze3d/platform/NativeImage/close ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_166400_ (F)V com/mojang/blaze3d/platform/NativeImage/downloadDepthBuffer (F)V +MD: com/mojang/blaze3d/platform/NativeImage/m_166402_ (IIB)V com/mojang/blaze3d/platform/NativeImage/setPixelLuminance (IIB)V +MD: com/mojang/blaze3d/platform/NativeImage/m_166408_ (II)B com/mojang/blaze3d/platform/NativeImage/getRedOrLuminance (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_166411_ (III)V com/mojang/blaze3d/platform/NativeImage/blendPixel (III)V +MD: com/mojang/blaze3d/platform/NativeImage/m_166415_ (II)B com/mojang/blaze3d/platform/NativeImage/getGreenOrLuminance (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_166418_ (II)B com/mojang/blaze3d/platform/NativeImage/getBlueOrLuminance (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_166421_ ()V com/mojang/blaze3d/platform/NativeImage/drawPixels ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_166422_ (II)Z com/mojang/blaze3d/platform/NativeImage/isOutsideBounds (II)Z +MD: com/mojang/blaze3d/platform/NativeImage/m_260930_ (Lcom/mojang/blaze3d/platform/NativeImage;IIIIIIZZ)V com/mojang/blaze3d/platform/NativeImage/copyRect (Lcom/mojang/blaze3d/platform/NativeImage;IIIIIIZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_266370_ ()[I com/mojang/blaze3d/platform/NativeImage/getPixelsRGBA ()[I +MD: com/mojang/blaze3d/platform/NativeImage/m_266528_ (Ljava/util/function/IntUnaryOperator;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/mappedCopy (Ljava/util/function/IntUnaryOperator;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_271751_ ([B)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read ([B)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_284481_ (Ljava/util/function/IntUnaryOperator;)V com/mojang/blaze3d/platform/NativeImage/applyToAllPixels (Ljava/util/function/IntUnaryOperator;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_84982_ ()I com/mojang/blaze3d/platform/NativeImage/getWidth ()I +MD: com/mojang/blaze3d/platform/NativeImage/m_84985_ (II)I com/mojang/blaze3d/platform/NativeImage/getPixelRGBA (II)I +MD: com/mojang/blaze3d/platform/NativeImage/m_84988_ (III)V com/mojang/blaze3d/platform/NativeImage/setPixelRGBA (III)V +MD: com/mojang/blaze3d/platform/NativeImage/m_84997_ (IIIII)V com/mojang/blaze3d/platform/NativeImage/fillRect (IIIII)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85003_ (IIIIIIIZZ)V com/mojang/blaze3d/platform/NativeImage/upload (IIIIIIIZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85013_ (IIIIIIIZZZZ)V com/mojang/blaze3d/platform/NativeImage/upload (IIIIIIIZZZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85025_ (IIIIIIZZ)V com/mojang/blaze3d/platform/NativeImage/copyRect (IIIIIIZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85034_ (IIIILcom/mojang/blaze3d/platform/NativeImage;)V com/mojang/blaze3d/platform/NativeImage/resizeSubRectTo (IIIILcom/mojang/blaze3d/platform/NativeImage;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85040_ (IIIZ)V com/mojang/blaze3d/platform/NativeImage/upload (IIIZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85045_ (IZ)V com/mojang/blaze3d/platform/NativeImage/downloadTexture (IZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85048_ (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85051_ (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85054_ (Lcom/mojang/blaze3d/platform/NativeImage;)V com/mojang/blaze3d/platform/NativeImage/copyFrom (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85056_ (Ljava/io/File;)V com/mojang/blaze3d/platform/NativeImage/writeToFile (Ljava/io/File;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85058_ (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85062_ (Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85064_ (Ljava/nio/channels/WritableByteChannel;)Z com/mojang/blaze3d/platform/NativeImage/writeToChannel (Ljava/nio/channels/WritableByteChannel;)Z +MD: com/mojang/blaze3d/platform/NativeImage/m_85066_ (Ljava/nio/file/Path;)V com/mojang/blaze3d/platform/NativeImage/writeToFile (Ljava/nio/file/Path;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85068_ (Lorg/lwjgl/stb/STBTTFontinfo;IIIFFFFII)V com/mojang/blaze3d/platform/NativeImage/copyFromFont (Lorg/lwjgl/stb/STBTTFontinfo;IIIFFFFII)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85081_ (ZZ)V com/mojang/blaze3d/platform/NativeImage/setFilter (ZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85084_ ()I com/mojang/blaze3d/platform/NativeImage/getHeight ()I +MD: com/mojang/blaze3d/platform/NativeImage/m_85087_ (II)B com/mojang/blaze3d/platform/NativeImage/getLuminanceOrAlpha (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_85090_ (IIIIIIIZZZZ)V com/mojang/blaze3d/platform/NativeImage/_upload (IIIIIIIZZZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85102_ ()Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage/format ()Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage/m_85105_ (IIIIIIIZZZZ)V com/mojang/blaze3d/platform/NativeImage/lambda$upload$0 (IIIIIIIZZZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85118_ ()[I com/mojang/blaze3d/platform/NativeImage/makePixelArray ()[I +MD: com/mojang/blaze3d/platform/NativeImage/m_85121_ ()[B com/mojang/blaze3d/platform/NativeImage/asByteArray ()[B +MD: com/mojang/blaze3d/platform/NativeImage/m_85122_ ()V com/mojang/blaze3d/platform/NativeImage/flipY ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_85123_ ()V com/mojang/blaze3d/platform/NativeImage/untrack ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_85124_ ()V com/mojang/blaze3d/platform/NativeImage/checkAllocated ()V +MD: com/mojang/blaze3d/platform/NativeImage/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/NativeImage/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/NativeImage$Format/ ()V com/mojang/blaze3d/platform/NativeImage$Format/ ()V +MD: com/mojang/blaze3d/platform/NativeImage$Format/ (Ljava/lang/String;IIIZZZZZIIIIIZ)V com/mojang/blaze3d/platform/NativeImage$Format/ (Ljava/lang/String;IIIZZZZZIIIIIZ)V +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166425_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasRed ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166426_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasGreen ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166427_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasBlue ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166428_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminance ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166429_ ()I com/mojang/blaze3d/platform/NativeImage$Format/redOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166430_ ()I com/mojang/blaze3d/platform/NativeImage$Format/greenOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166431_ ()I com/mojang/blaze3d/platform/NativeImage$Format/blueOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166432_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166433_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrRed ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166434_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrGreen ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166435_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrBlue ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166436_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrRedOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166437_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrGreenOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166438_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrBlueOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166439_ ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/$values ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85161_ ()I com/mojang/blaze3d/platform/NativeImage$Format/components ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85166_ ()V com/mojang/blaze3d/platform/NativeImage$Format/setPackPixelStoreState ()V +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85167_ (I)Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/getStbFormat (I)Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85169_ ()V com/mojang/blaze3d/platform/NativeImage$Format/setUnpackPixelStoreState ()V +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85170_ ()I com/mojang/blaze3d/platform/NativeImage$Format/glFormat ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85171_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasAlpha ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85172_ ()I com/mojang/blaze3d/platform/NativeImage$Format/alphaOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85173_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrAlpha ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85174_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrAlphaOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85175_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/supportedByStb ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$Format/values ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/values ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ ()V com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ ()V +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/m_166442_ ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/$values ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/m_85191_ ()I com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/glFormat ()I +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/values ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/values ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +MD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/ (Ljava/nio/channels/WritableByteChannel;)V com/mojang/blaze3d/platform/NativeImage$WriteCallback/ (Ljava/nio/channels/WritableByteChannel;)V +MD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/invoke (JJI)V com/mojang/blaze3d/platform/NativeImage$WriteCallback/invoke (JJI)V +MD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/m_85202_ ()V com/mojang/blaze3d/platform/NativeImage$WriteCallback/throwIfException ()V +MD: com/mojang/blaze3d/platform/ScreenManager/ ()V com/mojang/blaze3d/platform/ScreenManager/ ()V +MD: com/mojang/blaze3d/platform/ScreenManager/ (Lcom/mojang/blaze3d/platform/MonitorCreator;)V com/mojang/blaze3d/platform/ScreenManager/ (Lcom/mojang/blaze3d/platform/MonitorCreator;)V +MD: com/mojang/blaze3d/platform/ScreenManager/m_85266_ ()V com/mojang/blaze3d/platform/ScreenManager/shutdown ()V +MD: com/mojang/blaze3d/platform/ScreenManager/m_85267_ (III)I com/mojang/blaze3d/platform/ScreenManager/clamp (III)I +MD: com/mojang/blaze3d/platform/ScreenManager/m_85271_ (J)Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/ScreenManager/getMonitor (J)Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/ScreenManager/m_85273_ (JI)V com/mojang/blaze3d/platform/ScreenManager/onMonitorChange (JI)V +MD: com/mojang/blaze3d/platform/ScreenManager/m_85276_ (Lcom/mojang/blaze3d/platform/Window;)Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/ScreenManager/findBestMonitor (Lcom/mojang/blaze3d/platform/Window;)Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/TextureUtil/ ()V com/mojang/blaze3d/platform/TextureUtil/ ()V +MD: com/mojang/blaze3d/platform/TextureUtil/ ()V com/mojang/blaze3d/platform/TextureUtil/ ()V +MD: com/mojang/blaze3d/platform/TextureUtil/bind (I)V com/mojang/blaze3d/platform/TextureUtil/bind (I)V +MD: com/mojang/blaze3d/platform/TextureUtil/generateTextureId ()I com/mojang/blaze3d/platform/TextureUtil/generateTextureId ()I +MD: com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath (Ljava/nio/file/Path;)Ljava/nio/file/Path; com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath ()Ljava/nio/file/Path; com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath ()Ljava/nio/file/Path; +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;IIII)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;IIII)V +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;III)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;III)V +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (IIII)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (IIII)V +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (III)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (III)V +MD: com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/nio/channels/ReadableByteChannel;I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/nio/channels/ReadableByteChannel;I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/io/InputStream;)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/io/InputStream;)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/TextureUtil/releaseTextureId (I)V com/mojang/blaze3d/platform/TextureUtil/releaseTextureId (I)V +MD: com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIII)V com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIII)V +MD: com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIIILjava/util/function/IntUnaryOperator;)V com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIIILjava/util/function/IntUnaryOperator;)V +MD: com/mojang/blaze3d/platform/VideoMode/ ()V com/mojang/blaze3d/platform/VideoMode/ ()V +MD: com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode;)V com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode;)V +MD: com/mojang/blaze3d/platform/VideoMode/ (IIIIII)V com/mojang/blaze3d/platform/VideoMode/ (IIIIII)V +MD: com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode$Buffer;)V com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode$Buffer;)V +MD: com/mojang/blaze3d/platform/VideoMode/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/platform/VideoMode/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/platform/VideoMode/hashCode ()I com/mojang/blaze3d/platform/VideoMode/hashCode ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85332_ ()I com/mojang/blaze3d/platform/VideoMode/getWidth ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85333_ (Ljava/lang/String;)Ljava/util/Optional; com/mojang/blaze3d/platform/VideoMode/read (Ljava/lang/String;)Ljava/util/Optional; +MD: com/mojang/blaze3d/platform/VideoMode/m_85335_ ()I com/mojang/blaze3d/platform/VideoMode/getHeight ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85336_ ()I com/mojang/blaze3d/platform/VideoMode/getRedBits ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85337_ ()I com/mojang/blaze3d/platform/VideoMode/getGreenBits ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85338_ ()I com/mojang/blaze3d/platform/VideoMode/getBlueBits ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85341_ ()I com/mojang/blaze3d/platform/VideoMode/getRefreshRate ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85342_ ()Ljava/lang/String; com/mojang/blaze3d/platform/VideoMode/write ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/VideoMode/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/VideoMode/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/Window/ ()V com/mojang/blaze3d/platform/Window/ ()V +MD: com/mojang/blaze3d/platform/Window/ (Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V com/mojang/blaze3d/platform/Window/ (Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/Window/close ()V com/mojang/blaze3d/platform/Window/close ()V +MD: com/mojang/blaze3d/platform/Window/m_166447_ (II)V com/mojang/blaze3d/platform/Window/setWindowed (II)V +MD: com/mojang/blaze3d/platform/Window/m_166450_ (I)V com/mojang/blaze3d/platform/Window/setWidth (I)V +MD: com/mojang/blaze3d/platform/Window/m_166452_ (I)V com/mojang/blaze3d/platform/Window/setHeight (I)V +MD: com/mojang/blaze3d/platform/Window/m_280655_ (Lnet/minecraft/server/packs/PackResources;Lcom/mojang/blaze3d/platform/IconSet;)V com/mojang/blaze3d/platform/Window/setIcon (Lnet/minecraft/server/packs/PackResources;Lcom/mojang/blaze3d/platform/IconSet;)V +MD: com/mojang/blaze3d/platform/Window/m_85377_ ()I com/mojang/blaze3d/platform/Window/getRefreshRate ()I +MD: com/mojang/blaze3d/platform/Window/m_85378_ (D)V com/mojang/blaze3d/platform/Window/setGuiScale (D)V +MD: com/mojang/blaze3d/platform/Window/m_85380_ (I)V com/mojang/blaze3d/platform/Window/setFramerateLimit (I)V +MD: com/mojang/blaze3d/platform/Window/m_85382_ (IJ)V com/mojang/blaze3d/platform/Window/defaultErrorCallback (IJ)V +MD: com/mojang/blaze3d/platform/Window/m_85385_ (IZ)I com/mojang/blaze3d/platform/Window/calculateScale (IZ)I +MD: com/mojang/blaze3d/platform/Window/m_85388_ (JII)V com/mojang/blaze3d/platform/Window/onMove (JII)V +MD: com/mojang/blaze3d/platform/Window/m_85392_ (JZ)V com/mojang/blaze3d/platform/Window/onFocus (JZ)V +MD: com/mojang/blaze3d/platform/Window/m_85403_ (Ljava/lang/String;)V com/mojang/blaze3d/platform/Window/setErrorSection (Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/Window/m_85405_ (Ljava/util/Optional;)V com/mojang/blaze3d/platform/Window/setPreferredFullscreenVideoMode (Ljava/util/Optional;)V +MD: com/mojang/blaze3d/platform/Window/m_85407_ (Ljava/util/function/BiConsumer;)V com/mojang/blaze3d/platform/Window/checkGlfwError (Ljava/util/function/BiConsumer;)V +MD: com/mojang/blaze3d/platform/Window/m_85409_ (Z)V com/mojang/blaze3d/platform/Window/updateVsync (Z)V +MD: com/mojang/blaze3d/platform/Window/m_85411_ ()Z com/mojang/blaze3d/platform/Window/shouldClose ()Z +MD: com/mojang/blaze3d/platform/Window/m_85412_ (IJ)V com/mojang/blaze3d/platform/Window/bootCrash (IJ)V +MD: com/mojang/blaze3d/platform/Window/m_85415_ (JII)V com/mojang/blaze3d/platform/Window/onFramebufferResize (JII)V +MD: com/mojang/blaze3d/platform/Window/m_85419_ (JZ)V com/mojang/blaze3d/platform/Window/onEnter (JZ)V +MD: com/mojang/blaze3d/platform/Window/m_85422_ (Ljava/lang/String;)V com/mojang/blaze3d/platform/Window/setTitle (Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/Window/m_85424_ (Z)V com/mojang/blaze3d/platform/Window/updateRawMouseInput (Z)V +MD: com/mojang/blaze3d/platform/Window/m_85426_ ()V com/mojang/blaze3d/platform/Window/setDefaultErrorCallback ()V +MD: com/mojang/blaze3d/platform/Window/m_85427_ (JII)V com/mojang/blaze3d/platform/Window/onResize (JII)V +MD: com/mojang/blaze3d/platform/Window/m_85431_ (Z)V com/mojang/blaze3d/platform/Window/updateFullscreen (Z)V +MD: com/mojang/blaze3d/platform/Window/m_85434_ ()I com/mojang/blaze3d/platform/Window/getFramerateLimit ()I +MD: com/mojang/blaze3d/platform/Window/m_85435_ ()V com/mojang/blaze3d/platform/Window/updateDisplay ()V +MD: com/mojang/blaze3d/platform/Window/m_85436_ ()Ljava/util/Optional; com/mojang/blaze3d/platform/Window/getPreferredFullscreenVideoMode ()Ljava/util/Optional; +MD: com/mojang/blaze3d/platform/Window/m_85437_ ()V com/mojang/blaze3d/platform/Window/changeFullscreenVideoMode ()V +MD: com/mojang/blaze3d/platform/Window/m_85438_ ()V com/mojang/blaze3d/platform/Window/toggleFullScreen ()V +MD: com/mojang/blaze3d/platform/Window/m_85439_ ()J com/mojang/blaze3d/platform/Window/getWindow ()J +MD: com/mojang/blaze3d/platform/Window/m_85440_ ()Z com/mojang/blaze3d/platform/Window/isFullscreen ()Z +MD: com/mojang/blaze3d/platform/Window/m_85441_ ()I com/mojang/blaze3d/platform/Window/getWidth ()I +MD: com/mojang/blaze3d/platform/Window/m_85442_ ()I com/mojang/blaze3d/platform/Window/getHeight ()I +MD: com/mojang/blaze3d/platform/Window/m_85443_ ()I com/mojang/blaze3d/platform/Window/getScreenWidth ()I +MD: com/mojang/blaze3d/platform/Window/m_85444_ ()I com/mojang/blaze3d/platform/Window/getScreenHeight ()I +MD: com/mojang/blaze3d/platform/Window/m_85445_ ()I com/mojang/blaze3d/platform/Window/getGuiScaledWidth ()I +MD: com/mojang/blaze3d/platform/Window/m_85446_ ()I com/mojang/blaze3d/platform/Window/getGuiScaledHeight ()I +MD: com/mojang/blaze3d/platform/Window/m_85447_ ()I com/mojang/blaze3d/platform/Window/getX ()I +MD: com/mojang/blaze3d/platform/Window/m_85448_ ()I com/mojang/blaze3d/platform/Window/getY ()I +MD: com/mojang/blaze3d/platform/Window/m_85449_ ()D com/mojang/blaze3d/platform/Window/getGuiScale ()D +MD: com/mojang/blaze3d/platform/Window/m_85450_ ()Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/Window/findBestMonitor ()Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/Window/m_85451_ ()V com/mojang/blaze3d/platform/Window/setBootErrorCallback ()V +MD: com/mojang/blaze3d/platform/Window/m_85452_ ()V com/mojang/blaze3d/platform/Window/refreshFramebufferSize ()V +MD: com/mojang/blaze3d/platform/Window/m_85453_ ()V com/mojang/blaze3d/platform/Window/setMode ()V +MD: com/mojang/blaze3d/platform/Window$WindowInitFailed/ (Ljava/lang/String;)V com/mojang/blaze3d/platform/Window$WindowInitFailed/ (Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/WindowEventHandler/m_5740_ ()V com/mojang/blaze3d/platform/WindowEventHandler/cursorEntered ()V +MD: com/mojang/blaze3d/platform/WindowEventHandler/m_5741_ ()V com/mojang/blaze3d/platform/WindowEventHandler/resizeDisplay ()V +MD: com/mojang/blaze3d/platform/WindowEventHandler/m_7440_ (Z)V com/mojang/blaze3d/platform/WindowEventHandler/setWindowActive (Z)V +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_142138_ (ZLjava/lang/String;)Ljava/lang/String; com/mojang/blaze3d/preprocessor/GlslPreprocessor/applyImport (ZLjava/lang/String;)Ljava/lang/String; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166461_ (Ljava/lang/String;)Ljava/util/List; com/mojang/blaze3d/preprocessor/GlslPreprocessor/process (Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166463_ (Ljava/lang/String;I)Ljava/lang/String; com/mojang/blaze3d/preprocessor/GlslPreprocessor/setVersion (Ljava/lang/String;I)Ljava/lang/String; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166466_ (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;)Ljava/lang/String; com/mojang/blaze3d/preprocessor/GlslPreprocessor/processVersions (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;)Ljava/lang/String; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166469_ (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;Ljava/lang/String;)Ljava/util/List; com/mojang/blaze3d/preprocessor/GlslPreprocessor/processImports (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166473_ (Ljava/lang/String;Ljava/util/regex/Matcher;)Z com/mojang/blaze3d/preprocessor/GlslPreprocessor/isDirectiveEnabled (Ljava/lang/String;Ljava/util/regex/Matcher;)Z +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166476_ (Ljava/lang/String;Ljava/util/regex/Matcher;I)Z com/mojang/blaze3d/preprocessor/GlslPreprocessor/isDirectiveDisabled (Ljava/lang/String;Ljava/util/regex/Matcher;I)Z +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/ ()V com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/ ()V +MD: com/mojang/blaze3d/shaders/AbstractUniform/ ()V com/mojang/blaze3d/shaders/AbstractUniform/ ()V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_141963_ (FFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat3x2 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_141964_ (FFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat2x3 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_141978_ (FFFFFFFFFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat4x4 (FFFFFFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142004_ (FFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat4x2 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142005_ (FFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat2x4 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142217_ (FFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat3x3 (FFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142276_ (Lorg/joml/Vector3f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142326_ (II)V com/mojang/blaze3d/shaders/AbstractUniform/set (II)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142492_ (IIII)V com/mojang/blaze3d/shaders/AbstractUniform/set (IIII)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142558_ (Lorg/joml/Vector4f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Vector4f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142588_ (FFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat2x2 (FFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142604_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat3x4 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142605_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat4x3 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142617_ (I)V com/mojang/blaze3d/shaders/AbstractUniform/set (I)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142693_ (III)V com/mojang/blaze3d/shaders/AbstractUniform/set (III)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_200759_ (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5679_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5805_ (FFFF)V com/mojang/blaze3d/shaders/AbstractUniform/set (FFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5808_ (FFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setSafe (FFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5889_ (FFF)V com/mojang/blaze3d/shaders/AbstractUniform/set (FFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5941_ ([F)V com/mojang/blaze3d/shaders/AbstractUniform/set ([F)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5985_ (F)V com/mojang/blaze3d/shaders/AbstractUniform/set (F)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_7401_ (IIII)V com/mojang/blaze3d/shaders/AbstractUniform/setSafe (IIII)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_7971_ (FF)V com/mojang/blaze3d/shaders/AbstractUniform/set (FF)V +MD: com/mojang/blaze3d/shaders/BlendMode/ (III)V com/mojang/blaze3d/shaders/BlendMode/ (III)V +MD: com/mojang/blaze3d/shaders/BlendMode/ (IIIII)V com/mojang/blaze3d/shaders/BlendMode/ (IIIII)V +MD: com/mojang/blaze3d/shaders/BlendMode/ ()V com/mojang/blaze3d/shaders/BlendMode/ ()V +MD: com/mojang/blaze3d/shaders/BlendMode/ (ZZIIIII)V com/mojang/blaze3d/shaders/BlendMode/ (ZZIIIII)V +MD: com/mojang/blaze3d/shaders/BlendMode/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/shaders/BlendMode/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/shaders/BlendMode/hashCode ()I com/mojang/blaze3d/shaders/BlendMode/hashCode ()I +MD: com/mojang/blaze3d/shaders/BlendMode/m_85526_ ()V com/mojang/blaze3d/shaders/BlendMode/apply ()V +MD: com/mojang/blaze3d/shaders/BlendMode/m_85527_ (Ljava/lang/String;)I com/mojang/blaze3d/shaders/BlendMode/stringToBlendFunc (Ljava/lang/String;)I +MD: com/mojang/blaze3d/shaders/BlendMode/m_85529_ ()Z com/mojang/blaze3d/shaders/BlendMode/isOpaque ()Z +MD: com/mojang/blaze3d/shaders/BlendMode/m_85530_ (Ljava/lang/String;)I com/mojang/blaze3d/shaders/BlendMode/stringToBlendFactor (Ljava/lang/String;)I +MD: com/mojang/blaze3d/shaders/EffectProgram/ ()V com/mojang/blaze3d/shaders/EffectProgram/ ()V +MD: com/mojang/blaze3d/shaders/EffectProgram/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V com/mojang/blaze3d/shaders/EffectProgram/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V +MD: com/mojang/blaze3d/shaders/EffectProgram/m_166586_ (Lcom/mojang/blaze3d/shaders/Effect;)V com/mojang/blaze3d/shaders/EffectProgram/attachToEffect (Lcom/mojang/blaze3d/shaders/Effect;)V +MD: com/mojang/blaze3d/shaders/EffectProgram/m_166588_ (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; com/mojang/blaze3d/shaders/EffectProgram/compileShader (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; +MD: com/mojang/blaze3d/shaders/EffectProgram/m_85543_ ()V com/mojang/blaze3d/shaders/EffectProgram/close ()V +MD: com/mojang/blaze3d/shaders/EffectProgram$1/ ()V com/mojang/blaze3d/shaders/EffectProgram$1/ ()V +MD: com/mojang/blaze3d/shaders/EffectProgram$1/m_142138_ (ZLjava/lang/String;)Ljava/lang/String; com/mojang/blaze3d/shaders/EffectProgram$1/applyImport (ZLjava/lang/String;)Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/FogShape/ ()V com/mojang/blaze3d/shaders/FogShape/ ()V +MD: com/mojang/blaze3d/shaders/FogShape/ (Ljava/lang/String;II)V com/mojang/blaze3d/shaders/FogShape/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/shaders/FogShape/m_202324_ ()I com/mojang/blaze3d/shaders/FogShape/getIndex ()I +MD: com/mojang/blaze3d/shaders/FogShape/m_202325_ ()[Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/shaders/FogShape/$values ()[Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/shaders/FogShape/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/shaders/FogShape/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/shaders/FogShape/values ()[Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/shaders/FogShape/values ()[Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/shaders/Program/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V com/mojang/blaze3d/shaders/Program/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V +MD: com/mojang/blaze3d/shaders/Program/m_166604_ (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)Lcom/mojang/blaze3d/shaders/Program; com/mojang/blaze3d/shaders/Program/compileShader (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)Lcom/mojang/blaze3d/shaders/Program; +MD: com/mojang/blaze3d/shaders/Program/m_166610_ (Lcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/Program/attachToShader (Lcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/Program/m_166612_ (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)I com/mojang/blaze3d/shaders/Program/compileShaderInternal (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)I +MD: com/mojang/blaze3d/shaders/Program/m_166618_ ()I com/mojang/blaze3d/shaders/Program/getId ()I +MD: com/mojang/blaze3d/shaders/Program/m_85543_ ()V com/mojang/blaze3d/shaders/Program/close ()V +MD: com/mojang/blaze3d/shaders/Program/m_85551_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Program/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Program$Type/ ()V com/mojang/blaze3d/shaders/Program$Type/ ()V +MD: com/mojang/blaze3d/shaders/Program$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V com/mojang/blaze3d/shaders/Program$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V +MD: com/mojang/blaze3d/shaders/Program$Type/m_166619_ ()[Lcom/mojang/blaze3d/shaders/Program$Type; com/mojang/blaze3d/shaders/Program$Type/$values ()[Lcom/mojang/blaze3d/shaders/Program$Type; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85566_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Program$Type/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85569_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Program$Type/getExtension ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85570_ ()Ljava/util/Map; com/mojang/blaze3d/shaders/Program$Type/getPrograms ()Ljava/util/Map; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85571_ ()I com/mojang/blaze3d/shaders/Program$Type/getGlType ()I +MD: com/mojang/blaze3d/shaders/Program$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program$Type; com/mojang/blaze3d/shaders/Program$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program$Type; +MD: com/mojang/blaze3d/shaders/Program$Type/values ()[Lcom/mojang/blaze3d/shaders/Program$Type; com/mojang/blaze3d/shaders/Program$Type/values ()[Lcom/mojang/blaze3d/shaders/Program$Type; +MD: com/mojang/blaze3d/shaders/ProgramManager/ ()V com/mojang/blaze3d/shaders/ProgramManager/ ()V +MD: com/mojang/blaze3d/shaders/ProgramManager/ ()V com/mojang/blaze3d/shaders/ProgramManager/ ()V +MD: com/mojang/blaze3d/shaders/ProgramManager/m_166621_ (Lcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/ProgramManager/releaseProgram (Lcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/ProgramManager/m_166623_ (Lcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/ProgramManager/linkShader (Lcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/ProgramManager/m_85577_ ()I com/mojang/blaze3d/shaders/ProgramManager/createProgram ()I +MD: com/mojang/blaze3d/shaders/ProgramManager/m_85578_ (I)V com/mojang/blaze3d/shaders/ProgramManager/glUseProgram (I)V +MD: com/mojang/blaze3d/shaders/Shader/m_108943_ ()I com/mojang/blaze3d/shaders/Shader/getId ()I +MD: com/mojang/blaze3d/shaders/Shader/m_108957_ ()V com/mojang/blaze3d/shaders/Shader/markDirty ()V +MD: com/mojang/blaze3d/shaders/Shader/m_108962_ ()Lcom/mojang/blaze3d/shaders/Program; com/mojang/blaze3d/shaders/Shader/getVertexProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: com/mojang/blaze3d/shaders/Shader/m_108964_ ()Lcom/mojang/blaze3d/shaders/Program; com/mojang/blaze3d/shaders/Shader/getFragmentProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: com/mojang/blaze3d/shaders/Shader/m_142662_ ()V com/mojang/blaze3d/shaders/Shader/attachToProgram ()V +MD: com/mojang/blaze3d/shaders/Uniform/ ()V com/mojang/blaze3d/shaders/Uniform/ ()V +MD: com/mojang/blaze3d/shaders/Uniform/ (Ljava/lang/String;IILcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/Uniform/ (Ljava/lang/String;IILcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/Uniform/close ()V com/mojang/blaze3d/shaders/Uniform/close ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_141963_ (FFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat3x2 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_141964_ (FFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat2x3 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_141978_ (FFFFFFFFFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat4x4 (FFFFFFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142004_ (FFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat4x2 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142005_ (FFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat2x4 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142217_ (FFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat3x3 (FFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142276_ (Lorg/joml/Vector3f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142326_ (II)V com/mojang/blaze3d/shaders/Uniform/set (II)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142492_ (IIII)V com/mojang/blaze3d/shaders/Uniform/set (IIII)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142558_ (Lorg/joml/Vector4f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Vector4f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142588_ (FFFF)V com/mojang/blaze3d/shaders/Uniform/setMat2x2 (FFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142604_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat3x4 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142605_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat4x3 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142617_ (I)V com/mojang/blaze3d/shaders/Uniform/set (I)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142693_ (III)V com/mojang/blaze3d/shaders/Uniform/set (III)V +MD: com/mojang/blaze3d/shaders/Uniform/m_166700_ (IF)V com/mojang/blaze3d/shaders/Uniform/set (IF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_166710_ (IILjava/lang/CharSequence;)V com/mojang/blaze3d/shaders/Uniform/glBindAttribLocation (IILjava/lang/CharSequence;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_166752_ ()I com/mojang/blaze3d/shaders/Uniform/getLocation ()I +MD: com/mojang/blaze3d/shaders/Uniform/m_166758_ ()I com/mojang/blaze3d/shaders/Uniform/getCount ()I +MD: com/mojang/blaze3d/shaders/Uniform/m_166759_ ()I com/mojang/blaze3d/shaders/Uniform/getType ()I +MD: com/mojang/blaze3d/shaders/Uniform/m_166760_ ()Ljava/nio/IntBuffer; com/mojang/blaze3d/shaders/Uniform/getIntBuffer ()Ljava/nio/IntBuffer; +MD: com/mojang/blaze3d/shaders/Uniform/m_166761_ ()Ljava/nio/FloatBuffer; com/mojang/blaze3d/shaders/Uniform/getFloatBuffer ()Ljava/nio/FloatBuffer; +MD: com/mojang/blaze3d/shaders/Uniform/m_200759_ (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5679_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5805_ (FFFF)V com/mojang/blaze3d/shaders/Uniform/set (FFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5808_ (FFFF)V com/mojang/blaze3d/shaders/Uniform/setSafe (FFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5889_ (FFF)V com/mojang/blaze3d/shaders/Uniform/set (FFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5941_ ([F)V com/mojang/blaze3d/shaders/Uniform/set ([F)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5985_ (F)V com/mojang/blaze3d/shaders/Uniform/set (F)V +MD: com/mojang/blaze3d/shaders/Uniform/m_7401_ (IIII)V com/mojang/blaze3d/shaders/Uniform/setSafe (IIII)V +MD: com/mojang/blaze3d/shaders/Uniform/m_7971_ (FF)V com/mojang/blaze3d/shaders/Uniform/set (FF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_85599_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Uniform/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Uniform/m_85614_ (I)V com/mojang/blaze3d/shaders/Uniform/setLocation (I)V +MD: com/mojang/blaze3d/shaders/Uniform/m_85616_ (II)V com/mojang/blaze3d/shaders/Uniform/uploadInteger (II)V +MD: com/mojang/blaze3d/shaders/Uniform/m_85624_ (ILjava/lang/CharSequence;)I com/mojang/blaze3d/shaders/Uniform/glGetUniformLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/shaders/Uniform/m_85629_ (Ljava/lang/String;)I com/mojang/blaze3d/shaders/Uniform/getTypeFromString (Ljava/lang/String;)I +MD: com/mojang/blaze3d/shaders/Uniform/m_85633_ ()V com/mojang/blaze3d/shaders/Uniform/upload ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85639_ (ILjava/lang/CharSequence;)I com/mojang/blaze3d/shaders/Uniform/glGetAttribLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/shaders/Uniform/m_85642_ ()V com/mojang/blaze3d/shaders/Uniform/markDirty ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85644_ ()V com/mojang/blaze3d/shaders/Uniform/uploadAsInteger ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85645_ ()V com/mojang/blaze3d/shaders/Uniform/uploadAsFloat ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85646_ ()V com/mojang/blaze3d/shaders/Uniform/uploadAsMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/ ()V com/mojang/blaze3d/systems/RenderSystem/ ()V +MD: com/mojang/blaze3d/systems/RenderSystem/ ()V com/mojang/blaze3d/systems/RenderSystem/ ()V +MD: com/mojang/blaze3d/systems/RenderSystem/_backupProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/_backupProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/_restoreProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/_restoreProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/_setShaderColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogEnd (F)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogEnd (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogStart (F)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogStart (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderGlintAlpha (F)V com/mojang/blaze3d/systems/RenderSystem/_setShaderGlintAlpha (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/_setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (II)V com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/activeTexture (I)V com/mojang/blaze3d/systems/RenderSystem/activeTexture (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/applyModelViewMatrix ()V com/mojang/blaze3d/systems/RenderSystem/applyModelViewMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertInInitPhase ()V com/mojang/blaze3d/systems/RenderSystem/assertInInitPhase ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnGameThread ()V com/mojang/blaze3d/systems/RenderSystem/assertOnGameThread ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnGameThreadOrInit ()V com/mojang/blaze3d/systems/RenderSystem/assertOnGameThreadOrInit ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThread ()V com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThread ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThreadOrInit ()V com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThreadOrInit ()V +MD: com/mojang/blaze3d/systems/RenderSystem/backupProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/backupProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/beginInitialization ()V com/mojang/blaze3d/systems/RenderSystem/beginInitialization ()V +MD: com/mojang/blaze3d/systems/RenderSystem/bindTexture (I)V com/mojang/blaze3d/systems/RenderSystem/bindTexture (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/bindTextureForSetup (I)V com/mojang/blaze3d/systems/RenderSystem/bindTextureForSetup (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendEquation (I)V com/mojang/blaze3d/systems/RenderSystem/blendEquation (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFunc (II)V com/mojang/blaze3d/systems/RenderSystem/blendFunc (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFunc (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/blendFunc (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (IIII)V com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/clear (IZ)V com/mojang/blaze3d/systems/RenderSystem/clear (IZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/clearColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/clearColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/clearDepth (D)V com/mojang/blaze3d/systems/RenderSystem/clearDepth (D)V +MD: com/mojang/blaze3d/systems/RenderSystem/clearStencil (I)V com/mojang/blaze3d/systems/RenderSystem/clearStencil (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/colorMask (ZZZZ)V com/mojang/blaze3d/systems/RenderSystem/colorMask (ZZZZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/constructThreadException ()Ljava/lang/IllegalStateException; com/mojang/blaze3d/systems/RenderSystem/constructThreadException ()Ljava/lang/IllegalStateException; +MD: com/mojang/blaze3d/systems/RenderSystem/defaultBlendFunc ()V com/mojang/blaze3d/systems/RenderSystem/defaultBlendFunc ()V +MD: com/mojang/blaze3d/systems/RenderSystem/deleteTexture (I)V com/mojang/blaze3d/systems/RenderSystem/deleteTexture (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/depthFunc (I)V com/mojang/blaze3d/systems/RenderSystem/depthFunc (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/depthMask (Z)V com/mojang/blaze3d/systems/RenderSystem/depthMask (Z)V +MD: com/mojang/blaze3d/systems/RenderSystem/disableBlend ()V com/mojang/blaze3d/systems/RenderSystem/disableBlend ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableColorLogicOp ()V com/mojang/blaze3d/systems/RenderSystem/disableColorLogicOp ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableCull ()V com/mojang/blaze3d/systems/RenderSystem/disableCull ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableDepthTest ()V com/mojang/blaze3d/systems/RenderSystem/disableDepthTest ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disablePolygonOffset ()V com/mojang/blaze3d/systems/RenderSystem/disablePolygonOffset ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableScissor ()V com/mojang/blaze3d/systems/RenderSystem/disableScissor ()V +MD: com/mojang/blaze3d/systems/RenderSystem/drawElements (III)V com/mojang/blaze3d/systems/RenderSystem/drawElements (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/enableBlend ()V com/mojang/blaze3d/systems/RenderSystem/enableBlend ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableColorLogicOp ()V com/mojang/blaze3d/systems/RenderSystem/enableColorLogicOp ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableCull ()V com/mojang/blaze3d/systems/RenderSystem/enableCull ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableDepthTest ()V com/mojang/blaze3d/systems/RenderSystem/enableDepthTest ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enablePolygonOffset ()V com/mojang/blaze3d/systems/RenderSystem/enablePolygonOffset ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableScissor (IIII)V com/mojang/blaze3d/systems/RenderSystem/enableScissor (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/finishInitialization ()V com/mojang/blaze3d/systems/RenderSystem/finishInitialization ()V +MD: com/mojang/blaze3d/systems/RenderSystem/flipFrame (J)V com/mojang/blaze3d/systems/RenderSystem/flipFrame (J)V +MD: com/mojang/blaze3d/systems/RenderSystem/getApiDescription ()Ljava/lang/String; com/mojang/blaze3d/systems/RenderSystem/getApiDescription ()Ljava/lang/String; +MD: com/mojang/blaze3d/systems/RenderSystem/getBackendDescription ()Ljava/lang/String; com/mojang/blaze3d/systems/RenderSystem/getBackendDescription ()Ljava/lang/String; +MD: com/mojang/blaze3d/systems/RenderSystem/getCapsString ()Ljava/lang/String; com/mojang/blaze3d/systems/RenderSystem/getCapsString ()Ljava/lang/String; +MD: com/mojang/blaze3d/systems/RenderSystem/getInverseViewRotationMatrix ()Lorg/joml/Matrix3f; com/mojang/blaze3d/systems/RenderSystem/getInverseViewRotationMatrix ()Lorg/joml/Matrix3f; +MD: com/mojang/blaze3d/systems/RenderSystem/getModelViewMatrix ()Lorg/joml/Matrix4f; com/mojang/blaze3d/systems/RenderSystem/getModelViewMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/systems/RenderSystem/getModelViewStack ()Lcom/mojang/blaze3d/vertex/PoseStack; com/mojang/blaze3d/systems/RenderSystem/getModelViewStack ()Lcom/mojang/blaze3d/vertex/PoseStack; +MD: com/mojang/blaze3d/systems/RenderSystem/getProjectionMatrix ()Lorg/joml/Matrix4f; com/mojang/blaze3d/systems/RenderSystem/getProjectionMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/systems/RenderSystem/getSequentialBuffer (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; com/mojang/blaze3d/systems/RenderSystem/getSequentialBuffer (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; +MD: com/mojang/blaze3d/systems/RenderSystem/getShader ()Lnet/minecraft/client/renderer/ShaderInstance; com/mojang/blaze3d/systems/RenderSystem/getShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderColor ()[F com/mojang/blaze3d/systems/RenderSystem/getShaderColor ()[F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogColor ()[F com/mojang/blaze3d/systems/RenderSystem/getShaderFogColor ()[F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogEnd ()F com/mojang/blaze3d/systems/RenderSystem/getShaderFogEnd ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogShape ()Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/systems/RenderSystem/getShaderFogShape ()Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogStart ()F com/mojang/blaze3d/systems/RenderSystem/getShaderFogStart ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderGameTime ()F com/mojang/blaze3d/systems/RenderSystem/getShaderGameTime ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderGlintAlpha ()F com/mojang/blaze3d/systems/RenderSystem/getShaderGlintAlpha ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderLineWidth ()F com/mojang/blaze3d/systems/RenderSystem/getShaderLineWidth ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderTexture (I)I com/mojang/blaze3d/systems/RenderSystem/getShaderTexture (I)I +MD: com/mojang/blaze3d/systems/RenderSystem/getString (ILjava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/getString (ILjava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/getTextureMatrix ()Lorg/joml/Matrix4f; com/mojang/blaze3d/systems/RenderSystem/getTextureMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/systems/RenderSystem/getVertexSorting ()Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/systems/RenderSystem/getVertexSorting ()Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/systems/RenderSystem/glBindBuffer (ILjava/util/function/IntSupplier;)V com/mojang/blaze3d/systems/RenderSystem/glBindBuffer (ILjava/util/function/IntSupplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glBindVertexArray (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/glBindVertexArray (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glBufferData (ILjava/nio/ByteBuffer;I)V com/mojang/blaze3d/systems/RenderSystem/glBufferData (ILjava/nio/ByteBuffer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/glDeleteBuffers (I)V com/mojang/blaze3d/systems/RenderSystem/glDeleteBuffers (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/glDeleteVertexArrays (I)V com/mojang/blaze3d/systems/RenderSystem/glDeleteVertexArrays (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/glGenBuffers (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/glGenBuffers (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glGenVertexArrays (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/glGenVertexArrays (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform1i (II)V com/mojang/blaze3d/systems/RenderSystem/glUniform1i (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/initBackendSystem ()Lnet/minecraft/util/TimeSource$NanoTimeSource; com/mojang/blaze3d/systems/RenderSystem/initBackendSystem ()Lnet/minecraft/util/TimeSource$NanoTimeSource; +MD: com/mojang/blaze3d/systems/RenderSystem/initGameThread (Z)V com/mojang/blaze3d/systems/RenderSystem/initGameThread (Z)V +MD: com/mojang/blaze3d/systems/RenderSystem/initRenderThread ()V com/mojang/blaze3d/systems/RenderSystem/initRenderThread ()V +MD: com/mojang/blaze3d/systems/RenderSystem/initRenderer (IZ)V com/mojang/blaze3d/systems/RenderSystem/initRenderer (IZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/isFrozenAtPollEvents ()Z com/mojang/blaze3d/systems/RenderSystem/isFrozenAtPollEvents ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isInInitPhase ()Z com/mojang/blaze3d/systems/RenderSystem/isInInitPhase ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isOnGameThread ()Z com/mojang/blaze3d/systems/RenderSystem/isOnGameThread ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isOnRenderThread ()Z com/mojang/blaze3d/systems/RenderSystem/isOnRenderThread ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isOnRenderThreadOrInit ()Z com/mojang/blaze3d/systems/RenderSystem/isOnRenderThreadOrInit ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$activeTexture$13 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$activeTexture$13 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$applyModelViewMatrix$69 (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$applyModelViewMatrix$69 (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$backupProjectionMatrix$70 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$backupProjectionMatrix$70 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$bindTexture$16 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$bindTexture$16 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendEquation$9 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendEquation$9 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$5 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$5 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$6 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$6 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$7 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$7 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$8 (IIII)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$8 (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clear$25 (IZ)V com/mojang/blaze3d/systems/RenderSystem/lambda$clear$25 (IZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clearColor$23 (FFFF)V com/mojang/blaze3d/systems/RenderSystem/lambda$clearColor$23 (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clearDepth$22 (D)V com/mojang/blaze3d/systems/RenderSystem/lambda$clearDepth$22 (D)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clearStencil$24 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$clearStencil$24 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$colorMask$18 (ZZZZ)V com/mojang/blaze3d/systems/RenderSystem/lambda$colorMask$18 (ZZZZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$deleteTexture$15 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$deleteTexture$15 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$depthFunc$3 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$depthFunc$3 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$depthMask$4 (Z)V com/mojang/blaze3d/systems/RenderSystem/lambda$depthMask$4 (Z)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$drawElements$33 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$drawElements$33 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$enableScissor$2 (IIII)V com/mojang/blaze3d/systems/RenderSystem/lambda$enableScissor$2 (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$getString$37 (ILjava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$getString$37 (ILjava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glBindBuffer$39 (ILjava/util/function/IntSupplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glBindBuffer$39 (ILjava/util/function/IntSupplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glBindVertexArray$40 (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glBindVertexArray$40 (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteBuffers$41 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteBuffers$41 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteVertexArrays$42 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteVertexArrays$42 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glGenBuffers$60 (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glGenBuffers$60 (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glGenVertexArrays$61 (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glGenVertexArrays$61 (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$44 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$44 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$48 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$48 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1i$43 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1i$43 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$45 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$45 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$49 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$49 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$46 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$46 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$50 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$50 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$47 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$47 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$51 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$51 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix2$52 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix2$52 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix3$53 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix3$53 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix4$54 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix4$54 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$lineWidth$34 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$lineWidth$34 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$logicOp$12 (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V com/mojang/blaze3d/systems/RenderSystem/lambda$logicOp$12 (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$pixelStore$35 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$pixelStore$35 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$polygonMode$10 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$polygonMode$10 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$polygonOffset$11 (FF)V com/mojang/blaze3d/systems/RenderSystem/lambda$polygonOffset$11 (FF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$readPixels$36 (IIIIIILjava/nio/ByteBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$readPixels$36 (IIIIIILjava/nio/ByteBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$renderCrosshair$38 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$renderCrosshair$38 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$resetTextureMatrix$68 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$resetTextureMatrix$68 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$restoreProjectionMatrix$71 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$restoreProjectionMatrix$71 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setInverseViewRotationMatrix$66 (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setInverseViewRotationMatrix$66 (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setProjectionMatrix$65 (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setProjectionMatrix$65 (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShader$62 (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShader$62 (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderColor$32 (FFFF)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderColor$32 (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogColor$29 (FFFF)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogColor$29 (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogEnd$28 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogEnd$28 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogShape$30 (Lcom/mojang/blaze3d/shaders/FogShape;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogShape$30 (Lcom/mojang/blaze3d/shaders/FogShape;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogStart$26 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogStart$26 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGameTime$72 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGameTime$72 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGlintAlpha$27 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGlintAlpha$27 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderLights$31 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderLights$31 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$63 (ILnet/minecraft/resources/ResourceLocation;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$63 (ILnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$64 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$64 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setTextureMatrix$67 (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setTextureMatrix$67 (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupGui3DDiffuseLighting$59 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupGui3DDiffuseLighting$59 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupGuiFlatDiffuseLighting$58 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupGuiFlatDiffuseLighting$58 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupLevelDiffuseLighting$57 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupLevelDiffuseLighting$57 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupOverlayColor$55 (Ljava/util/function/IntSupplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupOverlayColor$55 (Ljava/util/function/IntSupplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V com/mojang/blaze3d/systems/RenderSystem/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$static$1 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V com/mojang/blaze3d/systems/RenderSystem/lambda$static$1 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$stencilFunc$19 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$stencilFunc$19 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$stencilMask$20 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$stencilMask$20 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$stencilOp$21 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$stencilOp$21 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$teardownOverlayColor$56 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$teardownOverlayColor$56 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$texParameter$14 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$texParameter$14 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$viewport$17 (IIII)V com/mojang/blaze3d/systems/RenderSystem/lambda$viewport$17 (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/limitDisplayFPS (I)V com/mojang/blaze3d/systems/RenderSystem/limitDisplayFPS (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lineWidth (F)V com/mojang/blaze3d/systems/RenderSystem/lineWidth (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/logicOp (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V com/mojang/blaze3d/systems/RenderSystem/logicOp (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V +MD: com/mojang/blaze3d/systems/RenderSystem/maxSupportedTextureSize ()I com/mojang/blaze3d/systems/RenderSystem/maxSupportedTextureSize ()I +MD: com/mojang/blaze3d/systems/RenderSystem/pixelStore (II)V com/mojang/blaze3d/systems/RenderSystem/pixelStore (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/pollEvents ()V com/mojang/blaze3d/systems/RenderSystem/pollEvents ()V +MD: com/mojang/blaze3d/systems/RenderSystem/polygonMode (II)V com/mojang/blaze3d/systems/RenderSystem/polygonMode (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/polygonOffset (FF)V com/mojang/blaze3d/systems/RenderSystem/polygonOffset (FF)V +MD: com/mojang/blaze3d/systems/RenderSystem/readPixels (IIIIIILjava/nio/ByteBuffer;)V com/mojang/blaze3d/systems/RenderSystem/readPixels (IIIIIILjava/nio/ByteBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/recordRenderCall (Lcom/mojang/blaze3d/pipeline/RenderCall;)V com/mojang/blaze3d/systems/RenderSystem/recordRenderCall (Lcom/mojang/blaze3d/pipeline/RenderCall;)V +MD: com/mojang/blaze3d/systems/RenderSystem/renderCrosshair (I)V com/mojang/blaze3d/systems/RenderSystem/renderCrosshair (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/renderThreadTesselator ()Lcom/mojang/blaze3d/vertex/Tesselator; com/mojang/blaze3d/systems/RenderSystem/renderThreadTesselator ()Lcom/mojang/blaze3d/vertex/Tesselator; +MD: com/mojang/blaze3d/systems/RenderSystem/replayQueue ()V com/mojang/blaze3d/systems/RenderSystem/replayQueue ()V +MD: com/mojang/blaze3d/systems/RenderSystem/resetTextureMatrix ()V com/mojang/blaze3d/systems/RenderSystem/resetTextureMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/restoreProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/restoreProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/runAsFancy (Ljava/lang/Runnable;)V com/mojang/blaze3d/systems/RenderSystem/runAsFancy (Ljava/lang/Runnable;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V com/mojang/blaze3d/systems/RenderSystem/setErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setInverseViewRotationMatrix (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/systems/RenderSystem/setInverseViewRotationMatrix (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setProjectionMatrix (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/systems/RenderSystem/setProjectionMatrix (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShader (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/setShader (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/setShaderColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFF)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogEnd (F)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogEnd (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogStart (F)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogStart (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderGameTime (JF)V com/mojang/blaze3d/systems/RenderSystem/setShaderGameTime (JF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (F)V com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (D)V com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (D)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (II)V com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setTextureMatrix (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/setTextureMatrix (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupDefaultState (IIII)V com/mojang/blaze3d/systems/RenderSystem/setupDefaultState (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupOverlayColor (Ljava/util/function/IntSupplier;I)V com/mojang/blaze3d/systems/RenderSystem/setupOverlayColor (Ljava/util/function/IntSupplier;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupShaderLights (Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/systems/RenderSystem/setupShaderLights (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/systems/RenderSystem/stencilFunc (III)V com/mojang/blaze3d/systems/RenderSystem/stencilFunc (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/stencilMask (I)V com/mojang/blaze3d/systems/RenderSystem/stencilMask (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/stencilOp (III)V com/mojang/blaze3d/systems/RenderSystem/stencilOp (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/teardownOverlayColor ()V com/mojang/blaze3d/systems/RenderSystem/teardownOverlayColor ()V +MD: com/mojang/blaze3d/systems/RenderSystem/texParameter (III)V com/mojang/blaze3d/systems/RenderSystem/texParameter (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/viewport (IIII)V com/mojang/blaze3d/systems/RenderSystem/viewport (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem$1/ ()V com/mojang/blaze3d/systems/RenderSystem$1/ ()V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/ (IILcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator;)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/ (IILcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator;)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157476_ (I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/ensureStorage (I)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157478_ (Ljava/nio/ByteBuffer;)Lit/unimi/dsi/fastutil/ints/IntConsumer; com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/intConsumer (Ljava/nio/ByteBuffer;)Lit/unimi/dsi/fastutil/ints/IntConsumer; +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157480_ (Ljava/nio/ByteBuffer;I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/lambda$intConsumer$0 (Ljava/nio/ByteBuffer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157483_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/type ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_221944_ (I)Z com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/hasStorage (I)Z +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_221946_ (I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/bind (I)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator/m_157487_ (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator/accept (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V +MD: com/mojang/blaze3d/systems/TimerQuery/ ()V com/mojang/blaze3d/systems/TimerQuery/ ()V +MD: com/mojang/blaze3d/systems/TimerQuery/m_231140_ ()Ljava/util/Optional; com/mojang/blaze3d/systems/TimerQuery/getInstance ()Ljava/util/Optional; +MD: com/mojang/blaze3d/systems/TimerQuery/m_231141_ ()V com/mojang/blaze3d/systems/TimerQuery/beginProfile ()V +MD: com/mojang/blaze3d/systems/TimerQuery/m_231142_ ()Lcom/mojang/blaze3d/systems/TimerQuery$FrameProfile; com/mojang/blaze3d/systems/TimerQuery/endProfile ()Lcom/mojang/blaze3d/systems/TimerQuery$FrameProfile; +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/ (I)V com/mojang/blaze3d/systems/TimerQuery$FrameProfile/ (I)V +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/m_231149_ ()V com/mojang/blaze3d/systems/TimerQuery$FrameProfile/cancel ()V +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/m_231150_ ()Z com/mojang/blaze3d/systems/TimerQuery$FrameProfile/isDone ()Z +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/m_231151_ ()J com/mojang/blaze3d/systems/TimerQuery$FrameProfile/get ()J +MD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V +MD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V +MD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/m_231155_ ()Lcom/mojang/blaze3d/systems/TimerQuery; com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/instantiate ()Lcom/mojang/blaze3d/systems/TimerQuery; +MD: com/mojang/blaze3d/vertex/BufferBuilder/ ()V com/mojang/blaze3d/vertex/BufferBuilder/ ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/ (I)V com/mojang/blaze3d/vertex/BufferBuilder/ (I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166770_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState; com/mojang/blaze3d/vertex/BufferBuilder/getSortState ()Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166775_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState;)V com/mojang/blaze3d/vertex/BufferBuilder/restoreSortState (Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166779_ (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat;)V com/mojang/blaze3d/vertex/BufferBuilder/begin (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166786_ (Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)V com/mojang/blaze3d/vertex/BufferBuilder/putSortedQuadIndices (Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166794_ ()[Lorg/joml/Vector3f; com/mojang/blaze3d/vertex/BufferBuilder/makeQuadSortingPoints ()[Lorg/joml/Vector3f; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231158_ (ILcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)Lit/unimi/dsi/fastutil/ints/IntConsumer; com/mojang/blaze3d/vertex/BufferBuilder/intConsumer (ILcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)Lit/unimi/dsi/fastutil/ints/IntConsumer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231161_ (Lorg/apache/commons/lang3/mutable/MutableInt;I)V com/mojang/blaze3d/vertex/BufferBuilder/lambda$intConsumer$1 (Lorg/apache/commons/lang3/mutable/MutableInt;I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231164_ ()Z com/mojang/blaze3d/vertex/BufferBuilder/isCurrentBatchEmpty ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231165_ (Lorg/apache/commons/lang3/mutable/MutableInt;I)V com/mojang/blaze3d/vertex/BufferBuilder/lambda$intConsumer$0 (Lorg/apache/commons/lang3/mutable/MutableInt;I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231168_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; com/mojang/blaze3d/vertex/BufferBuilder/endOrDiscardIfEmpty ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231169_ (II)Ljava/nio/ByteBuffer; com/mojang/blaze3d/vertex/BufferBuilder/bufferSlice (II)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231175_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; com/mojang/blaze3d/vertex/BufferBuilder/end ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231176_ ()V com/mojang/blaze3d/vertex/BufferBuilder/ensureDrawing ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231177_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; com/mojang/blaze3d/vertex/BufferBuilder/storeRenderedBuffer ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231178_ ()V com/mojang/blaze3d/vertex/BufferBuilder/reset ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231179_ ()V com/mojang/blaze3d/vertex/BufferBuilder/releaseRenderedBuffer ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_277127_ (Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/vertex/BufferBuilder/setQuadSorting (Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5586_ (IS)V com/mojang/blaze3d/vertex/BufferBuilder/putShort (IS)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5672_ (IB)V com/mojang/blaze3d/vertex/BufferBuilder/putByte (IB)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5751_ ()V com/mojang/blaze3d/vertex/BufferBuilder/nextElement ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5752_ ()V com/mojang/blaze3d/vertex/BufferBuilder/endVertex ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5832_ (IF)V com/mojang/blaze3d/vertex/BufferBuilder/putFloat (IF)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/BufferBuilder/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferBuilder/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_6297_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; com/mojang/blaze3d/vertex/BufferBuilder/currentElement ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85665_ ()V com/mojang/blaze3d/vertex/BufferBuilder/ensureVertexCapacity ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85704_ (Lcom/mojang/blaze3d/vertex/VertexFormat;)V com/mojang/blaze3d/vertex/BufferBuilder/switchFormat (Lcom/mojang/blaze3d/vertex/VertexFormat;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85722_ (I)V com/mojang/blaze3d/vertex/BufferBuilder/ensureCapacity (I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85725_ (I)I com/mojang/blaze3d/vertex/BufferBuilder/roundUp (I)I +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85729_ ()V com/mojang/blaze3d/vertex/BufferBuilder/clear ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85730_ ()V com/mojang/blaze3d/vertex/BufferBuilder/discard ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85732_ ()Z com/mojang/blaze3d/vertex/BufferBuilder/building ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$1/ ()V com/mojang/blaze3d/vertex/BufferBuilder$1/ ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/ (Lcom/mojang/blaze3d/vertex/VertexFormat;IILcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;ZZ)V com/mojang/blaze3d/vertex/BufferBuilder$DrawState/ (Lcom/mojang/blaze3d/vertex/VertexFormat;IILcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;ZZ)V +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/vertex/BufferBuilder$DrawState/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166797_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexCount ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166798_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexType ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166799_ ()Z com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexOnly ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166800_ ()Z com/mojang/blaze3d/vertex/BufferBuilder$DrawState/sequentialIndex ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85733_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/format ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85734_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexCount ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85735_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/mode ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/hashCode ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/hashCode ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_166812_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexBufferSize ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_166813_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/bufferSize ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_166816_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexBufferSize ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231180_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexBufferStart ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231181_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexBufferEnd ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231182_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexBufferStart ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231183_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexBufferEnd ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/toString ()Ljava/lang/String; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;ILcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;)V com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;ILcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231196_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/vertexBuffer ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231197_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/indexBuffer ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231198_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState; com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/drawState ()Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231199_ ()Z com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/isEmpty ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231200_ ()V com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/release ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/ (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;I[Lorg/joml/Vector3f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/vertex/BufferBuilder$SortState/ (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;I[Lorg/joml/Vector3f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/ ()V com/mojang/blaze3d/vertex/BufferUploader/ ()V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_166835_ ()V com/mojang/blaze3d/vertex/BufferUploader/reset ()V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231202_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/drawWithShader (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231204_ (Lcom/mojang/blaze3d/vertex/VertexBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/bindImmediateBuffer (Lcom/mojang/blaze3d/vertex/VertexBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231206_ (Lcom/mojang/blaze3d/vertex/VertexFormat;)Lcom/mojang/blaze3d/vertex/VertexBuffer; com/mojang/blaze3d/vertex/BufferUploader/bindImmediateBuffer (Lcom/mojang/blaze3d/vertex/VertexFormat;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231208_ ()V com/mojang/blaze3d/vertex/BufferUploader/invalidate ()V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231209_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/draw (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231211_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/_drawWithShader (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231213_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)Lcom/mojang/blaze3d/vertex/VertexBuffer; com/mojang/blaze3d/vertex/BufferUploader/upload (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231215_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/lambda$drawWithShader$0 (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5586_ (IS)V com/mojang/blaze3d/vertex/BufferVertexConsumer/putShort (IS)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5672_ (IB)V com/mojang/blaze3d/vertex/BufferVertexConsumer/putByte (IB)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5751_ ()V com/mojang/blaze3d/vertex/BufferVertexConsumer/nextElement ()V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5832_ (IF)V com/mojang/blaze3d/vertex/BufferVertexConsumer/putFloat (IF)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_6297_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; com/mojang/blaze3d/vertex/BufferVertexConsumer/currentElement ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_85774_ (F)B com/mojang/blaze3d/vertex/BufferVertexConsumer/normalIntValue (F)B +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_85793_ (SSI)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/uvShort (SSI)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V +MD: com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V +MD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/ ()V com/mojang/blaze3d/vertex/DefaultedVertexConsumer/ ()V +MD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/m_141991_ ()V com/mojang/blaze3d/vertex/DefaultedVertexConsumer/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/m_7404_ (IIII)V com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/PoseStack/ ()V com/mojang/blaze3d/vertex/PoseStack/ ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_166856_ ()V com/mojang/blaze3d/vertex/PoseStack/setIdentity ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252549_ (Ljava/util/ArrayDeque;)V com/mojang/blaze3d/vertex/PoseStack/lambda$new$0 (Ljava/util/ArrayDeque;)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252781_ (Lorg/joml/Quaternionf;)V com/mojang/blaze3d/vertex/PoseStack/mulPose (Lorg/joml/Quaternionf;)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252880_ (FFF)V com/mojang/blaze3d/vertex/PoseStack/translate (FFF)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252931_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/vertex/PoseStack/mulPoseMatrix (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_272245_ (Lorg/joml/Quaternionf;FFF)V com/mojang/blaze3d/vertex/PoseStack/rotateAround (Lorg/joml/Quaternionf;FFF)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85836_ ()V com/mojang/blaze3d/vertex/PoseStack/pushPose ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85837_ (DDD)V com/mojang/blaze3d/vertex/PoseStack/translate (DDD)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85841_ (FFF)V com/mojang/blaze3d/vertex/PoseStack/scale (FFF)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85849_ ()V com/mojang/blaze3d/vertex/PoseStack/popPose ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85850_ ()Lcom/mojang/blaze3d/vertex/PoseStack$Pose; com/mojang/blaze3d/vertex/PoseStack/last ()Lcom/mojang/blaze3d/vertex/PoseStack$Pose; +MD: com/mojang/blaze3d/vertex/PoseStack/m_85851_ ()Z com/mojang/blaze3d/vertex/PoseStack/clear ()Z +MD: com/mojang/blaze3d/vertex/PoseStack$Pose/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;)V com/mojang/blaze3d/vertex/PoseStack$Pose/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/vertex/PoseStack$Pose/m_252922_ ()Lorg/joml/Matrix4f; com/mojang/blaze3d/vertex/PoseStack$Pose/pose ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/vertex/PoseStack$Pose/m_252943_ ()Lorg/joml/Matrix3f; com/mojang/blaze3d/vertex/PoseStack$Pose/normal ()Lorg/joml/Matrix3f; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;F)V com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;F)V +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_5752_ ()V com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/endVertex ()V +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_85883_ ()V com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/resetState ()V +MD: com/mojang/blaze3d/vertex/Tesselator/ ()V com/mojang/blaze3d/vertex/Tesselator/ ()V +MD: com/mojang/blaze3d/vertex/Tesselator/ (I)V com/mojang/blaze3d/vertex/Tesselator/ (I)V +MD: com/mojang/blaze3d/vertex/Tesselator/ ()V com/mojang/blaze3d/vertex/Tesselator/ ()V +MD: com/mojang/blaze3d/vertex/Tesselator/m_85913_ ()Lcom/mojang/blaze3d/vertex/Tesselator; com/mojang/blaze3d/vertex/Tesselator/getInstance ()Lcom/mojang/blaze3d/vertex/Tesselator; +MD: com/mojang/blaze3d/vertex/Tesselator/m_85914_ ()V com/mojang/blaze3d/vertex/Tesselator/end ()V +MD: com/mojang/blaze3d/vertex/Tesselator/m_85915_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder; com/mojang/blaze3d/vertex/Tesselator/getBuilder ()Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: com/mojang/blaze3d/vertex/VertexBuffer/ (Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage;)V com/mojang/blaze3d/vertex/VertexBuffer/ (Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/close ()V com/mojang/blaze3d/vertex/VertexBuffer/close ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_166876_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/vertex/VertexBuffer/_drawWithShader (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_166882_ ()V com/mojang/blaze3d/vertex/VertexBuffer/draw ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_166892_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; com/mojang/blaze3d/vertex/VertexBuffer/getFormat ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231218_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/vertex/VertexFormat; com/mojang/blaze3d/vertex/VertexBuffer/uploadVertexBuffer (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231221_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/VertexBuffer/upload (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231223_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; com/mojang/blaze3d/vertex/VertexBuffer/uploadIndexBuffer (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231230_ ()Z com/mojang/blaze3d/vertex/VertexBuffer/isInvalid ()Z +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231231_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexBuffer/getIndexType ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_252550_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/vertex/VertexBuffer/lambda$drawWithShader$0 (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_253207_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/vertex/VertexBuffer/drawWithShader (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_85921_ ()V com/mojang/blaze3d/vertex/VertexBuffer/bind ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_85931_ ()V com/mojang/blaze3d/vertex/VertexBuffer/unbind ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/ ()V com/mojang/blaze3d/vertex/VertexBuffer$Usage/ ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/ (Ljava/lang/String;II)V com/mojang/blaze3d/vertex/VertexBuffer$Usage/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/m_285873_ ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; com/mojang/blaze3d/vertex/VertexBuffer$Usage/$values ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; com/mojang/blaze3d/vertex/VertexBuffer$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; com/mojang/blaze3d/vertex/VertexBuffer$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_141991_ ()V com/mojang/blaze3d/vertex/VertexConsumer/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_193479_ (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/color (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_252939_ (Lorg/joml/Matrix3f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/normal (Lorg/joml/Matrix3f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_252986_ (Lorg/joml/Matrix4f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/vertex (Lorg/joml/Matrix4f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5752_ ()V com/mojang/blaze3d/vertex/VertexConsumer/endVertex ()V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/VertexConsumer/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7404_ (IIII)V com/mojang/blaze3d/vertex/VertexConsumer/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85950_ (FFFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/color (FFFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85969_ (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/uv2 (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85987_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFII)V com/mojang/blaze3d/vertex/VertexConsumer/putBulkData (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFII)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85995_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;[FFFF[IIZ)V com/mojang/blaze3d/vertex/VertexConsumer/putBulkData (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;[FFFF[IIZ)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_86008_ (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/overlayCoords (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexFormat/ (Lcom/google/common/collect/ImmutableMap;)V com/mojang/blaze3d/vertex/VertexFormat/ (Lcom/google/common/collect/ImmutableMap;)V +MD: com/mojang/blaze3d/vertex/VertexFormat/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/vertex/VertexFormat/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/vertex/VertexFormat/hashCode ()I com/mojang/blaze3d/vertex/VertexFormat/hashCode ()I +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166911_ ()Lcom/google/common/collect/ImmutableList; com/mojang/blaze3d/vertex/VertexFormat/getElementAttributeNames ()Lcom/google/common/collect/ImmutableList; +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166912_ ()V com/mojang/blaze3d/vertex/VertexFormat/setupBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166916_ ()V com/mojang/blaze3d/vertex/VertexFormat/_setupBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166917_ ()V com/mojang/blaze3d/vertex/VertexFormat/_clearBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/m_231233_ ()Lcom/mojang/blaze3d/vertex/VertexBuffer; com/mojang/blaze3d/vertex/VertexFormat/getImmediateDrawVertexBuffer ()Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86017_ ()I com/mojang/blaze3d/vertex/VertexFormat/getIntegerSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86020_ ()I com/mojang/blaze3d/vertex/VertexFormat/getVertexSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86023_ ()Lcom/google/common/collect/ImmutableList; com/mojang/blaze3d/vertex/VertexFormat/getElements ()Lcom/google/common/collect/ImmutableList; +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86024_ ()V com/mojang/blaze3d/vertex/VertexFormat/clearBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/toString ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormat/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormat$1/ ()V com/mojang/blaze3d/vertex/VertexFormat$1/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/ ()V com/mojang/blaze3d/vertex/VertexFormat$IndexType/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/ (Ljava/lang/String;III)V com/mojang/blaze3d/vertex/VertexFormat$IndexType/ (Ljava/lang/String;III)V +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/m_166932_ ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/m_166933_ (I)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/least (I)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/ ()V com/mojang/blaze3d/vertex/VertexFormat$Mode/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/ (Ljava/lang/String;IIIIZ)V com/mojang/blaze3d/vertex/VertexFormat$Mode/ (Ljava/lang/String;IIIIZ)V +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/m_166957_ ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/VertexFormat$Mode/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/m_166958_ (I)I com/mojang/blaze3d/vertex/VertexFormat$Mode/indexCount (I)I +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/VertexFormat$Mode/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/VertexFormat$Mode/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/VertexFormatElement/ (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Type;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;I)V com/mojang/blaze3d/vertex/VertexFormatElement/ (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Type;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;I)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/vertex/VertexFormatElement/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/vertex/VertexFormatElement/hashCode ()I com/mojang/blaze3d/vertex/VertexFormatElement/hashCode ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166963_ (I)V com/mojang/blaze3d/vertex/VertexFormatElement/clearBufferState (I)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166965_ (IJI)V com/mojang/blaze3d/vertex/VertexFormatElement/setupBufferState (IJI)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166969_ ()I com/mojang/blaze3d/vertex/VertexFormatElement/getCount ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166970_ ()Z com/mojang/blaze3d/vertex/VertexFormatElement/isPosition ()Z +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86041_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement/getType ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86042_ (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;)Z com/mojang/blaze3d/vertex/VertexFormatElement/supportsUsage (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;)Z +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86048_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement/getUsage ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86049_ ()I com/mojang/blaze3d/vertex/VertexFormatElement/getIndex ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86050_ ()I com/mojang/blaze3d/vertex/VertexFormatElement/getByteSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/toString ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormatElement/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/ ()V com/mojang/blaze3d/vertex/VertexFormatElement$Type/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/ (Ljava/lang/String;IILjava/lang/String;I)V com/mojang/blaze3d/vertex/VertexFormatElement$Type/ (Ljava/lang/String;IILjava/lang/String;I)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_166971_ ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement$Type/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_86074_ ()I com/mojang/blaze3d/vertex/VertexFormatElement$Type/getSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_86075_ ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormatElement$Type/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_86076_ ()I com/mojang/blaze3d/vertex/VertexFormatElement$Type/getGlType ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement$Type/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ ()V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState;)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState;)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166978_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/clearBufferState (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166981_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/setupBufferState (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166988_ ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166989_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$11 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166992_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$10 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166999_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$9 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167002_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$8 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167009_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$7 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167012_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$6 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167019_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$5 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167022_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$4 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167029_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$3 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167032_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$2 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167039_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$1 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167042_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$0 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_86097_ ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState/m_167049_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState/clearBufferState (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState/m_167052_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState/setupBufferState (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer/ ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_167060_ ()Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create ()Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_167061_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_167063_ ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_86168_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_141991_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5752_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/endVertex ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7404_ (IIII)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/ ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/ ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_141991_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167078_ (DDDLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$vertex$0 (DDDLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167101_ (FFFFFFFFFIIFFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$vertex$6 (FFFFFFFFFIIFFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167117_ (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$normal$5 (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167122_ (FFLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$uv$2 (FFLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167134_ (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$defaultColor$7 (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167140_ (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$uv2$4 (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167144_ (Ljava/util/function/Consumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/forEach (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167158_ (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$color$1 (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167164_ (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$overlayCoords$3 (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5752_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/endVertex ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7404_ (IIII)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexSorting/ ()V com/mojang/blaze3d/vertex/VertexSorting/ ()V +MD: com/mojang/blaze3d/vertex/VertexSorting/m_276941_ ([FII)I com/mojang/blaze3d/vertex/VertexSorting/lambda$byDistance$1 ([FII)I +MD: com/mojang/blaze3d/vertex/VertexSorting/m_276997_ (Lorg/joml/Vector3f;)Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/vertex/VertexSorting/byDistance (Lorg/joml/Vector3f;)Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277065_ ([Lorg/joml/Vector3f;)[I com/mojang/blaze3d/vertex/VertexSorting/sort ([Lorg/joml/Vector3f;)[I +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277071_ (FFF)Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/vertex/VertexSorting/byDistance (FFF)Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277155_ (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;[Lorg/joml/Vector3f;)[I com/mojang/blaze3d/vertex/VertexSorting/lambda$byDistance$2 (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;[Lorg/joml/Vector3f;)[I +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277160_ (Lorg/joml/Vector3f;)F com/mojang/blaze3d/vertex/VertexSorting/lambda$static$0 (Lorg/joml/Vector3f;)F +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277161_ (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;)Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/vertex/VertexSorting/byDistance (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;)Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction/m_276875_ (Lorg/joml/Vector3f;)F com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction/apply (Lorg/joml/Vector3f;)F +MD: com/mojang/math/Axis/ ()V com/mojang/math/Axis/ ()V +MD: com/mojang/math/Axis/m_252774_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$5 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252822_ (Lorg/joml/Vector3f;F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$of$6 (Lorg/joml/Vector3f;F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252961_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/rotation (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252977_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/rotationDegrees (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252978_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$0 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253050_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$2 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253057_ (Lorg/joml/Vector3f;)Lcom/mojang/math/Axis; com/mojang/math/Axis/of (Lorg/joml/Vector3f;)Lcom/mojang/math/Axis; +MD: com/mojang/math/Axis/m_253127_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$1 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253156_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$4 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253246_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$3 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Constants/ ()V com/mojang/math/Constants/ ()V +MD: com/mojang/math/Divisor/ (II)V com/mojang/math/Divisor/ (II)V +MD: com/mojang/math/Divisor/hasNext ()Z com/mojang/math/Divisor/hasNext ()Z +MD: com/mojang/math/Divisor/m_253068_ (II)Ljava/lang/Iterable; com/mojang/math/Divisor/asIterable (II)Ljava/lang/Iterable; +MD: com/mojang/math/Divisor/m_253093_ (II)Ljava/util/Iterator; com/mojang/math/Divisor/lambda$asIterable$0 (II)Ljava/util/Iterator; +MD: com/mojang/math/Divisor/nextInt ()I com/mojang/math/Divisor/nextInt ()I +MD: com/mojang/math/GivensParameters/ (FF)V com/mojang/math/GivensParameters/ (FF)V +MD: com/mojang/math/GivensParameters/equals (Ljava/lang/Object;)Z com/mojang/math/GivensParameters/equals (Ljava/lang/Object;)Z +MD: com/mojang/math/GivensParameters/f_276137_ ()F com/mojang/math/GivensParameters/cosHalf ()F +MD: com/mojang/math/GivensParameters/f_276143_ ()F com/mojang/math/GivensParameters/sinHalf ()F +MD: com/mojang/math/GivensParameters/hashCode ()I com/mojang/math/GivensParameters/hashCode ()I +MD: com/mojang/math/GivensParameters/m_276191_ ()F com/mojang/math/GivensParameters/cos ()F +MD: com/mojang/math/GivensParameters/m_276195_ (F)Lcom/mojang/math/GivensParameters; com/mojang/math/GivensParameters/fromPositiveAngle (F)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/GivensParameters/m_276196_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; com/mojang/math/GivensParameters/aroundX (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: com/mojang/math/GivensParameters/m_276201_ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; com/mojang/math/GivensParameters/aroundX (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; +MD: com/mojang/math/GivensParameters/m_276202_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; com/mojang/math/GivensParameters/aroundZ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: com/mojang/math/GivensParameters/m_276210_ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; com/mojang/math/GivensParameters/aroundZ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; +MD: com/mojang/math/GivensParameters/m_276211_ ()F com/mojang/math/GivensParameters/sin ()F +MD: com/mojang/math/GivensParameters/m_276212_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; com/mojang/math/GivensParameters/aroundY (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: com/mojang/math/GivensParameters/m_276214_ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; com/mojang/math/GivensParameters/aroundY (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; +MD: com/mojang/math/GivensParameters/m_276224_ ()Lcom/mojang/math/GivensParameters; com/mojang/math/GivensParameters/inverse ()Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/GivensParameters/m_276229_ (FF)Lcom/mojang/math/GivensParameters; com/mojang/math/GivensParameters/fromUnnormalized (FF)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/GivensParameters/toString ()Ljava/lang/String; com/mojang/math/GivensParameters/toString ()Ljava/lang/String; +MD: com/mojang/math/MatrixUtil/ ()V com/mojang/math/MatrixUtil/ ()V +MD: com/mojang/math/MatrixUtil/ ()V com/mojang/math/MatrixUtil/ ()V +MD: com/mojang/math/MatrixUtil/m_252892_ (FF)Lcom/mojang/math/GivensParameters; com/mojang/math/MatrixUtil/qrGivensQuat (FF)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/MatrixUtil/m_253023_ (Lorg/joml/Matrix4f;F)Lorg/joml/Matrix4f; com/mojang/math/MatrixUtil/mulComponentWise (Lorg/joml/Matrix4f;F)Lorg/joml/Matrix4f; +MD: com/mojang/math/MatrixUtil/m_253103_ (Lorg/joml/Matrix3f;)Lorg/apache/commons/lang3/tuple/Triple; com/mojang/math/MatrixUtil/svdDecompose (Lorg/joml/Matrix3f;)Lorg/apache/commons/lang3/tuple/Triple; +MD: com/mojang/math/MatrixUtil/m_276192_ (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;)V com/mojang/math/MatrixUtil/similarityTransform (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;)V +MD: com/mojang/math/MatrixUtil/m_276207_ (FFF)Lcom/mojang/math/GivensParameters; com/mojang/math/MatrixUtil/approxGivensQuat (FFF)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/MatrixUtil/m_276219_ (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;Lorg/joml/Quaternionf;Lorg/joml/Quaternionf;)V com/mojang/math/MatrixUtil/stepJacobi (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;Lorg/joml/Quaternionf;Lorg/joml/Quaternionf;)V +MD: com/mojang/math/MatrixUtil/m_276221_ (Lorg/joml/Matrix3f;I)Lorg/joml/Quaternionf; com/mojang/math/MatrixUtil/eigenvalueJacobi (Lorg/joml/Matrix3f;I)Lorg/joml/Quaternionf; +MD: com/mojang/math/OctahedralGroup/ ()V com/mojang/math/OctahedralGroup/ ()V +MD: com/mojang/math/OctahedralGroup/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/SymmetricGroup3;ZZZ)V com/mojang/math/OctahedralGroup/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/SymmetricGroup3;ZZZ)V +MD: com/mojang/math/OctahedralGroup/m_174944_ ()Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/inverse ()Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_174945_ (Lcom/mojang/math/OctahedralGroup;Lcom/mojang/math/OctahedralGroup;)Z com/mojang/math/OctahedralGroup/lambda$static$3 (Lcom/mojang/math/OctahedralGroup;Lcom/mojang/math/OctahedralGroup;)Z +MD: com/mojang/math/OctahedralGroup/m_174949_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/lambda$static$1 (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_174951_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/datafixers/util/Pair; com/mojang/math/OctahedralGroup/lambda$static$0 (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/datafixers/util/Pair; +MD: com/mojang/math/OctahedralGroup/m_174953_ ()[Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/$values ()[Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_253203_ ()Lorg/joml/Matrix3f; com/mojang/math/OctahedralGroup/transformation ()Lorg/joml/Matrix3f; +MD: com/mojang/math/OctahedralGroup/m_56519_ (I)[Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/lambda$static$5 (I)[Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_56521_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/compose (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_56526_ (Lnet/minecraft/core/Direction$Axis;)Z com/mojang/math/OctahedralGroup/inverts (Lnet/minecraft/core/Direction$Axis;)Z +MD: com/mojang/math/OctahedralGroup/m_56528_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; com/mojang/math/OctahedralGroup/rotate (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: com/mojang/math/OctahedralGroup/m_56530_ (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/core/FrontAndTop; com/mojang/math/OctahedralGroup/rotate (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/core/FrontAndTop; +MD: com/mojang/math/OctahedralGroup/m_56532_ ([[Lcom/mojang/math/OctahedralGroup;)V com/mojang/math/OctahedralGroup/lambda$static$2 ([[Lcom/mojang/math/OctahedralGroup;)V +MD: com/mojang/math/OctahedralGroup/m_56534_ ()Lit/unimi/dsi/fastutil/booleans/BooleanList; com/mojang/math/OctahedralGroup/packInversions ()Lit/unimi/dsi/fastutil/booleans/BooleanList; +MD: com/mojang/math/OctahedralGroup/m_56535_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/lambda$static$4 (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_7912_ ()Ljava/lang/String; com/mojang/math/OctahedralGroup/getSerializedName ()Ljava/lang/String; +MD: com/mojang/math/OctahedralGroup/toString ()Ljava/lang/String; com/mojang/math/OctahedralGroup/toString ()Ljava/lang/String; +MD: com/mojang/math/OctahedralGroup/valueOf (Ljava/lang/String;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/valueOf (Ljava/lang/String;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/values ()[Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/values ()[Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup$1/ ()V com/mojang/math/OctahedralGroup$1/ ()V +MD: com/mojang/math/SymmetricGroup3/ ()V com/mojang/math/SymmetricGroup3/ ()V +MD: com/mojang/math/SymmetricGroup3/ (Ljava/lang/String;IIII)V com/mojang/math/SymmetricGroup3/ (Ljava/lang/String;IIII)V +MD: com/mojang/math/SymmetricGroup3/m_109180_ (I)I com/mojang/math/SymmetricGroup3/permutation (I)I +MD: com/mojang/math/SymmetricGroup3/m_109182_ (Lcom/mojang/math/SymmetricGroup3;)Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/compose (Lcom/mojang/math/SymmetricGroup3;)Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/SymmetricGroup3/m_109187_ ([[Lcom/mojang/math/SymmetricGroup3;)V com/mojang/math/SymmetricGroup3/lambda$static$1 ([[Lcom/mojang/math/SymmetricGroup3;)V +MD: com/mojang/math/SymmetricGroup3/m_175575_ ([ILcom/mojang/math/SymmetricGroup3;)Z com/mojang/math/SymmetricGroup3/lambda$static$0 ([ILcom/mojang/math/SymmetricGroup3;)Z +MD: com/mojang/math/SymmetricGroup3/m_175578_ ()[Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/$values ()[Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/SymmetricGroup3/m_253007_ ()Lorg/joml/Matrix3f; com/mojang/math/SymmetricGroup3/transformation ()Lorg/joml/Matrix3f; +MD: com/mojang/math/SymmetricGroup3/valueOf (Ljava/lang/String;)Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/valueOf (Ljava/lang/String;)Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/SymmetricGroup3/values ()[Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/values ()[Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/Transformation/ ()V com/mojang/math/Transformation/ ()V +MD: com/mojang/math/Transformation/ (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)V com/mojang/math/Transformation/ (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)V +MD: com/mojang/math/Transformation/ (Lorg/joml/Matrix4f;)V com/mojang/math/Transformation/ (Lorg/joml/Matrix4f;)V +MD: com/mojang/math/Transformation/equals (Ljava/lang/Object;)Z com/mojang/math/Transformation/equals (Ljava/lang/Object;)Z +MD: com/mojang/math/Transformation/hashCode ()I com/mojang/math/Transformation/hashCode ()I +MD: com/mojang/math/Transformation/m_121093_ ()Lcom/mojang/math/Transformation; com/mojang/math/Transformation/identity ()Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_121096_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/compose (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_121103_ ()Lcom/mojang/math/Transformation; com/mojang/math/Transformation/inverse ()Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_121106_ ()V com/mojang/math/Transformation/ensureDecomposed ()V +MD: com/mojang/math/Transformation/m_175937_ (Lcom/mojang/math/Transformation;F)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/slerp (Lcom/mojang/math/Transformation;F)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_252783_ ()Lorg/joml/Matrix4f; com/mojang/math/Transformation/getMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/math/Transformation/m_252829_ ()Lorg/joml/Vector3f; com/mojang/math/Transformation/getTranslation ()Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_252848_ ()Lorg/joml/Quaternionf; com/mojang/math/Transformation/getRightRotation ()Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_252900_ ()Lorg/joml/Vector3f; com/mojang/math/Transformation/getScale ()Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_253227_ (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)Lorg/joml/Matrix4f; com/mojang/math/Transformation/compose (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)Lorg/joml/Matrix4f; +MD: com/mojang/math/Transformation/m_253244_ ()Lorg/joml/Quaternionf; com/mojang/math/Transformation/getLeftRotation ()Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_268754_ (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; com/mojang/math/Transformation/lambda$static$3 (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_268755_ (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; com/mojang/math/Transformation/lambda$static$0 (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_268756_ (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; com/mojang/math/Transformation/lambda$static$1 (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_268757_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$5 (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_268758_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$6 (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_268759_ (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; com/mojang/math/Transformation/lambda$static$2 (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_268760_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; com/mojang/math/Transformation/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: com/mojang/math/Transformation/m_268761_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$7 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_276167_ ()Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$8 ()Lcom/mojang/math/Transformation; +MD: com/mojang/realmsclient/KeyCombo/ ([C)V com/mojang/realmsclient/KeyCombo/ ([C)V +MD: com/mojang/realmsclient/KeyCombo/ ([CLjava/lang/Runnable;)V com/mojang/realmsclient/KeyCombo/ ([CLjava/lang/Runnable;)V +MD: com/mojang/realmsclient/KeyCombo/m_167172_ ()V com/mojang/realmsclient/KeyCombo/lambda$new$0 ()V +MD: com/mojang/realmsclient/KeyCombo/m_86227_ ()V com/mojang/realmsclient/KeyCombo/reset ()V +MD: com/mojang/realmsclient/KeyCombo/m_86228_ (C)Z com/mojang/realmsclient/KeyCombo/keyPressed (C)Z +MD: com/mojang/realmsclient/KeyCombo/toString ()Ljava/lang/String; com/mojang/realmsclient/KeyCombo/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/RealmsMainScreen/ ()V com/mojang/realmsclient/RealmsMainScreen/ ()V +MD: com/mojang/realmsclient/RealmsMainScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/RealmsMainScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_167176_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2600 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167186_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167190_ (Z)V com/mojang/realmsclient/RealmsMainScreen/setCreatedTrial (Z)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_167192_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167194_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$200 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167196_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$500 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167198_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$600 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167201_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$700 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167203_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1600 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167205_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1500 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167209_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$3000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167211_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167215_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167219_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2200 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167221_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2900 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167223_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2400 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167225_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2500 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_193481_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/RealmsMainScreen/getSelectedServer ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/RealmsMainScreen/m_193493_ (ZLcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/leaveServer (ZLcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_193498_ ()V com/mojang/realmsclient/RealmsMainScreen/resetScreen ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_193499_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/onRenew (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231242_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$pingRegions$22 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231243_ (CLcom/mojang/realmsclient/KeyCombo;)V com/mojang/realmsclient/RealmsMainScreen/lambda$charTyped$28 (CLcom/mojang/realmsclient/KeyCombo;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231248_ (Lcom/mojang/realmsclient/dto/RealmsServer;Z)V com/mojang/realmsclient/RealmsMainScreen/lambda$leaveClicked$23 (Lcom/mojang/realmsclient/dto/RealmsServer;Z)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231251_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$15 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231254_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addMiddleButtons$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231256_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1300 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_238841_ (Lnet/minecraft/resources/ResourceLocation;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$updateTeaserImages$29 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_238843_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$removeServer$24 (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_238846_ (Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$16 (Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_238848_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$17 (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_238851_ (Lnet/minecraft/resources/ResourceLocation;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$updateTeaserImages$30 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_240107_ ()V com/mojang/realmsclient/RealmsMainScreen/refreshFetcher ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_258074_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/RealmsMainScreen/access$2300 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_264302_ ()V com/mojang/realmsclient/RealmsMainScreen/addMiddleButtons ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_264589_ ()V com/mojang/realmsclient/RealmsMainScreen/addTopButtons ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_271543_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$11 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_272189_ ()V com/mojang/realmsclient/RealmsMainScreen/addFooterButtons ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273951_ (Ljava/util/UUID;Lcom/mojang/realmsclient/dto/RealmsNotification;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$dismissNotification$26 (Ljava/util/UUID;Lcom/mojang/realmsclient/dto/RealmsNotification;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_273952_ (Ljava/util/List;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$13 (Ljava/util/List;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273954_ (Ljava/util/List;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen/lambda$refreshRealmsSelectionList$20 (Ljava/util/List;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen/m_273955_ (Ljava/lang/Throwable;)Ljava/lang/Void; com/mojang/realmsclient/RealmsMainScreen/lambda$callRealmsClient$19 (Ljava/lang/Throwable;)Ljava/lang/Void; +MD: com/mojang/realmsclient/RealmsMainScreen/m_273956_ (Ljava/util/UUID;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen/lambda$dismissNotification$25 (Ljava/util/UUID;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen/m_273957_ (Ljava/util/List;Ljava/lang/Object;)V com/mojang/realmsclient/RealmsMainScreen/lambda$refreshRealmsSelectionList$21 (Ljava/util/List;Ljava/lang/Object;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273958_ (Ljava/util/UUID;Ljava/lang/Object;)V com/mojang/realmsclient/RealmsMainScreen/lambda$dismissNotification$27 (Ljava/util/UUID;Ljava/lang/Object;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273959_ (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Lnet/minecraft/client/Minecraft;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen/lambda$callRealmsClient$18 (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Lnet/minecraft/client/Minecraft;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274332_ (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Ljava/util/function/Consumer;)V com/mojang/realmsclient/RealmsMainScreen/callRealmsClient (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274411_ (Lcom/mojang/realmsclient/RealmsMainScreen$RealmSelectionList;Lcom/mojang/realmsclient/dto/RealmsNotification;)V com/mojang/realmsclient/RealmsMainScreen/addEntriesForNotification (Lcom/mojang/realmsclient/RealmsMainScreen$RealmSelectionList;Lcom/mojang/realmsclient/dto/RealmsNotification;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274440_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2700 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274485_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2800 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274513_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1400 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274580_ (Ljava/util/UUID;)V com/mojang/realmsclient/RealmsMainScreen/dismissNotification (Ljava/util/UUID;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274604_ ()V com/mojang/realmsclient/RealmsMainScreen/refreshRealmsSelectionList ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274617_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1900 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_275762_ (Ljava/util/List;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$12 (Ljava/util/List;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_278724_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1700 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_278804_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1800 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_278839_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$3100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_279667_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addMiddleButtons$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_279668_ (Ljava/lang/Integer;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$14 (Ljava/lang/Integer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_279669_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280129_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen/drawClose (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280162_ (Lnet/minecraft/client/gui/GuiGraphics;IIZIIZZ)V com/mojang/realmsclient/RealmsMainScreen/renderNews (Lnet/minecraft/client/gui/GuiGraphics;IIZIIZZ)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280236_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen/drawOpen (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280377_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V com/mojang/realmsclient/RealmsMainScreen/drawExpiring (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280475_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen/drawPopup (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280597_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen/drawExpired (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_5534_ (CI)Z com/mojang/realmsclient/RealmsMainScreen/charTyped (CI)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_7856_ ()V com/mojang/realmsclient/RealmsMainScreen/init ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86318_ ()Z com/mojang/realmsclient/RealmsMainScreen/shouldShowMessageInList ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86321_ ()Z com/mojang/realmsclient/RealmsMainScreen/hasParentalConsent ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86324_ ()Z com/mojang/realmsclient/RealmsMainScreen/shouldShowPopupButton ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86327_ ()V com/mojang/realmsclient/RealmsMainScreen/pingRegions ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86330_ ()Ljava/util/List; com/mojang/realmsclient/RealmsMainScreen/getOwnedNonExpiredWorldIds ()Ljava/util/List; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86336_ ()V com/mojang/realmsclient/RealmsMainScreen/checkClientCompatability ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86342_ ()V com/mojang/realmsclient/RealmsMainScreen/checkParentalConsent ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86345_ ()V com/mojang/realmsclient/RealmsMainScreen/switchToStage ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86348_ ()V com/mojang/realmsclient/RealmsMainScreen/switchToLocal ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86351_ ()V com/mojang/realmsclient/RealmsMainScreen/switchToProd ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86354_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/RealmsMainScreen/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86357_ ()V com/mojang/realmsclient/RealmsMainScreen/saveListScrollPosition ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86360_ ()V com/mojang/realmsclient/RealmsMainScreen/onClosePopup ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86363_ ()I com/mojang/realmsclient/RealmsMainScreen/popupX0 ()I +MD: com/mojang/realmsclient/RealmsMainScreen/m_86366_ ()I com/mojang/realmsclient/RealmsMainScreen/popupY0 ()I +MD: com/mojang/realmsclient/RealmsMainScreen/m_86372_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$init$2 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86375_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$init$1 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86378_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$init$0 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86393_ (DD)Z com/mojang/realmsclient/RealmsMainScreen/isOutsidePopup (DD)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86406_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V com/mojang/realmsclient/RealmsMainScreen/updateTeaserImages (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86513_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/updateButtonStates (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86515_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/RealmsMainScreen/play (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86528_ ()Z com/mojang/realmsclient/RealmsMainScreen/shouldShowPopup ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86544_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$300 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86562_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldPlayButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86582_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$400 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86594_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldRenewButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86596_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addTopButtons$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86600_ ()V com/mojang/realmsclient/RealmsMainScreen/tick ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86601_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/RealmsMainScreen/renderStage (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86619_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldConfigureButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86621_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86626_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/RealmsMainScreen/renderLocal (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86632_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$800 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86644_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldLeaveButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86654_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$900 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86656_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/configureClicked (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86658_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86660_ ()Lcom/mojang/realmsclient/RealmsMainScreen; com/mojang/realmsclient/RealmsMainScreen/newScreen ()Lcom/mojang/realmsclient/RealmsMainScreen; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86667_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86669_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/leaveClicked (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86671_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86674_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86676_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/removeServer (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86678_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86681_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1200 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86683_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/isSelfOwnedServer (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86688_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/isSelfOwnedNonExpiredServer (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$1/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$1/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$1/m_231260_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/RealmsMainScreen$1/lambda$run$2 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/RealmsMainScreen$1/m_86740_ ()V com/mojang/realmsclient/RealmsMainScreen$1/lambda$run$1 ()V +MD: com/mojang/realmsclient/RealmsMainScreen$1/m_86741_ ()V com/mojang/realmsclient/RealmsMainScreen$1/lambda$run$0 ()V +MD: com/mojang/realmsclient/RealmsMainScreen$1/run ()V com/mojang/realmsclient/RealmsMainScreen$1/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$2/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$2/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$2/m_86747_ ()V com/mojang/realmsclient/RealmsMainScreen$2/lambda$run$0 ()V +MD: com/mojang/realmsclient/RealmsMainScreen$2/m_86748_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/RealmsMainScreen$2/lambda$run$1 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/RealmsMainScreen$2/run ()V com/mojang/realmsclient/RealmsMainScreen$2/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$3/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$3/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$3/run ()V com/mojang/realmsclient/RealmsMainScreen$3/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$4/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$4/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$4/run ()V com/mojang/realmsclient/RealmsMainScreen$4/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$5/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen$5/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen$5/m_86765_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen$5/lambda$run$0 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen$5/m_86767_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/RealmsMainScreen$5/lambda$run$1 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/RealmsMainScreen$5/run ()V com/mojang/realmsclient/RealmsMainScreen$5/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen$CloseButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$CloseButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CloseButton/m_86773_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$CloseButton/lambda$new$0 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CrossButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen$CrossButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$Entry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$Entry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$Entry/m_183377_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/RealmsMainScreen$Entry/getServer ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$NewsButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/m_273960_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$NewsButton/lambda$new$0 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen$NewsButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;Lcom/mojang/realmsclient/dto/RealmsNotification;)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;Lcom/mojang/realmsclient/dto/RealmsNotification;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274357_ (I)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/updateEntryWidth (I)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274379_ (Lcom/mojang/realmsclient/dto/RealmsNotification;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/lambda$new$0 (Lcom/mojang/realmsclient/dto/RealmsNotification;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274589_ (I)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/refreshLayout (I)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_279670_ (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/lambda$render$1 (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ ()V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ ()V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_278766_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/lambda$new$0 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_280587_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/drawInvitations (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_86821_ ()V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/tick ()V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_5759_ ()I com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_5775_ ()I com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_6987_ (Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)V com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/setSelected (Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmsCall/m_274420_ (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen$RealmsCall/request (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$ServerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_183377_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/RealmsMainScreen$ServerEntry/getServer ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_271912_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/renderStatusLights (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_280176_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/renderLegacy (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_280291_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/renderMcoServerItem (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$ServerEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen$ServerEntry/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$TrialEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$TrialEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$TrialEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$TrialEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_86913_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V com/mojang/realmsclient/RealmsMainScreen$TrialEntry/renderTrialItem (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: com/mojang/realmsclient/Unit/ ()V com/mojang/realmsclient/Unit/ ()V +MD: com/mojang/realmsclient/Unit/ (Ljava/lang/String;I)V com/mojang/realmsclient/Unit/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/Unit/m_167232_ ()[Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/$values ()[Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/Unit/m_86940_ (J)Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/getLargest (J)Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/Unit/m_86942_ (JLcom/mojang/realmsclient/Unit;)D com/mojang/realmsclient/Unit/convertTo (JLcom/mojang/realmsclient/Unit;)D +MD: com/mojang/realmsclient/Unit/m_86945_ (J)Ljava/lang/String; com/mojang/realmsclient/Unit/humanReadable (J)Ljava/lang/String; +MD: com/mojang/realmsclient/Unit/m_86947_ (JLcom/mojang/realmsclient/Unit;)Ljava/lang/String; com/mojang/realmsclient/Unit/humanReadable (JLcom/mojang/realmsclient/Unit;)Ljava/lang/String; +MD: com/mojang/realmsclient/Unit/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/Unit/values ()[Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/values ()[Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/client/FileDownload/ ()V com/mojang/realmsclient/client/FileDownload/ ()V +MD: com/mojang/realmsclient/client/FileDownload/ ()V com/mojang/realmsclient/client/FileDownload/ ()V +MD: com/mojang/realmsclient/client/FileDownload/m_86966_ ()V com/mojang/realmsclient/client/FileDownload/cancel ()V +MD: com/mojang/realmsclient/client/FileDownload/m_86977_ (Lcom/mojang/realmsclient/dto/WorldDownload;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource;)V com/mojang/realmsclient/client/FileDownload/lambda$download$0 (Lcom/mojang/realmsclient/dto/WorldDownload;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86982_ (Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lnet/minecraft/world/level/storage/LevelStorageSource;)V com/mojang/realmsclient/client/FileDownload/download (Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86987_ (Ljava/io/File;)V com/mojang/realmsclient/client/FileDownload/deletePlayerTag (Ljava/io/File;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86989_ (Ljava/lang/String;)J com/mojang/realmsclient/client/FileDownload/contentLength (Ljava/lang/String;)J +MD: com/mojang/realmsclient/client/FileDownload/m_86991_ (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;)V com/mojang/realmsclient/client/FileDownload/untarGzipArchive (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86995_ ()Z com/mojang/realmsclient/client/FileDownload/isFinished ()Z +MD: com/mojang/realmsclient/client/FileDownload/m_87001_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/FileDownload/findAvailableFolderName (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/FileDownload/m_87003_ ()Z com/mojang/realmsclient/client/FileDownload/isError ()Z +MD: com/mojang/realmsclient/client/FileDownload/m_87009_ ()Z com/mojang/realmsclient/client/FileDownload/isExtracting ()Z +MD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/ (Ljava/io/OutputStream;)V com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/ (Ljava/io/OutputStream;)V +MD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/afterWrite (I)V com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/afterWrite (I)V +MD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/m_87016_ (Ljava/awt/event/ActionListener;)V com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/setListener (Ljava/awt/event/ActionListener;)V +MD: com/mojang/realmsclient/client/FileDownload$ProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;)V com/mojang/realmsclient/client/FileDownload$ProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;)V +MD: com/mojang/realmsclient/client/FileDownload$ProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V com/mojang/realmsclient/client/FileDownload$ProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V +MD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/io/File;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lcom/mojang/realmsclient/dto/WorldDownload;)V com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/io/File;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lcom/mojang/realmsclient/dto/WorldDownload;)V +MD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V +MD: com/mojang/realmsclient/client/FileUpload/ ()V com/mojang/realmsclient/client/FileUpload/ ()V +MD: com/mojang/realmsclient/client/FileUpload/ (Ljava/io/File;JILcom/mojang/realmsclient/dto/UploadInfo;Lnet/minecraft/client/User;Ljava/lang/String;Lcom/mojang/realmsclient/client/UploadStatus;)V com/mojang/realmsclient/client/FileUpload/ (Ljava/io/File;JILcom/mojang/realmsclient/dto/UploadInfo;Lnet/minecraft/client/User;Ljava/lang/String;Lcom/mojang/realmsclient/client/UploadStatus;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87078_ ()V com/mojang/realmsclient/client/FileUpload/cancel ()V +MD: com/mojang/realmsclient/client/FileUpload/m_87079_ (I)Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/client/FileUpload/requestUpload (I)Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/client/FileUpload/m_87081_ (JI)Z com/mojang/realmsclient/client/FileUpload/shouldRetry (JI)Z +MD: com/mojang/realmsclient/client/FileUpload/m_87084_ (Ljava/util/function/Consumer;)V com/mojang/realmsclient/client/FileUpload/upload (Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87086_ (Lorg/apache/http/HttpResponse;)J com/mojang/realmsclient/client/FileUpload/getRetryDelaySeconds (Lorg/apache/http/HttpResponse;)J +MD: com/mojang/realmsclient/client/FileUpload/m_87088_ (Lorg/apache/http/HttpResponse;Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder;)V com/mojang/realmsclient/client/FileUpload/handleResponse (Lorg/apache/http/HttpResponse;Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87091_ (Lorg/apache/http/client/methods/HttpPost;)V com/mojang/realmsclient/client/FileUpload/setupRequest (Lorg/apache/http/client/methods/HttpPost;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87093_ (Lorg/apache/http/client/methods/HttpPost;Lorg/apache/http/impl/client/CloseableHttpClient;)V com/mojang/realmsclient/client/FileUpload/cleanup (Lorg/apache/http/client/methods/HttpPost;Lorg/apache/http/impl/client/CloseableHttpClient;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87096_ ()Z com/mojang/realmsclient/client/FileUpload/isFinished ()Z +MD: com/mojang/realmsclient/client/FileUpload/m_87097_ (JI)Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/client/FileUpload/retryUploadAfter (JI)Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/client/FileUpload/m_87100_ ()Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/client/FileUpload/lambda$upload$0 ()Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/ (Ljava/io/InputStream;JLcom/mojang/realmsclient/client/UploadStatus;)V com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/ (Ljava/io/InputStream;JLcom/mojang/realmsclient/client/UploadStatus;)V +MD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/writeTo (Ljava/io/OutputStream;)V com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/writeTo (Ljava/io/OutputStream;)V +MD: com/mojang/realmsclient/client/Ping/ ()V com/mojang/realmsclient/client/Ping/ ()V +MD: com/mojang/realmsclient/client/Ping/m_87125_ ()Ljava/util/List; com/mojang/realmsclient/client/Ping/pingAllRegions ()Ljava/util/List; +MD: com/mojang/realmsclient/client/Ping/m_87126_ (Ljava/lang/String;)I com/mojang/realmsclient/client/Ping/ping (Ljava/lang/String;)I +MD: com/mojang/realmsclient/client/Ping/m_87130_ ([Lcom/mojang/realmsclient/client/Ping$Region;)Ljava/util/List; com/mojang/realmsclient/client/Ping/ping ([Lcom/mojang/realmsclient/client/Ping$Region;)Ljava/util/List; +MD: com/mojang/realmsclient/client/Ping/m_87132_ ()J com/mojang/realmsclient/client/Ping/now ()J +MD: com/mojang/realmsclient/client/Ping$Region/ ()V com/mojang/realmsclient/client/Ping$Region/ ()V +MD: com/mojang/realmsclient/client/Ping$Region/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/Ping$Region/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/Ping$Region/m_167236_ ()[Lcom/mojang/realmsclient/client/Ping$Region; com/mojang/realmsclient/client/Ping$Region/$values ()[Lcom/mojang/realmsclient/client/Ping$Region; +MD: com/mojang/realmsclient/client/Ping$Region/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Ping$Region; com/mojang/realmsclient/client/Ping$Region/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Ping$Region; +MD: com/mojang/realmsclient/client/Ping$Region/values ()[Lcom/mojang/realmsclient/client/Ping$Region; com/mojang/realmsclient/client/Ping$Region/values ()[Lcom/mojang/realmsclient/client/Ping$Region; +MD: com/mojang/realmsclient/client/RealmsClient/ ()V com/mojang/realmsclient/client/RealmsClient/ ()V +MD: com/mojang/realmsclient/client/RealmsClient/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/client/RealmsClient/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_167275_ (JLcom/mojang/realmsclient/util/WorldGenerationInfo;)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/resetWorldWithSeed (JLcom/mojang/realmsclient/util/WorldGenerationInfo;)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_167278_ (J)Lcom/mojang/realmsclient/dto/ServerActivityList; com/mojang/realmsclient/client/RealmsClient/getActivity (J)Lcom/mojang/realmsclient/dto/ServerActivityList; +MD: com/mojang/realmsclient/client/RealmsClient/m_200936_ (I)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/getHttpCodeDescription (I)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_239151_ (Lnet/minecraft/client/Minecraft;)Lcom/mojang/realmsclient/client/RealmsClient; com/mojang/realmsclient/client/RealmsClient/create (Lnet/minecraft/client/Minecraft;)Lcom/mojang/realmsclient/client/RealmsClient; +MD: com/mojang/realmsclient/client/RealmsClient/m_274314_ ()Ljava/util/List; com/mojang/realmsclient/client/RealmsClient/getNotifications ()Ljava/util/List; +MD: com/mojang/realmsclient/client/RealmsClient/m_274401_ (Ljava/util/List;)V com/mojang/realmsclient/client/RealmsClient/notificationsDismiss (Ljava/util/List;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_274462_ (Ljava/util/List;)Lcom/google/gson/JsonArray; com/mojang/realmsclient/client/RealmsClient/uuidListToJsonArray (Ljava/util/List;)Lcom/google/gson/JsonArray; +MD: com/mojang/realmsclient/client/RealmsClient/m_274582_ (Ljava/util/List;)V com/mojang/realmsclient/client/RealmsClient/notificationsSeen (Ljava/util/List;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_289606_ (Lcom/mojang/realmsclient/client/RealmsClient$Environment;)V com/mojang/realmsclient/client/RealmsClient/lambda$create$1 (Lcom/mojang/realmsclient/client/RealmsClient$Environment;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_289610_ ()Ljava/util/Optional; com/mojang/realmsclient/client/RealmsClient/lambda$create$0 ()Ljava/util/Optional; +MD: com/mojang/realmsclient/client/RealmsClient/m_87169_ ()Lcom/mojang/realmsclient/client/RealmsClient; com/mojang/realmsclient/client/RealmsClient/create ()Lcom/mojang/realmsclient/client/RealmsClient; +MD: com/mojang/realmsclient/client/RealmsClient/m_87170_ (IILcom/mojang/realmsclient/dto/RealmsServer$WorldType;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; com/mojang/realmsclient/client/RealmsClient/fetchWorldTemplates (IILcom/mojang/realmsclient/dto/RealmsServer$WorldType;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87174_ (J)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/client/RealmsClient/getOwnWorld (J)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/client/RealmsClient/m_87176_ (JI)Z com/mojang/realmsclient/client/RealmsClient/switchSlot (JI)Z +MD: com/mojang/realmsclient/client/RealmsClient/m_87179_ (JILcom/mojang/realmsclient/dto/RealmsWorldOptions;)V com/mojang/realmsclient/client/RealmsClient/updateSlot (JILcom/mojang/realmsclient/dto/RealmsWorldOptions;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87183_ (JLjava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/uninvite (JLjava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87191_ (JLjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/initializeWorld (JLjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87195_ (Lcom/mojang/realmsclient/client/Request;)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/execute (Lcom/mojang/realmsclient/client/Request;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_87197_ (Lcom/mojang/realmsclient/dto/PendingInvite;)Z com/mojang/realmsclient/client/RealmsClient/isBlocked (Lcom/mojang/realmsclient/dto/PendingInvite;)Z +MD: com/mojang/realmsclient/client/RealmsClient/m_87199_ (Lcom/mojang/realmsclient/dto/PingResult;)V com/mojang/realmsclient/client/RealmsClient/sendPingResults (Lcom/mojang/realmsclient/dto/PingResult;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87201_ (Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/acceptInvitation (Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87203_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/url (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_87206_ ()V com/mojang/realmsclient/client/RealmsClient/switchToStage ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87207_ (J)Lcom/mojang/realmsclient/dto/RealmsServerAddress; com/mojang/realmsclient/client/RealmsClient/join (J)Lcom/mojang/realmsclient/dto/RealmsServerAddress; +MD: com/mojang/realmsclient/client/RealmsClient/m_87209_ (JI)Lcom/mojang/realmsclient/dto/WorldDownload; com/mojang/realmsclient/client/RealmsClient/requestDownloadInfo (JI)Lcom/mojang/realmsclient/dto/WorldDownload; +MD: com/mojang/realmsclient/client/RealmsClient/m_87212_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/client/RealmsClient/invite (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/client/RealmsClient/m_87215_ (JLjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/update (JLjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87219_ (Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/rejectInvitation (Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87221_ ()V com/mojang/realmsclient/client/RealmsClient/switchToProd ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87222_ (J)V com/mojang/realmsclient/client/RealmsClient/uninviteMyselfFrom (J)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87224_ (JLjava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/restoreWorld (JLjava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87227_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/url (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_87229_ ()V com/mojang/realmsclient/client/RealmsClient/switchToLocal ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87230_ (J)Lcom/mojang/realmsclient/dto/BackupList; com/mojang/realmsclient/client/RealmsClient/backupsFor (J)Lcom/mojang/realmsclient/dto/BackupList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87232_ (JLjava/lang/String;)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/putIntoMinigameMode (JLjava/lang/String;)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87235_ ()Lcom/mojang/realmsclient/dto/RealmsServerList; com/mojang/realmsclient/client/RealmsClient/listWorlds ()Lcom/mojang/realmsclient/dto/RealmsServerList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87236_ (J)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/open (J)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87238_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; com/mojang/realmsclient/client/RealmsClient/op (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; +MD: com/mojang/realmsclient/client/RealmsClient/m_87241_ ()Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; com/mojang/realmsclient/client/RealmsClient/getLiveStats ()Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; +MD: com/mojang/realmsclient/client/RealmsClient/m_87242_ (J)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/close (J)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87244_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; com/mojang/realmsclient/client/RealmsClient/deop (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; +MD: com/mojang/realmsclient/client/RealmsClient/m_87247_ ()Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/mcoEnabled ()Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87248_ (J)Lcom/mojang/realmsclient/dto/Subscription; com/mojang/realmsclient/client/RealmsClient/subscriptionFor (J)Lcom/mojang/realmsclient/dto/Subscription; +MD: com/mojang/realmsclient/client/RealmsClient/m_87250_ (JLjava/lang/String;)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/resetWorldWithTemplate (JLjava/lang/String;)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87253_ ()Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/stageAvailable ()Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87254_ (J)V com/mojang/realmsclient/client/RealmsClient/deleteWorld (J)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87256_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; com/mojang/realmsclient/client/RealmsClient/requestUploadInfo (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; +MD: com/mojang/realmsclient/client/RealmsClient/m_87259_ ()Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient/clientCompatible ()Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient/m_87260_ ()I com/mojang/realmsclient/client/RealmsClient/pendingInvitesCount ()I +MD: com/mojang/realmsclient/client/RealmsClient/m_87261_ ()Lcom/mojang/realmsclient/dto/PendingInvitesList; com/mojang/realmsclient/client/RealmsClient/pendingInvites ()Lcom/mojang/realmsclient/dto/PendingInvitesList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87262_ ()V com/mojang/realmsclient/client/RealmsClient/agreeToTos ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87263_ ()Lcom/mojang/realmsclient/dto/RealmsNews; com/mojang/realmsclient/client/RealmsClient/getNews ()Lcom/mojang/realmsclient/dto/RealmsNews; +MD: com/mojang/realmsclient/client/RealmsClient/m_87264_ ()Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/trialAvailable ()Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ ()V com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ ()V +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ (Ljava/lang/String;I)V com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/m_167280_ ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/$values ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/values ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/values ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/ ()V com/mojang/realmsclient/client/RealmsClient$Environment/ ()V +MD: com/mojang/realmsclient/client/RealmsClient$Environment/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient$Environment/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient$Environment/m_167281_ ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; com/mojang/realmsclient/client/RealmsClient$Environment/$values ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/m_289598_ (Ljava/lang/String;)Ljava/util/Optional; com/mojang/realmsclient/client/RealmsClient$Environment/byName (Ljava/lang/String;)Ljava/util/Optional; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$Environment; com/mojang/realmsclient/client/RealmsClient$Environment/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$Environment; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/values ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; com/mojang/realmsclient/client/RealmsClient$Environment/values ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; +MD: com/mojang/realmsclient/client/RealmsClientConfig/ ()V com/mojang/realmsclient/client/RealmsClientConfig/ ()V +MD: com/mojang/realmsclient/client/RealmsClientConfig/m_87292_ ()Ljava/net/Proxy; com/mojang/realmsclient/client/RealmsClientConfig/getProxy ()Ljava/net/Proxy; +MD: com/mojang/realmsclient/client/RealmsClientConfig/m_87293_ (Ljava/net/Proxy;)V com/mojang/realmsclient/client/RealmsClientConfig/setProxy (Ljava/net/Proxy;)V +MD: com/mojang/realmsclient/client/RealmsError/ ()V com/mojang/realmsclient/client/RealmsError/ ()V +MD: com/mojang/realmsclient/client/RealmsError/ (Ljava/lang/String;I)V com/mojang/realmsclient/client/RealmsError/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/client/RealmsError/m_87302_ ()Ljava/lang/String; com/mojang/realmsclient/client/RealmsError/getErrorMessage ()Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsError/m_87303_ (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsError; com/mojang/realmsclient/client/RealmsError/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsError; +MD: com/mojang/realmsclient/client/RealmsError/m_87305_ ()I com/mojang/realmsclient/client/RealmsError/getErrorCode ()I +MD: com/mojang/realmsclient/client/Request/ (Ljava/lang/String;II)V com/mojang/realmsclient/client/Request/ (Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request/m_167285_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/header (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87313_ ()I com/mojang/realmsclient/client/Request/getRetryAfterHeader ()I +MD: com/mojang/realmsclient/client/Request/m_87314_ (Ljava/io/InputStream;)Ljava/lang/String; com/mojang/realmsclient/client/Request/read (Ljava/io/InputStream;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87316_ (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/get (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87318_ (Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/get (Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87322_ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/Request/cookie (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/Request/m_87325_ (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/post (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87330_ (Ljava/net/HttpURLConnection;)I com/mojang/realmsclient/client/Request/getRetryAfterHeader (Ljava/net/HttpURLConnection;)I +MD: com/mojang/realmsclient/client/Request/m_87332_ (Ljava/net/HttpURLConnection;Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/Request/getHeader (Ljava/net/HttpURLConnection;Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87335_ (Ljava/net/HttpURLConnection;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/Request/cookie (Ljava/net/HttpURLConnection;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/Request/m_87339_ ()I com/mojang/realmsclient/client/Request/responseCode ()I +MD: com/mojang/realmsclient/client/Request/m_87340_ (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/delete (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87342_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/post (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87345_ (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/put (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87350_ ()Ljava/lang/String; com/mojang/realmsclient/client/Request/text ()Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87351_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/Request/getHeader (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87353_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/put (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87356_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/connect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87357_ ()V com/mojang/realmsclient/client/Request/dispose ()V +MD: com/mojang/realmsclient/client/Request$Delete/ (Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Delete/ (Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Delete/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Delete/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Delete/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Delete; com/mojang/realmsclient/client/Request$Delete/doConnect ()Lcom/mojang/realmsclient/client/Request$Delete; +MD: com/mojang/realmsclient/client/Request$Get/ (Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Get/ (Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Get/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Get/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Get/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Get; com/mojang/realmsclient/client/Request$Get/doConnect ()Lcom/mojang/realmsclient/client/Request$Get; +MD: com/mojang/realmsclient/client/Request$Post/ (Ljava/lang/String;Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Post/ (Ljava/lang/String;Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Post/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Post/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Post/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Post; com/mojang/realmsclient/client/Request$Post/doConnect ()Lcom/mojang/realmsclient/client/Request$Post; +MD: com/mojang/realmsclient/client/Request$Put/ (Ljava/lang/String;Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Put/ (Ljava/lang/String;Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Put/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Put/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Put/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Put; com/mojang/realmsclient/client/Request$Put/doConnect ()Lcom/mojang/realmsclient/client/Request$Put; +MD: com/mojang/realmsclient/client/UploadStatus/ ()V com/mojang/realmsclient/client/UploadStatus/ ()V +MD: com/mojang/realmsclient/dto/Backup/ ()V com/mojang/realmsclient/dto/Backup/ ()V +MD: com/mojang/realmsclient/dto/Backup/ ()V com/mojang/realmsclient/dto/Backup/ ()V +MD: com/mojang/realmsclient/dto/Backup/m_87398_ ()Z com/mojang/realmsclient/dto/Backup/isUploadedVersion ()Z +MD: com/mojang/realmsclient/dto/Backup/m_87399_ (Lcom/google/gson/JsonElement;)Lcom/mojang/realmsclient/dto/Backup; com/mojang/realmsclient/dto/Backup/parse (Lcom/google/gson/JsonElement;)Lcom/mojang/realmsclient/dto/Backup; +MD: com/mojang/realmsclient/dto/Backup/m_87403_ (Z)V com/mojang/realmsclient/dto/Backup/setUploadedVersion (Z)V +MD: com/mojang/realmsclient/dto/BackupList/ ()V com/mojang/realmsclient/dto/BackupList/ ()V +MD: com/mojang/realmsclient/dto/BackupList/ ()V com/mojang/realmsclient/dto/BackupList/ ()V +MD: com/mojang/realmsclient/dto/BackupList/m_87409_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/BackupList; com/mojang/realmsclient/dto/BackupList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/BackupList; +MD: com/mojang/realmsclient/dto/GuardedSerializer/ ()V com/mojang/realmsclient/dto/GuardedSerializer/ ()V +MD: com/mojang/realmsclient/dto/GuardedSerializer/m_274558_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; com/mojang/realmsclient/dto/GuardedSerializer/toJson (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/GuardedSerializer/m_87413_ (Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization;)Ljava/lang/String; com/mojang/realmsclient/dto/GuardedSerializer/toJson (Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/GuardedSerializer/m_87415_ (Ljava/lang/String;Ljava/lang/Class;)Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization; com/mojang/realmsclient/dto/GuardedSerializer/fromJson (Ljava/lang/String;Ljava/lang/Class;)Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization; +MD: com/mojang/realmsclient/dto/Ops/ ()V com/mojang/realmsclient/dto/Ops/ ()V +MD: com/mojang/realmsclient/dto/Ops/m_87420_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; com/mojang/realmsclient/dto/Ops/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; +MD: com/mojang/realmsclient/dto/PendingInvite/ ()V com/mojang/realmsclient/dto/PendingInvite/ ()V +MD: com/mojang/realmsclient/dto/PendingInvite/ ()V com/mojang/realmsclient/dto/PendingInvite/ ()V +MD: com/mojang/realmsclient/dto/PendingInvite/m_87430_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/PendingInvite; com/mojang/realmsclient/dto/PendingInvite/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/PendingInvite; +MD: com/mojang/realmsclient/dto/PendingInvitesList/ ()V com/mojang/realmsclient/dto/PendingInvitesList/ ()V +MD: com/mojang/realmsclient/dto/PendingInvitesList/ ()V com/mojang/realmsclient/dto/PendingInvitesList/ ()V +MD: com/mojang/realmsclient/dto/PendingInvitesList/m_87436_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/PendingInvitesList; com/mojang/realmsclient/dto/PendingInvitesList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/PendingInvitesList; +MD: com/mojang/realmsclient/dto/PingResult/ ()V com/mojang/realmsclient/dto/PingResult/ ()V +MD: com/mojang/realmsclient/dto/PlayerInfo/ ()V com/mojang/realmsclient/dto/PlayerInfo/ ()V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87447_ ()Ljava/lang/String; com/mojang/realmsclient/dto/PlayerInfo/getName ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87448_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/PlayerInfo/setName (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87450_ (Z)V com/mojang/realmsclient/dto/PlayerInfo/setOperator (Z)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87452_ ()Ljava/lang/String; com/mojang/realmsclient/dto/PlayerInfo/getUuid ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87453_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/PlayerInfo/setUuid (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87455_ (Z)V com/mojang/realmsclient/dto/PlayerInfo/setAccepted (Z)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87457_ ()Z com/mojang/realmsclient/dto/PlayerInfo/isOperator ()Z +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87458_ (Z)V com/mojang/realmsclient/dto/PlayerInfo/setOnline (Z)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87460_ ()Z com/mojang/realmsclient/dto/PlayerInfo/getAccepted ()Z +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87461_ ()Z com/mojang/realmsclient/dto/PlayerInfo/getOnline ()Z +MD: com/mojang/realmsclient/dto/RealmsDescriptionDto/ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsDescriptionDto/ (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsNews/ ()V com/mojang/realmsclient/dto/RealmsNews/ ()V +MD: com/mojang/realmsclient/dto/RealmsNews/ ()V com/mojang/realmsclient/dto/RealmsNews/ ()V +MD: com/mojang/realmsclient/dto/RealmsNews/m_87471_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsNews; com/mojang/realmsclient/dto/RealmsNews/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsNews; +MD: com/mojang/realmsclient/dto/RealmsNotification/ ()V com/mojang/realmsclient/dto/RealmsNotification/ ()V +MD: com/mojang/realmsclient/dto/RealmsNotification/ (Ljava/util/UUID;ZZLjava/lang/String;)V com/mojang/realmsclient/dto/RealmsNotification/ (Ljava/util/UUID;ZZLjava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274400_ ()Ljava/util/UUID; com/mojang/realmsclient/dto/RealmsNotification/uuid ()Ljava/util/UUID; +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274416_ ()Z com/mojang/realmsclient/dto/RealmsNotification/dismissable ()Z +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274477_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification; com/mojang/realmsclient/dto/RealmsNotification/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification; +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274572_ (Ljava/lang/String;)Ljava/util/List; com/mojang/realmsclient/dto/RealmsNotification/parseList (Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274594_ ()Z com/mojang/realmsclient/dto/RealmsNotification/seen ()Z +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/ (Lcom/mojang/realmsclient/dto/RealmsNotification;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsText;Lcom/mojang/realmsclient/dto/RealmsText;)V com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/ (Lcom/mojang/realmsclient/dto/RealmsNotification;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsText;Lcom/mojang/realmsclient/dto/RealmsText;)V +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/m_274431_ (Lnet/minecraft/client/gui/screens/Screen;)Lnet/minecraft/client/gui/components/Button; com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/buildOpenLinkButton (Lnet/minecraft/client/gui/screens/Screen;)Lnet/minecraft/client/gui/components/Button; +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/m_274551_ (Lcom/mojang/realmsclient/dto/RealmsNotification;Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification$VisitUrl; com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/parse (Lcom/mojang/realmsclient/dto/RealmsNotification;Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification$VisitUrl; +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/m_274603_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/getMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/dto/RealmsServer/ ()V com/mojang/realmsclient/dto/RealmsServer/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer/ ()V com/mojang/realmsclient/dto/RealmsServer/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer/clone ()Ljava/lang/Object; com/mojang/realmsclient/dto/RealmsServer/clone ()Ljava/lang/Object; +MD: com/mojang/realmsclient/dto/RealmsServer/clone ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/dto/RealmsServer/clone ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/dto/RealmsServer/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/dto/RealmsServer/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/dto/RealmsServer/hashCode ()I com/mojang/realmsclient/dto/RealmsServer/hashCode ()I +MD: com/mojang/realmsclient/dto/RealmsServer/m_87494_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getDescription ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87495_ (I)Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getWorldName (I)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87497_ (Lcom/google/gson/JsonArray;)Ljava/util/List; com/mojang/realmsclient/dto/RealmsServer/parseInvited (Lcom/google/gson/JsonArray;)Ljava/util/List; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87499_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/dto/RealmsServer/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87501_ (Lcom/mojang/realmsclient/dto/PlayerInfo;Lcom/mojang/realmsclient/dto/PlayerInfo;)I com/mojang/realmsclient/dto/RealmsServer/lambda$sortInvited$0 (Lcom/mojang/realmsclient/dto/PlayerInfo;Lcom/mojang/realmsclient/dto/PlayerInfo;)I +MD: com/mojang/realmsclient/dto/RealmsServer/m_87504_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/dto/RealmsServer/sortInvited (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87506_ (Lcom/mojang/realmsclient/dto/RealmsServerPlayerList;)V com/mojang/realmsclient/dto/RealmsServer/updateServerPing (Lcom/mojang/realmsclient/dto/RealmsServerPlayerList;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87508_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsServer/setName (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87510_ (Ljava/util/Map;)Ljava/util/Map; com/mojang/realmsclient/dto/RealmsServer/cloneSlots (Ljava/util/Map;)Ljava/util/Map; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87512_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getName ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87513_ (Lcom/google/gson/JsonArray;)Ljava/util/Map; com/mojang/realmsclient/dto/RealmsServer/parseSlots (Lcom/google/gson/JsonArray;)Ljava/util/Map; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87515_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsServer/setDescription (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87517_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getMinigameName ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87518_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/dto/RealmsServer/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87522_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; com/mojang/realmsclient/dto/RealmsServer/toServerData (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87524_ ()Ljava/util/Map; com/mojang/realmsclient/dto/RealmsServer/createEmptySlots ()Ljava/util/Map; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87525_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer/getState (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87529_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer/getWorldType (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/ (Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/ (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServer;)I com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServer;)I +MD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I +MD: com/mojang/realmsclient/dto/RealmsServer$State/ ()V com/mojang/realmsclient/dto/RealmsServer$State/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer$State/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/RealmsServer$State/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/RealmsServer$State/m_167288_ ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer$State/$values ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer$State/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer$State/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer$State/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer$State/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/ ()V com/mojang/realmsclient/dto/RealmsServer$WorldType/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/RealmsServer$WorldType/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/m_167289_ ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer$WorldType/$values ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer$WorldType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer$WorldType/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServerAddress/ ()V com/mojang/realmsclient/dto/RealmsServerAddress/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerAddress/ ()V com/mojang/realmsclient/dto/RealmsServerAddress/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerAddress/m_87571_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerAddress; com/mojang/realmsclient/dto/RealmsServerAddress/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerAddress; +MD: com/mojang/realmsclient/dto/RealmsServerList/ ()V com/mojang/realmsclient/dto/RealmsServerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerList/ ()V com/mojang/realmsclient/dto/RealmsServerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerList/m_87577_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerList; com/mojang/realmsclient/dto/RealmsServerList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerList; +MD: com/mojang/realmsclient/dto/RealmsServerPing/ ()V com/mojang/realmsclient/dto/RealmsServerPing/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/m_87588_ (Lcom/google/gson/JsonArray;)Ljava/util/List; com/mojang/realmsclient/dto/RealmsServerPlayerList/parsePlayers (Lcom/google/gson/JsonArray;)Ljava/util/List; +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/m_87590_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerList; com/mojang/realmsclient/dto/RealmsServerPlayerList/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerList; +MD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/m_87596_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; com/mojang/realmsclient/dto/RealmsServerPlayerLists/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; +MD: com/mojang/realmsclient/dto/RealmsText/ (Ljava/lang/String;[Ljava/lang/Object;)V com/mojang/realmsclient/dto/RealmsText/ (Ljava/lang/String;[Ljava/lang/Object;)V +MD: com/mojang/realmsclient/dto/RealmsText/m_274486_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsText; com/mojang/realmsclient/dto/RealmsText/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsText; +MD: com/mojang/realmsclient/dto/RealmsText/m_274597_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/dto/RealmsText/createComponent (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/ ()V com/mojang/realmsclient/dto/RealmsWorldOptions/ ()V +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/ (ZZZZIZIIZLjava/lang/String;)V com/mojang/realmsclient/dto/RealmsWorldOptions/ (ZZZZIZIIZLjava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Ljava/lang/Object; com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Ljava/lang/Object; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87625_ ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/createDefaults ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87626_ (I)Ljava/lang/String; com/mojang/realmsclient/dto/RealmsWorldOptions/getSlotName (I)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87628_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87630_ (Z)V com/mojang/realmsclient/dto/RealmsWorldOptions/setEmpty (Z)V +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87632_ ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/createEmptyDefaults ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87633_ (I)Ljava/lang/String; com/mojang/realmsclient/dto/RealmsWorldOptions/getDefaultSlotName (I)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87635_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsWorldOptions/toJson ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsWorldResetDto/ (Ljava/lang/String;JIZ)V com/mojang/realmsclient/dto/RealmsWorldResetDto/ (Ljava/lang/String;JIZ)V +MD: com/mojang/realmsclient/dto/RegionPingResult/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/RegionPingResult/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/RegionPingResult/m_87652_ ()I com/mojang/realmsclient/dto/RegionPingResult/ping ()I +MD: com/mojang/realmsclient/dto/RegionPingResult/toString ()Ljava/lang/String; com/mojang/realmsclient/dto/RegionPingResult/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/ServerActivity/ ()V com/mojang/realmsclient/dto/ServerActivity/ ()V +MD: com/mojang/realmsclient/dto/ServerActivity/m_167316_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/ServerActivity; com/mojang/realmsclient/dto/ServerActivity/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/ServerActivity; +MD: com/mojang/realmsclient/dto/ServerActivityList/ ()V com/mojang/realmsclient/dto/ServerActivityList/ ()V +MD: com/mojang/realmsclient/dto/ServerActivityList/m_167321_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/ServerActivityList; com/mojang/realmsclient/dto/ServerActivityList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/ServerActivityList; +MD: com/mojang/realmsclient/dto/Subscription/ ()V com/mojang/realmsclient/dto/Subscription/ ()V +MD: com/mojang/realmsclient/dto/Subscription/ ()V com/mojang/realmsclient/dto/Subscription/ ()V +MD: com/mojang/realmsclient/dto/Subscription/m_87672_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription; com/mojang/realmsclient/dto/Subscription/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription; +MD: com/mojang/realmsclient/dto/Subscription/m_87674_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription/typeFrom (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/ ()V com/mojang/realmsclient/dto/Subscription$SubscriptionType/ ()V +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/Subscription$SubscriptionType/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/m_167323_ ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription$SubscriptionType/$values ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription$SubscriptionType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/values ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription$SubscriptionType/values ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/UploadInfo/ ()V com/mojang/realmsclient/dto/UploadInfo/ ()V +MD: com/mojang/realmsclient/dto/UploadInfo/ (ZLjava/lang/String;Ljava/net/URI;)V com/mojang/realmsclient/dto/UploadInfo/ (ZLjava/lang/String;Ljava/net/URI;)V +MD: com/mojang/realmsclient/dto/UploadInfo/m_87696_ ()Ljava/lang/String; com/mojang/realmsclient/dto/UploadInfo/getToken ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87697_ (II)I com/mojang/realmsclient/dto/UploadInfo/selectPortOrDefault (II)I +MD: com/mojang/realmsclient/dto/UploadInfo/m_87700_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; com/mojang/realmsclient/dto/UploadInfo/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87702_ (Ljava/lang/String;I)Ljava/net/URI; com/mojang/realmsclient/dto/UploadInfo/assembleUri (Ljava/lang/String;I)Ljava/net/URI; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87705_ (Ljava/lang/String;Ljava/util/regex/Matcher;)Ljava/lang/String; com/mojang/realmsclient/dto/UploadInfo/ensureEndpointSchema (Ljava/lang/String;Ljava/util/regex/Matcher;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87708_ ()Ljava/net/URI; com/mojang/realmsclient/dto/UploadInfo/getUploadEndpoint ()Ljava/net/URI; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87709_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/dto/UploadInfo/createRequest (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87711_ ()Z com/mojang/realmsclient/dto/UploadInfo/isWorldClosed ()Z +MD: com/mojang/realmsclient/dto/ValueObject/ ()V com/mojang/realmsclient/dto/ValueObject/ ()V +MD: com/mojang/realmsclient/dto/ValueObject/m_87713_ (Ljava/lang/reflect/Field;)Ljava/lang/String; com/mojang/realmsclient/dto/ValueObject/getName (Ljava/lang/reflect/Field;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/ValueObject/m_87715_ (Ljava/lang/reflect/Field;)Z com/mojang/realmsclient/dto/ValueObject/isStatic (Ljava/lang/reflect/Field;)Z +MD: com/mojang/realmsclient/dto/ValueObject/toString ()Ljava/lang/String; com/mojang/realmsclient/dto/ValueObject/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/WorldDownload/ ()V com/mojang/realmsclient/dto/WorldDownload/ ()V +MD: com/mojang/realmsclient/dto/WorldDownload/ ()V com/mojang/realmsclient/dto/WorldDownload/ ()V +MD: com/mojang/realmsclient/dto/WorldDownload/m_87724_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldDownload; com/mojang/realmsclient/dto/WorldDownload/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldDownload; +MD: com/mojang/realmsclient/dto/WorldTemplate/ ()V com/mojang/realmsclient/dto/WorldTemplate/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplate/ ()V com/mojang/realmsclient/dto/WorldTemplate/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplate/m_87738_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/dto/WorldTemplate/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ ()V com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/m_167326_ ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/$values ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/values ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/values ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ (I)V com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ (I)V +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/m_167327_ ()Z com/mojang/realmsclient/dto/WorldTemplatePaginatedList/isLastPage ()Z +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/m_87762_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; com/mojang/realmsclient/dto/WorldTemplatePaginatedList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +MD: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V +MD: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: com/mojang/realmsclient/exception/RealmsHttpException/ (Ljava/lang/String;Ljava/lang/Exception;)V com/mojang/realmsclient/exception/RealmsHttpException/ (Ljava/lang/String;Ljava/lang/Exception;)V +MD: com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;Lcom/mojang/realmsclient/client/RealmsError;)V com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;Lcom/mojang/realmsclient/client/RealmsError;)V +MD: com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;)V com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;)V +MD: com/mojang/realmsclient/exception/RealmsServiceException/getMessage ()Ljava/lang/String; com/mojang/realmsclient/exception/RealmsServiceException/getMessage ()Ljava/lang/String; +MD: com/mojang/realmsclient/exception/RealmsServiceException/m_200945_ (I)I com/mojang/realmsclient/exception/RealmsServiceException/realmsErrorCodeOrDefault (I)I +MD: com/mojang/realmsclient/exception/RetryCallException/ (II)V com/mojang/realmsclient/exception/RetryCallException/ (II)V +MD: com/mojang/realmsclient/gui/ErrorCallback/m_5673_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/ErrorCallback/error (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/ErrorCallback/m_87791_ (Ljava/lang/String;)V com/mojang/realmsclient/gui/ErrorCallback/error (Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/RealmsDataFetcher/ (Lcom/mojang/realmsclient/client/RealmsClient;)V com/mojang/realmsclient/gui/RealmsDataFetcher/ (Lcom/mojang/realmsclient/client/RealmsClient;)V +MD: com/mojang/realmsclient/gui/RealmsDataFetcher/m_167339_ (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/util/List; com/mojang/realmsclient/gui/RealmsDataFetcher/lambda$new$0 (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/util/List; +MD: com/mojang/realmsclient/gui/RealmsNewsManager/ (Lcom/mojang/realmsclient/util/RealmsPersistence;)V com/mojang/realmsclient/gui/RealmsNewsManager/ (Lcom/mojang/realmsclient/util/RealmsPersistence;)V +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_239190_ (Lcom/mojang/realmsclient/dto/RealmsNews;)V com/mojang/realmsclient/gui/RealmsNewsManager/updateUnreadNews (Lcom/mojang/realmsclient/dto/RealmsNews;)V +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_239499_ ()Z com/mojang/realmsclient/gui/RealmsNewsManager/hasUnreadNews ()Z +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_240058_ ()Ljava/lang/String; com/mojang/realmsclient/gui/RealmsNewsManager/newsLink ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_240152_ (Lcom/mojang/realmsclient/dto/RealmsNews;)Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; com/mojang/realmsclient/gui/RealmsNewsManager/updateNewsStorage (Lcom/mojang/realmsclient/dto/RealmsNews;)Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +MD: com/mojang/realmsclient/gui/RealmsServerList/ (Lnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/gui/RealmsServerList/ (Lnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/gui/RealmsServerList/m_239868_ (Ljava/util/List;)Ljava/util/List; com/mojang/realmsclient/gui/RealmsServerList/updateServersList (Ljava/util/List;)Ljava/util/List; +MD: com/mojang/realmsclient/gui/RealmsServerList/m_240076_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Ljava/util/List; com/mojang/realmsclient/gui/RealmsServerList/removeItem (Lcom/mojang/realmsclient/dto/RealmsServer;)Ljava/util/List; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/ ()V com/mojang/realmsclient/gui/RealmsWorldSlotButton/ ()V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/ (IIIILjava/util/function/Supplier;Ljava/util/function/Consumer;ILnet/minecraft/client/gui/components/Button$OnPress;)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/ (IIIILjava/util/function/Supplier;Ljava/util/function/Consumer;ILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_280493_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/drawSlotFrame (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_280498_ (Lnet/minecraft/client/gui/GuiGraphics;II)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/renderCheckMark (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87937_ ()Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$State; com/mojang/realmsclient/gui/RealmsWorldSlotButton/getState ()Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$State; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87953_ (Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;)Lcom/mojang/datafixers/util/Pair; com/mojang/realmsclient/gui/RealmsWorldSlotButton/getTooltipAndNarration (Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;)Lcom/mojang/datafixers/util/Pair; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87959_ (Lcom/mojang/realmsclient/dto/RealmsServer;ZZ)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton/getAction (Lcom/mojang/realmsclient/dto/RealmsServer;ZZ)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87968_ ()V com/mojang/realmsclient/gui/RealmsWorldSlotButton/tick ()V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ ()V com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ ()V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ (Ljava/lang/String;I)V com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/m_167351_ ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/$values ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/values ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/values ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/ (ZLjava/lang/String;JLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/ (ZLjava/lang/String;JLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/RowButton/ (IIII)V com/mojang/realmsclient/gui/RowButton/ (IIII)V +MD: com/mojang/realmsclient/gui/RowButton/m_280516_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Lnet/minecraft/realms/RealmsObjectSelectionList;IIII)V com/mojang/realmsclient/gui/RowButton/drawButtonsInRow (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Lnet/minecraft/realms/RealmsObjectSelectionList;IIII)V +MD: com/mojang/realmsclient/gui/RowButton/m_7516_ (I)V com/mojang/realmsclient/gui/RowButton/onClick (I)V +MD: com/mojang/realmsclient/gui/RowButton/m_7537_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V com/mojang/realmsclient/gui/RowButton/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: com/mojang/realmsclient/gui/RowButton/m_88016_ ()I com/mojang/realmsclient/gui/RowButton/getRight ()I +MD: com/mojang/realmsclient/gui/RowButton/m_88018_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/RowButton/drawForRowAt (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/RowButton/m_88036_ (Lnet/minecraft/realms/RealmsObjectSelectionList;Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;Ljava/util/List;IDD)V com/mojang/realmsclient/gui/RowButton/rowButtonMouseClicked (Lnet/minecraft/realms/RealmsObjectSelectionList;Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;Ljava/util/List;IDD)V +MD: com/mojang/realmsclient/gui/RowButton/m_88043_ ()I com/mojang/realmsclient/gui/RowButton/getBottom ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_279671_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_287193_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_287274_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88067_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/checkForSpecificMetadata (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88073_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/gameDifficultyMetadata (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88075_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/gameModeMetadata (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Lnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Lnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/m_88083_ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/lambda$new$0 (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/m_287178_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/translateKey (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_167356_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_167358_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_167360_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_278623_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279672_ (Z)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$downloadClicked$5 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279673_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279674_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279675_ (Z)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$restoreClicked$4 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88166_ (I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/restoreClicked (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88178_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88184_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88204_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88205_ ()Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen/shouldChangesButtonBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88206_ ()Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen/shouldRestoreButtonBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88207_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/downloadClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88208_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/downloadWorldData ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88209_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/restore ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/m_279676_ (Ljava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/lambda$run$0 (Ljava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_5756_ ()I com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/getScrollbarPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_7109_ (I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/selectItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_88234_ (Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/addEntry (Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_88241_ (I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/selectInviteListItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278652_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/lambda$addChangesButton$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278673_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/lambda$addRestoreButton$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278718_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/addRestoreButton ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278753_ (Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/addToChangeList (Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278829_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/addChangesButton ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278830_ (Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/populateChangeList (Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_279677_ (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/lambda$render$2 (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_88275_ (Ljava/util/Date;)Ljava/lang/String; com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/getMediumDatePresentation (Ljava/util/Date;)Ljava/lang/String; +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;JZ)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;JZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_181317_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$9 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_181319_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$11 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279678_ (IZ)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$downloadWorld$12 (IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279679_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$8 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279680_ (J)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$fetchServerData$7 (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279681_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$1 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279682_ (IZ)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$3 (IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279683_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$6 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279684_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$5 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279685_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$10 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_280068_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;Z)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/drawSlotFrame (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_287011_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$4 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88300_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/doSwitchOrReset ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88301_ (I)I com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/getFramePositionX (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88313_ (J)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/fetchServerData (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88332_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88335_ (I)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/downloadWorld (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88345_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$2 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88350_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/addButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88351_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88352_ ()Z com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/isMinigame ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_231305_ ()[Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/getMessages ()[Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_279687_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ (Lcom/mojang/realmsclient/RealmsMainScreen;J)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ (Lcom/mojang/realmsclient/RealmsMainScreen;J)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167381_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$addSlotButton$11 ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167385_ (I)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton; com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/addSlotButton (I)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton; +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167387_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$addSlotButton$13 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167394_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/templateSelectionCallback (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167398_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$addSlotButton$12 (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167406_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_181330_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$fetchServerData$14 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279688_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$7 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279689_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToFullSlot$17 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279690_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279691_ (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToFullSlot$19 (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279692_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279693_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$20 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279694_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279695_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$8 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279696_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToFullSlot$18 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279697_ (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$23 (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279698_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279699_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$6 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279700_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$fetchServerData$15 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279701_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$22 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279702_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$21 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279703_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279704_ (J)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$fetchServerData$16 (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279705_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279706_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280084_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280267_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawOpen (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280544_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawClose (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280590_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawExpired (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280675_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawExpiring (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88413_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/stateChanged ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88420_ (ILcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchToFullSlot (ILcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88426_ (J)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/fetchServerData (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88438_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/joinRealm (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88444_ (Lcom/mojang/realmsclient/dto/RealmsWorldOptions;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/saveSlotSettings (Lcom/mojang/realmsclient/dto/RealmsWorldOptions;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88450_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/hide (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88452_ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/closeTheWorld (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88454_ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/saveSettings (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88459_ (ZLnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/openTheWorld (ZLnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88463_ (I)I com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/leftButton (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88465_ (II)I com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/centerButton (II)I +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88468_ (ILcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchToEmptySlot (ILcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88484_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/show (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88486_ ()Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen; com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/getNewScreen ()Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen; +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88487_ (I)I com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/frame (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88489_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawServerStatus (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88525_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88528_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/disableButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88533_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchToMinigame ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88534_ ()Z com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/isMinigame ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88535_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/hideRegularButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88536_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/hideMinigameButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_88558_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_88561_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279707_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$createWorld$4 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279708_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$createWorld$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279709_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$createWorld$3 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279710_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_5534_ (CI)Z com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/charTyped (CI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88591_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88595_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/createWorld ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88596_ ()Z com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/valid ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_167409_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/createProgressNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_279711_ (Z)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lambda$checkDownloadSize$1 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_280316_ (Lnet/minecraft/client/gui/GuiGraphics;J)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawDownloadSpeed0 (Lnet/minecraft/client/gui/GuiGraphics;J)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_280494_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawDots (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88641_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88646_ (Ljava/lang/String;)J com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/getContentLength (Ljava/lang/String;)J +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88648_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawProgressBar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88653_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawDownloadSpeed (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88655_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/checkDownloadSize ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88656_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88657_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadSave ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88658_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadCancelled ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88659_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lambda$downloadSave$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lcom/mojang/realmsclient/exception/RealmsServiceException;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lcom/mojang/realmsclient/exception/RealmsServiceException;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_279712_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_288196_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/errorMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_288216_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/errorMessage (Lcom/mojang/realmsclient/exception/RealmsServiceException;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_288225_ (Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/errorMessage (Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287787_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/detail ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287789_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/title ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/hashCode ()I com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/hashCode ()I +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/toString ()Ljava/lang/String; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_279713_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289579_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$static$1 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289580_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$onInvite$6 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289581_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$onInvite$5 (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289582_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289583_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$static$2 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289601_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/showMessage (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsInviteScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_88720_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_88724_ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/onInvite ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88745_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88748_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88750_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ ()V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;I)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/m_167412_ ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/$values ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/values ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/values ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/util/task/LongRunningTask;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/util/task/LongRunningTask;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_279714_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lambda$error$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_5673_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/error (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88779_ ()Z com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/aborted ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88789_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lambda$error$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88794_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88796_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/setTitle (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88799_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/cancelOrBackButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_238944_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNewsAndInvitesSubscriptions$2 (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_239493_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNewsAndInvitesSubscriptions$1 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_239520_ (Ljava/lang/Integer;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNewsAndInvitesSubscriptions$0 (Ljava/lang/Integer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_273962_ (Ljava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNotificationsSubscriptions$3 (Ljava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274333_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/added ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274584_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/addNewsAndInvitesSubscriptions (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274585_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/addNotificationsSubscriptions (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274595_ ()Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/getConfiguration ()Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_280451_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/drawIcons (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88848_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/getRealmsNotificationsEnabled ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88849_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/inTitleScreen ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88850_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/checkIfMcoEnabled ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/m_274316_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/m_274328_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/showOldNotifications ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/m_274316_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/m_274328_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/showOldNotifications ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/m_274316_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/m_274328_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/showOldNotifications ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_279715_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_88870_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_88872_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167417_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167419_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167421_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167423_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$400 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167425_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$500 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_279716_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_280517_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88892_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/updateList (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88908_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88919_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88922_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/reject (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88932_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/accept (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88939_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88957_ ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88962_ (I)Z com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/shouldAcceptAndRejectButtonBeVisible (I)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/m_88968_ (Lcom/mojang/realmsclient/dto/PendingInvite;)Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/lambda$run$0 (Lcom/mojang/realmsclient/dto/PendingInvite;)Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/m_88970_ (Ljava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/lambda$run$1 (Ljava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/m_88979_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/lambda$run$0 (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/run ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/m_88988_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/lambda$run$0 (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/run ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Lcom/mojang/realmsclient/dto/PendingInvite;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Lcom/mojang/realmsclient/dto/PendingInvite;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_280468_ (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/PendingInvite;IIII)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/renderPendingInvitationItem (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/PendingInvite;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/m_7516_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/onClick (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/m_7537_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/m_7516_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/onClick (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/m_7537_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_7109_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/selectItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_89057_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/removeAtIndex (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_89060_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/selectInviteListItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_167429_ (I)I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$000 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_167431_ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_278515_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_278516_ (Lcom/mojang/realmsclient/dto/PlayerInfo;Z)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$uninvite$4 (Lcom/mojang/realmsclient/dto/PlayerInfo;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_278517_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_279717_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89091_ (I)I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$100 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89107_ (Lcom/mojang/realmsclient/dto/Ops;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/updateOps (Lcom/mojang/realmsclient/dto/Ops;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89121_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89124_ (I)I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$200 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89188_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89189_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89190_ (I)Z com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/shouldRemoveAndOpdeopButtonBeVisible (I)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89192_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/op (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89194_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/deop (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89196_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/uninvite (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;Lcom/mojang/realmsclient/dto/PlayerInfo;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;Lcom/mojang/realmsclient/dto/PlayerInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278685_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$new$2 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278710_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$new$0 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278731_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$new$1 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278747_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/updateButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_279718_ (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$render$3 (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_278791_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/updateButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_5756_ ()I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/getScrollbarPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_7109_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/selectItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_89243_ (Lcom/mojang/realmsclient/dto/PlayerInfo;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/addEntry (Lcom/mojang/realmsclient/dto/PlayerInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_89250_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/selectInviteListItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_167440_ (Lnet/minecraft/client/gui/components/CycleButton;Lcom/mojang/realmsclient/util/LevelType;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/CycleButton;Lcom/mojang/realmsclient/util/LevelType;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_167443_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_7379_ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/onClose ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_89287_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_89290_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/Runnable;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167453_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/templateSelectionCallback (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167455_ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/generationSelectionCallback (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167457_ (Lcom/mojang/realmsclient/util/task/LongRunningTask;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/startTask (Lcom/mojang/realmsclient/util/task/LongRunningTask;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167464_ (Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/resetWorld (Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_181336_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$templateSelectionCallback$8 (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_181338_ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$generationSelectionCallback$9 (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279719_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279720_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279721_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279722_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279723_ (Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$switchSlot$7 (Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279724_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279725_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279726_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_280014_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;ZZ)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/drawFrame (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89343_ (I)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/setSlot (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89366_ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89382_ (Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/switchSlot (Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89389_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/setResetTitle (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89392_ (I)I com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/frame (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/m_89426_ (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/lambda$run$0 (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_167466_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_167469_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_167471_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_193516_ (Lnet/minecraft/world/level/storage/LevelSummary;)Z com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$loadLevelList$1 (Lnet/minecraft/world/level/storage/LevelSummary;)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_231306_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_263854_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_279727_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89503_ (I)I com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$000 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89534_ (Lnet/minecraft/world/level/storage/LevelSummary;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/gameModeName (Lnet/minecraft/world/level/storage/LevelSummary;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89538_ (Lnet/minecraft/world/level/storage/LevelSummary;)Ljava/lang/String; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/formatLastPlayed (Lnet/minecraft/world/level/storage/LevelSummary;)Ljava/lang/String; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89551_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/loadLevelList ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89552_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/upload ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;Lnet/minecraft/world/level/storage/LevelSummary;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;Lnet/minecraft/world/level/storage/LevelSummary;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_280233_ (Lnet/minecraft/client/gui/GuiGraphics;III)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/renderItem (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_89587_ (Lnet/minecraft/world/level/storage/LevelSummary;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/addEntry (Lnet/minecraft/world/level/storage/LevelSummary;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167489_ (I)I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$100 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167491_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167495_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167497_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167499_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$400 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167501_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$500 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167503_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$600 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167505_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$700 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_279728_ (Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$renderMultilineMessage$4 (Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_280015_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_280418_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/renderMultilineMessage (Lnet/minecraft/client/gui/GuiGraphics;IILjava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_7379_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/onClose ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89653_ (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/fetchTemplatesAsync (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89655_ (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/client/RealmsClient;)Lcom/mojang/datafixers/util/Either; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/fetchTemplates (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/client/RealmsClient;)Lcom/mojang/datafixers/util/Either; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89678_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89682_ ([Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/setWarning ([Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89690_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89695_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89700_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89718_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89721_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/shouldSelectButtonBeActive ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89724_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/shouldPublisherBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89727_ ()Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/getSelectedTemplate ()Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89730_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/shouldTrailerBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89736_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/selectTemplate ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89737_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/hasValidTemplate ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89738_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/onTrailer ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89739_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/onPublish ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/m_89746_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/lambda$run$0 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_280395_ (Lnet/minecraft/client/gui/GuiGraphics;IIIILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/drawIcons (Lnet/minecraft/client/gui/GuiGraphics;IIIILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_280486_ (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/WorldTemplate;IIII)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/renderWorldTemplateItem (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/WorldTemplate;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_280563_ (Lnet/minecraft/client/gui/GuiGraphics;IIIILcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/drawImage (Lnet/minecraft/client/gui/GuiGraphics;IIIILcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/Iterable;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/Iterable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89804_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/addEntry (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89811_ (I)Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/get (I)Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89813_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/lambda$getTemplates$0 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89817_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/isEmpty ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89818_ ()Ljava/util/List; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/getTemplates ()Ljava/util/List; +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_279729_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_279730_ (Z)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$2 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_287012_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_89831_ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/save ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_89846_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsWorldOptions;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;I)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsWorldOptions;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167514_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167517_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167521_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167524_ (Ljava/util/List;II)Ljava/lang/Object; com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/findByIndex (Ljava/util/List;II)Ljava/lang/Object; +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167528_ (Ljava/util/List;Ljava/lang/Object;I)I com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/findIndex (Ljava/util/List;Ljava/lang/Object;I)I +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167533_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167545_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231311_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$5 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231313_ (Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/setWorldName (Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231323_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/components/CycleButton$OnValueChange; com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/confirmDangerousOption (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/components/CycleButton$OnValueChange; +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231326_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$3 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231328_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$2 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_279732_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$confirmDangerousOption$11 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_279733_ (Ljava/util/function/Consumer;Z)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$confirmDangerousOption$10 (Ljava/util/function/Consumer;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_279734_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_89909_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_89940_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/saveSettings ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/ (Lcom/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen;IIIIFF)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/ (Lcom/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen;IIIIFF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_5695_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/updateMessage ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_5697_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/applyValue ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_5716_ (DD)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/onClick (DD)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_7691_ (DD)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/onRelease (DD)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_167549_ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_167552_ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_182538_ (J)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/localPresentation (J)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_279736_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_279737_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_287013_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_89983_ (I)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/daysLeftPresentation (I)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_89989_ (J)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/getSubscription (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_90011_ (Z)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/deleteRealm (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/m_90020_ ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/lambda$run$0 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsTermsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_279738_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsTermsScreen/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsTermsScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_90053_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_90056_ ()V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/agreedToTos ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Lnet/minecraft/world/level/storage/LevelSummary;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Lnet/minecraft/world/level/storage/LevelSummary;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_167555_ (JLcom/mojang/realmsclient/gui/screens/UploadResult;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$upload$3 (JLcom/mojang/realmsclient/gui/screens/UploadResult;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_167558_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsUploadScreen/createProgressNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_279739_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$init$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_280334_ (Lnet/minecraft/client/gui/GuiGraphics;J)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawUploadSpeed0 (Lnet/minecraft/client/gui/GuiGraphics;J)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_280401_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawDots (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsUploadScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90103_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90105_ (Ljava/io/File;)Z com/mojang/realmsclient/gui/screens/RealmsUploadScreen/verify (Ljava/io/File;)Z +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90107_ (Lorg/apache/commons/compress/archivers/tar/TarArchiveOutputStream;Ljava/lang/String;Ljava/lang/String;Z)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/addFileToTarGz (Lorg/apache/commons/compress/archivers/tar/TarArchiveOutputStream;Ljava/lang/String;Ljava/lang/String;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90112_ ([Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/setErrorMessage ([Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90117_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90119_ (Ljava/io/File;)Ljava/io/File; com/mojang/realmsclient/gui/screens/RealmsUploadScreen/tarGzipArchive (Ljava/io/File;)Ljava/io/File; +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90121_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawProgressBar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90124_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawUploadSpeed (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90127_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/onBack ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90128_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/onCancel ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90129_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/upload ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90130_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadCancelled ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90131_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$upload$4 ()V +MD: com/mojang/realmsclient/gui/screens/UploadResult/ (ILjava/lang/String;)V com/mojang/realmsclient/gui/screens/UploadResult/ (ILjava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/ ()V com/mojang/realmsclient/gui/screens/UploadResult$Builder/ ()V +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/m_90145_ ()Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/gui/screens/UploadResult$Builder/build ()Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/m_90146_ (I)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; com/mojang/realmsclient/gui/screens/UploadResult$Builder/withStatusCode (I)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/m_90148_ (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; com/mojang/realmsclient/gui/screens/UploadResult$Builder/withErrorMessage (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; +MD: com/mojang/realmsclient/gui/task/DataFetcher/ ()V com/mojang/realmsclient/gui/task/DataFetcher/ ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/TimeUnit;Lnet/minecraft/util/TimeSource;)V com/mojang/realmsclient/gui/task/DataFetcher/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/TimeUnit;Lnet/minecraft/util/TimeSource;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher/m_239139_ ()Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/task/DataFetcher/createSubscription ()Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/task/DataFetcher/m_239622_ (Ljava/lang/String;Ljava/util/concurrent/Callable;Ljava/time/Duration;Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Task; com/mojang/realmsclient/gui/task/DataFetcher/createTask (Ljava/lang/String;Ljava/util/concurrent/Callable;Ljava/time/Duration;Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Task; +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/ (Lcom/mojang/datafixers/util/Either;J)V com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/ (Lcom/mojang/datafixers/util/Either;J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238664_ ()J com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/time ()J +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238822_ ()Lcom/mojang/datafixers/util/Either; com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/value ()Lcom/mojang/datafixers/util/Either; +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/hashCode ()I com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/hashCode ()I +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/toString ()Ljava/lang/String; com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_239225_ (J)V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/update (J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_239278_ ()V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/reset ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_240045_ ()V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/runCallbackIfNeeded ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_240119_ ()V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/runCallback ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;)V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_239355_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/tick ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_239441_ (Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/subscribe (Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_240009_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/forceUpdate ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_240120_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/reset ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/ (Ljava/lang/Object;J)V com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/ (Ljava/lang/Object;J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238529_ ()Ljava/lang/Object; com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/value ()Ljava/lang/Object; +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238539_ ()J com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/time ()J +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/hashCode ()I com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/hashCode ()I +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/toString ()Ljava/lang/String; com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Ljava/lang/String;Ljava/util/concurrent/Callable;JLcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)V com/mojang/realmsclient/gui/task/DataFetcher$Task/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Ljava/lang/String;Ljava/util/concurrent/Callable;JLcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239279_ (JLjava/lang/Exception;)V com/mojang/realmsclient/gui/task/DataFetcher$Task/lambda$updateIfNeeded$1 (JLjava/lang/Exception;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239554_ ()Lcom/mojang/realmsclient/gui/task/DataFetcher$ComputationResult; com/mojang/realmsclient/gui/task/DataFetcher$Task/lambda$updateIfNeeded$2 ()Lcom/mojang/realmsclient/gui/task/DataFetcher$ComputationResult; +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239689_ (JLjava/lang/Object;)V com/mojang/realmsclient/gui/task/DataFetcher$Task/lambda$updateIfNeeded$0 (JLjava/lang/Object;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239709_ (J)V com/mojang/realmsclient/gui/task/DataFetcher$Task/updateIfNeeded (J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239964_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Task/reset ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/ ()V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/ ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/m_239029_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/delayCyclesAfterSuccess ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/m_239153_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/delayCyclesAfterFailure ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/m_239255_ (I)Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy; com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/exponentialBackoff (I)Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy; +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/ ()V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/ ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/m_239029_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/delayCyclesAfterSuccess ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/m_239153_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/delayCyclesAfterFailure ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ ()V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ (I)V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ (I)V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/m_239029_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/delayCyclesAfterSuccess ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/m_239153_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/delayCyclesAfterFailure ()J +MD: com/mojang/realmsclient/util/JsonUtils/ ()V com/mojang/realmsclient/util/JsonUtils/ ()V +MD: com/mojang/realmsclient/util/JsonUtils/m_274305_ (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/lang/String; com/mojang/realmsclient/util/JsonUtils/getRequiredString (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: com/mojang/realmsclient/util/JsonUtils/m_274562_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/UUID;)Ljava/util/UUID; com/mojang/realmsclient/util/JsonUtils/getUuidOr (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/UUID;)Ljava/util/UUID; +MD: com/mojang/realmsclient/util/JsonUtils/m_274579_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/function/Function;)Ljava/lang/Object; com/mojang/realmsclient/util/JsonUtils/getRequired (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/function/Function;)Ljava/lang/Object; +MD: com/mojang/realmsclient/util/JsonUtils/m_90150_ (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/util/Date; com/mojang/realmsclient/util/JsonUtils/getDateOr (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/util/Date; +MD: com/mojang/realmsclient/util/JsonUtils/m_90153_ (Ljava/lang/String;Lcom/google/gson/JsonObject;I)I com/mojang/realmsclient/util/JsonUtils/getIntOr (Ljava/lang/String;Lcom/google/gson/JsonObject;I)I +MD: com/mojang/realmsclient/util/JsonUtils/m_90157_ (Ljava/lang/String;Lcom/google/gson/JsonObject;J)J com/mojang/realmsclient/util/JsonUtils/getLongOr (Ljava/lang/String;Lcom/google/gson/JsonObject;J)J +MD: com/mojang/realmsclient/util/JsonUtils/m_90161_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/util/JsonUtils/getStringOr (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/util/JsonUtils/m_90165_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Z)Z com/mojang/realmsclient/util/JsonUtils/getBooleanOr (Ljava/lang/String;Lcom/google/gson/JsonObject;Z)Z +MD: com/mojang/realmsclient/util/LevelType/ ()V com/mojang/realmsclient/util/LevelType/ ()V +MD: com/mojang/realmsclient/util/LevelType/ (Ljava/lang/String;IILnet/minecraft/resources/ResourceKey;)V com/mojang/realmsclient/util/LevelType/ (Ljava/lang/String;IILnet/minecraft/resources/ResourceKey;)V +MD: com/mojang/realmsclient/util/LevelType/m_167607_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/util/LevelType/getName ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/util/LevelType/m_167608_ ()I com/mojang/realmsclient/util/LevelType/getDtoIndex ()I +MD: com/mojang/realmsclient/util/LevelType/m_167609_ ()[Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/LevelType/$values ()[Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/LevelType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/LevelType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/LevelType/values ()[Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/LevelType/values ()[Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/RealmsPersistence/ ()V com/mojang/realmsclient/util/RealmsPersistence/ ()V +MD: com/mojang/realmsclient/util/RealmsPersistence/ ()V com/mojang/realmsclient/util/RealmsPersistence/ ()V +MD: com/mojang/realmsclient/util/RealmsPersistence/m_167615_ ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; com/mojang/realmsclient/util/RealmsPersistence/read ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +MD: com/mojang/realmsclient/util/RealmsPersistence/m_167616_ (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V com/mojang/realmsclient/util/RealmsPersistence/save (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V +MD: com/mojang/realmsclient/util/RealmsPersistence/m_90171_ ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; com/mojang/realmsclient/util/RealmsPersistence/readFile ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +MD: com/mojang/realmsclient/util/RealmsPersistence/m_90172_ (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V com/mojang/realmsclient/util/RealmsPersistence/writeFile (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V +MD: com/mojang/realmsclient/util/RealmsPersistence/m_90174_ ()Ljava/nio/file/Path; com/mojang/realmsclient/util/RealmsPersistence/getPathToData ()Ljava/nio/file/Path; +MD: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/ ()V com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/ ()V +MD: com/mojang/realmsclient/util/RealmsTextureManager/ ()V com/mojang/realmsclient/util/RealmsTextureManager/ ()V +MD: com/mojang/realmsclient/util/RealmsTextureManager/ ()V com/mojang/realmsclient/util/RealmsTextureManager/ ()V +MD: com/mojang/realmsclient/util/RealmsTextureManager/m_269309_ (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/realmsclient/util/RealmsTextureManager/loadImage (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/realmsclient/util/RealmsTextureManager/m_269474_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; com/mojang/realmsclient/util/RealmsTextureManager/worldTemplate (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: com/mojang/realmsclient/util/RealmsTextureManager/m_90196_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; com/mojang/realmsclient/util/RealmsTextureManager/getTexture (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90205_ ()Ljava/lang/String; com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/image ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90206_ ()Lnet/minecraft/resources/ResourceLocation; com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/textureId ()Lnet/minecraft/resources/ResourceLocation; +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/hashCode ()I com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/hashCode ()I +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/toString ()Ljava/lang/String; com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/RealmsUtil/ ()V com/mojang/realmsclient/util/RealmsUtil/ ()V +MD: com/mojang/realmsclient/util/RealmsUtil/ ()V com/mojang/realmsclient/util/RealmsUtil/ ()V +MD: com/mojang/realmsclient/util/RealmsUtil/m_269239_ (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; com/mojang/realmsclient/util/RealmsUtil/getGameProfile (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; +MD: com/mojang/realmsclient/util/RealmsUtil/m_280319_ (Lnet/minecraft/client/gui/GuiGraphics;IIILjava/lang/String;)V com/mojang/realmsclient/util/RealmsUtil/renderPlayerFace (Lnet/minecraft/client/gui/GuiGraphics;IIILjava/lang/String;)V +MD: com/mojang/realmsclient/util/RealmsUtil/m_287183_ (J)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/util/RealmsUtil/convertToAgePresentation (J)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/util/RealmsUtil/m_287255_ (Ljava/util/Date;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/util/RealmsUtil/convertToAgePresentationFromInstant (Ljava/util/Date;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/util/RealmsUtil/m_90221_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/util/RealmsUtil/uuidToName (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/util/RealmsUtil$1/ ()V com/mojang/realmsclient/util/RealmsUtil$1/ ()V +MD: com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; +MD: com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/Object;)Ljava/lang/Object; com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: com/mojang/realmsclient/util/TextRenderingUtils/ ()V com/mojang/realmsclient/util/TextRenderingUtils/ ()V +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90248_ (Ljava/lang/String;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/lineBreak (Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90250_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/split (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90253_ (Ljava/lang/String;Ljava/util/List;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/decompose (Ljava/lang/String;Ljava/util/List;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90256_ (Ljava/lang/String;[Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/decompose (Ljava/lang/String;[Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90259_ (Ljava/util/List;Ljava/util/List;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/insertLinks (Ljava/util/List;Ljava/util/List;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/ ([Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)V com/mojang/realmsclient/util/TextRenderingUtils$Line/ ([Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/ (Ljava/util/List;)V com/mojang/realmsclient/util/TextRenderingUtils$Line/ (Ljava/util/List;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/util/TextRenderingUtils$Line/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/hashCode ()I com/mojang/realmsclient/util/TextRenderingUtils$Line/hashCode ()I +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/toString ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$Line/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;)V com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/hashCode ()I com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/hashCode ()I +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90278_ ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/renderedText ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90279_ (Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/text (Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90281_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/link (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90284_ ()Z com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/isLink ()Z +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90285_ ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/getLinkUrl ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/toString ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/UploadTokenCache/ ()V com/mojang/realmsclient/util/UploadTokenCache/ ()V +MD: com/mojang/realmsclient/util/UploadTokenCache/ ()V com/mojang/realmsclient/util/UploadTokenCache/ ()V +MD: com/mojang/realmsclient/util/UploadTokenCache/m_90292_ (J)Ljava/lang/String; com/mojang/realmsclient/util/UploadTokenCache/get (J)Ljava/lang/String; +MD: com/mojang/realmsclient/util/UploadTokenCache/m_90294_ (JLjava/lang/String;)V com/mojang/realmsclient/util/UploadTokenCache/put (JLjava/lang/String;)V +MD: com/mojang/realmsclient/util/UploadTokenCache/m_90297_ (J)V com/mojang/realmsclient/util/UploadTokenCache/invalidate (J)V +MD: com/mojang/realmsclient/util/WorldGenerationInfo/ (Ljava/lang/String;Lcom/mojang/realmsclient/util/LevelType;Z)V com/mojang/realmsclient/util/WorldGenerationInfo/ (Ljava/lang/String;Lcom/mojang/realmsclient/util/LevelType;Z)V +MD: com/mojang/realmsclient/util/WorldGenerationInfo/m_167634_ ()Ljava/lang/String; com/mojang/realmsclient/util/WorldGenerationInfo/getSeed ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/WorldGenerationInfo/m_167635_ ()Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/WorldGenerationInfo/getLevelType ()Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/WorldGenerationInfo/m_167636_ ()Z com/mojang/realmsclient/util/WorldGenerationInfo/shouldGenerateStructures ()Z +MD: com/mojang/realmsclient/util/task/CloseServerTask/ ()V com/mojang/realmsclient/util/task/CloseServerTask/ ()V +MD: com/mojang/realmsclient/util/task/CloseServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V com/mojang/realmsclient/util/task/CloseServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V +MD: com/mojang/realmsclient/util/task/CloseServerTask/run ()V com/mojang/realmsclient/util/task/CloseServerTask/run ()V +MD: com/mojang/realmsclient/util/task/ConnectTask/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V com/mojang/realmsclient/util/task/ConnectTask/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V +MD: com/mojang/realmsclient/util/task/ConnectTask/m_5519_ ()V com/mojang/realmsclient/util/task/ConnectTask/tick ()V +MD: com/mojang/realmsclient/util/task/ConnectTask/m_5520_ ()V com/mojang/realmsclient/util/task/ConnectTask/abortTask ()V +MD: com/mojang/realmsclient/util/task/ConnectTask/run ()V com/mojang/realmsclient/util/task/ConnectTask/run ()V +MD: com/mojang/realmsclient/util/task/DownloadTask/ ()V com/mojang/realmsclient/util/task/DownloadTask/ ()V +MD: com/mojang/realmsclient/util/task/DownloadTask/ (JILjava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/DownloadTask/ (JILjava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/DownloadTask/m_90324_ (Z)V com/mojang/realmsclient/util/task/DownloadTask/lambda$run$0 (Z)V +MD: com/mojang/realmsclient/util/task/DownloadTask/run ()V com/mojang/realmsclient/util/task/DownloadTask/run ()V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/ ()V com/mojang/realmsclient/util/task/GetServerDetailsTask/ ()V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/util/concurrent/locks/ReentrantLock;)V com/mojang/realmsclient/util/task/GetServerDetailsTask/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/util/concurrent/locks/ReentrantLock;)V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167637_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen; com/mojang/realmsclient/util/task/GetServerDetailsTask/connectScreen (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167639_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen; com/mojang/realmsclient/util/task/GetServerDetailsTask/resourcePackDownloadConfirmationScreen (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167642_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;Z)V com/mojang/realmsclient/util/task/GetServerDetailsTask/lambda$resourcePackDownloadConfirmationScreen$2 (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;Z)V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167648_ (Ljava/util/function/Function;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V com/mojang/realmsclient/util/task/GetServerDetailsTask/lambda$resourcePackDownloadConfirmationScreen$0 (Ljava/util/function/Function;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167651_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Ljava/util/concurrent/CompletableFuture; com/mojang/realmsclient/util/task/GetServerDetailsTask/scheduleResourcePackDownload (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Ljava/util/concurrent/CompletableFuture; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167653_ ()Lcom/mojang/realmsclient/dto/RealmsServerAddress; com/mojang/realmsclient/util/task/GetServerDetailsTask/fetchServerAddress ()Lcom/mojang/realmsclient/dto/RealmsServerAddress; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_287014_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/lang/Throwable;)Ljava/lang/Void; com/mojang/realmsclient/util/task/GetServerDetailsTask/lambda$resourcePackDownloadConfirmationScreen$1 (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/run ()V com/mojang/realmsclient/util/task/GetServerDetailsTask/run ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/ ()V com/mojang/realmsclient/util/task/LongRunningTask/ ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/ ()V com/mojang/realmsclient/util/task/LongRunningTask/ ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_167655_ (J)V com/mojang/realmsclient/util/task/LongRunningTask/pause (J)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_5519_ ()V com/mojang/realmsclient/util/task/LongRunningTask/tick ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_5520_ ()V com/mojang/realmsclient/util/task/LongRunningTask/abortTask ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_5673_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/util/task/LongRunningTask/error (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90400_ (Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen;)V com/mojang/realmsclient/util/task/LongRunningTask/setScreen (Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90402_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/LongRunningTask/lambda$setScreen$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90405_ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/LongRunningTask/setScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90409_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/util/task/LongRunningTask/setTitle (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90411_ ()Z com/mojang/realmsclient/util/task/LongRunningTask/aborted ()Z +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90412_ ()V com/mojang/realmsclient/util/task/LongRunningTask/init ()V +MD: com/mojang/realmsclient/util/task/OpenServerTask/ ()V com/mojang/realmsclient/util/task/OpenServerTask/ ()V +MD: com/mojang/realmsclient/util/task/OpenServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;ZLnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/util/task/OpenServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;ZLnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/util/task/OpenServerTask/m_181349_ ()V com/mojang/realmsclient/util/task/OpenServerTask/lambda$run$0 ()V +MD: com/mojang/realmsclient/util/task/OpenServerTask/run ()V com/mojang/realmsclient/util/task/OpenServerTask/run ()V +MD: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/m_142381_ (Lcom/mojang/realmsclient/client/RealmsClient;J)V com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/sendResetRequest (Lcom/mojang/realmsclient/client/RealmsClient;J)V +MD: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/ (Lcom/mojang/realmsclient/dto/WorldTemplate;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/ (Lcom/mojang/realmsclient/dto/WorldTemplate;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/m_142381_ (Lcom/mojang/realmsclient/client/RealmsClient;J)V com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/sendResetRequest (Lcom/mojang/realmsclient/client/RealmsClient;J)V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/ ()V com/mojang/realmsclient/util/task/ResettingWorldTask/ ()V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/ (JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V com/mojang/realmsclient/util/task/ResettingWorldTask/ (JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/m_142381_ (Lcom/mojang/realmsclient/client/RealmsClient;J)V com/mojang/realmsclient/util/task/ResettingWorldTask/sendResetRequest (Lcom/mojang/realmsclient/client/RealmsClient;J)V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/run ()V com/mojang/realmsclient/util/task/ResettingWorldTask/run ()V +MD: com/mojang/realmsclient/util/task/RestoreTask/ ()V com/mojang/realmsclient/util/task/RestoreTask/ ()V +MD: com/mojang/realmsclient/util/task/RestoreTask/ (Lcom/mojang/realmsclient/dto/Backup;JLcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V com/mojang/realmsclient/util/task/RestoreTask/ (Lcom/mojang/realmsclient/dto/Backup;JLcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V +MD: com/mojang/realmsclient/util/task/RestoreTask/run ()V com/mojang/realmsclient/util/task/RestoreTask/run ()V +MD: com/mojang/realmsclient/util/task/SwitchMinigameTask/ ()V com/mojang/realmsclient/util/task/SwitchMinigameTask/ ()V +MD: com/mojang/realmsclient/util/task/SwitchMinigameTask/ (JLcom/mojang/realmsclient/dto/WorldTemplate;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V com/mojang/realmsclient/util/task/SwitchMinigameTask/ (JLcom/mojang/realmsclient/dto/WorldTemplate;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V +MD: com/mojang/realmsclient/util/task/SwitchMinigameTask/run ()V com/mojang/realmsclient/util/task/SwitchMinigameTask/run ()V +MD: com/mojang/realmsclient/util/task/SwitchSlotTask/ ()V com/mojang/realmsclient/util/task/SwitchSlotTask/ ()V +MD: com/mojang/realmsclient/util/task/SwitchSlotTask/ (JILjava/lang/Runnable;)V com/mojang/realmsclient/util/task/SwitchSlotTask/ (JILjava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/SwitchSlotTask/run ()V com/mojang/realmsclient/util/task/SwitchSlotTask/run ()V +MD: com/mojang/realmsclient/util/task/WorldCreationTask/ ()V com/mojang/realmsclient/util/task/WorldCreationTask/ ()V +MD: com/mojang/realmsclient/util/task/WorldCreationTask/ (JLjava/lang/String;Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/WorldCreationTask/ (JLjava/lang/String;Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/WorldCreationTask/run ()V com/mojang/realmsclient/util/task/WorldCreationTask/run ()V +MD: net/minecraft/BlockUtil/ ()V net/minecraft/BlockUtil/ ()V +MD: net/minecraft/BlockUtil/m_124334_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;ILnet/minecraft/core/Direction$Axis;ILjava/util/function/Predicate;)Lnet/minecraft/BlockUtil$FoundRectangle; net/minecraft/BlockUtil/getLargestRectangleAround (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;ILnet/minecraft/core/Direction$Axis;ILjava/util/function/Predicate;)Lnet/minecraft/BlockUtil$FoundRectangle; +MD: net/minecraft/BlockUtil/m_124341_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)I net/minecraft/BlockUtil/getLimit (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)I +MD: net/minecraft/BlockUtil/m_124346_ ([I)Lcom/mojang/datafixers/util/Pair; net/minecraft/BlockUtil/getMaxRectangleLocation ([I)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/BlockUtil/m_177845_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/BlockUtil/getTopConnectedBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/BlockUtil$FoundRectangle/ (Lnet/minecraft/core/BlockPos;II)V net/minecraft/BlockUtil$FoundRectangle/ (Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/BlockUtil$IntBounds/ (II)V net/minecraft/BlockUtil$IntBounds/ (II)V +MD: net/minecraft/BlockUtil$IntBounds/toString ()Ljava/lang/String; net/minecraft/BlockUtil$IntBounds/toString ()Ljava/lang/String; +MD: net/minecraft/CharPredicate/m_125854_ (C)Z net/minecraft/CharPredicate/test (C)Z +MD: net/minecraft/CharPredicate/m_178283_ ()Lnet/minecraft/CharPredicate; net/minecraft/CharPredicate/negate ()Lnet/minecraft/CharPredicate; +MD: net/minecraft/CharPredicate/m_178284_ (C)Z net/minecraft/CharPredicate/lambda$negate$1 (C)Z +MD: net/minecraft/CharPredicate/m_178286_ (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; net/minecraft/CharPredicate/and (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; +MD: net/minecraft/CharPredicate/m_178288_ (Lnet/minecraft/CharPredicate;C)Z net/minecraft/CharPredicate/lambda$or$2 (Lnet/minecraft/CharPredicate;C)Z +MD: net/minecraft/CharPredicate/m_178291_ (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; net/minecraft/CharPredicate/or (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; +MD: net/minecraft/CharPredicate/m_178293_ (Lnet/minecraft/CharPredicate;C)Z net/minecraft/CharPredicate/lambda$and$0 (Lnet/minecraft/CharPredicate;C)Z +MD: net/minecraft/ChatFormatting/ ()V net/minecraft/ChatFormatting/ ()V +MD: net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CILjava/lang/Integer;)V net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CILjava/lang/Integer;)V +MD: net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZ)V net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZ)V +MD: net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZILjava/lang/Integer;)V net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZILjava/lang/Integer;)V +MD: net/minecraft/ChatFormatting/m_126645_ (C)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/getByCode (C)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126647_ (I)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/getById (I)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126649_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/ChatFormatting/stripFormatting (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_126651_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/lambda$static$1 (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126653_ (ZZ)Ljava/util/Collection; net/minecraft/ChatFormatting/getNames (ZZ)Ljava/util/Collection; +MD: net/minecraft/ChatFormatting/m_126656_ ()I net/minecraft/ChatFormatting/getId ()I +MD: net/minecraft/ChatFormatting/m_126657_ (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/getByName (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126659_ (Lnet/minecraft/ChatFormatting;)Ljava/lang/String; net/minecraft/ChatFormatting/lambda$static$0 (Lnet/minecraft/ChatFormatting;)Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_126661_ ()Z net/minecraft/ChatFormatting/isFormat ()Z +MD: net/minecraft/ChatFormatting/m_126662_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/ChatFormatting/cleanName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_126664_ ()Z net/minecraft/ChatFormatting/isColor ()Z +MD: net/minecraft/ChatFormatting/m_126665_ ()Ljava/lang/Integer; net/minecraft/ChatFormatting/getColor ()Ljava/lang/Integer; +MD: net/minecraft/ChatFormatting/m_126666_ ()Ljava/lang/String; net/minecraft/ChatFormatting/getName ()Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_178510_ ()C net/minecraft/ChatFormatting/getChar ()C +MD: net/minecraft/ChatFormatting/m_178511_ ()[Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/$values ()[Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_7912_ ()Ljava/lang/String; net/minecraft/ChatFormatting/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/ChatFormatting/toString ()Ljava/lang/String; net/minecraft/ChatFormatting/toString ()Ljava/lang/String; +MD: net/minecraft/ChatFormatting/valueOf (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/valueOf (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/values ()[Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/values ()[Lnet/minecraft/ChatFormatting; +MD: net/minecraft/CrashReport/ ()V net/minecraft/CrashReport/ ()V +MD: net/minecraft/CrashReport/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/CrashReport/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/CrashReport/m_127511_ ()Ljava/lang/String; net/minecraft/CrashReport/getTitle ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_127512_ (Ljava/io/File;)Z net/minecraft/CrashReport/saveToFile (Ljava/io/File;)Z +MD: net/minecraft/CrashReport/m_127514_ (Ljava/lang/String;)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReport/addCategory (Ljava/lang/String;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReport/m_127516_ (Ljava/lang/String;I)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReport/addCategory (Ljava/lang/String;I)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReport/m_127519_ (Ljava/lang/StringBuilder;)V net/minecraft/CrashReport/getDetails (Ljava/lang/StringBuilder;)V +MD: net/minecraft/CrashReport/m_127521_ (Ljava/lang/Throwable;Ljava/lang/String;)Lnet/minecraft/CrashReport; net/minecraft/CrashReport/forThrowable (Ljava/lang/Throwable;Ljava/lang/String;)Lnet/minecraft/CrashReport; +MD: net/minecraft/CrashReport/m_127524_ ()Ljava/lang/Throwable; net/minecraft/CrashReport/getException ()Ljava/lang/Throwable; +MD: net/minecraft/CrashReport/m_127525_ ()Ljava/lang/String; net/minecraft/CrashReport/getExceptionMessage ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_127526_ ()Ljava/lang/String; net/minecraft/CrashReport/getFriendlyReport ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_127527_ ()Ljava/io/File; net/minecraft/CrashReport/getSaveFile ()Ljava/io/File; +MD: net/minecraft/CrashReport/m_127529_ ()V net/minecraft/CrashReport/preload ()V +MD: net/minecraft/CrashReport/m_127531_ ()Ljava/lang/String; net/minecraft/CrashReport/getErrorComment ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_178625_ ()Ljava/lang/String; net/minecraft/CrashReport/getDetails ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_178626_ ()Lnet/minecraft/SystemReport; net/minecraft/CrashReport/getSystemReport ()Lnet/minecraft/SystemReport; +MD: net/minecraft/CrashReportCategory/ (Ljava/lang/String;)V net/minecraft/CrashReportCategory/ (Ljava/lang/String;)V +MD: net/minecraft/CrashReportCategory/m_128143_ ()[Ljava/lang/StackTraceElement; net/minecraft/CrashReportCategory/getStacktrace ()[Ljava/lang/StackTraceElement; +MD: net/minecraft/CrashReportCategory/m_128148_ (I)I net/minecraft/CrashReportCategory/fillInStackTrace (I)I +MD: net/minecraft/CrashReportCategory/m_128156_ (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z net/minecraft/CrashReportCategory/validateStackTrace (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z +MD: net/minecraft/CrashReportCategory/m_128159_ (Ljava/lang/String;Ljava/lang/Object;)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReportCategory/setDetail (Ljava/lang/String;Ljava/lang/Object;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReportCategory/m_128162_ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/CrashReportCategory/setDetailError (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/CrashReportCategory/m_128165_ (Ljava/lang/String;Lnet/minecraft/CrashReportDetail;)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReportCategory/setDetail (Ljava/lang/String;Lnet/minecraft/CrashReportDetail;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReportCategory/m_128168_ (Ljava/lang/StringBuilder;)V net/minecraft/CrashReportCategory/getDetails (Ljava/lang/StringBuilder;)V +MD: net/minecraft/CrashReportCategory/m_128174_ (I)V net/minecraft/CrashReportCategory/trimStacktrace (I)V +MD: net/minecraft/CrashReportCategory/m_178937_ (Lnet/minecraft/world/level/LevelHeightAccessor;DDD)Ljava/lang/String; net/minecraft/CrashReportCategory/formatLocation (Lnet/minecraft/world/level/LevelHeightAccessor;DDD)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory/m_178942_ (Lnet/minecraft/world/level/LevelHeightAccessor;III)Ljava/lang/String; net/minecraft/CrashReportCategory/formatLocation (Lnet/minecraft/world/level/LevelHeightAccessor;III)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory/m_178947_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/CrashReportCategory/formatLocation (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory/m_178950_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/CrashReportCategory/populateBlockDetails (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/CrashReportCategory/m_178955_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/CrashReportCategory/lambda$populateBlockDetails$0 (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory$Entry/ (Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/CrashReportCategory$Entry/ (Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/CrashReportCategory$Entry/m_128183_ ()Ljava/lang/String; net/minecraft/CrashReportCategory$Entry/getKey ()Ljava/lang/String; +MD: net/minecraft/CrashReportCategory$Entry/m_128184_ ()Ljava/lang/String; net/minecraft/CrashReportCategory$Entry/getValue ()Ljava/lang/String; +MD: net/minecraft/DefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V net/minecraft/DefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V +MD: net/minecraft/DefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/DefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/DefaultUncaughtExceptionHandlerWithName/ (Lorg/slf4j/Logger;)V net/minecraft/DefaultUncaughtExceptionHandlerWithName/ (Lorg/slf4j/Logger;)V +MD: net/minecraft/DefaultUncaughtExceptionHandlerWithName/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/DefaultUncaughtExceptionHandlerWithName/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/DetectedVersion/ ()V net/minecraft/DetectedVersion/ ()V +MD: net/minecraft/DetectedVersion/ ()V net/minecraft/DetectedVersion/ ()V +MD: net/minecraft/DetectedVersion/ (Lcom/google/gson/JsonObject;)V net/minecraft/DetectedVersion/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/DetectedVersion/m_132491_ ()Ljava/util/Date; net/minecraft/DetectedVersion/getBuildTime ()Ljava/util/Date; +MD: net/minecraft/DetectedVersion/m_132492_ ()Ljava/lang/String; net/minecraft/DetectedVersion/getId ()Ljava/lang/String; +MD: net/minecraft/DetectedVersion/m_132493_ ()Ljava/lang/String; net/minecraft/DetectedVersion/getName ()Ljava/lang/String; +MD: net/minecraft/DetectedVersion/m_132495_ ()I net/minecraft/DetectedVersion/getProtocolVersion ()I +MD: net/minecraft/DetectedVersion/m_132498_ ()Z net/minecraft/DetectedVersion/isStable ()Z +MD: net/minecraft/DetectedVersion/m_183476_ ()Lnet/minecraft/world/level/storage/DataVersion; net/minecraft/DetectedVersion/getDataVersion ()Lnet/minecraft/world/level/storage/DataVersion; +MD: net/minecraft/DetectedVersion/m_195834_ ()Lnet/minecraft/WorldVersion; net/minecraft/DetectedVersion/tryDetectVersion ()Lnet/minecraft/WorldVersion; +MD: net/minecraft/DetectedVersion/m_264084_ (Lnet/minecraft/server/packs/PackType;)I net/minecraft/DetectedVersion/getPackVersion (Lnet/minecraft/server/packs/PackType;)I +MD: net/minecraft/FileUtil/ ()V net/minecraft/FileUtil/ ()V +MD: net/minecraft/FileUtil/ ()V net/minecraft/FileUtil/ ()V +MD: net/minecraft/FileUtil/m_133728_ (Ljava/nio/file/Path;)Z net/minecraft/FileUtil/isPathNormalized (Ljava/nio/file/Path;)Z +MD: net/minecraft/FileUtil/m_133730_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/findAvailableName (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_133734_ (Ljava/nio/file/Path;)Z net/minecraft/FileUtil/isPathPortable (Ljava/nio/file/Path;)Z +MD: net/minecraft/FileUtil/m_133736_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/FileUtil/createPathToResource (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/FileUtil/m_179922_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/getFullResourcePath (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_179924_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/normalizeResourcePath (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_245247_ (Ljava/nio/file/Path;Ljava/util/List;)Ljava/nio/file/Path; net/minecraft/FileUtil/resolvePath (Ljava/nio/file/Path;Ljava/util/List;)Ljava/nio/file/Path; +MD: net/minecraft/FileUtil/m_245411_ ([Ljava/lang/String;)V net/minecraft/FileUtil/validatePath ([Ljava/lang/String;)V +MD: net/minecraft/FileUtil/m_245538_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/FileUtil/decomposePath (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/FileUtil/m_245636_ (Ljava/lang/String;)Z net/minecraft/FileUtil/isValidStrictPathSegment (Ljava/lang/String;)Z +MD: net/minecraft/FileUtil/m_257659_ (Ljava/nio/file/Path;)V net/minecraft/FileUtil/createDirectoriesSafe (Ljava/nio/file/Path;)V +MD: net/minecraft/FileUtil/m_274352_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$3 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_274372_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_274428_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_274618_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$2 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/Optionull/ ()V net/minecraft/Optionull/ ()V +MD: net/minecraft/Optionull/m_269165_ ([S)Z net/minecraft/Optionull/isNullOrEmpty ([S)Z +MD: net/minecraft/Optionull/m_269216_ ([I)Z net/minecraft/Optionull/isNullOrEmpty ([I)Z +MD: net/minecraft/Optionull/m_269248_ (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Optionull/firstOrDefault (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269262_ (Ljava/util/Collection;Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Optionull/firstOrElse (Ljava/util/Collection;Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269263_ ([D)Z net/minecraft/Optionull/isNullOrEmpty ([D)Z +MD: net/minecraft/Optionull/m_269278_ (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Optionull/mapOrDefault (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269359_ (Ljava/util/Collection;)Ljava/lang/Object; net/minecraft/Optionull/first (Ljava/util/Collection;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269382_ (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/Optionull/map (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269432_ ([Z)Z net/minecraft/Optionull/isNullOrEmpty ([Z)Z +MD: net/minecraft/Optionull/m_269433_ ([J)Z net/minecraft/Optionull/isNullOrEmpty ([J)Z +MD: net/minecraft/Optionull/m_269501_ ([F)Z net/minecraft/Optionull/isNullOrEmpty ([F)Z +MD: net/minecraft/Optionull/m_269516_ ([C)Z net/minecraft/Optionull/isNullOrEmpty ([C)Z +MD: net/minecraft/Optionull/m_269543_ (Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Optionull/mapOrElse (Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269589_ ([B)Z net/minecraft/Optionull/isNullOrEmpty ([B)Z +MD: net/minecraft/Optionull/m_269596_ ([Ljava/lang/Object;)Z net/minecraft/Optionull/isNullOrEmpty ([Ljava/lang/Object;)Z +MD: net/minecraft/ReportedException/ (Lnet/minecraft/CrashReport;)V net/minecraft/ReportedException/ (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/ReportedException/getCause ()Ljava/lang/Throwable; net/minecraft/ReportedException/getCause ()Ljava/lang/Throwable; +MD: net/minecraft/ReportedException/getMessage ()Ljava/lang/String; net/minecraft/ReportedException/getMessage ()Ljava/lang/String; +MD: net/minecraft/ReportedException/m_134761_ ()Lnet/minecraft/CrashReport; net/minecraft/ReportedException/getReport ()Lnet/minecraft/CrashReport; +MD: net/minecraft/ResourceLocationException/ (Ljava/lang/String;)V net/minecraft/ResourceLocationException/ (Ljava/lang/String;)V +MD: net/minecraft/ResourceLocationException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/ResourceLocationException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/SharedConstants/ ()V net/minecraft/SharedConstants/ ()V +MD: net/minecraft/SharedConstants/ ()V net/minecraft/SharedConstants/ ()V +MD: net/minecraft/SharedConstants/m_136188_ (C)Z net/minecraft/SharedConstants/isAllowedChatCharacter (C)Z +MD: net/minecraft/SharedConstants/m_136190_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/SharedConstants/filterText (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/SharedConstants/m_136192_ ()I net/minecraft/SharedConstants/getProtocolVersion ()I +MD: net/minecraft/SharedConstants/m_142977_ ()V net/minecraft/SharedConstants/tryDetectVersion ()V +MD: net/minecraft/SharedConstants/m_183705_ (Lnet/minecraft/WorldVersion;)V net/minecraft/SharedConstants/setVersion (Lnet/minecraft/WorldVersion;)V +MD: net/minecraft/SharedConstants/m_183707_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/SharedConstants/debugVoidTerrain (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/SharedConstants/m_183709_ ()Lnet/minecraft/WorldVersion; net/minecraft/SharedConstants/getCurrentVersion ()Lnet/minecraft/WorldVersion; +MD: net/minecraft/SharedConstants/m_214358_ ()V net/minecraft/SharedConstants/enableDataFixerOptimizations ()V +MD: net/minecraft/SharedConstants/m_239657_ (Ljava/lang/String;Z)Ljava/lang/String; net/minecraft/SharedConstants/filterText (Ljava/lang/String;Z)Ljava/lang/String; +MD: net/minecraft/SystemReport/ ()V net/minecraft/SystemReport/ ()V +MD: net/minecraft/SystemReport/ ()V net/minecraft/SystemReport/ ()V +MD: net/minecraft/SystemReport/m_143515_ ()Ljava/lang/String; net/minecraft/SystemReport/toLineSeparatedString ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143516_ (Ljava/lang/String;Ljava/lang/Runnable;)V net/minecraft/SystemReport/ignoreErrors (Ljava/lang/String;Ljava/lang/Runnable;)V +MD: net/minecraft/SystemReport/m_143519_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/SystemReport/setDetail (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/SystemReport/m_143522_ (Ljava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/SystemReport/setDetail (Ljava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/SystemReport/m_143525_ (Ljava/lang/StringBuilder;)V net/minecraft/SystemReport/appendToCrashReportString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/SystemReport/m_143527_ (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/SystemReport/lambda$appendToCrashReportString$20 (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/SystemReport/m_143531_ (Ljava/util/List;)V net/minecraft/SystemReport/putPhysicalMemory (Ljava/util/List;)V +MD: net/minecraft/SystemReport/m_143533_ (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/SystemReport/lambda$toLineSeparatedString$21 (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143535_ (Loshi/SystemInfo;)V net/minecraft/SystemReport/putHardware (Loshi/SystemInfo;)V +MD: net/minecraft/SystemReport/m_143539_ (Loshi/hardware/CentralProcessor;)V net/minecraft/SystemReport/putProcessor (Loshi/hardware/CentralProcessor;)V +MD: net/minecraft/SystemReport/m_143541_ (Loshi/hardware/GlobalMemory;)V net/minecraft/SystemReport/putMemory (Loshi/hardware/GlobalMemory;)V +MD: net/minecraft/SystemReport/m_143545_ (Loshi/hardware/HardwareAbstractionLayer;)V net/minecraft/SystemReport/lambda$putHardware$6 (Loshi/hardware/HardwareAbstractionLayer;)V +MD: net/minecraft/SystemReport/m_143549_ (Loshi/hardware/VirtualMemory;)V net/minecraft/SystemReport/putVirtualMemory (Loshi/hardware/VirtualMemory;)V +MD: net/minecraft/SystemReport/m_143552_ (Ljava/util/List;)V net/minecraft/SystemReport/putGraphics (Ljava/util/List;)V +MD: net/minecraft/SystemReport/m_143554_ (Loshi/hardware/CentralProcessor;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$19 (Loshi/hardware/CentralProcessor;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143556_ (Loshi/hardware/GlobalMemory;)V net/minecraft/SystemReport/lambda$putMemory$14 (Loshi/hardware/GlobalMemory;)V +MD: net/minecraft/SystemReport/m_143558_ (Loshi/hardware/HardwareAbstractionLayer;)V net/minecraft/SystemReport/lambda$putHardware$5 (Loshi/hardware/HardwareAbstractionLayer;)V +MD: net/minecraft/SystemReport/m_143564_ ()V net/minecraft/SystemReport/lambda$new$2 ()V +MD: net/minecraft/SystemReport/m_143565_ (Loshi/hardware/CentralProcessor;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$18 (Loshi/hardware/CentralProcessor;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143567_ (Loshi/hardware/GlobalMemory;)V net/minecraft/SystemReport/lambda$putMemory$13 (Loshi/hardware/GlobalMemory;)V +MD: net/minecraft/SystemReport/m_143569_ (Loshi/hardware/HardwareAbstractionLayer;)V net/minecraft/SystemReport/lambda$putHardware$4 (Loshi/hardware/HardwareAbstractionLayer;)V +MD: net/minecraft/SystemReport/m_143573_ ()Ljava/lang/String; net/minecraft/SystemReport/lambda$new$1 ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143574_ (Loshi/hardware/CentralProcessor;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$17 (Loshi/hardware/CentralProcessor;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143578_ ()Ljava/lang/String; net/minecraft/SystemReport/lambda$new$0 ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241706_ (Loshi/hardware/CentralProcessor$ProcessorIdentifier;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$16 (Loshi/hardware/CentralProcessor$ProcessorIdentifier;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241707_ (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putPhysicalMemory$7 (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241708_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$9 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241709_ (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putPhysicalMemory$8 (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241710_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$11 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241711_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$12 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241712_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$10 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241713_ ()Ljava/lang/String; net/minecraft/SystemReport/lambda$new$3 ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241714_ (Loshi/hardware/GraphicsCard;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putGraphics$15 (Loshi/hardware/GraphicsCard;)Ljava/lang/String; +MD: net/minecraft/Util/ ()V net/minecraft/Util/ ()V +MD: net/minecraft/Util/ ()V net/minecraft/Util/ ()V +MD: net/minecraft/Util/m_137448_ ()Ljava/util/stream/Collector; net/minecraft/Util/toMap ()Ljava/util/stream/Collector; +MD: net/minecraft/Util/m_137449_ (ILjava/lang/String;[Ljava/util/function/BooleanSupplier;)Z net/minecraft/Util/runWithRetries (ILjava/lang/String;[Ljava/util/function/BooleanSupplier;)Z +MD: net/minecraft/Util/m_137453_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/Util/getPropertyName (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/Util/m_137456_ (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/Util/fetchChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/Util/m_137462_ (Ljava/io/File;Ljava/io/File;Ljava/io/File;)V net/minecraft/Util/safeReplaceFile (Ljava/io/File;Ljava/io/File;Ljava/io/File;)V +MD: net/minecraft/Util/m_137466_ (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util/findNextInIterable (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137469_ (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; net/minecraft/Util/make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137474_ (Ljava/lang/Runnable;Ljava/util/function/Supplier;)Ljava/lang/Runnable; net/minecraft/Util/name (Ljava/lang/Runnable;Ljava/util/function/Supplier;)Ljava/lang/Runnable; +MD: net/minecraft/Util/m_137477_ (Ljava/lang/String;)Ljava/util/concurrent/ExecutorService; net/minecraft/Util/makeExecutor (Ljava/lang/String;)Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_137479_ (Ljava/lang/String;II)I net/minecraft/Util/offsetByCodepoints (Ljava/lang/String;II)I +MD: net/minecraft/Util/m_137483_ (Ljava/lang/String;Lnet/minecraft/CharPredicate;)Ljava/lang/String; net/minecraft/Util/sanitizeName (Ljava/lang/String;Lnet/minecraft/CharPredicate;)Ljava/lang/String; +MD: net/minecraft/Util/m_137489_ (Ljava/lang/String;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; net/minecraft/Util/prefix (Ljava/lang/String;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; +MD: net/minecraft/Util/m_137492_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/Util/makeDescriptionId (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/Util/m_137495_ (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/Util/onThreadException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_137500_ (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createDeleter (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137502_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createRenamer (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137505_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/Util/safeReplaceFile (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/Util/m_137509_ (Ljava/util/List;)Ljava/lang/Object; net/minecraft/Util/lastOf (Ljava/util/List;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137521_ (Ljava/util/Optional;Ljava/util/function/Consumer;Ljava/lang/Runnable;)Ljava/util/Optional; net/minecraft/Util/ifElse (Ljava/util/Optional;Ljava/util/function/Consumer;Ljava/lang/Runnable;)Ljava/util/Optional; +MD: net/minecraft/Util/m_137531_ (Ljava/util/concurrent/ExecutorService;)V net/minecraft/Util/shutdownExecutor (Ljava/util/concurrent/ExecutorService;)V +MD: net/minecraft/Util/m_137537_ (Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Util/make (Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137539_ (Ljava/util/stream/IntStream;I)Lcom/mojang/serialization/DataResult; net/minecraft/Util/fixedSize (Ljava/util/stream/IntStream;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/Util/m_137548_ ([Ljava/util/function/BooleanSupplier;)Z net/minecraft/Util/executeInSequence ([Ljava/util/function/BooleanSupplier;)Z +MD: net/minecraft/Util/m_137550_ ()J net/minecraft/Util/getMillis ()J +MD: net/minecraft/Util/m_137551_ (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/Util/doFetchChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/Util/m_137554_ (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util/findPreviousInIterable (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137559_ (Ljava/lang/Throwable;)V net/minecraft/Util/throwAsRuntime (Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_137561_ (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createFileDeletedCheck (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137563_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/Util/copyBetweenDirs (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/Util/m_137567_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/sequence (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_137569_ ()J net/minecraft/Util/getNanos ()J +MD: net/minecraft/Util/m_137570_ (Ljava/lang/Throwable;)Ljava/lang/Throwable; net/minecraft/Util/pauseInIde (Ljava/lang/Throwable;)Ljava/lang/Throwable; +MD: net/minecraft/Util/m_137572_ (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createFileCreatedCheck (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137574_ ()J net/minecraft/Util/getEpochMillis ()J +MD: net/minecraft/Util/m_137575_ (Ljava/lang/Throwable;)Ljava/lang/String; net/minecraft/Util/describeError (Ljava/lang/Throwable;)Ljava/lang/String; +MD: net/minecraft/Util/m_137580_ ()V net/minecraft/Util/shutdownExecutors ()V +MD: net/minecraft/Util/m_137581_ ()Lnet/minecraft/Util$OS; net/minecraft/Util/getPlatform ()Lnet/minecraft/Util$OS; +MD: net/minecraft/Util/m_137582_ ()Ljava/util/stream/Stream; net/minecraft/Util/getVmArguments ()Ljava/util/stream/Stream; +MD: net/minecraft/Util/m_137583_ ()Lit/unimi/dsi/fastutil/Hash$Strategy; net/minecraft/Util/identityStrategy ()Lit/unimi/dsi/fastutil/Hash$Strategy; +MD: net/minecraft/Util/m_137584_ ()V net/minecraft/Util/startTimerHackThread ()V +MD: net/minecraft/Util/m_137586_ ()Ljava/util/concurrent/ExecutorService; net/minecraft/Util/makeIoExecutor ()Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_143785_ (Ljava/lang/String;)V net/minecraft/Util/logAndPauseIfInIde (Ljava/lang/String;)V +MD: net/minecraft/Util/m_143787_ (Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/Util/wrapThreadWithTaskName (Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/Util/m_143795_ (Ljava/util/List;I)Lcom/mojang/serialization/DataResult; net/minecraft/Util/fixedSize (Ljava/util/List;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/Util/m_143821_ (Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; net/minecraft/Util/memoize (Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; +MD: net/minecraft/Util/m_143827_ (Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/Util/memoize (Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/Util/m_143840_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/sequenceFailFast (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_183946_ (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; net/minecraft/Util/wrapThreadWithTaskName (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; +MD: net/minecraft/Util/m_183969_ (Ljava/util/function/Consumer;)V net/minecraft/Util/setPause (Ljava/util/function/Consumer;)V +MD: net/minecraft/Util/m_183984_ (Ljava/lang/String;)V net/minecraft/Util/doPause (Ljava/lang/String;)V +MD: net/minecraft/Util/m_183991_ ()Ljava/util/concurrent/ExecutorService; net/minecraft/Util/backgroundExecutor ()Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_183992_ ()Ljava/util/concurrent/ExecutorService; net/minecraft/Util/ioPool ()Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_183993_ ()I net/minecraft/Util/getMaxThreads ()I +MD: net/minecraft/Util/m_200890_ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/Util/logAndPauseIfInIde (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_201859_ (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/Util/lambda$makeIoExecutor$4 (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/Util/m_201861_ (Ljava/lang/String;Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread; net/minecraft/Util/lambda$makeExecutor$3 (Ljava/lang/String;Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread; +MD: net/minecraft/Util/m_201864_ (Ljava/nio/file/spi/FileSystemProvider;)Z net/minecraft/Util/lambda$static$0 (Ljava/nio/file/spi/FileSystemProvider;)Z +MD: net/minecraft/Util/m_201893_ (Ljava/lang/String;Ljava/lang/Runnable;)V net/minecraft/Util/lambda$wrapThreadWithTaskName$5 (Ljava/lang/String;Ljava/lang/Runnable;)V +MD: net/minecraft/Util/m_201896_ (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Util/lambda$wrapThreadWithTaskName$6 (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Util/m_201902_ (Ljava/lang/String;)Z net/minecraft/Util/lambda$getVmArguments$7 (Ljava/lang/String;)Z +MD: net/minecraft/Util/m_201904_ (Ljava/lang/String;)V net/minecraft/Util/lambda$static$2 (Ljava/lang/String;)V +MD: net/minecraft/Util/m_201906_ ()Ljava/lang/IllegalStateException; net/minecraft/Util/lambda$static$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/Util/m_203744_ (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; net/minecraft/Util/lambda$sequence$8 (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; +MD: net/minecraft/Util/m_212224_ (Ljava/io/File;Ljava/io/File;Ljava/io/File;Z)V net/minecraft/Util/safeReplaceOrMoveFile (Ljava/io/File;Ljava/io/File;Ljava/io/File;Z)V +MD: net/minecraft/Util/m_212229_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V net/minecraft/Util/safeReplaceOrMoveFile (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V +MD: net/minecraft/Util/m_214611_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/Util/shuffledCopy (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/Util/m_214621_ (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/Util/getRandom (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/Util/m_214624_ (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; net/minecraft/Util/lambda$fallibleSequence$12 (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; +MD: net/minecraft/Util/m_214631_ (Ljava/util/List;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/fallibleSequence (Ljava/util/List;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_214634_ (Ljava/util/List;Ljava/util/function/IntFunction;)Ljava/util/function/ToIntFunction; net/minecraft/Util/createIndexLookup (Ljava/util/List;Ljava/util/function/IntFunction;)Ljava/util/function/ToIntFunction; +MD: net/minecraft/Util/m_214637_ (Ljava/util/List;[Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/Util/lambda$fallibleSequence$11 (Ljava/util/List;[Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/Util/m_214642_ (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/Util/lambda$prefix$13 (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/Util/m_214646_ (Ljava/util/function/Consumer;Ljava/util/List;ILjava/lang/Object;Ljava/lang/Throwable;)V net/minecraft/Util/lambda$fallibleSequence$10 (Ljava/util/function/Consumer;Ljava/util/List;ILjava/lang/Object;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_214652_ (Ljava/util/function/Function;Ljava/util/function/Predicate;)Ljava/lang/Object; net/minecraft/Util/blockUntilDone (Ljava/util/function/Function;Ljava/util/function/Predicate;)Ljava/lang/Object; +MD: net/minecraft/Util/m_214655_ (Ljava/util/function/Supplier;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; net/minecraft/Util/name (Ljava/util/function/Supplier;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; +MD: net/minecraft/Util/m_214658_ (Ljava/util/stream/IntStream;Lnet/minecraft/util/RandomSource;)Lit/unimi/dsi/fastutil/ints/IntArrayList; net/minecraft/Util/toShuffledList (Ljava/util/stream/IntStream;Lnet/minecraft/util/RandomSource;)Lit/unimi/dsi/fastutil/ints/IntArrayList; +MD: net/minecraft/Util/m_214661_ (Ljava/util/stream/Stream;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/Util/toShuffledList (Ljava/util/stream/Stream;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/Util/m_214664_ (Lnet/minecraft/CharPredicate;I)Ljava/lang/String; net/minecraft/Util/lambda$sanitizeName$17 (Lnet/minecraft/CharPredicate;I)Ljava/lang/String; +MD: net/minecraft/Util/m_214667_ ([ILnet/minecraft/util/RandomSource;)I net/minecraft/Util/getRandom ([ILnet/minecraft/util/RandomSource;)I +MD: net/minecraft/Util/m_214670_ ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/Util/getRandom ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/Util/m_214673_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)V net/minecraft/Util/shuffle (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/Util/m_214676_ (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/Util/getRandomSafe (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/Util/m_214679_ (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/blockUntilDone (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_214681_ ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/Util/shuffledCopy ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/Util/m_214684_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/sequenceFailFastAndCancel (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_214686_ (Ljava/util/List;)Ljava/util/function/ToIntFunction; net/minecraft/Util/createIndexLookup (Ljava/util/List;)Ljava/util/function/ToIntFunction; +MD: net/minecraft/Util/m_241986_ ()Ljava/lang/String; net/minecraft/Util/getFilenameFormattedDateTime ()Ljava/lang/String; +MD: net/minecraft/Util/m_260975_ (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/Util/getOrThrow (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/Util/m_269175_ (Ljava/util/function/Function;)Lnet/minecraft/util/SingleKeyCache; net/minecraft/Util/singleKeyCache (Ljava/util/function/Function;)Lnet/minecraft/util/SingleKeyCache; +MD: net/minecraft/Util/m_273964_ (I)Ljava/lang/String; net/minecraft/Util/lambda$fixedSize$15 (I)Ljava/lang/String; +MD: net/minecraft/Util/m_273965_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Ljava/lang/Throwable;)V net/minecraft/Util/lambda$sequenceFailFastAndCancel$9 (Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_273966_ (I)Ljava/lang/String; net/minecraft/Util/lambda$fixedSize$14 (I)Ljava/lang/String; +MD: net/minecraft/Util/m_287015_ (I)Ljava/lang/String; net/minecraft/Util/lambda$fixedSize$16 (I)Ljava/lang/String; +MD: net/minecraft/Util/m_287262_ (Ljava/util/stream/LongStream;I)Lcom/mojang/serialization/DataResult; net/minecraft/Util/fixedSize (Ljava/util/stream/LongStream;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/Util/m_288213_ (I)Z net/minecraft/Util/isWhitespace (I)Z +MD: net/minecraft/Util/m_288217_ (Ljava/lang/String;)Z net/minecraft/Util/isBlank (Ljava/lang/String;)Z +MD: net/minecraft/Util$1/ ()V net/minecraft/Util$1/ ()V +MD: net/minecraft/Util$1/read ()J net/minecraft/Util$1/read ()J +MD: net/minecraft/Util$10/ (Ljava/util/function/Function;)V net/minecraft/Util$10/ (Ljava/util/function/Function;)V +MD: net/minecraft/Util$10/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util$10/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util$10/toString ()Ljava/lang/String; net/minecraft/Util$10/toString ()Ljava/lang/String; +MD: net/minecraft/Util$11/ (Ljava/util/function/BiFunction;)V net/minecraft/Util$11/ (Ljava/util/function/BiFunction;)V +MD: net/minecraft/Util$11/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util$11/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util$11/m_214696_ (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; net/minecraft/Util$11/lambda$apply$0 (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; +MD: net/minecraft/Util$11/toString ()Ljava/lang/String; net/minecraft/Util$11/toString ()Ljava/lang/String; +MD: net/minecraft/Util$2/ (Ljava/util/concurrent/ForkJoinPool;)V net/minecraft/Util$2/ (Ljava/util/concurrent/ForkJoinPool;)V +MD: net/minecraft/Util$2/onTermination (Ljava/lang/Throwable;)V net/minecraft/Util$2/onTermination (Ljava/lang/Throwable;)V +MD: net/minecraft/Util$5/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/Util$5/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/Util$5/getAsBoolean ()Z net/minecraft/Util$5/getAsBoolean ()Z +MD: net/minecraft/Util$5/toString ()Ljava/lang/String; net/minecraft/Util$5/toString ()Ljava/lang/String; +MD: net/minecraft/Util$6/ (Ljava/nio/file/Path;)V net/minecraft/Util$6/ (Ljava/nio/file/Path;)V +MD: net/minecraft/Util$6/getAsBoolean ()Z net/minecraft/Util$6/getAsBoolean ()Z +MD: net/minecraft/Util$6/toString ()Ljava/lang/String; net/minecraft/Util$6/toString ()Ljava/lang/String; +MD: net/minecraft/Util$7/ (Ljava/nio/file/Path;)V net/minecraft/Util$7/ (Ljava/nio/file/Path;)V +MD: net/minecraft/Util$7/getAsBoolean ()Z net/minecraft/Util$7/getAsBoolean ()Z +MD: net/minecraft/Util$7/toString ()Ljava/lang/String; net/minecraft/Util$7/toString ()Ljava/lang/String; +MD: net/minecraft/Util$8/ (Ljava/nio/file/Path;)V net/minecraft/Util$8/ (Ljava/nio/file/Path;)V +MD: net/minecraft/Util$8/getAsBoolean ()Z net/minecraft/Util$8/getAsBoolean ()Z +MD: net/minecraft/Util$8/toString ()Ljava/lang/String; net/minecraft/Util$8/toString ()Ljava/lang/String; +MD: net/minecraft/Util$9/ (Ljava/lang/String;)V net/minecraft/Util$9/ (Ljava/lang/String;)V +MD: net/minecraft/Util$9/run ()V net/minecraft/Util$9/run ()V +MD: net/minecraft/Util$IdentityStrategy/ ()V net/minecraft/Util$IdentityStrategy/ ()V +MD: net/minecraft/Util$IdentityStrategy/ (Ljava/lang/String;I)V net/minecraft/Util$IdentityStrategy/ (Ljava/lang/String;I)V +MD: net/minecraft/Util$IdentityStrategy/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/Util$IdentityStrategy/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/Util$IdentityStrategy/hashCode (Ljava/lang/Object;)I net/minecraft/Util$IdentityStrategy/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/Util$IdentityStrategy/m_143862_ ()[Lnet/minecraft/Util$IdentityStrategy; net/minecraft/Util$IdentityStrategy/$values ()[Lnet/minecraft/Util$IdentityStrategy; +MD: net/minecraft/Util$IdentityStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$IdentityStrategy; net/minecraft/Util$IdentityStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$IdentityStrategy; +MD: net/minecraft/Util$IdentityStrategy/values ()[Lnet/minecraft/Util$IdentityStrategy; net/minecraft/Util$IdentityStrategy/values ()[Lnet/minecraft/Util$IdentityStrategy; +MD: net/minecraft/Util$OS/ ()V net/minecraft/Util$OS/ ()V +MD: net/minecraft/Util$OS/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/Util$OS/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/Util$OS/m_137644_ (Ljava/io/File;)V net/minecraft/Util$OS/openFile (Ljava/io/File;)V +MD: net/minecraft/Util$OS/m_137646_ (Ljava/lang/String;)V net/minecraft/Util$OS/openUri (Ljava/lang/String;)V +MD: net/minecraft/Util$OS/m_137648_ (Ljava/net/URI;)V net/minecraft/Util$OS/openUri (Ljava/net/URI;)V +MD: net/minecraft/Util$OS/m_137650_ (Ljava/net/URL;)V net/minecraft/Util$OS/openUrl (Ljava/net/URL;)V +MD: net/minecraft/Util$OS/m_137653_ (Ljava/net/URL;)Ljava/lang/Process; net/minecraft/Util$OS/lambda$openUrl$0 (Ljava/net/URL;)Ljava/lang/Process; +MD: net/minecraft/Util$OS/m_143863_ ()[Lnet/minecraft/Util$OS; net/minecraft/Util$OS/$values ()[Lnet/minecraft/Util$OS; +MD: net/minecraft/Util$OS/m_183999_ ()Ljava/lang/String; net/minecraft/Util$OS/telemetryName ()Ljava/lang/String; +MD: net/minecraft/Util$OS/m_6868_ (Ljava/net/URL;)[Ljava/lang/String; net/minecraft/Util$OS/getOpenUrlArguments (Ljava/net/URL;)[Ljava/lang/String; +MD: net/minecraft/Util$OS/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$OS; net/minecraft/Util$OS/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$OS; +MD: net/minecraft/Util$OS/values ()[Lnet/minecraft/Util$OS; net/minecraft/Util$OS/values ()[Lnet/minecraft/Util$OS; +MD: net/minecraft/Util$OS$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/Util$OS$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/Util$OS$1/m_6868_ (Ljava/net/URL;)[Ljava/lang/String; net/minecraft/Util$OS$1/getOpenUrlArguments (Ljava/net/URL;)[Ljava/lang/String; +MD: net/minecraft/Util$OS$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/Util$OS$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/Util$OS$2/m_6868_ (Ljava/net/URL;)[Ljava/lang/String; net/minecraft/Util$OS$2/getOpenUrlArguments (Ljava/net/URL;)[Ljava/lang/String; +MD: net/minecraft/WorldVersion/m_132491_ ()Ljava/util/Date; net/minecraft/WorldVersion/getBuildTime ()Ljava/util/Date; +MD: net/minecraft/WorldVersion/m_132492_ ()Ljava/lang/String; net/minecraft/WorldVersion/getId ()Ljava/lang/String; +MD: net/minecraft/WorldVersion/m_132493_ ()Ljava/lang/String; net/minecraft/WorldVersion/getName ()Ljava/lang/String; +MD: net/minecraft/WorldVersion/m_132495_ ()I net/minecraft/WorldVersion/getProtocolVersion ()I +MD: net/minecraft/WorldVersion/m_132498_ ()Z net/minecraft/WorldVersion/isStable ()Z +MD: net/minecraft/WorldVersion/m_183476_ ()Lnet/minecraft/world/level/storage/DataVersion; net/minecraft/WorldVersion/getDataVersion ()Lnet/minecraft/world/level/storage/DataVersion; +MD: net/minecraft/WorldVersion/m_264084_ (Lnet/minecraft/server/packs/PackType;)I net/minecraft/WorldVersion/getPackVersion (Lnet/minecraft/server/packs/PackType;)I +MD: net/minecraft/advancements/Advancement/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V net/minecraft/advancements/Advancement/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V +MD: net/minecraft/advancements/Advancement/equals (Ljava/lang/Object;)Z net/minecraft/advancements/Advancement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/Advancement/hashCode ()I net/minecraft/advancements/Advancement/hashCode ()I +MD: net/minecraft/advancements/Advancement/m_138313_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement/deconstruct ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement/m_138314_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/advancements/Advancement/lambda$new$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/advancements/Advancement/m_138317_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/Advancement/addChild (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/Advancement/m_138319_ ()Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement/getParent ()Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement/m_138320_ ()Lnet/minecraft/advancements/DisplayInfo; net/minecraft/advancements/Advancement/getDisplay ()Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/advancements/Advancement/m_138321_ ()Lnet/minecraft/advancements/AdvancementRewards; net/minecraft/advancements/Advancement/getRewards ()Lnet/minecraft/advancements/AdvancementRewards; +MD: net/minecraft/advancements/Advancement/m_138322_ ()Ljava/lang/Iterable; net/minecraft/advancements/Advancement/getChildren ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/Advancement/m_138325_ ()Ljava/util/Map; net/minecraft/advancements/Advancement/getCriteria ()Ljava/util/Map; +MD: net/minecraft/advancements/Advancement/m_138326_ ()I net/minecraft/advancements/Advancement/getMaxCriteraRequired ()I +MD: net/minecraft/advancements/Advancement/m_138327_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/Advancement/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/Advancement/m_138329_ ()[[Ljava/lang/String; net/minecraft/advancements/Advancement/getRequirements ()[[Ljava/lang/String; +MD: net/minecraft/advancements/Advancement/m_138330_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/Advancement/getChatComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/Advancement/m_264348_ ()Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement/getRoot ()Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement/m_264636_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement/getRoot (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement/m_285828_ ()Z net/minecraft/advancements/Advancement/sendsTelemetryEvent ()Z +MD: net/minecraft/advancements/Advancement/toString ()Ljava/lang/String; net/minecraft/advancements/Advancement/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/Advancement$Builder/ (Z)V net/minecraft/advancements/Advancement$Builder/ (Z)V +MD: net/minecraft/advancements/Advancement$Builder/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V net/minecraft/advancements/Advancement$Builder/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V +MD: net/minecraft/advancements/Advancement$Builder/m_138353_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/advancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138354_ (Lnet/minecraft/advancements/AdvancementRewards$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/rewards (Lnet/minecraft/advancements/AdvancementRewards$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138356_ (Lnet/minecraft/advancements/AdvancementRewards;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/rewards (Lnet/minecraft/advancements/AdvancementRewards;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138358_ (Lnet/minecraft/advancements/DisplayInfo;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/display (Lnet/minecraft/advancements/DisplayInfo;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138360_ (Lnet/minecraft/advancements/RequirementsStrategy;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/requirements (Lnet/minecraft/advancements/RequirementsStrategy;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138362_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/display (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138371_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/display (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138380_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/fromJson (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138383_ (Ljava/lang/String;Lnet/minecraft/advancements/Criterion;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/addCriterion (Ljava/lang/String;Lnet/minecraft/advancements/Criterion;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138386_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/addCriterion (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138389_ (Ljava/util/function/Consumer;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement$Builder/save (Ljava/util/function/Consumer;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement$Builder/m_138392_ (Ljava/util/function/Function;)Z net/minecraft/advancements/Advancement$Builder/canBuild (Ljava/util/function/Function;)Z +MD: net/minecraft/advancements/Advancement$Builder/m_138394_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/Advancement$Builder/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/Advancement$Builder/m_138396_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/parent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138398_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/parent (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138400_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/Advancement$Builder/serializeToJson ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/Advancement$Builder/m_138401_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138403_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement$Builder/build (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement$Builder/m_138405_ ()Ljava/util/Map; net/minecraft/advancements/Advancement$Builder/getCriteria ()Ljava/util/Map; +MD: net/minecraft/advancements/Advancement$Builder/m_138406_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement$Builder/lambda$build$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement$Builder/m_143951_ ([[Ljava/lang/String;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/requirements ([[Ljava/lang/String;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_214830_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/DisplayInfo;)V net/minecraft/advancements/Advancement$Builder/lambda$serializeToNetwork$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/DisplayInfo;)V +MD: net/minecraft/advancements/Advancement$Builder/m_285878_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/recipeAdvancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/toString ()Ljava/lang/String; net/minecraft/advancements/Advancement$Builder/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementList/ ()V net/minecraft/advancements/AdvancementList/ ()V +MD: net/minecraft/advancements/AdvancementList/ ()V net/minecraft/advancements/AdvancementList/ ()V +MD: net/minecraft/advancements/AdvancementList/m_139332_ ()V net/minecraft/advancements/AdvancementList/clear ()V +MD: net/minecraft/advancements/AdvancementList/m_139333_ (Ljava/util/Map;)V net/minecraft/advancements/AdvancementList/add (Ljava/util/Map;)V +MD: net/minecraft/advancements/AdvancementList/m_139335_ (Ljava/util/Set;)V net/minecraft/advancements/AdvancementList/remove (Ljava/util/Set;)V +MD: net/minecraft/advancements/AdvancementList/m_139337_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/AdvancementList/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/AdvancementList/m_139339_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList/remove (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList/m_139341_ (Lnet/minecraft/advancements/AdvancementList$Listener;)V net/minecraft/advancements/AdvancementList/setListener (Lnet/minecraft/advancements/AdvancementList$Listener;)V +MD: net/minecraft/advancements/AdvancementList/m_139343_ ()Ljava/lang/Iterable; net/minecraft/advancements/AdvancementList/getRoots ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/AdvancementList/m_139344_ ()Ljava/util/Collection; net/minecraft/advancements/AdvancementList/getAllAdvancements ()Ljava/util/Collection; +MD: net/minecraft/advancements/AdvancementList$Listener/m_5504_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onRemoveAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_5505_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onAddAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_5513_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onAddAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_5516_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onRemoveAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_7204_ ()V net/minecraft/advancements/AdvancementList$Listener/onAdvancementsCleared ()V +MD: net/minecraft/advancements/AdvancementProgress/ (Ljava/util/Map;)V net/minecraft/advancements/AdvancementProgress/ (Ljava/util/Map;)V +MD: net/minecraft/advancements/AdvancementProgress/ ()V net/minecraft/advancements/AdvancementProgress/ ()V +MD: net/minecraft/advancements/AdvancementProgress/compareTo (Ljava/lang/Object;)I net/minecraft/advancements/AdvancementProgress/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/advancements/AdvancementProgress/compareTo (Lnet/minecraft/advancements/AdvancementProgress;)I net/minecraft/advancements/AdvancementProgress/compareTo (Lnet/minecraft/advancements/AdvancementProgress;)I +MD: net/minecraft/advancements/AdvancementProgress/m_144359_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/CriterionProgress;)V net/minecraft/advancements/AdvancementProgress/lambda$serializeToNetwork$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/CriterionProgress;)V +MD: net/minecraft/advancements/AdvancementProgress/m_8193_ ()Z net/minecraft/advancements/AdvancementProgress/isDone ()Z +MD: net/minecraft/advancements/AdvancementProgress/m_8196_ (Ljava/lang/String;)Z net/minecraft/advancements/AdvancementProgress/grantProgress (Ljava/lang/String;)Z +MD: net/minecraft/advancements/AdvancementProgress/m_8198_ (Ljava/util/Map;[[Ljava/lang/String;)V net/minecraft/advancements/AdvancementProgress/update (Ljava/util/Map;[[Ljava/lang/String;)V +MD: net/minecraft/advancements/AdvancementProgress/m_8201_ (Ljava/util/Set;Ljava/util/Map$Entry;)Z net/minecraft/advancements/AdvancementProgress/lambda$update$0 (Ljava/util/Set;Ljava/util/Map$Entry;)Z +MD: net/minecraft/advancements/AdvancementProgress/m_8204_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/AdvancementProgress/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/AdvancementProgress/m_8206_ ()Z net/minecraft/advancements/AdvancementProgress/hasProgress ()Z +MD: net/minecraft/advancements/AdvancementProgress/m_8209_ (Ljava/lang/String;)Z net/minecraft/advancements/AdvancementProgress/revokeProgress (Ljava/lang/String;)Z +MD: net/minecraft/advancements/AdvancementProgress/m_8211_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/AdvancementProgress; net/minecraft/advancements/AdvancementProgress/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/AdvancementProgress; +MD: net/minecraft/advancements/AdvancementProgress/m_8213_ ()F net/minecraft/advancements/AdvancementProgress/getPercent ()F +MD: net/minecraft/advancements/AdvancementProgress/m_8214_ (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; net/minecraft/advancements/AdvancementProgress/getCriterion (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; +MD: net/minecraft/advancements/AdvancementProgress/m_8218_ ()Ljava/lang/String; net/minecraft/advancements/AdvancementProgress/getProgressText ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementProgress/m_8219_ ()Ljava/lang/Iterable; net/minecraft/advancements/AdvancementProgress/getRemainingCriteria ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/AdvancementProgress/m_8220_ ()Ljava/lang/Iterable; net/minecraft/advancements/AdvancementProgress/getCompletedCriteria ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/AdvancementProgress/m_8221_ ()Ljava/util/Date; net/minecraft/advancements/AdvancementProgress/getFirstProgressDate ()Ljava/util/Date; +MD: net/minecraft/advancements/AdvancementProgress/m_8222_ ()I net/minecraft/advancements/AdvancementProgress/countCompletedRequirements ()I +MD: net/minecraft/advancements/AdvancementProgress/toString ()Ljava/lang/String; net/minecraft/advancements/AdvancementProgress/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/ ()V net/minecraft/advancements/AdvancementProgress$Serializer/ ()V +MD: net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/advancements/AdvancementProgress; net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/advancements/AdvancementProgress; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Lnet/minecraft/advancements/AdvancementProgress;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Lnet/minecraft/advancements/AdvancementProgress;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/AdvancementRewards/ ()V net/minecraft/advancements/AdvancementRewards/ ()V +MD: net/minecraft/advancements/AdvancementRewards/ (I[Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandFunction$CacheableFunction;)V net/minecraft/advancements/AdvancementRewards/ (I[Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandFunction$CacheableFunction;)V +MD: net/minecraft/advancements/AdvancementRewards/m_144821_ ()[Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/AdvancementRewards/getRecipes ()[Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/AdvancementRewards/m_289047_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/commands/CommandFunction;)V net/minecraft/advancements/AdvancementRewards/lambda$grant$0 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/advancements/AdvancementRewards/m_9989_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/advancements/AdvancementRewards/grant (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/advancements/AdvancementRewards/m_9991_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/AdvancementRewards; net/minecraft/advancements/AdvancementRewards/deserialize (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/AdvancementRewards; +MD: net/minecraft/advancements/AdvancementRewards/m_9997_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/AdvancementRewards/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/AdvancementRewards/toString ()Ljava/lang/String; net/minecraft/advancements/AdvancementRewards/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementRewards$Builder/ ()V net/minecraft/advancements/AdvancementRewards$Builder/ ()V +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10004_ ()Lnet/minecraft/advancements/AdvancementRewards; net/minecraft/advancements/AdvancementRewards$Builder/build ()Lnet/minecraft/advancements/AdvancementRewards; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10005_ (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/experience (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10007_ (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/addExperience (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10009_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/recipe (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10011_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/addRecipe (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144822_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/loot (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144824_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/addLootTable (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144826_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/function (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144828_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/runs (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/CriteriaTriggers/ ()V net/minecraft/advancements/CriteriaTriggers/ ()V +MD: net/minecraft/advancements/CriteriaTriggers/ ()V net/minecraft/advancements/CriteriaTriggers/ ()V +MD: net/minecraft/advancements/CriteriaTriggers/m_10594_ ()Ljava/lang/Iterable; net/minecraft/advancements/CriteriaTriggers/all ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/CriteriaTriggers/m_10595_ (Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; net/minecraft/advancements/CriteriaTriggers/register (Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; +MD: net/minecraft/advancements/CriteriaTriggers/m_10597_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/CriterionTrigger; net/minecraft/advancements/CriteriaTriggers/getCriterion (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/CriterionTrigger; +MD: net/minecraft/advancements/Criterion/ (Lnet/minecraft/advancements/CriterionTriggerInstance;)V net/minecraft/advancements/Criterion/ (Lnet/minecraft/advancements/CriterionTriggerInstance;)V +MD: net/minecraft/advancements/Criterion/ ()V net/minecraft/advancements/Criterion/ ()V +MD: net/minecraft/advancements/Criterion/m_11416_ ()Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/Criterion/getTrigger ()Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/Criterion/m_11417_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Criterion; net/minecraft/advancements/Criterion/criterionFromJson (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Criterion; +MD: net/minecraft/advancements/Criterion/m_11420_ (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/Criterion/serializeToNetwork (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/Criterion/m_11423_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/Criterion/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/Criterion/m_11425_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/Criterion/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/Criterion/m_11426_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Ljava/util/Map; net/minecraft/advancements/Criterion/criteriaFromJson (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Ljava/util/Map; +MD: net/minecraft/advancements/Criterion/m_11429_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Criterion; net/minecraft/advancements/Criterion/criterionFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Criterion; +MD: net/minecraft/advancements/Criterion/m_11431_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Map; net/minecraft/advancements/Criterion/criteriaFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Map; +MD: net/minecraft/advancements/Criterion/m_145257_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Criterion;)V net/minecraft/advancements/Criterion/lambda$serializeToNetwork$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Criterion;)V +MD: net/minecraft/advancements/CriterionProgress/ ()V net/minecraft/advancements/CriterionProgress/ ()V +MD: net/minecraft/advancements/CriterionProgress/ ()V net/minecraft/advancements/CriterionProgress/ ()V +MD: net/minecraft/advancements/CriterionProgress/m_12911_ ()Z net/minecraft/advancements/CriterionProgress/isDone ()Z +MD: net/minecraft/advancements/CriterionProgress/m_12912_ (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; net/minecraft/advancements/CriterionProgress/fromJson (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; +MD: net/minecraft/advancements/CriterionProgress/m_12914_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/CriterionProgress/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/CriterionProgress/m_12916_ ()V net/minecraft/advancements/CriterionProgress/grant ()V +MD: net/minecraft/advancements/CriterionProgress/m_12917_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/CriterionProgress; net/minecraft/advancements/CriterionProgress/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/CriterionProgress; +MD: net/minecraft/advancements/CriterionProgress/m_12919_ ()V net/minecraft/advancements/CriterionProgress/revoke ()V +MD: net/minecraft/advancements/CriterionProgress/m_12920_ ()Ljava/util/Date; net/minecraft/advancements/CriterionProgress/getObtained ()Ljava/util/Date; +MD: net/minecraft/advancements/CriterionProgress/m_12921_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/CriterionProgress/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/CriterionProgress/toString ()Ljava/lang/String; net/minecraft/advancements/CriterionProgress/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/CriterionTrigger/m_5656_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/CriterionTrigger/removePlayerListeners (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/CriterionTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/CriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/CriterionTrigger/m_6467_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/CriterionTrigger/addPlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/CriterionTrigger/m_6468_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/CriterionTrigger/removePlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/CriterionTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/CriterionTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/CriterionTrigger$Listener/ (Lnet/minecraft/advancements/CriterionTriggerInstance;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)V net/minecraft/advancements/CriterionTrigger$Listener/ (Lnet/minecraft/advancements/CriterionTriggerInstance;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)V +MD: net/minecraft/advancements/CriterionTrigger$Listener/equals (Ljava/lang/Object;)Z net/minecraft/advancements/CriterionTrigger$Listener/equals (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/CriterionTrigger$Listener/hashCode ()I net/minecraft/advancements/CriterionTrigger$Listener/hashCode ()I +MD: net/minecraft/advancements/CriterionTrigger$Listener/m_13685_ ()Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/CriterionTrigger$Listener/getTriggerInstance ()Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/CriterionTrigger$Listener/m_13686_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/CriterionTrigger$Listener/run (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/CriterionTriggerInstance/m_7294_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/CriterionTriggerInstance/getCriterion ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/CriterionTriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/CriterionTriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/DisplayInfo/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)V net/minecraft/advancements/DisplayInfo/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)V +MD: net/minecraft/advancements/DisplayInfo/m_14977_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/DisplayInfo/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/DisplayInfo/m_14978_ (FF)V net/minecraft/advancements/DisplayInfo/setLocation (FF)V +MD: net/minecraft/advancements/DisplayInfo/m_14981_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/DisplayInfo; net/minecraft/advancements/DisplayInfo/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/advancements/DisplayInfo/m_14983_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/DisplayInfo/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/DisplayInfo/m_14985_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/DisplayInfo/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/DisplayInfo/m_14986_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; net/minecraft/advancements/DisplayInfo/getIcon (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/advancements/DisplayInfo/m_14988_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/DisplayInfo; net/minecraft/advancements/DisplayInfo/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/advancements/DisplayInfo/m_14990_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/advancements/DisplayInfo/getIcon ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/advancements/DisplayInfo/m_14991_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/DisplayInfo/getBackground ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/DisplayInfo/m_14992_ ()Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/DisplayInfo/getFrame ()Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/DisplayInfo/m_14993_ ()F net/minecraft/advancements/DisplayInfo/getX ()F +MD: net/minecraft/advancements/DisplayInfo/m_14994_ ()F net/minecraft/advancements/DisplayInfo/getY ()F +MD: net/minecraft/advancements/DisplayInfo/m_14995_ ()Z net/minecraft/advancements/DisplayInfo/shouldShowToast ()Z +MD: net/minecraft/advancements/DisplayInfo/m_14996_ ()Z net/minecraft/advancements/DisplayInfo/shouldAnnounceChat ()Z +MD: net/minecraft/advancements/DisplayInfo/m_14997_ ()Z net/minecraft/advancements/DisplayInfo/isHidden ()Z +MD: net/minecraft/advancements/DisplayInfo/m_14998_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/DisplayInfo/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/DisplayInfo/m_14999_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/DisplayInfo/serializeIcon ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/FrameType/ ()V net/minecraft/advancements/FrameType/ ()V +MD: net/minecraft/advancements/FrameType/ (Ljava/lang/String;ILjava/lang/String;ILnet/minecraft/ChatFormatting;)V net/minecraft/advancements/FrameType/ (Ljava/lang/String;ILjava/lang/String;ILnet/minecraft/ChatFormatting;)V +MD: net/minecraft/advancements/FrameType/m_145833_ ()[Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/$values ()[Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/FrameType/m_15548_ ()Ljava/lang/String; net/minecraft/advancements/FrameType/getName ()Ljava/lang/String; +MD: net/minecraft/advancements/FrameType/m_15549_ (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/byName (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/FrameType/m_15551_ ()I net/minecraft/advancements/FrameType/getTexture ()I +MD: net/minecraft/advancements/FrameType/m_15552_ ()Lnet/minecraft/ChatFormatting; net/minecraft/advancements/FrameType/getChatColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/advancements/FrameType/m_15553_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/FrameType/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/FrameType/valueOf (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/valueOf (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/FrameType/values ()[Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/values ()[Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/RequirementsStrategy/ ()V net/minecraft/advancements/RequirementsStrategy/ ()V +MD: net/minecraft/advancements/RequirementsStrategy/m_15981_ (Ljava/util/Collection;)[[Ljava/lang/String; net/minecraft/advancements/RequirementsStrategy/lambda$static$1 (Ljava/util/Collection;)[[Ljava/lang/String; +MD: net/minecraft/advancements/RequirementsStrategy/m_15983_ (Ljava/util/Collection;)[[Ljava/lang/String; net/minecraft/advancements/RequirementsStrategy/lambda$static$0 (Ljava/util/Collection;)[[Ljava/lang/String; +MD: net/minecraft/advancements/RequirementsStrategy/m_15985_ (Ljava/util/Collection;)[[Ljava/lang/String; net/minecraft/advancements/RequirementsStrategy/createRequirements (Ljava/util/Collection;)[[Ljava/lang/String; +MD: net/minecraft/advancements/TreeNodePosition/ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;II)V net/minecraft/advancements/TreeNodePosition/ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;II)V +MD: net/minecraft/advancements/TreeNodePosition/m_16572_ ()V net/minecraft/advancements/TreeNodePosition/firstWalk ()V +MD: net/minecraft/advancements/TreeNodePosition/m_16573_ (F)V net/minecraft/advancements/TreeNodePosition/thirdWalk (F)V +MD: net/minecraft/advancements/TreeNodePosition/m_16575_ (FIF)F net/minecraft/advancements/TreeNodePosition/secondWalk (FIF)F +MD: net/minecraft/advancements/TreeNodePosition/m_16579_ (Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/apportion (Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16581_ (Lnet/minecraft/advancements/TreeNodePosition;F)V net/minecraft/advancements/TreeNodePosition/moveSubtree (Lnet/minecraft/advancements/TreeNodePosition;F)V +MD: net/minecraft/advancements/TreeNodePosition/m_16584_ (Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/getAncestor (Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16587_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/TreeNodePosition/run (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/TreeNodePosition/m_16589_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/addChild (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16592_ ()V net/minecraft/advancements/TreeNodePosition/executeShifts ()V +MD: net/minecraft/advancements/TreeNodePosition/m_16593_ ()Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/previousOrThread ()Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16594_ ()Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/nextOrThread ()Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16595_ ()V net/minecraft/advancements/TreeNodePosition/finalizePosition ()V +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/m_285924_ ()Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/getPlayerPredicate ()Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/m_7294_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/getCriterion ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/toString ()Ljava/lang/String; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_146651_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_146656_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/lambda$trigger$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_17487_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/deserializeBlock (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_17493_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/lambda$deserializeBlock$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/m_146661_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/m_17512_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/destroyedBeeNest (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/BlockPredicate/ ()V net/minecraft/advancements/critereon/BlockPredicate/ ()V +MD: net/minecraft/advancements/critereon/BlockPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;)V net/minecraft/advancements/critereon/BlockPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;)V +MD: net/minecraft/advancements/critereon/BlockPredicate/m_146719_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/BlockPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/BlockPredicate/m_17913_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/BlockPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/BlockPredicate/m_17914_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/advancements/critereon/BlockPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/advancements/critereon/BlockPredicate/m_17917_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/BlockPredicate; net/minecraft/advancements/critereon/BlockPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/BlockPredicate; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/ ()V net/minecraft/advancements/critereon/BlockPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_146722_ (Ljava/lang/Iterable;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/of (Ljava/lang/Iterable;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_146724_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/hasNbt (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_146726_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/of ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_17924_ ()Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/block ()Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_17929_ (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/setProperties (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_17931_ ()Lnet/minecraft/advancements/critereon/BlockPredicate; net/minecraft/advancements/critereon/BlockPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/BlockPredicate; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_204027_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_147278_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V net/minecraft/advancements/critereon/BredAnimalsTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_18649_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/BredAnimalsTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/BredAnimalsTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18667_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/bredAnimals (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18669_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/bredAnimals (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18675_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18679_ ()Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/bredAnimals ()Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_19120_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/advancements/critereon/BrewedPotionTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_19123_ (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/BrewedPotionTrigger/lambda$trigger$1 (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_19130_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/BrewedPotionTrigger/lambda$createInstance$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/BrewedPotionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; net/minecraft/advancements/critereon/BrewedPotionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/BrewedPotionTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/m_19141_ (Lnet/minecraft/world/item/alchemy/Potion;)Z net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/alchemy/Potion;)Z +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/m_19145_ ()Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/brewedPotion ()Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_19757_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/advancements/critereon/ChangeDimensionTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_19765_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ChangeDimensionTrigger/lambda$trigger$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ChangeDimensionTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_147560_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimension (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_147563_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimensionFrom (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_147565_ ()Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimension ()Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_19782_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimensionTo (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_19784_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/matches (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_21718_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/advancements/critereon/ChanneledLightningTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_21721_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V net/minecraft/advancements/critereon/ChanneledLightningTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_21728_ (Ljava/util/List;Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ChanneledLightningTrigger/lambda$trigger$1 (Ljava/util/List;Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChanneledLightningTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ChanneledLightningTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ChanneledLightningTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_21744_ (Ljava/util/Collection;)Z net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/matches (Ljava/util/Collection;)Z +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_21746_ ([Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/channeledLightning ([Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_285665_ (I)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/lambda$channeledLightning$0 (I)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_148026_ (ILnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ConstructBeaconTrigger/lambda$trigger$0 (ILnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_148029_ (Lnet/minecraft/server/level/ServerPlayer;I)V net/minecraft/advancements/critereon/ConstructBeaconTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;I)V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ConstructBeaconTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_148032_ (I)Z net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/matches (I)Z +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_148034_ ()Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/constructedBeacon ()Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_22765_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/constructedBeacon (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_23682_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/ConsumeItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_23685_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ConsumeItemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ConsumeItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_148081_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/usedItem (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_23701_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_23703_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/usedItem (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_23707_ ()Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/usedItem ()Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/ ()V net/minecraft/advancements/critereon/ContextAwarePredicate/ ()V +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/advancements/critereon/ContextAwarePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_285802_ (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/ContextAwarePredicate/fromElement (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_285805_ ([Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/ContextAwarePredicate/toJson ([Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_285831_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/ContextAwarePredicate/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_286026_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/ContextAwarePredicate/toJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_286108_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/ContextAwarePredicate/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_24274_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_24282_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/m_24299_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/m_24302_ ()Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/curedZombieVillager ()Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/DamagePredicate/ ()V net/minecraft/advancements/critereon/DamagePredicate/ ()V +MD: net/minecraft/advancements/critereon/DamagePredicate/ ()V net/minecraft/advancements/critereon/DamagePredicate/ ()V +MD: net/minecraft/advancements/critereon/DamagePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V net/minecraft/advancements/critereon/DamagePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +MD: net/minecraft/advancements/critereon/DamagePredicate/m_24916_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/DamagePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/DamagePredicate/m_24917_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z net/minecraft/advancements/critereon/DamagePredicate/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z +MD: net/minecraft/advancements/critereon/DamagePredicate/m_24923_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamagePredicate; net/minecraft/advancements/critereon/DamagePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamagePredicate; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/ ()V net/minecraft/advancements/critereon/DamagePredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148141_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/type (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148143_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/sourceEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148145_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/dealtDamage (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148147_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/takenDamage (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24931_ ()Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/damageInstance ()Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24932_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/type (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24934_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/blocked (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24936_ ()Lnet/minecraft/advancements/critereon/DamagePredicate; net/minecraft/advancements/critereon/DamagePredicate$Builder/build ()Lnet/minecraft/advancements/critereon/DamagePredicate; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/ ()V net/minecraft/advancements/critereon/DamageSourcePredicate/ ()V +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/ (Ljava/util/List;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V net/minecraft/advancements/critereon/DamageSourcePredicate/ (Ljava/util/List;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25443_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/DamageSourcePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25444_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/advancements/critereon/DamageSourcePredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25448_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/advancements/critereon/DamageSourcePredicate/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25451_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate; net/minecraft/advancements/critereon/DamageSourcePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/ ()V net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_148229_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/direct (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_148231_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/source (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_148233_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/source (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_25471_ ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/damageType ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_25472_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/direct (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_25476_ ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/build ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_269507_ (Lnet/minecraft/advancements/critereon/TagPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/tag (Lnet/minecraft/advancements/critereon/TagPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DeserializationContext/ ()V net/minecraft/advancements/critereon/DeserializationContext/ ()V +MD: net/minecraft/advancements/critereon/DeserializationContext/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootDataManager;)V net/minecraft/advancements/critereon/DeserializationContext/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootDataManager;)V +MD: net/minecraft/advancements/critereon/DeserializationContext/m_25873_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/DeserializationContext/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/DeserializationContext/m_25874_ (Lcom/google/gson/JsonArray;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/advancements/critereon/DeserializationContext/deserializeConditions (Lcom/google/gson/JsonArray;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/advancements/critereon/DeserializationContext/m_25878_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/advancements/critereon/DeserializationContext/lambda$deserializeConditions$0 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/DistancePredicate/ ()V net/minecraft/advancements/critereon/DistancePredicate/ ()V +MD: net/minecraft/advancements/critereon/DistancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V net/minecraft/advancements/critereon/DistancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V +MD: net/minecraft/advancements/critereon/DistancePredicate/m_148836_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/horizontal (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_148838_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/vertical (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_148840_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/absolute (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_26254_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/DistancePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_26255_ (DDDDDD)Z net/minecraft/advancements/critereon/DistancePredicate/matches (DDDDDD)Z +MD: net/minecraft/advancements/critereon/DistancePredicate/m_26264_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistanceTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/DistanceTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_186165_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/advancements/critereon/DistanceTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_283951_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/DistanceTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/DistanceTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;)V net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;)V +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186188_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186192_ (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/travelledThroughNether (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186194_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/rideEntityInLava (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186197_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/fallFromHeight (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_149262_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/EffectsChangedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_149265_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EffectsChangedTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EffectsChangedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_149274_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_149277_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/gotEffectsFrom (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_26780_ (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/hasEffects (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_27668_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/advancements/critereon/EnchantedItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_27672_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EnchantedItemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EnchantedItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnchantedItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EnchantedItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/m_27691_ (Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/m_27696_ ()Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/enchantedItem ()Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/EnchantmentPredicate/ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30473_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EnchantmentPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30474_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EnchantmentPredicate; net/minecraft/advancements/critereon/EnchantmentPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EnchantmentPredicate; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30476_ (Ljava/util/Map;)Z net/minecraft/advancements/critereon/EnchantmentPredicate/containedIn (Ljava/util/Map;)Z +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30478_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/EnchantmentPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30480_ (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/EnchantmentPredicate; net/minecraft/advancements/critereon/EnchantmentPredicate/fromJsonArray (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/EnchantmentPredicate; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31269_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/advancements/critereon/EnterBlockTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31272_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/advancements/critereon/EnterBlockTrigger/lambda$createInstance$0 (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31275_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EnterBlockTrigger/lambda$trigger$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31278_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; net/minecraft/advancements/critereon/EnterBlockTrigger/deserializeBlock (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31284_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/EnterBlockTrigger/lambda$deserializeBlock$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EnterBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnterBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EnterBlockTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/m_31297_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/entersBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/m_31299_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/ ()V net/minecraft/advancements/critereon/EntityEquipmentPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/EntityEquipmentPredicate/ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/m_32192_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityEquipmentPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/m_32193_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityEquipmentPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/m_32195_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; net/minecraft/advancements/critereon/EntityEquipmentPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/ ()V net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_149928_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/mainhand (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_149930_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/offhand (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32204_ ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/equipment ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32205_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/head (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32207_ ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32208_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/chest (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32210_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/legs (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32212_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/feet (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/ ()V net/minecraft/advancements/critereon/EntityFlagsPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/ (Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/EntityFlagsPredicate/ (Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33695_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityFlagsPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33696_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityFlagsPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33698_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; net/minecraft/advancements/critereon/EntityFlagsPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33700_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; net/minecraft/advancements/critereon/EntityFlagsPredicate/getOptionalBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33703_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/EntityFlagsPredicate/addOptionalBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/ ()V net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_150057_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setCrouching (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_150059_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setSprinting (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_150061_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setSwimming (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33713_ ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/flags ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33714_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setOnFire (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33716_ ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33717_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setIsBaby (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_35174_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_35180_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;)V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;)V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_150187_ (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/entityHurtPlayer (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_150189_ ()Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/entityHurtPlayer ()Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_35200_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_35206_ (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/entityHurtPlayer (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntityPredicate/ ()V net/minecraft/advancements/critereon/EntityPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Ljava/lang/String;)V net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/String;)V net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/EntityPredicate/m_150319_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityPredicate/lambda$matches$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285787_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/wrap (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285855_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/fromJson (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285868_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/fromJsonArray (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285915_ (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/fromElement (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36606_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36607_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36611_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityPredicate/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36614_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityPredicate; net/minecraft/advancements/critereon/EntityPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityPredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36616_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/advancements/critereon/EntityPredicate/createContext (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/ ()V net/minecraft/advancements/critereon/EntityPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_150328_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/passenger (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_150330_ (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/steppingOn (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_204077_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_218800_ (Lnet/minecraft/advancements/critereon/EntitySubPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/subPredicate (Lnet/minecraft/advancements/critereon/EntitySubPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36633_ ()Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/entity ()Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36636_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/of (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36638_ (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/distance (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36640_ (Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/equipment (Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36642_ (Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/flags (Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36644_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/vehicle (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36646_ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/entityType (Lnet/minecraft/advancements/critereon/EntityTypePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36650_ (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/located (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36652_ (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/effects (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36654_ (Lnet/minecraft/advancements/critereon/NbtPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/nbt (Lnet/minecraft/advancements/critereon/NbtPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36658_ (Ljava/lang/String;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/team (Ljava/lang/String;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36662_ ()Lnet/minecraft/advancements/critereon/EntityPredicate; net/minecraft/advancements/critereon/EntityPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/EntityPredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36663_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/targetedEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/ ()V net/minecraft/advancements/critereon/EntitySubPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/EntitySubPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntitySubPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntitySubPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218831_ (Lnet/minecraft/world/entity/animal/CatVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate/variant (Lnet/minecraft/world/entity/animal/CatVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218833_ (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate/variant (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218835_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218837_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntitySubPredicate/serialize ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/ ()V net/minecraft/advancements/critereon/EntitySubPredicate$1/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/EntitySubPredicate$1/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntitySubPredicate$1/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntitySubPredicate$1/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Type/m_218845_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate$Type/deserialize (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_218857_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$2 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_218859_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$0 (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262324_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$12 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262325_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$4 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262326_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$3 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262327_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$7 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262328_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$5 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262329_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$8 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262330_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$11 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262331_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$6 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262332_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$1 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262333_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$10 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262334_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$9 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262335_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$13 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/ ()V net/minecraft/advancements/critereon/EntityTypePredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityTypePredicate/ ()V net/minecraft/advancements/critereon/EntityTypePredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_204081_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; net/minecraft/advancements/critereon/EntityTypePredicate/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_257054_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/EntityTypePredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_37643_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; net/minecraft/advancements/critereon/EntityTypePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_37647_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; net/minecraft/advancements/critereon/EntityTypePredicate/of (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityTypePredicate$1/ ()V net/minecraft/advancements/critereon/EntityTypePredicate$1/ ()V +MD: net/minecraft/advancements/critereon/EntityTypePredicate$1/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate$1/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate$1/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate$1/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/ (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)V net/minecraft/advancements/critereon/EntityVariantPredicate/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)V +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_219089_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntityVariantPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_219093_ (Lnet/minecraft/core/Registry;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/create (Lnet/minecraft/core/Registry;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_219096_ (Ljava/lang/Object;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/createPredicate (Ljava/lang/Object;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_262336_ (Lcom/mojang/serialization/Codec;Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/lambda$new$0 (Lcom/mojang/serialization/Codec;Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_262478_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/create (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/ (Lnet/minecraft/advancements/critereon/EntityVariantPredicate;Ljava/lang/Object;)V net/minecraft/advancements/critereon/EntityVariantPredicate$1/ (Lnet/minecraft/advancements/critereon/EntityVariantPredicate;Ljava/lang/Object;)V +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/EntityVariantPredicate$1/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntityVariantPredicate$1/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntityVariantPredicate$1/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_219108_ (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/advancements/critereon/EntityVariantPredicate$1/lambda$matches$0 (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_262337_ (Ljava/lang/Object;Ljava/lang/String;)Lcom/google/gson/JsonParseException; net/minecraft/advancements/critereon/EntityVariantPredicate$1/lambda$serializeCustomData$1 (Ljava/lang/Object;Ljava/lang/String;)Lcom/google/gson/JsonParseException; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_38772_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/FilledBucketTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_38775_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/FilledBucketTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/FilledBucketTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; net/minecraft/advancements/critereon/FilledBucketTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/FilledBucketTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/m_38791_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/m_38793_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/filledBucket (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/ ()V net/minecraft/advancements/critereon/FishingHookPredicate/ ()V +MD: net/minecraft/advancements/critereon/FishingHookPredicate/ (Z)V net/minecraft/advancements/critereon/FishingHookPredicate/ (Z)V +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/FishingHookPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/FishingHookPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/FishingHookPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_219719_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/FishingHookPredicate; net/minecraft/advancements/critereon/FishingHookPredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/FishingHookPredicate; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_39766_ (Z)Lnet/minecraft/advancements/critereon/FishingHookPredicate; net/minecraft/advancements/critereon/FishingHookPredicate/inOpenWater (Z)Lnet/minecraft/advancements/critereon/FishingHookPredicate; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_40416_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/FishingHook;Ljava/util/Collection;)V net/minecraft/advancements/critereon/FishingRodHookedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/FishingHook;Ljava/util/Collection;)V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_40421_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/FishingRodHookedTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/FishingRodHookedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; net/minecraft/advancements/critereon/FishingRodHookedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/FishingRodHookedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/m_40443_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;)Z net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;)Z +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/m_40447_ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/fishedItem (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/FluidPredicate/ ()V net/minecraft/advancements/critereon/FluidPredicate/ ()V +MD: net/minecraft/advancements/critereon/FluidPredicate/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/advancements/critereon/FluidPredicate/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/advancements/critereon/FluidPredicate/m_41103_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/FluidPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/FluidPredicate/m_41104_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/advancements/critereon/FluidPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/advancements/critereon/FluidPredicate/m_41107_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/FluidPredicate; net/minecraft/advancements/critereon/FluidPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/FluidPredicate; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/ ()V net/minecraft/advancements/critereon/FluidPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151166_ ()Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/fluid ()Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151169_ (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/setProperties (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151171_ (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/of (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151173_ ()Lnet/minecraft/advancements/critereon/FluidPredicate; net/minecraft/advancements/critereon/FluidPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/FluidPredicate; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_204105_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_5656_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/critereon/ImpossibleTrigger/removePlayerListeners (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/critereon/ImpossibleTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance; net/minecraft/advancements/critereon/ImpossibleTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_6467_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/ImpossibleTrigger/addPlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_6468_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/ImpossibleTrigger/removePlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ImpossibleTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/ ()V net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/ ()V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/m_7294_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/getCriterion ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_43149_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/InventoryChangeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_43153_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/advancements/critereon/InventoryChangeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_43160_ (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;IIILnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/InventoryChangeTrigger/lambda$trigger$0 (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;IIILnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/InventoryChangeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43186_ (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)Z net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/matches (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)Z +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43192_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ItemPredicate;)Z net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/lambda$matches$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ItemPredicate;)Z +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43197_ ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/hasItems ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43199_ ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/hasItems ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_43669_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/advancements/critereon/ItemDurabilityTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_43673_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ItemDurabilityTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ItemDurabilityTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_151286_ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/changedDurability (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_285799_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/changedDurability (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_43698_ (Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ItemPredicate/ ()V net/minecraft/advancements/critereon/ItemPredicate/ ()V +MD: net/minecraft/advancements/critereon/ItemPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/NbtPredicate;)V net/minecraft/advancements/critereon/ItemPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/NbtPredicate;)V +MD: net/minecraft/advancements/critereon/ItemPredicate/ ()V net/minecraft/advancements/critereon/ItemPredicate/ ()V +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45048_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/ItemPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45049_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/ItemPredicate/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45051_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ItemPredicate; net/minecraft/advancements/critereon/ItemPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ItemPredicate; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45053_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/ItemPredicate/lambda$fromJson$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45055_ (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/ItemPredicate; net/minecraft/advancements/critereon/ItemPredicate/fromJsonArray (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/ItemPredicate; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45057_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/ItemPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/ ()V net/minecraft/advancements/critereon/ItemPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151441_ (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/isPotion (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151443_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/withCount (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151445_ ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/of ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151447_ (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasStoredEnchantment (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151449_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasDurability (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_204145_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45068_ ()Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/item ()Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45071_ (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasEnchantment (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45075_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasNbt (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45077_ ()Lnet/minecraft/advancements/critereon/ItemPredicate; net/minecraft/advancements/critereon/ItemPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/ItemPredicate; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_285767_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_285985_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285745_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/placedBlock ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285770_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/allayDropItemOnBlock (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285898_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285945_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/itemUsedOnBlock (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285996_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/itemUsedOnLocation (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_286031_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/placedBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_286091_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/lambda$placedBlock$0 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_46871_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V net/minecraft/advancements/critereon/KilledByCrossbowTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_46878_ (Ljava/util/List;Ljava/util/Set;Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/KilledByCrossbowTrigger/lambda$trigger$0 (Ljava/util/List;Ljava/util/Set;Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/KilledByCrossbowTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_46893_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/crossbowKilled (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_46897_ (Ljava/util/Collection;I)Z net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/matches (Ljava/util/Collection;I)Z +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_46900_ ([Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/crossbowKilled ([Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/KilledTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/KilledTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/KilledTrigger/m_48104_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/advancements/critereon/KilledTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/advancements/critereon/KilledTrigger/m_48108_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/KilledTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/KilledTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/KilledTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/KilledTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152105_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152108_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152110_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152113_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152116_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152118_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152121_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152124_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152126_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152129_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_220237_ ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntityNearSculkCatalyst ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48130_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48134_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48136_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48141_ ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48142_ ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LevitationTrigger/ ()V net/minecraft/advancements/critereon/LevitationTrigger/ ()V +MD: net/minecraft/advancements/critereon/LevitationTrigger/ ()V net/minecraft/advancements/critereon/LevitationTrigger/ ()V +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_49116_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)V net/minecraft/advancements/critereon/LevitationTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)V +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_49120_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/LevitationTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/LevitationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; net/minecraft/advancements/critereon/LevitationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/LevitationTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/m_49140_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/m_49144_ (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/levitated (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LightPredicate/ ()V net/minecraft/advancements/critereon/LightPredicate/ ()V +MD: net/minecraft/advancements/critereon/LightPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/LightPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/LightPredicate/m_51340_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/LightPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/LightPredicate/m_51341_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/advancements/critereon/LightPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/advancements/critereon/LightPredicate/m_51344_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LightPredicate; net/minecraft/advancements/critereon/LightPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LightPredicate; +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/ ()V net/minecraft/advancements/critereon/LightPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/m_153103_ ()Lnet/minecraft/advancements/critereon/LightPredicate$Builder; net/minecraft/advancements/critereon/LightPredicate$Builder/light ()Lnet/minecraft/advancements/critereon/LightPredicate$Builder; +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/m_153104_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LightPredicate$Builder; net/minecraft/advancements/critereon/LightPredicate$Builder/setComposite (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LightPredicate$Builder; +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/m_153106_ ()Lnet/minecraft/advancements/critereon/LightPredicate; net/minecraft/advancements/critereon/LightPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/LightPredicate; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)V net/minecraft/advancements/critereon/LighthingBoltPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_153242_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/LighthingBoltPredicate/lambda$matches$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/LighthingBoltPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_153250_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; net/minecraft/advancements/critereon/LighthingBoltPredicate/blockSetOnFire (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LighthingBoltPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/LighthingBoltPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_220332_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; net/minecraft/advancements/critereon/LighthingBoltPredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_153388_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/advancements/critereon/LightningStrikeTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_153391_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/LightningBolt;Ljava/util/List;)V net/minecraft/advancements/critereon/LightningStrikeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/LightningBolt;Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_153399_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/LightningStrikeTrigger/lambda$trigger$1 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/LightningStrikeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; net/minecraft/advancements/critereon/LightningStrikeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/LightningStrikeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/m_153413_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/lighthingStrike (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/m_153418_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;)Z net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;)Z +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LocationPredicate/ ()V net/minecraft/advancements/critereon/LocationPredicate/ ()V +MD: net/minecraft/advancements/critereon/LocationPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/LightPredicate;Lnet/minecraft/advancements/critereon/BlockPredicate;Lnet/minecraft/advancements/critereon/FluidPredicate;)V net/minecraft/advancements/critereon/LocationPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/LightPredicate;Lnet/minecraft/advancements/critereon/BlockPredicate;Lnet/minecraft/advancements/critereon/FluidPredicate;)V +MD: net/minecraft/advancements/critereon/LocationPredicate/m_187442_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/atYLocation (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_220589_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/inStructure (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_257056_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/advancements/critereon/LocationPredicate/lambda$fromJson$1 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_257057_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/advancements/critereon/LocationPredicate/lambda$fromJson$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52616_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/LocationPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52617_ (Lnet/minecraft/server/level/ServerLevel;DDD)Z net/minecraft/advancements/critereon/LocationPredicate/matches (Lnet/minecraft/server/level/ServerLevel;DDD)Z +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52629_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52631_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonElement;)V net/minecraft/advancements/critereon/LocationPredicate/lambda$serializeToJson$0 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52634_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/inBiome (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52638_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/inDimension (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/ ()V net/minecraft/advancements/critereon/LocationPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153966_ (Lnet/minecraft/advancements/critereon/FluidPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setFluid (Lnet/minecraft/advancements/critereon/FluidPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153968_ (Lnet/minecraft/advancements/critereon/LightPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setLight (Lnet/minecraft/advancements/critereon/LightPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153970_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setX (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153974_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setY (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153976_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setDimension (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153978_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setZ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_220592_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setStructure (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52651_ ()Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/location ()Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52652_ (Lnet/minecraft/advancements/critereon/BlockPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setBlock (Lnet/minecraft/advancements/critereon/BlockPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52654_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setSmokey (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52656_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setBiome (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52658_ ()Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LootTableTrigger/ ()V net/minecraft/advancements/critereon/LootTableTrigger/ ()V +MD: net/minecraft/advancements/critereon/LootTableTrigger/ ()V net/minecraft/advancements/critereon/LootTableTrigger/ ()V +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_54597_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/LootTableTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_54604_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/LootTableTrigger/lambda$trigger$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; net/minecraft/advancements/critereon/LootTableTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/LootTableTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/LootTableTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/m_54618_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/lootTableUsed (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/m_54620_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/matches (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/MinMaxBounds/ ()V net/minecraft/advancements/critereon/MinMaxBounds/ ()V +MD: net/minecraft/advancements/critereon/MinMaxBounds/ (Ljava/lang/Number;Ljava/lang/Number;)V net/minecraft/advancements/critereon/MinMaxBounds/ (Ljava/lang/Number;Ljava/lang/Number;)V +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55305_ ()Ljava/lang/Number; net/minecraft/advancements/critereon/MinMaxBounds/getMin ()Ljava/lang/Number; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55306_ (Lcom/google/gson/JsonElement;Lnet/minecraft/advancements/critereon/MinMaxBounds;Ljava/util/function/BiFunction;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds/fromJson (Lcom/google/gson/JsonElement;Lnet/minecraft/advancements/critereon/MinMaxBounds;Ljava/util/function/BiFunction;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55311_ (Lcom/mojang/brigadier/StringReader;)Z net/minecraft/advancements/critereon/MinMaxBounds/isAllowedInputChat (Lcom/mojang/brigadier/StringReader;)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55313_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory;Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds/fromReader (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory;Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55319_ (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Number; net/minecraft/advancements/critereon/MinMaxBounds/readNumber (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Number; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55323_ (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/advancements/critereon/MinMaxBounds/optionallyFormat (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55326_ ()Ljava/lang/Number; net/minecraft/advancements/critereon/MinMaxBounds/getMax ()Ljava/lang/Number; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55327_ ()Z net/minecraft/advancements/critereon/MinMaxBounds/isAny ()Z +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55328_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/MinMaxBounds/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory/m_55329_ (Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory/create (Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory/m_55332_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory/create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ ()V net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ ()V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ (Ljava/lang/Double;Ljava/lang/Double;)V net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ (Ljava/lang/Double;Ljava/lang/Double;)V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154786_ (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/exactly (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154788_ (DD)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/between (DD)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154791_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154793_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/fromReader (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154795_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/Double;Ljava/lang/Double;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Double;Ljava/lang/Double;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154799_ (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/fromReader (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154802_ (Ljava/lang/Double;)Ljava/lang/Double; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/squareOpt (Ljava/lang/Double;)Ljava/lang/Double; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154804_ (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/atLeast (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154806_ (Ljava/lang/Double;)Ljava/lang/Double; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/lambda$fromReader$0 (Ljava/lang/Double;)Ljava/lang/Double; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154808_ (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/atMost (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154810_ (D)Z net/minecraft/advancements/critereon/MinMaxBounds$Doubles/matches (D)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154812_ (D)Z net/minecraft/advancements/critereon/MinMaxBounds$Doubles/matchesSqr (D)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/ ()V net/minecraft/advancements/critereon/MinMaxBounds$Ints/ ()V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/ (Ljava/lang/Integer;Ljava/lang/Integer;)V net/minecraft/advancements/critereon/MinMaxBounds$Ints/ (Ljava/lang/Integer;Ljava/lang/Integer;)V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_154814_ (II)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/between (II)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_154817_ (J)Z net/minecraft/advancements/critereon/MinMaxBounds$Ints/matchesSqr (J)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_154819_ (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/atMost (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55371_ (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/exactly (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55373_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55375_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/fromReader (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55377_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55381_ (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/fromReader (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55384_ (Ljava/lang/Integer;)Ljava/lang/Long; net/minecraft/advancements/critereon/MinMaxBounds$Ints/squareOpt (Ljava/lang/Integer;)Ljava/lang/Long; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55386_ (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/atLeast (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55388_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/advancements/critereon/MinMaxBounds$Ints/lambda$fromReader$0 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55390_ (I)Z net/minecraft/advancements/critereon/MinMaxBounds$Ints/matches (I)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/ ()V net/minecraft/advancements/critereon/MobEffectsPredicate/ ()V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/ (Ljava/util/Map;)V net/minecraft/advancements/critereon/MobEffectsPredicate/ (Ljava/util/Map;)V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_154977_ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/and (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56552_ ()Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/effects ()Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56553_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/and (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56555_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/MobEffectsPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56557_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/advancements/critereon/MobEffectsPredicate/matches (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56559_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56561_ (Ljava/util/Map;)Z net/minecraft/advancements/critereon/MobEffectsPredicate/matches (Ljava/util/Map;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56563_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/MobEffectsPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56565_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/MobEffectsPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Ljava/lang/Boolean;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Ljava/lang/Boolean;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ ()V net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ ()V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/m_56576_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/m_56577_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/matches (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/m_56579_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate; net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate; +MD: net/minecraft/advancements/critereon/NbtPredicate/ ()V net/minecraft/advancements/critereon/NbtPredicate/ ()V +MD: net/minecraft/advancements/critereon/NbtPredicate/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/advancements/critereon/NbtPredicate/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57476_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/NbtPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57477_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/NbtPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57479_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/NbtPredicate/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57481_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/NbtPredicate; net/minecraft/advancements/critereon/NbtPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/NbtPredicate; +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57483_ (Lnet/minecraft/nbt/Tag;)Z net/minecraft/advancements/critereon/NbtPredicate/matches (Lnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57485_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/advancements/critereon/NbtPredicate/getEntityTagToCompare (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/PickedUpItemTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_221298_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/PickedUpItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_221302_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PickedUpItemTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PickedUpItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_221322_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_286072_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/thrownItemPickedUpByEntity (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_286101_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/thrownItemPickedUpByPlayer (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_60112_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_60119_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156058_ (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156061_ (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156063_ (Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156066_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156068_ ()Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity ()Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_60142_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_60149_ (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_61494_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/PlayerInteractTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_61498_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PlayerInteractTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerInteractTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_285812_ (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/itemUsedOnEntity (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_285836_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/itemUsedOnEntity (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_61521_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/GameType;Ljava/util/Map;Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map;Lnet/minecraft/advancements/critereon/EntityPredicate;)V net/minecraft/advancements/critereon/PlayerPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/GameType;Ljava/util/Map;Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/PlayerPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_156764_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/PlayerPredicate/lambda$matches$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PlayerPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/PlayerPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_222491_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/PlayerPredicate; net/minecraft/advancements/critereon/PlayerPredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/PlayerPredicate; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_222493_ (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$serializeCustomData$4 (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_222497_ (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$serializeCustomData$3 (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_257058_ (Lcom/google/gson/JsonArray;Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$serializeCustomData$2 (Lcom/google/gson/JsonArray;Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62265_ (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerPredicate/getStatValueId (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62267_ (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/stats/Stat; net/minecraft/advancements/critereon/PlayerPredicate/getStat (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62286_ (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map$Entry;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$advancementPredicateFromJson$0 (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map$Entry;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62289_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate; net/minecraft/advancements/critereon/PlayerPredicate/advancementPredicateFromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate; +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/ (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;)V net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/ (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/m_7943_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Ljava/lang/Object;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/ (Z)V net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/ (Z)V +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/m_7943_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Ljava/lang/Object;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate/m_7943_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/ ()V net/minecraft/advancements/critereon/PlayerPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156767_ ()Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/player ()Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156768_ (Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/addStat (Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156771_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/setLookingAt (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156773_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/setGameType (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156775_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/setLevel (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156777_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/checkAdvancementCriterions (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156780_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/addRecipe (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156783_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/checkAdvancementDone (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_62313_ ()Lnet/minecraft/advancements/critereon/PlayerPredicate; net/minecraft/advancements/critereon/PlayerPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/PlayerPredicate; +MD: net/minecraft/advancements/critereon/PlayerTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/PlayerTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_222618_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/advancements/critereon/PlayerTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_222624_ (Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PlayerTrigger/lambda$trigger$0 (Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222633_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/located (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222635_ (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/located (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222637_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/walkOnBlockWithEquipment (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222640_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/sleptInBed ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222641_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/raidWon ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222642_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/avoidVibration ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_272050_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/tick ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_280436_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/RecipeCraftedTrigger/lambda$trigger$0 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_280437_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/advancements/critereon/RecipeCraftedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/RecipeCraftedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_280013_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Z net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/matches (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Z +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_280097_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/craftedItem (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_280477_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/craftedItem (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_63718_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/advancements/critereon/RecipeUnlockedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_63721_ (Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/RecipeUnlockedTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_63728_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/unlocked (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/m_63739_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SerializationContext/ ()V net/minecraft/advancements/critereon/SerializationContext/ ()V +MD: net/minecraft/advancements/critereon/SerializationContext/ ()V net/minecraft/advancements/critereon/SerializationContext/ ()V +MD: net/minecraft/advancements/critereon/SerializationContext/m_64772_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/SerializationContext/serializeConditions ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_65462_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/ShotCrossbowTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_65465_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ShotCrossbowTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ShotCrossbowTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_159431_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/shotCrossbow (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_65481_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_65483_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/shotCrossbow (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/ ()V net/minecraft/advancements/critereon/SimpleCriterionTrigger/ ()V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_5656_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/removePlayerListeners (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/critereon/SimpleCriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SimpleCriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_6467_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/addPlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_6468_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/removePlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_66234_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Predicate;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Predicate;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_66251_ (Lnet/minecraft/server/PlayerAdvancements;)Ljava/util/Set; net/minecraft/advancements/critereon/SimpleCriterionTrigger/lambda$addPlayerListener$0 (Lnet/minecraft/server/PlayerAdvancements;)Ljava/util/Set; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SimpleCriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66978_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/advancements/critereon/SlideDownBlockTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66981_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/advancements/critereon/SlideDownBlockTrigger/lambda$createInstance$0 (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66984_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/SlideDownBlockTrigger/lambda$trigger$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66987_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; net/minecraft/advancements/critereon/SlideDownBlockTrigger/deserializeBlock (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66993_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/SlideDownBlockTrigger/lambda$deserializeBlock$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/SlideDownBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SlideDownBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/SlideDownBlockTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/m_67006_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/slidesDownBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/m_67008_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SlimePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/SlimePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/SlimePredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/SlimePredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/SlimePredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/SlimePredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SlimePredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/SlimePredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/SlimePredicate/m_223426_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/SlimePredicate; net/minecraft/advancements/critereon/SlimePredicate/sized (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/SlimePredicate; +MD: net/minecraft/advancements/critereon/SlimePredicate/m_223428_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/SlimePredicate; net/minecraft/advancements/critereon/SlimePredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/SlimePredicate; +MD: net/minecraft/advancements/critereon/StartRidingTrigger/ ()V net/minecraft/advancements/critereon/StartRidingTrigger/ ()V +MD: net/minecraft/advancements/critereon/StartRidingTrigger/ ()V net/minecraft/advancements/critereon/StartRidingTrigger/ ()V +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_160387_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/advancements/critereon/StartRidingTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_160393_ (Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/StartRidingTrigger/lambda$trigger$0 (Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; net/minecraft/advancements/critereon/StartRidingTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/StartRidingTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/StartRidingTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/m_160401_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/playerStartsRiding (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/ ()V net/minecraft/advancements/critereon/StatePropertiesPredicate/ ()V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/ (Ljava/util/List;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/ (Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67666_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67667_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate/matches (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67669_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate/matches (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67672_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/checkState (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67675_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/lambda$checkState$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67679_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; net/minecraft/advancements/critereon/StatePropertiesPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67681_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/lambda$serializeToJson$1 (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67684_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate/matches (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67686_ (Ljava/lang/String;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher; net/minecraft/advancements/critereon/StatePropertiesPredicate/fromJson (Ljava/lang/String;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67689_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/advancements/critereon/StatePropertiesPredicate/getStringOrNull (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/ ()V net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67693_ ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/properties ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67694_ (Lnet/minecraft/world/level/block/state/properties/Property;I)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;I)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67697_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67700_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67703_ (Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67706_ ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/m_7517_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/m_7682_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/ (Ljava/lang/String;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/ (Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_67718_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_67721_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/checkState (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_67726_ ()Ljava/lang/String; net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/getName ()Ljava/lang/String; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_7517_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_7682_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/m_7517_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/m_7682_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_68256_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/SummonedEntityTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_68263_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/SummonedEntityTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SummonedEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/SummonedEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/SummonedEntityTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/m_68275_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/summonedEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/m_68279_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/TagPredicate/ (Lnet/minecraft/tags/TagKey;Z)V net/minecraft/advancements/critereon/TagPredicate/ (Lnet/minecraft/tags/TagKey;Z)V +MD: net/minecraft/advancements/critereon/TagPredicate/m_269314_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; net/minecraft/advancements/critereon/TagPredicate/is (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; +MD: net/minecraft/advancements/critereon/TagPredicate/m_269409_ (Lcom/google/gson/JsonElement;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/TagPredicate; net/minecraft/advancements/critereon/TagPredicate/fromJson (Lcom/google/gson/JsonElement;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/TagPredicate; +MD: net/minecraft/advancements/critereon/TagPredicate/m_269422_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; net/minecraft/advancements/critereon/TagPredicate/isNot (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; +MD: net/minecraft/advancements/critereon/TagPredicate/m_269475_ (Lnet/minecraft/core/Holder;)Z net/minecraft/advancements/critereon/TagPredicate/matches (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/advancements/critereon/TagPredicate/m_269579_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/TagPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_68829_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/advancements/critereon/TameAnimalTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_68836_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/TameAnimalTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/TameAnimalTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_68848_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/tamedAnimal (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_68852_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_68854_ ()Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/tamedAnimal ()Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_70211_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;I)V net/minecraft/advancements/critereon/TargetBlockTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;I)V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_70220_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/TargetBlockTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/TargetBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/TargetBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/TargetBlockTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/m_285906_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/targetHit (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/m_70241_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/TradeTrigger/ ()V net/minecraft/advancements/critereon/TradeTrigger/ ()V +MD: net/minecraft/advancements/critereon/TradeTrigger/ ()V net/minecraft/advancements/critereon/TradeTrigger/ ()V +MD: net/minecraft/advancements/critereon/TradeTrigger/m_70959_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/npc/AbstractVillager;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/TradeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/npc/AbstractVillager;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/TradeTrigger/m_70967_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/TradeTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/TradeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; net/minecraft/advancements/critereon/TradeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/TradeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/TradeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_191436_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/tradedWithVillager (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_70984_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_70987_ ()Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/tradedWithVillager ()Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/UsedEnderEyeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedEnderEyeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/UsedEnderEyeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_73932_ (DLnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/UsedEnderEyeTrigger/lambda$trigger$0 (DLnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_73935_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;)V net/minecraft/advancements/critereon/UsedEnderEyeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/m_73951_ (D)Z net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/matches (D)Z +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/UsedTotemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_74431_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/UsedTotemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_74434_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/UsedTotemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_163724_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/usedTotem (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_74450_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_74452_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/usedTotem (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/UsingItemTrigger/ ()V net/minecraft/advancements/critereon/UsingItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsingItemTrigger/ ()V net/minecraft/advancements/critereon/UsingItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_163865_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/UsingItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_163868_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/UsingItemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsingItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/UsingItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/UsingItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/m_163883_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/lookingAt (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/m_163886_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/ ()V net/minecraft/advancements/critereon/WrappedMinMaxBounds/ ()V +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/ (Ljava/lang/Float;Ljava/lang/Float;)V net/minecraft/advancements/critereon/WrappedMinMaxBounds/ (Ljava/lang/Float;Ljava/lang/Float;)V +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164400_ (D)Z net/minecraft/advancements/critereon/WrappedMinMaxBounds/matchesSqr (D)Z +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164402_ (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/exactly (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164404_ (FF)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/between (FF)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164407_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164409_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/fromReader (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164412_ (Ljava/lang/Float;)Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/lambda$fromReader$0 (Ljava/lang/Float;)Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164414_ (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/atLeast (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164416_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/WrappedMinMaxBounds/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164417_ (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/atMost (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164419_ (F)Z net/minecraft/advancements/critereon/WrappedMinMaxBounds/matches (F)Z +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75358_ ()Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/getMin ()Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75359_ (Lcom/mojang/brigadier/StringReader;ZLjava/util/function/Function;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/fromReader (Lcom/mojang/brigadier/StringReader;ZLjava/util/function/Function;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75363_ (Ljava/lang/Float;Ljava/util/function/Function;)Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/optionallyFormat (Ljava/lang/Float;Ljava/util/function/Function;)Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75366_ ()Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/getMax ()Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75367_ (Lcom/mojang/brigadier/StringReader;Z)Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/readNumber (Lcom/mojang/brigadier/StringReader;Z)Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75370_ (Lcom/mojang/brigadier/StringReader;Z)Z net/minecraft/advancements/critereon/WrappedMinMaxBounds/isAllowedNumber (Lcom/mojang/brigadier/StringReader;Z)Z +MD: net/minecraft/client/AttackIndicatorStatus/ ()V net/minecraft/client/AttackIndicatorStatus/ ()V +MD: net/minecraft/client/AttackIndicatorStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/AttackIndicatorStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/AttackIndicatorStatus/m_167682_ ()[Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/$values ()[Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/AttackIndicatorStatus/m_35965_ ()I net/minecraft/client/AttackIndicatorStatus/getId ()I +MD: net/minecraft/client/AttackIndicatorStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/AttackIndicatorStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/AttackIndicatorStatus/m_90509_ (I)Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/byId (I)Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/AttackIndicatorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/AttackIndicatorStatus/values ()[Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/values ()[Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/Camera/ ()V net/minecraft/client/Camera/ ()V +MD: net/minecraft/client/Camera/m_167684_ ()Lnet/minecraft/client/Camera$NearPlane; net/minecraft/client/Camera/getNearPlane ()Lnet/minecraft/client/Camera$NearPlane; +MD: net/minecraft/client/Camera/m_167685_ ()Lnet/minecraft/world/level/material/FogType; net/minecraft/client/Camera/getFluidInCamera ()Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/client/Camera/m_252775_ ()Lorg/joml/Vector3f; net/minecraft/client/Camera/getLeftVector ()Lorg/joml/Vector3f; +MD: net/minecraft/client/Camera/m_253028_ ()Lorg/joml/Vector3f; net/minecraft/client/Camera/getUpVector ()Lorg/joml/Vector3f; +MD: net/minecraft/client/Camera/m_253058_ ()Lorg/joml/Vector3f; net/minecraft/client/Camera/getLookVector ()Lorg/joml/Vector3f; +MD: net/minecraft/client/Camera/m_253121_ ()Lorg/joml/Quaternionf; net/minecraft/client/Camera/rotation ()Lorg/joml/Quaternionf; +MD: net/minecraft/client/Camera/m_90565_ ()V net/minecraft/client/Camera/tick ()V +MD: net/minecraft/client/Camera/m_90566_ (D)D net/minecraft/client/Camera/getMaxZoom (D)D +MD: net/minecraft/client/Camera/m_90568_ (DDD)V net/minecraft/client/Camera/move (DDD)V +MD: net/minecraft/client/Camera/m_90572_ (FF)V net/minecraft/client/Camera/setRotation (FF)V +MD: net/minecraft/client/Camera/m_90575_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;ZZF)V net/minecraft/client/Camera/setup (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;ZZF)V +MD: net/minecraft/client/Camera/m_90581_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/Camera/setPosition (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/Camera/m_90583_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera/m_90584_ (DDD)V net/minecraft/client/Camera/setPosition (DDD)V +MD: net/minecraft/client/Camera/m_90588_ ()Lnet/minecraft/core/BlockPos; net/minecraft/client/Camera/getBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/client/Camera/m_90589_ ()F net/minecraft/client/Camera/getXRot ()F +MD: net/minecraft/client/Camera/m_90590_ ()F net/minecraft/client/Camera/getYRot ()F +MD: net/minecraft/client/Camera/m_90592_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/client/Camera/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/Camera/m_90593_ ()Z net/minecraft/client/Camera/isInitialized ()Z +MD: net/minecraft/client/Camera/m_90594_ ()Z net/minecraft/client/Camera/isDetached ()Z +MD: net/minecraft/client/Camera/m_90598_ ()V net/minecraft/client/Camera/reset ()V +MD: net/minecraft/client/Camera$NearPlane/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/Camera$NearPlane/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/Camera$NearPlane/m_167694_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getTopLeft ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167695_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getPointOnPlane (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167698_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getTopRight ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167699_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getBottomLeft ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167700_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getBottomRight ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/CameraType/ ()V net/minecraft/client/CameraType/ ()V +MD: net/minecraft/client/CameraType/ (Ljava/lang/String;IZZ)V net/minecraft/client/CameraType/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/client/CameraType/m_167703_ ()[Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/$values ()[Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/CameraType/m_90612_ ()Z net/minecraft/client/CameraType/isFirstPerson ()Z +MD: net/minecraft/client/CameraType/m_90613_ ()Z net/minecraft/client/CameraType/isMirrored ()Z +MD: net/minecraft/client/CameraType/m_90614_ ()Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/cycle ()Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/CameraType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/CameraType/values ()[Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/values ()[Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/ClientBrandRetriever/ ()V net/minecraft/client/ClientBrandRetriever/ ()V +MD: net/minecraft/client/ClientBrandRetriever/getClientModName ()Ljava/lang/String; net/minecraft/client/ClientBrandRetriever/getClientModName ()Ljava/lang/String; +MD: net/minecraft/client/ClientRecipeBook/ ()V net/minecraft/client/ClientRecipeBook/ ()V +MD: net/minecraft/client/ClientRecipeBook/ ()V net/minecraft/client/ClientRecipeBook/ ()V +MD: net/minecraft/client/ClientRecipeBook/m_167704_ (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/stream/Stream; net/minecraft/client/ClientRecipeBook/lambda$setupCollections$2 (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/stream/Stream; +MD: net/minecraft/client/ClientRecipeBook/m_257059_ (Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/Object; net/minecraft/client/ClientRecipeBook/lambda$getCategory$6 (Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/Object; +MD: net/minecraft/client/ClientRecipeBook/m_266117_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V net/minecraft/client/ClientRecipeBook/lambda$setupCollections$1 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V +MD: net/minecraft/client/ClientRecipeBook/m_266118_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/ClientRecipeBook/lambda$setupCollections$0 (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/ClientRecipeBook/m_266394_ (Ljava/lang/Iterable;Lnet/minecraft/core/RegistryAccess;)V net/minecraft/client/ClientRecipeBook/setupCollections (Ljava/lang/Iterable;Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/client/ClientRecipeBook/m_90623_ (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; net/minecraft/client/ClientRecipeBook/getCollection (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90635_ (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V net/minecraft/client/ClientRecipeBook/lambda$setupCollections$3 (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V +MD: net/minecraft/client/ClientRecipeBook/m_90639_ ()Ljava/util/List; net/minecraft/client/ClientRecipeBook/getCollections ()Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90640_ (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; net/minecraft/client/ClientRecipeBook/lambda$categorizeAndGroupRecipes$5 (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90642_ (Ljava/lang/Iterable;)Ljava/util/Map; net/minecraft/client/ClientRecipeBook/categorizeAndGroupRecipes (Ljava/lang/Iterable;)Ljava/util/Map; +MD: net/minecraft/client/ClientRecipeBook/m_90644_ (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; net/minecraft/client/ClientRecipeBook/lambda$categorizeAndGroupRecipes$4 (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90646_ (Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/ClientRecipeBook/getCategory (Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/ClientRecipeBook$1/ ()V net/minecraft/client/ClientRecipeBook$1/ ()V +MD: net/minecraft/client/CloudStatus/ ()V net/minecraft/client/CloudStatus/ ()V +MD: net/minecraft/client/CloudStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/CloudStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/CloudStatus/m_167711_ ()[Lnet/minecraft/client/CloudStatus; net/minecraft/client/CloudStatus/$values ()[Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/CloudStatus/m_35965_ ()I net/minecraft/client/CloudStatus/getId ()I +MD: net/minecraft/client/CloudStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/CloudStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/CloudStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/CloudStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/CloudStatus/values ()[Lnet/minecraft/client/CloudStatus; net/minecraft/client/CloudStatus/values ()[Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/ComponentCollector/ ()V net/minecraft/client/ComponentCollector/ ()V +MD: net/minecraft/client/ComponentCollector/m_167712_ ()V net/minecraft/client/ComponentCollector/reset ()V +MD: net/minecraft/client/ComponentCollector/m_90674_ ()Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/ComponentCollector/getResult ()Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/ComponentCollector/m_90675_ (Lnet/minecraft/network/chat/FormattedText;)V net/minecraft/client/ComponentCollector/append (Lnet/minecraft/network/chat/FormattedText;)V +MD: net/minecraft/client/ComponentCollector/m_90677_ ()Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/ComponentCollector/getResultOrEmpty ()Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/DebugQueryHandler/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;)V net/minecraft/client/DebugQueryHandler/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;)V +MD: net/minecraft/client/DebugQueryHandler/m_90702_ (ILjava/util/function/Consumer;)V net/minecraft/client/DebugQueryHandler/queryEntityTag (ILjava/util/function/Consumer;)V +MD: net/minecraft/client/DebugQueryHandler/m_90705_ (ILnet/minecraft/nbt/CompoundTag;)Z net/minecraft/client/DebugQueryHandler/handleResponse (ILnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/client/DebugQueryHandler/m_90708_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V net/minecraft/client/DebugQueryHandler/queryBlockEntityTag (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/DebugQueryHandler/m_90711_ (Ljava/util/function/Consumer;)I net/minecraft/client/DebugQueryHandler/startTransaction (Ljava/util/function/Consumer;)I +MD: net/minecraft/client/GameNarrator/ ()V net/minecraft/client/GameNarrator/ ()V +MD: net/minecraft/client/GameNarrator/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/GameNarrator/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/GameNarrator/m_168785_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/GameNarrator/sayNow (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/GameNarrator/m_168787_ (Ljava/lang/String;)V net/minecraft/client/GameNarrator/logNarratedMessage (Ljava/lang/String;)V +MD: net/minecraft/client/GameNarrator/m_263194_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/GameNarrator/sayChat (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/GameNarrator/m_263195_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/GameNarrator/say (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/GameNarrator/m_288189_ (Z)V net/minecraft/client/GameNarrator/checkStatus (Z)V +MD: net/minecraft/client/GameNarrator/m_93316_ ()Z net/minecraft/client/GameNarrator/isActive ()Z +MD: net/minecraft/client/GameNarrator/m_93317_ (Lnet/minecraft/client/NarratorStatus;)V net/minecraft/client/GameNarrator/updateNarratorStatus (Lnet/minecraft/client/NarratorStatus;)V +MD: net/minecraft/client/GameNarrator/m_93319_ (Ljava/lang/String;)V net/minecraft/client/GameNarrator/sayNow (Ljava/lang/String;)V +MD: net/minecraft/client/GameNarrator/m_93328_ ()V net/minecraft/client/GameNarrator/clear ()V +MD: net/minecraft/client/GameNarrator/m_93329_ ()V net/minecraft/client/GameNarrator/destroy ()V +MD: net/minecraft/client/GameNarrator/m_93330_ ()Lnet/minecraft/client/NarratorStatus; net/minecraft/client/GameNarrator/getStatus ()Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/GameNarrator$NarratorInitException/ (Ljava/lang/String;)V net/minecraft/client/GameNarrator$NarratorInitException/ (Ljava/lang/String;)V +MD: net/minecraft/client/GraphicsStatus/ ()V net/minecraft/client/GraphicsStatus/ ()V +MD: net/minecraft/client/GraphicsStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/GraphicsStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/GraphicsStatus/m_167803_ ()[Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/$values ()[Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus/m_35965_ ()I net/minecraft/client/GraphicsStatus/getId ()I +MD: net/minecraft/client/GraphicsStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/GraphicsStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/GraphicsStatus/m_90774_ (I)Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/byId (I)Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus/toString ()Ljava/lang/String; net/minecraft/client/GraphicsStatus/toString ()Ljava/lang/String; +MD: net/minecraft/client/GraphicsStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus/values ()[Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/values ()[Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus$1/ ()V net/minecraft/client/GraphicsStatus$1/ ()V +MD: net/minecraft/client/GuiMessage/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V net/minecraft/client/GuiMessage/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V +MD: net/minecraft/client/GuiMessage/equals (Ljava/lang/Object;)Z net/minecraft/client/GuiMessage/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/GuiMessage/f_240352_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessage/tag ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessage/f_240363_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/GuiMessage/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/GuiMessage/f_240905_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/GuiMessage/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/GuiMessage/f_90786_ ()I net/minecraft/client/GuiMessage/addedTime ()I +MD: net/minecraft/client/GuiMessage/hashCode ()I net/minecraft/client/GuiMessage/hashCode ()I +MD: net/minecraft/client/GuiMessage/toString ()Ljava/lang/String; net/minecraft/client/GuiMessage/toString ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessage$Line/ (ILnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/client/GuiMessageTag;Z)V net/minecraft/client/GuiMessage$Line/ (ILnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/client/GuiMessageTag;Z)V +MD: net/minecraft/client/GuiMessage$Line/equals (Ljava/lang/Object;)Z net/minecraft/client/GuiMessage$Line/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/GuiMessage$Line/f_240339_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/GuiMessage$Line/content ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/GuiMessage$Line/f_240350_ ()I net/minecraft/client/GuiMessage$Line/addedTime ()I +MD: net/minecraft/client/GuiMessage$Line/f_240351_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessage$Line/tag ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessage$Line/f_240367_ ()Z net/minecraft/client/GuiMessage$Line/endOfEntry ()Z +MD: net/minecraft/client/GuiMessage$Line/hashCode ()I net/minecraft/client/GuiMessage$Line/hashCode ()I +MD: net/minecraft/client/GuiMessage$Line/toString ()Ljava/lang/String; net/minecraft/client/GuiMessage$Line/toString ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessageTag/ ()V net/minecraft/client/GuiMessageTag/ ()V +MD: net/minecraft/client/GuiMessageTag/ (ILnet/minecraft/client/GuiMessageTag$Icon;Lnet/minecraft/network/chat/Component;Ljava/lang/String;)V net/minecraft/client/GuiMessageTag/ (ILnet/minecraft/client/GuiMessageTag$Icon;Lnet/minecraft/network/chat/Component;Ljava/lang/String;)V +MD: net/minecraft/client/GuiMessageTag/equals (Ljava/lang/Object;)Z net/minecraft/client/GuiMessageTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/GuiMessageTag/f_240342_ ()Ljava/lang/String; net/minecraft/client/GuiMessageTag/logTag ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessageTag/f_240355_ ()Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag/icon ()Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/GuiMessageTag/f_240381_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/GuiMessageTag/text ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/GuiMessageTag/f_240386_ ()I net/minecraft/client/GuiMessageTag/indicatorColor ()I +MD: net/minecraft/client/GuiMessageTag/hashCode ()I net/minecraft/client/GuiMessageTag/hashCode ()I +MD: net/minecraft/client/GuiMessageTag/m_240400_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/chatNotSecure ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/m_240466_ (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/chatModified (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/m_240701_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/system ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/m_257673_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/systemSinglePlayer ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/toString ()Ljava/lang/String; net/minecraft/client/GuiMessageTag/toString ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessageTag$Icon/ ()V net/minecraft/client/GuiMessageTag$Icon/ ()V +MD: net/minecraft/client/GuiMessageTag$Icon/ (Ljava/lang/String;IIIII)V net/minecraft/client/GuiMessageTag$Icon/ (Ljava/lang/String;IIIII)V +MD: net/minecraft/client/GuiMessageTag$Icon/m_240404_ ()[Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag$Icon/$values ()[Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/GuiMessageTag$Icon/m_280252_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/GuiMessageTag$Icon/draw (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/GuiMessageTag$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/GuiMessageTag$Icon/values ()[Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag$Icon/values ()[Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/HotbarManager/ ()V net/minecraft/client/HotbarManager/ ()V +MD: net/minecraft/client/HotbarManager/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/client/HotbarManager/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/client/HotbarManager/m_90805_ ()V net/minecraft/client/HotbarManager/save ()V +MD: net/minecraft/client/HotbarManager/m_90806_ (I)Lnet/minecraft/client/player/inventory/Hotbar; net/minecraft/client/HotbarManager/get (I)Lnet/minecraft/client/player/inventory/Hotbar; +MD: net/minecraft/client/HotbarManager/m_90808_ ()V net/minecraft/client/HotbarManager/load ()V +MD: net/minecraft/client/InputType/ ()V net/minecraft/client/InputType/ ()V +MD: net/minecraft/client/InputType/ (Ljava/lang/String;I)V net/minecraft/client/InputType/ (Ljava/lang/String;I)V +MD: net/minecraft/client/InputType/m_264153_ ()[Lnet/minecraft/client/InputType; net/minecraft/client/InputType/$values ()[Lnet/minecraft/client/InputType; +MD: net/minecraft/client/InputType/m_264505_ ()Z net/minecraft/client/InputType/isKeyboard ()Z +MD: net/minecraft/client/InputType/m_264588_ ()Z net/minecraft/client/InputType/isMouse ()Z +MD: net/minecraft/client/InputType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/InputType; net/minecraft/client/InputType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/InputType; +MD: net/minecraft/client/InputType/values ()[Lnet/minecraft/client/InputType; net/minecraft/client/InputType/values ()[Lnet/minecraft/client/InputType; +MD: net/minecraft/client/KeyMapping/ ()V net/minecraft/client/KeyMapping/ ()V +MD: net/minecraft/client/KeyMapping/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/KeyMapping/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/KeyMapping/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)V net/minecraft/client/KeyMapping/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)V +MD: net/minecraft/client/KeyMapping/compareTo (Ljava/lang/Object;)I net/minecraft/client/KeyMapping/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/client/KeyMapping/compareTo (Lnet/minecraft/client/KeyMapping;)I net/minecraft/client/KeyMapping/compareTo (Lnet/minecraft/client/KeyMapping;)I +MD: net/minecraft/client/KeyMapping/m_289723_ ()V net/minecraft/client/KeyMapping/resetToggleKeys ()V +MD: net/minecraft/client/KeyMapping/m_7249_ (Z)V net/minecraft/client/KeyMapping/setDown (Z)V +MD: net/minecraft/client/KeyMapping/m_90829_ ()V net/minecraft/client/KeyMapping/setAll ()V +MD: net/minecraft/client/KeyMapping/m_90830_ (I)Z net/minecraft/client/KeyMapping/matchesMouse (I)Z +MD: net/minecraft/client/KeyMapping/m_90832_ (II)Z net/minecraft/client/KeyMapping/matches (II)Z +MD: net/minecraft/client/KeyMapping/m_90835_ (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V net/minecraft/client/KeyMapping/click (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V +MD: net/minecraft/client/KeyMapping/m_90837_ (Lcom/mojang/blaze3d/platform/InputConstants$Key;Z)V net/minecraft/client/KeyMapping/set (Lcom/mojang/blaze3d/platform/InputConstants$Key;Z)V +MD: net/minecraft/client/KeyMapping/m_90842_ (Ljava/lang/String;)Ljava/util/function/Supplier; net/minecraft/client/KeyMapping/createNameSupplier (Ljava/lang/String;)Ljava/util/function/Supplier; +MD: net/minecraft/client/KeyMapping/m_90844_ (Ljava/util/HashMap;)V net/minecraft/client/KeyMapping/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/KeyMapping/m_90847_ ()V net/minecraft/client/KeyMapping/releaseAll ()V +MD: net/minecraft/client/KeyMapping/m_90848_ (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V net/minecraft/client/KeyMapping/setKey (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V +MD: net/minecraft/client/KeyMapping/m_90850_ (Lnet/minecraft/client/KeyMapping;)Z net/minecraft/client/KeyMapping/same (Lnet/minecraft/client/KeyMapping;)Z +MD: net/minecraft/client/KeyMapping/m_90852_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/KeyMapping/lambda$createNameSupplier$1 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/KeyMapping/m_90854_ ()V net/minecraft/client/KeyMapping/resetMapping ()V +MD: net/minecraft/client/KeyMapping/m_90857_ ()Z net/minecraft/client/KeyMapping/isDown ()Z +MD: net/minecraft/client/KeyMapping/m_90858_ ()Ljava/lang/String; net/minecraft/client/KeyMapping/getCategory ()Ljava/lang/String; +MD: net/minecraft/client/KeyMapping/m_90859_ ()Z net/minecraft/client/KeyMapping/consumeClick ()Z +MD: net/minecraft/client/KeyMapping/m_90860_ ()Ljava/lang/String; net/minecraft/client/KeyMapping/getName ()Ljava/lang/String; +MD: net/minecraft/client/KeyMapping/m_90861_ ()Lcom/mojang/blaze3d/platform/InputConstants$Key; net/minecraft/client/KeyMapping/getDefaultKey ()Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: net/minecraft/client/KeyMapping/m_90862_ ()Z net/minecraft/client/KeyMapping/isUnbound ()Z +MD: net/minecraft/client/KeyMapping/m_90863_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/KeyMapping/getTranslatedKeyMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/KeyMapping/m_90864_ ()Z net/minecraft/client/KeyMapping/isDefault ()Z +MD: net/minecraft/client/KeyMapping/m_90865_ ()Ljava/lang/String; net/minecraft/client/KeyMapping/saveString ()Ljava/lang/String; +MD: net/minecraft/client/KeyMapping/m_90866_ ()V net/minecraft/client/KeyMapping/release ()V +MD: net/minecraft/client/KeyboardHandler/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/KeyboardHandler/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/KeyboardHandler/m_167813_ (I)Z net/minecraft/client/KeyboardHandler/handleChunkDebugKeys (I)Z +MD: net/minecraft/client/KeyboardHandler/m_167822_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/debugFeedbackComponent (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_167824_ (Lnet/minecraft/ChatFormatting;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/debugComponent (Lnet/minecraft/ChatFormatting;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_167827_ (JII)V net/minecraft/client/KeyboardHandler/lambda$setup$10 (JII)V +MD: net/minecraft/client/KeyboardHandler/m_167831_ (JIIII)V net/minecraft/client/KeyboardHandler/lambda$setup$8 (JIIII)V +MD: net/minecraft/client/KeyboardHandler/m_167837_ (Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/client/KeyboardHandler/debugFeedback (Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/client/KeyboardHandler/m_167840_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/lambda$keyPress$3 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_260734_ (ILnet/minecraft/client/gui/screens/Screen;[ZIII)V net/minecraft/client/KeyboardHandler/lambda$keyPress$5 (ILnet/minecraft/client/gui/screens/Screen;[ZIII)V +MD: net/minecraft/client/KeyboardHandler/m_276074_ (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/KeyboardHandler/lambda$handleDebugKeys$0 (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/KeyboardHandler/m_90876_ ()Ljava/lang/String; net/minecraft/client/KeyboardHandler/getClipboard ()Ljava/lang/String; +MD: net/minecraft/client/KeyboardHandler/m_90877_ (IJ)V net/minecraft/client/KeyboardHandler/lambda$getClipboard$12 (IJ)V +MD: net/minecraft/client/KeyboardHandler/m_90887_ (J)V net/minecraft/client/KeyboardHandler/setup (J)V +MD: net/minecraft/client/KeyboardHandler/m_90889_ (JII)V net/minecraft/client/KeyboardHandler/charTyped (JII)V +MD: net/minecraft/client/KeyboardHandler/m_90893_ (JIIII)V net/minecraft/client/KeyboardHandler/keyPress (JIIII)V +MD: net/minecraft/client/KeyboardHandler/m_90899_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/copyCreateBlockCommand (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90903_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;CI)V net/minecraft/client/KeyboardHandler/lambda$charTyped$7 (Lnet/minecraft/client/gui/components/events/GuiEventListener;CI)V +MD: net/minecraft/client/KeyboardHandler/m_90907_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;II)V net/minecraft/client/KeyboardHandler/lambda$charTyped$6 (Lnet/minecraft/client/gui/components/events/GuiEventListener;II)V +MD: net/minecraft/client/KeyboardHandler/m_90911_ (Ljava/lang/String;)V net/minecraft/client/KeyboardHandler/setClipboard (Ljava/lang/String;)V +MD: net/minecraft/client/KeyboardHandler/m_90913_ (Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/client/KeyboardHandler/debugFeedbackTranslated (Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/client/KeyboardHandler/m_90916_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/lambda$keyPress$4 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_90918_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/lambda$copyRecreateCommand$2 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90922_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/copyCreateEntityCommand (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90928_ (ZZ)V net/minecraft/client/KeyboardHandler/copyRecreateCommand (ZZ)V +MD: net/minecraft/client/KeyboardHandler/m_90931_ ()V net/minecraft/client/KeyboardHandler/tick ()V +MD: net/minecraft/client/KeyboardHandler/m_90932_ (I)Z net/minecraft/client/KeyboardHandler/handleDebugKeys (I)Z +MD: net/minecraft/client/KeyboardHandler/m_90934_ (JII)V net/minecraft/client/KeyboardHandler/lambda$setup$11 (JII)V +MD: net/minecraft/client/KeyboardHandler/m_90938_ (JIIII)V net/minecraft/client/KeyboardHandler/lambda$setup$9 (JIIII)V +MD: net/minecraft/client/KeyboardHandler/m_90944_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/lambda$copyRecreateCommand$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90948_ (Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/client/KeyboardHandler/debugWarningTranslated (Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/client/KeyboardHandler$1/ ()V net/minecraft/client/KeyboardHandler$1/ ()V +MD: net/minecraft/client/Minecraft/ ()V net/minecraft/client/Minecraft/ ()V +MD: net/minecraft/client/Minecraft/ (Lnet/minecraft/client/main/GameConfig;)V net/minecraft/client/Minecraft/ (Lnet/minecraft/client/main/GameConfig;)V +MD: net/minecraft/client/Minecraft/close ()V net/minecraft/client/Minecraft/close ()V +MD: net/minecraft/client/Minecraft/m_167850_ (Lnet/minecraft/SystemReport;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;)Lnet/minecraft/SystemReport; net/minecraft/client/Minecraft/fillSystemReport (Lnet/minecraft/SystemReport;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;)Lnet/minecraft/SystemReport; +MD: net/minecraft/client/Minecraft/m_167856_ (Lnet/minecraft/SystemReport;Ljava/util/List;)Ljava/nio/file/Path; net/minecraft/client/Minecraft/archiveProfilingReport (Lnet/minecraft/SystemReport;Ljava/util/List;)Ljava/nio/file/Path; +MD: net/minecraft/client/Minecraft/m_167872_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/fillReport (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_167899_ (Ljava/io/File;II)Lnet/minecraft/network/chat/Component; net/minecraft/client/Minecraft/grabPanoramixScreenshot (Ljava/io/File;II)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Minecraft/m_167903_ (Ljava/io/File;IIII)Lnet/minecraft/network/chat/Component; net/minecraft/client/Minecraft/grabHugeScreenshot (Ljava/io/File;IIII)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Minecraft/m_167946_ (Ljava/util/function/Consumer;)Z net/minecraft/client/Minecraft/debugClientMetricsStart (Ljava/util/function/Consumer;)Z +MD: net/minecraft/client/Minecraft/m_167970_ (ZLnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/client/Minecraft/constructProfiler (ZLnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/client/Minecraft/m_167973_ ()Lnet/minecraft/client/model/geom/EntityModelSet; net/minecraft/client/Minecraft/getEntityModels ()Lnet/minecraft/client/model/geom/EntityModelSet; +MD: net/minecraft/client/Minecraft/m_167974_ ()Z net/minecraft/client/Minecraft/isTextFilteringEnabled ()Z +MD: net/minecraft/client/Minecraft/m_167975_ ()V net/minecraft/client/Minecraft/debugClientMetricsStop ()V +MD: net/minecraft/client/Minecraft/m_167982_ ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; net/minecraft/client/Minecraft/getBlockEntityRenderDispatcher ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; +MD: net/minecraft/client/Minecraft/m_167983_ ()Lnet/minecraft/server/level/progress/StoringChunkProgressListener; net/minecraft/client/Minecraft/getProgressListener ()Lnet/minecraft/server/level/progress/StoringChunkProgressListener; +MD: net/minecraft/client/Minecraft/m_168019_ (Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/Minecraft/reloadResourcePacks (Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/Minecraft/m_168021_ ()Z net/minecraft/client/Minecraft/allowsRealms ()Z +MD: net/minecraft/client/Minecraft/m_168022_ ()Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft/getChatStatus ()Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft/m_193585_ (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lnet/minecraft/client/main/GameConfig;)Lcom/mojang/authlib/minecraft/UserApiService; net/minecraft/client/Minecraft/createUserApiService (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lnet/minecraft/client/main/GameConfig;)Lcom/mojang/authlib/minecraft/UserApiService; +MD: net/minecraft/client/Minecraft/m_193588_ ()V net/minecraft/client/Minecraft/prepareForMultiplayer ()V +MD: net/minecraft/client/Minecraft/m_193589_ ()Lnet/minecraft/util/ModCheck; net/minecraft/client/Minecraft/checkModStatus ()Lnet/minecraft/util/ModCheck; +MD: net/minecraft/client/Minecraft/m_202354_ ()Z net/minecraft/client/Minecraft/startAttack ()Z +MD: net/minecraft/client/Minecraft/m_210744_ (Ljava/util/Optional;)V net/minecraft/client/Minecraft/lambda$new$2 (Ljava/util/Optional;)V +MD: net/minecraft/client/Minecraft/m_210770_ ()Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$48 ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_210774_ ()I net/minecraft/client/Minecraft/lambda$new$0 ()I +MD: net/minecraft/client/Minecraft/m_210782_ (Ljava/lang/Object;)Z net/minecraft/client/Minecraft/countryEqualsISO3 (Ljava/lang/Object;)Z +MD: net/minecraft/client/Minecraft/m_210806_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$createSearchTrees$5 (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_210808_ (Ljava/lang/String;)Z net/minecraft/client/Minecraft/lambda$createSearchTrees$6 (Ljava/lang/String;)Z +MD: net/minecraft/client/Minecraft/m_231344_ (Lnet/minecraft/server/WorldStem;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$doWorldLoad$42 (Lnet/minecraft/server/WorldStem;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231346_ (Lnet/minecraft/SystemReport;Ljava/util/function/Consumer;Ljava/util/List;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$33 (Lnet/minecraft/SystemReport;Ljava/util/function/Consumer;Ljava/util/List;)V +MD: net/minecraft/client/Minecraft/m_231350_ (Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$36 (Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_231352_ (Ljava/util/function/Consumer;DI)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$28 (Ljava/util/function/Consumer;DI)V +MD: net/minecraft/client/Minecraft/m_231354_ (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/Minecraft/lambda$createSearchTrees$11 (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/Minecraft/m_231356_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Ljava/lang/Thread;)Lnet/minecraft/client/server/IntegratedServer; net/minecraft/client/Minecraft/lambda$doWorldLoad$41 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Ljava/lang/Thread;)Lnet/minecraft/client/server/IntegratedServer; +MD: net/minecraft/client/Minecraft/m_231362_ (Lcom/mojang/blaze3d/systems/TimerQuery;)V net/minecraft/client/Minecraft/lambda$runTick$27 (Lcom/mojang/blaze3d/systems/TimerQuery;)V +MD: net/minecraft/client/Minecraft/m_231364_ (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$45 (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231366_ (Lnet/minecraft/client/Options;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$49 (Lnet/minecraft/client/Options;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231372_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; net/minecraft/client/Minecraft/getSearchTree (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; +MD: net/minecraft/client/Minecraft/m_231374_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V net/minecraft/client/Minecraft/populateSearchTree (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V +MD: net/minecraft/client/Minecraft/m_231377_ (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Minecraft/lambda$grabHugeScreenshot$54 (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Minecraft/m_231385_ (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/Minecraft/lambda$createSearchTrees$9 (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/Minecraft/m_231390_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/Minecraft/lambda$delayTextureReload$51 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/Minecraft/m_231395_ (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$30 (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Minecraft/m_231399_ (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$37 (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_231402_ (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$34 (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V +MD: net/minecraft/client/Minecraft/m_231405_ (Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$35 (Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/Minecraft/m_231409_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$31 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_231412_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/delayCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_231414_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$grabPanoramixScreenshot$52 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_231416_ ()Lnet/minecraft/client/Realms32BitWarningStatus; net/minecraft/client/Minecraft/getRealms32BitWarningStatus ()Lnet/minecraft/client/Realms32BitWarningStatus; +MD: net/minecraft/client/Minecraft/m_231417_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/client/Minecraft/getProfileKeySignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/client/Minecraft/m_231418_ ()V net/minecraft/client/Minecraft/debugClientMetricsCancel ()V +MD: net/minecraft/client/Minecraft/m_231419_ ()Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$47 ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231424_ (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Minecraft/lambda$grabPanoramixScreenshot$53 (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Minecraft/m_231427_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$44 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231429_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$10 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_231431_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/Minecraft/lambda$runTick$26 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/Minecraft/m_231433_ (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$29 (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_231436_ (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$32 (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V +MD: net/minecraft/client/Minecraft/m_231439_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/delayCrashRaw (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_231441_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$doWorldLoad$43 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_231443_ ()Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$46 ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231445_ ()V net/minecraft/client/Minecraft/lambda$tick$38 ()V +MD: net/minecraft/client/Minecraft/m_231446_ (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; net/minecraft/client/Minecraft/lambda$doWorldLoad$40 (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; +MD: net/minecraft/client/Minecraft/m_231448_ (Ljava/lang/String;)Z net/minecraft/client/Minecraft/lambda$createSearchTrees$14 (Ljava/lang/String;)Z +MD: net/minecraft/client/Minecraft/m_231452_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/Minecraft/lambda$reloadResourcePacks$23 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/Minecraft/m_231454_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$createSearchTrees$13 (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231460_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; net/minecraft/client/Minecraft/lambda$delayCrashRaw$21 (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; +MD: net/minecraft/client/Minecraft/m_231462_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; net/minecraft/client/Minecraft/lambda$delayCrash$20 (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; +MD: net/minecraft/client/Minecraft/m_231464_ ()D net/minecraft/client/Minecraft/getGpuUtilization ()D +MD: net/minecraft/client/Minecraft/m_231465_ ()Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; net/minecraft/client/Minecraft/getProfileKeyPairManager ()Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; +MD: net/minecraft/client/Minecraft/m_231466_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows; net/minecraft/client/Minecraft/createWorldOpenFlows ()Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows; +MD: net/minecraft/client/Minecraft/m_238186_ (Z)V net/minecraft/client/Minecraft/lambda$openChatScreen$25 (Z)V +MD: net/minecraft/client/Minecraft/m_238868_ ()Z net/minecraft/client/Minecraft/lambda$tick$39 ()Z +MD: net/minecraft/client/Minecraft/m_239210_ ()Lcom/mojang/authlib/minecraft/BanDetails; net/minecraft/client/Minecraft/multiplayerBan ()Lcom/mojang/authlib/minecraft/BanDetails; +MD: net/minecraft/client/Minecraft/m_239211_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; net/minecraft/client/Minecraft/getReportingContext ()Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; +MD: net/minecraft/client/Minecraft/m_239420_ ()Lcom/mojang/realmsclient/gui/RealmsDataFetcher; net/minecraft/client/Minecraft/realmsDataFetcher ()Lcom/mojang/realmsclient/gui/RealmsDataFetcher; +MD: net/minecraft/client/Minecraft/m_239476_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)V net/minecraft/client/Minecraft/updateReportEnvironment (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)V +MD: net/minecraft/client/Minecraft/m_239929_ ()Z net/minecraft/client/Minecraft/shouldShowBanNotice ()Z +MD: net/minecraft/client/Minecraft/m_240442_ ()Lnet/minecraft/client/multiplayer/chat/ChatListener; net/minecraft/client/Minecraft/getChatListener ()Lnet/minecraft/client/multiplayer/chat/ChatListener; +MD: net/minecraft/client/Minecraft/m_240477_ ()Lnet/minecraft/client/GameNarrator; net/minecraft/client/Minecraft/getNarrator ()Lnet/minecraft/client/GameNarrator; +MD: net/minecraft/client/Minecraft/m_245161_ ()Ljava/nio/file/Path; net/minecraft/client/Minecraft/getResourcePackDirectory ()Ljava/nio/file/Path; +MD: net/minecraft/client/Minecraft/m_246804_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/client/Minecraft/getVanillaPackResources ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/client/Minecraft/m_247489_ ()Lnet/minecraft/client/resources/DownloadedPackSource; net/minecraft/client/Minecraft/getDownloadedPackSource ()Lnet/minecraft/client/resources/DownloadedPackSource; +MD: net/minecraft/client/Minecraft/m_254754_ (Ljava/util/List;)V net/minecraft/client/Minecraft/lambda$createSearchTrees$19 (Ljava/util/List;)V +MD: net/minecraft/client/Minecraft/m_257060_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$7 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_257063_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$8 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_257720_ ()Z net/minecraft/client/Minecraft/isSingleplayer ()Z +MD: net/minecraft/client/Minecraft/m_260875_ ()I net/minecraft/client/Minecraft/getFps ()I +MD: net/minecraft/client/Minecraft/m_260979_ ()Z net/minecraft/client/Minecraft/telemetryOptInExtra ()Z +MD: net/minecraft/client/Minecraft/m_261007_ ()Lnet/minecraft/client/telemetry/ClientTelemetryManager; net/minecraft/client/Minecraft/getTelemetryManager ()Lnet/minecraft/client/telemetry/ClientTelemetryManager; +MD: net/minecraft/client/Minecraft/m_261031_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Z)V net/minecraft/client/Minecraft/doWorldLoad (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Z)V +MD: net/minecraft/client/Minecraft/m_261169_ ()J net/minecraft/client/Minecraft/getFrameTimeNs ()J +MD: net/minecraft/client/Minecraft/m_261210_ ()Z net/minecraft/client/Minecraft/allowsTelemetry ()Z +MD: net/minecraft/client/Minecraft/m_261227_ ()Z net/minecraft/client/Minecraft/extraTelemetryAvailable ()Z +MD: net/minecraft/client/Minecraft/m_263196_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/client/Minecraft/addCustomNbtData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/client/Minecraft/m_263856_ (Lnet/minecraft/client/resources/language/LanguageManager;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$50 (Lnet/minecraft/client/resources/language/LanguageManager;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_264033_ (Lnet/minecraft/client/InputType;)V net/minecraft/client/Minecraft/setLastInputType (Lnet/minecraft/client/InputType;)V +MD: net/minecraft/client/Minecraft/m_264529_ ()Lnet/minecraft/client/InputType; net/minecraft/client/Minecraft/getLastInputType ()Lnet/minecraft/client/InputType; +MD: net/minecraft/client/Minecraft/m_266119_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$12 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_266120_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$17 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_266121_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/Minecraft/lambda$createSearchTrees$16 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/Minecraft/m_266122_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$15 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_271547_ (ZLjava/util/concurrent/CompletableFuture;Ljava/util/Optional;)V net/minecraft/client/Minecraft/lambda$reloadResourcePacks$24 (ZLjava/util/concurrent/CompletableFuture;Ljava/util/Optional;)V +MD: net/minecraft/client/Minecraft/m_271548_ (ZLjava/lang/Throwable;)V net/minecraft/client/Minecraft/lambda$reloadResourcePacks$22 (ZLjava/lang/Throwable;)V +MD: net/minecraft/client/Minecraft/m_271549_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$clearResourcePacksOnError$4 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_271937_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/addResourcePackLoadFailToast (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_272186_ ()V net/minecraft/client/Minecraft/abortResourcePackRecovery ()V +MD: net/minecraft/client/Minecraft/m_278518_ (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig;Z)V net/minecraft/client/Minecraft/lambda$new$3 (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig;Z)V +MD: net/minecraft/client/Minecraft/m_278644_ ()Lnet/minecraft/client/quickplay/QuickPlayLog; net/minecraft/client/Minecraft/quickPlayLog ()Lnet/minecraft/client/quickplay/QuickPlayLog; +MD: net/minecraft/client/Minecraft/m_278684_ (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V net/minecraft/client/Minecraft/setInitialScreen (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V +MD: net/minecraft/client/Minecraft/m_280564_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/renderFpsMeter (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_285666_ ()V net/minecraft/client/Minecraft/lambda$new$1 ()V +MD: net/minecraft/client/Minecraft/m_286052_ ()V net/minecraft/client/Minecraft/onGameLoadFinished ()V +MD: net/minecraft/client/Minecraft/m_5740_ ()V net/minecraft/client/Minecraft/cursorEntered ()V +MD: net/minecraft/client/Minecraft/m_5741_ ()V net/minecraft/client/Minecraft/resizeDisplay ()V +MD: net/minecraft/client/Minecraft/m_6304_ ()Ljava/lang/Thread; net/minecraft/client/Minecraft/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/client/Minecraft/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/client/Minecraft/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/client/Minecraft/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/client/Minecraft/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/client/Minecraft/m_7440_ (Z)V net/minecraft/client/Minecraft/setWindowActive (Z)V +MD: net/minecraft/client/Minecraft/m_91085_ ()Z net/minecraft/client/Minecraft/useShaderTransparency ()Z +MD: net/minecraft/client/Minecraft/m_91086_ ()Z net/minecraft/client/Minecraft/useAmbientOcclusion ()Z +MD: net/minecraft/client/Minecraft/m_91087_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/Minecraft/getInstance ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/Minecraft/m_91088_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/Minecraft/delayTextureReload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/Minecraft/m_91089_ ()Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/Minecraft/getCurrentServer ()Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/Minecraft/m_91090_ ()Z net/minecraft/client/Minecraft/isLocalServer ()Z +MD: net/minecraft/client/Minecraft/m_91091_ ()Z net/minecraft/client/Minecraft/hasSingleplayerServer ()Z +MD: net/minecraft/client/Minecraft/m_91092_ ()Lnet/minecraft/client/server/IntegratedServer; net/minecraft/client/Minecraft/getSingleplayerServer ()Lnet/minecraft/client/server/IntegratedServer; +MD: net/minecraft/client/Minecraft/m_91094_ ()Lnet/minecraft/client/User; net/minecraft/client/Minecraft/getUser ()Lnet/minecraft/client/User; +MD: net/minecraft/client/Minecraft/m_91095_ ()Lcom/mojang/authlib/properties/PropertyMap; net/minecraft/client/Minecraft/getProfileProperties ()Lcom/mojang/authlib/properties/PropertyMap; +MD: net/minecraft/client/Minecraft/m_91096_ ()Ljava/net/Proxy; net/minecraft/client/Minecraft/getProxy ()Ljava/net/Proxy; +MD: net/minecraft/client/Minecraft/m_91097_ ()Lnet/minecraft/client/renderer/texture/TextureManager; net/minecraft/client/Minecraft/getTextureManager ()Lnet/minecraft/client/renderer/texture/TextureManager; +MD: net/minecraft/client/Minecraft/m_91098_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/client/Minecraft/getResourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/client/Minecraft/m_91099_ ()Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/client/Minecraft/getResourcePackRepository ()Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/client/Minecraft/m_91102_ ()Lnet/minecraft/client/resources/language/LanguageManager; net/minecraft/client/Minecraft/getLanguageManager ()Lnet/minecraft/client/resources/language/LanguageManager; +MD: net/minecraft/client/Minecraft/m_91103_ ()Z net/minecraft/client/Minecraft/is64Bit ()Z +MD: net/minecraft/client/Minecraft/m_91104_ ()Z net/minecraft/client/Minecraft/isPaused ()Z +MD: net/minecraft/client/Minecraft/m_91105_ ()Lnet/minecraft/client/renderer/GpuWarnlistManager; net/minecraft/client/Minecraft/getGpuWarnlistManager ()Lnet/minecraft/client/renderer/GpuWarnlistManager; +MD: net/minecraft/client/Minecraft/m_91106_ ()Lnet/minecraft/client/sounds/SoundManager; net/minecraft/client/Minecraft/getSoundManager ()Lnet/minecraft/client/sounds/SoundManager; +MD: net/minecraft/client/Minecraft/m_91107_ ()Lnet/minecraft/sounds/Music; net/minecraft/client/Minecraft/getSituationalMusic ()Lnet/minecraft/sounds/Music; +MD: net/minecraft/client/Minecraft/m_91108_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/client/Minecraft/getMinecraftSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/client/Minecraft/m_91109_ ()Lnet/minecraft/client/resources/SkinManager; net/minecraft/client/Minecraft/getSkinManager ()Lnet/minecraft/client/resources/SkinManager; +MD: net/minecraft/client/Minecraft/m_91111_ (I)V net/minecraft/client/Minecraft/debugFpsMeterKeyPress (I)V +MD: net/minecraft/client/Minecraft/m_91113_ (IJ)V net/minecraft/client/Minecraft/onFullscreenError (IJ)V +MD: net/minecraft/client/Minecraft/m_91118_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/Minecraft/setCameraEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/Minecraft/m_91150_ (Lnet/minecraft/client/gui/screens/Overlay;)V net/minecraft/client/Minecraft/setOverlay (Lnet/minecraft/client/gui/screens/Overlay;)V +MD: net/minecraft/client/Minecraft/m_91152_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/setScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91156_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/Minecraft/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/Minecraft/m_91239_ (Ljava/lang/Throwable;)V net/minecraft/client/Minecraft/rollbackResourcePacks (Ljava/lang/Throwable;)V +MD: net/minecraft/client/Minecraft/m_91241_ (Ljava/lang/Throwable;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/clearResourcePacksOnError (Ljava/lang/Throwable;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_91246_ (Ljava/util/UUID;)Z net/minecraft/client/Minecraft/isBlocked (Ljava/util/UUID;)Z +MD: net/minecraft/client/Minecraft/m_91258_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/Function; net/minecraft/client/Minecraft/getTextureAtlas (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/Function; +MD: net/minecraft/client/Minecraft/m_91265_ ()Lnet/minecraft/client/gui/screens/Overlay; net/minecraft/client/Minecraft/getOverlay ()Lnet/minecraft/client/gui/screens/Overlay; +MD: net/minecraft/client/Minecraft/m_91266_ ()Lnet/minecraft/client/gui/screens/social/PlayerSocialManager; net/minecraft/client/Minecraft/getPlayerSocialManager ()Lnet/minecraft/client/gui/screens/social/PlayerSocialManager; +MD: net/minecraft/client/Minecraft/m_91267_ ()Z net/minecraft/client/Minecraft/renderOnThread ()Z +MD: net/minecraft/client/Minecraft/m_91268_ ()Lcom/mojang/blaze3d/platform/Window; net/minecraft/client/Minecraft/getWindow ()Lcom/mojang/blaze3d/platform/Window; +MD: net/minecraft/client/Minecraft/m_91269_ ()Lnet/minecraft/client/renderer/RenderBuffers; net/minecraft/client/Minecraft/renderBuffers ()Lnet/minecraft/client/renderer/RenderBuffers; +MD: net/minecraft/client/Minecraft/m_91270_ ()Ljava/lang/String; net/minecraft/client/Minecraft/createTitle ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_91271_ ()V net/minecraft/client/Minecraft/createSearchTrees ()V +MD: net/minecraft/client/Minecraft/m_91272_ ()Z net/minecraft/client/Minecraft/checkIs64Bit ()Z +MD: net/minecraft/client/Minecraft/m_91273_ ()V net/minecraft/client/Minecraft/selfTest ()V +MD: net/minecraft/client/Minecraft/m_91274_ ()Z net/minecraft/client/Minecraft/shouldRenderFpsPie ()Z +MD: net/minecraft/client/Minecraft/m_91275_ ()I net/minecraft/client/Minecraft/getFramerateLimit ()I +MD: net/minecraft/client/Minecraft/m_91277_ ()V net/minecraft/client/Minecraft/startUseItem ()V +MD: net/minecraft/client/Minecraft/m_91278_ ()Z net/minecraft/client/Minecraft/isMultiplayerServer ()Z +MD: net/minecraft/client/Minecraft/m_91279_ ()V net/minecraft/client/Minecraft/handleKeybinds ()V +MD: net/minecraft/client/Minecraft/m_91280_ ()V net/minecraft/client/Minecraft/pickBlock ()V +MD: net/minecraft/client/Minecraft/m_91288_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/client/Minecraft/getCameraEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/Minecraft/m_91289_ ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; net/minecraft/client/Minecraft/getBlockRenderer ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +MD: net/minecraft/client/Minecraft/m_91290_ ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; net/minecraft/client/Minecraft/getEntityRenderDispatcher ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +MD: net/minecraft/client/Minecraft/m_91291_ ()Lnet/minecraft/client/renderer/entity/ItemRenderer; net/minecraft/client/Minecraft/getItemRenderer ()Lnet/minecraft/client/renderer/entity/ItemRenderer; +MD: net/minecraft/client/Minecraft/m_91293_ ()Lnet/minecraft/util/FrameTimer; net/minecraft/client/Minecraft/getFrameTimer ()Lnet/minecraft/util/FrameTimer; +MD: net/minecraft/client/Minecraft/m_91294_ ()Z net/minecraft/client/Minecraft/isConnectedToRealms ()Z +MD: net/minecraft/client/Minecraft/m_91295_ ()Lcom/mojang/datafixers/DataFixer; net/minecraft/client/Minecraft/getFixerUpper ()Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/client/Minecraft/m_91296_ ()F net/minecraft/client/Minecraft/getFrameTime ()F +MD: net/minecraft/client/Minecraft/m_91297_ ()F net/minecraft/client/Minecraft/getDeltaFrameTime ()F +MD: net/minecraft/client/Minecraft/m_91298_ ()Lnet/minecraft/client/color/block/BlockColors; net/minecraft/client/Minecraft/getBlockColors ()Lnet/minecraft/client/color/block/BlockColors; +MD: net/minecraft/client/Minecraft/m_91299_ ()Z net/minecraft/client/Minecraft/showOnlyReducedInfo ()Z +MD: net/minecraft/client/Minecraft/m_91300_ ()Lnet/minecraft/client/gui/components/toasts/ToastComponent; net/minecraft/client/Minecraft/getToasts ()Lnet/minecraft/client/gui/components/toasts/ToastComponent; +MD: net/minecraft/client/Minecraft/m_91301_ ()Lnet/minecraft/client/tutorial/Tutorial; net/minecraft/client/Minecraft/getTutorial ()Lnet/minecraft/client/tutorial/Tutorial; +MD: net/minecraft/client/Minecraft/m_91302_ ()Z net/minecraft/client/Minecraft/isWindowActive ()Z +MD: net/minecraft/client/Minecraft/m_91303_ ()Lnet/minecraft/client/HotbarManager; net/minecraft/client/Minecraft/getHotbarManager ()Lnet/minecraft/client/HotbarManager; +MD: net/minecraft/client/Minecraft/m_91304_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/Minecraft/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/Minecraft/m_91305_ ()Lnet/minecraft/client/resources/PaintingTextureManager; net/minecraft/client/Minecraft/getPaintingTextures ()Lnet/minecraft/client/resources/PaintingTextureManager; +MD: net/minecraft/client/Minecraft/m_91306_ ()Lnet/minecraft/client/resources/MobEffectTextureManager; net/minecraft/client/Minecraft/getMobEffectTextures ()Lnet/minecraft/client/resources/MobEffectTextureManager; +MD: net/minecraft/client/Minecraft/m_91307_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/client/Minecraft/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/client/Minecraft/m_91310_ ()Lnet/minecraft/client/resources/SplashManager; net/minecraft/client/Minecraft/getSplashManager ()Lnet/minecraft/client/resources/SplashManager; +MD: net/minecraft/client/Minecraft/m_91312_ (I)V net/minecraft/client/Minecraft/updateMaxMipLevel (I)V +MD: net/minecraft/client/Minecraft/m_91314_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/Minecraft/shouldEntityAppearGlowing (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/Minecraft/m_91316_ (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/Minecraft/lambda$createSearchTrees$18 (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/Minecraft/m_91320_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/clearLevel (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91324_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/Minecraft/updateLevelInEngines (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/Minecraft/m_91326_ (Ljava/lang/String;)V net/minecraft/client/Minecraft/openChatScreen (Ljava/lang/String;)V +MD: net/minecraft/client/Minecraft/m_91332_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/crash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_91336_ (Z)V net/minecraft/client/Minecraft/selectMainFont (Z)V +MD: net/minecraft/client/Minecraft/m_91338_ (ZLnet/minecraft/util/profiling/SingleTickProfiler;)V net/minecraft/client/Minecraft/finishProfilers (ZLnet/minecraft/util/profiling/SingleTickProfiler;)V +MD: net/minecraft/client/Minecraft/m_91341_ ()V net/minecraft/client/Minecraft/updateTitle ()V +MD: net/minecraft/client/Minecraft/m_91346_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/forceSetScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91354_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; net/minecraft/client/Minecraft/fillReport (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; +MD: net/minecraft/client/Minecraft/m_91358_ (Z)V net/minecraft/client/Minecraft/pauseGame (Z)V +MD: net/minecraft/client/Minecraft/m_91362_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/updateScreenAndTick (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91372_ (Z)V net/minecraft/client/Minecraft/setConnectedToRealms (Z)V +MD: net/minecraft/client/Minecraft/m_91374_ ()V net/minecraft/client/Minecraft/run ()V +MD: net/minecraft/client/Minecraft/m_91383_ (Z)V net/minecraft/client/Minecraft/runTick (Z)V +MD: net/minecraft/client/Minecraft/m_91385_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/Minecraft/getMainRenderTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/Minecraft/m_91386_ (Z)V net/minecraft/client/Minecraft/continueAttack (Z)V +MD: net/minecraft/client/Minecraft/m_91388_ ()Ljava/lang/String; net/minecraft/client/Minecraft/getLaunchedVersion ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_91389_ ()Ljava/lang/String; net/minecraft/client/Minecraft/getVersionType ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_91390_ ()Z net/minecraft/client/Minecraft/isEnforceUnicode ()Z +MD: net/minecraft/client/Minecraft/m_91391_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/Minecraft/reloadResourcePacks ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/Minecraft/m_91392_ ()Lnet/minecraft/world/level/storage/LevelStorageSource; net/minecraft/client/Minecraft/getLevelSource ()Lnet/minecraft/world/level/storage/LevelStorageSource; +MD: net/minecraft/client/Minecraft/m_91393_ ()V net/minecraft/client/Minecraft/destroy ()V +MD: net/minecraft/client/Minecraft/m_91394_ ()V net/minecraft/client/Minecraft/emergencySave ()V +MD: net/minecraft/client/Minecraft/m_91395_ ()V net/minecraft/client/Minecraft/stop ()V +MD: net/minecraft/client/Minecraft/m_91396_ ()Z net/minecraft/client/Minecraft/isRunning ()Z +MD: net/minecraft/client/Minecraft/m_91397_ ()Lnet/minecraft/client/sounds/MusicManager; net/minecraft/client/Minecraft/getMusicManager ()Lnet/minecraft/client/sounds/MusicManager; +MD: net/minecraft/client/Minecraft/m_91398_ ()V net/minecraft/client/Minecraft/tick ()V +MD: net/minecraft/client/Minecraft/m_91399_ ()V net/minecraft/client/Minecraft/clearLevel ()V +MD: net/minecraft/client/Minecraft/m_91400_ ()Z net/minecraft/client/Minecraft/allowsMultiplayer ()Z +MD: net/minecraft/client/Minecraft/m_91402_ ()Z net/minecraft/client/Minecraft/isDemo ()Z +MD: net/minecraft/client/Minecraft/m_91403_ ()Lnet/minecraft/client/multiplayer/ClientPacketListener; net/minecraft/client/Minecraft/getConnection ()Lnet/minecraft/client/multiplayer/ClientPacketListener; +MD: net/minecraft/client/Minecraft/m_91404_ ()Z net/minecraft/client/Minecraft/renderNames ()Z +MD: net/minecraft/client/Minecraft/m_91405_ ()Z net/minecraft/client/Minecraft/useFancyGraphics ()Z +MD: net/minecraft/client/Minecraft$1/ ()V net/minecraft/client/Minecraft$1/ ()V +MD: net/minecraft/client/Minecraft$ChatStatus/ ()V net/minecraft/client/Minecraft$ChatStatus/ ()V +MD: net/minecraft/client/Minecraft$ChatStatus/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus/m_168034_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/Minecraft$ChatStatus/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Minecraft$ChatStatus/m_168036_ ()[Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft$ChatStatus/$values ()[Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft$ChatStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft$ChatStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft$ChatStatus/values ()[Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft$ChatStatus/values ()[Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft$ChatStatus$1/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$1/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$1/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$1/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus$2/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$2/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$2/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$2/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus$3/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$3/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$3/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$3/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus$4/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$4/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$4/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$4/isChatAllowed (Z)Z +MD: net/minecraft/client/MouseHandler/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/MouseHandler/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/MouseHandler/m_168065_ (J[Ljava/nio/file/Path;)V net/minecraft/client/MouseHandler/lambda$setup$8 (J[Ljava/nio/file/Path;)V +MD: net/minecraft/client/MouseHandler/m_168072_ (Lnet/minecraft/client/gui/screens/Screen;DDDD)V net/minecraft/client/MouseHandler/lambda$onMove$11 (Lnet/minecraft/client/gui/screens/Screen;DDDD)V +MD: net/minecraft/client/MouseHandler/m_168078_ ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V net/minecraft/client/MouseHandler/lambda$onPress$1 ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V +MD: net/minecraft/client/MouseHandler/m_168084_ ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V net/minecraft/client/MouseHandler/lambda$onPress$0 ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V +MD: net/minecraft/client/MouseHandler/m_168090_ ()Z net/minecraft/client/MouseHandler/isMiddlePressed ()Z +MD: net/minecraft/client/MouseHandler/m_168091_ (JIII)V net/minecraft/client/MouseHandler/lambda$setup$4 (JIII)V +MD: net/minecraft/client/MouseHandler/m_168096_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$6 (JDD)V +MD: net/minecraft/client/MouseHandler/m_168100_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$2 (JDD)V +MD: net/minecraft/client/MouseHandler/m_263857_ (Lnet/minecraft/client/gui/screens/Screen;DD)V net/minecraft/client/MouseHandler/lambda$onMove$10 (Lnet/minecraft/client/gui/screens/Screen;DD)V +MD: net/minecraft/client/MouseHandler/m_91523_ ()V net/minecraft/client/MouseHandler/turnPlayer ()V +MD: net/minecraft/client/MouseHandler/m_91524_ (J)V net/minecraft/client/MouseHandler/setup (J)V +MD: net/minecraft/client/MouseHandler/m_91526_ (JDD)V net/minecraft/client/MouseHandler/onScroll (JDD)V +MD: net/minecraft/client/MouseHandler/m_91530_ (JIII)V net/minecraft/client/MouseHandler/onPress (JIII)V +MD: net/minecraft/client/MouseHandler/m_91535_ (JIJ)V net/minecraft/client/MouseHandler/lambda$setup$9 (JIJ)V +MD: net/minecraft/client/MouseHandler/m_91539_ (JLjava/util/List;)V net/minecraft/client/MouseHandler/onDrop (JLjava/util/List;)V +MD: net/minecraft/client/MouseHandler/m_91560_ ()Z net/minecraft/client/MouseHandler/isLeftPressed ()Z +MD: net/minecraft/client/MouseHandler/m_91561_ (JDD)V net/minecraft/client/MouseHandler/onMove (JDD)V +MD: net/minecraft/client/MouseHandler/m_91565_ (JIII)V net/minecraft/client/MouseHandler/lambda$setup$5 (JIII)V +MD: net/minecraft/client/MouseHandler/m_91575_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$7 (JDD)V +MD: net/minecraft/client/MouseHandler/m_91584_ ()Z net/minecraft/client/MouseHandler/isRightPressed ()Z +MD: net/minecraft/client/MouseHandler/m_91589_ ()D net/minecraft/client/MouseHandler/xpos ()D +MD: net/minecraft/client/MouseHandler/m_91590_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$3 (JDD)V +MD: net/minecraft/client/MouseHandler/m_91594_ ()D net/minecraft/client/MouseHandler/ypos ()D +MD: net/minecraft/client/MouseHandler/m_91599_ ()V net/minecraft/client/MouseHandler/setIgnoreFirstMove ()V +MD: net/minecraft/client/MouseHandler/m_91600_ ()Z net/minecraft/client/MouseHandler/isMouseGrabbed ()Z +MD: net/minecraft/client/MouseHandler/m_91601_ ()V net/minecraft/client/MouseHandler/grabMouse ()V +MD: net/minecraft/client/MouseHandler/m_91602_ ()V net/minecraft/client/MouseHandler/releaseMouse ()V +MD: net/minecraft/client/MouseHandler/m_91603_ ()V net/minecraft/client/MouseHandler/cursorEntered ()V +MD: net/minecraft/client/NarratorStatus/ ()V net/minecraft/client/NarratorStatus/ ()V +MD: net/minecraft/client/NarratorStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/NarratorStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/NarratorStatus/m_168104_ ()[Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/$values ()[Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/NarratorStatus/m_240472_ ()Z net/minecraft/client/NarratorStatus/shouldNarrateSystem ()Z +MD: net/minecraft/client/NarratorStatus/m_240504_ ()Z net/minecraft/client/NarratorStatus/shouldNarrateChat ()Z +MD: net/minecraft/client/NarratorStatus/m_91618_ ()I net/minecraft/client/NarratorStatus/getId ()I +MD: net/minecraft/client/NarratorStatus/m_91619_ (I)Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/byId (I)Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/NarratorStatus/m_91621_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/NarratorStatus/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/NarratorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/NarratorStatus/values ()[Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/values ()[Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/OptionInstance/ ()V net/minecraft/client/OptionInstance/ ()V +MD: net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Ljava/lang/Object;Ljava/util/function/Consumer;)V net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Ljava/lang/Object;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Lcom/mojang/serialization/Codec;Ljava/lang/Object;Ljava/util/function/Consumer;)V net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Lcom/mojang/serialization/Codec;Ljava/lang/Object;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/OptionInstance/m_231498_ ()Lnet/minecraft/client/OptionInstance$TooltipSupplier; net/minecraft/client/OptionInstance/noTooltip ()Lnet/minecraft/client/OptionInstance$TooltipSupplier; +MD: net/minecraft/client/OptionInstance/m_231504_ (Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance/lambda$new$3 (Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance/m_231507_ (Lnet/minecraft/client/Options;III)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance/createButton (Lnet/minecraft/client/Options;III)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance/m_231512_ (Ljava/lang/Boolean;)V net/minecraft/client/OptionInstance/lambda$createBoolean$2 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/OptionInstance/m_231514_ (Ljava/lang/Object;)V net/minecraft/client/OptionInstance/set (Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance/m_231525_ (Ljava/lang/String;Z)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Z)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_231528_ (Ljava/lang/String;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_231535_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/OptionInstance$TooltipSupplier; net/minecraft/client/OptionInstance/cachedConstantTooltip (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/OptionInstance$TooltipSupplier; +MD: net/minecraft/client/OptionInstance/m_231537_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/util/OptionEnum;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance/lambda$forOptionEnum$6 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/util/OptionEnum;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance/m_231543_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance/lambda$static$0 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance/m_231546_ ()Lnet/minecraft/client/OptionInstance$CaptionBasedToString; net/minecraft/client/OptionInstance/forOptionEnum ()Lnet/minecraft/client/OptionInstance$CaptionBasedToString; +MD: net/minecraft/client/OptionInstance/m_231547_ (Ljava/lang/Boolean;)V net/minecraft/client/OptionInstance/lambda$createBoolean$1 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/OptionInstance/m_231549_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/OptionInstance/lambda$set$8 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance/m_231551_ ()Ljava/lang/Object; net/minecraft/client/OptionInstance/get ()Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance/m_231554_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance/m_231555_ ()Lnet/minecraft/client/OptionInstance$ValueSet; net/minecraft/client/OptionInstance/values ()Lnet/minecraft/client/OptionInstance$ValueSet; +MD: net/minecraft/client/OptionInstance/m_257064_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/OptionInstance/lambda$noTooltip$4 (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/OptionInstance/m_257065_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/OptionInstance/lambda$cachedConstantTooltip$5 (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/OptionInstance/m_257536_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_257874_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_260737_ (Ljava/lang/Object;)V net/minecraft/client/OptionInstance/lambda$createButton$7 (Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance/m_260965_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_261194_ (Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance/createButton (Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$AltEnum/ (Ljava/util/List;Ljava/util/List;Ljava/util/function/BooleanSupplier;Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter;Lcom/mojang/serialization/Codec;)V net/minecraft/client/OptionInstance$AltEnum/ (Ljava/util/List;Ljava/util/List;Ljava/util/function/BooleanSupplier;Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/OptionInstance$AltEnum/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$AltEnum/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$AltEnum/f_231557_ ()Ljava/util/List; net/minecraft/client/OptionInstance$AltEnum/values ()Ljava/util/List; +MD: net/minecraft/client/OptionInstance$AltEnum/f_231558_ ()Ljava/util/List; net/minecraft/client/OptionInstance$AltEnum/altValues ()Ljava/util/List; +MD: net/minecraft/client/OptionInstance$AltEnum/f_231559_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/OptionInstance$AltEnum/altCondition ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/OptionInstance$AltEnum/hashCode ()I net/minecraft/client/OptionInstance$AltEnum/hashCode ()I +MD: net/minecraft/client/OptionInstance$AltEnum/m_213569_ ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; net/minecraft/client/OptionInstance$AltEnum/valueSetter ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; +MD: net/minecraft/client/OptionInstance$AltEnum/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$AltEnum/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$AltEnum/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$AltEnum/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$AltEnum/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$AltEnum/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$AltEnum/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$AltEnum/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$CaptionBasedToString/m_231580_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance$CaptionBasedToString/toString (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/ (ILjava/util/function/IntSupplier;I)V net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/ (ILjava/util/function/IntSupplier;I)V +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_231584_ ()Ljava/util/function/IntSupplier; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/maxSupplier ()Ljava/util/function/IntSupplier; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_276069_ ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/encodableMaxInclusive ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/hashCode ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/hashCode ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214064_ (Ljava/lang/Integer;)Ljava/util/Optional; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/validateValue (Ljava/lang/Integer;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214105_ ()Z net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/createCycleButton ()Z +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214118_ ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/maxInclusive ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214123_ ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/minInclusive ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_273968_ (Ljava/lang/Integer;I)Ljava/lang/String; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/lambda$codec$0 (Ljava/lang/Integer;I)Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_276075_ (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/lambda$codec$1 (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_213569_ ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; net/minecraft/client/OptionInstance$CycleableValueSet/valueSetter ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$CycleableValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$CycleableValueSet/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_260738_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;IIILnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance$CycleableValueSet/lambda$createButton$1 (Lnet/minecraft/client/OptionInstance$TooltipSupplier;IIILnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_260739_ (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V net/minecraft/client/OptionInstance$CycleableValueSet/lambda$createButton$0 (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter/m_231622_ (Lnet/minecraft/client/OptionInstance;Ljava/lang/Object;)V net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter/set (Lnet/minecraft/client/OptionInstance;Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance$Enum/ (Ljava/util/List;Lcom/mojang/serialization/Codec;)V net/minecraft/client/OptionInstance$Enum/ (Ljava/util/List;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/OptionInstance$Enum/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$Enum/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$Enum/f_231625_ ()Ljava/util/List; net/minecraft/client/OptionInstance$Enum/values ()Ljava/util/List; +MD: net/minecraft/client/OptionInstance$Enum/hashCode ()I net/minecraft/client/OptionInstance$Enum/hashCode ()I +MD: net/minecraft/client/OptionInstance$Enum/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$Enum/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$Enum/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$Enum/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$Enum/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$Enum/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$Enum/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$Enum/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$IntRange/ (II)V net/minecraft/client/OptionInstance$IntRange/ (II)V +MD: net/minecraft/client/OptionInstance$IntRange/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$IntRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$IntRange/hashCode ()I net/minecraft/client/OptionInstance$IntRange/hashCode ()I +MD: net/minecraft/client/OptionInstance$IntRange/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$IntRange/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$IntRange/m_214064_ (Ljava/lang/Integer;)Ljava/util/Optional; net/minecraft/client/OptionInstance$IntRange/validateValue (Ljava/lang/Integer;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$IntRange/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$IntRange/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$IntRange/m_214118_ ()I net/minecraft/client/OptionInstance$IntRange/maxInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRange/m_214123_ ()I net/minecraft/client/OptionInstance$IntRange/minInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRange/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$IntRange/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213640_ (Ljava/lang/Integer;)D net/minecraft/client/OptionInstance$IntRangeBase/toSliderValue (Ljava/lang/Integer;)D +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$IntRangeBase/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213729_ (D)Ljava/lang/Integer; net/minecraft/client/OptionInstance$IntRangeBase/fromSliderValue (D)Ljava/lang/Integer; +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$IntRangeBase/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_214118_ ()I net/minecraft/client/OptionInstance$IntRangeBase/maxInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_214123_ ()I net/minecraft/client/OptionInstance$IntRangeBase/minInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_231657_ (Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; net/minecraft/client/OptionInstance$IntRangeBase/xmap (Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/ (Lnet/minecraft/client/OptionInstance$IntRangeBase;Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;)V net/minecraft/client/OptionInstance$IntRangeBase$1/ (Lnet/minecraft/client/OptionInstance$IntRangeBase;Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;)V +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$IntRangeBase$1/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$IntRangeBase$1/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$IntRangeBase$1/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$IntRangeBase$1/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$LazyEnum/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Lcom/mojang/serialization/Codec;)V net/minecraft/client/OptionInstance$LazyEnum/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/OptionInstance$LazyEnum/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$LazyEnum/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$LazyEnum/f_231680_ ()Ljava/util/function/Supplier; net/minecraft/client/OptionInstance$LazyEnum/values ()Ljava/util/function/Supplier; +MD: net/minecraft/client/OptionInstance$LazyEnum/f_231681_ ()Ljava/util/function/Function; net/minecraft/client/OptionInstance$LazyEnum/validateValue ()Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$LazyEnum/hashCode ()I net/minecraft/client/OptionInstance$LazyEnum/hashCode ()I +MD: net/minecraft/client/OptionInstance$LazyEnum/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$LazyEnum/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$LazyEnum/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$LazyEnum/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$LazyEnum/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$LazyEnum/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$LazyEnum/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$LazyEnum/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/ (Lnet/minecraft/client/Options;IIIILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance$SliderableValueSet;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;)V net/minecraft/client/OptionInstance$OptionInstanceSliderButton/ (Lnet/minecraft/client/Options;IIIILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance$SliderableValueSet;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/m_5695_ ()V net/minecraft/client/OptionInstance$OptionInstanceSliderButton/updateMessage ()V +MD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/m_5697_ ()V net/minecraft/client/OptionInstance$OptionInstanceSliderButton/applyValue ()V +MD: net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/m_214105_ ()Z net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/createCycleButton ()Z +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$SliderableValueSet/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$SliderableValueSet/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$SliderableValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_260740_ (Lnet/minecraft/client/Options;IIILnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance$SliderableValueSet/lambda$createButton$0 (Lnet/minecraft/client/Options;IIILnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance$TooltipSupplier/m_257630_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/OptionInstance$TooltipSupplier/apply (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/OptionInstance$UnitDouble/ ()V net/minecraft/client/OptionInstance$UnitDouble/ ()V +MD: net/minecraft/client/OptionInstance$UnitDouble/ (Ljava/lang/String;I)V net/minecraft/client/OptionInstance$UnitDouble/ (Ljava/lang/String;I)V +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213640_ (Ljava/lang/Double;)D net/minecraft/client/OptionInstance$UnitDouble/toSliderValue (Ljava/lang/Double;)D +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$UnitDouble/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$UnitDouble/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213729_ (D)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/fromSliderValue (D)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$UnitDouble/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_214064_ (Ljava/lang/Double;)Ljava/util/Optional; net/minecraft/client/OptionInstance$UnitDouble/validateValue (Ljava/lang/Double;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$UnitDouble/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231739_ ()[Lnet/minecraft/client/OptionInstance$UnitDouble; net/minecraft/client/OptionInstance$UnitDouble/$values ()[Lnet/minecraft/client/OptionInstance$UnitDouble; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231742_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/lambda$codec$2 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231744_ (Ljava/lang/Boolean;)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/lambda$codec$1 (Ljava/lang/Boolean;)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231750_ (Ljava/util/function/DoubleFunction;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; net/minecraft/client/OptionInstance$UnitDouble/xmap (Ljava/util/function/DoubleFunction;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231759_ (Ljava/lang/Double;)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/lambda$codec$0 (Ljava/lang/Double;)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/valueOf (Ljava/lang/String;)Lnet/minecraft/client/OptionInstance$UnitDouble; net/minecraft/client/OptionInstance$UnitDouble/valueOf (Ljava/lang/String;)Lnet/minecraft/client/OptionInstance$UnitDouble; +MD: net/minecraft/client/OptionInstance$UnitDouble/values ()[Lnet/minecraft/client/OptionInstance$UnitDouble; net/minecraft/client/OptionInstance$UnitDouble/values ()[Lnet/minecraft/client/OptionInstance$UnitDouble; +MD: net/minecraft/client/OptionInstance$UnitDouble$1/ (Lnet/minecraft/client/OptionInstance$UnitDouble;Ljava/util/function/ToDoubleFunction;Ljava/util/function/DoubleFunction;)V net/minecraft/client/OptionInstance$UnitDouble$1/ (Lnet/minecraft/client/OptionInstance$UnitDouble;Ljava/util/function/ToDoubleFunction;Ljava/util/function/DoubleFunction;)V +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$UnitDouble$1/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$UnitDouble$1/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$UnitDouble$1/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$UnitDouble$1/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$ValueSet/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$ValueSet/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$ValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$ValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$ValueSet/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$ValueSet/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/Options/ ()V net/minecraft/client/Options/ ()V +MD: net/minecraft/client/Options/ (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V net/minecraft/client/Options/ (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V +MD: net/minecraft/client/Options/m_168416_ (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z net/minecraft/client/Options/isModelPartEnabled (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z +MD: net/minecraft/client/Options/m_168418_ (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V net/minecraft/client/Options/toggleModelPart (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V +MD: net/minecraft/client/Options/m_168427_ (Lnet/minecraft/client/Options$FieldAccess;)V net/minecraft/client/Options/processOptions (Lnet/minecraft/client/Options$FieldAccess;)V +MD: net/minecraft/client/Options/m_168435_ (Ljava/lang/String;)Z net/minecraft/client/Options/isTrue (Ljava/lang/String;)Z +MD: net/minecraft/client/Options/m_168440_ (Ljava/lang/String;)Z net/minecraft/client/Options/isFalse (Ljava/lang/String;)Z +MD: net/minecraft/client/Options/m_168442_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/Options/readPackList (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/Options/m_168450_ ()Ljava/io/File; net/minecraft/client/Options/getFile ()Ljava/io/File; +MD: net/minecraft/client/Options/m_168451_ ()Ljava/lang/String; net/minecraft/client/Options/dumpOptionsForReport ()Ljava/lang/String; +MD: net/minecraft/client/Options/m_193770_ (I)V net/minecraft/client/Options/setServerRenderDistance (I)V +MD: net/minecraft/client/Options/m_193772_ ()I net/minecraft/client/Options/getEffectiveRenderDistance ()I +MD: net/minecraft/client/Options/m_231812_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/autoJump ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231813_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/autoSuggestions ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231814_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatColors ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231815_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatLinks ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231816_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatLinksPrompt ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231817_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/enableVsync ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231818_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/entityShadows ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231819_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/forceUnicodeFont ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231820_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/invertYMouse ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231821_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/discreteMouseScroll ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231822_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/realmsNotifications ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231823_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/allowServerListing ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231824_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/reducedDebugInfo ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231825_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/showSubtitles ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231826_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/directionalAudio ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231827_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/backgroundForChatOnly ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231828_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/touchscreen ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231829_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/fullscreen ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231830_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/bobView ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231831_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/toggleCrouch ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231832_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/toggleSprint ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231833_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/hideMatchedNames ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231834_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/showAutosaveIndicator ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231836_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/onlyShowSecureChat ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231837_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/fov ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231838_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/darkMojangStudiosBackground ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231839_ (D)I net/minecraft/client/Options/unlogMouse (D)I +MD: net/minecraft/client/Options/m_231841_ (Lnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/client/Options/lambda$new$32 (Lnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/client/Options/m_231843_ (Lnet/minecraft/client/PrioritizeChunkUpdates;)V net/minecraft/client/Options/lambda$new$22 (Lnet/minecraft/client/PrioritizeChunkUpdates;)V +MD: net/minecraft/client/Options/m_231847_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; net/minecraft/client/Options/lambda$dumpOptionsForReport$106 (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; +MD: net/minecraft/client/Options/m_231849_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$20 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231851_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$48 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231853_ (Lnet/minecraft/client/CloudStatus;)V net/minecraft/client/Options/lambda$new$13 (Lnet/minecraft/client/CloudStatus;)V +MD: net/minecraft/client/Options/m_231855_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$104 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_231861_ (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/GraphicsStatus;)V net/minecraft/client/Options/lambda$new$18 (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/GraphicsStatus;)V +MD: net/minecraft/client/Options/m_231868_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$83 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231870_ (Lnet/minecraft/client/GraphicsStatus;)V net/minecraft/client/Options/lambda$new$19 (Lnet/minecraft/client/GraphicsStatus;)V +MD: net/minecraft/client/Options/m_231874_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$66 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231876_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$79 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231894_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/client/Options/lambda$load$105 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/client/Options/m_231897_ (Lnet/minecraft/network/chat/Component;D)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/percentValueLabel (Lnet/minecraft/network/chat/Component;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231900_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/genericValueLabel (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231903_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$15 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231909_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$70 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231912_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$89 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231915_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$103 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231918_ (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$97 (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231921_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/genericValueLabel (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231924_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/screenEffectScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231925_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/fovEffectScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231926_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/darknessEffectScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231927_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/gamma ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231928_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/guiScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231929_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/particles ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231930_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/narrator ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231931_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/soundDevice ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231932_ ()Ljava/util/List; net/minecraft/client/Options/lambda$new$98 ()Ljava/util/List; +MD: net/minecraft/client/Options/m_231933_ ()I net/minecraft/client/Options/lambda$new$92 ()I +MD: net/minecraft/client/Options/m_231934_ ()Z net/minecraft/client/Options/lambda$new$17 ()Z +MD: net/minecraft/client/Options/m_231935_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/hideLightningFlash ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231936_ (Lnet/minecraft/world/entity/HumanoidArm;)Ljava/lang/String; net/minecraft/client/Options/lambda$new$31 (Lnet/minecraft/world/entity/HumanoidArm;)Ljava/lang/String; +MD: net/minecraft/client/Options/m_231938_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/lambda$new$11 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_231940_ (Lnet/minecraft/client/CloudStatus;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/Options/lambda$new$12 (Lnet/minecraft/client/CloudStatus;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/Options/m_231942_ (Lnet/minecraft/client/GraphicsStatus;)Z net/minecraft/client/Options/lambda$new$16 (Lnet/minecraft/client/GraphicsStatus;)Z +MD: net/minecraft/client/Options/m_231946_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$55 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231948_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$77 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231950_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$75 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_231952_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/pixelValueLabel (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231955_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$68 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231958_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$80 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231961_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$101 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231964_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/sensitivity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231965_ (I)D net/minecraft/client/Options/logMouse (I)D +MD: net/minecraft/client/Options/m_231969_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$67 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231971_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$71 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231973_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$81 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231975_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$65 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231978_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$78 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231981_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$91 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231984_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/renderDistance ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231985_ (I)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$42 (I)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_231987_ (Lnet/minecraft/client/AttackIndicatorStatus;)V net/minecraft/client/Options/lambda$new$51 (Lnet/minecraft/client/AttackIndicatorStatus;)V +MD: net/minecraft/client/Options/m_231989_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$69 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231991_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$102 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_231995_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$createSoundSliderOptionInstance$61 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231998_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$72 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232001_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/simulationDistance ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232002_ (I)Ljava/lang/Integer; net/minecraft/client/Options/lambda$new$6 (I)Ljava/lang/Integer; +MD: net/minecraft/client/Options/m_232006_ (Ljava/lang/Double;)Ljava/lang/Integer; net/minecraft/client/Options/lambda$new$73 (Ljava/lang/Double;)Ljava/lang/Integer; +MD: net/minecraft/client/Options/m_232008_ (Ljava/lang/Integer;)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$74 (Ljava/lang/Integer;)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_232010_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/Options/lambda$new$99 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/Options/m_232015_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$52 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232018_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/entityDistanceScaling ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232019_ (I)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$2 (I)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_232021_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$59 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232023_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$50 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_232025_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$53 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_232027_ (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/client/Options/lambda$new$30 (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/client/Options/m_232032_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$49 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232035_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/framerateLimit ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232036_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$58 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232038_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$28 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232040_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$4 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232042_ (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/lambda$new$10 (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_232044_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$39 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232047_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$5 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232050_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/cloudStatus ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232051_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$57 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232053_ (Ljava/lang/Double;)I net/minecraft/client/Options/lambda$new$43 (Ljava/lang/Double;)I +MD: net/minecraft/client/Options/m_232057_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$37 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232060_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/graphicsMode ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232061_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$56 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232063_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$40 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232067_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$35 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232070_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/ambientOcclusion ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232073_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$38 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232077_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$33 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232080_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/prioritizeChunkUpdates ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232081_ (Ljava/lang/Boolean;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/lambda$new$9 (Ljava/lang/Boolean;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_232083_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$36 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232085_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$8 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_232087_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$24 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232090_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatVisibility ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232091_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$34 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232093_ (Ljava/lang/Integer;)I net/minecraft/client/Options/lambda$new$7 (Ljava/lang/Integer;)I +MD: net/minecraft/client/Options/m_232095_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$0 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232098_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatOpacity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232099_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$27 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232101_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatLineSpacing ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232102_ (Lnet/minecraft/world/entity/player/ChatVisiblity;)V net/minecraft/client/Options/lambda$new$23 (Lnet/minecraft/world/entity/player/ChatVisiblity;)V +MD: net/minecraft/client/Options/m_232104_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/textBackgroundOpacity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232105_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$25 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232107_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/mainHand ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232108_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$26 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232110_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232111_ (Ljava/lang/Double;)I net/minecraft/client/Options/lambda$new$3 (Ljava/lang/Double;)I +MD: net/minecraft/client/Options/m_232113_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatWidth ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232114_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$1 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232116_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatHeightUnfocused ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232117_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatHeightFocused ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232118_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatDelay ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232119_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/mipmapLevels ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232120_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/attackIndicator ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232121_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/biomeBlendRadius ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232122_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/mouseWheelSensitivity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232123_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/rawMouseInput ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_240389_ (Lnet/minecraft/client/NarratorStatus;)V net/minecraft/client/Options/lambda$new$96 (Lnet/minecraft/client/NarratorStatus;)V +MD: net/minecraft/client/Options/m_240390_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/NarratorStatus;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$95 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/NarratorStatus;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_240679_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$44 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_241715_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$41 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_241716_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$54 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_241717_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$85 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_244655_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$82 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_244656_ (Ljava/util/EnumMap;)V net/minecraft/client/Options/lambda$new$60 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/Options/m_244657_ (Lnet/minecraft/sounds/SoundSource;Ljava/lang/Double;)V net/minecraft/client/Options/lambda$createSoundSliderOptionInstance$62 (Lnet/minecraft/sounds/SoundSource;Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_245201_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/panoramaSpeed ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_246669_ (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/getSoundSourceOptionInstance (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_247249_ (Ljava/lang/String;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/createSoundSliderOptionInstance (Ljava/lang/String;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_257066_ (Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/Options/lambda$new$14 (Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/Options/m_257067_ (Lnet/minecraft/client/PrioritizeChunkUpdates;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/Options/lambda$new$21 (Lnet/minecraft/client/PrioritizeChunkUpdates;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/Options/m_257068_ (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/Options/lambda$new$63 (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/Options/m_257871_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/operatorItemsTab ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_260741_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$76 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_260742_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$88 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_261324_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/telemetryOptInExtra ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_263137_ (Ljava/lang/String;)V net/minecraft/client/Options/lambda$new$100 (Ljava/lang/String;)V +MD: net/minecraft/client/Options/m_263138_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$64 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_263858_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$90 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_263859_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$45 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_263860_ (I)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$46 (I)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_263861_ (Ljava/lang/Double;)I net/minecraft/client/Options/lambda$new$47 (Ljava/lang/Double;)I +MD: net/minecraft/client/Options/m_264038_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/notificationDisplayTime ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_267499_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$84 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_267500_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$93 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_267501_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$86 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_267782_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/glintStrength ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_267805_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/glintSpeed ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_268763_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$87 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_268764_ (Lnet/minecraft/client/ParticleStatus;)V net/minecraft/client/Options/lambda$new$94 (Lnet/minecraft/client/ParticleStatus;)V +MD: net/minecraft/client/Options/m_269326_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/damageTiltStrength ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_274330_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/highContrast ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_274546_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/Options/updateResourcePacks (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/Options/m_275764_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$29 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_92140_ ()V net/minecraft/client/Options/load ()V +MD: net/minecraft/client/Options/m_92141_ (F)F net/minecraft/client/Options/getBackgroundOpacity (F)F +MD: net/minecraft/client/Options/m_92143_ (I)I net/minecraft/client/Options/getBackgroundColor (I)I +MD: net/minecraft/client/Options/m_92145_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/Options/loadSelectedResourcePacks (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/Options/m_92147_ (Lnet/minecraft/sounds/SoundSource;)F net/minecraft/client/Options/getSoundSourceVolume (Lnet/minecraft/sounds/SoundSource;)F +MD: net/minecraft/client/Options/m_92154_ (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V net/minecraft/client/Options/setModelPart (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V +MD: net/minecraft/client/Options/m_92157_ (Lnet/minecraft/client/CameraType;)V net/minecraft/client/Options/setCameraType (Lnet/minecraft/client/CameraType;)V +MD: net/minecraft/client/Options/m_92159_ (Lnet/minecraft/client/KeyMapping;Lcom/mojang/blaze3d/platform/InputConstants$Key;)V net/minecraft/client/Options/setKey (Lnet/minecraft/client/KeyMapping;Lcom/mojang/blaze3d/platform/InputConstants$Key;)V +MD: net/minecraft/client/Options/m_92164_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/client/Options/dataFix (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/client/Options/m_92169_ ()V net/minecraft/client/Options/save ()V +MD: net/minecraft/client/Options/m_92170_ (F)I net/minecraft/client/Options/getBackgroundColor (F)I +MD: net/minecraft/client/Options/m_92172_ ()V net/minecraft/client/Options/broadcastOptions ()V +MD: net/minecraft/client/Options/m_92174_ ()Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/getCloudsType ()Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_92175_ ()Z net/minecraft/client/Options/useNativeTransport ()Z +MD: net/minecraft/client/Options/m_92176_ ()Lnet/minecraft/client/CameraType; net/minecraft/client/Options/getCameraType ()Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/Options$1/ ()V net/minecraft/client/Options$1/ ()V +MD: net/minecraft/client/Options$2/ (Lnet/minecraft/client/Options;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/Options$2/ (Lnet/minecraft/client/Options;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/Options$2/m_141943_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$2/process (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$2/m_142432_ (Ljava/lang/String;F)F net/minecraft/client/Options$2/process (Ljava/lang/String;F)F +MD: net/minecraft/client/Options$2/m_142634_ (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/client/Options$2/process (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/client/Options$2/m_142682_ (Ljava/lang/String;Z)Z net/minecraft/client/Options$2/process (Ljava/lang/String;Z)Z +MD: net/minecraft/client/Options$2/m_142708_ (Ljava/lang/String;I)I net/minecraft/client/Options$2/process (Ljava/lang/String;I)I +MD: net/minecraft/client/Options$2/m_168458_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$2/getValueOrNull (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$2/m_213982_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/Options$2/process (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/Options$2/m_232127_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/client/Options$2/lambda$process$0 (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/client/Options$3/ (Lnet/minecraft/client/Options;Ljava/io/PrintWriter;)V net/minecraft/client/Options$3/ (Lnet/minecraft/client/Options;Ljava/io/PrintWriter;)V +MD: net/minecraft/client/Options$3/m_141943_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$3/process (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$3/m_142432_ (Ljava/lang/String;F)F net/minecraft/client/Options$3/process (Ljava/lang/String;F)F +MD: net/minecraft/client/Options$3/m_142634_ (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/client/Options$3/process (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/client/Options$3/m_142682_ (Ljava/lang/String;Z)Z net/minecraft/client/Options$3/process (Ljava/lang/String;Z)Z +MD: net/minecraft/client/Options$3/m_142708_ (Ljava/lang/String;I)I net/minecraft/client/Options$3/process (Ljava/lang/String;I)I +MD: net/minecraft/client/Options$3/m_168490_ (Ljava/lang/String;)V net/minecraft/client/Options$3/writePrefix (Ljava/lang/String;)V +MD: net/minecraft/client/Options$3/m_213982_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/Options$3/process (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/Options$3/m_232131_ (Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/client/Options$3/lambda$process$0 (Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/client/Options$3/m_232137_ (Ljava/lang/String;Ljava/io/PrintWriter;Lcom/google/gson/JsonElement;)V net/minecraft/client/Options$3/lambda$process$1 (Ljava/lang/String;Ljava/io/PrintWriter;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/Options$4/ ()V net/minecraft/client/Options$4/ ()V +MD: net/minecraft/client/Options$FieldAccess/m_141943_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$FieldAccess/m_142432_ (Ljava/lang/String;F)F net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;F)F +MD: net/minecraft/client/Options$FieldAccess/m_142634_ (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/client/Options$FieldAccess/m_142682_ (Ljava/lang/String;Z)Z net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Z)Z +MD: net/minecraft/client/Options$FieldAccess/m_142708_ (Ljava/lang/String;I)I net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;I)I +MD: net/minecraft/client/Options$FieldAccess/m_213982_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/ParticleStatus/ ()V net/minecraft/client/ParticleStatus/ ()V +MD: net/minecraft/client/ParticleStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/ParticleStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/ParticleStatus/m_168537_ ()[Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/$values ()[Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/ParticleStatus/m_35965_ ()I net/minecraft/client/ParticleStatus/getId ()I +MD: net/minecraft/client/ParticleStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/ParticleStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/ParticleStatus/m_92196_ (I)Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/byId (I)Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/ParticleStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/ParticleStatus/values ()[Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/values ()[Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/PeriodicNotificationManager/ ()V net/minecraft/client/PeriodicNotificationManager/ ()V +MD: net/minecraft/client/PeriodicNotificationManager/ (Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/objects/Object2BooleanFunction;)V net/minecraft/client/PeriodicNotificationManager/ (Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/objects/Object2BooleanFunction;)V +MD: net/minecraft/client/PeriodicNotificationManager/close ()V net/minecraft/client/PeriodicNotificationManager/close ()V +MD: net/minecraft/client/PeriodicNotificationManager/m_205295_ ()V net/minecraft/client/PeriodicNotificationManager/stopTimer ()V +MD: net/minecraft/client/PeriodicNotificationManager/m_205296_ (JLnet/minecraft/client/PeriodicNotificationManager$Notification;)J net/minecraft/client/PeriodicNotificationManager/lambda$calculateOptimalPeriod$3 (JLnet/minecraft/client/PeriodicNotificationManager$Notification;)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205302_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/PeriodicNotificationManager/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/PeriodicNotificationManager/m_205304_ (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)J net/minecraft/client/PeriodicNotificationManager/lambda$calculateInitialDelay$5 (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205310_ (Ljava/util/List;)J net/minecraft/client/PeriodicNotificationManager/calculateInitialDelay (Ljava/util/List;)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205312_ (Ljava/util/List;J)J net/minecraft/client/PeriodicNotificationManager/calculateOptimalPeriod (Ljava/util/List;J)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205315_ (Ljava/util/Map$Entry;)Z net/minecraft/client/PeriodicNotificationManager/lambda$apply$1 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/PeriodicNotificationManager/m_205321_ ()Ljava/lang/IllegalStateException; net/minecraft/client/PeriodicNotificationManager/lambda$calculateOptimalPeriod$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/client/PeriodicNotificationManager/m_205325_ (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)Z net/minecraft/client/PeriodicNotificationManager/lambda$apply$2 (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)Z +MD: net/minecraft/client/PeriodicNotificationManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/PeriodicNotificationManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/PeriodicNotificationManager/m_5787_ (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/PeriodicNotificationManager/apply (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/PeriodicNotificationManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; net/minecraft/client/PeriodicNotificationManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; +MD: net/minecraft/client/PeriodicNotificationManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/PeriodicNotificationManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/PeriodicNotificationManager$Notification/ (JJLjava/lang/String;Ljava/lang/String;)V net/minecraft/client/PeriodicNotificationManager$Notification/ (JJLjava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/PeriodicNotificationManager$Notification/equals (Ljava/lang/Object;)Z net/minecraft/client/PeriodicNotificationManager$Notification/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205328_ ()J net/minecraft/client/PeriodicNotificationManager$Notification/delay ()J +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205329_ ()J net/minecraft/client/PeriodicNotificationManager$Notification/period ()J +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205330_ ()Ljava/lang/String; net/minecraft/client/PeriodicNotificationManager$Notification/title ()Ljava/lang/String; +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205331_ ()Ljava/lang/String; net/minecraft/client/PeriodicNotificationManager$Notification/message ()Ljava/lang/String; +MD: net/minecraft/client/PeriodicNotificationManager$Notification/hashCode ()I net/minecraft/client/PeriodicNotificationManager$Notification/hashCode ()I +MD: net/minecraft/client/PeriodicNotificationManager$Notification/toString ()Ljava/lang/String; net/minecraft/client/PeriodicNotificationManager$Notification/toString ()Ljava/lang/String; +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/ (Ljava/util/List;JJ)V net/minecraft/client/PeriodicNotificationManager$NotificationTask/ (Ljava/util/List;JJ)V +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/m_205353_ (Lnet/minecraft/client/PeriodicNotificationManager$Notification;J)V net/minecraft/client/PeriodicNotificationManager$NotificationTask/lambda$run$0 (Lnet/minecraft/client/PeriodicNotificationManager$Notification;J)V +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/m_205356_ (Ljava/util/List;J)Lnet/minecraft/client/PeriodicNotificationManager$NotificationTask; net/minecraft/client/PeriodicNotificationManager$NotificationTask/reset (Ljava/util/List;J)Lnet/minecraft/client/PeriodicNotificationManager$NotificationTask; +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/run ()V net/minecraft/client/PeriodicNotificationManager$NotificationTask/run ()V +MD: net/minecraft/client/PrioritizeChunkUpdates/ ()V net/minecraft/client/PrioritizeChunkUpdates/ ()V +MD: net/minecraft/client/PrioritizeChunkUpdates/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/PrioritizeChunkUpdates/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/PrioritizeChunkUpdates/m_193787_ (I)Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/byId (I)Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/PrioritizeChunkUpdates/m_193792_ ()[Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/$values ()[Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/PrioritizeChunkUpdates/m_35965_ ()I net/minecraft/client/PrioritizeChunkUpdates/getId ()I +MD: net/minecraft/client/PrioritizeChunkUpdates/m_35968_ ()Ljava/lang/String; net/minecraft/client/PrioritizeChunkUpdates/getKey ()Ljava/lang/String; +MD: net/minecraft/client/PrioritizeChunkUpdates/valueOf (Ljava/lang/String;)Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/valueOf (Ljava/lang/String;)Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/PrioritizeChunkUpdates/values ()[Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/values ()[Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/Realms32BitWarningStatus/ ()V net/minecraft/client/Realms32BitWarningStatus/ ()V +MD: net/minecraft/client/Realms32BitWarningStatus/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/Realms32BitWarningStatus/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/Realms32BitWarningStatus/m_232205_ ()Ljava/lang/Boolean; net/minecraft/client/Realms32BitWarningStatus/checkForRealmsSubscription ()Ljava/lang/Boolean; +MD: net/minecraft/client/Realms32BitWarningStatus/m_232206_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z net/minecraft/client/Realms32BitWarningStatus/lambda$hasRealmsSubscription$0 (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: net/minecraft/client/Realms32BitWarningStatus/m_232208_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Realms32BitWarningStatus/showRealms32BitWarningIfNeeded (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Realms32BitWarningStatus/m_232210_ ()Z net/minecraft/client/Realms32BitWarningStatus/hasRealmsSubscription ()Z +MD: net/minecraft/client/RecipeBookCategories/ ()V net/minecraft/client/RecipeBookCategories/ ()V +MD: net/minecraft/client/RecipeBookCategories/ (Ljava/lang/String;I[Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/RecipeBookCategories/ (Ljava/lang/String;I[Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/RecipeBookCategories/m_168550_ ()[Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/RecipeBookCategories/$values ()[Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/RecipeBookCategories/m_92268_ ()Ljava/util/List; net/minecraft/client/RecipeBookCategories/getIconItems ()Ljava/util/List; +MD: net/minecraft/client/RecipeBookCategories/m_92269_ (Lnet/minecraft/world/inventory/RecipeBookType;)Ljava/util/List; net/minecraft/client/RecipeBookCategories/getCategories (Lnet/minecraft/world/inventory/RecipeBookType;)Ljava/util/List; +MD: net/minecraft/client/RecipeBookCategories/valueOf (Ljava/lang/String;)Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/RecipeBookCategories/valueOf (Ljava/lang/String;)Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/RecipeBookCategories/values ()[Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/RecipeBookCategories/values ()[Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/RecipeBookCategories$1/ ()V net/minecraft/client/RecipeBookCategories$1/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker/ ()V net/minecraft/client/ResourceLoadStateTracker/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker/ ()V net/minecraft/client/ResourceLoadStateTracker/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168556_ ()V net/minecraft/client/ResourceLoadStateTracker/finishReload ()V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168557_ (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V net/minecraft/client/ResourceLoadStateTracker/startReload (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168560_ (Ljava/lang/Throwable;)V net/minecraft/client/ResourceLoadStateTracker/startRecovery (Ljava/lang/Throwable;)V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168562_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/ResourceLoadStateTracker/fillCrashReport (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/ (Ljava/lang/Throwable;)V net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/ (Ljava/lang/Throwable;)V +MD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/m_168567_ ()Ljava/lang/String; net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/lambda$fillCrashInfo$0 ()Ljava/lang/String; +MD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/m_168568_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/fillCrashInfo (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ ()V net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/m_168580_ ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; net/minecraft/client/ResourceLoadStateTracker$ReloadReason/$values ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; net/minecraft/client/ResourceLoadStateTracker$ReloadReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/values ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; net/minecraft/client/ResourceLoadStateTracker$ReloadReason/values ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/ (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V net/minecraft/client/ResourceLoadStateTracker$ReloadState/ (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/m_168591_ ()Ljava/lang/String; net/minecraft/client/ResourceLoadStateTracker$ReloadState/lambda$fillCrashInfo$0 ()Ljava/lang/String; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/m_168592_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/client/ResourceLoadStateTracker$ReloadState/fillCrashInfo (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/client/Screenshot/ ()V net/minecraft/client/Screenshot/ ()V +MD: net/minecraft/client/Screenshot/ (Ljava/io/File;III)V net/minecraft/client/Screenshot/ (Ljava/io/File;III)V +MD: net/minecraft/client/Screenshot/m_168605_ ()V net/minecraft/client/Screenshot/saveRow ()V +MD: net/minecraft/client/Screenshot/m_168606_ (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Screenshot/lambda$_grab$1 (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Screenshot/m_168609_ (Ljava/nio/ByteBuffer;IIII)V net/minecraft/client/Screenshot/addRegion (Ljava/nio/ByteBuffer;IIII)V +MD: net/minecraft/client/Screenshot/m_168615_ ()Ljava/io/File; net/minecraft/client/Screenshot/close ()Ljava/io/File; +MD: net/minecraft/client/Screenshot/m_182556_ (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/lambda$grab$0 (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92279_ (Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/Screenshot/takeScreenshot (Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/Screenshot/m_92283_ (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/io/File;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/lambda$_grab$2 (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/io/File;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92287_ (Ljava/io/File;)Ljava/io/File; net/minecraft/client/Screenshot/getFile (Ljava/io/File;)Ljava/io/File; +MD: net/minecraft/client/Screenshot/m_92289_ (Ljava/io/File;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/grab (Ljava/io/File;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92295_ (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/grab (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92305_ (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/_grab (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/StringSplitter/ (Lnet/minecraft/client/StringSplitter$WidthProvider;)V net/minecraft/client/StringSplitter/ (Lnet/minecraft/client/StringSplitter$WidthProvider;)V +MD: net/minecraft/client/StringSplitter/m_168616_ (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V net/minecraft/client/StringSplitter/lambda$splitLines$8 (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V +MD: net/minecraft/client/StringSplitter/m_168621_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/FormattedText;)Ljava/util/List; net/minecraft/client/StringSplitter/splitLines (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/FormattedText;)Ljava/util/List; +MD: net/minecraft/client/StringSplitter/m_168626_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I net/minecraft/client/StringSplitter/formattedIndexByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I +MD: net/minecraft/client/StringSplitter/m_168630_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; net/minecraft/client/StringSplitter/formattedHeadByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter/m_168634_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I net/minecraft/client/StringSplitter/findLineBreak (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I +MD: net/minecraft/client/StringSplitter/m_92336_ (Lnet/minecraft/util/FormattedCharSequence;)F net/minecraft/client/StringSplitter/stringWidth (Lnet/minecraft/util/FormattedCharSequence;)F +MD: net/minecraft/client/StringSplitter/m_92338_ (Lnet/minecraft/util/FormattedCharSequence;I)Lnet/minecraft/network/chat/Style; net/minecraft/client/StringSplitter/componentStyleAtWidth (Lnet/minecraft/util/FormattedCharSequence;I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/StringSplitter/m_92341_ (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/StringSplitter/lambda$componentStyleAtWidth$4 (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter/m_92345_ (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lorg/apache/commons/lang3/mutable/MutableObject;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$componentStyleAtWidth$5 (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lorg/apache/commons/lang3/mutable/MutableObject;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92353_ (Ljava/lang/String;)F net/minecraft/client/StringSplitter/stringWidth (Ljava/lang/String;)F +MD: net/minecraft/client/StringSplitter/m_92355_ (Ljava/lang/String;IIZ)I net/minecraft/client/StringSplitter/getWordPosition (Ljava/lang/String;IIZ)I +MD: net/minecraft/client/StringSplitter/m_92360_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I net/minecraft/client/StringSplitter/plainIndexAtWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I +MD: net/minecraft/client/StringSplitter/m_92364_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;ZLnet/minecraft/client/StringSplitter$LinePosConsumer;)V net/minecraft/client/StringSplitter/splitLines (Ljava/lang/String;ILnet/minecraft/network/chat/Style;ZLnet/minecraft/client/StringSplitter$LinePosConsumer;)V +MD: net/minecraft/client/StringSplitter/m_92370_ (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/StringSplitter/lambda$splitLines$6 (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/StringSplitter/m_92376_ (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V net/minecraft/client/StringSplitter/lambda$splitLines$7 (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V +MD: net/minecraft/client/StringSplitter/m_92380_ (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/StringSplitter/lambda$splitLines$9 (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter/m_92384_ (Lnet/minecraft/network/chat/FormattedText;)F net/minecraft/client/StringSplitter/stringWidth (Lnet/minecraft/network/chat/FormattedText;)F +MD: net/minecraft/client/StringSplitter/m_92386_ (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/Style; net/minecraft/client/StringSplitter/componentStyleAtWidth (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/StringSplitter/m_92389_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/StringSplitter/headByWidth (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/StringSplitter/m_92393_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Ljava/util/function/BiConsumer;)V net/minecraft/client/StringSplitter/splitLines (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/client/StringSplitter/m_92398_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$stringWidth$2 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92403_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$plainTailByWidth$3 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92410_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; net/minecraft/client/StringSplitter/plainHeadByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter/m_92414_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Ljava/util/List; net/minecraft/client/StringSplitter/splitLines (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Ljava/util/List; +MD: net/minecraft/client/StringSplitter/m_92418_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$stringWidth$1 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92423_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; net/minecraft/client/StringSplitter/plainTailByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter/m_92427_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$stringWidth$0 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92432_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/util/List; net/minecraft/client/StringSplitter/splitLines (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/util/List; +MD: net/minecraft/client/StringSplitter$1/ (Lnet/minecraft/client/StringSplitter;Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;)V net/minecraft/client/StringSplitter$1/ (Lnet/minecraft/client/StringSplitter;Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;)V +MD: net/minecraft/client/StringSplitter$1/m_7164_ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/StringSplitter$1/accept (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter$FlatComponents/ (Ljava/util/List;)V net/minecraft/client/StringSplitter$FlatComponents/ (Ljava/util/List;)V +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92449_ ()Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/StringSplitter$FlatComponents/getRemainder ()Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92450_ (I)C net/minecraft/client/StringSplitter$FlatComponents/charAt (I)C +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92452_ (IILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/StringSplitter$FlatComponents/splitAt (IILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92458_ (Lnet/minecraft/client/StringSplitter$LineComponent;)Ljava/lang/String; net/minecraft/client/StringSplitter$FlatComponents/lambda$new$0 (Lnet/minecraft/client/StringSplitter$LineComponent;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter$LineBreakFinder/ (Lnet/minecraft/client/StringSplitter;F)V net/minecraft/client/StringSplitter$LineBreakFinder/ (Lnet/minecraft/client/StringSplitter;F)V +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter$LineBreakFinder/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92473_ ()I net/minecraft/client/StringSplitter$LineBreakFinder/getSplitPosition ()I +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92474_ (I)V net/minecraft/client/StringSplitter$LineBreakFinder/addToOffset (I)V +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92476_ (ILnet/minecraft/network/chat/Style;)Z net/minecraft/client/StringSplitter$LineBreakFinder/finishIteration (ILnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92483_ ()Lnet/minecraft/network/chat/Style; net/minecraft/client/StringSplitter$LineBreakFinder/getSplitStyle ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92484_ ()Z net/minecraft/client/StringSplitter$LineBreakFinder/lineBreakFound ()Z +MD: net/minecraft/client/StringSplitter$LineComponent/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V net/minecraft/client/StringSplitter$LineComponent/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/client/StringSplitter$LineComponent/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/client/StringSplitter$LineComponent/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter$LineComponent/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/client/StringSplitter$LineComponent/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter$LinePosConsumer/m_92499_ (Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/StringSplitter$LinePosConsumer/accept (Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/ (Lnet/minecraft/client/StringSplitter;F)V net/minecraft/client/StringSplitter$WidthLimitedCharSink/ (Lnet/minecraft/client/StringSplitter;F)V +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter$WidthLimitedCharSink/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/m_92509_ ()I net/minecraft/client/StringSplitter$WidthLimitedCharSink/getPosition ()I +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/m_92514_ ()V net/minecraft/client/StringSplitter$WidthLimitedCharSink/resetPosition ()V +MD: net/minecraft/client/StringSplitter$WidthProvider/m_92515_ (ILnet/minecraft/network/chat/Style;)F net/minecraft/client/StringSplitter$WidthProvider/getWidth (ILnet/minecraft/network/chat/Style;)F +MD: net/minecraft/client/Timer/ (FJ)V net/minecraft/client/Timer/ (FJ)V +MD: net/minecraft/client/Timer/m_92525_ (J)I net/minecraft/client/Timer/advanceTime (J)I +MD: net/minecraft/client/ToggleKeyMapping/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/ToggleKeyMapping/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/ToggleKeyMapping/m_289748_ ()V net/minecraft/client/ToggleKeyMapping/reset ()V +MD: net/minecraft/client/ToggleKeyMapping/m_7249_ (Z)V net/minecraft/client/ToggleKeyMapping/setDown (Z)V +MD: net/minecraft/client/User/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/client/User$Type;)V net/minecraft/client/User/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/client/User$Type;)V +MD: net/minecraft/client/User/m_168638_ ()Lnet/minecraft/client/User$Type; net/minecraft/client/User/getType ()Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User/m_193805_ ()Ljava/util/Optional; net/minecraft/client/User/getClientId ()Ljava/util/Optional; +MD: net/minecraft/client/User/m_193806_ ()Ljava/util/Optional; net/minecraft/client/User/getXuid ()Ljava/util/Optional; +MD: net/minecraft/client/User/m_240411_ ()Ljava/util/UUID; net/minecraft/client/User/getProfileId ()Ljava/util/UUID; +MD: net/minecraft/client/User/m_92544_ ()Ljava/lang/String; net/minecraft/client/User/getSessionId ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92545_ ()Ljava/lang/String; net/minecraft/client/User/getUuid ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92546_ ()Ljava/lang/String; net/minecraft/client/User/getName ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92547_ ()Ljava/lang/String; net/minecraft/client/User/getAccessToken ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92548_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/User/getGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/User$Type/ ()V net/minecraft/client/User$Type/ ()V +MD: net/minecraft/client/User$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/User$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/User$Type/m_168639_ ()[Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/$values ()[Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User$Type/m_193808_ ()Ljava/lang/String; net/minecraft/client/User$Type/getName ()Ljava/lang/String; +MD: net/minecraft/client/User$Type/m_92559_ (Lnet/minecraft/client/User$Type;)Ljava/lang/String; net/minecraft/client/User$Type/lambda$static$0 (Lnet/minecraft/client/User$Type;)Ljava/lang/String; +MD: net/minecraft/client/User$Type/m_92561_ (Ljava/lang/String;)Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/byName (Ljava/lang/String;)Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User$Type/values ()[Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/values ()[Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/animation/AnimationChannel/ (Lnet/minecraft/client/animation/AnimationChannel$Target;[Lnet/minecraft/client/animation/Keyframe;)V net/minecraft/client/animation/AnimationChannel/ (Lnet/minecraft/client/animation/AnimationChannel$Target;[Lnet/minecraft/client/animation/Keyframe;)V +MD: net/minecraft/client/animation/AnimationChannel/equals (Ljava/lang/Object;)Z net/minecraft/client/animation/AnimationChannel/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/animation/AnimationChannel/f_232211_ ()Lnet/minecraft/client/animation/AnimationChannel$Target; net/minecraft/client/animation/AnimationChannel/target ()Lnet/minecraft/client/animation/AnimationChannel$Target; +MD: net/minecraft/client/animation/AnimationChannel/f_232212_ ()[Lnet/minecraft/client/animation/Keyframe; net/minecraft/client/animation/AnimationChannel/keyframes ()[Lnet/minecraft/client/animation/Keyframe; +MD: net/minecraft/client/animation/AnimationChannel/hashCode ()I net/minecraft/client/animation/AnimationChannel/hashCode ()I +MD: net/minecraft/client/animation/AnimationChannel/toString ()Ljava/lang/String; net/minecraft/client/animation/AnimationChannel/toString ()Ljava/lang/String; +MD: net/minecraft/client/animation/AnimationChannel$Interpolation/m_232222_ (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; net/minecraft/client/animation/AnimationChannel$Interpolation/apply (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/m_232233_ (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; net/minecraft/client/animation/AnimationChannel$Interpolations/lambda$static$1 (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/m_252556_ (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; net/minecraft/client/animation/AnimationChannel$Interpolations/lambda$static$0 (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/AnimationChannel$Target/m_232247_ (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V net/minecraft/client/animation/AnimationChannel$Target/apply (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/animation/AnimationChannel$Targets/ ()V net/minecraft/client/animation/AnimationChannel$Targets/ ()V +MD: net/minecraft/client/animation/AnimationChannel$Targets/ ()V net/minecraft/client/animation/AnimationChannel$Targets/ ()V +MD: net/minecraft/client/animation/AnimationDefinition/ (FZLjava/util/Map;)V net/minecraft/client/animation/AnimationDefinition/ (FZLjava/util/Map;)V +MD: net/minecraft/client/animation/AnimationDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/animation/AnimationDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/animation/AnimationDefinition/f_232255_ ()F net/minecraft/client/animation/AnimationDefinition/lengthInSeconds ()F +MD: net/minecraft/client/animation/AnimationDefinition/f_232256_ ()Z net/minecraft/client/animation/AnimationDefinition/looping ()Z +MD: net/minecraft/client/animation/AnimationDefinition/f_232257_ ()Ljava/util/Map; net/minecraft/client/animation/AnimationDefinition/boneAnimations ()Ljava/util/Map; +MD: net/minecraft/client/animation/AnimationDefinition/hashCode ()I net/minecraft/client/animation/AnimationDefinition/hashCode ()I +MD: net/minecraft/client/animation/AnimationDefinition/toString ()Ljava/lang/String; net/minecraft/client/animation/AnimationDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/ (F)V net/minecraft/client/animation/AnimationDefinition$Builder/ (F)V +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232274_ ()Lnet/minecraft/client/animation/AnimationDefinition$Builder; net/minecraft/client/animation/AnimationDefinition$Builder/looping ()Lnet/minecraft/client/animation/AnimationDefinition$Builder; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232275_ (F)Lnet/minecraft/client/animation/AnimationDefinition$Builder; net/minecraft/client/animation/AnimationDefinition$Builder/withLength (F)Lnet/minecraft/client/animation/AnimationDefinition$Builder; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232277_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/animation/AnimationDefinition$Builder/lambda$addAnimation$0 (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232279_ (Ljava/lang/String;Lnet/minecraft/client/animation/AnimationChannel;)Lnet/minecraft/client/animation/AnimationDefinition$Builder; net/minecraft/client/animation/AnimationDefinition$Builder/addAnimation (Ljava/lang/String;Lnet/minecraft/client/animation/AnimationChannel;)Lnet/minecraft/client/animation/AnimationDefinition$Builder; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232282_ ()Lnet/minecraft/client/animation/AnimationDefinition; net/minecraft/client/animation/AnimationDefinition$Builder/build ()Lnet/minecraft/client/animation/AnimationDefinition; +MD: net/minecraft/client/animation/Keyframe/ (FLorg/joml/Vector3f;Lnet/minecraft/client/animation/AnimationChannel$Interpolation;)V net/minecraft/client/animation/Keyframe/ (FLorg/joml/Vector3f;Lnet/minecraft/client/animation/AnimationChannel$Interpolation;)V +MD: net/minecraft/client/animation/Keyframe/equals (Ljava/lang/Object;)Z net/minecraft/client/animation/Keyframe/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/animation/Keyframe/f_232283_ ()F net/minecraft/client/animation/Keyframe/timestamp ()F +MD: net/minecraft/client/animation/Keyframe/f_232284_ ()Lorg/joml/Vector3f; net/minecraft/client/animation/Keyframe/target ()Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/Keyframe/f_232285_ ()Lnet/minecraft/client/animation/AnimationChannel$Interpolation; net/minecraft/client/animation/Keyframe/interpolation ()Lnet/minecraft/client/animation/AnimationChannel$Interpolation; +MD: net/minecraft/client/animation/Keyframe/hashCode ()I net/minecraft/client/animation/Keyframe/hashCode ()I +MD: net/minecraft/client/animation/Keyframe/toString ()Ljava/lang/String; net/minecraft/client/animation/Keyframe/toString ()Ljava/lang/String; +MD: net/minecraft/client/animation/KeyframeAnimations/ ()V net/minecraft/client/animation/KeyframeAnimations/ ()V +MD: net/minecraft/client/animation/KeyframeAnimations/m_232312_ (F[Lnet/minecraft/client/animation/Keyframe;I)Z net/minecraft/client/animation/KeyframeAnimations/lambda$animate$0 (F[Lnet/minecraft/client/animation/Keyframe;I)Z +MD: net/minecraft/client/animation/KeyframeAnimations/m_232316_ (Lnet/minecraft/client/animation/AnimationDefinition;J)F net/minecraft/client/animation/KeyframeAnimations/getElapsedSeconds (Lnet/minecraft/client/animation/AnimationDefinition;J)F +MD: net/minecraft/client/animation/KeyframeAnimations/m_232319_ (Lnet/minecraft/client/model/HierarchicalModel;Lnet/minecraft/client/animation/AnimationDefinition;JFLorg/joml/Vector3f;)V net/minecraft/client/animation/KeyframeAnimations/animate (Lnet/minecraft/client/model/HierarchicalModel;Lnet/minecraft/client/animation/AnimationDefinition;JFLorg/joml/Vector3f;)V +MD: net/minecraft/client/animation/KeyframeAnimations/m_232325_ (Ljava/util/List;FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/animation/KeyframeAnimations/lambda$animate$2 (Ljava/util/List;FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/animation/KeyframeAnimations/m_253004_ (DDD)Lorg/joml/Vector3f; net/minecraft/client/animation/KeyframeAnimations/scaleVec (DDD)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/KeyframeAnimations/m_253126_ (FFF)Lorg/joml/Vector3f; net/minecraft/client/animation/KeyframeAnimations/posVec (FFF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/KeyframeAnimations/m_253186_ (FFF)Lorg/joml/Vector3f; net/minecraft/client/animation/KeyframeAnimations/degreeVec (FFF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/KeyframeAnimations/m_287796_ (FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/animation/AnimationChannel;)V net/minecraft/client/animation/KeyframeAnimations/lambda$animate$1 (FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/animation/AnimationChannel;)V +MD: net/minecraft/client/animation/definitions/CamelAnimation/ ()V net/minecraft/client/animation/definitions/CamelAnimation/ ()V +MD: net/minecraft/client/animation/definitions/CamelAnimation/ ()V net/minecraft/client/animation/definitions/CamelAnimation/ ()V +MD: net/minecraft/client/animation/definitions/FrogAnimation/ ()V net/minecraft/client/animation/definitions/FrogAnimation/ ()V +MD: net/minecraft/client/animation/definitions/FrogAnimation/ ()V net/minecraft/client/animation/definitions/FrogAnimation/ ()V +MD: net/minecraft/client/animation/definitions/SnifferAnimation/ ()V net/minecraft/client/animation/definitions/SnifferAnimation/ ()V +MD: net/minecraft/client/animation/definitions/SnifferAnimation/ ()V net/minecraft/client/animation/definitions/SnifferAnimation/ ()V +MD: net/minecraft/client/animation/definitions/WardenAnimation/ ()V net/minecraft/client/animation/definitions/WardenAnimation/ ()V +MD: net/minecraft/client/animation/definitions/WardenAnimation/ ()V net/minecraft/client/animation/definitions/WardenAnimation/ ()V +MD: net/minecraft/client/color/block/BlockColor/m_92566_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColor/getColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/ ()V net/minecraft/client/color/block/BlockColors/ ()V +MD: net/minecraft/client/color/block/BlockColors/m_276170_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_276171_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_276172_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92574_ ()Lnet/minecraft/client/color/block/BlockColors; net/minecraft/client/color/block/BlockColors/createDefault ()Lnet/minecraft/client/color/block/BlockColors; +MD: net/minecraft/client/color/block/BlockColors/m_92575_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; net/minecraft/client/color/block/BlockColors/getColoringProperties (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; +MD: net/minecraft/client/color/block/BlockColors/m_92577_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/getColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92582_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/color/block/BlockColors/getColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/color/block/BlockColors/m_92586_ (Lnet/minecraft/world/level/block/state/properties/Property;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/client/color/block/BlockColors/addColoringState (Lnet/minecraft/world/level/block/state/properties/Property;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/client/color/block/BlockColors/m_92589_ (Lnet/minecraft/client/color/block/BlockColor;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/client/color/block/BlockColors/register (Lnet/minecraft/client/color/block/BlockColor;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/client/color/block/BlockColors/m_92592_ (Ljava/util/Set;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/client/color/block/BlockColors/addColoringStates (Ljava/util/Set;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/client/color/block/BlockColors/m_92595_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$11 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92600_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$10 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92605_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$9 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92610_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$8 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92615_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$7 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92620_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92625_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92630_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockTintCache/ (Ljava/util/function/ToIntFunction;)V net/minecraft/client/color/block/BlockTintCache/ (Ljava/util/function/ToIntFunction;)V +MD: net/minecraft/client/color/block/BlockTintCache/m_193812_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/color/block/BlockTintCache/getColor (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/color/block/BlockTintCache/m_193814_ (II)Lnet/minecraft/client/color/block/BlockTintCache$CacheData; net/minecraft/client/color/block/BlockTintCache/findOrCreateChunkCache (II)Lnet/minecraft/client/color/block/BlockTintCache$CacheData; +MD: net/minecraft/client/color/block/BlockTintCache/m_92654_ ()V net/minecraft/client/color/block/BlockTintCache/invalidateAll ()V +MD: net/minecraft/client/color/block/BlockTintCache/m_92655_ (II)V net/minecraft/client/color/block/BlockTintCache/invalidateForChunk (II)V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_193822_ ()[I net/minecraft/client/color/block/BlockTintCache$CacheData/allocateLayer ()[I +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_193823_ (I)[I net/minecraft/client/color/block/BlockTintCache$CacheData/getLayer (I)[I +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_193825_ (I)[I net/minecraft/client/color/block/BlockTintCache$CacheData/lambda$getLayer$0 (I)[I +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_262378_ ()V net/minecraft/client/color/block/BlockTintCache$CacheData/invalidate ()V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_262488_ ()Z net/minecraft/client/color/block/BlockTintCache$CacheData/isInvalidated ()Z +MD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/ ()V net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/ ()V +MD: net/minecraft/client/color/item/ItemColor/m_92671_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColor/getColor (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/ ()V net/minecraft/client/color/item/ItemColors/ ()V +MD: net/minecraft/client/color/item/ItemColors/m_232351_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$8 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92676_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/getColor (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92679_ (Lnet/minecraft/world/item/SpawnEggItem;Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$4 (Lnet/minecraft/world/item/SpawnEggItem;Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92683_ (Lnet/minecraft/client/color/block/BlockColors;)Lnet/minecraft/client/color/item/ItemColors; net/minecraft/client/color/item/ItemColors/createDefault (Lnet/minecraft/client/color/block/BlockColors;)Lnet/minecraft/client/color/item/ItemColors; +MD: net/minecraft/client/color/item/ItemColors/m_92685_ (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$5 (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92689_ (Lnet/minecraft/client/color/item/ItemColor;[Lnet/minecraft/world/level/ItemLike;)V net/minecraft/client/color/item/ItemColors/register (Lnet/minecraft/client/color/item/ItemColor;[Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/client/color/item/ItemColors/m_92692_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$7 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92695_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$6 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92698_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$3 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92701_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$2 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92704_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$1 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92707_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$0 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/gui/ComponentPath/m_264222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/ComponentPath/component ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/ComponentPath/m_264334_ (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath/path (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath/m_264401_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath/leaf (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath/m_264432_ (Z)V net/minecraft/client/gui/ComponentPath/applyFocus (Z)V +MD: net/minecraft/client/gui/ComponentPath/m_264492_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;[Lnet/minecraft/client/gui/components/events/ContainerEventHandler;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath/path (Lnet/minecraft/client/gui/components/events/GuiEventListener;[Lnet/minecraft/client/gui/components/events/ContainerEventHandler;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath$Leaf/ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/ComponentPath$Leaf/ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/ComponentPath$Leaf/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/ComponentPath$Leaf/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/ComponentPath$Leaf/hashCode ()I net/minecraft/client/gui/ComponentPath$Leaf/hashCode ()I +MD: net/minecraft/client/gui/ComponentPath$Leaf/m_264222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/ComponentPath$Leaf/component ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/ComponentPath$Leaf/m_264432_ (Z)V net/minecraft/client/gui/ComponentPath$Leaf/applyFocus (Z)V +MD: net/minecraft/client/gui/ComponentPath$Leaf/toString ()Ljava/lang/String; net/minecraft/client/gui/ComponentPath$Leaf/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/ComponentPath$Path/ (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)V net/minecraft/client/gui/ComponentPath$Path/ (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)V +MD: net/minecraft/client/gui/ComponentPath$Path/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/ComponentPath$Path/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/ComponentPath$Path/f_263808_ ()Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath$Path/childPath ()Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath$Path/hashCode ()I net/minecraft/client/gui/ComponentPath$Path/hashCode ()I +MD: net/minecraft/client/gui/ComponentPath$Path/m_264222_ ()Lnet/minecraft/client/gui/components/events/ContainerEventHandler; net/minecraft/client/gui/ComponentPath$Path/component ()Lnet/minecraft/client/gui/components/events/ContainerEventHandler; +MD: net/minecraft/client/gui/ComponentPath$Path/m_264222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/ComponentPath$Path/component ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/ComponentPath$Path/m_264432_ (Z)V net/minecraft/client/gui/ComponentPath$Path/applyFocus (Z)V +MD: net/minecraft/client/gui/ComponentPath$Path/toString ()Ljava/lang/String; net/minecraft/client/gui/ComponentPath$Path/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/Font/ ()V net/minecraft/client/gui/Font/ ()V +MD: net/minecraft/client/gui/Font/ (Ljava/util/function/Function;Z)V net/minecraft/client/gui/Font/ (Ljava/util/function/Function;Z)V +MD: net/minecraft/client/gui/Font/m_168645_ (Lnet/minecraft/util/FormattedCharSequence;FFIILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/gui/Font/drawInBatch8xOutline (Lnet/minecraft/util/FormattedCharSequence;FFIILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/gui/Font/m_168654_ (Lnet/minecraft/client/gui/Font$StringRenderOutput;[FIFIIILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/gui/Font/lambda$drawInBatch8xOutline$1 (Lnet/minecraft/client/gui/Font$StringRenderOutput;[FIFIIILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/gui/Font/m_239133_ (Lnet/minecraft/network/chat/FormattedText;I)I net/minecraft/client/gui/Font/wordWrapHeight (Lnet/minecraft/network/chat/FormattedText;I)I +MD: net/minecraft/client/gui/Font/m_243025_ (ILnet/minecraft/network/chat/Style;)F net/minecraft/client/gui/Font/lambda$new$0 (ILnet/minecraft/network/chat/Style;)F +MD: net/minecraft/client/gui/Font/m_253238_ (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph;ZZFFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V net/minecraft/client/gui/Font/renderChar (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph;ZZFFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V +MD: net/minecraft/client/gui/Font/m_271703_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInBatch (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_271880_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I net/minecraft/client/gui/Font/drawInternal (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I +MD: net/minecraft/client/gui/Font/m_271978_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F net/minecraft/client/gui/Font/renderText (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F +MD: net/minecraft/client/gui/Font/m_271992_ (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F net/minecraft/client/gui/Font/renderText (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F +MD: net/minecraft/client/gui/Font/m_272077_ (Lnet/minecraft/network/chat/Component;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInBatch (Lnet/minecraft/network/chat/Component;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_272078_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I net/minecraft/client/gui/Font/drawInBatch (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I +MD: net/minecraft/client/gui/Font/m_272085_ (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInternal (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_272191_ (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInBatch (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_92718_ ()Z net/minecraft/client/gui/Font/isBidirectional ()Z +MD: net/minecraft/client/gui/Font/m_92719_ (I)I net/minecraft/client/gui/Font/adjustColor (I)I +MD: net/minecraft/client/gui/Font/m_92724_ (Lnet/minecraft/util/FormattedCharSequence;)I net/minecraft/client/gui/Font/width (Lnet/minecraft/util/FormattedCharSequence;)I +MD: net/minecraft/client/gui/Font/m_92801_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/Font/bidirectionalShaping (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/Font/m_92834_ (Ljava/lang/String;I)Ljava/lang/String; net/minecraft/client/gui/Font/plainSubstrByWidth (Ljava/lang/String;I)Ljava/lang/String; +MD: net/minecraft/client/gui/Font/m_92837_ (Ljava/lang/String;IZ)Ljava/lang/String; net/minecraft/client/gui/Font/plainSubstrByWidth (Ljava/lang/String;IZ)Ljava/lang/String; +MD: net/minecraft/client/gui/Font/m_92852_ (Lnet/minecraft/network/chat/FormattedText;)I net/minecraft/client/gui/Font/width (Lnet/minecraft/network/chat/FormattedText;)I +MD: net/minecraft/client/gui/Font/m_92854_ (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/Font/substrByWidth (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/Font/m_92863_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; net/minecraft/client/gui/Font/getFontSet (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; +MD: net/minecraft/client/gui/Font/m_92865_ ()Lnet/minecraft/client/StringSplitter; net/minecraft/client/gui/Font/getSplitter ()Lnet/minecraft/client/StringSplitter; +MD: net/minecraft/client/gui/Font/m_92895_ (Ljava/lang/String;)I net/minecraft/client/gui/Font/width (Ljava/lang/String;)I +MD: net/minecraft/client/gui/Font/m_92920_ (Ljava/lang/String;I)I net/minecraft/client/gui/Font/wordWrapHeight (Ljava/lang/String;I)I +MD: net/minecraft/client/gui/Font/m_92923_ (Lnet/minecraft/network/chat/FormattedText;I)Ljava/util/List; net/minecraft/client/gui/Font/split (Lnet/minecraft/network/chat/FormattedText;I)Ljava/util/List; +MD: net/minecraft/client/gui/Font$DisplayMode/ ()V net/minecraft/client/gui/Font$DisplayMode/ ()V +MD: net/minecraft/client/gui/Font$DisplayMode/ (Ljava/lang/String;I)V net/minecraft/client/gui/Font$DisplayMode/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/Font$DisplayMode/m_181358_ ()[Lnet/minecraft/client/gui/Font$DisplayMode; net/minecraft/client/gui/Font$DisplayMode/$values ()[Lnet/minecraft/client/gui/Font$DisplayMode; +MD: net/minecraft/client/gui/Font$DisplayMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Font$DisplayMode; net/minecraft/client/gui/Font$DisplayMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Font$DisplayMode; +MD: net/minecraft/client/gui/Font$DisplayMode/values ()[Lnet/minecraft/client/gui/Font$DisplayMode; net/minecraft/client/gui/Font$DisplayMode/values ()[Lnet/minecraft/client/gui/Font$DisplayMode; +MD: net/minecraft/client/gui/Font$StringRenderOutput/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/renderer/MultiBufferSource;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/gui/Font$DisplayMode;I)V net/minecraft/client/gui/Font$StringRenderOutput/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/renderer/MultiBufferSource;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/gui/Font$DisplayMode;I)V +MD: net/minecraft/client/gui/Font$StringRenderOutput/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/gui/Font$StringRenderOutput/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/gui/Font$StringRenderOutput/m_92961_ (IF)F net/minecraft/client/gui/Font$StringRenderOutput/finish (IF)F +MD: net/minecraft/client/gui/Font$StringRenderOutput/m_92964_ (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;)V net/minecraft/client/gui/Font$StringRenderOutput/addEffect (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;)V +MD: net/minecraft/client/gui/Gui/ ()V net/minecraft/client/gui/Gui/ ()V +MD: net/minecraft/client/gui/Gui/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/gui/Gui/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/gui/Gui/m_168684_ (III)V net/minecraft/client/gui/Gui/setTimes (III)V +MD: net/minecraft/client/gui/Gui/m_168688_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V net/minecraft/client/gui/Gui/renderHearts (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V +MD: net/minecraft/client/gui/Gui/m_168711_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/Gui/setSubtitle (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/Gui/m_168713_ ()V net/minecraft/client/gui/Gui/clear ()V +MD: net/minecraft/client/gui/Gui/m_168714_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/Gui/setTitle (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/Gui/m_193832_ (Z)V net/minecraft/client/gui/Gui/tick (Z)V +MD: net/minecraft/client/gui/Gui/m_193836_ ()V net/minecraft/client/gui/Gui/tickAutosaveIndicator ()V +MD: net/minecraft/client/gui/Gui/m_238351_ ()Z net/minecraft/client/gui/Gui/isShowingChatDisabledByPlayer ()Z +MD: net/minecraft/client/gui/Gui/m_238397_ (Z)V net/minecraft/client/gui/Gui/setChatDisabledByPlayerShown (Z)V +MD: net/minecraft/client/gui/Gui/m_279741_ (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/gui/Gui/lambda$renderEffects$0 (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/gui/Gui/m_280030_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V net/minecraft/client/gui/Gui/displayScoreboardSidebar (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/client/gui/Gui/m_280069_ (Lnet/minecraft/world/entity/PlayerRideableJumping;Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/Gui/renderJumpMeter (Lnet/minecraft/world/entity/PlayerRideableJumping;Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/Gui/m_280130_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderCrosshair (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280154_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/gui/Gui/renderVignette (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/gui/Gui/m_280155_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V net/minecraft/client/gui/Gui/renderTextureOverlay (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V +MD: net/minecraft/client/gui/Gui/m_280173_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderPlayerHealth (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280250_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderVehicleHealth (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280266_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderSavingIndicator (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280276_ (Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/Gui/renderExperienceBar (Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/Gui/m_280278_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/gui/Gui/renderSpyglassOverlay (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/gui/Gui/m_280295_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderSelectedItemName (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280339_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderDemoOverlay (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280379_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/gui/Gui/renderPortalOverlay (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/gui/Gui/m_280421_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/gui/Gui/render (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/gui/Gui/m_280518_ (FLnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderHotbar (FLnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280523_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderEffects (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280585_ (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/client/gui/Gui/renderSlot (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/client/gui/Gui/m_280593_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Gui$HeartType;IIIZZ)V net/minecraft/client/gui/Gui/renderHeart (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Gui$HeartType;IIIZZ)V +MD: net/minecraft/client/gui/Gui/m_93006_ ()V net/minecraft/client/gui/Gui/resetTitleTimes ()V +MD: net/minecraft/client/gui/Gui/m_93012_ (I)I net/minecraft/client/gui/Gui/getVisibleVehicleHeartRows (I)I +MD: net/minecraft/client/gui/Gui/m_93020_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/gui/Gui/updateVignetteBrightness (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/gui/Gui/m_93022_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/gui/Gui/getVehicleMaxHearts (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/gui/Gui/m_93024_ (Lnet/minecraft/world/phys/HitResult;)Z net/minecraft/client/gui/Gui/canRenderCrosshairForSpectator (Lnet/minecraft/world/phys/HitResult;)Z +MD: net/minecraft/client/gui/Gui/m_93026_ (Lnet/minecraft/world/scores/Score;)Z net/minecraft/client/gui/Gui/lambda$displayScoreboardSidebar$1 (Lnet/minecraft/world/scores/Score;)Z +MD: net/minecraft/client/gui/Gui/m_93039_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V net/minecraft/client/gui/Gui/drawBackdrop (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V +MD: net/minecraft/client/gui/Gui/m_93055_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/Gui/setNowPlaying (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/Gui/m_93063_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/Gui/setOverlayMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/Gui/m_93066_ ()V net/minecraft/client/gui/Gui/tick ()V +MD: net/minecraft/client/gui/Gui/m_93076_ ()Lnet/minecraft/client/gui/components/ChatComponent; net/minecraft/client/gui/Gui/getChat ()Lnet/minecraft/client/gui/components/ChatComponent; +MD: net/minecraft/client/gui/Gui/m_93079_ ()I net/minecraft/client/gui/Gui/getGuiTicks ()I +MD: net/minecraft/client/gui/Gui/m_93082_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/Gui/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/Gui/m_93085_ ()Lnet/minecraft/client/gui/components/spectator/SpectatorGui; net/minecraft/client/gui/Gui/getSpectatorGui ()Lnet/minecraft/client/gui/components/spectator/SpectatorGui; +MD: net/minecraft/client/gui/Gui/m_93088_ ()Lnet/minecraft/client/gui/components/PlayerTabOverlay; net/minecraft/client/gui/Gui/getTabList ()Lnet/minecraft/client/gui/components/PlayerTabOverlay; +MD: net/minecraft/client/gui/Gui/m_93089_ ()V net/minecraft/client/gui/Gui/onDisconnected ()V +MD: net/minecraft/client/gui/Gui/m_93090_ ()Lnet/minecraft/client/gui/components/BossHealthOverlay; net/minecraft/client/gui/Gui/getBossOverlay ()Lnet/minecraft/client/gui/components/BossHealthOverlay; +MD: net/minecraft/client/gui/Gui/m_93091_ ()V net/minecraft/client/gui/Gui/clearCache ()V +MD: net/minecraft/client/gui/Gui/m_93092_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/client/gui/Gui/getCameraPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/client/gui/Gui/m_93093_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/client/gui/Gui/getPlayerVehicleWithHealth ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/client/gui/Gui$HeartType/ ()V net/minecraft/client/gui/Gui$HeartType/ ()V +MD: net/minecraft/client/gui/Gui$HeartType/ (Ljava/lang/String;IIZ)V net/minecraft/client/gui/Gui$HeartType/ (Ljava/lang/String;IIZ)V +MD: net/minecraft/client/gui/Gui$HeartType/m_168731_ ()[Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/$values ()[Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/Gui$HeartType/m_168732_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/forPlayer (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/Gui$HeartType/m_168734_ (ZZ)I net/minecraft/client/gui/Gui$HeartType/getX (ZZ)I +MD: net/minecraft/client/gui/Gui$HeartType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/Gui$HeartType/values ()[Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/values ()[Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280024_ (IIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280027_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitNineSliced (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280046_ (IIIIII)V net/minecraft/client/gui/GuiGraphics/fill (IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280053_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280056_ (Lnet/minecraft/client/gui/Font;Ljava/lang/String;IIIZ)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Ljava/lang/String;IIIZ)I +MD: net/minecraft/client/gui/GuiGraphics/m_280064_ (Lnet/minecraft/world/item/ItemStack;IIII)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/item/ItemStack;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280091_ ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/gui/GuiGraphics/bufferSource ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/gui/GuiGraphics/m_280120_ (IIIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (IIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280124_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$0 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280137_ (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)V net/minecraft/client/gui/GuiGraphics/drawCenteredString (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280149_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$2 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280153_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280159_ (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/gui/GuiGraphics/blit (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280163_ (Lnet/minecraft/resources/ResourceLocation;IIFFIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIFFIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280168_ ()Lcom/mojang/blaze3d/vertex/PoseStack; net/minecraft/client/gui/GuiGraphics/pose ()Lcom/mojang/blaze3d/vertex/PoseStack; +MD: net/minecraft/client/gui/GuiGraphics/m_280182_ ()I net/minecraft/client/gui/GuiGraphics/guiWidth ()I +MD: net/minecraft/client/gui/GuiGraphics/m_280185_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/GuiGraphics/applyScissor (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280195_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitNineSliced (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280203_ (Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderFakeItem (Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280206_ ()I net/minecraft/client/gui/GuiGraphics/guiHeight ()I +MD: net/minecraft/client/gui/GuiGraphics/m_280218_ (Lnet/minecraft/resources/ResourceLocation;IIIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280240_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$1 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280245_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280246_ (FFFF)V net/minecraft/client/gui/GuiGraphics/setColor (FFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280256_ (Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280260_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitNineSliced (Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280262_ ()V net/minecraft/client/gui/GuiGraphics/flush ()V +MD: net/minecraft/client/gui/GuiGraphics/m_280302_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V net/minecraft/client/gui/GuiGraphics/renderItemDecorations (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280304_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/gui/GuiGraphics/renderComponentHoverEffect (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280312_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIFFII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIIIIIFFII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280315_ (IIII)V net/minecraft/client/gui/GuiGraphics/vLine (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280358_ (II)Lit/unimi/dsi/fastutil/ints/IntIterator; net/minecraft/client/gui/GuiGraphics/slices (II)Lit/unimi/dsi/fastutil/ints/IntIterator; +MD: net/minecraft/client/gui/GuiGraphics/m_280364_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)V net/minecraft/client/gui/GuiGraphics/drawCenteredString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280370_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderItemDecorations (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280398_ (Lnet/minecraft/resources/ResourceLocation;IIIFFIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIFFIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280405_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;IIII)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280411_ (Lnet/minecraft/resources/ResourceLocation;IIIIFFIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIIFFIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280430_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)I +MD: net/minecraft/client/gui/GuiGraphics/m_280444_ (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFF)V net/minecraft/client/gui/GuiGraphics/innerBlit (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280474_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$3 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280479_ (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFFFFFF)V net/minecraft/client/gui/GuiGraphics/innerBlit (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFFFFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280480_ (Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280488_ (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)I +MD: net/minecraft/client/gui/GuiGraphics/m_280497_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V net/minecraft/client/gui/GuiGraphics/renderTooltipInternal (Lnet/minecraft/client/gui/Font;Ljava/util/List;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280509_ (IIIII)V net/minecraft/client/gui/GuiGraphics/fill (IIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280543_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitRepeating (Lnet/minecraft/resources/ResourceLocation;IIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280547_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280554_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;IIII)V net/minecraft/client/gui/GuiGraphics/drawWordWrap (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280557_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280565_ (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;FFFF)V net/minecraft/client/gui/GuiGraphics/blit (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;FFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280584_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280588_ (IIII)V net/minecraft/client/gui/GuiGraphics/enableScissor (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280614_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIZ)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIZ)I +MD: net/minecraft/client/gui/GuiGraphics/m_280618_ ()V net/minecraft/client/gui/GuiGraphics/disableScissor ()V +MD: net/minecraft/client/gui/GuiGraphics/m_280637_ (IIIII)V net/minecraft/client/gui/GuiGraphics/renderOutline (IIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280638_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280645_ (Ljava/util/List;Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)V net/minecraft/client/gui/GuiGraphics/lambda$renderTooltip$4 (Ljava/util/List;Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280648_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)I +MD: net/minecraft/client/gui/GuiGraphics/m_280649_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;IIIZ)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;IIIZ)I +MD: net/minecraft/client/gui/GuiGraphics/m_280653_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)V net/minecraft/client/gui/GuiGraphics/drawCenteredString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280656_ (IIII)V net/minecraft/client/gui/GuiGraphics/hLine (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280666_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V net/minecraft/client/gui/GuiGraphics/renderComponentTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280677_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;Ljava/util/Optional;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;Ljava/util/Optional;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_285667_ (IIII)V net/minecraft/client/gui/GuiGraphics/lambda$renderTooltipInternal$5 (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285795_ (Lnet/minecraft/client/renderer/RenderType;IIIIII)V net/minecraft/client/gui/GuiGraphics/fill (Lnet/minecraft/client/renderer/RenderType;IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285844_ (Lnet/minecraft/client/renderer/RenderType;IIII)V net/minecraft/client/gui/GuiGraphics/hLine (Lnet/minecraft/client/renderer/RenderType;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285886_ (Lnet/minecraft/client/renderer/RenderType;IIII)V net/minecraft/client/gui/GuiGraphics/vLine (Lnet/minecraft/client/renderer/RenderType;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285944_ (Lnet/minecraft/client/renderer/RenderType;IIIII)V net/minecraft/client/gui/GuiGraphics/fill (Lnet/minecraft/client/renderer/RenderType;IIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285978_ (Lnet/minecraft/client/renderer/RenderType;IIIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (Lnet/minecraft/client/renderer/RenderType;IIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_286007_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/GuiGraphics/drawManaged (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/GuiGraphics/m_286081_ ()V net/minecraft/client/gui/GuiGraphics/flushIfUnmanaged ()V +MD: net/minecraft/client/gui/GuiGraphics/m_287246_ ()V net/minecraft/client/gui/GuiGraphics/flushIfManaged ()V +MD: net/minecraft/client/gui/GuiGraphics$ScissorStack/ ()V net/minecraft/client/gui/GuiGraphics$ScissorStack/ ()V +MD: net/minecraft/client/gui/GuiGraphics$ScissorStack/m_280318_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/GuiGraphics$ScissorStack/push (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/GuiGraphics$ScissorStack/m_280462_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/GuiGraphics$ScissorStack/pop ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/MapRenderer/ ()V net/minecraft/client/gui/MapRenderer/ ()V +MD: net/minecraft/client/gui/MapRenderer/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/gui/MapRenderer/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/gui/MapRenderer/close ()V net/minecraft/client/gui/MapRenderer/close ()V +MD: net/minecraft/client/gui/MapRenderer/m_168765_ (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/gui/MapRenderer/update (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/gui/MapRenderer/m_168771_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZI)V net/minecraft/client/gui/MapRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZI)V +MD: net/minecraft/client/gui/MapRenderer/m_168778_ (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; net/minecraft/client/gui/MapRenderer/getOrCreateMapInstance (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; +MD: net/minecraft/client/gui/MapRenderer/m_182561_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Ljava/lang/Integer;Lnet/minecraft/client/gui/MapRenderer$MapInstance;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; net/minecraft/client/gui/MapRenderer/lambda$getOrCreateMapInstance$0 (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Ljava/lang/Integer;Lnet/minecraft/client/gui/MapRenderer$MapInstance;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; +MD: net/minecraft/client/gui/MapRenderer/m_93260_ ()V net/minecraft/client/gui/MapRenderer/resetData ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/ (Lnet/minecraft/client/gui/MapRenderer;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/gui/MapRenderer$MapInstance/ (Lnet/minecraft/client/gui/MapRenderer;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/close ()V net/minecraft/client/gui/MapRenderer$MapInstance/close ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_182566_ ()V net/minecraft/client/gui/MapRenderer$MapInstance/forceUpload ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_182567_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/gui/MapRenderer$MapInstance/replaceMapData (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_93290_ ()V net/minecraft/client/gui/MapRenderer$MapInstance/updateTexture ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_93291_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ZI)V net/minecraft/client/gui/MapRenderer$MapInstance/draw (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ZI)V +MD: net/minecraft/client/gui/components/AbstractButton/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractButton/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractButton/m_274533_ ()I net/minecraft/client/gui/components/AbstractButton/getTextureY ()I +MD: net/minecraft/client/gui/components/AbstractButton/m_280139_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/AbstractButton/renderString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/AbstractButton/m_5691_ ()V net/minecraft/client/gui/components/AbstractButton/onPress ()V +MD: net/minecraft/client/gui/components/AbstractButton/m_5716_ (DD)V net/minecraft/client/gui/components/AbstractButton/onClick (DD)V +MD: net/minecraft/client/gui/components/AbstractButton/m_7933_ (III)Z net/minecraft/client/gui/components/AbstractButton/keyPressed (III)Z +MD: net/minecraft/client/gui/components/AbstractButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractOptionSliderButton/ (Lnet/minecraft/client/Options;IIIID)V net/minecraft/client/gui/components/AbstractOptionSliderButton/ (Lnet/minecraft/client/Options;IIIID)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractScrollWidget/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239019_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getInnerHeight ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239030_ ()D net/minecraft/client/gui/components/AbstractScrollWidget/scrollAmount ()D +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239044_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getContentHeight ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractScrollWidget/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239244_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/innerPadding ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239509_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getMaxScrollAmount ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239516_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractScrollWidget/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239606_ (DD)Z net/minecraft/client/gui/components/AbstractScrollWidget/withinContentAreaPoint (DD)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239656_ ()Z net/minecraft/client/gui/components/AbstractScrollWidget/scrollbarVisible ()Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239725_ ()D net/minecraft/client/gui/components/AbstractScrollWidget/scrollRate ()D +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239942_ (II)Z net/minecraft/client/gui/components/AbstractScrollWidget/withinContentAreaTopBottom (II)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240012_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/totalInnerPadding ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240048_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractScrollWidget/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240206_ (D)V net/minecraft/client/gui/components/AbstractScrollWidget/setScrollAmount (D)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240211_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getScrollBarHeight ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_264041_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractScrollWidget/renderScrollBar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_289749_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/components/AbstractScrollWidget/renderBorder (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_6050_ (DDD)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_6348_ (DDI)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_6375_ (DDI)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_7933_ (III)Z net/minecraft/client/gui/components/AbstractScrollWidget/keyPressed (III)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractScrollWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/AbstractSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/AbstractSelectionList/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_168790_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/narrateListElementPosition (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_168793_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getScrollBottom ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_168795_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getHovered ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_238964_ (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V net/minecraft/client/gui/components/AbstractSelectionList/renderItem (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_239045_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z net/minecraft/client/gui/components/AbstractSelectionList/removeEntryFromTop (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_239227_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractSelectionList/renderList (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_239857_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/addEntryToTop (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_240140_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/AbstractSelectionList/renderSelection (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/AbstractSelectionList/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264238_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264254_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264567_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getFirstElement ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264620_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_280310_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractSelectionList/enableScissor (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5747_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getRowLeft ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5756_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5759_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5773_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getItemCount ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5775_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getMaxPosition ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5953_ (DD)Z net/minecraft/client/gui/components/AbstractSelectionList/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5988_ (Ljava/util/Collection;)V net/minecraft/client/gui/components/AbstractSelectionList/replaceEntries (Ljava/util/Collection;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6050_ (DDD)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6205_ (II)V net/minecraft/client/gui/components/AbstractSelectionList/clickedHeader (II)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6348_ (DDI)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6375_ (DDI)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/AbstractSelectionList/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7085_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I net/minecraft/client/gui/components/AbstractSelectionList/addEntry (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7154_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/AbstractSelectionList/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7222_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getFocused ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/AbstractSelectionList/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7415_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/AbstractSelectionList/renderHeader (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/AbstractSelectionList/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7610_ (I)I net/minecraft/client/gui/components/AbstractSelectionList/getRowTop (I)I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7987_ (I)Z net/minecraft/client/gui/components/AbstractSelectionList/isSelectedItem (I)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractSelectionList/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93410_ (D)V net/minecraft/client/gui/components/AbstractSelectionList/setScrollAmount (D)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93412_ (DD)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getEntryAtPosition (DD)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93429_ (I)V net/minecraft/client/gui/components/AbstractSelectionList/scroll (I)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93437_ (IIII)V net/minecraft/client/gui/components/AbstractSelectionList/updateSize (IIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93471_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderSelection (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93473_ (ZI)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderHeader (ZI)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93481_ (DDI)V net/minecraft/client/gui/components/AbstractSelectionList/updateScrollingState (DDI)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93485_ (I)I net/minecraft/client/gui/components/AbstractSelectionList/getRowBottom (I)I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93488_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderBackground (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93494_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/centerScrollOn (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93496_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderTopAndBottom (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93498_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/ensureVisible (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93500_ (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getEntry (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93502_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z net/minecraft/client/gui/components/AbstractSelectionList/removeEntry (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93505_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/bindEntryToSelf (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93507_ (I)V net/minecraft/client/gui/components/AbstractSelectionList/setLeftPos (I)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93509_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z net/minecraft/client/gui/components/AbstractSelectionList/lambda$nextEntry$0 (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93511_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getSelected ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93514_ (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/remove (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93516_ ()V net/minecraft/client/gui/components/AbstractSelectionList/clearEntries ()V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93517_ ()D net/minecraft/client/gui/components/AbstractSelectionList/getScrollAmount ()D +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93518_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getMaxScroll ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93520_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getRowRight ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList$1/ ()V net/minecraft/client/gui/components/AbstractSelectionList$1/ ()V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/ ()V net/minecraft/client/gui/components/AbstractSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/AbstractSelectionList$Entry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_5953_ (DD)Z net/minecraft/client/gui/components/AbstractSelectionList$Entry/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/AbstractSelectionList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_93692_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList$Entry/setFocused (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_93696_ ()Z net/minecraft/client/gui/components/AbstractSelectionList$Entry/isFocused ()Z +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/ (Lnet/minecraft/client/gui/components/AbstractSelectionList;)V net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/ (Lnet/minecraft/client/gui/components/AbstractSelectionList;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILjava/lang/Object;)V net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILjava/lang/Object;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Ljava/lang/Object; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Ljava/lang/Object; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/size ()I net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/size ()I +MD: net/minecraft/client/gui/components/AbstractSliderButton/ ()V net/minecraft/client/gui/components/AbstractSliderButton/ ()V +MD: net/minecraft/client/gui/components/AbstractSliderButton/ (IIIILnet/minecraft/network/chat/Component;D)V net/minecraft/client/gui/components/AbstractSliderButton/ (IIIILnet/minecraft/network/chat/Component;D)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractSliderButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_264270_ ()I net/minecraft/client/gui/components/AbstractSliderButton/getHandleTextureY ()I +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_264355_ ()I net/minecraft/client/gui/components/AbstractSliderButton/getTextureY ()I +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/AbstractSliderButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5695_ ()V net/minecraft/client/gui/components/AbstractSliderButton/updateMessage ()V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5697_ ()V net/minecraft/client/gui/components/AbstractSliderButton/applyValue ()V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5716_ (DD)V net/minecraft/client/gui/components/AbstractSliderButton/onClick (DD)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7212_ (DDDD)V net/minecraft/client/gui/components/AbstractSliderButton/onDrag (DDDD)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/AbstractSliderButton/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7691_ (DD)V net/minecraft/client/gui/components/AbstractSliderButton/onRelease (DD)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7933_ (III)Z net/minecraft/client/gui/components/AbstractSliderButton/keyPressed (III)Z +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractSliderButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_93585_ (D)V net/minecraft/client/gui/components/AbstractSliderButton/setValueFromMouse (D)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_93611_ (D)V net/minecraft/client/gui/components/AbstractSliderButton/setValue (D)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_93692_ (Z)V net/minecraft/client/gui/components/AbstractSliderButton/setFocused (Z)V +MD: net/minecraft/client/gui/components/AbstractStringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/AbstractStringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractStringWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; net/minecraft/client/gui/components/AbstractStringWidget/setColor (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_269100_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/components/AbstractStringWidget/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_269468_ ()I net/minecraft/client/gui/components/AbstractStringWidget/getColor ()I +MD: net/minecraft/client/gui/components/AbstractWidget/ ()V net/minecraft/client/gui/components/AbstractWidget/ ()V +MD: net/minecraft/client/gui/components/AbstractWidget/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractWidget/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractWidget/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_142518_ ()Z net/minecraft/client/gui/components/AbstractWidget/isActive ()Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/AbstractWidget/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/AbstractWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_168799_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/AbstractWidget/wrapDefaultNarrationMessage (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/AbstractWidget/m_168802_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractWidget/defaultButtonNarrationText (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_198029_ ()Z net/minecraft/client/gui/components/AbstractWidget/isHoveredOrFocused ()Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_252754_ ()I net/minecraft/client/gui/components/AbstractWidget/getX ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_252865_ (I)V net/minecraft/client/gui/components/AbstractWidget/setX (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_252907_ ()I net/minecraft/client/gui/components/AbstractWidget/getY ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_253211_ (I)V net/minecraft/client/gui/components/AbstractWidget/setY (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_257427_ (I)V net/minecraft/client/gui/components/AbstractWidget/setTooltipDelay (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_257544_ (Lnet/minecraft/client/gui/components/Tooltip;)V net/minecraft/client/gui/components/AbstractWidget/setTooltip (Lnet/minecraft/client/gui/components/Tooltip;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_257936_ ()V net/minecraft/client/gui/components/AbstractWidget/updateTooltip ()V +MD: net/minecraft/client/gui/components/AbstractWidget/m_262860_ ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; net/minecraft/client/gui/components/AbstractWidget/createTooltipPositioner ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; +MD: net/minecraft/client/gui/components/AbstractWidget/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/AbstractWidget/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/AbstractWidget/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/AbstractWidget/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/AbstractWidget/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/AbstractWidget/m_267579_ ()I net/minecraft/client/gui/components/AbstractWidget/getTabOrderGroup ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_267708_ (I)V net/minecraft/client/gui/components/AbstractWidget/setTabOrderGroup (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_274382_ ()Z net/minecraft/client/gui/components/AbstractWidget/isHovered ()Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_278622_ ()Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/AbstractWidget/getTooltip ()Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/AbstractWidget/m_280138_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIII)V net/minecraft/client/gui/components/AbstractWidget/renderScrollingString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIII)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_280322_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V net/minecraft/client/gui/components/AbstractWidget/renderTexture (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_280372_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;II)V net/minecraft/client/gui/components/AbstractWidget/renderScrollingString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;II)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/AbstractWidget/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/AbstractWidget/m_5711_ ()I net/minecraft/client/gui/components/AbstractWidget/getWidth ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_5716_ (DD)V net/minecraft/client/gui/components/AbstractWidget/onClick (DD)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_5953_ (DD)Z net/minecraft/client/gui/components/AbstractWidget/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_6035_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/AbstractWidget/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/AbstractWidget/m_6348_ (DDI)Z net/minecraft/client/gui/components/AbstractWidget/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_6375_ (DDI)Z net/minecraft/client/gui/components/AbstractWidget/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_7212_ (DDDD)V net/minecraft/client/gui/components/AbstractWidget/onDrag (DDDD)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/AbstractWidget/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_7691_ (DD)V net/minecraft/client/gui/components/AbstractWidget/onRelease (DD)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_7972_ (I)Z net/minecraft/client/gui/components/AbstractWidget/isValidClickButton (I)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/AbstractWidget/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractWidget/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93650_ (F)V net/minecraft/client/gui/components/AbstractWidget/setAlpha (F)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93666_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractWidget/setMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93674_ (I)V net/minecraft/client/gui/components/AbstractWidget/setWidth (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93680_ (DD)Z net/minecraft/client/gui/components/AbstractWidget/clicked (DD)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_93692_ (Z)V net/minecraft/client/gui/components/AbstractWidget/setFocused (Z)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93694_ ()I net/minecraft/client/gui/components/AbstractWidget/getHeight ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_93696_ ()Z net/minecraft/client/gui/components/AbstractWidget/isFocused ()Z +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/ ()V net/minecraft/client/gui/components/BossHealthOverlay/ ()V +MD: net/minecraft/client/gui/components/BossHealthOverlay/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/BossHealthOverlay/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_280093_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;II)V net/minecraft/client/gui/components/BossHealthOverlay/drawBar (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;II)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_280106_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;)V net/minecraft/client/gui/components/BossHealthOverlay/drawBar (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_280652_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/BossHealthOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93703_ ()V net/minecraft/client/gui/components/BossHealthOverlay/reset ()V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93711_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V net/minecraft/client/gui/components/BossHealthOverlay/update (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93713_ ()Z net/minecraft/client/gui/components/BossHealthOverlay/shouldPlayMusic ()Z +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93714_ ()Z net/minecraft/client/gui/components/BossHealthOverlay/shouldDarkenScreen ()Z +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93715_ ()Z net/minecraft/client/gui/components/BossHealthOverlay/shouldCreateWorldFog ()Z +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/ (Lnet/minecraft/client/gui/components/BossHealthOverlay;)V net/minecraft/client/gui/components/BossHealthOverlay$1/ (Lnet/minecraft/client/gui/components/BossHealthOverlay;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142107_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V net/minecraft/client/gui/components/BossHealthOverlay$1/add (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142358_ (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateStyle (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142366_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateName (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142513_ (Ljava/util/UUID;ZZZ)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateProperties (Ljava/util/UUID;ZZZ)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142653_ (Ljava/util/UUID;F)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateProgress (Ljava/util/UUID;F)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142751_ (Ljava/util/UUID;)V net/minecraft/client/gui/components/BossHealthOverlay$1/remove (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/components/Button/ ()V net/minecraft/client/gui/components/Button/ ()V +MD: net/minecraft/client/gui/components/Button/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/components/Button$CreateNarration;)V net/minecraft/client/gui/components/Button/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/components/Button$CreateNarration;)V +MD: net/minecraft/client/gui/components/Button/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/Button/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/Button/m_252557_ (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button/lambda$static$0 (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button/m_253074_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button/builder (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button/m_289584_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button/lambda$createNarrationMessage$1 ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button/m_5691_ ()V net/minecraft/client/gui/components/Button/onPress ()V +MD: net/minecraft/client/gui/components/Button$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/Button$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/Button$Builder/m_252778_ (Lnet/minecraft/client/gui/components/Button$CreateNarration;)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/createNarration (Lnet/minecraft/client/gui/components/Button$CreateNarration;)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_252780_ (I)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/width (I)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_252794_ (II)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/pos (II)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_252987_ (IIII)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/bounds (IIII)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_253046_ (II)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/size (II)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_253136_ ()Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/components/Button$Builder/build ()Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/components/Button$Builder/m_257505_ (Lnet/minecraft/client/gui/components/Tooltip;)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/tooltip (Lnet/minecraft/client/gui/components/Tooltip;)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$CreateNarration/m_253229_ (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button$CreateNarration/createNarrationMessage (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button$OnPress/m_93750_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/components/Button$OnPress/onPress (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/components/ChatComponent/ ()V net/minecraft/client/gui/components/ChatComponent/ ()V +MD: net/minecraft/client/gui/components/ChatComponent/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/ChatComponent/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_205360_ (I)V net/minecraft/client/gui/components/ChatComponent/scrollChat (I)V +MD: net/minecraft/client/gui/components/ChatComponent/m_232477_ ()D net/minecraft/client/gui/components/ChatComponent/defaultUnfocusedPct ()D +MD: net/minecraft/client/gui/components/ChatComponent/m_240447_ (DLnet/minecraft/client/GuiMessage$Line;Lnet/minecraft/client/GuiMessageTag;)Z net/minecraft/client/gui/components/ChatComponent/hasSelectedMessageTag (DLnet/minecraft/client/GuiMessage$Line;Lnet/minecraft/client/GuiMessageTag;)Z +MD: net/minecraft/client/gui/components/ChatComponent/m_240463_ (DD)Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/gui/components/ChatComponent/getMessageTagAt (DD)Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/gui/components/ChatComponent/m_240465_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;ILnet/minecraft/client/GuiMessageTag;Z)V net/minecraft/client/gui/components/ChatComponent/addMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;ILnet/minecraft/client/GuiMessageTag;Z)V +MD: net/minecraft/client/gui/components/ChatComponent/m_240485_ (D)D net/minecraft/client/gui/components/ChatComponent/screenToChatY (D)D +MD: net/minecraft/client/gui/components/ChatComponent/m_240491_ (D)D net/minecraft/client/gui/components/ChatComponent/screenToChatX (D)D +MD: net/minecraft/client/gui/components/ChatComponent/m_240495_ (Lnet/minecraft/client/GuiMessage$Line;)I net/minecraft/client/gui/components/ChatComponent/getTagIconLeft (Lnet/minecraft/client/GuiMessage$Line;)I +MD: net/minecraft/client/gui/components/ChatComponent/m_240691_ ()I net/minecraft/client/gui/components/ChatComponent/getLineHeight ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_240953_ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/client/gui/components/ChatComponent/deleteMessage (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_240964_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V net/minecraft/client/gui/components/ChatComponent/addMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_241120_ ()V net/minecraft/client/gui/components/ChatComponent/refreshTrimmedMessage ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_242648_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;)V net/minecraft/client/gui/components/ChatComponent/logChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_245406_ (ILnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion;)Z net/minecraft/client/gui/components/ChatComponent/lambda$processMessageDeletionQueue$0 (ILnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion;)Z +MD: net/minecraft/client/gui/components/ChatComponent/m_245423_ (Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion; net/minecraft/client/gui/components/ChatComponent/deleteMessageOrDelay (Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion; +MD: net/minecraft/client/gui/components/ChatComponent/m_246025_ ()V net/minecraft/client/gui/components/ChatComponent/processMessageDeletionQueue ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_246107_ (DD)I net/minecraft/client/gui/components/ChatComponent/getMessageEndIndexAt (DD)I +MD: net/minecraft/client/gui/components/ChatComponent/m_246602_ ()V net/minecraft/client/gui/components/ChatComponent/tick ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_246885_ (Lnet/minecraft/client/GuiMessage;)Lnet/minecraft/client/GuiMessage; net/minecraft/client/gui/components/ChatComponent/createDeletedMarker (Lnet/minecraft/client/GuiMessage;)Lnet/minecraft/client/GuiMessage; +MD: net/minecraft/client/gui/components/ChatComponent/m_247428_ (DD)I net/minecraft/client/gui/components/ChatComponent/getMessageLineIndexAt (DD)I +MD: net/minecraft/client/gui/components/ChatComponent/m_280134_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/GuiMessageTag$Icon;)V net/minecraft/client/gui/components/ChatComponent/drawTagIcon (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/GuiMessageTag$Icon;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_280165_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/components/ChatComponent/render (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93769_ ()V net/minecraft/client/gui/components/ChatComponent/rescaleChat ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_93772_ (DD)Z net/minecraft/client/gui/components/ChatComponent/handleChatQueueClicked (DD)Z +MD: net/minecraft/client/gui/components/ChatComponent/m_93775_ (I)D net/minecraft/client/gui/components/ChatComponent/getTimeFactor (I)D +MD: net/minecraft/client/gui/components/ChatComponent/m_93783_ (Ljava/lang/String;)V net/minecraft/client/gui/components/ChatComponent/addRecentChat (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93785_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/ChatComponent/addMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93795_ (Z)V net/minecraft/client/gui/components/ChatComponent/clearMessages (Z)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93797_ ()Ljava/util/List; net/minecraft/client/gui/components/ChatComponent/getRecentChat ()Ljava/util/List; +MD: net/minecraft/client/gui/components/ChatComponent/m_93798_ (D)I net/minecraft/client/gui/components/ChatComponent/getWidth (D)I +MD: net/minecraft/client/gui/components/ChatComponent/m_93800_ (DD)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/components/ChatComponent/getClickedComponentStyleAt (DD)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/components/ChatComponent/m_93810_ ()V net/minecraft/client/gui/components/ChatComponent/resetChatScroll ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_93811_ (D)I net/minecraft/client/gui/components/ChatComponent/getHeight (D)I +MD: net/minecraft/client/gui/components/ChatComponent/m_93813_ ()I net/minecraft/client/gui/components/ChatComponent/getWidth ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_93814_ ()I net/minecraft/client/gui/components/ChatComponent/getHeight ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_93815_ ()D net/minecraft/client/gui/components/ChatComponent/getScale ()D +MD: net/minecraft/client/gui/components/ChatComponent/m_93816_ ()I net/minecraft/client/gui/components/ChatComponent/getLinesPerPage ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_93817_ ()Z net/minecraft/client/gui/components/ChatComponent/isChatHidden ()Z +MD: net/minecraft/client/gui/components/ChatComponent/m_93818_ ()Z net/minecraft/client/gui/components/ChatComponent/isChatFocused ()Z +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/ (Lnet/minecraft/network/chat/MessageSignature;I)V net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/ (Lnet/minecraft/network/chat/MessageSignature;I)V +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244186_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244411_ ()I net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/deletableAfter ()I +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/hashCode ()I net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/hashCode ()I +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/toString ()Ljava/lang/String; net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/Checkbox/ ()V net/minecraft/client/gui/components/Checkbox/ ()V +MD: net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;ZZ)V net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;ZZ)V +MD: net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/components/Checkbox/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/Checkbox/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/Checkbox/m_5691_ ()V net/minecraft/client/gui/components/Checkbox/onPress ()V +MD: net/minecraft/client/gui/components/Checkbox/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/Checkbox/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/Checkbox/m_93840_ ()Z net/minecraft/client/gui/components/Checkbox/selected ()Z +MD: net/minecraft/client/gui/components/CommandSuggestions/ ()V net/minecraft/client/gui/components/CommandSuggestions/ ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/client/gui/Font;ZZIIZI)V net/minecraft/client/gui/components/CommandSuggestions/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/client/gui/Font;ZZIIZI)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_241889_ ()V net/minecraft/client/gui/components/CommandSuggestions/hide ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_272218_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CommandSuggestions/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_280123_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/CommandSuggestions/renderUsage (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_280467_ (Lnet/minecraft/client/gui/GuiGraphics;II)Z net/minecraft/client/gui/components/CommandSuggestions/renderSuggestions (Lnet/minecraft/client/gui/GuiGraphics;II)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_280540_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/CommandSuggestions/render (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93881_ ()V net/minecraft/client/gui/components/CommandSuggestions/updateCommandInfo ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93882_ (D)Z net/minecraft/client/gui/components/CommandSuggestions/mouseScrolled (D)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93884_ (DDI)Z net/minecraft/client/gui/components/CommandSuggestions/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93888_ (III)Z net/minecraft/client/gui/components/CommandSuggestions/keyPressed (III)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93892_ (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/CommandSuggestions/formatText (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93896_ (Lcom/mojang/brigadier/exceptions/CommandSyntaxException;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/CommandSuggestions/getExceptionMessage (Lcom/mojang/brigadier/exceptions/CommandSyntaxException;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93898_ (Lcom/mojang/brigadier/suggestion/Suggestions;)Ljava/util/List; net/minecraft/client/gui/components/CommandSuggestions/sortSuggestions (Lcom/mojang/brigadier/suggestion/Suggestions;)Ljava/util/List; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93912_ (Ljava/lang/String;)I net/minecraft/client/gui/components/CommandSuggestions/getLastWordIndex (Ljava/lang/String;)I +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93914_ (Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/CommandSuggestions/formatChat (Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93920_ (Lnet/minecraft/ChatFormatting;)Z net/minecraft/client/gui/components/CommandSuggestions/fillNodeUsage (Lnet/minecraft/ChatFormatting;)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93922_ (Z)V net/minecraft/client/gui/components/CommandSuggestions/setAllowSuggestions (Z)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93927_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/CommandSuggestions/calculateSuggestionSuffix (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93930_ (Z)V net/minecraft/client/gui/components/CommandSuggestions/showSuggestions (Z)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93932_ ()V net/minecraft/client/gui/components/CommandSuggestions/updateUsageInfo ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93935_ ()V net/minecraft/client/gui/components/CommandSuggestions/lambda$updateCommandInfo$0 ()V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/ (Lnet/minecraft/client/gui/components/CommandSuggestions;IIILjava/util/List;Z)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/ (Lnet/minecraft/client/gui/components/CommandSuggestions;IIILjava/util/List;Z)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_168847_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_280328_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/render (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93970_ ()V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/useSuggestion ()V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93971_ (D)Z net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/mouseScrolled (D)Z +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93973_ (I)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/cycle (I)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93975_ (III)Z net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/mouseClicked (III)Z +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93986_ (I)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/select (I)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93988_ (III)Z net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/keyPressed (III)Z +MD: net/minecraft/client/gui/components/CommonButtons/ ()V net/minecraft/client/gui/components/CommonButtons/ ()V +MD: net/minecraft/client/gui/components/CommonButtons/m_271983_ (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; net/minecraft/client/gui/components/CommonButtons/languageTextAndImage (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; +MD: net/minecraft/client/gui/components/CommonButtons/m_272052_ (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; net/minecraft/client/gui/components/CommonButtons/accessibilityTextAndImage (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; +MD: net/minecraft/client/gui/components/ComponentRenderUtils/ ()V net/minecraft/client/gui/components/ComponentRenderUtils/ ()V +MD: net/minecraft/client/gui/components/ComponentRenderUtils/ ()V net/minecraft/client/gui/components/ComponentRenderUtils/ ()V +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_93995_ (Lnet/minecraft/client/ComponentCollector;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/gui/components/ComponentRenderUtils/lambda$wrapComponents$0 (Lnet/minecraft/client/ComponentCollector;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_93999_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/ComponentRenderUtils/stripColor (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_94001_ (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V net/minecraft/client/gui/components/ComponentRenderUtils/lambda$wrapComponents$1 (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_94005_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/client/gui/Font;)Ljava/util/List; net/minecraft/client/gui/components/ComponentRenderUtils/wrapComponents (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/client/gui/Font;)Ljava/util/List; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/ContainerObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ContainerObjectSelectionList/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/ContainerObjectSelectionList/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_264057_ (Lnet/minecraft/client/gui/components/ContainerObjectSelectionList$Entry;)Z net/minecraft/client/gui/components/ContainerObjectSelectionList/lambda$nextFocusPath$0 (Lnet/minecraft/client/gui/components/ContainerObjectSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ContainerObjectSelectionList/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/ContainerObjectSelectionList/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_7987_ (I)Z net/minecraft/client/gui/components/ContainerObjectSelectionList/isSelectedItem (I)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$1/ ()V net/minecraft/client/gui/components/ContainerObjectSelectionList$1/ ()V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/ ()V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_168854_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_264176_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;I)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/focusPathAtIndex (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;I)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_5953_ (DD)Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7282_ ()Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/isDragging ()Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7897_ (Z)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/setDragging (Z)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_93692_ (Z)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/setFocused (Z)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_93696_ ()Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/isFocused ()Z +MD: net/minecraft/client/gui/components/CycleButton/ ()V net/minecraft/client/gui/components/CycleButton/ ()V +MD: net/minecraft/client/gui/components/CycleButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILjava/lang/Object;Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)V net/minecraft/client/gui/components/CycleButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILjava/lang/Object;Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)V +MD: net/minecraft/client/gui/components/CycleButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/CycleButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/CycleButton/m_168883_ ()Ljava/lang/Object; net/minecraft/client/gui/components/CycleButton/getValue ()Ljava/lang/Object; +MD: net/minecraft/client/gui/components/CycleButton/m_168890_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CycleButton/lambda$onOffBuilder$1 (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CycleButton/m_168892_ (Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton/setValue (Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton/m_168894_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/builder (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_168896_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/booleanBuilder (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_168899_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CycleButton/lambda$booleanBuilder$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CycleButton/m_168904_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/CycleButton/createDefaultNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/CycleButton/m_168905_ (Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton/updateValue (Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton/m_168908_ (I)V net/minecraft/client/gui/components/CycleButton/cycleValue (I)V +MD: net/minecraft/client/gui/components/CycleButton/m_168910_ (Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CycleButton/createLabelForValue (Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CycleButton/m_168912_ (Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/CycleButton/createFullName (Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/CycleButton/m_168914_ (I)Ljava/lang/Object; net/minecraft/client/gui/components/CycleButton/getCycledValue (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/CycleButton/m_168916_ (Z)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/onOffBuilder (Z)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_168919_ ()Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/onOffBuilder ()Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_257795_ ()V net/minecraft/client/gui/components/CycleButton/updateTooltip ()V +MD: net/minecraft/client/gui/components/CycleButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/CycleButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/CycleButton/m_5691_ ()V net/minecraft/client/gui/components/CycleButton/onPress ()V +MD: net/minecraft/client/gui/components/CycleButton/m_6050_ (DDD)Z net/minecraft/client/gui/components/CycleButton/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/CycleButton$Builder/ (Ljava/util/function/Function;)V net/minecraft/client/gui/components/CycleButton$Builder/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168929_ ()Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/displayOnlyValue ()Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168930_ (IIIILnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/components/CycleButton$Builder/create (IIIILnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168936_ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;)Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/components/CycleButton$Builder/create (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;)Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168945_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton$Builder/lambda$create$1 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168948_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withInitialValue (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168952_ (Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168955_ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168959_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withCustomNarration (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168961_ ([Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues ([Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_232498_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withTooltip (Lnet/minecraft/client/OptionInstance$TooltipSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_232500_ (Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_232502_ (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_257070_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/CycleButton$Builder/lambda$new$0 (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/CycleButton$OnValueChange/m_168965_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton$OnValueChange/onValueChange (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_168970_ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/create (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_232504_ (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/create (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/ (Ljava/util/List;)V net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)V net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/ ()V net/minecraft/client/gui/components/DebugScreenOverlay/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/DebugScreenOverlay/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205362_ (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getServerChunk$7 (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205364_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getSystemInformation$9 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205366_ (Lnet/minecraft/world/level/biome/Biome;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$printBiome$4 (Lnet/minecraft/world/level/biome/Biome;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205368_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getServerChunk$8 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205370_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getServerChunk$6 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205374_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/printBiome (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205376_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$printBiome$3 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205378_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getSystemInformation$10 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_280186_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/drawGameInformation (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_280532_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/drawSystemInformation (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_280604_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/FrameTimer;IIZ)V net/minecraft/client/gui/components/DebugScreenOverlay/drawChart (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/FrameTimer;IIZ)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_285668_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/lambda$render$1 (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_286013_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Z)V net/minecraft/client/gui/components/DebugScreenOverlay/renderLines (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Z)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_287797_ (Lnet/minecraft/client/server/IntegratedServer;)Ljava/util/Optional; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getLevel$5 (Lnet/minecraft/client/server/IntegratedServer;)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94040_ ()V net/minecraft/client/gui/components/DebugScreenOverlay/clearChunkCache ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94041_ (IIF)I net/minecraft/client/gui/components/DebugScreenOverlay/colorLerp (IIF)I +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94045_ (IIII)I net/minecraft/client/gui/components/DebugScreenOverlay/getSampleColor (IIII)I +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94050_ (J)J net/minecraft/client/gui/components/DebugScreenOverlay/bytesToMegabytes (J)J +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94056_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94066_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/entity/MobCategory;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getGameInformation$2 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/entity/MobCategory;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94069_ (Ljava/util/EnumMap;)V net/minecraft/client/gui/components/DebugScreenOverlay/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94071_ (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/getPropertyValueString (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94075_ ()Ljava/util/List; net/minecraft/client/gui/components/DebugScreenOverlay/getGameInformation ()Ljava/util/List; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94078_ ()Ljava/util/List; net/minecraft/client/gui/components/DebugScreenOverlay/getSystemInformation ()Ljava/util/List; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94081_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/client/gui/components/DebugScreenOverlay/getServerLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94082_ ()Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/getServerChunkStats ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94083_ ()Lnet/minecraft/world/level/Level; net/minecraft/client/gui/components/DebugScreenOverlay/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94084_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/getServerChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94085_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/getClientChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay$1/ ()V net/minecraft/client/gui/components/DebugScreenOverlay$1/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/m_232515_ ()J net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/gcCounts ()J +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/m_232516_ (J)J net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/bytesAllocatedPerSecond (J)J +MD: net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/EditBox/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/EditBox/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/EditBox/m_257771_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/EditBox/setHint (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/EditBox/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/EditBox/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/EditBox/m_264315_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/components/EditBox/renderHighlight (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/components/EditBox/m_5534_ (CI)Z net/minecraft/client/gui/components/EditBox/charTyped (CI)Z +MD: net/minecraft/client/gui/components/EditBox/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/EditBox/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/EditBox/m_5716_ (DD)V net/minecraft/client/gui/components/EditBox/onClick (DD)V +MD: net/minecraft/client/gui/components/EditBox/m_5953_ (DD)Z net/minecraft/client/gui/components/EditBox/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/EditBox/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/EditBox/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/EditBox/m_7933_ (III)Z net/minecraft/client/gui/components/EditBox/keyPressed (III)Z +MD: net/minecraft/client/gui/components/EditBox/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/EditBox/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/EditBox/m_93692_ (Z)V net/minecraft/client/gui/components/EditBox/setFocused (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94120_ ()V net/minecraft/client/gui/components/EditBox/tick ()V +MD: net/minecraft/client/gui/components/EditBox/m_94128_ (II)I net/minecraft/client/gui/components/EditBox/getWordPosition (II)I +MD: net/minecraft/client/gui/components/EditBox/m_94140_ (IIZ)I net/minecraft/client/gui/components/EditBox/getWordPosition (IIZ)I +MD: net/minecraft/client/gui/components/EditBox/m_94144_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/setValue (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94146_ (Ljava/lang/String;Ljava/lang/Integer;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/EditBox/lambda$new$0 (Ljava/lang/String;Ljava/lang/Integer;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/EditBox/m_94149_ (Ljava/util/function/BiFunction;)V net/minecraft/client/gui/components/EditBox/setFormatter (Ljava/util/function/BiFunction;)V +MD: net/minecraft/client/gui/components/EditBox/m_94151_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/EditBox/setResponder (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/EditBox/m_94153_ (Ljava/util/function/Predicate;)V net/minecraft/client/gui/components/EditBox/setFilter (Ljava/util/function/Predicate;)V +MD: net/minecraft/client/gui/components/EditBox/m_94155_ ()Ljava/lang/String; net/minecraft/client/gui/components/EditBox/getValue ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/EditBox/m_94164_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/insertText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94167_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/setSuggestion (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94173_ ()Ljava/lang/String; net/minecraft/client/gui/components/EditBox/getHighlighted ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/EditBox/m_94174_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/onValueChange (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94176_ (I)V net/minecraft/client/gui/components/EditBox/deleteWords (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94180_ (I)V net/minecraft/client/gui/components/EditBox/deleteChars (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94182_ (Z)V net/minecraft/client/gui/components/EditBox/setBordered (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94184_ (I)I net/minecraft/client/gui/components/EditBox/getWordPosition (I)I +MD: net/minecraft/client/gui/components/EditBox/m_94186_ (Z)V net/minecraft/client/gui/components/EditBox/setEditable (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94188_ (I)V net/minecraft/client/gui/components/EditBox/moveCursor (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94190_ (Z)V net/minecraft/client/gui/components/EditBox/setCanLoseFocus (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94192_ (I)V net/minecraft/client/gui/components/EditBox/moveCursorTo (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94194_ (Z)V net/minecraft/client/gui/components/EditBox/setVisible (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94196_ (I)V net/minecraft/client/gui/components/EditBox/setCursorPosition (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94198_ ()V net/minecraft/client/gui/components/EditBox/moveCursorToStart ()V +MD: net/minecraft/client/gui/components/EditBox/m_94199_ (I)V net/minecraft/client/gui/components/EditBox/setMaxLength (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94201_ ()V net/minecraft/client/gui/components/EditBox/moveCursorToEnd ()V +MD: net/minecraft/client/gui/components/EditBox/m_94202_ (I)V net/minecraft/client/gui/components/EditBox/setTextColor (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94204_ ()Z net/minecraft/client/gui/components/EditBox/canConsumeInput ()Z +MD: net/minecraft/client/gui/components/EditBox/m_94205_ (I)V net/minecraft/client/gui/components/EditBox/setTextColorUneditable (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94207_ ()I net/minecraft/client/gui/components/EditBox/getCursorPosition ()I +MD: net/minecraft/client/gui/components/EditBox/m_94208_ (I)V net/minecraft/client/gui/components/EditBox/setHighlightPos (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94210_ ()I net/minecraft/client/gui/components/EditBox/getInnerWidth ()I +MD: net/minecraft/client/gui/components/EditBox/m_94211_ (I)I net/minecraft/client/gui/components/EditBox/getScreenX (I)I +MD: net/minecraft/client/gui/components/EditBox/m_94213_ ()Z net/minecraft/client/gui/components/EditBox/isVisible ()Z +MD: net/minecraft/client/gui/components/EditBox/m_94216_ ()I net/minecraft/client/gui/components/EditBox/getMaxLength ()I +MD: net/minecraft/client/gui/components/EditBox/m_94217_ (I)V net/minecraft/client/gui/components/EditBox/deleteText (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94219_ ()Z net/minecraft/client/gui/components/EditBox/isBordered ()Z +MD: net/minecraft/client/gui/components/EditBox/m_94220_ (I)I net/minecraft/client/gui/components/EditBox/getCursorPos (I)I +MD: net/minecraft/client/gui/components/EditBox/m_94222_ ()Z net/minecraft/client/gui/components/EditBox/isEditable ()Z +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_239019_ ()I net/minecraft/client/gui/components/FittingMultiLineTextWidget/getInnerHeight ()I +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_239725_ ()D net/minecraft/client/gui/components/FittingMultiLineTextWidget/scrollRate ()D +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_240048_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_289737_ (I)Lnet/minecraft/client/gui/components/FittingMultiLineTextWidget; net/minecraft/client/gui/components/FittingMultiLineTextWidget/setColor (I)Lnet/minecraft/client/gui/components/FittingMultiLineTextWidget; +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_93674_ (I)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/setWidth (I)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/ImageButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/ImageButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/ImageWidget/ (IILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/components/ImageWidget/ (IILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/components/ImageWidget/ (IIIILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/components/ImageWidget/ (IIIILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/components/ImageWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ImageWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ImageWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/ImageWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/LerpingBossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V net/minecraft/client/gui/components/LerpingBossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V +MD: net/minecraft/client/gui/components/LerpingBossEvent/m_142711_ (F)V net/minecraft/client/gui/components/LerpingBossEvent/setProgress (F)V +MD: net/minecraft/client/gui/components/LerpingBossEvent/m_142717_ ()F net/minecraft/client/gui/components/LerpingBossEvent/getProgress ()F +MD: net/minecraft/client/gui/components/LockIconButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/LockIconButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/LockIconButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/LockIconButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/LockIconButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/LockIconButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/LockIconButton/m_94302_ ()Z net/minecraft/client/gui/components/LockIconButton/isLocked ()Z +MD: net/minecraft/client/gui/components/LockIconButton/m_94309_ (Z)V net/minecraft/client/gui/components/LockIconButton/setLocked (Z)V +MD: net/minecraft/client/gui/components/LockIconButton$Icon/ ()V net/minecraft/client/gui/components/LockIconButton$Icon/ ()V +MD: net/minecraft/client/gui/components/LockIconButton$Icon/ (Ljava/lang/String;III)V net/minecraft/client/gui/components/LockIconButton$Icon/ (Ljava/lang/String;III)V +MD: net/minecraft/client/gui/components/LockIconButton$Icon/m_169032_ ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; net/minecraft/client/gui/components/LockIconButton$Icon/$values ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; +MD: net/minecraft/client/gui/components/LockIconButton$Icon/m_94326_ ()I net/minecraft/client/gui/components/LockIconButton$Icon/getX ()I +MD: net/minecraft/client/gui/components/LockIconButton$Icon/m_94327_ ()I net/minecraft/client/gui/components/LockIconButton$Icon/getY ()I +MD: net/minecraft/client/gui/components/LockIconButton$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/LockIconButton$Icon; net/minecraft/client/gui/components/LockIconButton$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/LockIconButton$Icon; +MD: net/minecraft/client/gui/components/LockIconButton$Icon/values ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; net/minecraft/client/gui/components/LockIconButton$Icon/values ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; +MD: net/minecraft/client/gui/components/LogoRenderer/ ()V net/minecraft/client/gui/components/LogoRenderer/ ()V +MD: net/minecraft/client/gui/components/LogoRenderer/ (Z)V net/minecraft/client/gui/components/LogoRenderer/ (Z)V +MD: net/minecraft/client/gui/components/LogoRenderer/m_280037_ (Lnet/minecraft/client/gui/GuiGraphics;IF)V net/minecraft/client/gui/components/LogoRenderer/renderLogo (Lnet/minecraft/client/gui/GuiGraphics;IF)V +MD: net/minecraft/client/gui/components/LogoRenderer/m_280118_ (Lnet/minecraft/client/gui/GuiGraphics;IFI)V net/minecraft/client/gui/components/LogoRenderer/renderLogo (Lnet/minecraft/client/gui/GuiGraphics;IFI)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/MultiLineEditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/MultiLineEditBox/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239019_ ()I net/minecraft/client/gui/components/MultiLineEditBox/getInnerHeight ()I +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/MultiLineEditBox/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239213_ ()V net/minecraft/client/gui/components/MultiLineEditBox/tick ()V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239249_ ()Ljava/lang/String; net/minecraft/client/gui/components/MultiLineEditBox/getValue ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239273_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/MultiLineEditBox/setValueListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239275_ (DD)V net/minecraft/client/gui/components/MultiLineEditBox/seekCursorScreen (DD)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239313_ (I)V net/minecraft/client/gui/components/MultiLineEditBox/setCharacterLimit (I)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239516_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/MultiLineEditBox/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239656_ ()Z net/minecraft/client/gui/components/MultiLineEditBox/scrollbarVisible ()Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239725_ ()D net/minecraft/client/gui/components/MultiLineEditBox/scrollRate ()D +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239745_ ()D net/minecraft/client/gui/components/MultiLineEditBox/getDisplayableLineCount ()D +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239911_ ()V net/minecraft/client/gui/components/MultiLineEditBox/scrollToCursor ()V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_240159_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultiLineEditBox/setValue (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_280065_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/components/MultiLineEditBox/renderHighlight (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_5534_ (CI)Z net/minecraft/client/gui/components/MultiLineEditBox/charTyped (CI)Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_6375_ (DDI)Z net/minecraft/client/gui/components/MultiLineEditBox/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_7933_ (III)Z net/minecraft/client/gui/components/MultiLineEditBox/keyPressed (III)Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/MultiLineEditBox/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/MultiLineLabel/ ()V net/minecraft/client/gui/components/MultiLineLabel/ ()V +MD: net/minecraft/client/gui/components/MultiLineLabel/m_169033_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$3 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_169036_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_207298_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/MultiLineLabel/renderBackgroundCentered (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/MultiLineLabel/m_214161_ ()I net/minecraft/client/gui/components/MultiLineLabel/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_5770_ ()I net/minecraft/client/gui/components/MultiLineLabel/getLineCount ()I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6276_ (Lnet/minecraft/client/gui/GuiGraphics;II)I net/minecraft/client/gui/components/MultiLineLabel/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;II)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6508_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel/renderLeftAligned (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6514_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6516_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel/renderLeftAlignedNoShadow (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94341_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94345_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;II)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;II)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94350_ (Lnet/minecraft/client/gui/Font;[Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;[Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94358_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$2 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94361_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/createFixed (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94369_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$1 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94372_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$0 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel$1/ ()V net/minecraft/client/gui/components/MultiLineLabel$1/ ()V +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_207298_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/MultiLineLabel$1/renderBackgroundCentered (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_214161_ ()I net/minecraft/client/gui/components/MultiLineLabel$1/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_5770_ ()I net/minecraft/client/gui/components/MultiLineLabel$1/getLineCount ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6276_ (Lnet/minecraft/client/gui/GuiGraphics;II)I net/minecraft/client/gui/components/MultiLineLabel$1/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;II)I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6508_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$1/renderLeftAligned (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6514_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$1/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6516_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$1/renderLeftAlignedNoShadow (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/ (Ljava/util/List;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/MultiLineLabel$2/ (Ljava/util/List;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_207298_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/MultiLineLabel$2/renderBackgroundCentered (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_214161_ ()I net/minecraft/client/gui/components/MultiLineLabel$2/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_232523_ (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I net/minecraft/client/gui/components/MultiLineLabel$2/lambda$renderBackgroundCentered$1 (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_232526_ (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I net/minecraft/client/gui/components/MultiLineLabel$2/lambda$$0 (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_5770_ ()I net/minecraft/client/gui/components/MultiLineLabel$2/getLineCount ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6276_ (Lnet/minecraft/client/gui/GuiGraphics;II)I net/minecraft/client/gui/components/MultiLineLabel$2/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;II)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6508_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$2/renderLeftAligned (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6514_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$2/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6516_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$2/renderLeftAlignedNoShadow (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/ (Lnet/minecraft/util/FormattedCharSequence;I)V net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/ (Lnet/minecraft/util/FormattedCharSequence;I)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/MultiLineTextWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/MultiLineTextWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setColor (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setColor (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269098_ (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setMaxWidth (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269328_ (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setMaxRows (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269393_ ()Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey; net/minecraft/client/gui/components/MultiLineTextWidget/getFreshCacheKey ()Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269442_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineTextWidget/lambda$new$0 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269484_ (Z)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setCentered (Z)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_5711_ ()I net/minecraft/client/gui/components/MultiLineTextWidget/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/MultiLineTextWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_93694_ ()I net/minecraft/client/gui/components/MultiLineTextWidget/getHeight ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/ (Lnet/minecraft/network/chat/Component;ILjava/util/OptionalInt;)V net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/ (Lnet/minecraft/network/chat/Component;ILjava/util/OptionalInt;)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268550_ ()Ljava/util/OptionalInt; net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxRows ()Ljava/util/OptionalInt; +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268646_ ()I net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxWidth ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268701_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/hashCode ()I net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/hashCode ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/toString ()Ljava/lang/String; net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/ (Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/MultilineTextField/ (Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239144_ (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getLineView (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239234_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultilineTextField/lambda$new$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239257_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/components/MultilineTextField/setCursorListener (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239268_ ()I net/minecraft/client/gui/components/MultilineTextField/getLineAtCursor ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239290_ ()Ljava/lang/Iterable; net/minecraft/client/gui/components/MultilineTextField/iterateLines ()Ljava/lang/Iterable; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239340_ ()I net/minecraft/client/gui/components/MultilineTextField/getLineCount ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239344_ ()Z net/minecraft/client/gui/components/MultilineTextField/hasSelection ()Z +MD: net/minecraft/client/gui/components/MultilineTextField/m_239361_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getNextWord ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239390_ ()I net/minecraft/client/gui/components/MultilineTextField/characterLimit ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239393_ (I)V net/minecraft/client/gui/components/MultilineTextField/seekCursorLine (I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239417_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/truncateInsertionText (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239456_ ()I net/minecraft/client/gui/components/MultilineTextField/cursor ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239474_ (I)V net/minecraft/client/gui/components/MultilineTextField/deleteText (I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239578_ (DD)V net/minecraft/client/gui/components/MultilineTextField/seekCursorToPoint (DD)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239618_ ()Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/value ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239629_ ()Z net/minecraft/client/gui/components/MultilineTextField/hasCharacterLimit ()Z +MD: net/minecraft/client/gui/components/MultilineTextField/m_239637_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getPreviousWord ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239677_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultilineTextField/setValue (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239711_ (I)Z net/minecraft/client/gui/components/MultilineTextField/keyPressed (I)Z +MD: net/minecraft/client/gui/components/MultilineTextField/m_239743_ ()V net/minecraft/client/gui/components/MultilineTextField/onValueChange ()V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239744_ ()V net/minecraft/client/gui/components/MultilineTextField/lambda$new$1 ()V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239797_ (Lnet/minecraft/client/gui/components/Whence;I)V net/minecraft/client/gui/components/MultilineTextField/seekCursor (Lnet/minecraft/client/gui/components/Whence;I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239842_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/truncateFullText (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239845_ (Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/gui/components/MultilineTextField/lambda$reflowDisplayLines$2 (Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239854_ (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getCursorLineView (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239915_ ()V net/minecraft/client/gui/components/MultilineTextField/reflowDisplayLines ()V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239919_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/MultilineTextField/setValueListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239950_ (Z)V net/minecraft/client/gui/components/MultilineTextField/setSelecting (Z)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239982_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getSelected ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_240015_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultilineTextField/insertText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_240043_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getCursorLineView ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_240059_ ()Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/getSelectedText ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_240092_ (I)I net/minecraft/client/gui/components/MultilineTextField/getWordEndPosition (I)I +MD: net/minecraft/client/gui/components/MultilineTextField/m_240162_ (I)V net/minecraft/client/gui/components/MultilineTextField/setCharacterLimit (I)V +MD: net/minecraft/client/gui/components/MultilineTextField$1/ ()V net/minecraft/client/gui/components/MultilineTextField$1/ ()V +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/ ()V net/minecraft/client/gui/components/MultilineTextField$StringView/ ()V +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/ (II)V net/minecraft/client/gui/components/MultilineTextField$StringView/ (II)V +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/components/MultilineTextField$StringView/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238590_ ()I net/minecraft/client/gui/components/MultilineTextField$StringView/beginIndex ()I +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238654_ ()I net/minecraft/client/gui/components/MultilineTextField$StringView/endIndex ()I +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/hashCode ()I net/minecraft/client/gui/components/MultilineTextField$StringView/hashCode ()I +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/toString ()Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField$StringView/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/ObjectSelectionList/ ()V net/minecraft/client/gui/components/ObjectSelectionList/ ()V +MD: net/minecraft/client/gui/components/ObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/ObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/ObjectSelectionList/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ObjectSelectionList/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ObjectSelectionList/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ObjectSelectionList/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/ ()V net/minecraft/client/gui/components/ObjectSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/ObjectSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ObjectSelectionList$Entry/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/ObjectSelectionList$Entry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_5953_ (DD)Z net/minecraft/client/gui/components/ObjectSelectionList$Entry/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_93692_ (Z)V net/minecraft/client/gui/components/ObjectSelectionList$Entry/setFocused (Z)V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_93696_ ()Z net/minecraft/client/gui/components/ObjectSelectionList$Entry/isFocused ()Z +MD: net/minecraft/client/gui/components/OptionsList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/OptionsList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/OptionsList/m_232528_ (Lnet/minecraft/client/OptionInstance;)I net/minecraft/client/gui/components/OptionsList/addBig (Lnet/minecraft/client/OptionInstance;)I +MD: net/minecraft/client/gui/components/OptionsList/m_232530_ (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/components/OptionsList/addSmall (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/components/OptionsList/m_232533_ ([Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/components/OptionsList/addSmall ([Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/components/OptionsList/m_232535_ (Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/gui/components/OptionsList/findOption (Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/gui/components/OptionsList/m_5756_ ()I net/minecraft/client/gui/components/OptionsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/components/OptionsList/m_5759_ ()I net/minecraft/client/gui/components/OptionsList/getRowWidth ()I +MD: net/minecraft/client/gui/components/OptionsList/m_94480_ (DD)Ljava/util/Optional; net/minecraft/client/gui/components/OptionsList/getMouseOver (DD)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/OptionsList$Entry/ (Ljava/util/Map;)V net/minecraft/client/gui/components/OptionsList$Entry/ (Ljava/util/Map;)V +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/components/OptionsList$Entry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_232537_ (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; net/minecraft/client/gui/components/OptionsList$Entry/big (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_232541_ (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; net/minecraft/client/gui/components/OptionsList$Entry/small (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_279743_ (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/components/OptionsList$Entry/lambda$render$0 (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/OptionsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/OptionsList$Entry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/PlainTextButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/PlainTextButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/PlainTextButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/PlainTextButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/ ()V net/minecraft/client/gui/components/PlayerFaceRenderer/ ()V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/m_280029_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZZ)V net/minecraft/client/gui/components/PlayerFaceRenderer/draw (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZZ)V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/m_280078_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZ)V net/minecraft/client/gui/components/PlayerFaceRenderer/drawHat (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZ)V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/m_280354_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;III)V net/minecraft/client/gui/components/PlayerFaceRenderer/draw (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;III)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/ ()V net/minecraft/client/gui/components/PlayerTabOverlay/ ()V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/Gui;)V net/minecraft/client/gui/components/PlayerTabOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/Gui;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_245935_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$render$3 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_246165_ (Ljava/util/Set;Ljava/util/UUID;)Z net/minecraft/client/gui/components/PlayerTabOverlay/lambda$render$4 (Ljava/util/Set;Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_246766_ (ILjava/util/UUID;)Lnet/minecraft/client/gui/components/PlayerTabOverlay$HealthState; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$renderTablistHearts$5 (ILjava/util/UUID;)Lnet/minecraft/client/gui/components/PlayerTabOverlay$HealthState; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_252560_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$static$2 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_252561_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)I net/minecraft/client/gui/components/PlayerTabOverlay/lambda$static$0 (Lnet/minecraft/client/multiplayer/PlayerInfo;)I +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_264246_ ()Ljava/util/List; net/minecraft/client/gui/components/PlayerTabOverlay/getPlayerInfos ()Ljava/util/List; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_268767_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$static$1 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280020_ (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/gui/components/PlayerTabOverlay/renderPingIcon (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280237_ (IIILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/components/PlayerTabOverlay/renderTablistHearts (IIILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280406_ (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;)V net/minecraft/client/gui/components/PlayerTabOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280582_ (Lnet/minecraft/world/scores/Objective;ILjava/lang/String;IILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/PlayerTabOverlay/renderTablistScore (Lnet/minecraft/world/scores/Objective;ILjava/lang/String;IILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94529_ ()V net/minecraft/client/gui/components/PlayerTabOverlay/reset ()V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94549_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/PlayerTabOverlay/getNameForDisplay (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94551_ (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/PlayerTabOverlay/decorateName (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94554_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/PlayerTabOverlay/setFooter (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94556_ (Z)V net/minecraft/client/gui/components/PlayerTabOverlay/setVisible (Z)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94558_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/PlayerTabOverlay/setHeader (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/ (I)V net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/ (I)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/m_245265_ (IJ)V net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/update (IJ)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/m_246447_ (J)Z net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/isBlinking (J)Z +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/m_247739_ ()I net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/displayedValue ()I +MD: net/minecraft/client/gui/components/Renderable/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/Renderable/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/SplashRenderer/ ()V net/minecraft/client/gui/components/SplashRenderer/ ()V +MD: net/minecraft/client/gui/components/SplashRenderer/ (Ljava/lang/String;)V net/minecraft/client/gui/components/SplashRenderer/ (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/SplashRenderer/m_280672_ (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/SplashRenderer/render (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/ (IIIIZ)V net/minecraft/client/gui/components/StateSwitchingButton/ (IIIIZ)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/StateSwitchingButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/StateSwitchingButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_94620_ ()Z net/minecraft/client/gui/components/StateSwitchingButton/isStateTriggered ()Z +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_94624_ (IIIILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/components/StateSwitchingButton/initTextureValues (IIIILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_94635_ (Z)V net/minecraft/client/gui/components/StateSwitchingButton/setStateTriggered (Z)V +MD: net/minecraft/client/gui/components/StringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/StringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/StringWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/StringWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/StringWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/StringWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/StringWidget/m_267568_ (F)Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/horizontalAlignment (F)Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_267574_ ()Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/alignRight ()Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_267729_ ()Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/alignCenter ()Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_267769_ ()Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/alignLeft ()Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/setColor (I)Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; net/minecraft/client/gui/components/StringWidget/setColor (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/StringWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/SubtitleOverlay/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/SubtitleOverlay/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay/m_280227_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/SubtitleOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay/m_6985_ (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V net/minecraft/client/gui/components/SubtitleOverlay/onPlaySound (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94655_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94656_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/refresh (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94658_ ()J net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/getTime ()J +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94659_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/getLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/gui/components/TabButton/ ()V net/minecraft/client/gui/components/TabButton/ ()V +MD: net/minecraft/client/gui/components/TabButton/ (Lnet/minecraft/client/gui/components/tabs/TabManager;Lnet/minecraft/client/gui/components/tabs/Tab;II)V net/minecraft/client/gui/components/TabButton/ (Lnet/minecraft/client/gui/components/tabs/TabManager;Lnet/minecraft/client/gui/components/tabs/Tab;II)V +MD: net/minecraft/client/gui/components/TabButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/TabButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/TabButton/m_274319_ ()Z net/minecraft/client/gui/components/TabButton/isSelected ()Z +MD: net/minecraft/client/gui/components/TabButton/m_274356_ ()Lnet/minecraft/client/gui/components/tabs/Tab; net/minecraft/client/gui/components/TabButton/tab ()Lnet/minecraft/client/gui/components/tabs/Tab; +MD: net/minecraft/client/gui/components/TabButton/m_274365_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/TabButton/renderFocusUnderline (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/TabButton/m_274488_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/TabButton/renderString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/TabButton/m_274514_ ()I net/minecraft/client/gui/components/TabButton/getTextureY ()I +MD: net/minecraft/client/gui/components/TabButton/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/TabButton/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/TabButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/TabButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/TabOrderedElement/m_267579_ ()I net/minecraft/client/gui/components/TabOrderedElement/getTabOrderGroup ()I +MD: net/minecraft/client/gui/components/TextAndImageButton/ (Lnet/minecraft/network/chat/Component;IIIIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/TextAndImageButton/ (Lnet/minecraft/network/chat/Component;IIIIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/TextAndImageButton/m_267702_ ()I net/minecraft/client/gui/components/TextAndImageButton/getXOffset ()I +MD: net/minecraft/client/gui/components/TextAndImageButton/m_267772_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton/builder (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton/m_267831_ ()I net/minecraft/client/gui/components/TextAndImageButton/getYOffset ()I +MD: net/minecraft/client/gui/components/TextAndImageButton/m_280139_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/TextAndImageButton/renderString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/TextAndImageButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/TextAndImageButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/TextAndImageButton$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267570_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/offset (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267643_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/textureSize (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267752_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/texStart (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267765_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/usedTextureSize (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267775_ ()Lnet/minecraft/client/gui/components/TextAndImageButton; net/minecraft/client/gui/components/TextAndImageButton$Builder/build ()Lnet/minecraft/client/gui/components/TextAndImageButton; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267809_ (I)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/yDiffTex (I)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/Tooltip/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/Tooltip/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/Tooltip/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/Tooltip/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/Tooltip/m_257408_ (Lnet/minecraft/client/Minecraft;)Ljava/util/List; net/minecraft/client/gui/components/Tooltip/toCharSequence (Lnet/minecraft/client/Minecraft;)Ljava/util/List; +MD: net/minecraft/client/gui/components/Tooltip/m_257550_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/Tooltip/create (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/Tooltip/m_257563_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/Tooltip/create (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/Tooltip/m_257868_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Ljava/util/List; net/minecraft/client/gui/components/Tooltip/splitTooltip (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Ljava/util/List; +MD: net/minecraft/client/gui/components/Whence/ ()V net/minecraft/client/gui/components/Whence/ ()V +MD: net/minecraft/client/gui/components/Whence/ (Ljava/lang/String;I)V net/minecraft/client/gui/components/Whence/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/components/Whence/m_239202_ ()[Lnet/minecraft/client/gui/components/Whence; net/minecraft/client/gui/components/Whence/$values ()[Lnet/minecraft/client/gui/components/Whence; +MD: net/minecraft/client/gui/components/Whence/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/Whence; net/minecraft/client/gui/components/Whence/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/Whence; +MD: net/minecraft/client/gui/components/Whence/values ()[Lnet/minecraft/client/gui/components/Whence; net/minecraft/client/gui/components/Whence/values ()[Lnet/minecraft/client/gui/components/Whence; +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/ ()V net/minecraft/client/gui/components/events/AbstractContainerEventHandler/ ()V +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/events/AbstractContainerEventHandler/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7282_ ()Z net/minecraft/client/gui/components/events/AbstractContainerEventHandler/isDragging ()Z +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/events/AbstractContainerEventHandler/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7897_ (Z)V net/minecraft/client/gui/components/events/AbstractContainerEventHandler/setDragging (Z)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_263864_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$nextFocusPathInDirection$3 (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_263865_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$nextFocusPathInDirection$4 (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264187_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/handleArrowNavigation (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264435_ ()Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/getCurrentFocusPath ()Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264458_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/nextFocusPathInDirection (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264486_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/nextFocusPathVaguelyInDirection (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264559_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/handleTabNavigation (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_289585_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)I net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$handleTabNavigation$2 (Lnet/minecraft/client/gui/components/events/GuiEventListener;)I +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_5534_ (CI)Z net/minecraft/client/gui/components/events/ContainerEventHandler/charTyped (CI)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6050_ (DDD)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6348_ (DDI)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6375_ (DDI)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/events/ContainerEventHandler/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/events/ContainerEventHandler/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7282_ ()Z net/minecraft/client/gui/components/events/ContainerEventHandler/isDragging ()Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/events/ContainerEventHandler/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7897_ (Z)V net/minecraft/client/gui/components/events/ContainerEventHandler/setDragging (Z)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7920_ (III)Z net/minecraft/client/gui/components/events/ContainerEventHandler/keyReleased (III)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7933_ (III)Z net/minecraft/client/gui/components/events/ContainerEventHandler/keyPressed (III)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_93692_ (Z)V net/minecraft/client/gui/components/events/ContainerEventHandler/setFocused (Z)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_93696_ ()Z net/minecraft/client/gui/components/events/ContainerEventHandler/isFocused ()Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94689_ (DDDLnet/minecraft/client/gui/components/events/GuiEventListener;)Z net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$mouseScrolled$1 (DDDLnet/minecraft/client/gui/components/events/GuiEventListener;)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94704_ (DDILnet/minecraft/client/gui/components/events/GuiEventListener;)Z net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$mouseReleased$0 (DDILnet/minecraft/client/gui/components/events/GuiEventListener;)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94725_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/events/ContainerEventHandler/magicalSpecialHackyFocus (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94729_ (DD)Ljava/util/Optional; net/minecraft/client/gui/components/events/ContainerEventHandler/getChildAt (DD)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/GuiEventListener/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/events/GuiEventListener/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_264435_ ()Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/GuiEventListener/getCurrentFocusPath ()Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_5534_ (CI)Z net/minecraft/client/gui/components/events/GuiEventListener/charTyped (CI)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_5953_ (DD)Z net/minecraft/client/gui/components/events/GuiEventListener/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_6050_ (DDD)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_6348_ (DDI)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_6375_ (DDI)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_7920_ (III)Z net/minecraft/client/gui/components/events/GuiEventListener/keyReleased (III)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_7933_ (III)Z net/minecraft/client/gui/components/events/GuiEventListener/keyPressed (III)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_93692_ (Z)V net/minecraft/client/gui/components/events/GuiEventListener/setFocused (Z)V +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_93696_ ()Z net/minecraft/client/gui/components/events/GuiEventListener/isFocused ()Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_94757_ (DD)V net/minecraft/client/gui/components/events/GuiEventListener/mouseMoved (DD)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/ ()V net/minecraft/client/gui/components/spectator/SpectatorGui/ ()V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/spectator/SpectatorGui/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_205380_ (I)V net/minecraft/client/gui/components/spectator/SpectatorGui/onMouseScrolled (I)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280016_ (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/gui/spectator/categories/SpectatorPage;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderPage (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/gui/spectator/categories/SpectatorPage;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280365_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280623_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderHotbar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280643_ (Lnet/minecraft/client/gui/GuiGraphics;IIFFLnet/minecraft/client/gui/spectator/SpectatorMenuItem;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderSlot (Lnet/minecraft/client/gui/GuiGraphics;IIFFLnet/minecraft/client/gui/spectator/SpectatorMenuItem;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_7613_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/components/spectator/SpectatorGui/onSpectatorMenuClosed (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94768_ ()Z net/minecraft/client/gui/components/spectator/SpectatorGui/isMenuActive ()Z +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94771_ (I)V net/minecraft/client/gui/components/spectator/SpectatorGui/onHotbarSelected (I)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94793_ ()V net/minecraft/client/gui/components/spectator/SpectatorGui/onMouseMiddleClick ()V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94794_ ()F net/minecraft/client/gui/components/spectator/SpectatorGui/getHotbarAlpha ()F +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/tabs/GridLayoutTab/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/m_267600_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/tabs/GridLayoutTab/getTabTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/m_267609_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/tabs/GridLayoutTab/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/m_267697_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/components/tabs/GridLayoutTab/doLayout (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/components/tabs/Tab/m_267600_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/tabs/Tab/getTabTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/tabs/Tab/m_267609_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/tabs/Tab/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/tabs/Tab/m_267681_ ()V net/minecraft/client/gui/components/tabs/Tab/tick ()V +MD: net/minecraft/client/gui/components/tabs/Tab/m_267697_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/components/tabs/Tab/doLayout (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/components/tabs/TabManager/ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/tabs/TabManager/ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/tabs/TabManager/m_267621_ ()V net/minecraft/client/gui/components/tabs/TabManager/tickCurrent ()V +MD: net/minecraft/client/gui/components/tabs/TabManager/m_267695_ ()Lnet/minecraft/client/gui/components/tabs/Tab; net/minecraft/client/gui/components/tabs/TabManager/getCurrentTab ()Lnet/minecraft/client/gui/components/tabs/Tab; +MD: net/minecraft/client/gui/components/tabs/TabManager/m_267817_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/components/tabs/TabManager/setTabArea (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/components/tabs/TabManager/m_276088_ (Lnet/minecraft/client/gui/components/tabs/Tab;Z)V net/minecraft/client/gui/components/tabs/TabManager/setCurrentTab (Lnet/minecraft/client/gui/components/tabs/Tab;Z)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/ ()V net/minecraft/client/gui/components/tabs/TabNavigationBar/ ()V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/ (ILnet/minecraft/client/gui/components/tabs/TabManager;Ljava/lang/Iterable;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/ (ILnet/minecraft/client/gui/components/tabs/TabManager;Ljava/lang/Iterable;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/tabs/TabNavigationBar/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/tabs/TabNavigationBar/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/tabs/TabNavigationBar/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_267604_ (I)V net/minecraft/client/gui/components/tabs/TabNavigationBar/setWidth (I)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_267630_ (Lnet/minecraft/client/gui/components/tabs/TabManager;I)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; net/minecraft/client/gui/components/tabs/TabNavigationBar/builder (Lnet/minecraft/client/gui/components/tabs/TabManager;I)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_267766_ ()V net/minecraft/client/gui/components/tabs/TabNavigationBar/arrangeElements ()V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_269025_ ()I net/minecraft/client/gui/components/tabs/TabNavigationBar/currentTabIndex ()I +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_269123_ (I)I net/minecraft/client/gui/components/tabs/TabNavigationBar/getNextTabIndex (I)I +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_269419_ (I)Z net/minecraft/client/gui/components/tabs/TabNavigationBar/keyPressed (I)Z +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_273975_ ()Ljava/util/Optional; net/minecraft/client/gui/components/tabs/TabNavigationBar/lambda$updateNarration$0 ()Ljava/util/Optional; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_273976_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/lambda$updateNarration$1 (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_274517_ ()Lnet/minecraft/client/gui/components/TabButton; net/minecraft/client/gui/components/tabs/TabNavigationBar/currentTabButton ()Lnet/minecraft/client/gui/components/TabButton; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_274560_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/narrateListElementPosition (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_276089_ (IZ)V net/minecraft/client/gui/components/tabs/TabNavigationBar/selectTab (IZ)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/tabs/TabNavigationBar/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/tabs/TabNavigationBar/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_93692_ (Z)V net/minecraft/client/gui/components/tabs/TabNavigationBar/setFocused (Z)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/ (Lnet/minecraft/client/gui/components/tabs/TabManager;I)V net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/ (Lnet/minecraft/client/gui/components/tabs/TabManager;I)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/m_267625_ ()Lnet/minecraft/client/gui/components/tabs/TabNavigationBar; net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/build ()Lnet/minecraft/client/gui/components/tabs/TabNavigationBar; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/m_267824_ ([Lnet/minecraft/client/gui/components/tabs/Tab;)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/addTabs ([Lnet/minecraft/client/gui/components/tabs/Tab;)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; +MD: net/minecraft/client/gui/components/toasts/AdvancementToast/ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/components/toasts/AdvancementToast/ (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/components/toasts/AdvancementToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/AdvancementToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/RecipeToast/ ()V net/minecraft/client/gui/components/toasts/RecipeToast/ ()V +MD: net/minecraft/client/gui/components/toasts/RecipeToast/ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/components/toasts/RecipeToast/ (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/components/toasts/RecipeToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/RecipeToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/RecipeToast/m_94811_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/components/toasts/RecipeToast/addItem (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/components/toasts/RecipeToast/m_94817_ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/components/toasts/RecipeToast/addOrUpdate (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Ljava/util/List;I)V net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Ljava/util/List;I)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_280654_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;IIII)V net/minecraft/client/gui/components/toasts/SystemToast/renderBackgroundRow (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;IIII)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/SystemToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7283_ ()Ljava/lang/Object; net/minecraft/client/gui/components/toasts/SystemToast/getToken ()Ljava/lang/Object; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7283_ ()Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast/getToken ()Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7828_ ()I net/minecraft/client/gui/components/toasts/SystemToast/width ()I +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94847_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/toasts/SystemToast; net/minecraft/client/gui/components/toasts/SystemToast/multiline (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/toasts/SystemToast; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94852_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/components/toasts/SystemToast/onWorldAccessFailure (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94855_ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/add (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94860_ (Lnet/minecraft/network/chat/Component;)Lcom/google/common/collect/ImmutableList; net/minecraft/client/gui/components/toasts/SystemToast/nullToEmpty (Lnet/minecraft/network/chat/Component;)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94862_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/reset (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94866_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/components/toasts/SystemToast/onWorldDeleteFailure (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94869_ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/addOrUpdate (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94875_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/components/toasts/SystemToast/onPackCopyFailure (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94899_ ()I net/minecraft/client/gui/components/toasts/SystemToast/height ()I +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ ()V net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ ()V +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;IJ)V net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;IJ)V +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;I)V net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/m_169079_ ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/$values ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/values ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/values ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/Toast/ ()V net/minecraft/client/gui/components/toasts/Toast/ ()V +MD: net/minecraft/client/gui/components/toasts/Toast/m_243110_ ()I net/minecraft/client/gui/components/toasts/Toast/slotCount ()I +MD: net/minecraft/client/gui/components/toasts/Toast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/Toast/m_7283_ ()Ljava/lang/Object; net/minecraft/client/gui/components/toasts/Toast/getToken ()Ljava/lang/Object; +MD: net/minecraft/client/gui/components/toasts/Toast/m_7828_ ()I net/minecraft/client/gui/components/toasts/Toast/width ()I +MD: net/minecraft/client/gui/components/toasts/Toast/m_94899_ ()I net/minecraft/client/gui/components/toasts/Toast/height ()I +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/ ()V net/minecraft/client/gui/components/toasts/Toast$Visibility/ ()V +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/ (Ljava/lang/String;ILnet/minecraft/sounds/SoundEvent;)V net/minecraft/client/gui/components/toasts/Toast$Visibility/ (Ljava/lang/String;ILnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/m_169080_ ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast$Visibility/$values ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/m_94909_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/toasts/Toast$Visibility/playSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/values ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast$Visibility/values ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/ToastComponent/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/toasts/ToastComponent/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_243085_ (Lnet/minecraft/client/gui/components/toasts/Toast;)Z net/minecraft/client/gui/components/toasts/ToastComponent/lambda$render$1 (Lnet/minecraft/client/gui/components/toasts/Toast;)Z +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_243097_ ()I net/minecraft/client/gui/components/toasts/ToastComponent/freeSlots ()I +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_243100_ (I)I net/minecraft/client/gui/components/toasts/ToastComponent/findFreeIndex (I)I +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_264542_ ()D net/minecraft/client/gui/components/toasts/ToastComponent/getNotificationDisplayTimeMultiplier ()D +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_279745_ (ILnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance;)Z net/minecraft/client/gui/components/toasts/ToastComponent/lambda$render$0 (ILnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance;)Z +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94919_ ()V net/minecraft/client/gui/components/toasts/ToastComponent/clear ()V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94920_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/toasts/ToastComponent/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94922_ (Lnet/minecraft/client/gui/components/toasts/Toast;)V net/minecraft/client/gui/components/toasts/ToastComponent/addToast (Lnet/minecraft/client/gui/components/toasts/Toast;)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94926_ (Ljava/lang/Class;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/toasts/Toast; net/minecraft/client/gui/components/toasts/ToastComponent/getToast (Ljava/lang/Class;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/toasts/Toast; +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94929_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/components/toasts/ToastComponent/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/Toast;II)V net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/Toast;II)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/m_280442_ (ILnet/minecraft/client/gui/GuiGraphics;)Z net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/render (ILnet/minecraft/client/gui/GuiGraphics;)Z +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/m_94942_ ()Lnet/minecraft/client/gui/components/toasts/Toast; net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/getToast ()Lnet/minecraft/client/gui/components/toasts/Toast; +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/m_94947_ (J)F net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/getVisibility (J)F +MD: net/minecraft/client/gui/components/toasts/TutorialToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/components/toasts/TutorialToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/TutorialToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/TutorialToast/m_94962_ (F)V net/minecraft/client/gui/components/toasts/TutorialToast/updateProgress (F)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast/m_94968_ ()V net/minecraft/client/gui/components/toasts/TutorialToast/hide ()V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ ()V net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ ()V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ (Ljava/lang/String;III)V net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ (Ljava/lang/String;III)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/m_169088_ ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; net/minecraft/client/gui/components/toasts/TutorialToast$Icons/$values ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/m_280006_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/toasts/TutorialToast$Icons/render (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; net/minecraft/client/gui/components/toasts/TutorialToast$Icons/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/values ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; net/minecraft/client/gui/components/toasts/TutorialToast$Icons/values ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +MD: net/minecraft/client/gui/font/AllMissingGlyphProvider/ ()V net/minecraft/client/gui/font/AllMissingGlyphProvider/ ()V +MD: net/minecraft/client/gui/font/AllMissingGlyphProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/AllMissingGlyphProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/AllMissingGlyphProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/AllMissingGlyphProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/CodepointMap/ (Ljava/util/function/IntFunction;Ljava/util/function/IntFunction;)V net/minecraft/client/gui/font/CodepointMap/ (Ljava/util/function/IntFunction;Ljava/util/function/IntFunction;)V +MD: net/minecraft/client/gui/font/CodepointMap/m_284150_ (Lnet/minecraft/client/gui/font/CodepointMap$Output;)V net/minecraft/client/gui/font/CodepointMap/forEach (Lnet/minecraft/client/gui/font/CodepointMap$Output;)V +MD: net/minecraft/client/gui/font/CodepointMap/m_284192_ ()V net/minecraft/client/gui/font/CodepointMap/clear ()V +MD: net/minecraft/client/gui/font/CodepointMap/m_284320_ (I)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/remove (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284412_ (I)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/get (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284450_ (ILjava/util/function/IntFunction;)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/computeIfAbsent (ILjava/util/function/IntFunction;)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284498_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/CodepointMap/keySet ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/CodepointMap/m_284506_ (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/put (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284551_ (Lit/unimi/dsi/fastutil/ints/IntOpenHashSet;ILjava/lang/Object;)V net/minecraft/client/gui/font/CodepointMap/lambda$keySet$0 (Lit/unimi/dsi/fastutil/ints/IntOpenHashSet;ILjava/lang/Object;)V +MD: net/minecraft/client/gui/font/CodepointMap$Output/m_284511_ (ILjava/lang/Object;)V net/minecraft/client/gui/font/CodepointMap$Output/accept (ILjava/lang/Object;)V +MD: net/minecraft/client/gui/font/FontManager/ ()V net/minecraft/client/gui/font/FontManager/ ()V +MD: net/minecraft/client/gui/font/FontManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/gui/font/FontManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/gui/font/FontManager/close ()V net/minecraft/client/gui/font/FontManager/close ()V +MD: net/minecraft/client/gui/font/FontManager/m_243082_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/font/FontManager/createFontFilterFishy ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/font/FontManager/m_283954_ (Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/lambda$prepare$6 (Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_283955_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; net/minecraft/client/gui/font/FontManager/lambda$createFont$17 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; +MD: net/minecraft/client/gui/font/FontManager/m_283956_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/lambda$prepare$7 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_283957_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/gui/font/FontManager/lambda$resolveProviders$13 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager/m_283958_ (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/gui/font/FontManager/lambda$prepare$10 (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/gui/font/FontManager/m_283959_ (Ljava/util/List;Ljava/util/Map;Ljava/lang/Void;)Lnet/minecraft/client/gui/font/FontManager$Preparation; net/minecraft/client/gui/font/FontManager/lambda$prepare$8 (Ljava/util/List;Ljava/util/Map;Ljava/lang/Void;)Lnet/minecraft/client/gui/font/FontManager$Preparation; +MD: net/minecraft/client/gui/font/FontManager/m_283960_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; net/minecraft/client/gui/font/FontManager/lambda$createFontFilterFishy$18 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; +MD: net/minecraft/client/gui/font/FontManager/m_283961_ (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V net/minecraft/client/gui/font/FontManager/lambda$prepare$5 (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V +MD: net/minecraft/client/gui/font/FontManager/m_283963_ (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle; net/minecraft/client/gui/font/FontManager/lambda$prepare$4 (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle; +MD: net/minecraft/client/gui/font/FontManager/m_283964_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/gui/font/FontManager$Preparation;)V net/minecraft/client/gui/font/FontManager/lambda$reload$1 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/gui/font/FontManager$Preparation;)V +MD: net/minecraft/client/gui/font/FontManager/m_283966_ (Ljava/util/List;I)V net/minecraft/client/gui/font/FontManager/lambda$finalizeProviderLoading$15 (Ljava/util/List;I)V +MD: net/minecraft/client/gui/font/FontManager/m_283967_ (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/gui/font/FontManager/lambda$prepare$9 (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/gui/font/FontManager/m_283968_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V net/minecraft/client/gui/font/FontManager/lambda$resolveProviders$14 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V +MD: net/minecraft/client/gui/font/FontManager/m_283970_ (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V net/minecraft/client/gui/font/FontManager/lambda$resolveProviders$12 (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V +MD: net/minecraft/client/gui/font/FontManager/m_283971_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/gui/font/FontManager/lambda$apply$16 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager/m_284164_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/FontManager/getActualId (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/FontManager/m_284270_ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/client/gui/font/FontManager/loadResourceStack (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager/m_284357_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/safeLoad (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_284410_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_284460_ (Lnet/minecraft/client/gui/font/FontManager$Preparation;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/gui/font/FontManager/apply (Lnet/minecraft/client/gui/font/FontManager$Preparation;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/gui/font/FontManager/m_284489_ (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V net/minecraft/client/gui/font/FontManager/finalizeProviderLoading (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V +MD: net/minecraft/client/gui/font/FontManager/m_284517_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/client/gui/font/FontManager/resolveProviders (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/client/gui/font/FontManager/m_285669_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;)V net/minecraft/client/gui/font/FontManager/lambda$prepare$2 (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;)V +MD: net/minecraft/client/gui/font/FontManager/m_285670_ (Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V net/minecraft/client/gui/font/FontManager/lambda$prepare$3 (Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V +MD: net/minecraft/client/gui/font/FontManager/m_285671_ (Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/gui/font/FontManager$BuilderId;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager/lambda$safeLoad$11 (Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/gui/font/FontManager$BuilderId;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_95006_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/font/FontManager/createFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/font/FontManager/m_95009_ (Lnet/minecraft/client/gui/font/FontSet;)V net/minecraft/client/gui/font/FontManager/lambda$new$0 (Lnet/minecraft/client/gui/font/FontSet;)V +MD: net/minecraft/client/gui/font/FontManager/m_95011_ (Ljava/util/Map;)V net/minecraft/client/gui/font/FontManager/setRenames (Ljava/util/Map;)V +MD: net/minecraft/client/gui/font/FontManager$BuilderId/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;I)V net/minecraft/client/gui/font/FontManager$BuilderId/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;I)V +MD: net/minecraft/client/gui/font/FontManager$BuilderId/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$BuilderId/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283782_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/FontManager$BuilderId/fontId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283885_ ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$BuilderId/pack ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283900_ ()I net/minecraft/client/gui/font/FontManager$BuilderId/index ()I +MD: net/minecraft/client/gui/font/FontManager$BuilderId/hashCode ()I net/minecraft/client/gui/font/FontManager$BuilderId/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$BuilderId/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$BuilderId/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lcom/mojang/datafixers/util/Either;)V net/minecraft/client/gui/font/FontManager$BuilderResult/ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$BuilderResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283838_ ()Lnet/minecraft/client/gui/font/FontManager$BuilderId; net/minecraft/client/gui/font/FontManager$BuilderResult/id ()Lnet/minecraft/client/gui/font/FontManager$BuilderId; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283894_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/FontManager$BuilderResult/result ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/hashCode ()I net/minecraft/client/gui/font/FontManager$BuilderResult/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/m_284205_ (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$BuilderResult/lambda$resolve$1 (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/m_284215_ (Ljava/util/function/Function;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$BuilderResult/resolve (Ljava/util/function/Function;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/m_284229_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$BuilderResult/lambda$resolve$0 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$BuilderResult/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ ()V net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ ()V +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ (Ljava/util/List;)V net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$FontDefinitionFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/f_285612_ ()Ljava/util/List; net/minecraft/client/gui/font/FontManager$FontDefinitionFile/providers ()Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/hashCode ()I net/minecraft/client/gui/font/FontManager$FontDefinitionFile/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/m_285893_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/FontManager$FontDefinitionFile/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$FontDefinitionFile/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$Preparation/ (Ljava/util/Map;Ljava/util/List;)V net/minecraft/client/gui/font/FontManager$Preparation/ (Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager$Preparation/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$Preparation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$Preparation/f_283866_ ()Ljava/util/List; net/minecraft/client/gui/font/FontManager$Preparation/allProviders ()Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager$Preparation/f_283921_ ()Ljava/util/Map; net/minecraft/client/gui/font/FontManager$Preparation/providers ()Ljava/util/Map; +MD: net/minecraft/client/gui/font/FontManager$Preparation/hashCode ()I net/minecraft/client/gui/font/FontManager$Preparation/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$Preparation/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$Preparation/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Set;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Set;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283760_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/fontId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283826_ ()Ljava/util/List; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/builders ()Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283897_ ()Ljava/util/Set; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/dependencies ()Ljava/util/Set; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/hashCode ()I net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284148_ ()Ljava/util/stream/Stream; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/listBuilders ()Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284213_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284241_ (Ljava/util/function/Function;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/resolve (Ljava/util/function/Function;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284288_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/add (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284307_ (Lnet/minecraft/client/gui/font/FontManager$BuilderResult;)Ljava/util/stream/Stream; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/lambda$listBuilders$0 (Lnet/minecraft/client/gui/font/FontManager$BuilderResult;)Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284346_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_286066_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/add (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontSet/ ()V net/minecraft/client/gui/font/FontSet/ ()V +MD: net/minecraft/client/gui/font/FontSet/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/FontSet/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/FontSet/close ()V net/minecraft/client/gui/font/FontSet/close ()V +MD: net/minecraft/client/gui/font/FontSet/m_232556_ (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/stitch (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_232558_ (Ljava/util/List;Ljava/util/Set;I)V net/minecraft/client/gui/font/FontSet/lambda$reload$5 (Ljava/util/List;Ljava/util/Set;I)V +MD: net/minecraft/client/gui/font/FontSet/m_232564_ (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/computeBakedGlyph (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_232566_ (I)Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/client/gui/font/FontSet/lambda$reload$4 (I)Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/client/gui/font/FontSet/m_243068_ (Lcom/mojang/blaze3d/font/GlyphInfo;)Z net/minecraft/client/gui/font/FontSet/hasFishyAdvance (Lcom/mojang/blaze3d/font/GlyphInfo;)Z +MD: net/minecraft/client/gui/font/FontSet/m_243121_ (I)Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; net/minecraft/client/gui/font/FontSet/computeGlyphInfo (I)Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +MD: net/minecraft/client/gui/font/FontSet/m_243128_ (IZ)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet/getGlyphInfo (IZ)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet/m_283972_ (I)[[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/lambda$new$1 (I)[[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_283973_ (I)[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/lambda$new$0 (I)[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_283974_ (I)[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; net/minecraft/client/gui/font/FontSet/lambda$new$2 (I)[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +MD: net/minecraft/client/gui/font/FontSet/m_283975_ (I)[[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; net/minecraft/client/gui/font/FontSet/lambda$new$3 (I)[[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +MD: net/minecraft/client/gui/font/FontSet/m_95064_ ()Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/whiteGlyph ()Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_95067_ (Lcom/mojang/blaze3d/font/GlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/getRandomGlyph (Lcom/mojang/blaze3d/font/GlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_95071_ (Ljava/util/List;)V net/minecraft/client/gui/font/FontSet/reload (Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontSet/m_95077_ ()V net/minecraft/client/gui/font/FontSet/closeProviders ()V +MD: net/minecraft/client/gui/font/FontSet/m_95078_ (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/getGlyph (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_95080_ ()V net/minecraft/client/gui/font/FontSet/closeTextures ()V +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ ()V net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ ()V +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ (Lcom/mojang/blaze3d/font/GlyphInfo;Lcom/mojang/blaze3d/font/GlyphInfo;)V net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ (Lcom/mojang/blaze3d/font/GlyphInfo;Lcom/mojang/blaze3d/font/GlyphInfo;)V +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243006_ ()Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfoNotFishy ()Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243013_ ()Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfo ()Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/hashCode ()I net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/hashCode ()I +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/m_243099_ (Z)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/select (Z)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontTexture/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;Z)V net/minecraft/client/gui/font/FontTexture/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;Z)V +MD: net/minecraft/client/gui/font/FontTexture/close ()V net/minecraft/client/gui/font/FontTexture/close ()V +MD: net/minecraft/client/gui/font/FontTexture/m_232568_ (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontTexture/add (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontTexture/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/gui/font/FontTexture/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/font/FontTexture/m_284333_ (I)I net/minecraft/client/gui/font/FontTexture/lambda$dumpContents$0 (I)I +MD: net/minecraft/client/gui/font/FontTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/gui/font/FontTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/gui/font/FontTexture$Node/ (IIII)V net/minecraft/client/gui/font/FontTexture$Node/ (IIII)V +MD: net/minecraft/client/gui/font/FontTexture$Node/m_232570_ (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/FontTexture$Node; net/minecraft/client/gui/font/FontTexture$Node/insert (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/FontTexture$Node; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/ (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/gui/font/GlyphRenderTypes/ (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/gui/font/GlyphRenderTypes/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/GlyphRenderTypes/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283751_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/polygonOffset ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283780_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/normal ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283831_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/seeThrough ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/hashCode ()I net/minecraft/client/gui/font/GlyphRenderTypes/hashCode ()I +MD: net/minecraft/client/gui/font/GlyphRenderTypes/m_284354_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; net/minecraft/client/gui/font/GlyphRenderTypes/createForColorTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/m_284370_ (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/select (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/m_284520_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; net/minecraft/client/gui/font/GlyphRenderTypes/createForIntensityTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/toString ()Ljava/lang/String; net/minecraft/client/gui/font/GlyphRenderTypes/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/GlyphRenderTypes$1/ ()V net/minecraft/client/gui/font/GlyphRenderTypes$1/ ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/ (Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Predicate;)V net/minecraft/client/gui/font/TextFieldHelper/ (Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Predicate;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169093_ (I)V net/minecraft/client/gui/font/TextFieldHelper/moveByChars (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169095_ (I)V net/minecraft/client/gui/font/TextFieldHelper/moveByWords (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169097_ ()V net/minecraft/client/gui/font/TextFieldHelper/setCursorToStart ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169098_ (I)V net/minecraft/client/gui/font/TextFieldHelper/setCursorPos (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169100_ (I)V net/minecraft/client/gui/font/TextFieldHelper/setSelectionPos (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_232572_ (ILnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V net/minecraft/client/gui/font/TextFieldHelper/removeFromCursor (ILnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_232575_ (IZLnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V net/minecraft/client/gui/font/TextFieldHelper/moveBy (IZLnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_232579_ (I)V net/minecraft/client/gui/font/TextFieldHelper/removeWordsFromCursor (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95142_ ()V net/minecraft/client/gui/font/TextFieldHelper/cut ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95143_ (C)Z net/minecraft/client/gui/font/TextFieldHelper/charTyped (C)Z +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95145_ (I)Z net/minecraft/client/gui/font/TextFieldHelper/keyPressed (I)Z +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95147_ (II)V net/minecraft/client/gui/font/TextFieldHelper/setSelectionRange (II)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95150_ (IZ)V net/minecraft/client/gui/font/TextFieldHelper/moveByChars (IZ)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95153_ (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Supplier; net/minecraft/client/gui/font/TextFieldHelper/createClipboardGetter (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Supplier; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95155_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/setClipboardContents (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95158_ (Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/insertText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95160_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/insertText (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95163_ (Z)V net/minecraft/client/gui/font/TextFieldHelper/resetSelectionIfNeeded (Z)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95165_ ()V net/minecraft/client/gui/font/TextFieldHelper/paste ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95166_ (IZ)V net/minecraft/client/gui/font/TextFieldHelper/moveByWords (IZ)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95169_ (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/getClipboardContents (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95171_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/lambda$createClipboardSetter$1 (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95174_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/getSelected (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95176_ (Z)V net/minecraft/client/gui/font/TextFieldHelper/setCursorToStart (Z)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95178_ ()V net/minecraft/client/gui/font/TextFieldHelper/copy ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95179_ (IZ)V net/minecraft/client/gui/font/TextFieldHelper/setCursorPos (IZ)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95182_ (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Consumer; net/minecraft/client/gui/font/TextFieldHelper/createClipboardSetter (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Consumer; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95184_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/deleteSelection (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95186_ (Z)V net/minecraft/client/gui/font/TextFieldHelper/setCursorToEnd (Z)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95188_ ()V net/minecraft/client/gui/font/TextFieldHelper/selectAll ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95189_ (I)V net/minecraft/client/gui/font/TextFieldHelper/removeCharsFromCursor (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95191_ (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/lambda$createClipboardGetter$0 (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95193_ ()V net/minecraft/client/gui/font/TextFieldHelper/setCursorToEnd ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95194_ ()I net/minecraft/client/gui/font/TextFieldHelper/getCursorPos ()I +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95195_ (I)I net/minecraft/client/gui/font/TextFieldHelper/clampToMsgLength (I)I +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95197_ ()I net/minecraft/client/gui/font/TextFieldHelper/getSelectionPos ()I +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95198_ ()Z net/minecraft/client/gui/font/TextFieldHelper/isSelecting ()Z +MD: net/minecraft/client/gui/font/TextFieldHelper$1/ ()V net/minecraft/client/gui/font/TextFieldHelper$1/ ()V +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ ()V net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ ()V +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ (Ljava/lang/String;I)V net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/m_232590_ ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; net/minecraft/client/gui/font/TextFieldHelper$CursorStep/$values ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; net/minecraft/client/gui/font/TextFieldHelper$CursorStep/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/values ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; net/minecraft/client/gui/font/TextFieldHelper$CursorStep/values ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;FFFFFFFF)V net/minecraft/client/gui/font/glyphs/BakedGlyph/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;FFFFFFFF)V +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/m_181387_ (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/glyphs/BakedGlyph/renderType (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/m_5626_ (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V net/minecraft/client/gui/font/glyphs/BakedGlyph/render (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/m_95220_ (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;I)V net/minecraft/client/gui/font/glyphs/BakedGlyph/renderEffect (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;I)V +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/ (FFFFFFFFF)V net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/ (FFFFFFFFF)V +MD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V +MD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V +MD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/m_5626_ (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V net/minecraft/client/gui/font/glyphs/EmptyGlyph/render (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ ()V net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ ()V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ (Ljava/lang/String;ILjava/util/function/Supplier;)V net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ (Ljava/lang/String;ILjava/util/function/Supplier;)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232605_ (II)I net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$2 (II)I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232608_ (IILnet/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/generate (IILnet/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232612_ (II)I net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$0 (II)I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232617_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$3 ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232618_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$1 ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232619_ ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/$values ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_7403_ ()F net/minecraft/client/gui/font/glyphs/SpecialGlyphs/getAdvance ()F +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/values ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/values ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/ (Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs;)V net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/ (Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs;)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213958_ (II)V net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/upload (II)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213961_ ()I net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/getPixelHeight ()I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213962_ ()I net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/getPixelWidth ()I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213963_ ()F net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/getOversample ()F +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213965_ ()Z net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/isColored ()Z +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider/m_232634_ (II)I net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider/getColor (II)I +MD: net/minecraft/client/gui/font/providers/BitmapProvider/ ()V net/minecraft/client/gui/font/providers/BitmapProvider/ ()V +MD: net/minecraft/client/gui/font/providers/BitmapProvider/ (Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/gui/font/CodepointMap;)V net/minecraft/client/gui/font/providers/BitmapProvider/ (Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/gui/font/CodepointMap;)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider/close ()V net/minecraft/client/gui/font/providers/BitmapProvider/close ()V +MD: net/minecraft/client/gui/font/providers/BitmapProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/providers/BitmapProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/providers/BitmapProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/providers/BitmapProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ ()V net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ ()V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;II[[I)V net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;II[[I)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/BitmapProvider$Definition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285577_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ascent ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285611_ ()[[I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/codepointGrid ()[[I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285631_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/file ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285660_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/height ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/hashCode ()I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/hashCode ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285746_ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/validate (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285761_ ([II)Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validateDimensions$4 ([II)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285860_ ([[I)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/validateDimensions ([[I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285912_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validateDimensions$2 ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285930_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285954_ (I)[[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$load$8 (I)[[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285979_ (Lcom/mojang/blaze3d/platform/NativeImage;IIII)I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/getActualGlyphWidth (Lcom/mojang/blaze3d/platform/NativeImage;IIII)I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285986_ (Ljava/util/List;)[[I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$static$0 (Ljava/util/List;)[[I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285989_ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validate$6 (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285991_ (I)[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$load$7 (I)[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_286048_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_286085_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validateDimensions$3 ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_286109_ ([[I)Ljava/util/List; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$static$1 ([[I)Ljava/util/List; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ (FLcom/mojang/blaze3d/platform/NativeImage;IIIIII)V net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ (FLcom/mojang/blaze3d/platform/NativeImage;IIIIII)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95363_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/scale ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95364_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/image ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95365_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetX ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95366_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetY ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95367_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/width ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95368_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/height ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95369_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/advance ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95370_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ascent ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/hashCode ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/hashCode ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/m_7403_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/getAdvance ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph;)V net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph;)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213958_ (II)V net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/upload (II)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213961_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getPixelHeight ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213962_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getPixelWidth ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213963_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getOversample ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213964_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getBearingY ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213965_ ()Z net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/isColored ()Z +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/ ()V net/minecraft/client/gui/font/providers/GlyphProviderDefinition/ ()V +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/GlyphProviderDefinition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderDefinition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/m_286025_ (Lnet/minecraft/client/gui/font/providers/GlyphProviderType;)Lcom/mojang/serialization/Codec; net/minecraft/client/gui/font/providers/GlyphProviderDefinition/lambda$static$0 (Lnet/minecraft/client/gui/font/providers/GlyphProviderType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader/m_285964_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/f_285563_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/hashCode ()I net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/hashCode ()I +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/ ()V net/minecraft/client/gui/font/providers/GlyphProviderType/ ()V +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/serialization/MapCodec;)V net/minecraft/client/gui/font/providers/GlyphProviderType/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/m_285822_ ()Lcom/mojang/serialization/MapCodec; net/minecraft/client/gui/font/providers/GlyphProviderType/mapCodec ()Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/m_285865_ ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderType/$values ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/m_7912_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/GlyphProviderType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/values ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderType/values ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ ()V net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ ()V +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/f_285571_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/hashCode ()I net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/hashCode ()I +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/m_286001_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ ()V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ ()V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ (Lnet/minecraft/resources/ResourceLocation;FFLnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;Ljava/lang/String;)V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ (Lnet/minecraft/resources/ResourceLocation;FFLnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285564_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285576_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/oversample ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285584_ ()Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/shift ()Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285590_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/size ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285657_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/skip ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/hashCode ()I net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/hashCode ()I +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285764_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285839_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$2 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285849_ (Ljava/util/List;)Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$1 (Ljava/util/List;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_286057_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_286082_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ ()V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ ()V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ (FF)V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ (FF)V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285596_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/x ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285597_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/y ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/hashCode ()I net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/hashCode ()I +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/m_285852_ (Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;)Ljava/util/List; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/lambda$static$2 (Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;)Ljava/util/List; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/m_285877_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/lambda$static$1 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/m_285960_ (Ljava/util/List;)Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/lambda$static$0 (Ljava/util/List;)Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider/ ()V net/minecraft/client/gui/font/providers/UnihexProvider/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/ (Lnet/minecraft/client/gui/font/CodepointMap;)V net/minecraft/client/gui/font/providers/UnihexProvider/ (Lnet/minecraft/client/gui/font/CodepointMap;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/providers/UnihexProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284179_ (Ljava/io/InputStream;Lit/unimi/dsi/fastutil/bytes/ByteList;I)Z net/minecraft/client/gui/font/providers/UnihexProvider/copyUntil (Ljava/io/InputStream;Lit/unimi/dsi/fastutil/bytes/ByteList;I)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284323_ (ILit/unimi/dsi/fastutil/bytes/ByteList;I)I net/minecraft/client/gui/font/providers/UnihexProvider/decodeHex (ILit/unimi/dsi/fastutil/bytes/ByteList;I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284420_ (Ljava/nio/IntBuffer;III)V net/minecraft/client/gui/font/providers/UnihexProvider/unpackBitsToBytes (Ljava/nio/IntBuffer;III)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284448_ (Ljava/nio/IntBuffer;Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V net/minecraft/client/gui/font/providers/UnihexProvider/unpackBitsToBytes (Ljava/nio/IntBuffer;Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284537_ (Ljava/io/InputStream;Lnet/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput;)V net/minecraft/client/gui/font/providers/UnihexProvider/readFromStream (Ljava/io/InputStream;Lnet/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284556_ (IB)I net/minecraft/client/gui/font/providers/UnihexProvider/decodeHex (IB)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/providers/UnihexProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/ ([B)V net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/ ([B)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/f_283836_ ()[B net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/contents ()[B +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/m_284446_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/read (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ ()V net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285801_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$static$0 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285832_ (Ljava/io/InputStream;)Lnet/minecraft/client/gui/font/providers/UnihexProvider; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/loadData (Ljava/io/InputStream;)Lnet/minecraft/client/gui/font/providers/UnihexProvider; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285853_ (Lnet/minecraft/client/gui/font/CodepointMap;ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$7 (Lnet/minecraft/client/gui/font/CodepointMap;ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285863_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285894_ (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$3 (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285914_ (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$6 (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285918_ (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$5 (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285976_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_286098_ (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$4 (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_286103_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Ljava/util/List; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$static$1 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Ljava/util/List; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ ()V net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ (II)V net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ (II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283768_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/left ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283776_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/right ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284152_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/left (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284209_ (II)I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/pack (II)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284253_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284305_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/right (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284373_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/pack ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283848_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/right ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283857_ ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/contents ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283887_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/left ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_284480_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/width ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_5619_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/getBoldOffset ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_5645_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/getShadowOffset ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_7403_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/getAdvance ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph;)V net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213958_ (II)V net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/upload (II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213961_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/getPixelHeight ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213962_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/getPixelWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213963_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/getOversample ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213965_ ()Z net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/isColored ()Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/ ([II)V net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/ ([II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283738_ ()[I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/contents ()[I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284350_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/read24 (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284358_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/read32 (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284261_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/calculateWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284440_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/mask ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ ()V net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ (IILnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions;)V net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ (IILnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283797_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/from ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283851_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/to ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283891_ ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/dimensions ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/m_284139_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/m_284184_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/lambda$static$2 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/m_284308_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/lambda$static$1 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput/m_284281_ (ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput/accept (ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/ ([S)V net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/ ([S)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/f_283874_ ()[S net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/contents ()[S +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/m_284334_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/read (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/layouts/AbstractLayout/ (IIII)V net/minecraft/client/gui/layouts/AbstractLayout/ (IIII)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_252754_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getX ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_252865_ (I)V net/minecraft/client/gui/layouts/AbstractLayout/setX (I)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_252907_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getY ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_253211_ (I)V net/minecraft/client/gui/layouts/AbstractLayout/setY (I)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_264178_ (ILnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/AbstractLayout/lambda$setX$0 (ILnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_264378_ (ILnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/AbstractLayout/lambda$setY$1 (ILnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_5711_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getWidth ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_93694_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getHeight ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264032_ (II)V net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/setX (II)V +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264477_ ()I net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/getWidth ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264572_ (II)V net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/setY (II)V +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264608_ ()I net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/getHeight ()I +MD: net/minecraft/client/gui/layouts/FrameLayout/ (IIII)V net/minecraft/client/gui/layouts/FrameLayout/ (IIII)V +MD: net/minecraft/client/gui/layouts/FrameLayout/ (II)V net/minecraft/client/gui/layouts/FrameLayout/ (II)V +MD: net/minecraft/client/gui/layouts/FrameLayout/ ()V net/minecraft/client/gui/layouts/FrameLayout/ ()V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264036_ ()V net/minecraft/client/gui/layouts/FrameLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264088_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/FrameLayout/defaultChildLayoutSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/FrameLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264122_ (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/FrameLayout$ChildContainer;)V net/minecraft/client/gui/layouts/FrameLayout/lambda$visitChildren$0 (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/FrameLayout$ChildContainer;)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264159_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)V net/minecraft/client/gui/layouts/FrameLayout/centerInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264232_ (II)Lnet/minecraft/client/gui/layouts/FrameLayout; net/minecraft/client/gui/layouts/FrameLayout/setMinDimensions (II)Lnet/minecraft/client/gui/layouts/FrameLayout; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264240_ (I)Lnet/minecraft/client/gui/layouts/FrameLayout; net/minecraft/client/gui/layouts/FrameLayout/setMinHeight (I)Lnet/minecraft/client/gui/layouts/FrameLayout; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264274_ (IIILjava/util/function/Consumer;F)V net/minecraft/client/gui/layouts/FrameLayout/alignInDimension (IIILjava/util/function/Consumer;F)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264364_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/FrameLayout/newChildLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264444_ (I)Lnet/minecraft/client/gui/layouts/FrameLayout; net/minecraft/client/gui/layouts/FrameLayout/setMinWidth (I)Lnet/minecraft/client/gui/layouts/FrameLayout; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264460_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIIFF)V net/minecraft/client/gui/layouts/FrameLayout/alignInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIIFF)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264557_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/FrameLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264564_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/FrameLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_267781_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/layouts/FrameLayout/centerInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_274605_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;FF)V net/minecraft/client/gui/layouts/FrameLayout/alignInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;FF)V +MD: net/minecraft/client/gui/layouts/FrameLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/FrameLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/GridLayout/ (II)V net/minecraft/client/gui/layouts/GridLayout/ (II)V +MD: net/minecraft/client/gui/layouts/GridLayout/ ()V net/minecraft/client/gui/layouts/GridLayout/ ()V +MD: net/minecraft/client/gui/layouts/GridLayout/m_264036_ ()V net/minecraft/client/gui/layouts/GridLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/GridLayout/m_264075_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;IILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/GridLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/GridLayout/m_264167_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264188_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264211_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout/defaultCellSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264379_ (Lnet/minecraft/client/gui/layouts/LayoutElement;II)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;II)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264606_ (I)Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper; net/minecraft/client/gui/layouts/GridLayout/createRowHelper (I)Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264626_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout/newCellSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout/m_267612_ (I)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout/spacing (I)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/GridLayout/m_267749_ (I)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout/columnSpacing (I)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/GridLayout/m_267750_ (I)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout/rowSpacing (I)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/m_264085_ ()I net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/getLastOccupiedColumn ()I +MD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/m_264275_ ()I net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/getLastOccupiedRow ()I +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/ (Lnet/minecraft/client/gui/layouts/GridLayout;I)V net/minecraft/client/gui/layouts/GridLayout$RowHelper/ (Lnet/minecraft/client/gui/layouts/GridLayout;I)V +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264108_ (Lnet/minecraft/client/gui/layouts/LayoutElement;I)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;I)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264139_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264206_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264276_ (Lnet/minecraft/client/gui/layouts/LayoutElement;ILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;ILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264502_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout$RowHelper/defaultCellSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264551_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout$RowHelper/newCellSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_267613_ ()Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout$RowHelper/getGrid ()Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;II)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;II)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_252754_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getX ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_252865_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setX (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_252907_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getY ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_253211_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setY (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_264036_ ()V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_268999_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToContents (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269040_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getFooterHeight ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269068_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/newHeaderLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269281_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToFooter (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269340_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToContents (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269342_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToHeader (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269355_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getHeaderHeight ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269376_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setHeaderHeight (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269403_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/newContentLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269413_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setFooterHeight (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269450_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToFooter (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269471_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToHeader (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269493_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/newFooterLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_5711_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getWidth ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_93694_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getHeight ()I +MD: net/minecraft/client/gui/layouts/Layout/m_264036_ ()V net/minecraft/client/gui/layouts/Layout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/Layout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/Layout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/Layout/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/Layout/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/Layout/m_269147_ (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/Layout/lambda$visitWidgets$0 (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/Layout/m_269338_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/Layout/lambda$arrangeElements$1 (Lnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_252754_ ()I net/minecraft/client/gui/layouts/LayoutElement/getX ()I +MD: net/minecraft/client/gui/layouts/LayoutElement/m_252865_ (I)V net/minecraft/client/gui/layouts/LayoutElement/setX (I)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_252907_ ()I net/minecraft/client/gui/layouts/LayoutElement/getY ()I +MD: net/minecraft/client/gui/layouts/LayoutElement/m_253211_ (I)V net/minecraft/client/gui/layouts/LayoutElement/setY (I)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/LayoutElement/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_264152_ (II)V net/minecraft/client/gui/layouts/LayoutElement/setPosition (II)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/layouts/LayoutElement/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/layouts/LayoutElement/m_5711_ ()I net/minecraft/client/gui/layouts/LayoutElement/getWidth ()I +MD: net/minecraft/client/gui/layouts/LayoutElement/m_93694_ ()I net/minecraft/client/gui/layouts/LayoutElement/getHeight ()I +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264040_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/copy ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264070_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVerticallyTop ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264129_ (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/padding (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264154_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingBottom (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264174_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/padding (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264184_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingVertical (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264214_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/defaults ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264215_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingHorizontal (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264221_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVertically (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264311_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingTop (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264356_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontallyCenter ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264398_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingRight (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264400_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingLeft (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264414_ (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/padding (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264426_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings/getExposed ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264443_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontallyRight ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264463_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontallyLeft ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264498_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontally (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264510_ (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/align (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264524_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVerticallyBottom ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264623_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVerticallyMiddle ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ (Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl;)V net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ (Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl;)V +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ ()V net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ ()V +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264040_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/copy ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264040_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/copy ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264129_ (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264129_ (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264154_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingBottom (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264154_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingBottom (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264174_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264174_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264184_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingVertical (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264184_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingVertical (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264215_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingHorizontal (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264215_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingHorizontal (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264221_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignVertically (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264221_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignVertically (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264311_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingTop (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264311_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingTop (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264398_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingRight (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264398_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingRight (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264400_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingLeft (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264400_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingLeft (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264414_ (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264414_ (II)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (II)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264426_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/getExposed ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264498_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignHorizontally (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264498_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignHorizontally (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264510_ (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/align (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264510_ (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/align (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LinearLayout/ (IILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V net/minecraft/client/gui/layouts/LinearLayout/ (IILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/ (IIIILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V net/minecraft/client/gui/layouts/LinearLayout/ (IIIILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264036_ ()V net/minecraft/client/gui/layouts/LinearLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/LinearLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264223_ (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)V net/minecraft/client/gui/layouts/LinearLayout/lambda$visitChildren$0 (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264286_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LinearLayout/defaultChildLayoutSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264406_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/LinearLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264453_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LinearLayout/newChildLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264512_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/LinearLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/LinearLayout$1/ ()V net/minecraft/client/gui/layouts/LinearLayout$1/ ()V +MD: net/minecraft/client/gui/layouts/LinearLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/LinearLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/ ()V net/minecraft/client/gui/layouts/LinearLayout$Orientation/ ()V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/ (Ljava/lang/String;I)V net/minecraft/client/gui/layouts/LinearLayout$Orientation/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264056_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getPrimaryLength (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264117_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getSecondaryPosition (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264137_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getSecondaryLength (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264173_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getPrimaryLength (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264407_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getPrimaryPosition (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264503_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getSecondaryLength (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264587_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;I)V net/minecraft/client/gui/layouts/LinearLayout$Orientation/setPrimaryPosition (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;I)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264596_ ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; net/minecraft/client/gui/layouts/LinearLayout$Orientation/$values ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264630_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;II)V net/minecraft/client/gui/layouts/LinearLayout$Orientation/setSecondaryPosition (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;II)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; net/minecraft/client/gui/layouts/LinearLayout$Orientation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/values ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; net/minecraft/client/gui/layouts/LinearLayout$Orientation/values ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +MD: net/minecraft/client/gui/layouts/SpacerElement/ (IIII)V net/minecraft/client/gui/layouts/SpacerElement/ (IIII)V +MD: net/minecraft/client/gui/layouts/SpacerElement/ (II)V net/minecraft/client/gui/layouts/SpacerElement/ (II)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_252754_ ()I net/minecraft/client/gui/layouts/SpacerElement/getX ()I +MD: net/minecraft/client/gui/layouts/SpacerElement/m_252865_ (I)V net/minecraft/client/gui/layouts/SpacerElement/setX (I)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_252907_ ()I net/minecraft/client/gui/layouts/SpacerElement/getY ()I +MD: net/minecraft/client/gui/layouts/SpacerElement/m_253211_ (I)V net/minecraft/client/gui/layouts/SpacerElement/setY (I)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/SpacerElement/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_264252_ (I)Lnet/minecraft/client/gui/layouts/SpacerElement; net/minecraft/client/gui/layouts/SpacerElement/height (I)Lnet/minecraft/client/gui/layouts/SpacerElement; +MD: net/minecraft/client/gui/layouts/SpacerElement/m_264527_ (I)Lnet/minecraft/client/gui/layouts/SpacerElement; net/minecraft/client/gui/layouts/SpacerElement/width (I)Lnet/minecraft/client/gui/layouts/SpacerElement; +MD: net/minecraft/client/gui/layouts/SpacerElement/m_5711_ ()I net/minecraft/client/gui/layouts/SpacerElement/getWidth ()I +MD: net/minecraft/client/gui/layouts/SpacerElement/m_93694_ ()I net/minecraft/client/gui/layouts/SpacerElement/getHeight ()I +MD: net/minecraft/client/gui/narration/NarratableEntry/m_142518_ ()Z net/minecraft/client/gui/narration/NarratableEntry/isActive ()Z +MD: net/minecraft/client/gui/narration/NarratableEntry/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ ()V net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ ()V +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ (Ljava/lang/String;I)V net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/m_169123_ ()Z net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/isTerminal ()Z +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/m_169124_ ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/$values ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/values ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/values ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratedElementType/ ()V net/minecraft/client/gui/narration/NarratedElementType/ ()V +MD: net/minecraft/client/gui/narration/NarratedElementType/ (Ljava/lang/String;I)V net/minecraft/client/gui/narration/NarratedElementType/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/narration/NarratedElementType/m_169137_ ()[Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/NarratedElementType/$values ()[Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/NarratedElementType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/NarratedElementType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/NarratedElementType/values ()[Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/NarratedElementType/values ()[Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_142047_ ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; net/minecraft/client/gui/narration/NarrationElementOutput/nest ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_142549_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_169143_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Ljava/lang/String;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Ljava/lang/String;)V +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_169146_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_169149_ (Lnet/minecraft/client/gui/narration/NarratedElementType;[Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;[Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/narration/NarrationSupplier/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/narration/NarrationSupplier/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/ ()V net/minecraft/client/gui/narration/NarrationThunk/ ()V +MD: net/minecraft/client/gui/narration/NarrationThunk/ (Ljava/lang/Object;Ljava/util/function/BiConsumer;)V net/minecraft/client/gui/narration/NarrationThunk/ (Ljava/lang/Object;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/narration/NarrationThunk/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/narration/NarrationThunk/hashCode ()I net/minecraft/client/gui/narration/NarrationThunk/hashCode ()I +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169160_ (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarrationThunk; net/minecraft/client/gui/narration/NarrationThunk/from (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarrationThunk; +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169162_ (Ljava/util/List;)Lnet/minecraft/client/gui/narration/NarrationThunk; net/minecraft/client/gui/narration/NarrationThunk/from (Ljava/util/List;)Lnet/minecraft/client/gui/narration/NarrationThunk; +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169164_ (Ljava/util/List;Ljava/util/function/Consumer;Ljava/util/List;)V net/minecraft/client/gui/narration/NarrationThunk/lambda$from$2 (Ljava/util/List;Ljava/util/function/Consumer;Ljava/util/List;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169168_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/narration/NarrationThunk/getText (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169170_ (Ljava/util/function/Consumer;Lnet/minecraft/util/Unit;)V net/minecraft/client/gui/narration/NarrationThunk/lambda$static$0 (Ljava/util/function/Consumer;Lnet/minecraft/util/Unit;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169173_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/narration/NarrationThunk/lambda$from$1 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169176_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/narration/NarrationThunk; net/minecraft/client/gui/narration/NarrationThunk/from (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/narration/NarrationThunk; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/ ()V net/minecraft/client/gui/narration/ScreenNarrationCollector/ ()V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169184_ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Ljava/lang/Integer; net/minecraft/client/gui/narration/ScreenNarrationCollector/lambda$new$1 (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169186_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/narration/ScreenNarrationCollector/update (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169188_ (Z)Ljava/lang/String; net/minecraft/client/gui/narration/ScreenNarrationCollector/collectNarrationText (Z)Ljava/lang/String; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169190_ (ZLjava/util/function/Consumer;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry;)V net/minecraft/client/gui/narration/ScreenNarrationCollector/lambda$collectNarrationText$2 (ZLjava/util/function/Consumer;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169195_ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/ScreenNarrationCollector/lambda$new$0 (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;Ljava/lang/StringBuilder;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$1/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;Ljava/lang/StringBuilder;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/Object;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/Object;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/String;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/String;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/ (Lnet/minecraft/client/gui/narration/NarratedElementType;I)V net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/ (Lnet/minecraft/client/gui/narration/NarratedElementType;I)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/ ()V net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/ ()V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/m_169216_ (ILnet/minecraft/client/gui/narration/NarrationThunk;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/update (ILnet/minecraft/client/gui/narration/NarrationThunk;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;I)V net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;I)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/m_142047_ ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/nest ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/m_142549_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/m_169228_ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/lambda$add$0 (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; +MD: net/minecraft/client/gui/navigation/CommonInputs/ ()V net/minecraft/client/gui/navigation/CommonInputs/ ()V +MD: net/minecraft/client/gui/navigation/CommonInputs/m_278691_ (I)Z net/minecraft/client/gui/navigation/CommonInputs/selected (I)Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)V net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)V +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/f_263812_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/direction ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/hashCode ()I net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/hashCode ()I +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/ ()V net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/ ()V +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/ (Z)V net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/ (Z)V +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/f_263782_ ()Z net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/forward ()Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/hashCode ()I net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/hashCode ()I +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/ScreenAxis/ ()V net/minecraft/client/gui/navigation/ScreenAxis/ ()V +MD: net/minecraft/client/gui/navigation/ScreenAxis/ (Ljava/lang/String;I)V net/minecraft/client/gui/navigation/ScreenAxis/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264217_ (Z)Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenAxis/getDirection (Z)Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264292_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenAxis/getPositive ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264385_ ()Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/orthogonal ()Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264488_ ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/$values ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264569_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenAxis/getNegative ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenAxis/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis/values ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/values ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis$1/ ()V net/minecraft/client/gui/navigation/ScreenAxis$1/ ()V +MD: net/minecraft/client/gui/navigation/ScreenDirection/ ()V net/minecraft/client/gui/navigation/ScreenDirection/ ()V +MD: net/minecraft/client/gui/navigation/ScreenDirection/ (Ljava/lang/String;I)V net/minecraft/client/gui/navigation/ScreenDirection/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264089_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/getOpposite ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264093_ ()Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenDirection/getAxis ()Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264119_ ()Z net/minecraft/client/gui/navigation/ScreenDirection/isPositive ()Z +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264227_ ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/$values ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264228_ (II)I net/minecraft/client/gui/navigation/ScreenDirection/lambda$new$0 (II)I +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264394_ ()Lit/unimi/dsi/fastutil/ints/IntComparator; net/minecraft/client/gui/navigation/ScreenDirection/coordinateValueComparator ()Lit/unimi/dsi/fastutil/ints/IntComparator; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264526_ (II)Z net/minecraft/client/gui/navigation/ScreenDirection/isAfter (II)Z +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264627_ (II)Z net/minecraft/client/gui/navigation/ScreenDirection/isBefore (II)Z +MD: net/minecraft/client/gui/navigation/ScreenDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection/values ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/values ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection$1/ ()V net/minecraft/client/gui/navigation/ScreenDirection$1/ ()V +MD: net/minecraft/client/gui/navigation/ScreenPosition/ (II)V net/minecraft/client/gui/navigation/ScreenPosition/ (II)V +MD: net/minecraft/client/gui/navigation/ScreenPosition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/ScreenPosition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/ScreenPosition/f_263694_ ()I net/minecraft/client/gui/navigation/ScreenPosition/y ()I +MD: net/minecraft/client/gui/navigation/ScreenPosition/f_263719_ ()I net/minecraft/client/gui/navigation/ScreenPosition/x ()I +MD: net/minecraft/client/gui/navigation/ScreenPosition/hashCode ()I net/minecraft/client/gui/navigation/ScreenPosition/hashCode ()I +MD: net/minecraft/client/gui/navigation/ScreenPosition/m_264196_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I net/minecraft/client/gui/navigation/ScreenPosition/getCoordinate (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I +MD: net/minecraft/client/gui/navigation/ScreenPosition/m_264208_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;II)Lnet/minecraft/client/gui/navigation/ScreenPosition; net/minecraft/client/gui/navigation/ScreenPosition/of (Lnet/minecraft/client/gui/navigation/ScreenAxis;II)Lnet/minecraft/client/gui/navigation/ScreenPosition; +MD: net/minecraft/client/gui/navigation/ScreenPosition/m_264438_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenPosition; net/minecraft/client/gui/navigation/ScreenPosition/step (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenPosition; +MD: net/minecraft/client/gui/navigation/ScreenPosition/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/ScreenPosition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/ScreenPosition$1/ ()V net/minecraft/client/gui/navigation/ScreenPosition$1/ ()V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/ ()V net/minecraft/client/gui/navigation/ScreenRectangle/ ()V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/ (Lnet/minecraft/client/gui/navigation/ScreenPosition;II)V net/minecraft/client/gui/navigation/ScreenRectangle/ (Lnet/minecraft/client/gui/navigation/ScreenPosition;II)V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/ (IIII)V net/minecraft/client/gui/navigation/ScreenRectangle/ (IIII)V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/ScreenRectangle/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263770_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/width ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263800_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/height ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263846_ ()Lnet/minecraft/client/gui/navigation/ScreenPosition; net/minecraft/client/gui/navigation/ScreenRectangle/position ()Lnet/minecraft/client/gui/navigation/ScreenPosition; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/hashCode ()I net/minecraft/client/gui/navigation/ScreenRectangle/hashCode ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264037_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I net/minecraft/client/gui/navigation/ScreenRectangle/getCenterInAxis (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264049_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/step (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264095_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)I net/minecraft/client/gui/navigation/ScreenRectangle/getBoundInDirection (Lnet/minecraft/client/gui/navigation/ScreenDirection;)I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264109_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;IIII)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/of (Lnet/minecraft/client/gui/navigation/ScreenAxis;IIII)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264295_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Z net/minecraft/client/gui/navigation/ScreenRectangle/overlaps (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Z +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264323_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I net/minecraft/client/gui/navigation/ScreenRectangle/getLength (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264427_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/empty ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264525_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/getBorder (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264632_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenAxis;)Z net/minecraft/client/gui/navigation/ScreenRectangle/overlapsInAxis (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenAxis;)Z +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274349_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/bottom ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274445_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/right ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274449_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/top ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274563_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/left ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_275842_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/intersection (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/ScreenRectangle/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/ScreenRectangle$1/ ()V net/minecraft/client/gui/navigation/ScreenRectangle$1/ ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ (Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ (Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_264189_ ()I net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/initTitleYPos ()I +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_264570_ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/handleInitialNarrationDelay ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_267504_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_272081_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/closeAndSetScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_279746_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_279747_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_7379_ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/onClose ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_7856_ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/init ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_232690_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/AccessibilityOptionsScreen/options (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_279748_ (Z)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/lambda$createFooter$0 (Z)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_279749_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/lambda$createFooter$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_279750_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/lambda$createFooter$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_7853_ ()V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/createFooter ()V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/AlertScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/AlertScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/AlertScreen/m_6913_ ()Z net/minecraft/client/gui/screens/AlertScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/AlertScreen/m_7856_ ()V net/minecraft/client/gui/screens/AlertScreen/init ()V +MD: net/minecraft/client/gui/screens/AlertScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/AlertScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/AlertScreen/m_95532_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AlertScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/BackupConfirmScreen$Listener;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/BackupConfirmScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/BackupConfirmScreen$Listener;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_279751_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/BackupConfirmScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_6913_ ()Z net/minecraft/client/gui/screens/BackupConfirmScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_7856_ ()V net/minecraft/client/gui/screens/BackupConfirmScreen/init ()V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/BackupConfirmScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/BackupConfirmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_95561_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/BackupConfirmScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_95563_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/BackupConfirmScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen$Listener/m_95565_ (ZZ)V net/minecraft/client/gui/screens/BackupConfirmScreen$Listener/proceed (ZZ)V +MD: net/minecraft/client/gui/screens/BanNoticeScreen/ ()V net/minecraft/client/gui/screens/BanNoticeScreen/ ()V +MD: net/minecraft/client/gui/screens/BanNoticeScreen/ ()V net/minecraft/client/gui/screens/BanNoticeScreen/ ()V +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239137_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBannedScreenText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239318_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBanStatusText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239500_ (Lcom/mojang/authlib/minecraft/BanDetails;)Z net/minecraft/client/gui/screens/BanNoticeScreen/isTemporaryBan (Lcom/mojang/authlib/minecraft/BanDetails;)Z +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239533_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBanReasonText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239879_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBanDurationText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239952_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBannedTitle (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239967_ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/client/gui/screens/ConfirmLinkScreen; net/minecraft/client/gui/screens/BanNoticeScreen/create (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/client/gui/screens/ConfirmLinkScreen; +MD: net/minecraft/client/gui/screens/ChatOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/ChatOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/ChatScreen/ ()V net/minecraft/client/gui/screens/ChatScreen/ ()V +MD: net/minecraft/client/gui/screens/ChatScreen/ (Ljava/lang/String;)V net/minecraft/client/gui/screens/ChatScreen/ (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_142228_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/ChatScreen/updateNarrationState (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_232701_ (DD)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/ChatScreen/getComponentStyleAt (DD)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/ChatScreen/m_232706_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/screens/ChatScreen/normalizeChatMessage (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/ChatScreen/m_241797_ (Ljava/lang/String;Z)Z net/minecraft/client/gui/screens/ChatScreen/handleChatInput (Ljava/lang/String;Z)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/ChatScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/ChatScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/ChatScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_6697_ (Ljava/lang/String;Z)V net/minecraft/client/gui/screens/ChatScreen/insertText (Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_7043_ ()Z net/minecraft/client/gui/screens/ChatScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_7856_ ()V net/minecraft/client/gui/screens/ChatScreen/init ()V +MD: net/minecraft/client/gui/screens/ChatScreen/m_7861_ ()V net/minecraft/client/gui/screens/ChatScreen/removed ()V +MD: net/minecraft/client/gui/screens/ChatScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/ChatScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_86600_ ()V net/minecraft/client/gui/screens/ChatScreen/tick ()V +MD: net/minecraft/client/gui/screens/ChatScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ChatScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_95588_ (I)V net/minecraft/client/gui/screens/ChatScreen/moveInHistory (I)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_95610_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/ChatScreen/onEdited (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_95612_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/ChatScreen/setChatLine (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ChatScreen$1/ (Lnet/minecraft/client/gui/screens/ChatScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ChatScreen$1/ (Lnet/minecraft/client/gui/screens/ChatScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ChatScreen$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/ChatScreen$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ ()V net/minecraft/client/gui/screens/ConfirmLinkScreen/ ()V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_141972_ (I)V net/minecraft/client/gui/screens/ConfirmLinkScreen/addButtons (I)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_169244_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$addButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_169246_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$addButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_169248_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$addButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_239179_ (ZLjava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmMessage (ZLjava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_240013_ (Z)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmMessage (Z)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_273977_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;ZLnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$confirmLink$4 (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;ZLnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_273978_ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$confirmLinkNow$3 (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_274480_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmLinkNow (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_274609_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)Lnet/minecraft/client/gui/components/Button$OnPress; net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmLink (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)Lnet/minecraft/client/gui/components/Button$OnPress; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ConfirmLinkScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_95646_ ()V net/minecraft/client/gui/screens/ConfirmLinkScreen/copyToClipboard ()V +MD: net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_141972_ (I)V net/minecraft/client/gui/screens/ConfirmScreen/addButtons (I)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/ConfirmScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_169253_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmScreen/addExitButton (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_169256_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmScreen/lambda$addButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_169258_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmScreen/lambda$addButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_239018_ ()I net/minecraft/client/gui/screens/ConfirmScreen/messageTop ()I +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_239348_ ()I net/minecraft/client/gui/screens/ConfirmScreen/messageHeight ()I +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_239963_ ()I net/minecraft/client/gui/screens/ConfirmScreen/titleTop ()I +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ConfirmScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_7856_ ()V net/minecraft/client/gui/screens/ConfirmScreen/init ()V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/ConfirmScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_86600_ ()V net/minecraft/client/gui/screens/ConfirmScreen/tick ()V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ConfirmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_95663_ (I)V net/minecraft/client/gui/screens/ConfirmScreen/setDelay (I)V +MD: net/minecraft/client/gui/screens/ConnectScreen/ ()V net/minecraft/client/gui/screens/ConnectScreen/ ()V +MD: net/minecraft/client/gui/screens/ConnectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConnectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_247688_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/ConnectScreen/connect (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_278792_ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;Z)V net/minecraft/client/gui/screens/ConnectScreen/startConnecting (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;Z)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_290022_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConnectScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ConnectScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ConnectScreen/m_7856_ ()V net/minecraft/client/gui/screens/ConnectScreen/init ()V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_86600_ ()V net/minecraft/client/gui/screens/ConnectScreen/tick ()V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ConnectScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_95717_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConnectScreen/updateStatus (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/ (Lnet/minecraft/client/gui/screens/ConnectScreen;Ljava/lang/String;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/ConnectScreen$1/ (Lnet/minecraft/client/gui/screens/ConnectScreen;Ljava/lang/String;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/m_278521_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/screens/ConnectScreen$1/lambda$run$1 (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/m_278522_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/ConnectScreen$1/lambda$run$0 (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/run ()V net/minecraft/client/gui/screens/ConnectScreen$1/run ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_232737_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Z net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Z +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_257071_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$new$0 ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_279753_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_279754_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_95775_ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/updateButtonValidity ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_203136_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/lambda$new$2 (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_203141_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Ljava/lang/String; net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/lambda$new$1 (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_205388_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry; net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/lambda$new$0 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_6987_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/setSelected (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Ljava/util/function/Consumer;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Ljava/util/function/Consumer;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_279755_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_279756_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_279757_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95825_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/setConfig (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95844_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95846_ ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/client/gui/screens/CreateFlatWorldScreen/settings ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95847_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen/updateButtonValidity ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95848_ ()Z net/minecraft/client/gui/screens/CreateFlatWorldScreen/hasValidSelection ()Z +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_5756_ ()I net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_6987_ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/setSelected (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_95860_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/resetRows ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_169293_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/getDisplayItem (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_280140_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/blitSlotBg (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_280326_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/blitSlot (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_267719_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_276184_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/openCreditsScreen ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_276208_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_276223_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_279758_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lambda$openCreditsScreen$2 ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_7379_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_7856_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/init ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/ (Ljava/lang/Runnable;)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/ (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_279759_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_6913_ ()Z net/minecraft/client/gui/screens/DatapackLoadFailureScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_7856_ ()V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/init ()V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_95904_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DeathScreen/ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/DeathScreen/ (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_262825_ ()V net/minecraft/client/gui/screens/DeathScreen/handleExitToTitleScreen ()V +MD: net/minecraft/client/gui/screens/DeathScreen/m_272014_ (Z)V net/minecraft/client/gui/screens/DeathScreen/setButtonsActive (Z)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_279760_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DeathScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_279761_ (Z)V net/minecraft/client/gui/screens/DeathScreen/lambda$handleExitToTitleScreen$2 (Z)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_279762_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DeathScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/DeathScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/DeathScreen/m_6913_ ()Z net/minecraft/client/gui/screens/DeathScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/DeathScreen/m_7043_ ()Z net/minecraft/client/gui/screens/DeathScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/DeathScreen/m_7856_ ()V net/minecraft/client/gui/screens/DeathScreen/init ()V +MD: net/minecraft/client/gui/screens/DeathScreen/m_86600_ ()V net/minecraft/client/gui/screens/DeathScreen/tick ()V +MD: net/minecraft/client/gui/screens/DeathScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DeathScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_95917_ (I)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/DeathScreen/getClickedComponentStyleAt (I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/DeathScreen/m_95934_ ()V net/minecraft/client/gui/screens/DeathScreen/exitToTitleScreen ()V +MD: net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/ ()V net/minecraft/client/gui/screens/DemoIntroScreen/ ()V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/ ()V net/minecraft/client/gui/screens/DemoIntroScreen/ ()V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_279763_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DemoIntroScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_279764_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DemoIntroScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_280273_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/DemoIntroScreen/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_7856_ ()V net/minecraft/client/gui/screens/DemoIntroScreen/init ()V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DemoIntroScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/ ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/DirectJoinServerScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7379_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/onClose ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7856_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/init ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7861_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/removed ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/DirectJoinServerScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_86600_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/tick ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DirectJoinServerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95976_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95980_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95982_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95986_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/onSelect ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95987_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/updateSelectButtonStatus ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/ ()V net/minecraft/client/gui/screens/DisconnectedScreen/ ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/DisconnectedScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_267719_ ()V net/minecraft/client/gui/screens/DisconnectedScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_279765_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DisconnectedScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_279766_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DisconnectedScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_6913_ ()Z net/minecraft/client/gui/screens/DisconnectedScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_7856_ ()V net/minecraft/client/gui/screens/DisconnectedScreen/init ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DisconnectedScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/EditServerScreen/ ()V net/minecraft/client/gui/screens/EditServerScreen/ ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/EditServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169296_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169298_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169301_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$1 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169303_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169305_ ()V net/minecraft/client/gui/screens/EditServerScreen/updateAddButtonStatus ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/EditServerScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_7379_ ()V net/minecraft/client/gui/screens/EditServerScreen/onClose ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_7856_ ()V net/minecraft/client/gui/screens/EditServerScreen/init ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_86600_ ()V net/minecraft/client/gui/screens/EditServerScreen/tick ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/EditServerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_96029_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_96045_ ()V net/minecraft/client/gui/screens/EditServerScreen/onAdd ()V +MD: net/minecraft/client/gui/screens/ErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ErrorScreen/m_279767_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ErrorScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ErrorScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ErrorScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ErrorScreen/m_7856_ ()V net/minecraft/client/gui/screens/ErrorScreen/init ()V +MD: net/minecraft/client/gui/screens/ErrorScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ErrorScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/FaviconTexture/ ()V net/minecraft/client/gui/screens/FaviconTexture/ ()V +MD: net/minecraft/client/gui/screens/FaviconTexture/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/FaviconTexture/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/FaviconTexture/close ()V net/minecraft/client/gui/screens/FaviconTexture/close ()V +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289187_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; net/minecraft/client/gui/screens/FaviconTexture/forServer (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289196_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/FaviconTexture/textureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289201_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/gui/screens/FaviconTexture/upload (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289210_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; net/minecraft/client/gui/screens/FaviconTexture/forWorld (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289218_ ()V net/minecraft/client/gui/screens/FaviconTexture/clear ()V +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289229_ ()V net/minecraft/client/gui/screens/FaviconTexture/checkOpen ()V +MD: net/minecraft/client/gui/screens/GenericDirtMessageScreen/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/GenericDirtMessageScreen/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/GenericDirtMessageScreen/m_6913_ ()Z net/minecraft/client/gui/screens/GenericDirtMessageScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/GenericDirtMessageScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/GenericDirtMessageScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;I)V net/minecraft/client/gui/screens/GenericWaitingScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;I)V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/GenericWaitingScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_239907_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/GenericWaitingScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_240290_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; net/minecraft/client/gui/screens/GenericWaitingScreen/createCompleted (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_240309_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; net/minecraft/client/gui/screens/GenericWaitingScreen/createWaiting (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_6913_ ()Z net/minecraft/client/gui/screens/GenericWaitingScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_7379_ ()V net/minecraft/client/gui/screens/GenericWaitingScreen/onClose ()V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_7856_ ()V net/minecraft/client/gui/screens/GenericWaitingScreen/init ()V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_86600_ ()V net/minecraft/client/gui/screens/GenericWaitingScreen/tick ()V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/GenericWaitingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/InBedChatScreen/ ()V net/minecraft/client/gui/screens/InBedChatScreen/ ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_193839_ ()V net/minecraft/client/gui/screens/InBedChatScreen/onPlayerWokeUp ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/InBedChatScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_7379_ ()V net/minecraft/client/gui/screens/InBedChatScreen/onClose ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_7856_ ()V net/minecraft/client/gui/screens/InBedChatScreen/init ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/InBedChatScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/InBedChatScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_96073_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/InBedChatScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_96077_ ()V net/minecraft/client/gui/screens/InBedChatScreen/sendWakeUp ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/ ()V net/minecraft/client/gui/screens/LanguageSelectScreen/ ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/client/resources/language/LanguageManager;)V net/minecraft/client/gui/screens/LanguageSelectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/client/resources/language/LanguageManager;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_287798_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/LanguageSelectScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_288190_ ()V net/minecraft/client/gui/screens/LanguageSelectScreen/onDone ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_7856_ ()V net/minecraft/client/gui/screens/LanguageSelectScreen/init ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/LanguageSelectScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/LanguageSelectScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_169306_ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;)I net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/access$000 (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;)I +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_264519_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/lambda$new$0 (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_96120_ ()V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/select ()V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/ ()V net/minecraft/client/gui/screens/LevelLoadingScreen/ ()V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/ (Lnet/minecraft/server/level/progress/StoringChunkProgressListener;)V net/minecraft/client/gui/screens/LevelLoadingScreen/ (Lnet/minecraft/server/level/progress/StoringChunkProgressListener;)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_142227_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/LevelLoadingScreen/updateNarratedWidget (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_169313_ ()Ljava/lang/String; net/minecraft/client/gui/screens/LevelLoadingScreen/getFormattedProgress ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_264396_ ()Z net/minecraft/client/gui/screens/LevelLoadingScreen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_279769_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/client/gui/screens/LevelLoadingScreen/lambda$static$1 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_285672_ (ILnet/minecraft/client/gui/GuiGraphics;IIIIILnet/minecraft/server/level/progress/StoringChunkProgressListener;III)V net/minecraft/client/gui/screens/LevelLoadingScreen/lambda$renderChunks$0 (ILnet/minecraft/client/gui/GuiGraphics;IIIIILnet/minecraft/server/level/progress/StoringChunkProgressListener;III)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_6913_ ()Z net/minecraft/client/gui/screens/LevelLoadingScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_7861_ ()V net/minecraft/client/gui/screens/LevelLoadingScreen/removed ()V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/LevelLoadingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_96149_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/server/level/progress/StoringChunkProgressListener;IIII)V net/minecraft/client/gui/screens/LevelLoadingScreen/renderChunks (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/server/level/progress/StoringChunkProgressListener;IIII)V +MD: net/minecraft/client/gui/screens/LoadingDotsText/ ()V net/minecraft/client/gui/screens/LoadingDotsText/ ()V +MD: net/minecraft/client/gui/screens/LoadingDotsText/ ()V net/minecraft/client/gui/screens/LoadingDotsText/ ()V +MD: net/minecraft/client/gui/screens/LoadingDotsText/m_232744_ (J)Ljava/lang/String; net/minecraft/client/gui/screens/LoadingDotsText/get (J)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/LoadingOverlay/ ()V net/minecraft/client/gui/screens/LoadingOverlay/ ()V +MD: net/minecraft/client/gui/screens/LoadingOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/server/packs/resources/ReloadInstance;Ljava/util/function/Consumer;Z)V net/minecraft/client/gui/screens/LoadingOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/server/packs/resources/ReloadInstance;Ljava/util/function/Consumer;Z)V +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_169324_ (II)I net/minecraft/client/gui/screens/LoadingOverlay/replaceAlpha (II)I +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_169327_ ()I net/minecraft/client/gui/screens/LoadingOverlay/lambda$static$0 ()I +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_7859_ ()Z net/minecraft/client/gui/screens/LoadingOverlay/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/LoadingOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_96182_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V net/minecraft/client/gui/screens/LoadingOverlay/drawProgressBar (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_96189_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/LoadingOverlay/registerTextures (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/ ()V net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/ ()V +MD: net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/m_6335_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/getTextureImage (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/gui/screens/MenuScreens/ ()V net/minecraft/client/gui/screens/MenuScreens/ ()V +MD: net/minecraft/client/gui/screens/MenuScreens/ ()V net/minecraft/client/gui/screens/MenuScreens/ ()V +MD: net/minecraft/client/gui/screens/MenuScreens/m_96198_ ()Z net/minecraft/client/gui/screens/MenuScreens/selfTest ()Z +MD: net/minecraft/client/gui/screens/MenuScreens/m_96199_ (Lnet/minecraft/world/inventory/MenuType;)Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor; net/minecraft/client/gui/screens/MenuScreens/getConstructor (Lnet/minecraft/world/inventory/MenuType;)Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor; +MD: net/minecraft/client/gui/screens/MenuScreens/m_96201_ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/MenuScreens/create (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/MenuScreens/m_96206_ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V net/minecraft/client/gui/screens/MenuScreens/register (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V +MD: net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/m_96209_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;I)V net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/fromPacket (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;I)V +MD: net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/m_96214_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/create (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/MouseSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_232746_ (I)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/MouseSettingsScreen/lambda$init$0 (I)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_232748_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/MouseSettingsScreen/options (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_279770_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/MouseSettingsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_7856_ ()V net/minecraft/client/gui/screens/MouseSettingsScreen/init ()V +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/MouseSettingsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;[Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/screens/OnlineOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;[Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_260895_ (Lnet/minecraft/world/Difficulty;Lnet/minecraft/network/chat/Component;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/OnlineOptionsScreen/lambda$createOnlineOptionsScreen$0 (Lnet/minecraft/world/Difficulty;Lnet/minecraft/network/chat/Component;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_260896_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)Lnet/minecraft/client/gui/screens/OnlineOptionsScreen; net/minecraft/client/gui/screens/OnlineOptionsScreen/createOnlineOptionsScreen (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)Lnet/minecraft/client/gui/screens/OnlineOptionsScreen; +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_261325_ (Lcom/mojang/datafixers/util/Unit;)V net/minecraft/client/gui/screens/OnlineOptionsScreen/lambda$createOnlineOptionsScreen$1 (Lcom/mojang/datafixers/util/Unit;)V +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_287799_ (Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/OnlineOptionsScreen/lambda$createOnlineOptionsScreen$2 (Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/OnlineOptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/ ()V net/minecraft/client/gui/screens/OptionsScreen/ ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/OptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_193852_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$createDifficultyButton$13 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260745_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$1 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260746_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$5 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260747_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$7 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260751_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$0 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260752_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$3 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260753_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$2 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260755_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$8 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260961_ (IILjava/lang/String;Lnet/minecraft/client/Minecraft;)Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/screens/OptionsScreen/createDifficultyButton (IILjava/lang/String;Lnet/minecraft/client/Minecraft;)Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260993_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/screens/OptionsScreen/openScreenButton (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_264034_ ()Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/screens/OptionsScreen/createOnlineButton ()Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_274373_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/gui/screens/OptionsScreen/applyPacks (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_276173_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$9 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279771_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$createOnlineButton$12 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279772_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$createOnlineButton$11 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279773_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$6 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279774_ (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$openScreenButton$14 (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279775_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$init$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279776_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$4 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/OptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_7861_ ()V net/minecraft/client/gui/screens/OptionsScreen/removed ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/OptionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_96260_ (Z)V net/minecraft/client/gui/screens/OptionsScreen/lockCallback (Z)V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/OptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/m_280419_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/OptionsList;IIF)V net/minecraft/client/gui/screens/OptionsSubScreen/basicListRender (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/OptionsList;IIF)V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/m_7379_ ()V net/minecraft/client/gui/screens/OptionsSubScreen/onClose ()V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/m_7861_ ()V net/minecraft/client/gui/screens/OptionsSubScreen/removed ()V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/ ()V net/minecraft/client/gui/screens/OutOfMemoryScreen/ ()V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_279777_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OutOfMemoryScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_279778_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OutOfMemoryScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_6913_ ()Z net/minecraft/client/gui/screens/OutOfMemoryScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_7856_ ()V net/minecraft/client/gui/screens/OutOfMemoryScreen/init ()V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/OutOfMemoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Overlay/ ()V net/minecraft/client/gui/screens/Overlay/ ()V +MD: net/minecraft/client/gui/screens/Overlay/m_7859_ ()Z net/minecraft/client/gui/screens/Overlay/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/PauseScreen/ ()V net/minecraft/client/gui/screens/PauseScreen/ ()V +MD: net/minecraft/client/gui/screens/PauseScreen/ (Z)V net/minecraft/client/gui/screens/PauseScreen/ (Z)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_261092_ ()V net/minecraft/client/gui/screens/PauseScreen/onDisconnect ()V +MD: net/minecraft/client/gui/screens/PauseScreen/m_262340_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$4 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_262341_ (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$openLinkButton$8 (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_262456_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/screens/PauseScreen/openScreenButton (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/screens/PauseScreen/m_262461_ (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/screens/PauseScreen/openLinkButton (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/screens/PauseScreen/m_279779_ (Ljava/lang/String;Z)V net/minecraft/client/gui/screens/PauseScreen/lambda$openLinkButton$7 (Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279780_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279781_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279782_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$2 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_279783_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$3 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_279784_ (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PauseScreen/lambda$openScreenButton$6 (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279785_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$1 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_7856_ ()V net/minecraft/client/gui/screens/PauseScreen/init ()V +MD: net/minecraft/client/gui/screens/PauseScreen/m_86600_ ()V net/minecraft/client/gui/screens/PauseScreen/tick ()V +MD: net/minecraft/client/gui/screens/PauseScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/PauseScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_96338_ ()V net/minecraft/client/gui/screens/PauseScreen/createPauseMenu ()V +MD: net/minecraft/client/gui/screens/PopupScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/gui/screens/PopupScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/gui/screens/PopupScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/PopupScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/PopupScreen/m_6913_ ()Z net/minecraft/client/gui/screens/PopupScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/PopupScreen/m_7856_ ()V net/minecraft/client/gui/screens/PopupScreen/init ()V +MD: net/minecraft/client/gui/screens/PopupScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/PopupScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/PopupScreen$ButtonOption/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/screens/PopupScreen$ButtonOption/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_205393_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/String; net/minecraft/client/gui/screens/PresetFlatWorldScreen/save (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_205403_ ()Ljava/lang/IllegalStateException; net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$save$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_254756_ (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$fromString$1 (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257073_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$fromString$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257717_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/client/gui/screens/PresetFlatWorldScreen/fromString (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257841_ (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;)Ljava/util/List; net/minecraft/client/gui/screens/PresetFlatWorldScreen/getLayersInfoFromString (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257877_ (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;I)Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo; net/minecraft/client/gui/screens/PresetFlatWorldScreen/getLayerInfoFromString (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;I)Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_279786_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$init$3 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_279787_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_96449_ (Z)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/updateButtonValidity (Z)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_257490_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/lambda$new$2 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_257800_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/lambda$new$1 (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_258055_ (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/lambda$new$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_6987_ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/setSelected (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_7933_ (III)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList;Lnet/minecraft/core/Holder;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_232759_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/lambda$new$0 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_280169_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/blitSlotBg (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_280449_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/blitSlot (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_96479_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/select ()V +MD: net/minecraft/client/gui/screens/ProgressScreen/ (Z)V net/minecraft/client/gui/screens/ProgressScreen/ (Z)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_264396_ ()Z net/minecraft/client/gui/screens/ProgressScreen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6307_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ProgressScreen/progressStage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6308_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ProgressScreen/progressStart (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6309_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ProgressScreen/progressStartNoAbort (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ProgressScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6952_ (I)V net/minecraft/client/gui/screens/ProgressScreen/progressStagePercentage (I)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_7730_ ()V net/minecraft/client/gui/screens/ProgressScreen/stop ()V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ProgressScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_202375_ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/loadingPacketsReceived ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_264396_ ()Z net/minecraft/client/gui/screens/ReceivingLevelScreen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ReceivingLevelScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_7043_ ()Z net/minecraft/client/gui/screens/ReceivingLevelScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_7379_ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/onClose ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_86600_ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/tick ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ReceivingLevelScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Screen/ ()V net/minecraft/client/gui/screens/Screen/ ()V +MD: net/minecraft/client/gui/screens/Screen/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/Screen/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/Screen/m_142227_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/Screen/updateNarratedWidget (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/Screen/m_142228_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/Screen/updateNarrationState (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/Screen/m_142416_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/Screen/addRenderableWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/Screen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/Screen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/Screen/m_169378_ (J)V net/minecraft/client/gui/screens/Screen/suppressNarration (J)V +MD: net/minecraft/client/gui/screens/Screen/m_169380_ (JZ)V net/minecraft/client/gui/screens/Screen/scheduleNarration (JZ)V +MD: net/minecraft/client/gui/screens/Screen/m_169394_ (Lnet/minecraft/client/gui/components/Renderable;)Lnet/minecraft/client/gui/components/Renderable; net/minecraft/client/gui/screens/Screen/addRenderableOnly (Lnet/minecraft/client/gui/components/Renderable;)Lnet/minecraft/client/gui/components/Renderable; +MD: net/minecraft/client/gui/screens/Screen/m_169400_ (Ljava/util/List;Lnet/minecraft/client/gui/narration/NarratableEntry;)Lnet/minecraft/client/gui/screens/Screen$NarratableSearchResult; net/minecraft/client/gui/screens/Screen/findNarratableWidget (Ljava/util/List;Lnet/minecraft/client/gui/narration/NarratableEntry;)Lnet/minecraft/client/gui/screens/Screen$NarratableSearchResult; +MD: net/minecraft/client/gui/screens/Screen/m_169404_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/screens/Screen/lambda$wrapScreenError$2 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/Screen/m_169407_ (Z)V net/minecraft/client/gui/screens/Screen/triggerImmediateNarration (Z)V +MD: net/minecraft/client/gui/screens/Screen/m_169409_ (Z)V net/minecraft/client/gui/screens/Screen/runNarration (Z)V +MD: net/minecraft/client/gui/screens/Screen/m_169411_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/Screen/removeWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/Screen/m_169413_ ()V net/minecraft/client/gui/screens/Screen/clearWidgets ()V +MD: net/minecraft/client/gui/screens/Screen/m_169414_ ()V net/minecraft/client/gui/screens/Screen/afterMouseMove ()V +MD: net/minecraft/client/gui/screens/Screen/m_169415_ ()V net/minecraft/client/gui/screens/Screen/afterMouseAction ()V +MD: net/minecraft/client/gui/screens/Screen/m_169416_ ()V net/minecraft/client/gui/screens/Screen/afterKeyboardAction ()V +MD: net/minecraft/client/gui/screens/Screen/m_169417_ ()V net/minecraft/client/gui/screens/Screen/handleDelayedNarration ()V +MD: net/minecraft/client/gui/screens/Screen/m_169418_ ()V net/minecraft/client/gui/screens/Screen/narrationEnabled ()V +MD: net/minecraft/client/gui/screens/Screen/m_169419_ ()Z net/minecraft/client/gui/screens/Screen/shouldRunNarration ()Z +MD: net/minecraft/client/gui/screens/Screen/m_202376_ ([Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/Screen/hideWidgets ([Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/Screen/m_232761_ ()V net/minecraft/client/gui/screens/Screen/rebuildWidgets ()V +MD: net/minecraft/client/gui/screens/Screen/m_257404_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/Screen/m_257959_ (Ljava/util/List;)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/Screen/m_262791_ (Lnet/minecraft/client/gui/components/Tooltip;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Lnet/minecraft/client/gui/components/Tooltip;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V +MD: net/minecraft/client/gui/screens/Screen/m_262861_ (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V +MD: net/minecraft/client/gui/screens/Screen/m_264131_ ()V net/minecraft/client/gui/screens/Screen/clearFocus ()V +MD: net/minecraft/client/gui/screens/Screen/m_264158_ (Lnet/minecraft/client/gui/ComponentPath;)V net/minecraft/client/gui/screens/Screen/changeFocus (Lnet/minecraft/client/gui/ComponentPath;)V +MD: net/minecraft/client/gui/screens/Screen/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/screens/Screen/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/screens/Screen/m_264313_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/Screen/setInitialFocus (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/Screen/m_264396_ ()Z net/minecraft/client/gui/screens/Screen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/Screen/m_264409_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation; net/minecraft/client/gui/screens/Screen/createArrowEvent (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation; +MD: net/minecraft/client/gui/screens/Screen/m_264442_ ()Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation; net/minecraft/client/gui/screens/Screen/createTabEvent ()Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation; +MD: net/minecraft/client/gui/screens/Screen/m_267719_ ()V net/minecraft/client/gui/screens/Screen/repositionElements ()V +MD: net/minecraft/client/gui/screens/Screen/m_274333_ ()V net/minecraft/client/gui/screens/Screen/added ()V +MD: net/minecraft/client/gui/screens/Screen/m_278176_ ()Lnet/minecraft/sounds/Music; net/minecraft/client/gui/screens/Screen/getBackgroundMusic ()Lnet/minecraft/sounds/Music; +MD: net/minecraft/client/gui/screens/Screen/m_280039_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/Screen/renderDirtBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/Screen/m_280152_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/Screen/getTooltipFromItem (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/Screen/m_280264_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/Screen/renderWithTooltip (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Screen/m_280273_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/Screen/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/Screen/m_289587_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/screens/Screen/lambda$new$0 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/Screen/m_289588_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/screens/Screen/lambda$new$1 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/Screen/m_5561_ (Lnet/minecraft/network/chat/Style;)Z net/minecraft/client/gui/screens/Screen/handleComponentClicked (Lnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/gui/screens/Screen/m_5953_ (DD)Z net/minecraft/client/gui/screens/Screen/isMouseOver (DD)Z +MD: net/minecraft/client/gui/screens/Screen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/Screen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/Screen/m_6575_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/Screen/init (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/Screen/m_6697_ (Ljava/lang/String;Z)V net/minecraft/client/gui/screens/Screen/insertText (Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/Screen/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/Screen/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/Screen/m_6913_ ()Z net/minecraft/client/gui/screens/Screen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/Screen/m_7043_ ()Z net/minecraft/client/gui/screens/Screen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/Screen/m_7379_ ()V net/minecraft/client/gui/screens/Screen/onClose ()V +MD: net/minecraft/client/gui/screens/Screen/m_7400_ (Ljava/util/List;)V net/minecraft/client/gui/screens/Screen/onFilesDrop (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/Screen/m_7787_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/Screen/addWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/Screen/m_7856_ ()V net/minecraft/client/gui/screens/Screen/init ()V +MD: net/minecraft/client/gui/screens/Screen/m_7861_ ()V net/minecraft/client/gui/screens/Screen/removed ()V +MD: net/minecraft/client/gui/screens/Screen/m_7933_ (III)Z net/minecraft/client/gui/screens/Screen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/Screen/m_86600_ ()V net/minecraft/client/gui/screens/Screen/tick ()V +MD: net/minecraft/client/gui/screens/Screen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/Screen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Screen/m_96579_ (Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/gui/screens/Screen/wrapScreenError (Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/Screen/m_96583_ (Ljava/lang/String;CI)Z net/minecraft/client/gui/screens/Screen/isValidCharacterForName (Ljava/lang/String;CI)Z +MD: net/minecraft/client/gui/screens/Screen/m_96589_ (Ljava/net/URI;)V net/minecraft/client/gui/screens/Screen/openLink (Ljava/net/URI;)V +MD: net/minecraft/client/gui/screens/Screen/m_96622_ (Z)V net/minecraft/client/gui/screens/Screen/confirmLink (Z)V +MD: net/minecraft/client/gui/screens/Screen/m_96628_ (I)Z net/minecraft/client/gui/screens/Screen/isCut (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96630_ (I)Z net/minecraft/client/gui/screens/Screen/isPaste (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96632_ (I)Z net/minecraft/client/gui/screens/Screen/isCopy (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96634_ (I)Z net/minecraft/client/gui/screens/Screen/isSelectAll (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96636_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/Screen/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/Screen/m_96637_ ()Z net/minecraft/client/gui/screens/Screen/hasControlDown ()Z +MD: net/minecraft/client/gui/screens/Screen/m_96638_ ()Z net/minecraft/client/gui/screens/Screen/hasShiftDown ()Z +MD: net/minecraft/client/gui/screens/Screen/m_96639_ ()Z net/minecraft/client/gui/screens/Screen/hasAltDown ()Z +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/ (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/ (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262736_ ()Ljava/util/List; net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/tooltip ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262758_ ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/positioner ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/hashCode ()I net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/hashCode ()I +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/ (Lnet/minecraft/client/gui/narration/NarratableEntry;ILnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority;)V net/minecraft/client/gui/screens/Screen$NarratableSearchResult/ (Lnet/minecraft/client/gui/narration/NarratableEntry;ILnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/ ()V net/minecraft/client/gui/screens/ShareToLanScreen/ ()V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/ShareToLanScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_169428_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_169431_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_257075_ (Lnet/minecraft/client/gui/components/Button;Ljava/lang/String;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_257854_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/ShareToLanScreen/tryParsePort (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_279788_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_279789_ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$2 (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_7856_ ()V net/minecraft/client/gui/screens/ShareToLanScreen/init ()V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_86600_ ()V net/minecraft/client/gui/screens/ShareToLanScreen/tick ()V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ShareToLanScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;[Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;[Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_279790_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/lambda$createFooter$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_7853_ ()V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/createFooter ()V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_7856_ ()V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/init ()V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_96682_ ()V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/updateNarratorButton ()V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/SkinCustomizationScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_169434_ (Lnet/minecraft/world/entity/player/PlayerModelPart;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/SkinCustomizationScreen/lambda$init$0 (Lnet/minecraft/world/entity/player/PlayerModelPart;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_279791_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SkinCustomizationScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_7856_ ()V net/minecraft/client/gui/screens/SkinCustomizationScreen/init ()V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SkinCustomizationScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/SoundOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_244663_ (I)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$getAllSoundOptionsExceptMaster$3 (I)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_244664_ (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$getAllSoundOptionsExceptMaster$2 (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_244665_ (Lnet/minecraft/sounds/SoundSource;)Z net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$getAllSoundOptionsExceptMaster$1 (Lnet/minecraft/sounds/SoundSource;)Z +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_245969_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/buttonOptions (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_246998_ ()[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/getAllSoundOptionsExceptMaster ()[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_279792_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/SoundOptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SoundOptionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/ ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/SymlinkWarningScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_267719_ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_289873_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_289880_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_289887_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_7379_ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/onClose ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_7856_ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/init ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SymlinkWarningScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/TitleScreen/ ()V net/minecraft/client/gui/screens/TitleScreen/ ()V +MD: net/minecraft/client/gui/screens/TitleScreen/ (Z)V net/minecraft/client/gui/screens/TitleScreen/ (Z)V +MD: net/minecraft/client/gui/screens/TitleScreen/ (ZLnet/minecraft/client/gui/components/LogoRenderer;)V net/minecraft/client/gui/screens/TitleScreen/ (ZLnet/minecraft/client/gui/components/LogoRenderer;)V +MD: net/minecraft/client/gui/screens/TitleScreen/ ()V net/minecraft/client/gui/screens/TitleScreen/ ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_210871_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createNormalMenuOptions$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_232769_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createDemoMenuOptions$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_240255_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/TitleScreen/getMultiplayerDisabledReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/TitleScreen/m_263871_ ()Lnet/minecraft/client/gui/components/LogoRenderer; net/minecraft/client/gui/screens/TitleScreen/lambda$new$0 ()Lnet/minecraft/client/gui/components/LogoRenderer; +MD: net/minecraft/client/gui/screens/TitleScreen/m_274333_ ()V net/minecraft/client/gui/screens/TitleScreen/added ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279793_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279794_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279795_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createNormalMenuOptions$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279796_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createNormalMenuOptions$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279797_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279798_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279799_ (ZLnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createDemoMenuOptions$9 (ZLnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279800_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/TitleScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_6913_ ()Z net/minecraft/client/gui/screens/TitleScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_7043_ ()Z net/minecraft/client/gui/screens/TitleScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_7856_ ()V net/minecraft/client/gui/screens/TitleScreen/init ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_7861_ ()V net/minecraft/client/gui/screens/TitleScreen/removed ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_86600_ ()V net/minecraft/client/gui/screens/TitleScreen/tick ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/TitleScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96754_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/screens/TitleScreen/preloadResources (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/screens/TitleScreen/m_96763_ (II)V net/minecraft/client/gui/screens/TitleScreen/createNormalMenuOptions (II)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96772_ (II)V net/minecraft/client/gui/screens/TitleScreen/createDemoMenuOptions (II)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96777_ (Z)V net/minecraft/client/gui/screens/TitleScreen/confirmDemo (Z)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96789_ ()Z net/minecraft/client/gui/screens/TitleScreen/realmsNotificationsEnabled ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_96792_ ()Z net/minecraft/client/gui/screens/TitleScreen/checkDemoWorldPresence ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_96793_ ()V net/minecraft/client/gui/screens/TitleScreen/realmsButtonClicked ()V +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineLabel;II)V net/minecraft/client/gui/screens/TitleScreen$WarningLabel/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineLabel;II)V +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/TitleScreen$WarningLabel/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232780_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/TitleScreen$WarningLabel/font ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232781_ ()Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/screens/TitleScreen$WarningLabel/label ()Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232782_ ()I net/minecraft/client/gui/screens/TitleScreen$WarningLabel/x ()I +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232783_ ()I net/minecraft/client/gui/screens/TitleScreen$WarningLabel/y ()I +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/hashCode ()I net/minecraft/client/gui/screens/TitleScreen$WarningLabel/hashCode ()I +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/m_280409_ (Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/screens/TitleScreen$WarningLabel/render (Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/TitleScreen$WarningLabel/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/ ()V net/minecraft/client/gui/screens/VideoSettingsScreen/ ()V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/VideoSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_232800_ (Lcom/mojang/blaze3d/platform/Monitor;Lcom/mojang/blaze3d/platform/Window;Ljava/lang/Integer;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$init$1 (Lcom/mojang/blaze3d/platform/Monitor;Lcom/mojang/blaze3d/platform/Window;Ljava/lang/Integer;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_232804_ (Lcom/mojang/blaze3d/platform/Monitor;Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$init$0 (Lcom/mojang/blaze3d/platform/Monitor;Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_232811_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/VideoSettingsScreen/options (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_279801_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$mouseClicked$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_279802_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$mouseClicked$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_279803_ (Lcom/mojang/blaze3d/platform/Window;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$init$2 (Lcom/mojang/blaze3d/platform/Window;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/VideoSettingsScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/VideoSettingsScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_7856_ ()V net/minecraft/client/gui/screens/VideoSettingsScreen/init ()V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_7861_ ()V net/minecraft/client/gui/screens/VideoSettingsScreen/removed ()V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/VideoSettingsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/WinScreen/ ()V net/minecraft/client/gui/screens/WinScreen/ ()V +MD: net/minecraft/client/gui/screens/WinScreen/ (ZLjava/lang/Runnable;)V net/minecraft/client/gui/screens/WinScreen/ (ZLjava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_169472_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/WinScreen/addCreditsLine (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/WinScreen/m_169482_ ()V net/minecraft/client/gui/screens/WinScreen/addEmptyLine ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_181397_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/WinScreen/addPoemLines (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_181399_ ()F net/minecraft/client/gui/screens/WinScreen/calculateScrollSpeed ()F +MD: net/minecraft/client/gui/screens/WinScreen/m_197398_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/WinScreen$CreditsReader;)V net/minecraft/client/gui/screens/WinScreen/wrapCreditsIO (Ljava/lang/String;Lnet/minecraft/client/gui/screens/WinScreen$CreditsReader;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_232817_ (Ljava/io/Reader;)V net/minecraft/client/gui/screens/WinScreen/addPoemFile (Ljava/io/Reader;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_232819_ (Ljava/io/Reader;)V net/minecraft/client/gui/screens/WinScreen/addCreditsFile (Ljava/io/Reader;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_278176_ ()Lnet/minecraft/sounds/Music; net/minecraft/client/gui/screens/WinScreen/getBackgroundMusic ()Lnet/minecraft/sounds/Music; +MD: net/minecraft/client/gui/screens/WinScreen/m_280337_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/WinScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_7379_ ()V net/minecraft/client/gui/screens/WinScreen/onClose ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_7856_ ()V net/minecraft/client/gui/screens/WinScreen/init ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_7861_ ()V net/minecraft/client/gui/screens/WinScreen/removed ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_7920_ (III)Z net/minecraft/client/gui/screens/WinScreen/keyReleased (III)Z +MD: net/minecraft/client/gui/screens/WinScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/WinScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/WinScreen/m_86600_ ()V net/minecraft/client/gui/screens/WinScreen/tick ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/WinScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/WinScreen/m_96895_ ()V net/minecraft/client/gui/screens/WinScreen/respawn ()V +MD: net/minecraft/client/gui/screens/WinScreen$CreditsReader/m_232821_ (Ljava/io/Reader;)V net/minecraft/client/gui/screens/WinScreen$CreditsReader/read (Ljava/io/Reader;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/ ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/stats/StatsCounter;)V net/minecraft/client/gui/screens/achievement/StatsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/stats/StatsCounter;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169496_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$000 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169498_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$100 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169500_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$300 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169502_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$600 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169504_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$700 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169506_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$800 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169508_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$900 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169510_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$1200 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_279804_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_280288_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/achievement/StatsScreen/blitSlotIcon (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_280600_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V net/minecraft/client/gui/screens/achievement/StatsScreen/blitSlot (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_7043_ ()Z net/minecraft/client/gui/screens/achievement/StatsScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_7819_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/onStatsUpdated ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_7856_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/init ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/achievement/StatsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96908_ (I)I net/minecraft/client/gui/screens/achievement/StatsScreen/getColumnX (I)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96924_ (Lnet/minecraft/client/gui/components/ObjectSelectionList;)V net/minecraft/client/gui/screens/achievement/StatsScreen/setActiveList (Lnet/minecraft/client/gui/components/ObjectSelectionList;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96926_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$200 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96946_ (Lnet/minecraft/stats/Stat;)Ljava/lang/String; net/minecraft/client/gui/screens/achievement/StatsScreen/getTranslationKey (Lnet/minecraft/stats/Stat;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96948_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96958_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96960_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$400 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96962_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96964_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$500 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96966_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$1000 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96968_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$1100 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96972_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/initLists ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96975_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/initButtons ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96983_ ()Lnet/minecraft/client/gui/components/ObjectSelectionList; net/minecraft/client/gui/screens/achievement/StatsScreen/getActiveList ()Lnet/minecraft/client/gui/components/ObjectSelectionList; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/m_96996_ (Lnet/minecraft/stats/Stat;)Ljava/lang/String; net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/lambda$new$0 (Lnet/minecraft/stats/Stat;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList;Lnet/minecraft/stats/Stat;)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList;Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/m_169513_ ()Ljava/lang/String; net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/getValueText ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_280389_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_5756_ ()I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_5759_ ()I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_6205_ (II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/clickedHeader (II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_7154_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_7415_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderHeader (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97033_ (I)Lnet/minecraft/stats/StatType; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getColumn (I)Lnet/minecraft/stats/StatType; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97038_ (Lnet/minecraft/stats/StatType;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/sortByColumn (Lnet/minecraft/stats/StatType;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97040_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getString (Lnet/minecraft/world/item/Item;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97058_ (Lnet/minecraft/stats/StatType;)I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getColumnIndex (Lnet/minecraft/stats/StatType;)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;Lnet/minecraft/world/item/Item;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_169519_ ()Lnet/minecraft/world/item/Item; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_97091_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/stats/Stat;IIZ)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/renderStat (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/stats/Stat;IIZ)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;)I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList;Lnet/minecraft/world/entity/EntityType;)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList;Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/achievement/StatsUpdateListener/ ()V net/minecraft/client/gui/screens/achievement/StatsUpdateListener/ ()V +MD: net/minecraft/client/gui/screens/achievement/StatsUpdateListener/m_7819_ ()V net/minecraft/client/gui/screens/achievement/StatsUpdateListener/onStatsUpdated ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType;ILnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V net/minecraft/client/gui/screens/advancements/AdvancementTab/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType;ILnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_169538_ ()Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTab/getType ()Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_169539_ ()I net/minecraft/client/gui/screens/advancements/AdvancementTab/getIndex ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_169540_ ()Lnet/minecraft/advancements/DisplayInfo; net/minecraft/client/gui/screens/advancements/AdvancementTab/getDisplay ()Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280047_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawContents (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280105_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawTab (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280485_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280571_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawTooltips (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97151_ (DD)V net/minecraft/client/gui/screens/advancements/AdvancementTab/scroll (DD)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97154_ (IIDD)Z net/minecraft/client/gui/screens/advancements/AdvancementTab/isMouseOver (IIDD)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97170_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;ILnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; net/minecraft/client/gui/screens/advancements/AdvancementTab/create (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;ILnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97175_ (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementTab/addWidget (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97178_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementTab/addAdvancement (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97180_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; net/minecraft/client/gui/screens/advancements/AdvancementTab/getWidget (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97182_ ()Lnet/minecraft/advancements/Advancement; net/minecraft/client/gui/screens/advancements/AdvancementTab/getAdvancement ()Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97189_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/advancements/AdvancementTab/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97190_ ()Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen; net/minecraft/client/gui/screens/advancements/AdvancementTab/getScreen ()Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/ ()V net/minecraft/client/gui/screens/advancements/AdvancementTabType/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/ (Ljava/lang/String;IIIIII)V net/minecraft/client/gui/screens/advancements/AdvancementTabType/ (Ljava/lang/String;IIIIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_169541_ ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTabType/$values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_280111_ (Lnet/minecraft/client/gui/GuiGraphics;IIZI)V net/minecraft/client/gui/screens/advancements/AdvancementTabType/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZI)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_280639_ (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/advancements/AdvancementTabType/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97210_ ()I net/minecraft/client/gui/screens/advancements/AdvancementTabType/getMax ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97211_ (I)I net/minecraft/client/gui/screens/advancements/AdvancementTabType/getX (I)I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97213_ (IIIDD)Z net/minecraft/client/gui/screens/advancements/AdvancementTabType/isMouseOver (IIIDD)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97232_ (I)I net/minecraft/client/gui/screens/advancements/AdvancementTabType/getY (I)I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTabType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTabType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/ ()V net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/ ()V net/minecraft/client/gui/screens/advancements/AdvancementWidget/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/ (Lnet/minecraft/client/gui/screens/advancements/AdvancementTab;Lnet/minecraft/client/Minecraft;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/ (Lnet/minecraft/client/gui/screens/advancements/AdvancementTab;Lnet/minecraft/client/Minecraft;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_169554_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidget/getWidth ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_280229_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/draw (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_280255_ (Lnet/minecraft/client/gui/GuiGraphics;IIFII)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/drawHover (Lnet/minecraft/client/gui/GuiGraphics;IIFII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97259_ (IIII)Z net/minecraft/client/gui/screens/advancements/AdvancementWidget/isMouseOver (IIII)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97264_ (Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/setProgress (Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97298_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/drawConnectivity (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97303_ (Lnet/minecraft/client/StringSplitter;Ljava/util/List;)F net/minecraft/client/gui/screens/advancements/AdvancementWidget/getMaxWidth (Lnet/minecraft/client/StringSplitter;Ljava/util/List;)F +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97306_ (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/addChild (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97308_ (Lnet/minecraft/network/chat/Component;I)Ljava/util/List; net/minecraft/client/gui/screens/advancements/AdvancementWidget/findOptimalLines (Lnet/minecraft/network/chat/Component;I)Ljava/util/List; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97311_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; net/minecraft/client/gui/screens/advancements/AdvancementWidget/getFirstVisibleParent (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97313_ ()V net/minecraft/client/gui/screens/advancements/AdvancementWidget/attachToParent ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97314_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidget/getY ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97315_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidget/getX ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ ()V net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ (Ljava/lang/String;II)V net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ (Ljava/lang/String;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/m_169555_ ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/$values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/m_97325_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/getIndex ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ (Lnet/minecraft/client/multiplayer/ClientAdvancements;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ (Lnet/minecraft/client/multiplayer/ClientAdvancements;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_280088_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/renderWindow (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_280355_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/renderTooltips (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5504_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onRemoveAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5505_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onAddAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5513_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onAddAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5516_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onRemoveAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/advancements/AdvancementsScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_6896_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onSelectedTabChanged (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7204_ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onAdvancementsCleared ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7856_ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/init ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7861_ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/removed ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7922_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onUpdateAdvancementProgress (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/advancements/AdvancementsScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/advancements/AdvancementsScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_97373_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/renderInside (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_97392_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; net/minecraft/client/gui/screens/advancements/AdvancementsScreen/getAdvancementWidget (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_97394_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; net/minecraft/client/gui/screens/advancements/AdvancementsScreen/getTab (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/controls/ControlsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_279805_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/ControlsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_279806_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/ControlsScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_279807_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/ControlsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_7856_ ()V net/minecraft/client/gui/screens/controls/ControlsScreen/init ()V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/controls/ControlsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/controls/KeyBindsList/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193863_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$000 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193865_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$100 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193868_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$200 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193871_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$300 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193873_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$400 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193875_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$500 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193877_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$600 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193879_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$700 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_269130_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList/resetMappingAndUpdateButtons ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_269365_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList/refreshEntries ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_5756_ ()I net/minecraft/client/gui/screens/controls/KeyBindsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_5759_ ()I net/minecraft/client/gui/screens/controls/KeyBindsList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_264257_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/refreshEntry ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry;)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/ ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/m_264257_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/refreshEntry ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_252564_ (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$1 (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_252565_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$3 (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_264257_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/refreshEntry ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_268769_ (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$2 (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_268770_ (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$0 (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_268771_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_279808_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/controls/KeyBindsScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_7856_ ()V net/minecraft/client/gui/screens/controls/KeyBindsScreen/init ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/controls/KeyBindsScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_280040_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/switchToHoveredGameMode (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_7043_ ()Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_7856_ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/init ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_97575_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/getDefaultSelected ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_97576_ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/switchToHoveredGameMode ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_97577_ ()Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/checkToClose ()Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_169592_ ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/$values ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_280074_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getFromGameType (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_280357_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_280506_ ()Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getNext ()Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_97597_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_97611_ ()Ljava/lang/String; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getCommand ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/values ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/values ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/ (Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;II)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/ (Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;II)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_198029_ ()Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/isHoveredOrFocused ()Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_280023_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/drawSlot (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_280608_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/drawSelection (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_97643_ (Z)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/setSelected (Z)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_169595_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_169598_ (Z)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/updatePreviousOutput (Z)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_289589_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6372_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/populateAndSendPacket (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6556_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_7821_ ()I net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/getPreviousY ()I +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_97688_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/onEdited (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_97690_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_97695_ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_238391_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/clearDraggingState ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280072_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280092_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/inventory/Slot;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderSlot (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/inventory/Slot;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280211_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderFloatingItem (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280359_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderSlotHighlight (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280553_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/getTooltipFromContainerItem (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6262_ ()Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/getMenu ()Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6774_ (IIIIDD)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isHovering (IIIIDD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97744_ (DD)Lnet/minecraft/world/inventory/Slot; net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/findSlot (DD)Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97762_ (I)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/checkHotbarMouseClicked (I)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97774_ (Lnet/minecraft/world/inventory/Slot;DD)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isHovering (Lnet/minecraft/world/inventory/Slot;DD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97805_ (II)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/checkHotbarKeyPressed (II)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97818_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/recalculateQuickCraftRemaining ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_289590_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_6916_ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZLnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245038_ ()Lorg/joml/Vector3f; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/getSignTextScale ()Lorg/joml/Vector3f; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245490_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/renderSignBackground (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245491_ (I)[Ljava/lang/String; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$new$1 (I)[Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245712_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_246292_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$init$3 ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_247127_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_276701_ (ZI)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$new$0 (ZI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_276846_ ()Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/isValid ()Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_276998_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/setMessage (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_279811_ (Ljava/lang/String;)Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$init$4 (Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_280050_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/offsetSign (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_280079_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/renderSignText (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_280362_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/renderSign (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/ ()V net/minecraft/client/gui/screens/inventory/AnvilScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/ (Lnet/minecraft/world/inventory/AnvilMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AnvilScreen/ (Lnet/minecraft/world/inventory/AnvilMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/AnvilScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_266390_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderErrorIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_5653_ ()V net/minecraft/client/gui/screens/inventory/AnvilScreen/subInit ()V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/AnvilScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_6691_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderFg (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AnvilScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/AnvilScreen/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_97898_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/AnvilScreen/onNameChanged (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BeaconScreen/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169613_ (ILnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton;)V net/minecraft/client/gui/screens/inventory/BeaconScreen/lambda$updateButtons$0 (ILnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169616_ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/inventory/BeaconScreen/addBeaconButton (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169620_ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/inventory/BeaconScreen/access$100 (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169622_ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/inventory/BeaconScreen/access$200 (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169624_ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/inventory/BeaconScreen/access$000 (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169626_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/updateButtons ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/BeaconScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BeaconScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;Lnet/minecraft/world/inventory/BeaconMenu;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;Lnet/minecraft/world/inventory/BeaconMenu;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$1/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$1/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/m_5691_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/onPress ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/m_5691_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/onPress ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;ZI)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;ZI)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_141934_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/createEffectDescription (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_169649_ (Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/setEffect (Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_5691_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/onPress ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_6805_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (IILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (IILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_6805_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_98024_ ()Z net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/isSelected ()Z +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_98031_ (Z)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/setSelected (Z)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/m_6805_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/m_141934_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/createEffectDescription (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ ()V net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ (Lnet/minecraft/world/inventory/BlastFurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ (Lnet/minecraft/world/inventory/BlastFurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_182574_ (Z)V net/minecraft/client/gui/screens/inventory/BookEditScreen/updateLocalCopy (Z)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_264248_ (Lnet/minecraft/client/gui/GuiGraphics;[Lnet/minecraft/client/renderer/Rect2i;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/renderHighlight (Lnet/minecraft/client/gui/GuiGraphics;[Lnet/minecraft/client/renderer/Rect2i;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_279812_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_279813_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_279814_ (Ljava/lang/String;)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_280220_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z)V net/minecraft/client/gui/screens/inventory/BookEditScreen/renderCursor (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BookEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98079_ ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; net/minecraft/client/gui/screens/inventory/BookEditScreen/getDisplayCache ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98080_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/clearDisplayCache ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98081_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/clearDisplayCacheAfterPageChange ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98082_ ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; net/minecraft/client/gui/screens/inventory/BookEditScreen/rebuildDisplayCache ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98083_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$1 ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98097_ (I)V net/minecraft/client/gui/screens/inventory/BookEditScreen/changeLine (I)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98112_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98114_ (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/convertScreenToLocal (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98116_ (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/renderer/Rect2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/createSelection (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/renderer/Rect2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98119_ (Ljava/lang/String;Lnet/minecraft/client/StringSplitter;IIII)Lnet/minecraft/client/renderer/Rect2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/createPartialLineSelection (Ljava/lang/String;Lnet/minecraft/client/StringSplitter;IIII)Lnet/minecraft/client/renderer/Rect2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98126_ (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lit/unimi/dsi/fastutil/ints/IntList;Ljava/util/List;Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$rebuildDisplayCache$10 (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lit/unimi/dsi/fastutil/ints/IntList;Ljava/util/List;Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98141_ (I)V net/minecraft/client/gui/screens/inventory/BookEditScreen/selectWord (I)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98143_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98145_ (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/convertLocalToScreen (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98147_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/setClipboard (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98149_ ([II)I net/minecraft/client/gui/screens/inventory/BookEditScreen/findLineFromPos ([II)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98152_ (III)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/bookKeyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98156_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98158_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/setCurrentPageText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98160_ (Z)V net/minecraft/client/gui/screens/inventory/BookEditScreen/saveChanges (Z)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98163_ (III)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/titleKeyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98169_ (Ljava/lang/String;)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$3 (Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98174_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$2 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98176_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98180_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookEditScreen/getClipboard ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98181_ ()I net/minecraft/client/gui/screens/inventory/BookEditScreen/getNumPages ()I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98182_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/pageBack ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98183_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/pageForward ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98184_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/updateButtonVisibility ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98185_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/eraseEmptyTrailingPages ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98186_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/appendPageToBook ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98187_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyUp ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98188_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyDown ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98189_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyHome ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98190_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyEnd ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98191_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookEditScreen/getCurrentPageText ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z[I[Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo;[Lnet/minecraft/client/renderer/Rect2i;)V net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z[I[Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo;[Lnet/minecraft/client/renderer/Rect2i;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98208_ (I)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/findLineStart (I)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98210_ (II)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/changeLine (II)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98213_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/getIndexAtPosition (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98218_ (I)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/findLineEnd (I)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;II)V net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;II)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/ (II)V net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/ (II)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;Z)V net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;Z)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_141919_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/closeScreen ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_169694_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/BookViewScreen/loadPages (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_169696_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/loadPages (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_169699_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/ListTag;I)Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$loadPages$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/ListTag;I)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_289591_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$createMenuControls$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_5561_ (Lnet/minecraft/network/chat/Style;)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/handleComponentClicked (Lnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7735_ (I)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/forcePage (I)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7811_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/pageBack ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7815_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/pageForward ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7829_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/createMenuControls ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BookViewScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98268_ (DD)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/inventory/BookViewScreen/getClickedComponentStyleAt (DD)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98275_ (I)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/setPage (I)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98286_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$createPageControlButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98288_ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/setBookAccess (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98296_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$createPageControlButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98300_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen/getNumPages ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98301_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/createPageControlButtons ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98302_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/updateButtonVisibility ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$1/ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen$1/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$1/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$1/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$1/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$1/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_98308_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess; net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/fromItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_98310_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/getPage (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/m_98318_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/readPages (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/m_98326_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/readPages (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ ()V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ (Lnet/minecraft/world/inventory/BrewingStandMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ (Lnet/minecraft/world/inventory/BrewingStandMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ ()V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_280090_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;IIF)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/renderMap (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_280549_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZZZZ)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/renderResultingMap (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZZZZ)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169720_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169723_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169726_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169729_ (Z)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/enableControls (Z)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_287018_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$0 (Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_6372_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/populateAndSendPacket (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_6556_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_7821_ ()I net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/getPreviousY ()I +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_98398_ ()V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/updateGui ()V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/ ()V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/ ()V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/ ()V net/minecraft/client/gui/screens/inventory/ContainerScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/ (Lnet/minecraft/world/inventory/ChestMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/ContainerScreen/ (Lnet/minecraft/world/inventory/ChestMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/ContainerScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ContainerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/ (Lnet/minecraft/world/inventory/CraftingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/CraftingScreen/ (Lnet/minecraft/world/inventory/CraftingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_289592_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/CraftingScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/inventory/CraftingScreen/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/CraftingScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/CraftingScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6774_ (IIIIDD)Z net/minecraft/client/gui/screens/inventory/CraftingScreen/isHovering (IIIIDD)Z +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6916_ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CraftingScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/CraftingScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/CraftingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/flag/FeatureFlagSet;Z)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/flag/FeatureFlagSet;Z)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_205404_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;Lnet/minecraft/tags/TagKey;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$getTooltipFromContainerItem$3 (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_205408_ (Ljava/util/function/Predicate;Lnet/minecraft/tags/TagKey;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$updateVisibleTags$2 (Ljava/util/function/Predicate;Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257687_ (Ljava/util/Collection;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/refreshCurrentTabContents (Ljava/util/Collection;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257869_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/hasPermissions (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257967_ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/tryRefreshInvalidatedTabs (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257995_ (Lnet/minecraft/world/item/CreativeModeTab;)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/getTabY (Lnet/minecraft/world/item/CreativeModeTab;)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_258017_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/isInventoryOpen ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_258094_ (Lnet/minecraft/world/item/CreativeModeTab;)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/getTabX (Lnet/minecraft/world/item/CreativeModeTab;)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280537_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;II)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/checkTabHovering (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;II)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280553_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/getTooltipFromContainerItem (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280560_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/renderTabButton (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7920_ (III)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/keyReleased (III)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98523_ (DD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/insideScrollbar (DD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98553_ (Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/isCreativeSlot (Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98560_ (Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/selectTab (Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98562_ (Lnet/minecraft/world/item/CreativeModeTab;DD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/checkTabClicked (Lnet/minecraft/world/item/CreativeModeTab;DD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98598_ (Lnet/minecraft/client/Minecraft;IZZ)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/handleHotbarLoadOrSave (Lnet/minecraft/client/Minecraft;IZZ)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98603_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$updateVisibleTags$1 (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98607_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$updateVisibleTags$0 (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98619_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/updateVisibleTags (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98630_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/refreshSearchResults ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98631_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/canScroll ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_142503_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/setCarried (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_142621_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/getCarried ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_257485_ (F)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/getRowIndexForScroll (F)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_257538_ (I)F net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/getScrollForRowIndex (I)F +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_257935_ ()I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/calculateRowCount ()I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_258092_ (FD)F net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/subtractInputFromScroll (FD)F +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_5622_ (Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/canDragTo (Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_98642_ (F)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/scrollTo (F)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_98654_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/canScroll ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/ (Lnet/minecraft/world/inventory/Slot;III)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/ (Lnet/minecraft/world/inventory/Slot;III)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_5852_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/set (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_5866_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getMaxStackSize (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6641_ ()I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getMaxStackSize ()I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6654_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/setChanged ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6657_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/hasItem ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6659_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/isActive ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_7993_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ (I)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ (I)V +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_266270_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/render (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_266271_ (F)F net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/getIconTransitionTransparency (F)F +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_266287_ (Ljava/util/List;)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/tick (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_280347_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/renderIcon (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/ ()V net/minecraft/client/gui/screens/inventory/DispenserScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/ (Lnet/minecraft/world/inventory/DispenserMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/DispenserScreen/ (Lnet/minecraft/world/inventory/DispenserMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/DispenserScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/DispenserScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/DispenserScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_194000_ (Lnet/minecraft/world/effect/MobEffectInstance;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/getEffectName (Lnet/minecraft/world/effect/MobEffectInstance;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_194018_ ()Z net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/canSeeEffects ()Z +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280113_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderEffects (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280172_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderBackgrounds (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280301_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderIcons (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280417_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/m_98734_ ()Lnet/minecraft/client/gui/screens/inventory/EnchantmentNames; net/minecraft/client/gui/screens/inventory/EnchantmentNames/getInstance ()Lnet/minecraft/client/gui/screens/inventory/EnchantmentNames; +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/m_98735_ (J)V net/minecraft/client/gui/screens/inventory/EnchantmentNames/initSeed (J)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/m_98737_ (Lnet/minecraft/client/gui/Font;I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/EnchantmentNames/getRandomName (Lnet/minecraft/client/gui/Font;I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_289602_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/renderBook (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/EnchantmentScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_98772_ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/tickBook ()V +MD: net/minecraft/client/gui/screens/inventory/FurnaceScreen/ ()V net/minecraft/client/gui/screens/inventory/FurnaceScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/FurnaceScreen/ (Lnet/minecraft/world/inventory/FurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/FurnaceScreen/ (Lnet/minecraft/world/inventory/FurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ ()V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ ()V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/m_245038_ ()Lorg/joml/Vector3f; net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/getSignTextScale ()Lorg/joml/Vector3f; +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/m_245490_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/renderSignBackground (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/m_280050_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/offsetSign (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/ ()V net/minecraft/client/gui/screens/inventory/HopperScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/ (Lnet/minecraft/world/inventory/HopperMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/HopperScreen/ (Lnet/minecraft/world/inventory/HopperMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/HopperScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/HopperScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ ()V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_274545_ (Lnet/minecraft/client/gui/GuiGraphics;IIIFFLnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderEntityInInventoryFollowsMouse (Lnet/minecraft/client/gui/GuiGraphics;IIIFFLnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_279817_ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/lambda$renderEntityInInventory$1 (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_280432_ (Lnet/minecraft/client/gui/GuiGraphics;IIILorg/joml/Quaternionf;Lorg/joml/Quaternionf;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderEntityInInventory (Lnet/minecraft/client/gui/GuiGraphics;IIILorg/joml/Quaternionf;Lorg/joml/Quaternionf;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_289593_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/inventory/InventoryScreen/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6774_ (IIIIDD)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/isHovering (IIIIDD)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6916_ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/InventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_266390_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/renderErrorIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_5653_ ()V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/subInit ()V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_6691_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/renderFg (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_169764_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_169767_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98963_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98972_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98976_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$2 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98978_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98980_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$1 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98985_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98990_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98991_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/onCancel ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98992_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/sendToServer ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98993_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/sendGenerate ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98994_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/updateValidity ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen;IIIILnet/minecraft/network/chat/Component;D)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen;IIIILnet/minecraft/network/chat/Component;D)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/m_5695_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/updateMessage ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/m_5697_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/applyValue ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/LecternScreen/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_141919_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/closeScreen ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_6262_ ()Lnet/minecraft/world/inventory/LecternMenu; net/minecraft/client/gui/screens/inventory/LecternScreen/getMenu ()Lnet/minecraft/world/inventory/LecternMenu; +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_6262_ ()Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/client/gui/screens/inventory/LecternScreen/getMenu ()Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/LecternScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7735_ (I)Z net/minecraft/client/gui/screens/inventory/LecternScreen/forcePage (I)Z +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7811_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/pageBack ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7815_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/pageForward ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7829_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/createMenuControls ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99023_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/LecternScreen/lambda$createMenuControls$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99032_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/LecternScreen/lambda$createMenuControls$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99036_ (I)V net/minecraft/client/gui/screens/inventory/LecternScreen/sendButtonClick (I)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99044_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/bookChanged ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99045_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/pageChanged ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/LecternScreen;)V net/minecraft/client/gui/screens/inventory/LecternScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/LecternScreen;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/LecternScreen$1/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/LecternScreen$1/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/ ()V net/minecraft/client/gui/screens/inventory/LoomScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/LoomScreen/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_232828_ ()I net/minecraft/client/gui/screens/inventory/LoomScreen/totalRowCount ()I +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_280599_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/core/Holder;II)V net/minecraft/client/gui/screens/inventory/LoomScreen/renderPattern (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/core/Holder;II)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/LoomScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/LoomScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/LoomScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/LoomScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/LoomScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/LoomScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/LoomScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_99112_ ()V net/minecraft/client/gui/screens/inventory/LoomScreen/containerChanged ()V +MD: net/minecraft/client/gui/screens/inventory/MenuAccess/m_6262_ ()Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/client/gui/screens/inventory/MenuAccess/getMenu ()Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/ ()V net/minecraft/client/gui/screens/inventory/MerchantScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/ (Lnet/minecraft/world/inventory/MerchantMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/ (Lnet/minecraft/world/inventory/MerchantMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280104_ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/inventory/MerchantScreen/access$000 (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280127_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderAndDecorateCostA (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280189_ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/inventory/MerchantScreen/access$200 (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280219_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderScroller (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280298_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderProgressBar (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280526_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/trading/MerchantOffer;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderButtonArrows (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/trading/MerchantOffer;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280591_ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/inventory/MerchantScreen/access$100 (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/MerchantScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/MerchantScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_99140_ (I)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/canScroll (I)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_99173_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_99200_ ()V net/minecraft/client/gui/screens/inventory/MerchantScreen/postButtonClick ()V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;IIILnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;IIILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/m_280089_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/renderToolTip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/m_99209_ ()I net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/getIndex ()I +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/ (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_6372_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/populateAndSendPacket (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_6556_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_7821_ ()I net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/getPreviousY ()I +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/PageButton/ (IIZLnet/minecraft/client/gui/components/Button$OnPress;Z)V net/minecraft/client/gui/screens/inventory/PageButton/ (IIZLnet/minecraft/client/gui/components/Button$OnPress;Z)V +MD: net/minecraft/client/gui/screens/inventory/PageButton/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/screens/inventory/PageButton/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/screens/inventory/PageButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/PageButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ ()V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ (Lnet/minecraft/world/inventory/ShulkerBoxMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ (Lnet/minecraft/world/inventory/ShulkerBoxMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/ ()V net/minecraft/client/gui/screens/inventory/SignEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V net/minecraft/client/gui/screens/inventory/SignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_245038_ ()Lorg/joml/Vector3f; net/minecraft/client/gui/screens/inventory/SignEditScreen/getSignTextScale ()Lorg/joml/Vector3f; +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_245490_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/SignEditScreen/renderSignBackground (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_280050_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/SignEditScreen/offsetSign (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/SignEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/ ()V net/minecraft/client/gui/screens/inventory/SmithingScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/ (Lnet/minecraft/world/inventory/SmithingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/ (Lnet/minecraft/world/inventory/SmithingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/SmithingScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266259_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/inventory/SmithingScreen/getTemplateItem ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266311_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/SmithingScreen/renderOnboardingTooltips (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266329_ ()Z net/minecraft/client/gui/screens/inventory/SmithingScreen/hasRecipeError ()Z +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266390_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/SmithingScreen/renderErrorIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_267709_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/updateArmorStandPreview (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_279819_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/lambda$renderOnboardingTooltips$0 (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_5653_ ()V net/minecraft/client/gui/screens/inventory/SmithingScreen/subInit ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/SmithingScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/SmithingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/SmokerScreen/ ()V net/minecraft/client/gui/screens/inventory/SmokerScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/SmokerScreen/ (Lnet/minecraft/world/inventory/SmokerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/SmokerScreen/ (Lnet/minecraft/world/inventory/SmokerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/ ()V net/minecraft/client/gui/screens/inventory/StonecutterScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_280072_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_280299_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderButtons (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_280605_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderRecipes (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_99352_ ()I net/minecraft/client/gui/screens/inventory/StonecutterScreen/getOffscreenRows ()I +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_99353_ ()Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/isScrollBarActive ()Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_99354_ ()V net/minecraft/client/gui/screens/inventory/StonecutterScreen/containerChanged ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169838_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/updateMode (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169840_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$15 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169842_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/Mirror;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/Mirror;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169845_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/state/properties/StructureMode;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/state/properties/StructureMode;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169848_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$11 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169851_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$5 (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169853_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$14 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169855_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$10 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169858_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$static$0 (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169860_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_279820_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_279821_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_279822_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99403_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sendToServer (Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99414_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$13 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99416_ (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Ljava/lang/String;CI)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/access$000 (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Ljava/lang/String;CI)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99424_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$12 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99426_ (Ljava/lang/String;)J net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/parseSeed (Ljava/lang/String;)J +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99430_ (Ljava/lang/String;)F net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/parseIntegrity (Ljava/lang/String;)F +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99435_ (Ljava/lang/String;)I net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/parseCoordinate (Ljava/lang/String;)I +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99444_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99447_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/onCancel ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99456_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99459_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99464_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/updateDirectionButtons ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ ()V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ (Lnet/minecraft/world/inventory/tooltip/BundleTooltip;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ (Lnet/minecraft/world/inventory/tooltip/BundleTooltip;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_142069_ (Lnet/minecraft/client/gui/Font;)I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/getWidth (Lnet/minecraft/client/gui/Font;)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_142103_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/getHeight ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_169910_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/gridSizeX ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_169911_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/gridSizeY ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_183452_ (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/renderImage (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_275840_ (IIIILnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/drawBorder (IIIILnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_280004_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/blit (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_280665_ (IIIZLnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/renderSlot (IIIZLnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ ()V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ (Ljava/lang/String;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ (Ljava/lang/String;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/m_169932_ ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/$values ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/values ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/values ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/ (Lnet/minecraft/util/FormattedCharSequence;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/ (Lnet/minecraft/util/FormattedCharSequence;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/m_142069_ (Lnet/minecraft/client/gui/Font;)I net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/getWidth (Lnet/minecraft/client/gui/Font;)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/m_142103_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/getHeight ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/m_142440_ (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/renderText (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_142069_ (Lnet/minecraft/client/gui/Font;)I net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/getWidth (Lnet/minecraft/client/gui/Font;)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_142103_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/getHeight ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_142440_ (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/renderText (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_169948_ (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/create (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_169950_ (Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/create (Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_183452_ (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/renderImage (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/m_280500_ (IILorg/joml/Vector2i;II)V net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/positionTooltip (IILorg/joml/Vector2i;II)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/m_267810_ (III)I net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/getOffset (III)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/ ()V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280115_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderFrameGradient (Lnet/minecraft/client/gui/GuiGraphics;IIIIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280205_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderTooltipBackground (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280217_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderHorizontalLine (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280387_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderVerticalLine (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280538_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderRectangle (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280556_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderVerticalLineGradient (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_279823_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_279824_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_279825_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_7856_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/init ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_7861_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/removed ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_86600_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/tick ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99700_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/setSelected (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99702_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/join (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99705_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99707_ (Ljava/util/List;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/setToolTip (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99709_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99711_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/deleteCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99714_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99716_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/editServerCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99721_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/addServerCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99725_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/directJoinCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99727_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99729_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/joinSelectedServer ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99730_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/onSelectedChange ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99731_ ()Lnet/minecraft/client/multiplayer/ServerStatusPinger; net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/getPinger ()Lnet/minecraft/client/multiplayer/ServerStatusPinger; +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99732_ ()Lnet/minecraft/client/multiplayer/ServerList; net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/getServers ()Lnet/minecraft/client/multiplayer/ServerList; +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99733_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/refreshServerList ()V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ ()V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/m_207212_ (I)V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/m_279826_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ ()V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/m_207212_ (I)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/m_279827_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/lambda$initButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/m_279828_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169966_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;I)I net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/access$100 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;I)I +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169969_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/access$000 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169974_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$refreshEntries$3 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169977_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$refreshEntries$2 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_263877_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$static$1 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_263878_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_289224_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/removed ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/setSelected (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_99780_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/refreshEntries ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_99797_ (Lnet/minecraft/client/multiplayer/ServerList;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/updateOnlineServers (Lnet/minecraft/client/multiplayer/ServerList;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_99799_ (Ljava/util/List;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/updateNetworkServers (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/close ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/close ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/server/LanServer;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/server/LanServer;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_264484_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/getServerNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_99838_ ()Lnet/minecraft/client/server/LanServer; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/getServerData ()Lnet/minecraft/client/server/LanServer; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/close ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/close ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_169992_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lambda$render$0 ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_264063_ ()Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/pingCompleted ()Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_264399_ ()Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/isCompatible ()Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_280396_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_7933_ (III)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99866_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/updateServerList ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99871_ (II)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/swap (II)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99896_ ([B)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/uploadServerIcon ([B)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99898_ ()Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/getServerData ()Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99899_ ()Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/canJoin ()Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99900_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lambda$render$1 ()V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/WarningScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_207212_ (I)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_214169_ ()I net/minecraft/client/gui/screens/multiplayer/WarningScreen/getLineHeight ()I +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_280550_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/renderTitle (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_7856_ ()V net/minecraft/client/gui/screens/multiplayer/WarningScreen/init ()V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/ (Ljava/lang/Runnable;Ljava/util/function/Function;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/packs/PackSelectionModel/ (Ljava/lang/Runnable;Ljava/util/function/Function;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_274342_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel/updateRepoSelectedList ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99913_ ()Ljava/util/stream/Stream; net/minecraft/client/gui/screens/packs/PackSelectionModel/getUnselected ()Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99914_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; net/minecraft/client/gui/screens/packs/PackSelectionModel/lambda$getSelected$1 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99918_ ()Ljava/util/stream/Stream; net/minecraft/client/gui/screens/packs/PackSelectionModel/getSelected ()Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99919_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; net/minecraft/client/gui/screens/packs/PackSelectionModel/lambda$getUnselected$0 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99923_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel/commit ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99926_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel/findNewPacks ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_264249_ ()Ljava/lang/String; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getId ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_6876_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getIconTexture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7356_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7359_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7485_ ()Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getPackSource ()Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7709_ ()Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getCompatibility ()Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7802_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canMoveUp ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7803_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canMoveDown ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7844_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/isRequired ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7845_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/moveDown ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7849_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/select ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7850_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/unselect ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7852_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/moveUp ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7857_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/isSelected ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7867_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/isFixedPosition ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_99929_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getExtendedDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_99930_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canSelect ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_99931_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canUnselect ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_264249_ ()Ljava/lang/String; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getId ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_274458_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/updateHighContrastOptionInstance ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_6876_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getIconTexture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_6956_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getSelfList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_6958_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getOtherList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7356_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7359_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7485_ ()Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getPackSource ()Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7709_ ()Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getCompatibility ()Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7802_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/canMoveUp ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7803_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/canMoveDown ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7844_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/isRequired ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7845_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/moveDown ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7852_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/moveUp ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7867_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/isFixedPosition ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_99938_ (I)V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/move (I)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_99950_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/toggleSelection ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_6956_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/getSelfList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_6958_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/getOtherList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_7849_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/select ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_7850_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/unselect ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_7857_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/isSelected ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_6956_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/getSelfList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_6958_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/getOtherList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_7849_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/select ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_7850_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/unselect ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_7857_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/isSelected ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/ ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/ (Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/ (Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100013_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/util/stream/Stream;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/updateList (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/util/stream/Stream;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100016_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionScreen/loadPackIcon (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100035_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100039_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/closeWatcher ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100040_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/populateLists ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100041_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/reload ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_170001_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$copyPacks$3 (Ljava/nio/file/Path;Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_170006_ (Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$copyPacks$4 (Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_244670_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_264285_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/updateFocus (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_264462_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/clearSelected ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_279829_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/lang/String;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$updateList$2 (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/lang/String;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_279830_ (Ljava/util/List;Z)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$onFilesDrop$5 (Ljava/util/List;Z)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_279831_ (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$getPackIcon$6 (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_7379_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_7400_ (Ljava/util/List;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/onFilesDrop (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_7856_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/init ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_86600_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/tick ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_99989_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionScreen/getPackIcon (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_99999_ (Lnet/minecraft/client/Minecraft;Ljava/util/List;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/copyPacks (Lnet/minecraft/client/Minecraft;Ljava/util/List;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/ (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/close ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/close ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/m_100046_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/pollForChanges ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/m_100049_ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/watchDir (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/m_245748_ (Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher; net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/create (Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList/ ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen;IILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/packs/TransferableSelectionList/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen;IILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_170023_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;I)I net/minecraft/client/gui/screens/packs/TransferableSelectionList/access$000 (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;I)I +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/packs/TransferableSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/packs/TransferableSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_7415_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/packs/TransferableSelectionList/renderHeader (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/packs/TransferableSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_100088_ ()Z net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/showHoverOverlay ()Z +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_100104_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/cacheName (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_100109_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/cacheDescription (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_263880_ (Z)V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/lambda$handlePackSelection$0 (Z)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264048_ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/keyboardMoveUp ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264233_ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/keyboardSelection ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264411_ ()Ljava/lang/String; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/getPackId ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264565_ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/keyboardMoveDown ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_266298_ ()Z net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/handlePackSelection ()Z +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_279832_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/lambda$setupGhostRecipe$0 (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_5674_ ()V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/initFilterButtonTextures ()V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_6904_ (Lnet/minecraft/world/inventory/Slot;)V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/slotClicked (Lnet/minecraft/world/inventory/Slot;)V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_7173_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/setupGhostRecipe (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/ ()V net/minecraft/client/gui/screens/recipebook/GhostRecipe/ ()V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100140_ ()V net/minecraft/client/gui/screens/recipebook/GhostRecipe/clear ()V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100141_ (I)Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient; net/minecraft/client/gui/screens/recipebook/GhostRecipe/get (I)Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient; +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100143_ (Lnet/minecraft/world/item/crafting/Ingredient;II)V net/minecraft/client/gui/screens/recipebook/GhostRecipe/addIngredient (Lnet/minecraft/world/item/crafting/Ingredient;II)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100147_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/screens/recipebook/GhostRecipe/setRecipe (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100158_ ()I net/minecraft/client/gui/screens/recipebook/GhostRecipe/size ()I +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100159_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/GhostRecipe/getRecipe ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_280269_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/Minecraft;IIZF)V net/minecraft/client/gui/screens/recipebook/GhostRecipe/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/Minecraft;IIZF)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/ (Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe;Lnet/minecraft/world/item/crafting/Ingredient;II)V net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/ (Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe;Lnet/minecraft/world/item/crafting/Ingredient;II)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/m_100169_ ()I net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/getX ()I +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/m_100170_ ()I net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/getY ()I +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/m_100171_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100184_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/getRecipeCollection ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100194_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;IIIIF)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/init (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;IIIIF)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100204_ (Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/setVisible (Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100206_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/getLastRecipeClicked ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100212_ ()Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isVisible ()Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_5953_ (DD)Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isMouseOver (DD)Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_6375_ (DDI)Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_93692_ (Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/setFocused (Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_93696_ ()Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isFocused ()Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_6222_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/calculateIngredientsPositions (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton;II[Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton;II[Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/m_6222_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/calculateIngredientsPositions (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100297_ (DDIIIII)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/hasClickedOutside (DDIIIII)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100309_ (IILnet/minecraft/client/Minecraft;ZLnet/minecraft/world/inventory/RecipeBookMenu;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/init (IILnet/minecraft/client/Minecraft;ZLnet/minecraft/world/inventory/RecipeBookMenu;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100328_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookTabButton;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$initVisuals$0 (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookTabButton;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100330_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$5 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100332_ (Lit/unimi/dsi/fastutil/objects/ObjectSet;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$4 (Lit/unimi/dsi/fastutil/objects/ObjectSet;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100335_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/pirateSpeechForThePeople (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100351_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateTabs ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100359_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$3 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100367_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$2 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100369_ (Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/setVisible (Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100380_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$1 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100382_ (Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateCollections (Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100384_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/toggleVisibility ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100385_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isVisible ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100386_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/tick ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100387_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100388_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/sendUpdateSettings ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100389_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateStackedContents ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100391_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/toggleFiltering ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100392_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/checkSearchStringUpdate ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100393_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isOffsetNextToMainGUI ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_170047_ (Ljava/util/List;Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateNarration$6 (Ljava/util/List;Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_170050_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isVisibleAccordingToBookData ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_181401_ (II)I net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateScreenPosition (II)I +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_181404_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/initVisuals ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_257619_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateFilterButtonTooltip ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_280128_ (Lnet/minecraft/client/gui/GuiGraphics;IIZF)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/renderGhostRecipe (Lnet/minecraft/client/gui/GuiGraphics;IIZF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_280545_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_280622_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/renderGhostRecipeTooltip (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5534_ (CI)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5674_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/initFilterButtonTextures ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5953_ (DD)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isMouseOver (DD)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_6375_ (DDI)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_6904_ (Lnet/minecraft/world/inventory/Slot;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/slotClicked (Lnet/minecraft/world/inventory/Slot;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7173_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/setupGhostRecipe (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7262_ (Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/recipesShown (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7920_ (III)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/keyReleased (III)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7933_ (III)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_93692_ (Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/setFocused (Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_93696_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isFocused ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100408_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getLastClickedRecipe ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100409_ (DDIIIII)Z net/minecraft/client/gui/screens/recipebook/RecipeBookPage/mouseClicked (DDIIIII)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100428_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/init (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100432_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent;)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/addListener (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100434_ (Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/recipesShown (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100436_ (Ljava/util/List;Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/updateCollections (Ljava/util/List;Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100439_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getLastClickedRecipeCollection ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100440_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/setInvisible ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100441_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100442_ ()Lnet/minecraft/stats/RecipeBook; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getRecipeBook ()Lnet/minecraft/stats/RecipeBook; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100443_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/updateButtonsForPage ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100444_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/updateArrowButtons ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_170053_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/listButtons (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_280282_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_280625_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/ (Lnet/minecraft/client/RecipeBookCategories;)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/ (Lnet/minecraft/client/RecipeBookCategories;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_100449_ (Lnet/minecraft/client/ClientRecipeBook;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/updateVisibility (Lnet/minecraft/client/ClientRecipeBook;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_100451_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/startAnimation (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_100455_ ()Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/getCategory ()Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_280194_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100471_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/gui/screens/recipebook/RecipeButton/getCollection ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100479_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/client/gui/screens/recipebook/RecipeBookPage;)V net/minecraft/client/gui/screens/recipebook/RecipeButton/init (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/client/gui/screens/recipebook/RecipeBookPage;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100482_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeButton/isOnlyOption ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100488_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/RecipeButton/getRecipe ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100490_ ()Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeButton/getOrderedRecipes ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/recipebook/RecipeButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_280187_ ()Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeButton/getTooltipText ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_5711_ ()I net/minecraft/client/gui/screens/recipebook/RecipeButton/getWidth ()I +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_7972_ (I)Z net/minecraft/client/gui/screens/recipebook/RecipeButton/isValidClickButton (I)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/RecipeButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeCollection/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100498_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasKnownRecipes ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100499_ (Lnet/minecraft/stats/RecipeBook;)V net/minecraft/client/gui/screens/recipebook/RecipeCollection/updateKnownRecipes (Lnet/minecraft/stats/RecipeBook;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100501_ (Lnet/minecraft/world/entity/player/StackedContents;IILnet/minecraft/stats/RecipeBook;)V net/minecraft/client/gui/screens/recipebook/RecipeCollection/canCraft (Lnet/minecraft/world/entity/player/StackedContents;IILnet/minecraft/stats/RecipeBook;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100506_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/isCraftable (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100508_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/allRecipesHaveSameResult (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100510_ (Z)Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeCollection/getRecipes (Z)Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100512_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasCraftable ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100513_ (Z)Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeCollection/getDisplayRecipes (Z)Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100515_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasFitting ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100516_ ()Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeCollection/getRecipes ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100517_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasSingleResultItem ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_266543_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/client/gui/screens/recipebook/RecipeCollection/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/client/gui/screens/recipebook/RecipeShownListener/m_7262_ (Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeShownListener/recipesShown (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/m_6916_ ()V net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239033_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentBottom ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239041_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onReportChanged ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239099_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/selectInfoTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239146_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentRight ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239320_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/selectChatTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239333_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/completeButtonTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239357_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentLeft ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239485_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/commentBoxBottom ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239741_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239871_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239881_ (Ljava/lang/Object;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$9 (Ljava/lang/Object;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239970_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240000_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/sendReport ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240099_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/commentBoxTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240265_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onReportSendSuccess ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240313_ (Ljava/lang/Throwable;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onReportSendError (Ljava/lang/Throwable;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_242956_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$11 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_242964_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/displayReportSendError (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252567_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$2 (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252569_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$4 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252570_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$0 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252889_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/saveDraft ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_253119_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/clearDraft ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_257078_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$onReportChanged$7 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279833_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279834_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$onReportSendSuccess$12 ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279835_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$displayReportSendError$13 ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279836_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279837_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$10 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279838_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$8 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/reporting/ChatReportScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_7856_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/init ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_7861_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/removed ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_86600_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/tick ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ (Lnet/minecraft/client/gui/screens/reporting/ChatReportScreen;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ (Lnet/minecraft/client/gui/screens/reporting/ChatReportScreen;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_207212_ (I)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_239524_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_279839_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/lambda$initButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_279840_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/lambda$initButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_280550_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/renderTitle (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_6913_ ()Z net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/function/Predicate;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/function/Predicate;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/m_239015_ (ILnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/fillNextPage (ILnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/m_253069_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/acceptMessage (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/m_239556_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/acceptDivider (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/m_239761_ (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/acceptMessage (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_238942_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$300 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239043_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/onReachedScrollTop ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239184_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$700 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239237_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$000 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239465_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$200 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239478_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/extendLog ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239506_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$900 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239590_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239634_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/updateConfirmSelectedButton ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239654_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1300 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239859_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239862_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$400 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239965_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1000 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240004_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$500 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240165_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$100 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240197_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1100 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240419_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$600 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240425_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1200 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_241847_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/canReport (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_7856_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/init ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;Lnet/minecraft/client/Minecraft;I)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;Lnet/minecraft/client/Minecraft;I)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_238964_ (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/renderItem (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239341_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getFooterTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239556_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/acceptDivider (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239761_ (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/acceptMessage (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239954_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getMaxVisibleEntries ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_240017_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/updateHeading (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_240268_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/access$800 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_240326_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/shouldHighlightEntry (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_264254_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_264254_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/setSelected (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_93410_ (D)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/setScrollAmount (D)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_238989_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/canSelect ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_239825_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/isSelected ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_240270_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/canReport ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/ (Ljava/util/UUID;Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/ (Ljava/util/UUID;Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238587_ ()Ljava/util/UUID; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/sender ()Ljava/util/UUID; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238665_ ()Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/entry ()Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/hashCode ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/hashCode ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/m_239747_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/canCombine (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;ZZ)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;ZZ)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_238989_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/canSelect ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_239492_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/getTextIndent ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_239825_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/isSelected ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_239870_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/getMaximumTextWidth ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_240066_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/toggleReport ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_240270_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/canReport ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_240479_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/renderTag (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_280452_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/renderSelectedCheckmark (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_7933_ (III)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ ()V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239216_ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/access$000 (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239592_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/descriptionBottom ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239650_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/contentRight ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239698_ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/access$100 (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239885_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/contentLeft ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239996_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/descriptionTop ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_240065_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/buttonTop ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_279841_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_279842_ (Z)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lambda$init$0 (Z)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_279843_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_7856_ ()V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/init ()V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_239167_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/findEntry (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_239291_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)Z net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/lambda$findEntry$0 (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)Z +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/setSelected (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_239824_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/getReason ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/social/PlayerEntry/ ()V net/minecraft/client/gui/screens/social/PlayerEntry/ ()V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Ljava/lang/String;Ljava/util/function/Supplier;Z)V net/minecraft/client/gui/screens/social/PlayerEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Ljava/lang/String;Ljava/util/function/Supplier;Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100594_ (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry/getEntryNarationMessage (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100596_ (ZLnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry/onHiddenOrShown (ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100600_ ()Ljava/lang/String; net/minecraft/client/gui/screens/social/PlayerEntry/getPlayerName ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100608_ (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$2 (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100618_ ()Ljava/util/UUID; net/minecraft/client/gui/screens/social/PlayerEntry/getPlayerId ()Ljava/util/UUID; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100619_ (Z)V net/minecraft/client/gui/screens/social/PlayerEntry/setRemoved (Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100621_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/social/PlayerEntry/getStatusComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/social/PlayerEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_170070_ (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$3 (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_240694_ ()Z net/minecraft/client/gui/screens/social/PlayerEntry/hasRecentMessages ()Z +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_240725_ ()Z net/minecraft/client/gui/screens/social/PlayerEntry/isRemoved ()Z +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_240730_ (Z)V net/minecraft/client/gui/screens/social/PlayerEntry/setHasRecentMessages (Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_260758_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_260759_ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$1 (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_260909_ ()Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/social/PlayerEntry/createReportButtonTooltip ()Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_262454_ (Z)V net/minecraft/client/gui/screens/social/PlayerEntry/updateHideAndShowButton (Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/social/PlayerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/social/PlayerEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/social/PlayerEntry$1/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry$1/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerEntry$2/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry$2/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry$2/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry$2/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerEntry$3/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry$3/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry$3/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry$3/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100675_ ()Ljava/util/Set; net/minecraft/client/gui/screens/social/PlayerSocialManager/getHiddenPlayers ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100676_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/addPlayer (Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100678_ (Ljava/lang/String;)Ljava/util/UUID; net/minecraft/client/gui/screens/social/PlayerSocialManager/getDiscoveredUUID (Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100680_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/hidePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100682_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/showPlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100684_ (Ljava/util/UUID;)Z net/minecraft/client/gui/screens/social/PlayerSocialManager/shouldHideMessageFrom (Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100686_ (Ljava/util/UUID;)Z net/minecraft/client/gui/screens/social/PlayerSocialManager/isHidden (Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100688_ (Ljava/util/UUID;)Z net/minecraft/client/gui/screens/social/PlayerSocialManager/isBlocked (Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100690_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/removePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_194059_ ()V net/minecraft/client/gui/screens/social/PlayerSocialManager/startOnlineMode ()V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_194060_ ()V net/minecraft/client/gui/screens/social/PlayerSocialManager/stopOnlineMode ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100709_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$updatePlayersFromChatLog$0 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100714_ (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/addPlayer (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100717_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/setFilter (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100722_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/removePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100724_ ()Z net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/isEmpty ()Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100725_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updateFilteredPlayers ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240241_ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Z net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$updateFilteredPlayers$4 (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240702_ (Ljava/util/Collection;DZ)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updatePlayerList (Ljava/util/Collection;DZ)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240704_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/sortPlayerEntries ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240705_ (Ljava/util/Collection;D)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updateFiltersAndScroll (Ljava/util/Collection;D)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240708_ (Ljava/util/Map;Z)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updatePlayersFromChatLog (Ljava/util/Map;Z)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240718_ (Ljava/util/Collection;Ljava/util/Map;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/addOnlinePlayers (Ljava/util/Collection;Ljava/util/Map;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_243027_ (Lcom/mojang/authlib/GameProfile;Ljava/util/UUID;)Lnet/minecraft/client/gui/screens/social/PlayerEntry; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$updatePlayersFromChatLog$1 (Lcom/mojang/authlib/GameProfile;Ljava/util/UUID;)Lnet/minecraft/client/gui/screens/social/PlayerEntry; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_243352_ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$sortPlayerEntries$2 (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_246121_ (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Ljava/util/Collection; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/collectProfilesFromChatLog (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Ljava/util/Collection; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_252575_ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$sortPlayerEntries$3 (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_280310_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/enableScissor (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100767_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/updateServerLabel (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100771_ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/showPage (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100775_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/onAddPlayer (Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100779_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/onRemovePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100784_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100788_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/checkSearchStringUpdate (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100790_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100795_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100799_ ()I net/minecraft/client/gui/screens/social/SocialInteractionsScreen/windowHeight ()I +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100801_ ()I net/minecraft/client/gui/screens/social/SocialInteractionsScreen/listEnd ()I +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100802_ ()I net/minecraft/client/gui/screens/social/SocialInteractionsScreen/marginX ()I +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/social/SocialInteractionsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_279844_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_279845_ (Z)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$3 (Z)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_280273_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_7043_ ()Z net/minecraft/client/gui/screens/social/SocialInteractionsScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/init ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/social/SocialInteractionsScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_86600_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/tick ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ (Ljava/lang/String;I)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/m_170144_ ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/$values ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/values ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/values ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ ()V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ (IIIILnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ (IIIILnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_239019_ ()I net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/getInnerHeight ()I +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_239725_ ()D net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/scrollRate ()D +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_240206_ (D)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/setScrollAmount (D)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_260944_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/addEventTypeProperties (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261018_ (Z)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/onOptInChanged (Z)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261118_ (Ljava/util/function/DoubleConsumer;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/setOnScrolledListener (Ljava/util/function/DoubleConsumer;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261199_ (Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;Lnet/minecraft/client/telemetry/TelemetryEventType;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/addEventType (Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;Lnet/minecraft/client/telemetry/TelemetryEventType;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261270_ (Z)Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/buildContent (Z)Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261310_ ()I net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/containerWidth ()I +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_279846_ (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/lambda$renderContents$0 (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/ (Lnet/minecraft/client/gui/layouts/GridLayout;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/ (Lnet/minecraft/client/gui/layouts/GridLayout;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260488_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/narration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260717_ ()Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/container ()Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/hashCode ()I net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/hashCode ()I +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/ (I)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/ (I)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_260899_ (I)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addSpacer (I)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_260980_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addLine (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_261135_ ()Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/build ()Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_261152_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addLine (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_261236_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addHeader (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ ()V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260814_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/openLastScreen (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260900_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/openFeedbackLink (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260955_ ()Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/createTelemetryButton ()Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260998_ (D)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$init$0 (D)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_261011_ (Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$createTelemetryButton$2 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_261269_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/openDataFolder (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_263882_ (Lnet/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$init$1 (Lnet/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_264243_ (Lnet/minecraft/client/gui/components/AbstractWidget;Lnet/minecraft/client/gui/components/AbstractWidget;)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/twoButtonContainer (Lnet/minecraft/client/gui/components/AbstractWidget;Lnet/minecraft/client/gui/components/AbstractWidget;)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_279847_ (Z)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$openFeedbackLink$3 (Z)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_7379_ ()V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/onClose ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_7856_ ()V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/init ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ (Ljava/util/Collection;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ (Ljava/util/Collection;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_245513_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_245914_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_267719_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_268776_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$3 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_279848_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_245404_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/access$100 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_245549_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/access$200 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_245813_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_247094_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/access$000 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/client/Minecraft;Ljava/util/Collection;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/client/Minecraft;Ljava/util/Collection;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/m_5759_ ()I net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/MultiLineLabel;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/MultiLineLabel;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100906_ (Ljava/nio/file/Path;Lnet/minecraft/client/Minecraft;)Ljava/nio/file/Path; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createTempDataPackDirFromExistingWorld (Ljava/nio/file/Path;Lnet/minecraft/client/Minecraft;)Ljava/nio/file/Path; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100912_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/copyBetweenDirs (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100967_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/popScreen ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100968_ ()Ljava/nio/file/Path; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/getTempDataPackDir ()Ljava/nio/file/Path; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100972_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/onCreate ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100976_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/removeTempDataPackDir ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_142416_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/addRenderableWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_205447_ (Z)Lnet/minecraft/world/level/LevelSettings; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createLevelSettings (Z)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232868_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createNewWorldDirectory ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232893_ (Lcom/mojang/serialization/DynamicOps;Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$11 (Lcom/mojang/serialization/DynamicOps;Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232896_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/openFresh (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232899_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/queueLoadScreen (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232902_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232920_ (Ljava/nio/file/Path;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createNewWorldDirectory$17 (Ljava/nio/file/Path;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232922_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createTempDataPackDirFromExistingWorld$19 (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232925_ (Ljava/util/List;Ljava/lang/String;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$tryApplyNewDataPacks$9 (Ljava/util/List;Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232930_ (Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createTempDataPackDirFromExistingWorld$20 (Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232937_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232941_ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$removeTempDataPackDir$16 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232943_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createNewWorldDirectory$18 (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244671_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$13 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244672_ (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openFresh$1 (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244673_ (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$12 (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244676_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openFresh$2 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244678_ (Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$onCreate$6 (Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_245184_ (Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createNewWorld (Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_245574_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/server/WorldLoader$InitConfig; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createDefaultLoadConfig (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/server/WorldLoader$InitConfig; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267511_ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267512_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$new$0 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267581_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$300 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267602_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$500 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267637_ (Lnet/minecraft/world/level/WorldDataConfiguration;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/getDataPackSelectionSettings (Lnet/minecraft/world/level/WorldDataConfiguration;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267682_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$400 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267719_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267734_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/openDataPackSelectionScreen (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267746_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$700 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267748_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/getUiState ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267763_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$600 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267793_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$100 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267796_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$000 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267821_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$200 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268777_ (Ljava/util/function/Consumer;Z)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$14 (Ljava/util/function/Consumer;Z)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268780_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;Z)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$tryApplyNewDataPacks$10 (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;Z)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268781_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openExperimentsScreen$7 (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268782_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openDataPackSelectionScreen$8 (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_269431_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/applyNewPackConfig (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_269443_ (Lnet/minecraft/server/packs/repository/PackRepository;ZLjava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tryApplyNewDataPacks (Lnet/minecraft/server/packs/repository/PackRepository;ZLjava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_269545_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/openExperimentsScreen (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_275847_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createFromExisting (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_279849_ (Ljava/util/function/Consumer;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$15 (Ljava/util/function/Consumer;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_280039_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/renderDirtBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7787_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/addWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243966_ ()Lnet/minecraft/world/level/levelgen/WorldGenSettings; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/worldGenSettings ()Lnet/minecraft/world/level/levelgen/WorldGenSettings; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243979_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/dataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/hashCode ()I net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267565_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$4 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267575_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$7 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267596_ (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$6 (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267645_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$1 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267681_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267685_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$2 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_268784_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_275774_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$0 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_279850_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$8 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_279851_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$5 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_279852_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$3 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267578_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$new$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267650_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/openGameRulesScreen ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267671_ (Ljava/util/Optional;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$openGameRulesScreen$3 (Ljava/util/Optional;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267801_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$new$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_268785_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$new$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267567_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$4 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267586_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267591_ (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/createTypeButtonNarration (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267636_ ()Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$5 ()Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267652_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/openPresetEditor ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267668_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$0 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267681_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267705_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$8 (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267785_ ()Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$6 ()Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267806_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/createWorldTypeValueSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267830_ (Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper;Lnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$7 (Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper;Lnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_279853_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$1 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_279854_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$3 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/ (Lnet/minecraft/world/level/GameRules;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/ (Lnet/minecraft/world/level/GameRules;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101058_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101060_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/markInvalid (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101062_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$000 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101072_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101074_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/clearInvalid (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101076_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$100 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101083_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$200 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101085_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$300 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101088_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$400 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101090_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$500 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101094_ ()V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/updateDoneButton ()V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_170209_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$600 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_170211_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$700 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_267513_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/lambda$init$2 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/m_170213_ (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/lambda$new$1 (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/m_170217_ (Ljava/lang/String;Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/lambda$new$0 (Ljava/lang/String;Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory/m_101154_ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory/create (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Ljava/util/List;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Ljava/util/List;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/m_280223_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/renderLabel (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/m_101179_ (Lnet/minecraft/world/level/GameRules$IntegerValue;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/lambda$new$0 (Lnet/minecraft/world/level/GameRules$IntegerValue;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/ (Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/m_101209_ (Ljava/util/Map$Entry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/lambda$new$1 (Ljava/util/Map$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/m_170228_ (Ljava/util/Map$Entry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/lambda$new$0 (Ljava/util/Map$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;Ljava/util/Map;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;Ljava/util/Map;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101222_ (Lnet/minecraft/world/level/GameRules$Category;)Ljava/util/Map; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/lambda$addEntry$2 (Lnet/minecraft/world/level/GameRules$Category;)Ljava/util/Map; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101224_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/addEntry (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101227_ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/lambda$visitBoolean$0 (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101232_ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/lambda$visitInteger$1 (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_6891_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/visitBoolean (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_6894_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/visitInteger (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101258_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Z net/minecraft/client/gui/screens/worldselection/EditWorldScreen/makeBackupAndShowToast (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Z +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101260_ (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/makeBackupAndShowToast (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101272_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101279_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101291_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101293_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101295_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/onRename ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_182586_ (Ljava/nio/file/Path;)Z net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$10 (Ljava/nio/file/Path;)Z +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_182593_ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$2 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279855_ (ZZ)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$7 (ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279856_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279857_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$1 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279858_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279859_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_267719_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269049_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/getHumanReadableTitle (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269086_ (Ljava/util/List;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$onDone$6 (Ljava/util/List;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269193_ (Lnet/minecraft/client/gui/screens/worldselection/ExperimentsScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$5 (Lnet/minecraft/client/gui/screens/worldselection/ExperimentsScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269201_ (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$1 (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269286_ (Lnet/minecraft/server/packs/repository/Pack;)Z net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$0 (Lnet/minecraft/server/packs/repository/Pack;)Z +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269497_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269499_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$2 (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269544_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/onDone ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_273999_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/LevelSettings;ZLnet/minecraft/core/Registry;)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/LevelSettings;ZLnet/minecraft/core/Registry;)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_101315_ (Lnet/minecraft/client/Minecraft;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen; net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/create (Lnet/minecraft/client/Minecraft;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen; +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_101321_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_101323_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_7861_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/removed ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/ ()V net/minecraft/client/gui/screens/worldselection/PresetEditor/ ()V +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232952_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; net/minecraft/client/gui/screens/worldselection/PresetEditor/fixedBiomeConfigurator (Lnet/minecraft/core/Holder;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232961_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$3 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232967_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; net/minecraft/client/gui/screens/worldselection/PresetEditor/flatWorldConfigurator (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232976_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/worldselection/PresetEditor/createEditScreen (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_254760_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$1 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_254761_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$flatWorldConfigurator$4 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_257080_ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$fixedBiomeConfigurator$5 (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_267516_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$0 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_267517_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/core/Holder;)V net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$2 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_101375_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_101377_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_232979_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_232981_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_232986_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_244686_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_276090_ (ZZ)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/updateButtonStatus (ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_279860_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_279861_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7861_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/removed ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/ (Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/m_267742_ (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid/builder (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/m_267819_ ()V net/minecraft/client/gui/screens/worldselection/SwitchGrid/refreshStates ()V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/ (I)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/ (I)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_267583_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/addSwitch (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_267588_ (Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/build (Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_267620_ (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/withPaddingLeft (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_269089_ ()V net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/increaseRow ()V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_269119_ (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/withRowSpacing (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_269141_ (IZ)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/withInfoUnderneath (IZ)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/ (IZ)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/ (IZ)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268439_ ()I net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/maxInfoRows ()I +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268690_ ()Z net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/alwaysMaxHeight ()Z +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/hashCode ()I net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/util/function/BooleanSupplier;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/util/function/BooleanSupplier;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267403_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/stateSupplier ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267423_ ()Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/button ()Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267483_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/isActiveCondition ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/hashCode ()I net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/m_267626_ ()V net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/refreshState ()V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;I)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;I)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267664_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/withInfo (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267723_ (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$2 (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267757_ (Ljava/util/function/BooleanSupplier;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/withIsActiveCondition (Ljava/util/function/BooleanSupplier;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267807_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$3 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_268786_ (Lnet/minecraft/client/gui/components/Tooltip;Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$0 (Lnet/minecraft/client/gui/components/Tooltip;Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_268787_ (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$1 (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_268788_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;ILnet/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$4 (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;ILnet/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_269062_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/build (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_232990_ ()Lnet/minecraft/server/ReloadableServerResources; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataPackResources ()Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243708_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/worldgenRegistries ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243796_ ()Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/selectedDimensions ()Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243842_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244272_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/options ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244375_ ()Lnet/minecraft/core/Registry; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/datapackDimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/hashCode ()I net/minecraft/client/gui/screens/worldselection/WorldCreationContext/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_245713_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/withDimensions (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_245725_ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/withSettings (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_246480_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/worldgenLoadContext ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_246527_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/withOptions (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ (Ljava/nio/file/Path;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ (Ljava/nio/file/Path;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267573_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getSettings ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267576_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setWorldType (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267593_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isBonusChest ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267597_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getName ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267601_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setAllowCheats (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267608_ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/updatePresetLists ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267615_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isGenerateStructures ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267616_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setGameMode (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267627_ (Lnet/minecraft/core/HolderSet$Named;)Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$getNonEmptyList$6 (Lnet/minecraft/core/HolderSet$Named;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267649_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setName (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267656_ (Lnet/minecraft/world/level/GameRules;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setGameRules (Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267658_ (Lnet/minecraft/core/Registry;)Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$updatePresetLists$4 (Lnet/minecraft/core/Registry;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267666_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setBonusChest (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267674_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getAltPresetList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267677_ (Lnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$setSeed$2 (Lnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267692_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setSettings (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267707_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getSeed ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267710_ (Lnet/minecraft/world/level/WorldDataConfiguration;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/tryUpdateDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267717_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/updateDimensions (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267720_ (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$onChanged$1 (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267721_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267735_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isDebug ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267744_ ()Lnet/minecraft/client/gui/screens/worldselection/PresetEditor; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getPresetEditor ()Lnet/minecraft/client/gui/screens/worldselection/PresetEditor; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267754_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267755_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/addListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267758_ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/onChanged ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267759_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setSeed (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267761_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getGameMode ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267770_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setGenerateStructures (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267777_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/findPreset (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267788_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$findPreset$5 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267790_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isHardcore ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267798_ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$setWorldType$3 (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267811_ (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getNonEmptyList (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267813_ (Ljava/util/List;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$getNonEmptyList$7 (Ljava/util/List;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267815_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getNormalPresetList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267816_ ()Lnet/minecraft/world/Difficulty; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267822_ (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$onChanged$0 (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267823_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isAllowCheats ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267828_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getWorldType ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_275837_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getTargetFolder ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_275848_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/findResultFolder (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/m_267564_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/m_267789_ ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/$values ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/values ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/values ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ (Lnet/minecraft/core/Holder;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/f_267398_ ()Lnet/minecraft/core/Holder; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/preset ()Lnet/minecraft/core/Holder; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/hashCode ()I net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267572_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/describePreset ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267580_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/lambda$describePreset$0 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267589_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/isAmplified ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267678_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/lambda$isAmplified$1 (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ ()V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233095_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/promptBundledPackLoadFailure ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233116_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/safeCloseAccess (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233119_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/server/WorldStem; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadWorldStem (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/server/WorldStem; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233122_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldStem; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadWorldStem (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldStem; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233131_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$9 (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233133_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadLevel (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233136_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$6 (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233140_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZLjava/lang/Runnable;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/askForBackup (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZLjava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233145_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZZ)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/doLoadLevel (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233150_ (Ljava/lang/Runnable;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$confirmWorldCreation$13 (Ljava/lang/Runnable;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233155_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/createWorldAccess (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233157_ (Ljava/lang/String;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Ljava/util/function/Function;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/createFreshLevel (Ljava/lang/String;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Ljava/util/function/Function;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233169_ (Ljava/lang/String;Ljava/lang/Runnable;ZZ)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$askForBackup$12 (Ljava/lang/String;Ljava/lang/Runnable;ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233174_ (Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$11 (Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233176_ (Ljava/lang/Void;)Ljava/lang/Boolean; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$7 (Ljava/lang/Void;)Ljava/lang/Boolean; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233178_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$4 (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233182_ (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$8 (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_244696_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$recreateWorldData$3 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_244698_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$loadWorldStem$1 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_244700_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$recreateWorldData$2 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_245064_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/createLevelFromExistingSettings (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_246225_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/recreateWorldData (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_246486_ (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;)Ljava/lang/Object; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadWorldDataBlocking (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;)Ljava/lang/Object; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_247188_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$PackConfig; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/getPackConfigFromLevelData (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$PackConfig; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_257083_ (Ljava/util/function/Function;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$createFreshLevel$0 (Ljava/util/function/Function;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_260762_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$10 (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_269260_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lcom/mojang/serialization/Lifecycle;Ljava/lang/Runnable;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/confirmWorldCreation (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lcom/mojang/serialization/Lifecycle;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_275780_ ()V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$5 ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244151_ ()Lnet/minecraft/core/Registry; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/existingDimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244166_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/levelSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244534_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/options ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/hashCode ()I net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ (Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen;Lnet/minecraft/client/Minecraft;IIIIILjava/lang/String;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ (Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen;Lnet/minecraft/client/Minecraft;IIIIILjava/lang/String;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_101684_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getSelectedOpt ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_101685_ ()Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getScreen ()Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233191_ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/access$000 (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233195_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelSummary;)Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList/filterAccepts (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelSummary;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233198_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/fillLevels (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233201_ (Ljava/lang/Throwable;)Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/lambda$loadLevels$0 (Ljava/lang/Throwable;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233206_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/reloadWorldList ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233211_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/handleLevelLoadFailure (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233213_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/loadLevels ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233214_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/fillLoadingLevels ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233215_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/notifyListUpdated ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_239664_ (Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/handleNewLevels (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_239900_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/updateFilter (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_239987_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/pollLevelsIgnoreErrors ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/setSelected (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_93516_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/clearEntries ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/close ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/close ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/m_214209_ ()Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/isSelectable ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/m_214209_ ()Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/isSelectable ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/world/level/storage/LevelSummary;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/world/level/storage/LevelSummary;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/close ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/close ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101704_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/joinWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101738_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/deleteWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101739_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/editWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101740_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$joinWorld$2 (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101743_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/recreateWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101744_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/loadWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101745_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/queueLoadScreen ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101746_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/loadIcon ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170321_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$deleteWorld$3 (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170323_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/doDeleteWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170324_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/getLevelName ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170327_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$joinWorld$1 ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_214209_ ()Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/isSelectable ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_233241_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$editWorld$4 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_233245_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$recreateWorld$6 ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_275781_ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$recreateWorld$5 (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_289841_ (ZZ)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$joinWorld$0 (ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_289856_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/validateIconFile ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/gui/spectator/PlayerMenuItem/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/PlayerMenuItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_7304_ ()Z net/minecraft/client/gui/spectator/PlayerMenuItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/PlayerMenuItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/PlayerMenuItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/ ()V net/minecraft/client/gui/spectator/SpectatorMenu/ ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/ (Lnet/minecraft/client/gui/spectator/SpectatorMenuListener;)V net/minecraft/client/gui/spectator/SpectatorMenu/ (Lnet/minecraft/client/gui/spectator/SpectatorMenuListener;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101786_ ()Ljava/util/List; net/minecraft/client/gui/spectator/SpectatorMenu/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101787_ (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/SpectatorMenu/getItem (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101794_ (Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory;)V net/minecraft/client/gui/spectator/SpectatorMenu/selectCategory (Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101796_ ()Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/SpectatorMenu/getSelectedItem ()Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101797_ (I)V net/minecraft/client/gui/spectator/SpectatorMenu/selectSlot (I)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101799_ ()Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory; net/minecraft/client/gui/spectator/SpectatorMenu/getSelectedCategory ()Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101800_ ()V net/minecraft/client/gui/spectator/SpectatorMenu/exit ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101801_ ()I net/minecraft/client/gui/spectator/SpectatorMenu/getSelectedSlot ()I +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101802_ ()Lnet/minecraft/client/gui/spectator/categories/SpectatorPage; net/minecraft/client/gui/spectator/SpectatorMenu/getCurrentPage ()Lnet/minecraft/client/gui/spectator/categories/SpectatorPage; +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/ ()V net/minecraft/client/gui/spectator/SpectatorMenu$1/ ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenu$1/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenu$1/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenu$1/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenu$1/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/ ()V net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/ ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/ (IZ)V net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/ (IZ)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/SpectatorMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenuItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenuItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenuItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenuItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenuListener/m_7613_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenuListener/onSpectatorMenuClosed (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/SpectatorPage/ (Ljava/util/List;I)V net/minecraft/client/gui/spectator/categories/SpectatorPage/ (Ljava/util/List;I)V +MD: net/minecraft/client/gui/spectator/categories/SpectatorPage/m_101851_ (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/categories/SpectatorPage/getItem (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/categories/SpectatorPage/m_101853_ ()I net/minecraft/client/gui/spectator/categories/SpectatorPage/getSelectedSlot ()I +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ (Ljava/util/Collection;)V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ (Ljava/util/Collection;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_252581_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/lambda$new$2 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_252582_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/lambda$static$0 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_252583_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Z net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/lambda$new$1 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_7304_ ()Z net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_257827_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/stream/Stream; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/lambda$createTeamEntries$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_257833_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/Scoreboard;)Ljava/util/List; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/createTeamEntries (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/Scoreboard;)Ljava/util/List; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_7304_ ()Z net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_257760_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/Optional; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/create (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/Optional; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_7304_ ()Z net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/main/GameConfig/ (Lnet/minecraft/client/main/GameConfig$UserData;Lcom/mojang/blaze3d/platform/DisplayData;Lnet/minecraft/client/main/GameConfig$FolderData;Lnet/minecraft/client/main/GameConfig$GameData;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V net/minecraft/client/main/GameConfig/ (Lnet/minecraft/client/main/GameConfig$UserData;Lcom/mojang/blaze3d/platform/DisplayData;Lnet/minecraft/client/main/GameConfig$FolderData;Lnet/minecraft/client/main/GameConfig$GameData;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V +MD: net/minecraft/client/main/GameConfig$FolderData/ (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V net/minecraft/client/main/GameConfig$FolderData/ (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V +MD: net/minecraft/client/main/GameConfig$FolderData/m_246261_ ()Ljava/nio/file/Path; net/minecraft/client/main/GameConfig$FolderData/getExternalAssetSource ()Ljava/nio/file/Path; +MD: net/minecraft/client/main/GameConfig$GameData/ (ZLjava/lang/String;Ljava/lang/String;ZZ)V net/minecraft/client/main/GameConfig$GameData/ (ZLjava/lang/String;Ljava/lang/String;ZZ)V +MD: net/minecraft/client/main/GameConfig$QuickPlayData/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/main/GameConfig$QuickPlayData/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/main/GameConfig$QuickPlayData/equals (Ljava/lang/Object;)Z net/minecraft/client/main/GameConfig$QuickPlayData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278402_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/realms ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278424_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/multiplayer ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278449_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/singleplayer ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278493_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/path ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/hashCode ()I net/minecraft/client/main/GameConfig$QuickPlayData/hashCode ()I +MD: net/minecraft/client/main/GameConfig$QuickPlayData/m_278736_ ()Z net/minecraft/client/main/GameConfig$QuickPlayData/isEnabled ()Z +MD: net/minecraft/client/main/GameConfig$QuickPlayData/toString ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/toString ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$UserData/ (Lnet/minecraft/client/User;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V net/minecraft/client/main/GameConfig$UserData/ (Lnet/minecraft/client/User;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V +MD: net/minecraft/client/main/Main/ ()V net/minecraft/client/main/Main/ ()V +MD: net/minecraft/client/main/Main/ ()V net/minecraft/client/main/Main/ ()V +MD: net/minecraft/client/main/Main/m_129634_ (Ljava/lang/Integer;)Ljava/util/OptionalInt; net/minecraft/client/main/Main/ofNullable (Ljava/lang/Integer;)Ljava/util/OptionalInt; +MD: net/minecraft/client/main/Main/m_129636_ (Ljava/lang/String;)Z net/minecraft/client/main/Main/stringHasValue (Ljava/lang/String;)Z +MD: net/minecraft/client/main/Main/m_129638_ (Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;)Ljava/lang/Object; net/minecraft/client/main/Main/parseArgument (Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;)Ljava/lang/Object; +MD: net/minecraft/client/main/Main/m_195486_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/main/Main/emptyStringToEmptyOptional (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/main/Main/main ([Ljava/lang/String;)V net/minecraft/client/main/Main/main ([Ljava/lang/String;)V +MD: net/minecraft/client/main/Main$1/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/main/Main$1/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/main/Main$1/getPasswordAuthentication ()Ljava/net/PasswordAuthentication; net/minecraft/client/main/Main$1/getPasswordAuthentication ()Ljava/net/PasswordAuthentication; +MD: net/minecraft/client/main/Main$2/ (Ljava/lang/String;)V net/minecraft/client/main/Main$2/ (Ljava/lang/String;)V +MD: net/minecraft/client/main/Main$2/run ()V net/minecraft/client/main/Main$2/run ()V +MD: net/minecraft/client/main/Main$3/ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/main/Main$3/ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/main/Main$3/run ()V net/minecraft/client/main/Main$3/run ()V +MD: net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;)V net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;)V +MD: net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/client/model/AbstractZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AbstractZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AbstractZombieModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/AbstractZombieModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/AbstractZombieModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/AbstractZombieModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/AbstractZombieModel/m_6973_ (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V net/minecraft/client/model/AbstractZombieModel/setupAnim (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V +MD: net/minecraft/client/model/AbstractZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/client/model/AbstractZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/client/model/AgeableHierarchicalModel/ (FF)V net/minecraft/client/model/AgeableHierarchicalModel/ (FF)V +MD: net/minecraft/client/model/AgeableHierarchicalModel/ (FFLjava/util/function/Function;)V net/minecraft/client/model/AgeableHierarchicalModel/ (FFLjava/util/function/Function;)V +MD: net/minecraft/client/model/AgeableHierarchicalModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/AgeableHierarchicalModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/AgeableListModel/ (ZFF)V net/minecraft/client/model/AgeableListModel/ (ZFF)V +MD: net/minecraft/client/model/AgeableListModel/ (Ljava/util/function/Function;ZFFFFF)V net/minecraft/client/model/AgeableListModel/ (Ljava/util/function/Function;ZFFFFF)V +MD: net/minecraft/client/model/AgeableListModel/ (ZFFFFF)V net/minecraft/client/model/AgeableListModel/ (ZFFFFF)V +MD: net/minecraft/client/model/AgeableListModel/ ()V net/minecraft/client/model/AgeableListModel/ ()V +MD: net/minecraft/client/model/AgeableListModel/m_102042_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$3 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_102052_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_102062_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_102072_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/AgeableListModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AgeableListModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/AgeableListModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AgeableListModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/AgeableListModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/AllayModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AllayModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AllayModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/AllayModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/AllayModel/m_233340_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/AllayModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/AllayModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/AllayModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/AllayModel/m_6973_ (Lnet/minecraft/world/entity/animal/allay/Allay;FFFFF)V net/minecraft/client/model/AllayModel/setupAnim (Lnet/minecraft/world/entity/animal/allay/Allay;FFFFF)V +MD: net/minecraft/client/model/AllayModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/AllayModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/AnimationUtils/ ()V net/minecraft/client/model/AnimationUtils/ ()V +MD: net/minecraft/client/model/AnimationUtils/m_102082_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/model/AnimationUtils/bobArms (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/model/AnimationUtils/m_102086_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/LivingEntity;Z)V net/minecraft/client/model/AnimationUtils/animateCrossbowCharge (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/LivingEntity;Z)V +MD: net/minecraft/client/model/AnimationUtils/m_102091_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/Mob;FF)V net/minecraft/client/model/AnimationUtils/swingWeaponDown (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/Mob;FF)V +MD: net/minecraft/client/model/AnimationUtils/m_102097_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Z)V net/minecraft/client/model/AnimationUtils/animateCrossbowHold (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Z)V +MD: net/minecraft/client/model/AnimationUtils/m_102102_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;ZFF)V net/minecraft/client/model/AnimationUtils/animateZombieArms (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;ZFF)V +MD: net/minecraft/client/model/AnimationUtils/m_170341_ (Lnet/minecraft/client/model/geom/ModelPart;FF)V net/minecraft/client/model/AnimationUtils/bobModelPart (Lnet/minecraft/client/model/geom/ModelPart;FF)V +MD: net/minecraft/client/model/ArmedModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/ArmedModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/ArmorStandArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ArmorStandArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ArmorStandArmorModel/m_170347_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ArmorStandArmorModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ArmorStandArmorModel/m_6973_ (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V net/minecraft/client/model/ArmorStandArmorModel/setupAnim (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V +MD: net/minecraft/client/model/ArmorStandArmorModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ArmorStandArmorModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ArmorStandArmorModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ArmorStandArmorModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/ArmorStandModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ArmorStandModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ArmorStandModel/m_170357_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ArmorStandModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ArmorStandModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/ArmorStandModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ArmorStandModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/ArmorStandModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/ArmorStandModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/ArmorStandModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6839_ (Lnet/minecraft/world/entity/decoration/ArmorStand;FFF)V net/minecraft/client/model/ArmorStandModel/prepareMobModel (Lnet/minecraft/world/entity/decoration/ArmorStand;FFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/ArmorStandModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6973_ (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V net/minecraft/client/model/ArmorStandModel/setupAnim (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ArmorStandModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ArmorStandModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/AxolotlModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AxolotlModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AxolotlModel/m_170372_ (F)V net/minecraft/client/model/AxolotlModel/setupWaterHoveringAnimation (F)V +MD: net/minecraft/client/model/AxolotlModel/m_170374_ (FF)F net/minecraft/client/model/AxolotlModel/lerpTo (FF)F +MD: net/minecraft/client/model/AxolotlModel/m_170377_ (FFF)F net/minecraft/client/model/AxolotlModel/lerpTo (FFF)F +MD: net/minecraft/client/model/AxolotlModel/m_170388_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V net/minecraft/client/model/AxolotlModel/saveAnimationValues (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V +MD: net/minecraft/client/model/AxolotlModel/m_170390_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FF)V net/minecraft/client/model/AxolotlModel/setupInitialAnimationValues (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FF)V +MD: net/minecraft/client/model/AxolotlModel/m_170403_ (Lnet/minecraft/client/model/geom/ModelPart;FFF)V net/minecraft/client/model/AxolotlModel/lerpPart (Lnet/minecraft/client/model/geom/ModelPart;FFF)V +MD: net/minecraft/client/model/AxolotlModel/m_170412_ (F)V net/minecraft/client/model/AxolotlModel/setupPlayDeadAnimation (F)V +MD: net/minecraft/client/model/AxolotlModel/m_170414_ (FF)V net/minecraft/client/model/AxolotlModel/setupLayStillOnGroundAnimation (FF)V +MD: net/minecraft/client/model/AxolotlModel/m_170417_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/AxolotlModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/AxolotlModel/m_170418_ (FF)V net/minecraft/client/model/AxolotlModel/setupGroundCrawlingAnimation (FF)V +MD: net/minecraft/client/model/AxolotlModel/m_170421_ ()V net/minecraft/client/model/AxolotlModel/applyMirrorLegRotations ()V +MD: net/minecraft/client/model/AxolotlModel/m_170422_ (FF)V net/minecraft/client/model/AxolotlModel/setupSwimmingAnimation (FF)V +MD: net/minecraft/client/model/AxolotlModel/m_252862_ (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V net/minecraft/client/model/AxolotlModel/setRotationFromVector (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/AxolotlModel/m_253263_ (Lnet/minecraft/client/model/geom/ModelPart;)Lorg/joml/Vector3f; net/minecraft/client/model/AxolotlModel/getRotationVector (Lnet/minecraft/client/model/geom/ModelPart;)Lorg/joml/Vector3f; +MD: net/minecraft/client/model/AxolotlModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/AxolotlModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AxolotlModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/AxolotlModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AxolotlModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/AxolotlModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/AxolotlModel/m_6973_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FFFFF)V net/minecraft/client/model/AxolotlModel/setupAnim (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FFFFF)V +MD: net/minecraft/client/model/BatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BatModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BatModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BatModel/m_170428_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BatModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BatModel/m_6973_ (Lnet/minecraft/world/entity/ambient/Bat;FFFFF)V net/minecraft/client/model/BatModel/setupAnim (Lnet/minecraft/world/entity/ambient/Bat;FFFFF)V +MD: net/minecraft/client/model/BeeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BeeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BeeModel/m_170440_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BeeModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BeeModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/BeeModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/BeeModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/BeeModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/BeeModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/BeeModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/BeeModel/m_6839_ (Lnet/minecraft/world/entity/animal/Bee;FFF)V net/minecraft/client/model/BeeModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Bee;FFF)V +MD: net/minecraft/client/model/BeeModel/m_6973_ (Lnet/minecraft/world/entity/animal/Bee;FFFFF)V net/minecraft/client/model/BeeModel/setupAnim (Lnet/minecraft/world/entity/animal/Bee;FFFFF)V +MD: net/minecraft/client/model/BeeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BeeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BlazeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BlazeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BlazeModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BlazeModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BlazeModel/m_170444_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BlazeModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BlazeModel/m_170445_ (I)Ljava/lang/String; net/minecraft/client/model/BlazeModel/getPartName (I)Ljava/lang/String; +MD: net/minecraft/client/model/BlazeModel/m_170447_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BlazeModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BlazeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BlazeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BoatModel/m_102282_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BoatModel/waterPatch ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BoatModel/m_170464_ (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/model/BoatModel/animatePaddle (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/model/BoatModel/m_245539_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/BoatModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/BoatModel/m_246203_ (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V net/minecraft/client/model/BoatModel/createChildren (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V +MD: net/minecraft/client/model/BoatModel/m_246613_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BoatModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BoatModel/m_6195_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/client/model/BoatModel/parts ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/client/model/BoatModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/BoatModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/BoatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BoatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BoatModel/m_6973_ (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V net/minecraft/client/model/BoatModel/setupAnim (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V +MD: net/minecraft/client/model/BookModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BookModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BookModel/m_102292_ (FFFF)V net/minecraft/client/model/BookModel/setupAnim (FFFF)V +MD: net/minecraft/client/model/BookModel/m_102316_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/BookModel/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/BookModel/m_170476_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BookModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BookModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/BookModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/CamelModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CamelModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CamelModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CamelModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CamelModel/m_245580_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CamelModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CamelModel/m_245891_ (Lnet/minecraft/world/entity/animal/camel/Camel;FFF)V net/minecraft/client/model/CamelModel/applyHeadRotation (Lnet/minecraft/world/entity/animal/camel/Camel;FFF)V +MD: net/minecraft/client/model/CamelModel/m_246444_ (Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/client/model/CamelModel/toggleInvisibleParts (Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/client/model/CamelModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CamelModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/CamelModel/m_6973_ (Lnet/minecraft/world/entity/animal/camel/Camel;FFFFF)V net/minecraft/client/model/CamelModel/setupAnim (Lnet/minecraft/world/entity/animal/camel/Camel;FFFFF)V +MD: net/minecraft/client/model/CamelModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/CamelModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/CatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CatModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/CatModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/CatModel/m_6839_ (Lnet/minecraft/world/entity/animal/Cat;FFF)V net/minecraft/client/model/CatModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Cat;FFF)V +MD: net/minecraft/client/model/CatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/CatModel/m_6973_ (Lnet/minecraft/world/entity/animal/Cat;FFFFF)V net/minecraft/client/model/CatModel/setupAnim (Lnet/minecraft/world/entity/animal/Cat;FFFFF)V +MD: net/minecraft/client/model/ChestBoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChestBoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChestBoatModel/m_245539_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/ChestBoatModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/ChestBoatModel/m_247175_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChestBoatModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChestRaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChestRaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChestRaftModel/m_245164_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/ChestRaftModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/ChestRaftModel/m_246875_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChestRaftModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChestedHorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChestedHorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChestedHorseModel/m_170483_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChestedHorseModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChestedHorseModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ChestedHorseModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ChestedHorseModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V net/minecraft/client/model/ChestedHorseModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V +MD: net/minecraft/client/model/ChestedHorseModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V net/minecraft/client/model/ChestedHorseModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V +MD: net/minecraft/client/model/ChickenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChickenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChickenModel/m_170491_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChickenModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChickenModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/ChickenModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ChickenModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/ChickenModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ChickenModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ChickenModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/CodModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CodModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CodModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CodModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CodModel/m_170495_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CodModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CodModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CodModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ColorableAgeableListModel/ ()V net/minecraft/client/model/ColorableAgeableListModel/ ()V +MD: net/minecraft/client/model/ColorableAgeableListModel/m_102419_ (FFF)V net/minecraft/client/model/ColorableAgeableListModel/setColor (FFF)V +MD: net/minecraft/client/model/ColorableAgeableListModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ColorableAgeableListModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/ColorableHierarchicalModel/ ()V net/minecraft/client/model/ColorableHierarchicalModel/ ()V +MD: net/minecraft/client/model/ColorableHierarchicalModel/m_170501_ (FFF)V net/minecraft/client/model/ColorableHierarchicalModel/setColor (FFF)V +MD: net/minecraft/client/model/ColorableHierarchicalModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ColorableHierarchicalModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/CowModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CowModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CowModel/m_102450_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CowModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CowModel/m_170516_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CowModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CreeperModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CreeperModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CreeperModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CreeperModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CreeperModel/m_170525_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CreeperModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CreeperModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CreeperModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/DolphinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/DolphinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/DolphinModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/DolphinModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/DolphinModel/m_170531_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/DolphinModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/DolphinModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/DolphinModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/DrownedModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/DrownedModel/m_170535_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/DrownedModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/DrownedModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/DrownedModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/DrownedModel/m_6839_ (Lnet/minecraft/world/entity/monster/Zombie;FFF)V net/minecraft/client/model/DrownedModel/prepareMobModel (Lnet/minecraft/world/entity/monster/Zombie;FFF)V +MD: net/minecraft/client/model/DrownedModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/DrownedModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V +MD: net/minecraft/client/model/ElytraModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ElytraModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ElytraModel/m_170539_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ElytraModel/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ElytraModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/ElytraModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ElytraModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/ElytraModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ElytraModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ElytraModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ElytraModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ElytraModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/EndermanModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/EndermanModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/EndermanModel/m_170542_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/EndermanModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/EndermanModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EndermanModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/EndermanModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/EndermanModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/EndermiteModel/ ()V net/minecraft/client/model/EndermiteModel/ ()V +MD: net/minecraft/client/model/EndermiteModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/EndermiteModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/EndermiteModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/EndermiteModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/EndermiteModel/m_170546_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/EndermiteModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/EndermiteModel/m_170547_ (I)Ljava/lang/String; net/minecraft/client/model/EndermiteModel/createSegmentName (I)Ljava/lang/String; +MD: net/minecraft/client/model/EndermiteModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EndermiteModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/EntityModel/ ()V net/minecraft/client/model/EntityModel/ ()V +MD: net/minecraft/client/model/EntityModel/ (Ljava/util/function/Function;)V net/minecraft/client/model/EntityModel/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/EntityModel/m_102624_ (Lnet/minecraft/client/model/EntityModel;)V net/minecraft/client/model/EntityModel/copyPropertiesTo (Lnet/minecraft/client/model/EntityModel;)V +MD: net/minecraft/client/model/EntityModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/EntityModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/EntityModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EntityModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/EvokerFangsModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/EvokerFangsModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/EvokerFangsModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/EvokerFangsModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/EvokerFangsModel/m_170556_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/EvokerFangsModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/EvokerFangsModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EvokerFangsModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/FoxModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/FoxModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/FoxModel/m_170567_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/FoxModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/FoxModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/FoxModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/FoxModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/FoxModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/FoxModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/FoxModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/FoxModel/m_6839_ (Lnet/minecraft/world/entity/animal/Fox;FFF)V net/minecraft/client/model/FoxModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Fox;FFF)V +MD: net/minecraft/client/model/FoxModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/FoxModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/FoxModel/m_6973_ (Lnet/minecraft/world/entity/animal/Fox;FFFFF)V net/minecraft/client/model/FoxModel/setupAnim (Lnet/minecraft/world/entity/animal/Fox;FFFFF)V +MD: net/minecraft/client/model/FrogModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/FrogModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/FrogModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/FrogModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/FrogModel/m_233378_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/FrogModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/FrogModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/FrogModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/FrogModel/m_6973_ (Lnet/minecraft/world/entity/animal/frog/Frog;FFFFF)V net/minecraft/client/model/FrogModel/setupAnim (Lnet/minecraft/world/entity/animal/frog/Frog;FFFFF)V +MD: net/minecraft/client/model/GhastModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GhastModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GhastModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/GhastModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/GhastModel/m_170571_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/GhastModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/GhastModel/m_170572_ (I)Ljava/lang/String; net/minecraft/client/model/GhastModel/createTentacleName (I)Ljava/lang/String; +MD: net/minecraft/client/model/GhastModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/GhastModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/GiantZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GiantZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GiantZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/client/model/GiantZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/client/model/GiantZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Giant;)Z net/minecraft/client/model/GiantZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Giant;)Z +MD: net/minecraft/client/model/GoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GoatModel/m_170593_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/GoatModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/GoatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/GoatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/GoatModel/m_6973_ (Lnet/minecraft/world/entity/animal/goat/Goat;FFFFF)V net/minecraft/client/model/GoatModel/setupAnim (Lnet/minecraft/world/entity/animal/goat/Goat;FFFFF)V +MD: net/minecraft/client/model/GuardianModel/ ()V net/minecraft/client/model/GuardianModel/ ()V +MD: net/minecraft/client/model/GuardianModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GuardianModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GuardianModel/m_102708_ (FF)V net/minecraft/client/model/GuardianModel/setupSpikes (FF)V +MD: net/minecraft/client/model/GuardianModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/GuardianModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/GuardianModel/m_170601_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/GuardianModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/GuardianModel/m_170602_ (I)Ljava/lang/String; net/minecraft/client/model/GuardianModel/createSpikeName (I)Ljava/lang/String; +MD: net/minecraft/client/model/GuardianModel/m_170604_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeOffset (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_170609_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeX (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_170613_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeY (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_170617_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeZ (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_6973_ (Lnet/minecraft/world/entity/monster/Guardian;FFFFF)V net/minecraft/client/model/GuardianModel/setupAnim (Lnet/minecraft/world/entity/monster/Guardian;FFFFF)V +MD: net/minecraft/client/model/GuardianModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/GuardianModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HeadedModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HeadedModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HierarchicalModel/ ()V net/minecraft/client/model/HierarchicalModel/ ()V +MD: net/minecraft/client/model/HierarchicalModel/ ()V net/minecraft/client/model/HierarchicalModel/ ()V +MD: net/minecraft/client/model/HierarchicalModel/ (Ljava/util/function/Function;)V net/minecraft/client/model/HierarchicalModel/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/HierarchicalModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HierarchicalModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HierarchicalModel/m_233381_ (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;F)V net/minecraft/client/model/HierarchicalModel/animate (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;F)V +MD: net/minecraft/client/model/HierarchicalModel/m_233385_ (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;FF)V net/minecraft/client/model/HierarchicalModel/animate (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;FF)V +MD: net/minecraft/client/model/HierarchicalModel/m_233393_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/model/HierarchicalModel/getAnyDescendantWithName (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/model/HierarchicalModel/m_233395_ (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HierarchicalModel/lambda$getAnyDescendantWithName$1 (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HierarchicalModel/m_233398_ (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Z net/minecraft/client/model/HierarchicalModel/lambda$getAnyDescendantWithName$0 (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Z +MD: net/minecraft/client/model/HierarchicalModel/m_252584_ (Lnet/minecraft/client/animation/AnimationDefinition;Lnet/minecraft/world/entity/AnimationState;)V net/minecraft/client/model/HierarchicalModel/lambda$animate$2 (Lnet/minecraft/client/animation/AnimationDefinition;Lnet/minecraft/world/entity/AnimationState;)V +MD: net/minecraft/client/model/HierarchicalModel/m_267799_ (Lnet/minecraft/client/animation/AnimationDefinition;FFFF)V net/minecraft/client/model/HierarchicalModel/animateWalk (Lnet/minecraft/client/animation/AnimationDefinition;FFFF)V +MD: net/minecraft/client/model/HierarchicalModel/m_288214_ (Lnet/minecraft/client/animation/AnimationDefinition;)V net/minecraft/client/model/HierarchicalModel/applyStatic (Lnet/minecraft/client/animation/AnimationDefinition;)V +MD: net/minecraft/client/model/HierarchicalModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/HierarchicalModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/HoglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HoglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HoglinModel/m_170641_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/HoglinModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/HoglinModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/HoglinModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HoglinModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/HoglinModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HoglinModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/HoglinModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HoglinModel/m_6973_ (Lnet/minecraft/world/entity/Mob;FFFFF)V net/minecraft/client/model/HoglinModel/setupAnim (Lnet/minecraft/world/entity/Mob;FFFFF)V +MD: net/minecraft/client/model/HorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HorseModel/m_170669_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/HorseModel/createBodyMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/HorseModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/HorseModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HorseModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/HorseModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HorseModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/HorseModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/HorseModel/m_6839_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFF)V net/minecraft/client/model/HorseModel/prepareMobModel (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFF)V +MD: net/minecraft/client/model/HorseModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/HorseModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HorseModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V net/minecraft/client/model/HorseModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V +MD: net/minecraft/client/model/HumanoidArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HumanoidArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HumanoidArmorModel/m_269566_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/HumanoidArmorModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;Ljava/util/function/Function;)V net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;Ljava/util/function/Function;)V +MD: net/minecraft/client/model/HumanoidModel/m_102833_ (F)F net/minecraft/client/model/HumanoidModel/quadraticArmUpdate (F)F +MD: net/minecraft/client/model/HumanoidModel/m_102835_ (FFF)F net/minecraft/client/model/HumanoidModel/rotlerpRad (FFF)F +MD: net/minecraft/client/model/HumanoidModel/m_102851_ (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HumanoidModel/getArm (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HumanoidModel/m_102856_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/client/model/HumanoidModel/getAttackArm (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/client/model/HumanoidModel/m_102872_ (Lnet/minecraft/client/model/HumanoidModel;)V net/minecraft/client/model/HumanoidModel/copyPropertiesTo (Lnet/minecraft/client/model/HumanoidModel;)V +MD: net/minecraft/client/model/HumanoidModel/m_102875_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/model/HumanoidModel/poseRightArm (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/model/HumanoidModel/m_102878_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/model/HumanoidModel/poseLeftArm (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/model/HumanoidModel/m_170681_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;F)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/HumanoidModel/createMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;F)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/HumanoidModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HumanoidModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HumanoidModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/HumanoidModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HumanoidModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/HumanoidModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HumanoidModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/HumanoidModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/HumanoidModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/HumanoidModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/HumanoidModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/HumanoidModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/HumanoidModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/HumanoidModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HumanoidModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/HumanoidModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/HumanoidModel/m_7884_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/client/model/HumanoidModel/setupAttackAnimation (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/client/model/HumanoidModel/m_8009_ (Z)V net/minecraft/client/model/HumanoidModel/setAllVisible (Z)V +MD: net/minecraft/client/model/HumanoidModel$1/ ()V net/minecraft/client/model/HumanoidModel$1/ ()V +MD: net/minecraft/client/model/HumanoidModel$ArmPose/ ()V net/minecraft/client/model/HumanoidModel$ArmPose/ ()V +MD: net/minecraft/client/model/HumanoidModel$ArmPose/ (Ljava/lang/String;IZ)V net/minecraft/client/model/HumanoidModel$ArmPose/ (Ljava/lang/String;IZ)V +MD: net/minecraft/client/model/HumanoidModel$ArmPose/m_102897_ ()Z net/minecraft/client/model/HumanoidModel$ArmPose/isTwoHanded ()Z +MD: net/minecraft/client/model/HumanoidModel$ArmPose/m_170685_ ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/model/HumanoidModel$ArmPose/$values ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/model/HumanoidModel$ArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/model/HumanoidModel$ArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/model/HumanoidModel$ArmPose/values ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/model/HumanoidModel$ArmPose/values ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/model/IllagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/IllagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/IllagerModel/m_102922_ (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/getArm (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_102934_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/getHat ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_170689_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/IllagerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/IllagerModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/IllagerModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/IllagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/IllagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/IllagerModel/m_6973_ (Lnet/minecraft/world/entity/monster/AbstractIllager;FFFFF)V net/minecraft/client/model/IllagerModel/setupAnim (Lnet/minecraft/world/entity/monster/AbstractIllager;FFFFF)V +MD: net/minecraft/client/model/IronGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/IronGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/IronGolemModel/m_102968_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IronGolemModel/getFlowerHoldingArm ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IronGolemModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IronGolemModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IronGolemModel/m_170698_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/IronGolemModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/IronGolemModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/IronGolemModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/IronGolemModel/m_6839_ (Lnet/minecraft/world/entity/animal/IronGolem;FFF)V net/minecraft/client/model/IronGolemModel/prepareMobModel (Lnet/minecraft/world/entity/animal/IronGolem;FFF)V +MD: net/minecraft/client/model/IronGolemModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/IronGolemModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/IronGolemModel/m_6973_ (Lnet/minecraft/world/entity/animal/IronGolem;FFFFF)V net/minecraft/client/model/IronGolemModel/setupAnim (Lnet/minecraft/world/entity/animal/IronGolem;FFFFF)V +MD: net/minecraft/client/model/LavaSlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LavaSlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LavaSlimeModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LavaSlimeModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LavaSlimeModel/m_170704_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LavaSlimeModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LavaSlimeModel/m_170705_ (I)Ljava/lang/String; net/minecraft/client/model/LavaSlimeModel/getSegmentName (I)Ljava/lang/String; +MD: net/minecraft/client/model/LavaSlimeModel/m_170707_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LavaSlimeModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LavaSlimeModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/LavaSlimeModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/LavaSlimeModel/m_6839_ (Lnet/minecraft/world/entity/monster/Slime;FFF)V net/minecraft/client/model/LavaSlimeModel/prepareMobModel (Lnet/minecraft/world/entity/monster/Slime;FFF)V +MD: net/minecraft/client/model/LavaSlimeModel/m_6973_ (Lnet/minecraft/world/entity/monster/Slime;FFFFF)V net/minecraft/client/model/LavaSlimeModel/setupAnim (Lnet/minecraft/world/entity/monster/Slime;FFFFF)V +MD: net/minecraft/client/model/LavaSlimeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LavaSlimeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/LeashKnotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LeashKnotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LeashKnotModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LeashKnotModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LeashKnotModel/m_170715_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LeashKnotModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LeashKnotModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LeashKnotModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ListModel/ ()V net/minecraft/client/model/ListModel/ ()V +MD: net/minecraft/client/model/ListModel/ (Ljava/util/function/Function;)V net/minecraft/client/model/ListModel/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/ListModel/m_103021_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ListModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ListModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/ListModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ListModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ListModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/LlamaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaModel/m_103064_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaModel/lambda$renderToBuffer$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaModel/m_103074_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaModel/m_170725_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LlamaModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LlamaModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LlamaModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/LlamaModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V net/minecraft/client/model/LlamaModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V +MD: net/minecraft/client/model/LlamaModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/LlamaModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/LlamaSpitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaSpitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaSpitModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LlamaSpitModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LlamaSpitModel/m_170731_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LlamaSpitModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LlamaSpitModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LlamaSpitModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/MinecartModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/MinecartModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/MinecartModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/MinecartModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/MinecartModel/m_170738_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/MinecartModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/MinecartModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/MinecartModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/Model/ (Ljava/util/function/Function;)V net/minecraft/client/model/Model/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/Model/m_103119_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/model/Model/renderType (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/model/Model/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/Model/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/ModelUtils/ ()V net/minecraft/client/model/ModelUtils/ ()V +MD: net/minecraft/client/model/ModelUtils/m_103125_ (FFF)F net/minecraft/client/model/ModelUtils/rotlerpRad (FFF)F +MD: net/minecraft/client/model/OcelotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/OcelotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/OcelotModel/m_170768_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/OcelotModel/createBodyMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/OcelotModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/OcelotModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/OcelotModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/OcelotModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/OcelotModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/OcelotModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/OcelotModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/OcelotModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PandaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PandaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PandaModel/m_170772_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PandaModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PandaModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/PandaModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/PandaModel/m_6839_ (Lnet/minecraft/world/entity/animal/Panda;FFF)V net/minecraft/client/model/PandaModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Panda;FFF)V +MD: net/minecraft/client/model/PandaModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PandaModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PandaModel/m_6973_ (Lnet/minecraft/world/entity/animal/Panda;FFFFF)V net/minecraft/client/model/PandaModel/setupAnim (Lnet/minecraft/world/entity/animal/Panda;FFFFF)V +MD: net/minecraft/client/model/ParrotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ParrotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ParrotModel/m_103209_ (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel/getState (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/ParrotModel/m_103223_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFI)V net/minecraft/client/model/ParrotModel/renderOnShoulder (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFI)V +MD: net/minecraft/client/model/ParrotModel/m_103239_ (Lnet/minecraft/client/model/ParrotModel$State;)V net/minecraft/client/model/ParrotModel/prepare (Lnet/minecraft/client/model/ParrotModel$State;)V +MD: net/minecraft/client/model/ParrotModel/m_103241_ (Lnet/minecraft/client/model/ParrotModel$State;IFFFFF)V net/minecraft/client/model/ParrotModel/setupAnim (Lnet/minecraft/client/model/ParrotModel$State;IFFFFF)V +MD: net/minecraft/client/model/ParrotModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ParrotModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ParrotModel/m_170781_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ParrotModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ParrotModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/ParrotModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/ParrotModel/m_6839_ (Lnet/minecraft/world/entity/animal/Parrot;FFF)V net/minecraft/client/model/ParrotModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Parrot;FFF)V +MD: net/minecraft/client/model/ParrotModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ParrotModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ParrotModel/m_6973_ (Lnet/minecraft/world/entity/animal/Parrot;FFFFF)V net/minecraft/client/model/ParrotModel/setupAnim (Lnet/minecraft/world/entity/animal/Parrot;FFFFF)V +MD: net/minecraft/client/model/ParrotModel$1/ ()V net/minecraft/client/model/ParrotModel$1/ ()V +MD: net/minecraft/client/model/ParrotModel$State/ ()V net/minecraft/client/model/ParrotModel$State/ ()V +MD: net/minecraft/client/model/ParrotModel$State/ (Ljava/lang/String;I)V net/minecraft/client/model/ParrotModel$State/ (Ljava/lang/String;I)V +MD: net/minecraft/client/model/ParrotModel$State/m_170783_ ()[Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel$State/$values ()[Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/ParrotModel$State/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel$State/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/ParrotModel$State/values ()[Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel$State/values ()[Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/PhantomModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PhantomModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PhantomModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PhantomModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PhantomModel/m_170789_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PhantomModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PhantomModel/m_6973_ (Lnet/minecraft/world/entity/monster/Phantom;FFFFF)V net/minecraft/client/model/PhantomModel/setupAnim (Lnet/minecraft/world/entity/monster/Phantom;FFFFF)V +MD: net/minecraft/client/model/PhantomModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PhantomModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PigModel/m_170800_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PigModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PiglinHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PiglinHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PiglinHeadModel/m_261259_ ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/PiglinHeadModel/createHeadModel ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/PiglinHeadModel/m_6251_ (FFF)V net/minecraft/client/model/PiglinHeadModel/setupAnim (FFF)V +MD: net/minecraft/client/model/PiglinHeadModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/PiglinHeadModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/PiglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PiglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PiglinModel/m_103360_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/client/model/PiglinModel/holdWeaponHigh (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/client/model/PiglinModel/m_170811_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/PiglinModel/createMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/PiglinModel/m_260936_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Lnet/minecraft/client/model/geom/builders/MeshDefinition;)V net/minecraft/client/model/PiglinModel/addHead (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Lnet/minecraft/client/model/geom/builders/MeshDefinition;)V +MD: net/minecraft/client/model/PiglinModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PiglinModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PiglinModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/PiglinModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/PiglinModel/m_6973_ (Lnet/minecraft/world/entity/Mob;FFFFF)V net/minecraft/client/model/PiglinModel/setupAnim (Lnet/minecraft/world/entity/Mob;FFFFF)V +MD: net/minecraft/client/model/PiglinModel/m_7884_ (Lnet/minecraft/world/entity/Mob;F)V net/minecraft/client/model/PiglinModel/setupAttackAnimation (Lnet/minecraft/world/entity/Mob;F)V +MD: net/minecraft/client/model/PiglinModel/m_7884_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/client/model/PiglinModel/setupAttackAnimation (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/client/model/PlayerModel/ (Lnet/minecraft/client/model/geom/ModelPart;Z)V net/minecraft/client/model/PlayerModel/ (Lnet/minecraft/client/model/geom/ModelPart;Z)V +MD: net/minecraft/client/model/PlayerModel/m_103401_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V net/minecraft/client/model/PlayerModel/renderEars (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V +MD: net/minecraft/client/model/PlayerModel/m_103411_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V net/minecraft/client/model/PlayerModel/renderCloak (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V +MD: net/minecraft/client/model/PlayerModel/m_170823_ (Lnet/minecraft/client/model/geom/ModelPart;)Z net/minecraft/client/model/PlayerModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;)Z +MD: net/minecraft/client/model/PlayerModel/m_170825_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Z)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/PlayerModel/createMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Z)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/PlayerModel/m_233438_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PlayerModel/getRandomModelPart (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PlayerModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/PlayerModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/PlayerModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/PlayerModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/PlayerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PlayerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PlayerModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/PlayerModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/PlayerModel/m_8009_ (Z)V net/minecraft/client/model/PlayerModel/setAllVisible (Z)V +MD: net/minecraft/client/model/PolarBearModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PolarBearModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PolarBearModel/m_170830_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PolarBearModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PolarBearModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PolarBearModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PolarBearModel/m_6973_ (Lnet/minecraft/world/entity/animal/PolarBear;FFFFF)V net/minecraft/client/model/PolarBearModel/setupAnim (Lnet/minecraft/world/entity/animal/PolarBear;FFFFF)V +MD: net/minecraft/client/model/PufferfishBigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PufferfishBigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PufferfishBigModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PufferfishBigModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PufferfishBigModel/m_170836_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PufferfishBigModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PufferfishBigModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PufferfishBigModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PufferfishMidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PufferfishMidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PufferfishMidModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PufferfishMidModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PufferfishMidModel/m_170843_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PufferfishMidModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PufferfishMidModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PufferfishMidModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PufferfishSmallModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PufferfishSmallModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PufferfishSmallModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PufferfishSmallModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PufferfishSmallModel/m_170850_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PufferfishSmallModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PufferfishSmallModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PufferfishSmallModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/QuadrupedModel/ (Lnet/minecraft/client/model/geom/ModelPart;ZFFFFI)V net/minecraft/client/model/QuadrupedModel/ (Lnet/minecraft/client/model/geom/ModelPart;ZFFFFI)V +MD: net/minecraft/client/model/QuadrupedModel/m_170864_ (ILnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/QuadrupedModel/createBodyMesh (ILnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/QuadrupedModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/QuadrupedModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/QuadrupedModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/QuadrupedModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/QuadrupedModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/QuadrupedModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RabbitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_103563_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/lambda$renderToBuffer$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_103578_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/lambda$renderToBuffer$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_103588_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_170882_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/RabbitModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/RabbitModel/m_6839_ (Lnet/minecraft/world/entity/animal/Rabbit;FFF)V net/minecraft/client/model/RabbitModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Rabbit;FFF)V +MD: net/minecraft/client/model/RabbitModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/RabbitModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/RabbitModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/RabbitModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RabbitModel/m_6973_ (Lnet/minecraft/world/entity/animal/Rabbit;FFFFF)V net/minecraft/client/model/RabbitModel/setupAnim (Lnet/minecraft/world/entity/animal/Rabbit;FFFFF)V +MD: net/minecraft/client/model/RabbitModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/RabbitModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/RaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RaftModel/m_245164_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/RaftModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/RaftModel/m_246042_ (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V net/minecraft/client/model/RaftModel/createChildren (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V +MD: net/minecraft/client/model/RaftModel/m_247198_ (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/model/RaftModel/animatePaddle (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/model/RaftModel/m_247376_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/RaftModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/RaftModel/m_6195_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/client/model/RaftModel/parts ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/client/model/RaftModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/RaftModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/RaftModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/RaftModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RaftModel/m_6973_ (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V net/minecraft/client/model/RaftModel/setupAnim (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V +MD: net/minecraft/client/model/RavagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RavagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RavagerModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/RavagerModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/RavagerModel/m_170890_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/RavagerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/RavagerModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/RavagerModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/RavagerModel/m_6839_ (Lnet/minecraft/world/entity/monster/Ravager;FFF)V net/minecraft/client/model/RavagerModel/prepareMobModel (Lnet/minecraft/world/entity/monster/Ravager;FFF)V +MD: net/minecraft/client/model/RavagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/RavagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RavagerModel/m_6973_ (Lnet/minecraft/world/entity/monster/Ravager;FFFFF)V net/minecraft/client/model/RavagerModel/setupAnim (Lnet/minecraft/world/entity/monster/Ravager;FFFFF)V +MD: net/minecraft/client/model/SalmonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SalmonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SalmonModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SalmonModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SalmonModel/m_170897_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SalmonModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SalmonModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SalmonModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SheepFurModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SheepFurModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SheepFurModel/m_170901_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SheepFurModel/createFurLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SheepFurModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/SheepFurModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/SheepFurModel/m_6839_ (Lnet/minecraft/world/entity/animal/Sheep;FFF)V net/minecraft/client/model/SheepFurModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Sheep;FFF)V +MD: net/minecraft/client/model/SheepFurModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SheepFurModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SheepFurModel/m_6973_ (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V net/minecraft/client/model/SheepFurModel/setupAnim (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V +MD: net/minecraft/client/model/SheepModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SheepModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SheepModel/m_170904_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SheepModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SheepModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/SheepModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/SheepModel/m_6839_ (Lnet/minecraft/world/entity/animal/Sheep;FFF)V net/minecraft/client/model/SheepModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Sheep;FFF)V +MD: net/minecraft/client/model/SheepModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SheepModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SheepModel/m_6973_ (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V net/minecraft/client/model/SheepModel/setupAnim (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V +MD: net/minecraft/client/model/ShieldModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ShieldModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ShieldModel/m_103701_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShieldModel/plate ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShieldModel/m_103711_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShieldModel/handle ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShieldModel/m_170912_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ShieldModel/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ShieldModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ShieldModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/ShulkerBulletModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ShulkerBulletModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ShulkerBulletModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShulkerBulletModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShulkerBulletModel/m_170917_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ShulkerBulletModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ShulkerBulletModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ShulkerBulletModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ShulkerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ShulkerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ShulkerModel/m_103742_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShulkerModel/getLid ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShulkerModel/m_103743_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShulkerModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShulkerModel/m_170923_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ShulkerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ShulkerModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/ShulkerModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ShulkerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ShulkerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ShulkerModel/m_6973_ (Lnet/minecraft/world/entity/monster/Shulker;FFFFF)V net/minecraft/client/model/ShulkerModel/setupAnim (Lnet/minecraft/world/entity/monster/Shulker;FFFFF)V +MD: net/minecraft/client/model/SilverfishModel/ ()V net/minecraft/client/model/SilverfishModel/ ()V +MD: net/minecraft/client/model/SilverfishModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SilverfishModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SilverfishModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SilverfishModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SilverfishModel/m_170928_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SilverfishModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SilverfishModel/m_170929_ (I)Ljava/lang/String; net/minecraft/client/model/SilverfishModel/getLayerName (I)Ljava/lang/String; +MD: net/minecraft/client/model/SilverfishModel/m_170931_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SilverfishModel/lambda$new$1 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SilverfishModel/m_170935_ (I)Ljava/lang/String; net/minecraft/client/model/SilverfishModel/getSegmentName (I)Ljava/lang/String; +MD: net/minecraft/client/model/SilverfishModel/m_170937_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SilverfishModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SilverfishModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SilverfishModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SkeletonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SkeletonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SkeletonModel/m_170942_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SkeletonModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SkeletonModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/SkeletonModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/SkeletonModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/SkeletonModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6839_ (Lnet/minecraft/world/entity/Mob;FFF)V net/minecraft/client/model/SkeletonModel/prepareMobModel (Lnet/minecraft/world/entity/Mob;FFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/SkeletonModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SkeletonModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/SkeletonModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6973_ (Lnet/minecraft/world/entity/Mob;FFFFF)V net/minecraft/client/model/SkeletonModel/setupAnim (Lnet/minecraft/world/entity/Mob;FFFFF)V +MD: net/minecraft/client/model/SkullModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SkullModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SkullModel/m_170946_ ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/SkullModel/createHeadModel ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/SkullModel/m_170947_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SkullModel/createHumanoidHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SkullModel/m_170948_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SkullModel/createMobHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SkullModel/m_6251_ (FFF)V net/minecraft/client/model/SkullModel/setupAnim (FFF)V +MD: net/minecraft/client/model/SkullModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/SkullModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/SkullModelBase/ ()V net/minecraft/client/model/SkullModelBase/ ()V +MD: net/minecraft/client/model/SkullModelBase/m_6251_ (FFF)V net/minecraft/client/model/SkullModelBase/setupAnim (FFF)V +MD: net/minecraft/client/model/SlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SlimeModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SlimeModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SlimeModel/m_170956_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SlimeModel/createOuterBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SlimeModel/m_170958_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SlimeModel/createInnerBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SlimeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SlimeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SnifferModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SnifferModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SnifferModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SnifferModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SnifferModel/m_271896_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SnifferModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SnifferModel/m_6973_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;FFFFF)V net/minecraft/client/model/SnifferModel/setupAnim (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;FFFFF)V +MD: net/minecraft/client/model/SnifferModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SnifferModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SnowGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SnowGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SnowGolemModel/m_103851_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SnowGolemModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SnowGolemModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SnowGolemModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SnowGolemModel/m_170966_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SnowGolemModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SnowGolemModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SnowGolemModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SpiderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SpiderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SpiderModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SpiderModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SpiderModel/m_170985_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SpiderModel/createSpiderBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SpiderModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SpiderModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SquidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SquidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SquidModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SquidModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SquidModel/m_170990_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SquidModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SquidModel/m_170991_ (I)Ljava/lang/String; net/minecraft/client/model/SquidModel/createTentacleName (I)Ljava/lang/String; +MD: net/minecraft/client/model/SquidModel/m_170993_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SquidModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SquidModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SquidModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/StriderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/StriderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/StriderModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/StriderModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/StriderModel/m_171012_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/StriderModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/StriderModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/StriderModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/StriderModel/m_6973_ (Lnet/minecraft/world/entity/monster/Strider;FFFFF)V net/minecraft/client/model/StriderModel/setupAnim (Lnet/minecraft/world/entity/monster/Strider;FFFFF)V +MD: net/minecraft/client/model/TadpoleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TadpoleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TadpoleModel/m_233460_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TadpoleModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TadpoleModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/TadpoleModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/TadpoleModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/TadpoleModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/TadpoleModel/m_6973_ (Lnet/minecraft/world/entity/animal/frog/Tadpole;FFFFF)V net/minecraft/client/model/TadpoleModel/setupAnim (Lnet/minecraft/world/entity/animal/frog/Tadpole;FFFFF)V +MD: net/minecraft/client/model/TadpoleModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TadpoleModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TridentModel/ ()V net/minecraft/client/model/TridentModel/ ()V +MD: net/minecraft/client/model/TridentModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TridentModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TridentModel/m_171017_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TridentModel/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TridentModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/TridentModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/TropicalFishModelA/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TropicalFishModelA/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TropicalFishModelA/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/TropicalFishModelA/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/TropicalFishModelA/m_171021_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TropicalFishModelA/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TropicalFishModelA/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TropicalFishModelA/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TropicalFishModelB/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TropicalFishModelB/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TropicalFishModelB/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/TropicalFishModelB/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/TropicalFishModelB/m_171037_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TropicalFishModelB/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TropicalFishModelB/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TropicalFishModelB/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TurtleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TurtleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TurtleModel/m_171043_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TurtleModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TurtleModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/TurtleModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/TurtleModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TurtleModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TurtleModel/m_6973_ (Lnet/minecraft/world/entity/animal/Turtle;FFFFF)V net/minecraft/client/model/TurtleModel/setupAnim (Lnet/minecraft/world/entity/animal/Turtle;FFFFF)V +MD: net/minecraft/client/model/TurtleModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/TurtleModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/VexModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/VexModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/VexModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/VexModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/VexModel/m_171046_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/VexModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/VexModel/m_263220_ (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V net/minecraft/client/model/VexModel/offsetStackPosition (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V +MD: net/minecraft/client/model/VexModel/m_264076_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;F)V net/minecraft/client/model/VexModel/setArmsCharging (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;F)V +MD: net/minecraft/client/model/VexModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/VexModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/VexModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/VexModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/VexModel/m_6973_ (Lnet/minecraft/world/entity/monster/Vex;FFFFF)V net/minecraft/client/model/VexModel/setupAnim (Lnet/minecraft/world/entity/monster/Vex;FFFFF)V +MD: net/minecraft/client/model/VillagerHeadModel/m_7491_ (Z)V net/minecraft/client/model/VillagerHeadModel/hatVisible (Z)V +MD: net/minecraft/client/model/VillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/VillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/VillagerModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/VillagerModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/VillagerModel/m_171052_ ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/VillagerModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/VillagerModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/VillagerModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/VillagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/VillagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/VillagerModel/m_7491_ (Z)V net/minecraft/client/model/VillagerModel/hatVisible (Z)V +MD: net/minecraft/client/model/WardenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WardenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WardenModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WardenModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WardenModel/m_233514_ (F)V net/minecraft/client/model/WardenModel/animateIdlePose (F)V +MD: net/minecraft/client/model/WardenModel/m_233516_ (FF)V net/minecraft/client/model/WardenModel/animateHeadLookTarget (FF)V +MD: net/minecraft/client/model/WardenModel/m_233526_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)V net/minecraft/client/model/WardenModel/animateTendrils (Lnet/minecraft/world/entity/monster/warden/Warden;FF)V +MD: net/minecraft/client/model/WardenModel/m_233537_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WardenModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WardenModel/m_233538_ (FF)V net/minecraft/client/model/WardenModel/animateWalk (FF)V +MD: net/minecraft/client/model/WardenModel/m_233541_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getTendrilsLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233542_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getHeartLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233543_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getBioluminescentLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233544_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getPulsatingSpotsLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233545_ ()V net/minecraft/client/model/WardenModel/resetArmPoses ()V +MD: net/minecraft/client/model/WardenModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WardenModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WardenModel/m_6973_ (Lnet/minecraft/world/entity/monster/warden/Warden;FFFFF)V net/minecraft/client/model/WardenModel/setupAnim (Lnet/minecraft/world/entity/monster/warden/Warden;FFFFF)V +MD: net/minecraft/client/model/WaterPatchModel/m_102282_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WaterPatchModel/waterPatch ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WitchModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WitchModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WitchModel/m_104073_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WitchModel/getNose ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WitchModel/m_104074_ (Z)V net/minecraft/client/model/WitchModel/setHoldingItem (Z)V +MD: net/minecraft/client/model/WitchModel/m_171056_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WitchModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WitchModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WitchModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WitherBossModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WitherBossModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WitherBossModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WitherBossModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WitherBossModel/m_171071_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/client/model/geom/ModelPart;I)V net/minecraft/client/model/WitherBossModel/setupHeadRotation (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/client/model/geom/ModelPart;I)V +MD: net/minecraft/client/model/WitherBossModel/m_171075_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WitherBossModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WitherBossModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/WitherBossModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/WitherBossModel/m_6839_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFF)V net/minecraft/client/model/WitherBossModel/prepareMobModel (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFF)V +MD: net/minecraft/client/model/WitherBossModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WitherBossModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WitherBossModel/m_6973_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFFFF)V net/minecraft/client/model/WitherBossModel/setupAnim (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFFFF)V +MD: net/minecraft/client/model/WolfModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WolfModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WolfModel/m_171088_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WolfModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WolfModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/WolfModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/WolfModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/WolfModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/WolfModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/WolfModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/WolfModel/m_6839_ (Lnet/minecraft/world/entity/animal/Wolf;FFF)V net/minecraft/client/model/WolfModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Wolf;FFF)V +MD: net/minecraft/client/model/WolfModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WolfModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WolfModel/m_6973_ (Lnet/minecraft/world/entity/animal/Wolf;FFFFF)V net/minecraft/client/model/WolfModel/setupAnim (Lnet/minecraft/world/entity/animal/Wolf;FFFFF)V +MD: net/minecraft/client/model/ZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/client/model/ZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/client/model/ZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Zombie;)Z net/minecraft/client/model/ZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Zombie;)Z +MD: net/minecraft/client/model/ZombieVillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ZombieVillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_171093_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ZombieVillagerModel/createArmorLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ZombieVillagerModel/m_171095_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ZombieVillagerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ZombieVillagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ZombieVillagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_6973_ (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V net/minecraft/client/model/ZombieVillagerModel/setupAnim (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ZombieVillagerModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_7491_ (Z)V net/minecraft/client/model/ZombieVillagerModel/hatVisible (Z)V +MD: net/minecraft/client/model/dragon/DragonHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/dragon/DragonHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/dragon/DragonHeadModel/m_171098_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/dragon/DragonHeadModel/createHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/dragon/DragonHeadModel/m_6251_ (FFF)V net/minecraft/client/model/dragon/DragonHeadModel/setupAnim (FFF)V +MD: net/minecraft/client/model/dragon/DragonHeadModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/dragon/DragonHeadModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/EntityModelSet/ ()V net/minecraft/client/model/geom/EntityModelSet/ ()V +MD: net/minecraft/client/model/geom/EntityModelSet/m_171103_ (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/EntityModelSet/bakeLayer (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/EntityModelSet/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/model/geom/EntityModelSet/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/model/geom/LayerDefinitions/ ()V net/minecraft/client/model/geom/LayerDefinitions/ ()V +MD: net/minecraft/client/model/geom/LayerDefinitions/ ()V net/minecraft/client/model/geom/LayerDefinitions/ ()V +MD: net/minecraft/client/model/geom/LayerDefinitions/m_171110_ ()Ljava/util/Map; net/minecraft/client/model/geom/LayerDefinitions/createRoots ()Ljava/util/Map; +MD: net/minecraft/client/model/geom/LayerDefinitions/m_171111_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/client/model/geom/LayerDefinitions/lambda$createRoots$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/client/model/geom/LayerDefinitions/m_171115_ (Lcom/google/common/collect/ImmutableMap;Lnet/minecraft/client/model/geom/ModelLayerLocation;)Z net/minecraft/client/model/geom/LayerDefinitions/lambda$createRoots$2 (Lcom/google/common/collect/ImmutableMap;Lnet/minecraft/client/model/geom/ModelLayerLocation;)Z +MD: net/minecraft/client/model/geom/LayerDefinitions/m_244702_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/client/model/geom/LayerDefinitions/lambda$createRoots$1 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/client/model/geom/ModelLayerLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/model/geom/ModelLayerLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/model/geom/ModelLayerLocation/equals (Ljava/lang/Object;)Z net/minecraft/client/model/geom/ModelLayerLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/model/geom/ModelLayerLocation/hashCode ()I net/minecraft/client/model/geom/ModelLayerLocation/hashCode ()I +MD: net/minecraft/client/model/geom/ModelLayerLocation/m_171123_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/model/geom/ModelLayerLocation/getModel ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/model/geom/ModelLayerLocation/m_171124_ ()Ljava/lang/String; net/minecraft/client/model/geom/ModelLayerLocation/getLayer ()Ljava/lang/String; +MD: net/minecraft/client/model/geom/ModelLayerLocation/toString ()Ljava/lang/String; net/minecraft/client/model/geom/ModelLayerLocation/toString ()Ljava/lang/String; +MD: net/minecraft/client/model/geom/ModelLayers/ ()V net/minecraft/client/model/geom/ModelLayers/ ()V +MD: net/minecraft/client/model/geom/ModelLayers/ ()V net/minecraft/client/model/geom/ModelLayers/ ()V +MD: net/minecraft/client/model/geom/ModelLayers/m_171288_ ()Ljava/util/stream/Stream; net/minecraft/client/model/geom/ModelLayers/getKnownLocations ()Ljava/util/stream/Stream; +MD: net/minecraft/client/model/geom/ModelLayers/m_171289_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createBoatModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171291_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createSignModelName (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171293_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/register (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171295_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/register (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171298_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/registerInnerArmor (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171300_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createLocation (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171303_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/registerOuterArmor (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_233550_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createChestBoatModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_246069_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createChestRaftModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_246688_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createRaftModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_247439_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createHangingSignModelName (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelPart/ (Ljava/util/List;Ljava/util/Map;)V net/minecraft/client/model/geom/ModelPart/ (Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/client/model/geom/ModelPart/m_104227_ (FFF)V net/minecraft/client/model/geom/ModelPart/setPos (FFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_104290_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/geom/ModelPart/compile (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_104299_ (Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/geom/ModelPart/translateAndRotate (Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/geom/ModelPart/m_104301_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V net/minecraft/client/model/geom/ModelPart/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V +MD: net/minecraft/client/model/geom/ModelPart/m_104306_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/geom/ModelPart/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_104315_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/geom/ModelPart/copyFrom (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171308_ ()Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/ModelPart/storePose ()Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/ModelPart/m_171309_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;)V net/minecraft/client/model/geom/ModelPart/visit (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171312_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;)V net/minecraft/client/model/geom/ModelPart/visit (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171316_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/geom/ModelPart/lambda$visit$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171322_ (Lnet/minecraft/client/model/geom/PartPose;)V net/minecraft/client/model/geom/ModelPart/loadPose (Lnet/minecraft/client/model/geom/PartPose;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171324_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/ModelPart/getChild (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/ModelPart/m_171326_ ()Z net/minecraft/client/model/geom/ModelPart/isEmpty ()Z +MD: net/minecraft/client/model/geom/ModelPart/m_171327_ (FFF)V net/minecraft/client/model/geom/ModelPart/setRotation (FFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_171331_ ()Ljava/util/stream/Stream; net/minecraft/client/model/geom/ModelPart/getAllParts ()Ljava/util/stream/Stream; +MD: net/minecraft/client/model/geom/ModelPart/m_233558_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart$Cube; net/minecraft/client/model/geom/ModelPart/getRandomCube (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart$Cube; +MD: net/minecraft/client/model/geom/ModelPart/m_233560_ (Lnet/minecraft/client/model/geom/PartPose;)V net/minecraft/client/model/geom/ModelPart/setInitialPose (Lnet/minecraft/client/model/geom/PartPose;)V +MD: net/minecraft/client/model/geom/ModelPart/m_233562_ (Ljava/lang/String;)Z net/minecraft/client/model/geom/ModelPart/hasChild (Ljava/lang/String;)Z +MD: net/minecraft/client/model/geom/ModelPart/m_233566_ ()Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/ModelPart/getInitialPose ()Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/ModelPart/m_233569_ ()V net/minecraft/client/model/geom/ModelPart/resetPose ()V +MD: net/minecraft/client/model/geom/ModelPart/m_252854_ (Lorg/joml/Vector3f;)V net/minecraft/client/model/geom/ModelPart/offsetPos (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/geom/ModelPart/m_252899_ (Lorg/joml/Vector3f;)V net/minecraft/client/model/geom/ModelPart/offsetRotation (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/geom/ModelPart/m_253072_ (Lorg/joml/Vector3f;)V net/minecraft/client/model/geom/ModelPart/offsetScale (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/geom/ModelPart$Cube/ (IIFFFFFFFFFZFFLjava/util/Set;)V net/minecraft/client/model/geom/ModelPart$Cube/ (IIFFFFFFFFFZFFLjava/util/Set;)V +MD: net/minecraft/client/model/geom/ModelPart$Cube/m_171332_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/geom/ModelPart$Cube/compile (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/ModelPart$Polygon/ ([Lnet/minecraft/client/model/geom/ModelPart$Vertex;FFFFFFZLnet/minecraft/core/Direction;)V net/minecraft/client/model/geom/ModelPart$Polygon/ ([Lnet/minecraft/client/model/geom/ModelPart$Vertex;FFFFFFZLnet/minecraft/core/Direction;)V +MD: net/minecraft/client/model/geom/ModelPart$Vertex/ (FFFFF)V net/minecraft/client/model/geom/ModelPart$Vertex/ (FFFFF)V +MD: net/minecraft/client/model/geom/ModelPart$Vertex/ (Lorg/joml/Vector3f;FF)V net/minecraft/client/model/geom/ModelPart$Vertex/ (Lorg/joml/Vector3f;FF)V +MD: net/minecraft/client/model/geom/ModelPart$Vertex/m_104384_ (FF)Lnet/minecraft/client/model/geom/ModelPart$Vertex; net/minecraft/client/model/geom/ModelPart$Vertex/remap (FF)Lnet/minecraft/client/model/geom/ModelPart$Vertex; +MD: net/minecraft/client/model/geom/ModelPart$Visitor/m_171341_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Ljava/lang/String;ILnet/minecraft/client/model/geom/ModelPart$Cube;)V net/minecraft/client/model/geom/ModelPart$Visitor/visit (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Ljava/lang/String;ILnet/minecraft/client/model/geom/ModelPart$Cube;)V +MD: net/minecraft/client/model/geom/PartNames/ ()V net/minecraft/client/model/geom/PartNames/ ()V +MD: net/minecraft/client/model/geom/PartPose/ ()V net/minecraft/client/model/geom/PartPose/ ()V +MD: net/minecraft/client/model/geom/PartPose/ (FFFFFF)V net/minecraft/client/model/geom/PartPose/ (FFFFFF)V +MD: net/minecraft/client/model/geom/PartPose/m_171419_ (FFF)Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/PartPose/offset (FFF)Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/PartPose/m_171423_ (FFFFFF)Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/PartPose/offsetAndRotation (FFFFFF)Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/PartPose/m_171430_ (FFF)Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/PartPose/rotation (FFF)Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/builders/CubeDefinition/ (Ljava/lang/String;FFFFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;ZFFLjava/util/Set;)V net/minecraft/client/model/geom/builders/CubeDefinition/ (Ljava/lang/String;FFFFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;ZFFLjava/util/Set;)V +MD: net/minecraft/client/model/geom/builders/CubeDefinition/m_171455_ (II)Lnet/minecraft/client/model/geom/ModelPart$Cube; net/minecraft/client/model/geom/builders/CubeDefinition/bake (II)Lnet/minecraft/client/model/geom/ModelPart$Cube; +MD: net/minecraft/client/model/geom/builders/CubeDeformation/ ()V net/minecraft/client/model/geom/builders/CubeDeformation/ ()V +MD: net/minecraft/client/model/geom/builders/CubeDeformation/ (FFF)V net/minecraft/client/model/geom/builders/CubeDeformation/ (FFF)V +MD: net/minecraft/client/model/geom/builders/CubeDeformation/ (F)V net/minecraft/client/model/geom/builders/CubeDeformation/ (F)V +MD: net/minecraft/client/model/geom/builders/CubeDeformation/m_171469_ (F)Lnet/minecraft/client/model/geom/builders/CubeDeformation; net/minecraft/client/model/geom/builders/CubeDeformation/extend (F)Lnet/minecraft/client/model/geom/builders/CubeDeformation; +MD: net/minecraft/client/model/geom/builders/CubeDeformation/m_171471_ (FFF)Lnet/minecraft/client/model/geom/builders/CubeDeformation; net/minecraft/client/model/geom/builders/CubeDeformation/extend (FFF)Lnet/minecraft/client/model/geom/builders/CubeDeformation; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171480_ ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/mirror ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171481_ (FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171488_ (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171496_ (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;FF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;FF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171506_ (FFFFFFZ)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFZ)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171514_ (II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/texOffs (II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171517_ (Ljava/lang/String;FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171525_ (Ljava/lang/String;FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171534_ (Ljava/lang/String;FFFIIIII)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFIIIII)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171544_ (Ljava/lang/String;FFFIIILnet/minecraft/client/model/geom/builders/CubeDeformation;II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFIIILnet/minecraft/client/model/geom/builders/CubeDeformation;II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171555_ (Z)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/mirror (Z)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171557_ ()Ljava/util/List; net/minecraft/client/model/geom/builders/CubeListBuilder/getCubes ()Ljava/util/List; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171558_ ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/create ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_271786_ (FFFFFFLjava/util/Set;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFLjava/util/Set;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/LayerDefinition/ (Lnet/minecraft/client/model/geom/builders/MeshDefinition;Lnet/minecraft/client/model/geom/builders/MaterialDefinition;)V net/minecraft/client/model/geom/builders/LayerDefinition/ (Lnet/minecraft/client/model/geom/builders/MeshDefinition;Lnet/minecraft/client/model/geom/builders/MaterialDefinition;)V +MD: net/minecraft/client/model/geom/builders/LayerDefinition/m_171564_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/LayerDefinition/bakeRoot ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/LayerDefinition/m_171565_ (Lnet/minecraft/client/model/geom/builders/MeshDefinition;II)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/geom/builders/LayerDefinition/create (Lnet/minecraft/client/model/geom/builders/MeshDefinition;II)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/geom/builders/MaterialDefinition/ (II)V net/minecraft/client/model/geom/builders/MaterialDefinition/ (II)V +MD: net/minecraft/client/model/geom/builders/MeshDefinition/ ()V net/minecraft/client/model/geom/builders/MeshDefinition/ ()V +MD: net/minecraft/client/model/geom/builders/MeshDefinition/m_171576_ ()Lnet/minecraft/client/model/geom/builders/PartDefinition; net/minecraft/client/model/geom/builders/MeshDefinition/getRoot ()Lnet/minecraft/client/model/geom/builders/PartDefinition; +MD: net/minecraft/client/model/geom/builders/PartDefinition/ (Ljava/util/List;Lnet/minecraft/client/model/geom/PartPose;)V net/minecraft/client/model/geom/builders/PartDefinition/ (Ljava/util/List;Lnet/minecraft/client/model/geom/PartPose;)V +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171583_ (II)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/PartDefinition/bake (II)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171586_ (IILnet/minecraft/client/model/geom/builders/CubeDefinition;)Lnet/minecraft/client/model/geom/ModelPart$Cube; net/minecraft/client/model/geom/builders/PartDefinition/lambda$bake$2 (IILnet/minecraft/client/model/geom/builders/CubeDefinition;)Lnet/minecraft/client/model/geom/ModelPart$Cube; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171590_ (IILjava/util/Map$Entry;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/PartDefinition/lambda$bake$0 (IILjava/util/Map$Entry;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171594_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/PartDefinition/lambda$bake$1 (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171597_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/builders/PartDefinition; net/minecraft/client/model/geom/builders/PartDefinition/getChild (Ljava/lang/String;)Lnet/minecraft/client/model/geom/builders/PartDefinition; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171599_ (Ljava/lang/String;Lnet/minecraft/client/model/geom/builders/CubeListBuilder;Lnet/minecraft/client/model/geom/PartPose;)Lnet/minecraft/client/model/geom/builders/PartDefinition; net/minecraft/client/model/geom/builders/PartDefinition/addOrReplaceChild (Ljava/lang/String;Lnet/minecraft/client/model/geom/builders/CubeListBuilder;Lnet/minecraft/client/model/geom/PartPose;)Lnet/minecraft/client/model/geom/builders/PartDefinition; +MD: net/minecraft/client/model/geom/builders/UVPair/ (FF)V net/minecraft/client/model/geom/builders/UVPair/ (FF)V +MD: net/minecraft/client/model/geom/builders/UVPair/m_171612_ ()F net/minecraft/client/model/geom/builders/UVPair/u ()F +MD: net/minecraft/client/model/geom/builders/UVPair/m_171613_ ()F net/minecraft/client/model/geom/builders/UVPair/v ()F +MD: net/minecraft/client/model/geom/builders/UVPair/toString ()Ljava/lang/String; net/minecraft/client/model/geom/builders/UVPair/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ ()V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ ()V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ (Lcom/mojang/authlib/minecraft/UserApiService;Ljava/util/UUID;Ljava/nio/file/Path;)V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ (Lcom/mojang/authlib/minecraft/UserApiService;Ljava/util/UUID;Ljava/nio/file/Path;)V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252791_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Z net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$new$0 (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Z +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252827_ ()Ljava/util/Optional; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/readProfileKeyPair ()Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252828_ (Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$readOrFetchProfileKeyPair$2 (Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252881_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$writeProfileKeyPair$3 (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252904_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/prepareKeyPair ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253041_ (Ljava/util/Optional;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/readOrFetchProfileKeyPair (Ljava/util/Optional;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253130_ ()Z net/minecraft/client/multiplayer/AccountProfileKeyPairManager/shouldRefreshKeyPair ()Z +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253196_ (Lcom/mojang/authlib/yggdrasil/response/KeyPairResponse;)Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/parsePublicKey (Lcom/mojang/authlib/yggdrasil/response/KeyPairResponse;)Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253216_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/writeProfileKeyPair (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253252_ (Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/world/entity/player/ProfileKeyPair; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/fetchProfileKeyPair (Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/world/entity/player/ProfileKeyPair; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253254_ ()Ljava/util/Optional; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$new$1 ()Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/ClientAdvancements/ ()V net/minecraft/client/multiplayer/ClientAdvancements/ ()V +MD: net/minecraft/client/multiplayer/ClientAdvancements/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V net/minecraft/client/multiplayer/ClientAdvancements/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104396_ ()Lnet/minecraft/advancements/AdvancementList; net/minecraft/client/multiplayer/ClientAdvancements/getAdvancements ()Lnet/minecraft/advancements/AdvancementList; +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104397_ (Lnet/minecraft/client/multiplayer/ClientAdvancements$Listener;)V net/minecraft/client/multiplayer/ClientAdvancements/setListener (Lnet/minecraft/client/multiplayer/ClientAdvancements$Listener;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104399_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V net/minecraft/client/multiplayer/ClientAdvancements/update (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104401_ (Lnet/minecraft/advancements/Advancement;Z)V net/minecraft/client/multiplayer/ClientAdvancements/setSelectedTab (Lnet/minecraft/advancements/Advancement;Z)V +MD: net/minecraft/client/multiplayer/ClientAdvancements$Listener/m_6896_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/multiplayer/ClientAdvancements$Listener/onSelectedTabChanged (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements$Listener/m_7922_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/client/multiplayer/ClientAdvancements$Listener/onUpdateAdvancementProgress (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/ ()V net/minecraft/client/multiplayer/ClientChunkCache/ ()V +MD: net/minecraft/client/multiplayer/ClientChunkCache/ (Lnet/minecraft/client/multiplayer/ClientLevel;I)V net/minecraft/client/multiplayer/ClientChunkCache/ (Lnet/minecraft/client/multiplayer/ClientLevel;I)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104416_ (I)V net/minecraft/client/multiplayer/ClientChunkCache/updateViewRadius (I)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104438_ (Lnet/minecraft/world/level/chunk/LevelChunk;II)Z net/minecraft/client/multiplayer/ClientChunkCache/isValidChunk (Lnet/minecraft/world/level/chunk/LevelChunk;II)Z +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104448_ (I)I net/minecraft/client/multiplayer/ClientChunkCache/calculateStorageRange (I)I +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104455_ (II)V net/minecraft/client/multiplayer/ClientChunkCache/drop (II)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104459_ (II)V net/minecraft/client/multiplayer/ClientChunkCache/updateViewCenter (II)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_194116_ (IILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache/replaceWithPacketData (IILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_201698_ (Ljava/util/function/BooleanSupplier;Z)V net/minecraft/client/multiplayer/ClientChunkCache/tick (Ljava/util/function/BooleanSupplier;Z)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_274444_ (IILnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/client/multiplayer/ClientChunkCache/replaceBiomes (IILnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_6506_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V net/minecraft/client/multiplayer/ClientChunkCache/onLightUpdate (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_6754_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientChunkCache/gatherStats ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/client/multiplayer/ClientChunkCache/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7653_ ()Lnet/minecraft/world/level/BlockGetter; net/minecraft/client/multiplayer/ClientChunkCache/getLevel ()Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7827_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/client/multiplayer/ClientChunkCache/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_8482_ ()I net/minecraft/client/multiplayer/ClientChunkCache/getLoadedChunksCount ()I +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/ (Lnet/minecraft/client/multiplayer/ClientChunkCache;I)V net/minecraft/client/multiplayer/ClientChunkCache$Storage/ (Lnet/minecraft/client/multiplayer/ClientChunkCache;I)V +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104479_ (I)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache$Storage/getChunk (I)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104481_ (II)I net/minecraft/client/multiplayer/ClientChunkCache$Storage/getIndex (II)I +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104484_ (ILnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/multiplayer/ClientChunkCache$Storage/replace (ILnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104487_ (ILnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache$Storage/replace (ILnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104500_ (II)Z net/minecraft/client/multiplayer/ClientChunkCache$Storage/inRange (II)Z +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_171622_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientChunkCache$Storage/dumpChunks (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ ()V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ ()V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ (Lnet/minecraft/network/Connection;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/client/gui/screens/Screen;ZLjava/time/Duration;Ljava/util/function/Consumer;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ (Lnet/minecraft/network/Connection;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/client/gui/screens/Screen;ZLjava/time/Duration;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_104531_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/authenticateServer (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_104554_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/getMinecraftSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_233586_ (Ljava/lang/String;Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/lambda$handleHello$1 (Ljava/lang/String;Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_233591_ (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/lambda$handleHello$0 (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_285854_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/setMinigameName (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_5693_ (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleCompression (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_5800_ (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleDisconnect (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_6198_ ()Z net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7056_ (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleGameProfile (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7254_ (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleCustomQuery (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7318_ (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleHello (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V +MD: net/minecraft/client/multiplayer/ClientLevel/ ()V net/minecraft/client/multiplayer/ClientLevel/ ()V +MD: net/minecraft/client/multiplayer/ClientLevel/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;IILjava/util/function/Supplier;Lnet/minecraft/client/renderer/LevelRenderer;ZJ)V net/minecraft/client/multiplayer/ClientLevel/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;IILjava/util/function/Supplier;Lnet/minecraft/client/renderer/LevelRenderer;ZJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104583_ ()Lnet/minecraft/client/renderer/DimensionSpecialEffects; net/minecraft/client/multiplayer/ClientLevel/effects ()Lnet/minecraft/client/renderer/DimensionSpecialEffects; +MD: net/minecraft/client/multiplayer/ClientLevel/m_104592_ (DDDDDLnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/multiplayer/ClientLevel/spawnFluidParticle (DDDDDLnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104627_ (ILnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/putNonPlayerEntity (ILnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104630_ (ILnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/multiplayer/ClientLevel/addPlayer (ILnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104637_ (J)V net/minecraft/client/multiplayer/ClientLevel/setGameTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104639_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/tickNonPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104641_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/tickPassenger (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104665_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/multiplayer/ClientLevel/unload (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104669_ (Lnet/minecraft/world/scores/Scoreboard;)V net/minecraft/client/multiplayer/ClientLevel/setScoreboard (Lnet/minecraft/world/scores/Scoreboard;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104689_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/particles/ParticleOptions;Z)V net/minecraft/client/multiplayer/ClientLevel/trySpawnDripParticles (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/particles/ParticleOptions;Z)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104694_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V net/minecraft/client/multiplayer/ClientLevel/spawnParticle (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104726_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/client/multiplayer/ClientLevel/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104735_ ()Ljava/lang/Iterable; net/minecraft/client/multiplayer/ClientLevel/entitiesForRendering ()Ljava/lang/Iterable; +MD: net/minecraft/client/multiplayer/ClientLevel/m_104739_ (ILnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/addEntity (ILnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104746_ (J)V net/minecraft/client/multiplayer/ClientLevel/setDayTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104752_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/client/multiplayer/ClientLevel/setDefaultSpawnPos (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104762_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/multiplayer/ClientLevel/calculateBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_104784_ (III)V net/minecraft/client/multiplayer/ClientLevel/animateTick (III)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104793_ (III)V net/minecraft/client/multiplayer/ClientLevel/setSectionDirtyWithNeighbors (III)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104804_ ()V net/minecraft/client/multiplayer/ClientLevel/tickEntities ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104805_ (F)F net/minecraft/client/multiplayer/ClientLevel/getSkyDarken (F)F +MD: net/minecraft/client/multiplayer/ClientLevel/m_104808_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/multiplayer/ClientLevel/getCloudColor (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/multiplayer/ClientLevel/m_104810_ ()V net/minecraft/client/multiplayer/ClientLevel/clearTintCaches ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104811_ (F)F net/minecraft/client/multiplayer/ClientLevel/getStarBrightness (F)F +MD: net/minecraft/client/multiplayer/ClientLevel/m_104813_ ()I net/minecraft/client/multiplayer/ClientLevel/getEntityCount ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_104819_ ()I net/minecraft/client/multiplayer/ClientLevel/getSkyFlashTime ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_104826_ ()V net/minecraft/client/multiplayer/ClientLevel/tickTime ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_142052_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/ClientLevel/addDestroyBlockEffect (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_142325_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/multiplayer/ClientLevel/setMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_142646_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/client/multiplayer/ClientLevel/getEntities ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/client/multiplayer/ClientLevel/m_171642_ (ILnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/client/multiplayer/ClientLevel/removeEntity (ILnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_171649_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/client/multiplayer/ClientLevel/onChunkLoaded (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_171660_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/multiplayer/ClientLevel/getSkyColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/multiplayer/ClientLevel/m_171672_ (Ljava/util/Map;)V net/minecraft/client/multiplayer/ClientLevel/addMapData (Ljava/util/Map;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_171684_ ()Ljava/util/Map; net/minecraft/client/multiplayer/ClientLevel/getAllMapData ()Ljava/util/Map; +MD: net/minecraft/client/multiplayer/ClientLevel/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/client/multiplayer/ClientLevel/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/client/multiplayer/ClientLevel/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/client/multiplayer/ClientLevel/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/client/multiplayer/ClientLevel/m_183599_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/multiplayer/ClientLevel/shouldTickDeath (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_194141_ ()V net/minecraft/client/multiplayer/ClientLevel/pollLightUpdates ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194152_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V net/minecraft/client/multiplayer/ClientLevel/lambda$onChunkLoaded$6 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194156_ (Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V net/minecraft/client/multiplayer/ClientLevel/lambda$clearTintCaches$7 (Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194159_ (Lnet/minecraft/world/level/biome/BiomeManager;III)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/multiplayer/ClientLevel/lambda$getSkyColor$11 (Lnet/minecraft/world/level/biome/BiomeManager;III)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/multiplayer/ClientLevel/m_194167_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/multiplayer/ClientLevel/lambda$new$2 (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194169_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V net/minecraft/client/multiplayer/ClientLevel/lambda$new$3 (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194171_ (Ljava/lang/Runnable;)V net/minecraft/client/multiplayer/ClientLevel/queueLightUpdate (Ljava/lang/Runnable;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194173_ ()Z net/minecraft/client/multiplayer/ClientLevel/isLightUpdateQueueEmpty ()Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_194174_ (I)V net/minecraft/client/multiplayer/ClientLevel/setServerSimulationDistance (I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194176_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/multiplayer/ClientLevel/lambda$new$1 (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194180_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/multiplayer/ClientLevel/lambda$new$0 (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194182_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/lambda$tickEntities$4 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194186_ ()I net/minecraft/client/multiplayer/ClientLevel/getServerSimulationDistance ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194187_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/client/multiplayer/ClientLevel/getMarkerParticleTarget ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/client/multiplayer/ClientLevel/m_194188_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/lambda$fillReportDetails$10 ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_194189_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/lambda$fillReportDetails$9 ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/client/multiplayer/ClientLevel/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/client/multiplayer/ClientLevel/m_213890_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/client/multiplayer/ClientLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/client/multiplayer/ClientLevel/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233601_ ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; net/minecraft/client/multiplayer/ClientLevel/getBlockStatePredictionHandler ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; +MD: net/minecraft/client/multiplayer/ClientLevel/m_233602_ (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZJ)V net/minecraft/client/multiplayer/ClientLevel/playSound (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233612_ (IIIILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/client/multiplayer/ClientLevel/doAnimateTick (IIIILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233647_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/multiplayer/ClientLevel/syncBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233651_ (I)V net/minecraft/client/multiplayer/ClientLevel/handleBlockChangedAck (I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233653_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/client/multiplayer/ClientLevel/setServerVerifiedBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/client/multiplayer/ClientLevel/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/client/multiplayer/ClientLevel/m_257084_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/lambda$tickNonPassenger$5 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_257583_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/multiplayer/ClientLevel/overrideMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_262808_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/client/multiplayer/ClientLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_263888_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/biome/AmbientParticleSettings;)V net/minecraft/client/multiplayer/ClientLevel/lambda$doAnimateTick$8 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/biome/AmbientParticleSettings;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_46464_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/gatherChunkSourceStats ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_5503_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/client/multiplayer/ClientLevel/sendPacketToServer (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/multiplayer/ClientLevel/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6026_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; net/minecraft/client/multiplayer/ClientLevel/fillReportDetails (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6106_ ()Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData; net/minecraft/client/multiplayer/ClientLevel/getLevelData ()Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/client/multiplayer/ClientLevel/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/multiplayer/ClientLevel/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_6188_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/client/multiplayer/ClientLevel/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6485_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6493_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6550_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/ClientLevel/setBlocksDirty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6580_ (I)V net/minecraft/client/multiplayer/ClientLevel/setSkyFlashTime (I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6798_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/multiplayer/ClientLevel/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6801_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/multiplayer/ClientLevel/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6815_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/client/multiplayer/ClientLevel/getEntity (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6907_ ()Ljava/util/List; net/minecraft/client/multiplayer/ClientLevel/players ()Ljava/util/List; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/client/multiplayer/ClientLevel/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7107_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7228_ (DDDDDDLnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/multiplayer/ClientLevel/createFireworks (DDDDDDLnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7232_ (II)Z net/minecraft/client/multiplayer/ClientLevel/hasChunk (II)Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_7260_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/client/multiplayer/ClientLevel/sendBlockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7354_ ()I net/minecraft/client/multiplayer/ClientLevel/getFreeMapId ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_7462_ ()V net/minecraft/client/multiplayer/ClientLevel/disconnect ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7465_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/client/multiplayer/ClientLevel/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7489_ (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/client/multiplayer/ClientLevel/getMapData (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/client/multiplayer/ClientLevel/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/client/multiplayer/ClientLevel/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/client/multiplayer/ClientLevel/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7726_ ()Lnet/minecraft/client/multiplayer/ClientChunkCache; net/minecraft/client/multiplayer/ClientLevel/getChunkSource ()Lnet/minecraft/client/multiplayer/ClientChunkCache; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7785_ (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V net/minecraft/client/multiplayer/ClientLevel/playLocalSound (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V +MD: net/minecraft/client/multiplayer/ClientLevel/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel$1/ ()V net/minecraft/client/multiplayer/ClientLevel$1/ ()V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/ (Lnet/minecraft/world/Difficulty;ZZ)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/ (Lnet/minecraft/world/Difficulty;ZZ)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104849_ (J)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setGameTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104851_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104858_ (Z)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setDifficultyLocked (Z)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104863_ (J)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setDayTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_171687_ (Lnet/minecraft/world/level/LevelHeightAccessor;)D net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getHorizonHeight (Lnet/minecraft/world/level/LevelHeightAccessor;)D +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_205519_ ()F net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getClearColorScale ()F +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5466_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isHardcore ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5474_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isDifficultyLocked ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5565_ (Z)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setRaining (Z)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6395_ (I)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setXSpawn (I)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6397_ (I)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setYSpawn (I)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6400_ (I)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setZSpawn (I)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6526_ ()I net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getZSpawn ()I +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6527_ ()I net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getYSpawn ()I +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6533_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isRaining ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6534_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isThundering ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6789_ ()I net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getXSpawn ()I +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6790_ ()F net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getSpawnAngle ()F +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6792_ ()J net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getDayTime ()J +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6793_ ()J net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getGameTime ()J +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_7113_ (F)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setSpawnAngle (F)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/ (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141981_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingEnd (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141981_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141983_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingEnd (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141983_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141985_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingStart (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141985_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141986_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onDestroyed (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141986_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onDestroyed (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141987_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141987_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingStart (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141989_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onCreated (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141989_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onCreated (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_214006_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onSectionChange (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_214006_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onSectionChange (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/ ()V net/minecraft/client/multiplayer/ClientPacketListener/ ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V net/minecraft/client/multiplayer/ClientPacketListener/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104910_ ()Lnet/minecraft/network/Connection; net/minecraft/client/multiplayer/ClientPacketListener/getConnection ()Lnet/minecraft/network/Connection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104927_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/multiplayer/ClientPacketListener/findTotem (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104938_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/PlayerInfo; net/minecraft/client/multiplayer/ClientPacketListener/getPlayerInfo (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/PlayerInfo; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104949_ (Ljava/util/UUID;)Lnet/minecraft/client/multiplayer/PlayerInfo; net/minecraft/client/multiplayer/ClientPacketListener/getPlayerInfo (Ljava/util/UUID;)Lnet/minecraft/client/multiplayer/PlayerInfo; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104951_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/multiplayer/ClientPacketListener/downloadCallback (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104955_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/client/multiplayer/ClientPacketListener/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105135_ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V net/minecraft/client/multiplayer/ClientPacketListener/send (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105137_ ()Lnet/minecraft/client/multiplayer/ClientSuggestionProvider; net/minecraft/client/multiplayer/ClientPacketListener/getSuggestionsProvider ()Lnet/minecraft/client/multiplayer/ClientSuggestionProvider; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105141_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/client/multiplayer/ClientPacketListener/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105142_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientPacketListener/getOnlinePlayers ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105143_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientPacketListener/getOnlinePlayerIds ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105144_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/multiplayer/ClientPacketListener/getLocalGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105145_ ()Lnet/minecraft/client/multiplayer/ClientAdvancements; net/minecraft/client/multiplayer/ClientPacketListener/getAdvancements ()Lnet/minecraft/client/multiplayer/ClientAdvancements; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105146_ ()Lcom/mojang/brigadier/CommandDispatcher; net/minecraft/client/multiplayer/ClientPacketListener/getCommands ()Lcom/mojang/brigadier/CommandDispatcher; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105147_ ()Lnet/minecraft/client/multiplayer/ClientLevel; net/minecraft/client/multiplayer/ClientPacketListener/getLevel ()Lnet/minecraft/client/multiplayer/ClientLevel; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105149_ ()Lnet/minecraft/client/DebugQueryHandler; net/minecraft/client/multiplayer/ClientPacketListener/getDebugQueryHandler ()Lnet/minecraft/client/DebugQueryHandler; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105150_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/ClientPacketListener/getId ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105151_ ()Ljava/util/Set; net/minecraft/client/multiplayer/ClientPacketListener/levels ()Ljava/util/Set; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105152_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/client/multiplayer/ClientPacketListener/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_141913_ (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setSubtitleText (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_141955_ (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePing (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142056_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderWarningDelay (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142058_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerCombatEnter (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142185_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setTitlesAnimation (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142234_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerCombatEnd (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142237_ (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleInitializeBorder (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142238_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142442_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setTitleText (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142456_ (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setActionBarText (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142612_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderCenter (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142686_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderLerpSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142696_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderWarningDistance (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142747_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerCombatKill (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142766_ (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTitlesClear (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_171734_ (IILnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;Ljava/util/BitSet;Ljava/util/BitSet;Ljava/util/Iterator;)V net/minecraft/client/multiplayer/ClientPacketListener/readSectionList (IILnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;Ljava/util/BitSet;Ljava/util/BitSet;Ljava/util/Iterator;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_171759_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ClientPacketListener/preparePackPrompt (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_182047_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRemoveEntities (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_183388_ (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLevelChunkWithLight (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_183514_ (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLightUpdatePacket (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_183623_ (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetSimulationDistance (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194198_ (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/updateLevelChunk (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194212_ (Lnet/minecraft/world/level/chunk/LevelChunk;II)V net/minecraft/client/multiplayer/ClientPacketListener/enableChunkLight (Lnet/minecraft/world/level/chunk/LevelChunk;II)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194248_ (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/applyLightData (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194252_ (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/queueLightRemoval (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205520_ (I)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleRemoveEntities$2 (I)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205526_ (Lnet/minecraft/world/entity/Entity;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleSetEquipment$7 (Lnet/minecraft/world/entity/Entity;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205538_ (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleAddOrRemoveRecipes$10 (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205555_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleBlockEntityData$6 (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205558_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/client/multiplayer/ClientPacketListener/lambda$updateTagsForRegistry$11 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205560_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V net/minecraft/client/multiplayer/ClientPacketListener/updateTagsForRegistry (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205571_ (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLevelChunkWithLight$4 (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213565_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerInfoRemove (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213629_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerChat (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213672_ (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleServerData (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213990_ (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSystemChat (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_214045_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerInfoUpdate (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_214108_ (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockChangedAck (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233661_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleCustomPayload$17 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233663_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientPacketListener/postAddEntitySoundInstance (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233665_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handlePlaceRecipe$19 (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233668_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleSetPlayerTeamPacket$18 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233679_ (Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/client/multiplayer/ClientPacketListener/lambda$downloadCallback$16 (Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233681_ (Ljava/net/URL;Ljava/lang/String;ZLnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleResourcePack$14 (Ljava/net/URL;Ljava/lang/String;ZLnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233709_ (Ljava/lang/String;)Ljava/net/URL; net/minecraft/client/multiplayer/ClientPacketListener/parseResourcePackUrl (Ljava/lang/String;)Ljava/net/URL; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233711_ (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLightUpdatePacket$20 (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233715_ ()V net/minecraft/client/multiplayer/ClientPacketListener/lambda$downloadCallback$15 ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_240695_ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCustomChatCompletions (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_241037_ (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDeleteChat (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_241155_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleEnabledFeatures (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_242011_ (Lnet/minecraft/network/chat/PlayerChatMessage;Z)V net/minecraft/client/multiplayer/ClientPacketListener/markMessageAsProcessed (Lnet/minecraft/network/chat/PlayerChatMessage;Z)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_244704_ (Ljava/net/URL;Ljava/lang/String;ZZ)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleResourcePack$13 (Ljava/net/URL;Ljava/lang/String;ZZ)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_244707_ (Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessagesTracker$Update;Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/multiplayer/ClientPacketListener/lambda$sendCommand$21 (Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessagesTracker$Update;Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_245186_ (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; net/minecraft/client/multiplayer/ClientPacketListener/parseCommand (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_245416_ ()Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ClientPacketListener/getServerData ()Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_245842_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/multiplayer/ClientPacketListener/initializeChatSession (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246170_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientPacketListener/getListedOnlinePlayers ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246175_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientPacketListener/sendChat (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246351_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/client/multiplayer/ClientPacketListener/isFeatureEnabled (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246623_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientPacketListener/sendCommand (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246979_ (Ljava/lang/String;)Z net/minecraft/client/multiplayer/ClientPacketListener/sendUnsignedCommand (Ljava/lang/String;)Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_247016_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/client/multiplayer/ClientPacketListener/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_247639_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/multiplayer/ClientPacketListener/applyPlayerInfoUpdate (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_247711_ ()V net/minecraft/client/multiplayer/ClientPacketListener/sendChatAcknowledgement ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_252585_ (Ljava/util/Optional;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$tick$22 (Ljava/util/Optional;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_252587_ (Ljava/util/Optional;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLogin$1 (Ljava/util/Optional;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_253150_ ()Z net/minecraft/client/multiplayer/ClientPacketListener/enforcesSecureChat ()Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_257085_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLogin$0 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_260951_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/client/multiplayer/ClientPacketListener/setKeyPair (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_261044_ ()V net/minecraft/client/multiplayer/ClientPacketListener/close ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_264143_ (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleHurtAnimation (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_264308_ (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBundlePacket (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_268789_ ()Z net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleKeepAlive$12 ()Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_269082_ (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDamageEvent (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_269212_ ()V net/minecraft/client/multiplayer/ClientPacketListener/sendDeferredPackets ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_269234_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;Ljava/time/Duration;)V net/minecraft/client/multiplayer/ClientPacketListener/sendWhen (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;Ljava/time/Duration;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_271558_ (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleAddOrRemoveRecipes$9 (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_274374_ (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleChunksBiomes (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_276175_ ()V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleGameEvent$8 ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_283976_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleChunkBlocksUpdate$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_285673_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$queueLightRemoval$5 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5498_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateAdvancementsPacket (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5547_ (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetHealth (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5556_ (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetDisplayObjective (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5582_ (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetPlayerTeamPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5587_ (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleResourcePack (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5599_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleEntityLinkPacket (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5612_ (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5682_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMovePlayer (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5729_ (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleForgetLevelChunk (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5735_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerSetSlot (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5767_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5771_ (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleChunkBlocksUpdate (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5859_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateTags (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5863_ (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSoundEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5943_ (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockDestruction (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5980_ (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleOpenScreen (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5998_ (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLogin (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6008_ (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDisconnect (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6148_ (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTagQueryPacket (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6176_ (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRotateMob (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6198_ ()Z net/minecraft/client/multiplayer/ClientPacketListener/isAcceptingMessages ()Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6235_ (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTabListCustomisation (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6327_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateRecipes (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6403_ (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEntityPassengersPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6435_ (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTeleportEntity (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6447_ (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetCamera (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6455_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEntityData (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6476_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRemoveMobEffect (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6482_ (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddPlayer (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6503_ (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleOpenBook (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6571_ (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetSpawn (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6664_ (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6747_ (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetExperience (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6771_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddEntity (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6773_ (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockUpdate (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6837_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerContent (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6905_ (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleHorseScreenOpen (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/ClientPacketListener/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7039_ (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDisguisedChat (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7183_ (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleStopSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7231_ (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleKeepAlive (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7244_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLookAt (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7257_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerSetData (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7271_ (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAwardStats (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7277_ (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEquipment (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7299_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetChunkCacheRadius (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7330_ (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMerchantOffers (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7339_ (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7345_ (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleExplosion (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7364_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockEvent (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7406_ (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleParticleEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7410_ (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7413_ (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCustomPayload (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7443_ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCommands (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7519_ (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetScore (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7545_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockEntityData (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7553_ (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSelectAdvancementsTab (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7589_ (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCommandSuggestions (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7616_ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleGameEvent (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7628_ (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7633_ (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMapItemData (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7685_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBossUpdate (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7701_ (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleItemCooldown (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7704_ (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLevelEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7708_ (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddExperienceOrb (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7710_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateAttributes (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7776_ (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerClose (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7791_ (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAnimate (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7865_ (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMoveEntity (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7885_ (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetTime (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7915_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateMobEffect (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7957_ (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddObjective (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7992_ (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRespawn (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8001_ (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTakeItemEntity (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8047_ (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleOpenSignEditor (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8048_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEntityMotion (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8065_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetChunkCacheCenter (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8068_ (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8076_ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddOrRemoveRecipes (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_9933_ ()V net/minecraft/client/multiplayer/ClientPacketListener/tick ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener$1/ ()V net/minecraft/client/multiplayer/ClientPacketListener$1/ ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;J)V net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;J)V +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268477_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/sendCondition ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268574_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/packet ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268654_ ()J net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/expirationTime ()J +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/hashCode ()I net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/hashCode ()I +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/ ()V net/minecraft/client/multiplayer/ClientRegistryLayer/ ()V +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/ (Ljava/lang/String;I)V net/minecraft/client/multiplayer/ClientRegistryLayer/ (Ljava/lang/String;I)V +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/m_245874_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/client/multiplayer/ClientRegistryLayer/createRegistryAccess ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/m_247567_ ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; net/minecraft/client/multiplayer/ClientRegistryLayer/$values ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ClientRegistryLayer; net/minecraft/client/multiplayer/ClientRegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/values ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; net/minecraft/client/multiplayer/ClientRegistryLayer/values ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/multiplayer/ClientSuggestionProvider/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_105167_ (D)Ljava/lang/String; net/minecraft/client/multiplayer/ClientSuggestionProvider/prettyPrint (D)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_105169_ (I)Ljava/lang/String; net/minecraft/client/multiplayer/ClientSuggestionProvider/prettyPrint (I)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_105171_ (ILcom/mojang/brigadier/suggestion/Suggestions;)V net/minecraft/client/multiplayer/ClientSuggestionProvider/completeCustomSuggestions (ILcom/mojang/brigadier/suggestion/Suggestions;)V +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212095_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/suggestRegistryElements (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212155_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/customSuggestion (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212424_ (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/lambda$suggestRegistryElements$0 (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212433_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/lambda$suggestRegistryElements$1 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_240700_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getCustomTabSugggestions ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_240713_ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V net/minecraft/client/multiplayer/ClientSuggestionProvider/modifyCustomCompletions (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_245239_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/client/multiplayer/ClientSuggestionProvider/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5894_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/client/multiplayer/ClientSuggestionProvider/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5982_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getOnlinePlayerNames ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5983_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getAllTeams ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5984_ ()Ljava/util/stream/Stream; net/minecraft/client/multiplayer/ClientSuggestionProvider/getAvailableSounds ()Ljava/util/stream/Stream; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6264_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getSelectedEntities ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6265_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getRelevantCoordinates ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6284_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getAbsoluteCoordinates ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6553_ ()Ljava/util/Set; net/minecraft/client/multiplayer/ClientSuggestionProvider/levels ()Ljava/util/Set; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6761_ (I)Z net/minecraft/client/multiplayer/ClientSuggestionProvider/hasPermission (I)Z +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6860_ ()Ljava/util/stream/Stream; net/minecraft/client/multiplayer/ClientSuggestionProvider/getRecipeNames ()Ljava/util/stream/Stream; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider$1/ ()V net/minecraft/client/multiplayer/ClientSuggestionProvider$1/ ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/ ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientPacketListener;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientPacketListener;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105205_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/canHurtPlayer ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105206_ (I)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handlePickItem (I)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105208_ (II)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleInventoryButtonClick (II)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105217_ (ILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handlePlaceRecipe (ILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105221_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/adjustPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105223_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/attack (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105226_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105230_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/EntityHitResult;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/interactAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/EntityHitResult;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105239_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleCreativeModeItemDrop (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105241_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleCreativeModeItemAdd (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105246_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;)Lnet/minecraft/client/player/LocalPlayer; net/minecraft/client/multiplayer/MultiPlayerGameMode/createPlayer (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;)Lnet/minecraft/client/player/LocalPlayer; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105250_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)Lnet/minecraft/client/player/LocalPlayer; net/minecraft/client/multiplayer/MultiPlayerGameMode/createPlayer (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)Lnet/minecraft/client/player/LocalPlayer; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105267_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105269_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/startDestroyBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105276_ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/stopDestroyBlock ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105277_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/releaseUsingItem (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105279_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/setLocalMode (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105281_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/sameDestroyTarget (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105283_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/continueDestroyBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105286_ ()F net/minecraft/client/multiplayer/MultiPlayerGameMode/getPickRange ()F +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105287_ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/tick ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105288_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasExperience ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105289_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasMissTime ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105290_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasInfiniteItems ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105291_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasFarPickRange ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105292_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/isServerControlledInventory ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105293_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/isAlwaysFlying ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105294_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/multiplayer/MultiPlayerGameMode/getPreviousPlayerMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105295_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/multiplayer/MultiPlayerGameMode/getPlayerMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105296_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/isDestroying ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105297_ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/ensureHasSentCarriedItem ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_171799_ (IIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleInventoryMouseClick (IIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_171805_ (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/setLocalMode (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233716_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;Lorg/apache/commons/lang3/mutable/MutableObject;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$useItem$5 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;Lorg/apache/commons/lang3/mutable/MutableObject;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233721_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/useItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233724_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$startDestroyBlock$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233729_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/prediction/PredictiveAction;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/startPrediction (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/prediction/PredictiveAction;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233732_ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/useItemOn (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233736_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$continueDestroyBlock$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233740_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$useItemOn$4 (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233746_ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/performUseItemOn (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233750_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$continueDestroyBlock$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233754_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$startDestroyBlock$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_287167_ ()I net/minecraft/client/multiplayer/MultiPlayerGameMode/getDestroyStage ()I +MD: net/minecraft/client/multiplayer/PlayerInfo/ (Lcom/mojang/authlib/GameProfile;Z)V net/minecraft/client/multiplayer/PlayerInfo/ (Lcom/mojang/authlib/GameProfile;Z)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105312_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/multiplayer/PlayerInfo/getProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105313_ (I)V net/minecraft/client/multiplayer/PlayerInfo/setLatency (I)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105317_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/multiplayer/PlayerInfo/setGameMode (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105319_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V net/minecraft/client/multiplayer/PlayerInfo/lambda$registerTextures$0 (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105323_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/PlayerInfo/setTabListDisplayName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105325_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/multiplayer/PlayerInfo/getGameMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105330_ ()I net/minecraft/client/multiplayer/PlayerInfo/getLatency ()I +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105335_ ()Z net/minecraft/client/multiplayer/PlayerInfo/isSkinLoaded ()Z +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105336_ ()Ljava/lang/String; net/minecraft/client/multiplayer/PlayerInfo/getModelName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105337_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/multiplayer/PlayerInfo/getSkinLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105338_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/multiplayer/PlayerInfo/getCapeLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105339_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/multiplayer/PlayerInfo/getElytraLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105340_ ()Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/client/multiplayer/PlayerInfo/getTeam ()Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105341_ ()V net/minecraft/client/multiplayer/PlayerInfo/registerTextures ()V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105342_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/PlayerInfo/getTabListDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_171808_ ()Z net/minecraft/client/multiplayer/PlayerInfo/isCapeLoaded ()Z +MD: net/minecraft/client/multiplayer/PlayerInfo/m_241043_ ()Lnet/minecraft/network/chat/SignedMessageValidator; net/minecraft/client/multiplayer/PlayerInfo/getMessageValidator ()Lnet/minecraft/network/chat/SignedMessageValidator; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_246479_ (Lnet/minecraft/network/chat/RemoteChatSession;)V net/minecraft/client/multiplayer/PlayerInfo/setChatSession (Lnet/minecraft/network/chat/RemoteChatSession;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_247101_ ()Z net/minecraft/client/multiplayer/PlayerInfo/hasVerifiableChat ()Z +MD: net/minecraft/client/multiplayer/PlayerInfo/m_247593_ ()Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/client/multiplayer/PlayerInfo/getChatSession ()Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_253000_ (Z)Lnet/minecraft/network/chat/SignedMessageValidator; net/minecraft/client/multiplayer/PlayerInfo/fallbackMessageValidator (Z)Lnet/minecraft/network/chat/SignedMessageValidator; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_253204_ (Z)V net/minecraft/client/multiplayer/PlayerInfo/clearChatSession (Z)V +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/ ()V net/minecraft/client/multiplayer/ProfileKeyPairManager/ ()V +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/m_252904_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ProfileKeyPairManager/prepareKeyPair ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/m_252915_ (Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;Ljava/nio/file/Path;)Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; net/minecraft/client/multiplayer/ProfileKeyPairManager/create (Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;Ljava/nio/file/Path;)Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/m_253130_ ()Z net/minecraft/client/multiplayer/ProfileKeyPairManager/shouldRefreshKeyPair ()Z +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager$1/ ()V net/minecraft/client/multiplayer/ProfileKeyPairManager$1/ ()V +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager$1/m_252904_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ProfileKeyPairManager$1/prepareKeyPair ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager$1/m_253130_ ()Z net/minecraft/client/multiplayer/ProfileKeyPairManager$1/shouldRefreshKeyPair ()Z +MD: net/minecraft/client/multiplayer/ServerData/ ()V net/minecraft/client/multiplayer/ServerData/ ()V +MD: net/minecraft/client/multiplayer/ServerData/ (Ljava/lang/String;Ljava/lang/String;Z)V net/minecraft/client/multiplayer/ServerData/ (Ljava/lang/String;Ljava/lang/String;Z)V +MD: net/minecraft/client/multiplayer/ServerData/m_105378_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/client/multiplayer/ServerData/write ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/client/multiplayer/ServerData/m_105379_ (Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V net/minecraft/client/multiplayer/ServerData/setResourcePackStatus (Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V +MD: net/minecraft/client/multiplayer/ServerData/m_105381_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerData/copyFrom (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerData/m_105385_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerData/read (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerData/m_105387_ ()Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData/getResourcePackStatus ()Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerData/m_105389_ ()Z net/minecraft/client/multiplayer/ServerData/isLan ()Z +MD: net/minecraft/client/multiplayer/ServerData/m_233803_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerData/copyNameIconFrom (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerData/m_242962_ ()Z net/minecraft/client/multiplayer/ServerData/enforcesSecureChat ()Z +MD: net/minecraft/client/multiplayer/ServerData/m_242965_ (Z)V net/minecraft/client/multiplayer/ServerData/setEnforcesSecureChat (Z)V +MD: net/minecraft/client/multiplayer/ServerData/m_271813_ ([B)V net/minecraft/client/multiplayer/ServerData/setIconBytes ([B)V +MD: net/minecraft/client/multiplayer/ServerData/m_271916_ ()[B net/minecraft/client/multiplayer/ServerData/getIconBytes ()[B +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ ()V net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ ()V +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/m_105400_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/m_171809_ ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/$values ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/values ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/values ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerList/ ()V net/minecraft/client/multiplayer/ServerList/ ()V +MD: net/minecraft/client/multiplayer/ServerList/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/multiplayer/ServerList/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/multiplayer/ServerList/m_105431_ ()V net/minecraft/client/multiplayer/ServerList/load ()V +MD: net/minecraft/client/multiplayer/ServerList/m_105432_ (I)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerList/get (I)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerList/m_105434_ (II)V net/minecraft/client/multiplayer/ServerList/swap (II)V +MD: net/minecraft/client/multiplayer/ServerList/m_105437_ (ILnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/replace (ILnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerList/m_105440_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/remove (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerList/m_105442_ ()V net/minecraft/client/multiplayer/ServerList/save ()V +MD: net/minecraft/client/multiplayer/ServerList/m_105445_ ()I net/minecraft/client/multiplayer/ServerList/size ()I +MD: net/minecraft/client/multiplayer/ServerList/m_105446_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/saveSingleServer (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerList/m_233839_ (Lnet/minecraft/client/multiplayer/ServerData;Ljava/util/List;)Z net/minecraft/client/multiplayer/ServerList/set (Lnet/minecraft/client/multiplayer/ServerData;Ljava/util/List;)Z +MD: net/minecraft/client/multiplayer/ServerList/m_233842_ (Lnet/minecraft/client/multiplayer/ServerData;Z)V net/minecraft/client/multiplayer/ServerList/add (Lnet/minecraft/client/multiplayer/ServerData;Z)V +MD: net/minecraft/client/multiplayer/ServerList/m_233845_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerList/get (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerList/m_233847_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerList/unhide (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerList/m_233849_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/lambda$saveSingleServer$0 (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/ ()V net/minecraft/client/multiplayer/ServerStatusPinger/ ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/ ()V net/minecraft/client/multiplayer/ServerStatusPinger/ ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105453_ ()V net/minecraft/client/multiplayer/ServerStatusPinger/tick ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105459_ (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;)V net/minecraft/client/multiplayer/ServerStatusPinger/pingServer (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105465_ ()V net/minecraft/client/multiplayer/ServerStatusPinger/removeAll ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105466_ (II)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ServerStatusPinger/formatPlayerCount (II)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_171811_ (Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger/pingLegacyServer (Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_171814_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger/onPingFailed (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_264509_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/multiplayer/ServerStatusPinger/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Ljava/net/InetSocketAddress;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Ljava/net/InetSocketAddress;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_271709_ (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$4 (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_271999_ (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Players;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$2 (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Players;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_272044_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$3 (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_272230_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$1 (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_272281_ (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Version;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$0 (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Version;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_6198_ ()Z net/minecraft/client/multiplayer/ServerStatusPinger$1/isAcceptingMessages ()Z +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_6440_ (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/handleStatusResponse (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_7017_ (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/handlePongResponse (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger$2/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2/initChannel (Lio/netty/channel/Channel;)V net/minecraft/client/multiplayer/ServerStatusPinger$2/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger$2;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger$2;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelActive (Lio/netty/channel/ChannelHandlerContext;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelActive (Lio/netty/channel/ChannelHandlerContext;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/multiplayer/chat/ChatListener/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240473_ (Lnet/minecraft/network/chat/Component;)Ljava/util/UUID; net/minecraft/client/multiplayer/chat/ChatListener/guessChatUUID (Lnet/minecraft/network/chat/Component;)Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240494_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/multiplayer/chat/ChatListener/handleSystemMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240498_ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V net/minecraft/client/multiplayer/chat/ChatListener/logSystemMessage (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240688_ ()V net/minecraft/client/multiplayer/chat/ChatListener/tick ()V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240692_ (D)V net/minecraft/client/multiplayer/chat/ChatListener/setMessageDelay (D)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240706_ ()Z net/minecraft/client/multiplayer/chat/ChatListener/willDelayMessages ()Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240711_ ()V net/minecraft/client/multiplayer/chat/ChatListener/acceptNextDelayedMessage ()V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240956_ (Lnet/minecraft/network/chat/MessageSignature;)Z net/minecraft/client/multiplayer/chat/ChatListener/removeFromDelayedMessageQueue (Lnet/minecraft/network/chat/MessageSignature;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240963_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/ChatListener/isSenderLocalPlayer (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_241119_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/chat/ChatListener/narrateChatMessage (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_241954_ ()V net/minecraft/client/multiplayer/chat/ChatListener/clearQueue ()V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_242024_ ()J net/minecraft/client/multiplayer/chat/ChatListener/queueSize ()J +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_244709_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Z net/minecraft/client/multiplayer/chat/ChatListener/lambda$handleDisguisedChatMessage$2 (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_244710_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z net/minecraft/client/multiplayer/chat/ChatListener/lambda$handlePlayerChatMessage$1 (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_244711_ (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/multiplayer/chat/ChatListener$Message;)Z net/minecraft/client/multiplayer/chat/ChatListener/lambda$removeFromDelayedMessageQueue$0 (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/multiplayer/chat/ChatListener$Message;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_245141_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/client/multiplayer/chat/ChatListener/handleDisguisedChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_245326_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V net/minecraft/client/multiplayer/chat/ChatListener/logPlayerMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_245744_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatListener/evaluateTrustLevel (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_246163_ (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/multiplayer/chat/ChatListener/handleMessage (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_246494_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z net/minecraft/client/multiplayer/chat/ChatListener/showMessageToPlayer (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_247425_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/client/multiplayer/chat/ChatListener/handlePlayerChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/ (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/multiplayer/chat/ChatListener$Message/ (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/ChatListener$Message/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244088_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/multiplayer/chat/ChatListener$Message/handler ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244535_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/multiplayer/chat/ChatListener$Message/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/hashCode ()I net/minecraft/client/multiplayer/chat/ChatListener$Message/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/m_240698_ ()Z net/minecraft/client/multiplayer/chat/ChatListener$Message/accept ()Z +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/ChatListener$Message/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/ChatLog/ (I)V net/minecraft/client/multiplayer/chat/ChatLog/ (I)V +MD: net/minecraft/client/multiplayer/chat/ChatLog/ (ILjava/util/List;)V net/minecraft/client/multiplayer/chat/ChatLog/ (ILjava/util/List;)V +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_239049_ (I)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; net/minecraft/client/multiplayer/chat/ChatLog/lookup (I)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_239651_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent;)V net/minecraft/client/multiplayer/chat/ChatLog/push (Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent;)V +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_245303_ (I)I net/minecraft/client/multiplayer/chat/ChatLog/index (I)I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_245950_ ()I net/minecraft/client/multiplayer/chat/ChatLog/end ()I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_246004_ ()I net/minecraft/client/multiplayer/chat/ChatLog/start ()I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_252737_ (I)Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/ChatLog/codec (I)Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_252894_ (II)[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; net/minecraft/client/multiplayer/chat/ChatLog/lambda$new$2 (II)[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_252924_ ()Ljava/util/List; net/minecraft/client/multiplayer/chat/ChatLog/loggedChatEvents ()Ljava/util/List; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_253001_ ()I net/minecraft/client/multiplayer/chat/ChatLog/size ()I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_274000_ (ILjava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/client/multiplayer/chat/ChatLog/lambda$codec$1 (ILjava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_274001_ (II)Ljava/lang/String; net/minecraft/client/multiplayer/chat/ChatLog/lambda$codec$0 (II)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/ ()V net/minecraft/client/multiplayer/chat/ChatTrustLevel/ ()V +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/chat/ChatTrustLevel/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_240405_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/multiplayer/chat/ChatTrustLevel/createTag (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_240444_ ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/$values ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_240450_ ()Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/isNotSecure ()Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_245358_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/evaluate (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_246526_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/containsModifiedStyle (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_246638_ (Lnet/minecraft/network/chat/Style;)Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/isModifiedStyle (Lnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_247462_ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/multiplayer/chat/ChatTrustLevel/lambda$containsModifiedStyle$0 (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_247746_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/isModified (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_7912_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/ChatTrustLevel/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/values ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/values ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/ ()V net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent/ ()V net/minecraft/client/multiplayer/chat/LoggedChatEvent/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent/m_252883_ ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent/type ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ ()V net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_252746_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/lambda$static$0 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_252861_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_252918_ ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/$values ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_253152_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/lambda$static$1 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_7912_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/values ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/values ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241813_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage/toNarrationComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241821_ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$System; net/minecraft/client/multiplayer/chat/LoggedChatMessage/system (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$System; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241831_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage/toContentComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241866_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage/canReport (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_261049_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player; net/minecraft/client/multiplayer/chat/LoggedChatMessage/player (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ ()V net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241609_ ()Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/trustLevel ()Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241668_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/profile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241690_ ()Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/message ()Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/hashCode ()I net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241803_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/profileId ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241813_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toNarrationComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241827_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/getTimeComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241831_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toContentComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241865_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toHeadingComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241866_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/canReport (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_252883_ ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/type ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_260763_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ ()V net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241622_ ()Ljava/time/Instant; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241673_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/hashCode ()I net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_241831_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/toContentComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_241866_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/canReport (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_252883_ ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/type ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_253117_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_238990_ ()Z net/minecraft/client/multiplayer/chat/report/AbuseReportSender/isEnabled ()Z +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_239469_ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/chat/report/AbuseReportSender/send (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_239479_ ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; net/minecraft/client/multiplayer/chat/report/AbuseReportSender/reportLimits ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_239535_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; net/minecraft/client/multiplayer/chat/report/AbuseReportSender/create (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/ ()V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/ ()V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ ()V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ ()V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238677_ ()Lcom/mojang/authlib/minecraft/UserApiService; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/userApiService ()Lcom/mojang/authlib/minecraft/UserApiService; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238713_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/environment ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/hashCode ()I net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_238990_ ()Z net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/isEnabled ()Z +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_239469_ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/send (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_239479_ ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/reportLimits ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_239704_ (Lcom/mojang/authlib/exceptions/MinecraftClientHttpException;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/getHttpErrorDescription (Lcom/mojang/authlib/exceptions/MinecraftClientHttpException;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_240067_ (Lcom/mojang/authlib/exceptions/MinecraftClientException;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/getErrorDescription (Lcom/mojang/authlib/exceptions/MinecraftClientException;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_244712_ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Lcom/mojang/datafixers/util/Unit; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/lambda$send$0 (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/ ()V net/minecraft/client/multiplayer/chat/report/BanReason/ ()V +MD: net/minecraft/client/multiplayer/chat/report/BanReason/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/chat/report/BanReason/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/BanReason/m_271684_ (I)Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/byId (I)Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/m_271764_ ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/$values ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/m_271811_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/BanReason/title ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_238976_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/comments ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239051_ (I)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/toggleReported (I)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239079_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/setComments (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239097_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/setReason (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239182_ (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Lcom/mojang/authlib/minecraft/report/ReportEvidence; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/buildEvidence (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Lcom/mojang/authlib/minecraft/report/ReportEvidence; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239332_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/checkBuildable ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239339_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/reason ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239436_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/reportedProfileId ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239582_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/copy ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239716_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/reportedMessages ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_240128_ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/build (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_240221_ (I)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/isReported (I)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_244713_ (Ljava/util/List;ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/lambda$buildEvidence$0 (Ljava/util/List;ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_246289_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)Lcom/mojang/authlib/minecraft/report/ReportChatMessage; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/buildReportedChatMessage (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)Lcom/mojang/authlib/minecraft/report/ReportChatMessage; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_252870_ ()Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/hasContent ()Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_253002_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/report ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ ()V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ ()V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238631_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/hashCode ()I net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/UUID;Ljava/time/Instant;Ljava/util/UUID;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/UUID;Ljava/time/Instant;Ljava/util/UUID;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/m_252761_ (ILcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/toggleReported (ILcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/m_252787_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/isReportedPlayer (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/m_252798_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/copy ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238727_ ()Lcom/mojang/authlib/minecraft/report/AbuseReport; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/report ()Lcom/mojang/authlib/minecraft/report/AbuseReport; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238815_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/id ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/hashCode ()I net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/ (I)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/ (I)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_246365_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/trackContext (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_246644_ (Lnet/minecraft/client/multiplayer/chat/ChatLog;Lit/unimi/dsi/fastutil/ints/IntCollection;Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/collectAllContext (Lnet/minecraft/client/multiplayer/chat/ChatLog;Lit/unimi/dsi/fastutil/ints/IntCollection;Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_246673_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/acceptContext (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_247717_ ()Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/isActive ()Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/m_245354_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/accept (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/m_246153_ ()Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/isComplete ()Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler/m_247017_ (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler/accept (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/ (Ljava/lang/String;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment/ (Ljava/lang/String;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ReportEnvironment/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238655_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/server ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238774_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/clientVersion ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/hashCode ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_238998_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/thirdParty (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239120_ ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ClientInfo; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/clientInfo ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ClientInfo; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239166_ ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ThirdPartyServerInfo; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/thirdPartyServerInfo ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ThirdPartyServerInfo; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239334_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/getClientVersion ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239764_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/realm (Lcom/mojang/realmsclient/dto/RealmsServer;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239898_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/local ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239906_ ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$RealmInfo; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/realmInfo ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$RealmInfo; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239955_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/create (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (JI)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (JI)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (Lcom/mojang/realmsclient/dto/RealmsServer;)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238670_ ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/slotId ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238769_ ()J net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/realmId ()J +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/hashCode ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ (Ljava/lang/String;)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/f_238648_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ip ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/hashCode ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/ ()V net/minecraft/client/multiplayer/chat/report/ReportReason/ ()V +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/chat/report/ReportReason/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_239342_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/ReportReason/title ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_239892_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportReason/backendName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_240151_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/ReportReason/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_240189_ ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ReportReason/$values ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ReportReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ReportReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/ (Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lnet/minecraft/client/multiplayer/chat/ChatLog;)V net/minecraft/client/multiplayer/chat/report/ReportingContext/ (Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lnet/minecraft/client/multiplayer/chat/ChatLog;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_239685_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; net/minecraft/client/multiplayer/chat/report/ReportingContext/create (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_239733_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)Z net/minecraft/client/multiplayer/chat/report/ReportingContext/matches (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_239899_ ()Lnet/minecraft/client/multiplayer/chat/ChatLog; net/minecraft/client/multiplayer/chat/report/ReportingContext/chatLog ()Lnet/minecraft/client/multiplayer/chat/ChatLog; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_240161_ ()Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; net/minecraft/client/multiplayer/chat/report/ReportingContext/sender ()Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_253037_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V net/minecraft/client/multiplayer/chat/report/ReportingContext/setChatReportDraft (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_253142_ ()Z net/minecraft/client/multiplayer/chat/report/ReportingContext/hasDraftReport ()Z +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_253247_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/report/ReportingContext/hasDraftReportFor (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_260764_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Ljava/lang/Runnable;Z)V net/minecraft/client/multiplayer/chat/report/ReportingContext/lambda$draftReportHandled$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_261157_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Runnable;Z)V net/minecraft/client/multiplayer/chat/report/ReportingContext/draftReportHandled (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/ ()V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/ ()V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/close ()V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/close ()V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233855_ ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/startPredicting ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233856_ (ILnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/endPredictionsUpTo (ILnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233864_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/updateKnownServerState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233867_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/retainKnownServerState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233871_ ()I net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/currentSequence ()I +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233872_ ()Z net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/isPredicting ()Z +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_289052_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;Ljava/lang/Long;Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState;)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/lambda$retainKnownServerState$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;Ljava/lang/Long;Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState;)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/ (ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/ (ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/m_233881_ (I)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/setSequence (I)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/m_233883_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/setBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/prediction/PredictiveAction/m_233885_ (I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/prediction/PredictiveAction/predict (I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/resolver/AddressCheck/m_142408_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck/m_142649_ (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck/m_171828_ ()Lnet/minecraft/client/multiplayer/resolver/AddressCheck; net/minecraft/client/multiplayer/resolver/AddressCheck/createFromService ()Lnet/minecraft/client/multiplayer/resolver/AddressCheck; +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/ (Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/multiplayer/resolver/AddressCheck$1/ (Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_142408_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_142649_ (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_171838_ (Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Predicate;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/lambda$isAllowed$0 (Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_171842_ (Ljava/lang/String;Ljava/util/function/Predicate;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/lambda$isAllowed$1 (Ljava/lang/String;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142599_ ()I net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/getPort ()I +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142641_ ()Ljava/net/InetSocketAddress; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/asInetSocketAddress ()Ljava/net/InetSocketAddress; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142727_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/getHostName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142728_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/getHostIp ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_171845_ (Ljava/net/InetSocketAddress;)Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/from (Ljava/net/InetSocketAddress;)Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/ (Ljava/net/InetSocketAddress;)V net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/ (Ljava/net/InetSocketAddress;)V +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142599_ ()I net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/getPort ()I +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142641_ ()Ljava/net/InetSocketAddress; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/asInetSocketAddress ()Ljava/net/InetSocketAddress; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142727_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/getHostName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142728_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/getHostIp ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/ ()V net/minecraft/client/multiplayer/resolver/ServerAddress/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/ (Lcom/google/common/net/HostAndPort;)V net/minecraft/client/multiplayer/resolver/ServerAddress/ (Lcom/google/common/net/HostAndPort;)V +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/ (Ljava/lang/String;I)V net/minecraft/client/multiplayer/resolver/ServerAddress/ (Ljava/lang/String;I)V +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/resolver/ServerAddress/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/hashCode ()I net/minecraft/client/multiplayer/resolver/ServerAddress/hashCode ()I +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171863_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ServerAddress/getHost ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171864_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/resolver/ServerAddress; net/minecraft/client/multiplayer/resolver/ServerAddress/parseString (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/resolver/ServerAddress; +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171866_ ()I net/minecraft/client/multiplayer/resolver/ServerAddress/getPort ()I +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171867_ (Ljava/lang/String;)Z net/minecraft/client/multiplayer/resolver/ServerAddress/isValidAddress (Ljava/lang/String;)Z +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171869_ (Ljava/lang/String;)I net/minecraft/client/multiplayer/resolver/ServerAddress/parsePort (Ljava/lang/String;)I +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ServerAddress/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/ ()V net/minecraft/client/multiplayer/resolver/ServerAddressResolver/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/m_171877_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerAddressResolver/lambda$static$0 (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/m_171879_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerAddressResolver/resolve (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/ ()V net/minecraft/client/multiplayer/resolver/ServerNameResolver/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/ (Lnet/minecraft/client/multiplayer/resolver/ServerAddressResolver;Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler;Lnet/minecraft/client/multiplayer/resolver/AddressCheck;)V net/minecraft/client/multiplayer/resolver/ServerNameResolver/ (Lnet/minecraft/client/multiplayer/resolver/ServerAddressResolver;Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler;Lnet/minecraft/client/multiplayer/resolver/AddressCheck;)V +MD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/m_171890_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerNameResolver/resolveAddress (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/ ()V net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171895_ ()Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/createDnsSrvRedirectHandler ()Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171896_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/lambda$static$0 (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171898_ (Ljavax/naming/directory/DirContext;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/lambda$createDnsSrvRedirectHandler$1 (Ljavax/naming/directory/DirContext;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171901_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/lookupRedirect (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/particle/AshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AshParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/AshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AshParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/AttackSweepParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AttackSweepParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AttackSweepParticle/m_5989_ ()V net/minecraft/client/particle/AttackSweepParticle/tick ()V +MD: net/minecraft/client/particle/AttackSweepParticle/m_6355_ (F)I net/minecraft/client/particle/AttackSweepParticle/getLightColor (F)I +MD: net/minecraft/client/particle/AttackSweepParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/AttackSweepParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/AttackSweepParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AttackSweepParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AttackSweepParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AttackSweepParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/AttackSweepParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AttackSweepParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BaseAshSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFDDDFLnet/minecraft/client/particle/SpriteSet;FIFZ)V net/minecraft/client/particle/BaseAshSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFDDDFLnet/minecraft/client/particle/SpriteSet;FIFZ)V +MD: net/minecraft/client/particle/BaseAshSmokeParticle/m_5902_ (F)F net/minecraft/client/particle/BaseAshSmokeParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/BaseAshSmokeParticle/m_5989_ ()V net/minecraft/client/particle/BaseAshSmokeParticle/tick ()V +MD: net/minecraft/client/particle/BaseAshSmokeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BaseAshSmokeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BlockMarker/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/particle/BlockMarker/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/particle/BlockMarker/m_5902_ (F)F net/minecraft/client/particle/BlockMarker/getQuadSize (F)F +MD: net/minecraft/client/particle/BlockMarker/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BlockMarker/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BlockMarker$Provider/ ()V net/minecraft/client/particle/BlockMarker$Provider/ ()V +MD: net/minecraft/client/particle/BlockMarker$Provider/m_6966_ (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BlockMarker$Provider/createParticle (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BlockMarker$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BlockMarker$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/particle/BreakingItemParticle/m_5950_ ()F net/minecraft/client/particle/BreakingItemParticle/getV1 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_5951_ ()F net/minecraft/client/particle/BreakingItemParticle/getV0 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_5952_ ()F net/minecraft/client/particle/BreakingItemParticle/getU1 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_5970_ ()F net/minecraft/client/particle/BreakingItemParticle/getU0 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BreakingItemParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BreakingItemParticle$Provider/ ()V net/minecraft/client/particle/BreakingItemParticle$Provider/ ()V +MD: net/minecraft/client/particle/BreakingItemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ItemParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$Provider/createParticle (Lnet/minecraft/core/particles/ItemParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/ ()V net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/ ()V +MD: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/ ()V net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/ ()V +MD: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleColumnUpParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/BubbleColumnUpParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/BubbleColumnUpParticle/m_5989_ ()V net/minecraft/client/particle/BubbleColumnUpParticle/tick ()V +MD: net/minecraft/client/particle/BubbleColumnUpParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BubbleColumnUpParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubbleColumnUpParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleColumnUpParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleColumnUpParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/BubbleParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/BubbleParticle/m_5989_ ()V net/minecraft/client/particle/BubbleParticle/tick ()V +MD: net/minecraft/client/particle/BubbleParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BubbleParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BubbleParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubbleParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubbleParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubblePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubblePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubblePopParticle/m_5989_ ()V net/minecraft/client/particle/BubblePopParticle/tick ()V +MD: net/minecraft/client/particle/BubblePopParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BubblePopParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BubblePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubblePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubblePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubblePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubblePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubblePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDZ)V net/minecraft/client/particle/CampfireSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDZ)V +MD: net/minecraft/client/particle/CampfireSmokeParticle/m_5989_ ()V net/minecraft/client/particle/CampfireSmokeParticle/tick ()V +MD: net/minecraft/client/particle/CampfireSmokeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/CampfireSmokeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CherryParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CherryParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CherryParticle/m_5989_ ()V net/minecraft/client/particle/CherryParticle/tick ()V +MD: net/minecraft/client/particle/CherryParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/CherryParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/CritParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/CritParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/CritParticle/m_5902_ (F)F net/minecraft/client/particle/CritParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/CritParticle/m_5989_ ()V net/minecraft/client/particle/CritParticle/tick ()V +MD: net/minecraft/client/particle/CritParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/CritParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$MagicProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CritParticle$MagicProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CritParticle$MagicProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$MagicProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$MagicProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$MagicProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CritParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CritParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DragonBreathParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DragonBreathParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DragonBreathParticle/m_5902_ (F)F net/minecraft/client/particle/DragonBreathParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/DragonBreathParticle/m_5989_ ()V net/minecraft/client/particle/DragonBreathParticle/tick ()V +MD: net/minecraft/client/particle/DragonBreathParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/DragonBreathParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/DragonBreathParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DragonBreathParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DragonBreathParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DragonBreathParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DragonBreathParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DragonBreathParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DripParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V net/minecraft/client/particle/DripParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/client/particle/DripParticle/m_171928_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/client/particle/DripParticle/getType ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/client/particle/DripParticle/m_271744_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createHoneyLandParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271760_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneLavaFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271789_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneLavaHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271885_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createLavaLandParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271915_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createWaterFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271935_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createObsidianTearHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271941_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createObsidianTearFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271993_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneWaterFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272002_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneWaterHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272020_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createWaterHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272026_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createLavaFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272030_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createHoneyFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272107_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createHoneyHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272109_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createLavaHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272129_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createNectarFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272251_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createObsidianTearLandParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272261_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createSporeBlossomFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle/m_5956_ ()V net/minecraft/client/particle/DripParticle/preMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle/m_5989_ ()V net/minecraft/client/particle/DripParticle/tick ()V +MD: net/minecraft/client/particle/DripParticle/m_6355_ (F)I net/minecraft/client/particle/DripParticle/getLightColor (F)I +MD: net/minecraft/client/particle/DripParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/DripParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/m_5956_ ()V net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/preMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$DripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$DripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$DripHangParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$DripHangParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$DripHangParticle/m_5956_ ()V net/minecraft/client/particle/DripParticle$DripHangParticle/preMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$DripLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V net/minecraft/client/particle/DripParticle$DripLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$FallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$FallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$FallAndLandParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$FallAndLandParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;I)V net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;I)V +MD: net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/client/particle/DripParticle$FallingParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$FallingParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DustColorTransitionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustColorTransitionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustColorTransitionParticle/m_172069_ (F)V net/minecraft/client/particle/DustColorTransitionParticle/lerpColors (F)V +MD: net/minecraft/client/particle/DustColorTransitionParticle/m_252968_ (Lorg/joml/Vector3f;F)Lorg/joml/Vector3f; net/minecraft/client/particle/DustColorTransitionParticle/randomizeColor (Lorg/joml/Vector3f;F)Lorg/joml/Vector3f; +MD: net/minecraft/client/particle/DustColorTransitionParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/DustColorTransitionParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustColorTransitionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustColorTransitionParticle$Provider/createParticle (Lnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustColorTransitionParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustParticle$Provider/createParticle (Lnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustParticleBase/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptionsBase;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustParticleBase/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptionsBase;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustParticleBase/m_172104_ (FF)F net/minecraft/client/particle/DustParticleBase/randomizeColor (FF)F +MD: net/minecraft/client/particle/DustParticleBase/m_5902_ (F)F net/minecraft/client/particle/DustParticleBase/getQuadSize (F)F +MD: net/minecraft/client/particle/DustParticleBase/m_5989_ ()V net/minecraft/client/particle/DustParticleBase/tick ()V +MD: net/minecraft/client/particle/DustParticleBase/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/DustParticleBase/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/EnchantmentTableParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/EnchantmentTableParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_5989_ ()V net/minecraft/client/particle/EnchantmentTableParticle/tick ()V +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_6257_ (DDD)V net/minecraft/client/particle/EnchantmentTableParticle/move (DDD)V +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_6355_ (F)I net/minecraft/client/particle/EnchantmentTableParticle/getLightColor (F)I +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/EnchantmentTableParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EnchantmentTableParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EndRodParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EndRodParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EndRodParticle/m_6257_ (DDD)V net/minecraft/client/particle/EndRodParticle/move (DDD)V +MD: net/minecraft/client/particle/EndRodParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EndRodParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EndRodParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EndRodParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EndRodParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EndRodParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ExplodeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ExplodeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ExplodeParticle/m_5989_ ()V net/minecraft/client/particle/ExplodeParticle/tick ()V +MD: net/minecraft/client/particle/ExplodeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/ExplodeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/ExplodeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ExplodeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ExplodeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ExplodeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ExplodeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ExplodeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FallingDustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FallingDustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FallingDustParticle/m_5902_ (F)F net/minecraft/client/particle/FallingDustParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/FallingDustParticle/m_5989_ ()V net/minecraft/client/particle/FallingDustParticle/tick ()V +MD: net/minecraft/client/particle/FallingDustParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/FallingDustParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/FallingDustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FallingDustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FallingDustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FallingDustParticle$Provider/createParticle (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FallingDustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FallingDustParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles/ ()V net/minecraft/client/particle/FireworkParticles/ ()V +MD: net/minecraft/client/particle/FireworkParticles$1/ ()V net/minecraft/client/particle/FireworkParticles$1/ ()V +MD: net/minecraft/client/particle/FireworkParticles$FlashProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FireworkParticles$FlashProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FireworkParticles$FlashProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$FlashProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$FlashProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$FlashProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/FireworkParticles$OverlayParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/FireworkParticles$OverlayParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/m_5902_ (F)F net/minecraft/client/particle/FireworkParticles$OverlayParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/FireworkParticles$OverlayParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FireworkParticles$SparkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_106727_ (Z)V net/minecraft/client/particle/FireworkParticles$SparkParticle/setTrail (Z)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_106729_ (Z)V net/minecraft/client/particle/FireworkParticles$SparkParticle/setFlicker (Z)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/FireworkParticles$SparkParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_5989_ ()V net/minecraft/client/particle/FireworkParticles$SparkParticle/tick ()V +MD: net/minecraft/client/particle/FireworkParticles$SparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FireworkParticles$SparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FireworkParticles$SparkProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$SparkProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$SparkProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$SparkProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$Starter/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/particle/FireworkParticles$Starter/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106767_ (DDDDDD[I[IZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticle (DDDDDD[I[IZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106778_ (DI[I[IZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticleBall (DI[I[IZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106785_ (D[[D[I[IZZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticleShape (D[[D[I[IZZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106793_ ([I[IZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticleBurst ([I[IZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106798_ ()Z net/minecraft/client/particle/FireworkParticles$Starter/isFarAwayFromCamera ()Z +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_5989_ ()V net/minecraft/client/particle/FireworkParticles$Starter/tick ()V +MD: net/minecraft/client/particle/FlameParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/FlameParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/FlameParticle/m_5902_ (F)F net/minecraft/client/particle/FlameParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/FlameParticle/m_6257_ (DDD)V net/minecraft/client/particle/FlameParticle/move (DDD)V +MD: net/minecraft/client/particle/FlameParticle/m_6355_ (F)I net/minecraft/client/particle/FlameParticle/getLightColor (F)I +MD: net/minecraft/client/particle/FlameParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/FlameParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/FlameParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FlameParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FlameParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FlameParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FlameParticle$SmallFlameProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$SmallFlameProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$SmallFlameProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle/ ()V net/minecraft/client/particle/GlowParticle/ ()V +MD: net/minecraft/client/particle/GlowParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle/m_5989_ ()V net/minecraft/client/particle/GlowParticle/tick ()V +MD: net/minecraft/client/particle/GlowParticle/m_6355_ (F)I net/minecraft/client/particle/GlowParticle/getLightColor (F)I +MD: net/minecraft/client/particle/GlowParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/GlowParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$GlowSquidProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$GlowSquidProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$GlowSquidProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$ScrapeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ScrapeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ScrapeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$WaxOffProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOffProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOffProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$WaxOnProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOnProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOnProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/HeartParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/HeartParticle/m_5902_ (F)F net/minecraft/client/particle/HeartParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/HeartParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/HeartParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HeartParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HeartParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HugeExplosionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HugeExplosionParticle/m_5989_ ()V net/minecraft/client/particle/HugeExplosionParticle/tick ()V +MD: net/minecraft/client/particle/HugeExplosionParticle/m_6355_ (F)I net/minecraft/client/particle/HugeExplosionParticle/getLightColor (F)I +MD: net/minecraft/client/particle/HugeExplosionParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/HugeExplosionParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/HugeExplosionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HugeExplosionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HugeExplosionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionSeedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/HugeExplosionSeedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/HugeExplosionSeedParticle/m_5989_ ()V net/minecraft/client/particle/HugeExplosionSeedParticle/tick ()V +MD: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/ ()V net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/ ()V +MD: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/particle/ItemPickupParticle/m_107036_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/client/particle/ItemPickupParticle/getSafeCopy (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/particle/ItemPickupParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/ItemPickupParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/ItemPickupParticle/m_5989_ ()V net/minecraft/client/particle/ItemPickupParticle/tick ()V +MD: net/minecraft/client/particle/ItemPickupParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/ItemPickupParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/LargeSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/LargeSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/LargeSmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/LargeSmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/LargeSmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LargeSmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/LargeSmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LargeSmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/LavaParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/LavaParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/LavaParticle/m_5902_ (F)F net/minecraft/client/particle/LavaParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/LavaParticle/m_5989_ ()V net/minecraft/client/particle/LavaParticle/tick ()V +MD: net/minecraft/client/particle/LavaParticle/m_6355_ (F)I net/minecraft/client/particle/LavaParticle/getLightColor (F)I +MD: net/minecraft/client/particle/LavaParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/LavaParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/LavaParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/LavaParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/LavaParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LavaParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/LavaParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LavaParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/MobAppearanceParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/MobAppearanceParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/MobAppearanceParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/MobAppearanceParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/MobAppearanceParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/MobAppearanceParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/MobAppearanceParticle$Provider/ ()V net/minecraft/client/particle/MobAppearanceParticle$Provider/ ()V +MD: net/minecraft/client/particle/MobAppearanceParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/MobAppearanceParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/MobAppearanceParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/MobAppearanceParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/NoRenderParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/NoRenderParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/NoRenderParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/NoRenderParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/NoteParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDD)V net/minecraft/client/particle/NoteParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDD)V +MD: net/minecraft/client/particle/NoteParticle/m_5902_ (F)F net/minecraft/client/particle/NoteParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/NoteParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/NoteParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/NoteParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/NoteParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/NoteParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/NoteParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/NoteParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/NoteParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/Particle/ ()V net/minecraft/client/particle/Particle/ ()V +MD: net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/Particle/m_107250_ (FF)V net/minecraft/client/particle/Particle/setSize (FF)V +MD: net/minecraft/client/particle/Particle/m_107253_ (FFF)V net/minecraft/client/particle/Particle/setColor (FFF)V +MD: net/minecraft/client/particle/Particle/m_107257_ (I)V net/minecraft/client/particle/Particle/setLifetime (I)V +MD: net/minecraft/client/particle/Particle/m_107259_ (Lnet/minecraft/world/phys/AABB;)V net/minecraft/client/particle/Particle/setBoundingBox (Lnet/minecraft/world/phys/AABB;)V +MD: net/minecraft/client/particle/Particle/m_107264_ (DDD)V net/minecraft/client/particle/Particle/setPos (DDD)V +MD: net/minecraft/client/particle/Particle/m_107268_ (F)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/Particle/setPower (F)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/Particle/m_107271_ (F)V net/minecraft/client/particle/Particle/setAlpha (F)V +MD: net/minecraft/client/particle/Particle/m_107273_ ()I net/minecraft/client/particle/Particle/getLifetime ()I +MD: net/minecraft/client/particle/Particle/m_107274_ ()V net/minecraft/client/particle/Particle/remove ()V +MD: net/minecraft/client/particle/Particle/m_107275_ ()V net/minecraft/client/particle/Particle/setLocationFromBoundingbox ()V +MD: net/minecraft/client/particle/Particle/m_107276_ ()Z net/minecraft/client/particle/Particle/isAlive ()Z +MD: net/minecraft/client/particle/Particle/m_107277_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/client/particle/Particle/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/client/particle/Particle/m_142654_ ()Ljava/util/Optional; net/minecraft/client/particle/Particle/getParticleGroup ()Ljava/util/Optional; +MD: net/minecraft/client/particle/Particle/m_172260_ (DDD)V net/minecraft/client/particle/Particle/setParticleSpeed (DDD)V +MD: net/minecraft/client/particle/Particle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/Particle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/Particle/m_5989_ ()V net/minecraft/client/particle/Particle/tick ()V +MD: net/minecraft/client/particle/Particle/m_6257_ (DDD)V net/minecraft/client/particle/Particle/move (DDD)V +MD: net/minecraft/client/particle/Particle/m_6355_ (F)I net/minecraft/client/particle/Particle/getLightColor (F)I +MD: net/minecraft/client/particle/Particle/m_6569_ (F)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/Particle/scale (F)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/Particle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/Particle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/Particle/toString ()Ljava/lang/String; net/minecraft/client/particle/Particle/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleDescription/ (Ljava/util/List;)V net/minecraft/client/particle/ParticleDescription/ (Ljava/util/List;)V +MD: net/minecraft/client/particle/ParticleDescription/m_107282_ ()Ljava/util/List; net/minecraft/client/particle/ParticleDescription/getTextures ()Ljava/util/List; +MD: net/minecraft/client/particle/ParticleDescription/m_107283_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/client/particle/ParticleDescription/lambda$fromJson$0 (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleDescription/m_107285_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/particle/ParticleDescription; net/minecraft/client/particle/ParticleDescription/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/particle/ParticleDescription; +MD: net/minecraft/client/particle/ParticleEngine/ ()V net/minecraft/client/particle/ParticleEngine/ ()V +MD: net/minecraft/client/particle/ParticleEngine/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleEngine/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107301_ ()V net/minecraft/client/particle/ParticleEngine/close ()V +MD: net/minecraft/client/particle/ParticleEngine/m_107329_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/ParticleEngine/createTrackingEmitter (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107332_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V net/minecraft/client/particle/ParticleEngine/createTrackingEmitter (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V +MD: net/minecraft/client/particle/ParticleEngine/m_107336_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/renderer/LightTexture;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/ParticleEngine/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/renderer/LightTexture;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/ParticleEngine/m_107342_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/particle/ParticleEngine/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107344_ (Lnet/minecraft/client/particle/Particle;)V net/minecraft/client/particle/ParticleEngine/add (Lnet/minecraft/client/particle/Particle;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107346_ (Lnet/minecraft/client/particle/ParticleRenderType;)Ljava/util/Queue; net/minecraft/client/particle/ParticleEngine/lambda$tick$11 (Lnet/minecraft/client/particle/ParticleRenderType;)Ljava/util/Queue; +MD: net/minecraft/client/particle/ParticleEngine/m_107355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/particle/ParticleEngine/destroy (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107367_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/client/particle/ParticleEngine/crack (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107370_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/createParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_107378_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V net/minecraft/client/particle/ParticleEngine/register (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107381_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V net/minecraft/client/particle/ParticleEngine/register (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107384_ (Ljava/util/Collection;)V net/minecraft/client/particle/ParticleEngine/tickParticleList (Ljava/util/Collection;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107388_ ()V net/minecraft/client/particle/ParticleEngine/tick ()V +MD: net/minecraft/client/particle/ParticleEngine/m_107393_ (Lnet/minecraft/client/particle/Particle;)V net/minecraft/client/particle/ParticleEngine/tickParticle (Lnet/minecraft/client/particle/Particle;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107395_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/makeParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_107403_ ()Ljava/lang/String; net/minecraft/client/particle/ParticleEngine/countParticles ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleEngine/m_107404_ ()V net/minecraft/client/particle/ParticleEngine/registerProviders ()V +MD: net/minecraft/client/particle/ParticleEngine/m_172270_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;DDDDDD)V net/minecraft/client/particle/ParticleEngine/lambda$destroy$13 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;DDDDDD)V +MD: net/minecraft/client/particle/ParticleEngine/m_172279_ (Lnet/minecraft/core/particles/ParticleGroup;)Z net/minecraft/client/particle/ParticleEngine/hasSpaceInParticleLimit (Lnet/minecraft/core/particles/ParticleGroup;)Z +MD: net/minecraft/client/particle/ParticleEngine/m_172281_ (Lnet/minecraft/core/particles/ParticleGroup;I)V net/minecraft/client/particle/ParticleEngine/updateCount (Lnet/minecraft/core/particles/ParticleGroup;I)V +MD: net/minecraft/client/particle/ParticleEngine/m_172288_ (Lnet/minecraft/core/particles/ParticleGroup;)V net/minecraft/client/particle/ParticleEngine/lambda$tickParticleList$12 (Lnet/minecraft/core/particles/ParticleGroup;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244715_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V net/minecraft/client/particle/ParticleEngine/lambda$reload$9 (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244716_ (Ljava/util/List;Ljava/util/concurrent/Executor;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/particle/ParticleEngine/lambda$reload$6 (Ljava/util/List;Ljava/util/concurrent/Executor;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244717_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition; net/minecraft/client/particle/ParticleEngine/lambda$reload$5 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition; +MD: net/minecraft/client/particle/ParticleEngine/m_244719_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Ljava/util/Set;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition;)V net/minecraft/client/particle/ParticleEngine/lambda$reload$8 (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Ljava/util/Set;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244721_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/particle/ParticleEngine/lambda$reload$7 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/particle/ParticleEngine/m_244722_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/client/particle/ParticleEngine/lambda$reload$4 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/client/particle/ParticleEngine/m_245118_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; net/minecraft/client/particle/ParticleEngine/loadParticleDescription (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; +MD: net/minecraft/client/particle/ParticleEngine/m_263560_ ()V net/minecraft/client/particle/ParticleEngine/clearParticles ()V +MD: net/minecraft/client/particle/ParticleEngine/m_271560_ (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; net/minecraft/client/particle/ParticleEngine/lambda$register$3 (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; +MD: net/minecraft/client/particle/ParticleEngine/m_271561_ (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/lambda$register$2 (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_272137_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V net/minecraft/client/particle/ParticleEngine/register (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V +MD: net/minecraft/client/particle/ParticleEngine/m_276702_ (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; net/minecraft/client/particle/ParticleEngine/lambda$registerProviders$1 (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; +MD: net/minecraft/client/particle/ParticleEngine/m_276703_ (Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/lambda$registerProviders$0 (Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_287801_ (Lnet/minecraft/client/particle/ParticleRenderType;Ljava/util/Queue;)V net/minecraft/client/particle/ParticleEngine/lambda$tick$10 (Lnet/minecraft/client/particle/ParticleRenderType;Ljava/util/Queue;)V +MD: net/minecraft/client/particle/ParticleEngine/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/particle/ParticleEngine/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_243741_ ()Ljava/util/Optional; net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/sprites ()Ljava/util/Optional; +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_244103_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/hashCode ()I net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/hashCode ()I +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/ ()V net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/ ()V +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/m_107415_ (Ljava/util/List;)V net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/rebind (Ljava/util/List;)V +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/m_213979_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/get (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/m_5819_ (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/get (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration/m_107419_ (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration/create (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; +MD: net/minecraft/client/particle/ParticleProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleProvider$Sprite/m_272232_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/ParticleProvider$Sprite/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/ParticleRenderType/ ()V net/minecraft/client/particle/ParticleRenderType/ ()V +MD: net/minecraft/client/particle/ParticleRenderType/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$1/ ()V net/minecraft/client/particle/ParticleRenderType$1/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$1/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$1/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$1/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$1/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$1/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$1/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$2/ ()V net/minecraft/client/particle/ParticleRenderType$2/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$2/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$2/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$2/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$2/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$2/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$2/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$3/ ()V net/minecraft/client/particle/ParticleRenderType$3/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$3/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$3/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$3/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$3/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$3/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$3/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$4/ ()V net/minecraft/client/particle/ParticleRenderType$4/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$4/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$4/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$4/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$4/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$4/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$4/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$5/ ()V net/minecraft/client/particle/ParticleRenderType$5/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$5/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$5/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$5/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$5/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$5/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$5/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$6/ ()V net/minecraft/client/particle/ParticleRenderType$6/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$6/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$6/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$6/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$6/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$6/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$6/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/PlayerCloudParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PlayerCloudParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PlayerCloudParticle/m_5902_ (F)F net/minecraft/client/particle/PlayerCloudParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/PlayerCloudParticle/m_5989_ ()V net/minecraft/client/particle/PlayerCloudParticle/tick ()V +MD: net/minecraft/client/particle/PlayerCloudParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/PlayerCloudParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/PlayerCloudParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PlayerCloudParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PlayerCloudParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PlayerCloudParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/PortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/PortalParticle/m_5902_ (F)F net/minecraft/client/particle/PortalParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/PortalParticle/m_5989_ ()V net/minecraft/client/particle/PortalParticle/tick ()V +MD: net/minecraft/client/particle/PortalParticle/m_6257_ (DDD)V net/minecraft/client/particle/PortalParticle/move (DDD)V +MD: net/minecraft/client/particle/PortalParticle/m_6355_ (F)I net/minecraft/client/particle/PortalParticle/getLightColor (F)I +MD: net/minecraft/client/particle/PortalParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/PortalParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/PortalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PortalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PortalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PortalParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PortalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PortalParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ReversePortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/ReversePortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/ReversePortalParticle/m_5902_ (F)F net/minecraft/client/particle/ReversePortalParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/ReversePortalParticle/m_5989_ ()V net/minecraft/client/particle/ReversePortalParticle/tick ()V +MD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/RisingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/RisingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SculkChargeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargeParticle/m_5989_ ()V net/minecraft/client/particle/SculkChargeParticle/tick ()V +MD: net/minecraft/client/particle/SculkChargeParticle/m_6355_ (F)I net/minecraft/client/particle/SculkChargeParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SculkChargeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SculkChargeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/equals (Ljava/lang/Object;)Z net/minecraft/client/particle/SculkChargeParticle$Provider/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/f_233904_ ()Lnet/minecraft/client/particle/SpriteSet; net/minecraft/client/particle/SculkChargeParticle$Provider/sprite ()Lnet/minecraft/client/particle/SpriteSet; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/hashCode ()I net/minecraft/client/particle/SculkChargeParticle$Provider/hashCode ()I +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SculkChargeParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SculkChargeParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/toString ()Ljava/lang/String; net/minecraft/client/particle/SculkChargeParticle$Provider/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/SculkChargePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargePopParticle/m_5989_ ()V net/minecraft/client/particle/SculkChargePopParticle/tick ()V +MD: net/minecraft/client/particle/SculkChargePopParticle/m_6355_ (F)I net/minecraft/client/particle/SculkChargePopParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SculkChargePopParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SculkChargePopParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/equals (Ljava/lang/Object;)Z net/minecraft/client/particle/SculkChargePopParticle$Provider/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/f_233944_ ()Lnet/minecraft/client/particle/SpriteSet; net/minecraft/client/particle/SculkChargePopParticle$Provider/sprite ()Lnet/minecraft/client/particle/SpriteSet; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/hashCode ()I net/minecraft/client/particle/SculkChargePopParticle$Provider/hashCode ()I +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/toString ()Ljava/lang/String; net/minecraft/client/particle/SculkChargePopParticle$Provider/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ShriekParticle/ ()V net/minecraft/client/particle/ShriekParticle/ ()V +MD: net/minecraft/client/particle/ShriekParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDI)V net/minecraft/client/particle/ShriekParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDI)V +MD: net/minecraft/client/particle/ShriekParticle/m_233988_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V net/minecraft/client/particle/ShriekParticle/renderRotatedParticle (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V +MD: net/minecraft/client/particle/ShriekParticle/m_252589_ (Lorg/joml/Quaternionf;)V net/minecraft/client/particle/ShriekParticle/lambda$render$1 (Lorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/ShriekParticle/m_252590_ (Lorg/joml/Quaternionf;)V net/minecraft/client/particle/ShriekParticle/lambda$render$0 (Lorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/ShriekParticle/m_252793_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Vector3f;FFI)V net/minecraft/client/particle/ShriekParticle/makeCornerVertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Vector3f;FFI)V +MD: net/minecraft/client/particle/ShriekParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/ShriekParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/ShriekParticle/m_5902_ (F)F net/minecraft/client/particle/ShriekParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/ShriekParticle/m_5989_ ()V net/minecraft/client/particle/ShriekParticle/tick ()V +MD: net/minecraft/client/particle/ShriekParticle/m_6355_ (F)I net/minecraft/client/particle/ShriekParticle/getLightColor (F)I +MD: net/minecraft/client/particle/ShriekParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/ShriekParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/ShriekParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ShriekParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ShriekParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ShriekParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ShriekParticle$Provider/createParticle (Lnet/minecraft/core/particles/ShriekParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ShriekParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ShriekParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SimpleAnimatedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;F)V net/minecraft/client/particle/SimpleAnimatedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;F)V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_107657_ (I)V net/minecraft/client/particle/SimpleAnimatedParticle/setColor (I)V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_107659_ (I)V net/minecraft/client/particle/SimpleAnimatedParticle/setFadeColor (I)V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_5989_ ()V net/minecraft/client/particle/SimpleAnimatedParticle/tick ()V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_6355_ (F)I net/minecraft/client/particle/SimpleAnimatedParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SimpleAnimatedParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/SingleQuadParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/SingleQuadParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/SingleQuadParticle/m_5902_ (F)F net/minecraft/client/particle/SingleQuadParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5950_ ()F net/minecraft/client/particle/SingleQuadParticle/getV1 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5951_ ()F net/minecraft/client/particle/SingleQuadParticle/getV0 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5952_ ()F net/minecraft/client/particle/SingleQuadParticle/getU1 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5970_ ()F net/minecraft/client/particle/SingleQuadParticle/getU0 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_6569_ (F)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SingleQuadParticle/scale (F)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SnowflakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SnowflakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SnowflakeParticle/m_5989_ ()V net/minecraft/client/particle/SnowflakeParticle/tick ()V +MD: net/minecraft/client/particle/SnowflakeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SnowflakeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SnowflakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SnowflakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SnowflakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SnowflakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SnowflakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SnowflakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SonicBoomParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SonicBoomParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SonicBoomParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SonicBoomParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SonicBoomParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SonicBoomParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SonicBoomParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SonicBoomParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SoulParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SoulParticle/m_5989_ ()V net/minecraft/client/particle/SoulParticle/tick ()V +MD: net/minecraft/client/particle/SoulParticle/m_6355_ (F)I net/minecraft/client/particle/SoulParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SoulParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SoulParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SoulParticle$EmissiveProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$EmissiveProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$EmissiveProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SoulParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SoulParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle/ ()V net/minecraft/client/particle/SpellParticle/ ()V +MD: net/minecraft/client/particle/SpellParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle/m_172323_ ()Z net/minecraft/client/particle/SpellParticle/isCloseToScopingPlayer ()Z +MD: net/minecraft/client/particle/SpellParticle/m_5989_ ()V net/minecraft/client/particle/SpellParticle/tick ()V +MD: net/minecraft/client/particle/SpellParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SpellParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$AmbientMobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$AmbientMobProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$AmbientMobProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$InstantProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$InstantProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$InstantProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$InstantProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$InstantProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$InstantProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$MobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$MobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$MobProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$MobProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$MobProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$MobProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$WitchProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$WitchProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$WitchProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$WitchProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$WitchProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$WitchProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpitParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpitParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpitParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpitParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpitParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpitParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpitParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpitParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SplashParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/SplashParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SplashParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SplashParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SplashParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SplashParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SplashParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SplashParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpriteSet/m_213979_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/SpriteSet/get (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/SpriteSet/m_5819_ (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/SpriteSet/get (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/SquidInkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDILnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SquidInkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDILnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SquidInkParticle/m_5989_ ()V net/minecraft/client/particle/SquidInkParticle/tick ()V +MD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SquidInkParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SquidInkParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SquidInkParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SquidInkParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V +MD: net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDD)V net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDD)V +MD: net/minecraft/client/particle/SuspendedParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SuspendedParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/ (Lnet/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/ (Lnet/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/m_142654_ ()Ljava/util/Optional; net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/getParticleGroup ()Ljava/util/Optional; +MD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/SuspendedTownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SuspendedTownParticle/m_5989_ ()V net/minecraft/client/particle/SuspendedTownParticle/tick ()V +MD: net/minecraft/client/particle/SuspendedTownParticle/m_6257_ (DDD)V net/minecraft/client/particle/SuspendedTownParticle/move (DDD)V +MD: net/minecraft/client/particle/SuspendedTownParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SuspendedTownParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/particle/TerrainParticle/m_5950_ ()F net/minecraft/client/particle/TerrainParticle/getV1 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_5951_ ()F net/minecraft/client/particle/TerrainParticle/getV0 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_5952_ ()F net/minecraft/client/particle/TerrainParticle/getU1 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_5970_ ()F net/minecraft/client/particle/TerrainParticle/getU0 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_6355_ (F)I net/minecraft/client/particle/TerrainParticle/getLightColor (F)I +MD: net/minecraft/client/particle/TerrainParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/TerrainParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/TerrainParticle$Provider/ ()V net/minecraft/client/particle/TerrainParticle$Provider/ ()V +MD: net/minecraft/client/particle/TerrainParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TerrainParticle$Provider/createParticle (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TerrainParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TerrainParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_108335_ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TextureSheetParticle/pickSprite (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_108337_ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/particle/TextureSheetParticle/setSprite (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_108339_ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TextureSheetParticle/setSpriteFromAge (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_5950_ ()F net/minecraft/client/particle/TextureSheetParticle/getV1 ()F +MD: net/minecraft/client/particle/TextureSheetParticle/m_5951_ ()F net/minecraft/client/particle/TextureSheetParticle/getV0 ()F +MD: net/minecraft/client/particle/TextureSheetParticle/m_5952_ ()F net/minecraft/client/particle/TextureSheetParticle/getU1 ()F +MD: net/minecraft/client/particle/TextureSheetParticle/m_5970_ ()F net/minecraft/client/particle/TextureSheetParticle/getU0 ()F +MD: net/minecraft/client/particle/TotemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TotemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TotemParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TotemParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TotemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TotemParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TotemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TotemParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V +MD: net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;ILnet/minecraft/world/phys/Vec3;)V net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;ILnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/particle/TrackingEmitter/m_5989_ ()V net/minecraft/client/particle/TrackingEmitter/tick ()V +MD: net/minecraft/client/particle/VibrationSignalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/client/particle/VibrationSignalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_172478_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V net/minecraft/client/particle/VibrationSignalParticle/renderSignal (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_252591_ (FFFLorg/joml/Quaternionf;)V net/minecraft/client/particle/VibrationSignalParticle/lambda$render$1 (FFFLorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_252592_ (FFFLorg/joml/Quaternionf;)V net/minecraft/client/particle/VibrationSignalParticle/lambda$render$0 (FFFLorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/VibrationSignalParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_5989_ ()V net/minecraft/client/particle/VibrationSignalParticle/tick ()V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_6355_ (F)I net/minecraft/client/particle/VibrationSignalParticle/getLightColor (F)I +MD: net/minecraft/client/particle/VibrationSignalParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/VibrationSignalParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/VibrationSignalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/VibrationSignalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/VibrationSignalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/VibrationParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/VibrationSignalParticle$Provider/createParticle (Lnet/minecraft/core/particles/VibrationParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/VibrationSignalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/VibrationSignalParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WakeParticle/m_5989_ ()V net/minecraft/client/particle/WakeParticle/tick ()V +MD: net/minecraft/client/particle/WakeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/WakeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/WakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterCurrentDownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/WaterCurrentDownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/WaterCurrentDownParticle/m_5989_ ()V net/minecraft/client/particle/WaterCurrentDownParticle/tick ()V +MD: net/minecraft/client/particle/WaterCurrentDownParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/WaterCurrentDownParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WaterCurrentDownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterCurrentDownParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterCurrentDownParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterDropParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/WaterDropParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/WaterDropParticle/m_5989_ ()V net/minecraft/client/particle/WaterDropParticle/tick ()V +MD: net/minecraft/client/particle/WaterDropParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/WaterDropParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/WaterDropParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WaterDropParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WaterDropParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterDropParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterDropParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterDropParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WhiteAshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WhiteAshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WhiteAshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WhiteAshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WhiteAshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WhiteAshParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WhiteAshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WhiteAshParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/player/AbstractClientPlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/player/AbstractClientPlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/player/AbstractClientPlayer/m_108555_ ()Z net/minecraft/client/player/AbstractClientPlayer/isCapeLoaded ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_108556_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getSkinLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108558_ ()Lnet/minecraft/client/multiplayer/PlayerInfo; net/minecraft/client/player/AbstractClientPlayer/getPlayerInfo ()Lnet/minecraft/client/multiplayer/PlayerInfo; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108559_ ()Z net/minecraft/client/player/AbstractClientPlayer/isSkinLoaded ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_108560_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getSkinTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108561_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getCloakTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108562_ ()Z net/minecraft/client/player/AbstractClientPlayer/isElytraLoaded ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_108563_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getElytraTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108564_ ()Ljava/lang/String; net/minecraft/client/player/AbstractClientPlayer/getModelName ()Ljava/lang/String; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108565_ ()F net/minecraft/client/player/AbstractClientPlayer/getFieldOfViewModifier ()F +MD: net/minecraft/client/player/AbstractClientPlayer/m_172521_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/player/AbstractClientPlayer/registerSkinTexture (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/player/AbstractClientPlayer/m_272267_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/player/AbstractClientPlayer/getDeltaMovementLerped (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/player/AbstractClientPlayer/m_5833_ ()Z net/minecraft/client/player/AbstractClientPlayer/isSpectator ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_7500_ ()Z net/minecraft/client/player/AbstractClientPlayer/isCreative ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_8119_ ()V net/minecraft/client/player/AbstractClientPlayer/tick ()V +MD: net/minecraft/client/player/Input/ ()V net/minecraft/client/player/Input/ ()V +MD: net/minecraft/client/player/Input/m_108575_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/client/player/Input/getMoveVector ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/client/player/Input/m_108577_ ()Z net/minecraft/client/player/Input/hasForwardImpulse ()Z +MD: net/minecraft/client/player/Input/m_214106_ (ZF)V net/minecraft/client/player/Input/tick (ZF)V +MD: net/minecraft/client/player/KeyboardInput/ (Lnet/minecraft/client/Options;)V net/minecraft/client/player/KeyboardInput/ (Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/player/KeyboardInput/m_205577_ (ZZ)F net/minecraft/client/player/KeyboardInput/calculateImpulse (ZZ)F +MD: net/minecraft/client/player/KeyboardInput/m_214106_ (ZF)V net/minecraft/client/player/KeyboardInput/tick (ZF)V +MD: net/minecraft/client/player/LocalPlayer/ ()V net/minecraft/client/player/LocalPlayer/ ()V +MD: net/minecraft/client/player/LocalPlayer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)V net/minecraft/client/player/LocalPlayer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)V +MD: net/minecraft/client/player/LocalPlayer/m_108628_ ()V net/minecraft/client/player/LocalPlayer/sendOpenInventory ()V +MD: net/minecraft/client/player/LocalPlayer/m_108629_ ()Ljava/lang/String; net/minecraft/client/player/LocalPlayer/getServerBrand ()Ljava/lang/String; +MD: net/minecraft/client/player/LocalPlayer/m_108630_ ()Lnet/minecraft/stats/StatsCounter; net/minecraft/client/player/LocalPlayer/getStats ()Lnet/minecraft/stats/StatsCounter; +MD: net/minecraft/client/player/LocalPlayer/m_108631_ ()Lnet/minecraft/client/ClientRecipeBook; net/minecraft/client/player/LocalPlayer/getRecipeBook ()Lnet/minecraft/client/ClientRecipeBook; +MD: net/minecraft/client/player/LocalPlayer/m_108632_ ()Z net/minecraft/client/player/LocalPlayer/shouldShowDeathScreen ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108634_ ()F net/minecraft/client/player/LocalPlayer/getJumpRidingScale ()F +MD: net/minecraft/client/player/LocalPlayer/m_108635_ ()Z net/minecraft/client/player/LocalPlayer/isMovingSlowly ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108636_ ()Z net/minecraft/client/player/LocalPlayer/isControlledCamera ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108637_ ()Z net/minecraft/client/player/LocalPlayer/isHandsBusy ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108638_ ()Z net/minecraft/client/player/LocalPlayer/isAutoJumpEnabled ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108639_ ()F net/minecraft/client/player/LocalPlayer/getWaterVision ()F +MD: net/minecraft/client/player/LocalPlayer/m_108640_ ()V net/minecraft/client/player/LocalPlayer/sendPosition ()V +MD: net/minecraft/client/player/LocalPlayer/m_108641_ ()V net/minecraft/client/player/LocalPlayer/handleNetherPortalClient ()V +MD: net/minecraft/client/player/LocalPlayer/m_108644_ (FII)V net/minecraft/client/player/LocalPlayer/setExperienceValues (FII)V +MD: net/minecraft/client/player/LocalPlayer/m_108648_ (I)V net/minecraft/client/player/LocalPlayer/setPermissionLevel (I)V +MD: net/minecraft/client/player/LocalPlayer/m_108675_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/player/LocalPlayer/removeRecipeHighlight (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/player/LocalPlayer/m_108700_ (Z)Z net/minecraft/client/player/LocalPlayer/drop (Z)Z +MD: net/minecraft/client/player/LocalPlayer/m_108704_ (DD)V net/minecraft/client/player/LocalPlayer/moveTowardsClosestSpace (DD)V +MD: net/minecraft/client/player/LocalPlayer/m_108711_ (Z)V net/minecraft/client/player/LocalPlayer/setShowDeathScreen (Z)V +MD: net/minecraft/client/player/LocalPlayer/m_108731_ ()Z net/minecraft/client/player/LocalPlayer/canAutoJump ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108732_ ()Z net/minecraft/client/player/LocalPlayer/isMoving ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108733_ ()Z net/minecraft/client/player/LocalPlayer/hasEnoughImpulseToStartSprinting ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108743_ (FF)V net/minecraft/client/player/LocalPlayer/updateAutoJump (FF)V +MD: net/minecraft/client/player/LocalPlayer/m_108746_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/player/LocalPlayer/suffocatesAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/player/LocalPlayer/m_108748_ (Ljava/lang/String;)V net/minecraft/client/player/LocalPlayer/setServerBrand (Ljava/lang/String;)V +MD: net/minecraft/client/player/LocalPlayer/m_108760_ (F)V net/minecraft/client/player/LocalPlayer/hurtTo (F)V +MD: net/minecraft/client/player/LocalPlayer/m_108762_ ()F net/minecraft/client/player/LocalPlayer/getCurrentMood ()F +MD: net/minecraft/client/player/LocalPlayer/m_108763_ ()V net/minecraft/client/player/LocalPlayer/clientSideCloseContainer ()V +MD: net/minecraft/client/player/LocalPlayer/m_108765_ ()V net/minecraft/client/player/LocalPlayer/sendRidingJump ()V +MD: net/minecraft/client/player/LocalPlayer/m_141945_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/client/player/LocalPlayer/updateTutorialInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/client/player/LocalPlayer/m_143387_ ()Z net/minecraft/client/player/LocalPlayer/isTextFilteringEnabled ()Z +MD: net/minecraft/client/player/LocalPlayer/m_172530_ ()V net/minecraft/client/player/LocalPlayer/resetPos ()V +MD: net/minecraft/client/player/LocalPlayer/m_196406_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/player/LocalPlayer/isHorizontalCollisionMinor (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/player/LocalPlayer/m_213816_ ()F net/minecraft/client/player/LocalPlayer/getVisualRotationYInDegrees ()F +MD: net/minecraft/client/player/LocalPlayer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/player/LocalPlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/player/LocalPlayer/m_21515_ ()Z net/minecraft/client/player/LocalPlayer/isEffectiveAi ()Z +MD: net/minecraft/client/player/LocalPlayer/m_238886_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; net/minecraft/client/player/LocalPlayer/lambda$updateAutoJump$0 (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; +MD: net/minecraft/client/player/LocalPlayer/m_245714_ ()Lnet/minecraft/world/entity/PlayerRideableJumping; net/minecraft/client/player/LocalPlayer/jumpableVehicle ()Lnet/minecraft/world/entity/PlayerRideableJumping; +MD: net/minecraft/client/player/LocalPlayer/m_254869_ ()V net/minecraft/client/player/LocalPlayer/sendIsSprintingIfNeeded ()V +MD: net/minecraft/client/player/LocalPlayer/m_255269_ ()Z net/minecraft/client/player/LocalPlayer/hasEnoughFoodToStartSprinting ()Z +MD: net/minecraft/client/player/LocalPlayer/m_264082_ ()Z net/minecraft/client/player/LocalPlayer/canStartSprinting ()Z +MD: net/minecraft/client/player/LocalPlayer/m_264231_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/player/LocalPlayer/vehicleCanSprint (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/player/LocalPlayer/m_287171_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/player/LocalPlayer/onGameModeChanged (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/player/LocalPlayer/m_5496_ (Lnet/minecraft/sounds/SoundEvent;FF)V net/minecraft/client/player/LocalPlayer/playSound (Lnet/minecraft/sounds/SoundEvent;FF)V +MD: net/minecraft/client/player/LocalPlayer/m_5634_ (F)V net/minecraft/client/player/LocalPlayer/heal (F)V +MD: net/minecraft/client/player/LocalPlayer/m_5661_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/player/LocalPlayer/displayClientMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/player/LocalPlayer/m_5675_ (F)F net/minecraft/client/player/LocalPlayer/getViewYRot (F)F +MD: net/minecraft/client/player/LocalPlayer/m_5686_ (F)F net/minecraft/client/player/LocalPlayer/getViewXRot (F)F +MD: net/minecraft/client/player/LocalPlayer/m_5700_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/player/LocalPlayer/magicCrit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/player/LocalPlayer/m_5704_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/player/LocalPlayer/crit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/player/LocalPlayer/m_5791_ ()Z net/minecraft/client/player/LocalPlayer/isSuppressingSlidingDownLadder ()Z +MD: net/minecraft/client/player/LocalPlayer/m_5810_ ()V net/minecraft/client/player/LocalPlayer/stopUsingItem ()V +MD: net/minecraft/client/player/LocalPlayer/m_5842_ ()Z net/minecraft/client/player/LocalPlayer/isUnderWater ()Z +MD: net/minecraft/client/player/LocalPlayer/m_5843_ ()Z net/minecraft/client/player/LocalPlayer/canSpawnSprintParticle ()Z +MD: net/minecraft/client/player/LocalPlayer/m_5966_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/client/player/LocalPlayer/openStructureBlock (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/client/player/LocalPlayer/m_6038_ ()V net/minecraft/client/player/LocalPlayer/removeVehicle ()V +MD: net/minecraft/client/player/LocalPlayer/m_6039_ ()Z net/minecraft/client/player/LocalPlayer/canSpawnSoulSpeedParticle ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6047_ ()Z net/minecraft/client/player/LocalPlayer/isCrouching ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6083_ ()V net/minecraft/client/player/LocalPlayer/rideTick ()V +MD: net/minecraft/client/player/LocalPlayer/m_6117_ ()Z net/minecraft/client/player/LocalPlayer/isUsingItem ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6140_ ()V net/minecraft/client/player/LocalPlayer/serverAiStep ()V +MD: net/minecraft/client/player/LocalPlayer/m_6144_ ()Z net/minecraft/client/player/LocalPlayer/isShiftKeyDown ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6153_ ()V net/minecraft/client/player/LocalPlayer/tickDeath ()V +MD: net/minecraft/client/player/LocalPlayer/m_6234_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/client/player/LocalPlayer/removeEffectNoUpdate (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/client/player/LocalPlayer/m_6330_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/client/player/LocalPlayer/playNotifySound (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/client/player/LocalPlayer/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/client/player/LocalPlayer/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/client/player/LocalPlayer/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/client/player/LocalPlayer/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/client/player/LocalPlayer/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/player/LocalPlayer/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/player/LocalPlayer/m_6672_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/player/LocalPlayer/startUsingItem (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/player/LocalPlayer/m_6674_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/player/LocalPlayer/swing (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/player/LocalPlayer/m_6885_ ()V net/minecraft/client/player/LocalPlayer/onUpdateAbilities ()V +MD: net/minecraft/client/player/LocalPlayer/m_6915_ ()V net/minecraft/client/player/LocalPlayer/closeContainer ()V +MD: net/minecraft/client/player/LocalPlayer/m_6986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/player/LocalPlayer/openItemGui (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/player/LocalPlayer/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/client/player/LocalPlayer/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/client/player/LocalPlayer/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/player/LocalPlayer/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/player/LocalPlayer/m_7569_ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V net/minecraft/client/player/LocalPlayer/openJigsawBlock (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V +MD: net/minecraft/client/player/LocalPlayer/m_7578_ ()Z net/minecraft/client/player/LocalPlayer/isLocalPlayer ()Z +MD: net/minecraft/client/player/LocalPlayer/m_7583_ ()V net/minecraft/client/player/LocalPlayer/respawn ()V +MD: net/minecraft/client/player/LocalPlayer/m_7602_ ()Z net/minecraft/client/player/LocalPlayer/updateIsUnderwater ()Z +MD: net/minecraft/client/player/LocalPlayer/m_7655_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/client/player/LocalPlayer/getUsedItemHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/client/player/LocalPlayer/m_7698_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/client/player/LocalPlayer/openCommandBlock (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/client/player/LocalPlayer/m_7739_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/client/player/LocalPlayer/openTextEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/client/player/LocalPlayer/m_7822_ (B)V net/minecraft/client/player/LocalPlayer/handleEntityEvent (B)V +MD: net/minecraft/client/player/LocalPlayer/m_7907_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/player/LocalPlayer/openMinecartCommandBlock (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/player/LocalPlayer/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/client/player/LocalPlayer/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/client/player/LocalPlayer/m_8088_ ()I net/minecraft/client/player/LocalPlayer/getPermissionLevel ()I +MD: net/minecraft/client/player/LocalPlayer/m_8107_ ()V net/minecraft/client/player/LocalPlayer/aiStep ()V +MD: net/minecraft/client/player/LocalPlayer/m_8119_ ()V net/minecraft/client/player/LocalPlayer/tick ()V +MD: net/minecraft/client/player/RemotePlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/player/RemotePlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/player/RemotePlayer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/player/RemotePlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/player/RemotePlayer/m_6001_ (DDD)V net/minecraft/client/player/RemotePlayer/lerpMotion (DDD)V +MD: net/minecraft/client/player/RemotePlayer/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/client/player/RemotePlayer/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/client/player/RemotePlayer/m_6783_ (D)Z net/minecraft/client/player/RemotePlayer/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/client/player/RemotePlayer/m_7594_ ()V net/minecraft/client/player/RemotePlayer/updatePlayerPose ()V +MD: net/minecraft/client/player/RemotePlayer/m_8107_ ()V net/minecraft/client/player/RemotePlayer/aiStep ()V +MD: net/minecraft/client/player/RemotePlayer/m_8119_ ()V net/minecraft/client/player/RemotePlayer/tick ()V +MD: net/minecraft/client/player/inventory/Hotbar/ ()V net/minecraft/client/player/inventory/Hotbar/ ()V +MD: net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/List; net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/List; +MD: net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/Collection; net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/Collection; +MD: net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/lang/Object; net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/lang/Object; +MD: net/minecraft/client/player/inventory/Hotbar/isEmpty ()Z net/minecraft/client/player/inventory/Hotbar/isEmpty ()Z +MD: net/minecraft/client/player/inventory/Hotbar/m_108782_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/client/player/inventory/Hotbar/createTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/client/player/inventory/Hotbar/m_108783_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/client/player/inventory/Hotbar/fromTag (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Lnet/minecraft/client/renderer/LevelRenderer;)V net/minecraft/client/profiling/ClientMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Lnet/minecraft/client/renderer/LevelRenderer;)V +MD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/m_142531_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/client/profiling/ClientMetricsSamplersProvider/samplers (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/m_172542_ ()V net/minecraft/client/profiling/ClientMetricsSamplersProvider/registerStaticSamplers ()V +MD: net/minecraft/client/quickplay/QuickPlay/ ()V net/minecraft/client/quickplay/QuickPlay/ ()V +MD: net/minecraft/client/quickplay/QuickPlay/ ()V net/minecraft/client/quickplay/QuickPlay/ ()V +MD: net/minecraft/client/quickplay/QuickPlay/m_278613_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/main/GameConfig$QuickPlayData;Lnet/minecraft/server/packs/resources/ReloadInstance;Lcom/mojang/realmsclient/client/RealmsClient;)V net/minecraft/client/quickplay/QuickPlay/connect (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/main/GameConfig$QuickPlayData;Lnet/minecraft/server/packs/resources/ReloadInstance;Lcom/mojang/realmsclient/client/RealmsClient;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_278767_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlay/joinMultiplayerWorld (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_278782_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlay/joinSingleplayerWorld (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_278783_ (JLcom/mojang/realmsclient/dto/RealmsServer;)Z net/minecraft/client/quickplay/QuickPlay/lambda$joinRealmsWorld$1 (JLcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: net/minecraft/client/quickplay/QuickPlay/m_278851_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/client/RealmsClient;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlay/joinRealmsWorld (Lnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/client/RealmsClient;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_287802_ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/realmsclient/client/RealmsClient;)V net/minecraft/client/quickplay/QuickPlay/lambda$connect$0 (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/realmsclient/client/RealmsClient;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/ ()V net/minecraft/client/quickplay/QuickPlayLog/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog/ (Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog/ (Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278642_ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog/setWorldData (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278648_ (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog; net/minecraft/client/quickplay/QuickPlayLog/of (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog; +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278666_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/quickplay/QuickPlayLog/lambda$log$1 (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278671_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/quickplay/QuickPlayLog/lambda$log$0 (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278768_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/quickplay/QuickPlayLog/log (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$1/ (Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$1/ (Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$1/m_278642_ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$1/setWorldData (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$1/m_278768_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/quickplay/QuickPlayLog$1/log (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ ()V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ (Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld;Ljava/time/Instant;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ (Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld;Ljava/time/Instant;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/equals (Ljava/lang/Object;)Z net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278426_ ()Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/quickPlayWorld ()Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278456_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/gamemode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278512_ ()Ljava/time/Instant; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/lastPlayedTime ()Ljava/time/Instant; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/hashCode ()I net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/hashCode ()I +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/m_278695_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/toString ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/toString ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ ()V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/equals (Ljava/lang/Object;)Z net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278460_ ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/id ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278464_ ()Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/type ()Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278469_ ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/name ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/hashCode ()I net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/hashCode ()I +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/m_278843_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/toString ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/toString ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/ ()V net/minecraft/client/quickplay/QuickPlayLog$Type/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/m_278856_ ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$Type/$values ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/m_7912_ ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/values ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$Type/values ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/renderer/BiomeColors/ ()V net/minecraft/client/renderer/BiomeColors/ ()V +MD: net/minecraft/client/renderer/BiomeColors/ ()V net/minecraft/client/renderer/BiomeColors/ ()V +MD: net/minecraft/client/renderer/BiomeColors/m_108793_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/BiomeColors/getAverageGrassColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/BiomeColors/m_108796_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/renderer/BiomeColors/getAverageColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/renderer/BiomeColors/m_108800_ (Lnet/minecraft/world/level/biome/Biome;DD)I net/minecraft/client/renderer/BiomeColors/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome;DD)I +MD: net/minecraft/client/renderer/BiomeColors/m_108804_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/BiomeColors/getAverageFoliageColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/BiomeColors/m_108807_ (Lnet/minecraft/world/level/biome/Biome;DD)I net/minecraft/client/renderer/BiomeColors/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome;DD)I +MD: net/minecraft/client/renderer/BiomeColors/m_108811_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/BiomeColors/getAverageWaterColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ ()V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ ()V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_108829_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/renderByItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_172552_ (I)[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/lambda$static$1 (I)[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_172556_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/lambda$static$0 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_172558_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/lambda$renderByItem$2 (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/ ()V net/minecraft/client/renderer/ChunkBufferBuilderPack/ ()V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108838_ ()V net/minecraft/client/renderer/ChunkBufferBuilderPack/clearAll ()V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108839_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; net/minecraft/client/renderer/ChunkBufferBuilderPack/builder (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108841_ ()V net/minecraft/client/renderer/ChunkBufferBuilderPack/discardAll ()V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108842_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; net/minecraft/client/renderer/ChunkBufferBuilderPack/lambda$new$1 (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108844_ (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ChunkBufferBuilderPack/lambda$new$0 (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/CubeMap/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/CubeMap/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/CubeMap/m_108849_ (Lnet/minecraft/client/Minecraft;FFF)V net/minecraft/client/renderer/CubeMap/render (Lnet/minecraft/client/Minecraft;FFF)V +MD: net/minecraft/client/renderer/CubeMap/m_108854_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/CubeMap/preload (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects/ (FZLnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType;ZZ)V net/minecraft/client/renderer/DimensionSpecialEffects/ (FZLnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType;ZZ)V +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108871_ ()F net/minecraft/client/renderer/DimensionSpecialEffects/getCloudHeight ()F +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108876_ (Lnet/minecraft/world/level/dimension/DimensionType;)Lnet/minecraft/client/renderer/DimensionSpecialEffects; net/minecraft/client/renderer/DimensionSpecialEffects/forType (Lnet/minecraft/world/level/dimension/DimensionType;)Lnet/minecraft/client/renderer/DimensionSpecialEffects; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108880_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V net/minecraft/client/renderer/DimensionSpecialEffects/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108882_ ()Z net/minecraft/client/renderer/DimensionSpecialEffects/hasGround ()Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108883_ ()Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects/skyType ()Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108884_ ()Z net/minecraft/client/renderer/DimensionSpecialEffects/forceBrightLightmap ()Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108885_ ()Z net/minecraft/client/renderer/DimensionSpecialEffects/constantAmbientLight ()Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_7518_ (FF)[F net/minecraft/client/renderer/DimensionSpecialEffects/getSunriseColor (FF)[F +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/m_7518_ (FF)[F net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/getSunriseColor (FF)[F +MD: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ (Ljava/lang/String;I)V net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/m_172563_ ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/$values ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/values ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/values ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/EffectInstance/ ()V net/minecraft/client/renderer/EffectInstance/ ()V +MD: net/minecraft/client/renderer/EffectInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V net/minecraft/client/renderer/EffectInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/EffectInstance/close ()V net/minecraft/client/renderer/EffectInstance/close ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108943_ ()I net/minecraft/client/renderer/EffectInstance/getId ()I +MD: net/minecraft/client/renderer/EffectInstance/m_108948_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/EffectInstance/parseSamplerNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/EffectInstance/m_108950_ (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; net/minecraft/client/renderer/EffectInstance/parseBlendNode (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; +MD: net/minecraft/client/renderer/EffectInstance/m_108952_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; net/minecraft/client/renderer/EffectInstance/getUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; +MD: net/minecraft/client/renderer/EffectInstance/m_108954_ (Ljava/lang/String;Ljava/util/function/IntSupplier;)V net/minecraft/client/renderer/EffectInstance/setSampler (Ljava/lang/String;Ljava/util/function/IntSupplier;)V +MD: net/minecraft/client/renderer/EffectInstance/m_108957_ ()V net/minecraft/client/renderer/EffectInstance/markDirty ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108958_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/EffectInstance/parseUniformNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/EffectInstance/m_108960_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; net/minecraft/client/renderer/EffectInstance/safeGetUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; +MD: net/minecraft/client/renderer/EffectInstance/m_108962_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/EffectInstance/getVertexProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/EffectInstance/m_108964_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/EffectInstance/getFragmentProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/EffectInstance/m_108965_ ()V net/minecraft/client/renderer/EffectInstance/clear ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108966_ ()V net/minecraft/client/renderer/EffectInstance/apply ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108967_ ()V net/minecraft/client/renderer/EffectInstance/updateLocations ()V +MD: net/minecraft/client/renderer/EffectInstance/m_142662_ ()V net/minecraft/client/renderer/EffectInstance/attachToProgram ()V +MD: net/minecraft/client/renderer/EffectInstance/m_172566_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; net/minecraft/client/renderer/EffectInstance/getOrCreate (Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; +MD: net/minecraft/client/renderer/EffectInstance/m_172571_ ()Ljava/lang/String; net/minecraft/client/renderer/EffectInstance/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/FaceInfo/ ()V net/minecraft/client/renderer/FaceInfo/ ()V +MD: net/minecraft/client/renderer/FaceInfo/ (Ljava/lang/String;I[Lnet/minecraft/client/renderer/FaceInfo$VertexInfo;)V net/minecraft/client/renderer/FaceInfo/ (Ljava/lang/String;I[Lnet/minecraft/client/renderer/FaceInfo$VertexInfo;)V +MD: net/minecraft/client/renderer/FaceInfo/m_108982_ (I)Lnet/minecraft/client/renderer/FaceInfo$VertexInfo; net/minecraft/client/renderer/FaceInfo/getVertexInfo (I)Lnet/minecraft/client/renderer/FaceInfo$VertexInfo; +MD: net/minecraft/client/renderer/FaceInfo/m_108984_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/fromFacing (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo/m_108986_ ([Lnet/minecraft/client/renderer/FaceInfo;)V net/minecraft/client/renderer/FaceInfo/lambda$static$0 ([Lnet/minecraft/client/renderer/FaceInfo;)V +MD: net/minecraft/client/renderer/FaceInfo/m_172572_ ()[Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/$values ()[Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo/values ()[Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/values ()[Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo$Constants/ ()V net/minecraft/client/renderer/FaceInfo$Constants/ ()V +MD: net/minecraft/client/renderer/FaceInfo$Constants/ ()V net/minecraft/client/renderer/FaceInfo$Constants/ ()V +MD: net/minecraft/client/renderer/FaceInfo$VertexInfo/ (III)V net/minecraft/client/renderer/FaceInfo$VertexInfo/ (III)V +MD: net/minecraft/client/renderer/FogRenderer/ ()V net/minecraft/client/renderer/FogRenderer/ ()V +MD: net/minecraft/client/renderer/FogRenderer/ ()V net/minecraft/client/renderer/FogRenderer/ ()V +MD: net/minecraft/client/renderer/FogRenderer/m_109017_ ()V net/minecraft/client/renderer/FogRenderer/setupNoFog ()V +MD: net/minecraft/client/renderer/FogRenderer/m_109018_ (Lnet/minecraft/client/Camera;FLnet/minecraft/client/multiplayer/ClientLevel;IF)V net/minecraft/client/renderer/FogRenderer/setupColor (Lnet/minecraft/client/Camera;FLnet/minecraft/client/multiplayer/ClientLevel;IF)V +MD: net/minecraft/client/renderer/FogRenderer/m_109029_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/level/biome/BiomeManager;FIII)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/FogRenderer/lambda$setupColor$0 (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/level/biome/BiomeManager;FIII)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/FogRenderer/m_109036_ ()V net/minecraft/client/renderer/FogRenderer/levelFogColor ()V +MD: net/minecraft/client/renderer/FogRenderer/m_234165_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction; net/minecraft/client/renderer/FogRenderer/getPriorityFogFunction (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction; +MD: net/minecraft/client/renderer/FogRenderer/m_234168_ (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction;)Z net/minecraft/client/renderer/FogRenderer/lambda$getPriorityFogFunction$1 (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction;)Z +MD: net/minecraft/client/renderer/FogRenderer/m_234172_ (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/FogRenderer$FogMode;FZF)V net/minecraft/client/renderer/FogRenderer/setupFog (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/FogRenderer$FogMode;FZF)V +MD: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/ ()V net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/ ()V +MD: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/m_213725_ (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/setupFog (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V +MD: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/m_213948_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/getMobEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/ ()V net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/ ()V +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/m_213725_ (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/setupFog (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/m_213936_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/getModifiedVoidDarkness (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/m_213948_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/getMobEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/client/renderer/FogRenderer$FogData/ (Lnet/minecraft/client/renderer/FogRenderer$FogMode;)V net/minecraft/client/renderer/FogRenderer$FogData/ (Lnet/minecraft/client/renderer/FogRenderer$FogMode;)V +MD: net/minecraft/client/renderer/FogRenderer$FogMode/ ()V net/minecraft/client/renderer/FogRenderer$FogMode/ ()V +MD: net/minecraft/client/renderer/FogRenderer$FogMode/ (Ljava/lang/String;I)V net/minecraft/client/renderer/FogRenderer$FogMode/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/FogRenderer$FogMode/m_172577_ ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; net/minecraft/client/renderer/FogRenderer$FogMode/$values ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; +MD: net/minecraft/client/renderer/FogRenderer$FogMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FogRenderer$FogMode; net/minecraft/client/renderer/FogRenderer$FogMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FogRenderer$FogMode; +MD: net/minecraft/client/renderer/FogRenderer$FogMode/values ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; net/minecraft/client/renderer/FogRenderer$FogMode/values ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_213725_ (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/setupFog (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_213936_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/getModifiedVoidDarkness (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_213948_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/getMobEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_234205_ (Lnet/minecraft/world/entity/LivingEntity;F)Z net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/isEnabled (Lnet/minecraft/world/entity/LivingEntity;F)Z +MD: net/minecraft/client/renderer/GameRenderer/ ()V net/minecraft/client/renderer/GameRenderer/ ()V +MD: net/minecraft/client/renderer/GameRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/RenderBuffers;)V net/minecraft/client/renderer/GameRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/RenderBuffers;)V +MD: net/minecraft/client/renderer/GameRenderer/close ()V net/minecraft/client/renderer/GameRenderer/close ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109086_ ()V net/minecraft/client/renderer/GameRenderer/shutdownEffect ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109087_ (F)V net/minecraft/client/renderer/GameRenderer/pick (F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109089_ (FJLcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/GameRenderer/renderLevel (FJLcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109093_ (FJZ)V net/minecraft/client/renderer/GameRenderer/render (FJZ)V +MD: net/minecraft/client/renderer/GameRenderer/m_109097_ (II)V net/minecraft/client/renderer/GameRenderer/resize (II)V +MD: net/minecraft/client/renderer/GameRenderer/m_109100_ (IIF)V net/minecraft/client/renderer/GameRenderer/renderItemActivationAnimation (IIF)V +MD: net/minecraft/client/renderer/GameRenderer/m_109106_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/GameRenderer/checkEntityPostEffect (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109108_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/GameRenderer/getNightVisionScale (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/GameRenderer/m_109113_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/GameRenderer/displayItemActivation (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109117_ (Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/GameRenderer/bobHurt (Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109120_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/Camera;F)V net/minecraft/client/renderer/GameRenderer/renderItemInHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109128_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/GameRenderer/loadEffect (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109130_ ()V net/minecraft/client/renderer/GameRenderer/togglePostEffect ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109131_ (F)F net/minecraft/client/renderer/GameRenderer/getDarkenWorldAmount (F)F +MD: net/minecraft/client/renderer/GameRenderer/m_109138_ (Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/GameRenderer/bobView (Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109141_ (Lnet/minecraft/client/Camera;FZ)D net/minecraft/client/renderer/GameRenderer/getFov (Lnet/minecraft/client/Camera;FZ)D +MD: net/minecraft/client/renderer/GameRenderer/m_109148_ ()V net/minecraft/client/renderer/GameRenderer/tick ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109149_ ()Lnet/minecraft/client/renderer/PostChain; net/minecraft/client/renderer/GameRenderer/currentEffect ()Lnet/minecraft/client/renderer/PostChain; +MD: net/minecraft/client/renderer/GameRenderer/m_109150_ ()V net/minecraft/client/renderer/GameRenderer/resetData ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109151_ ()Lnet/minecraft/client/gui/MapRenderer; net/minecraft/client/renderer/GameRenderer/getMapRenderer ()Lnet/minecraft/client/gui/MapRenderer; +MD: net/minecraft/client/renderer/GameRenderer/m_109152_ ()F net/minecraft/client/renderer/GameRenderer/getRenderDistance ()F +MD: net/minecraft/client/renderer/GameRenderer/m_109153_ ()Lnet/minecraft/client/Camera; net/minecraft/client/renderer/GameRenderer/getMainCamera ()Lnet/minecraft/client/Camera; +MD: net/minecraft/client/renderer/GameRenderer/m_109154_ ()Lnet/minecraft/client/renderer/LightTexture; net/minecraft/client/renderer/GameRenderer/lightTexture ()Lnet/minecraft/client/renderer/LightTexture; +MD: net/minecraft/client/renderer/GameRenderer/m_109155_ ()Lnet/minecraft/client/renderer/texture/OverlayTexture; net/minecraft/client/renderer/GameRenderer/overlayTexture ()Lnet/minecraft/client/renderer/texture/OverlayTexture; +MD: net/minecraft/client/renderer/GameRenderer/m_109156_ ()V net/minecraft/client/renderer/GameRenderer/tickFov ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109158_ ()Z net/minecraft/client/renderer/GameRenderer/shouldRenderBlockOutline ()Z +MD: net/minecraft/client/renderer/GameRenderer/m_172637_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexLightmapColorShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172638_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$25 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172640_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeSolidShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172641_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$24 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172643_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeCutoutMippedShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172644_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$23 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172646_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeCutoutShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172647_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$22 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172649_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTranslucentShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172650_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$21 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172652_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTranslucentMovingBlockShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172653_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$20 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172655_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTranslucentNoCrumblingShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172656_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$19 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172658_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeArmorCutoutNoCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172659_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$18 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172661_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntitySolidShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172662_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$17 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172664_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityCutoutShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172665_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$16 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172667_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityCutoutNoCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172668_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$15 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172670_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityCutoutNoCullZOffsetShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172671_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$14 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172673_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeItemEntityTranslucentCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172674_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$13 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172676_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityTranslucentCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172677_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$12 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172679_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityTranslucentShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172680_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$11 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172682_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntitySmoothCutoutShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172683_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$10 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172685_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeBeaconBeamShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172686_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$9 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172688_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityDecalShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172689_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$8 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172691_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityNoOutlineShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172692_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$7 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172694_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityShadowShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172695_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$6 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172697_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityAlphaShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172698_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$5 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172700_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEyesShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172701_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$4 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172703_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEnergySwirlShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172704_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$3 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172706_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeLeashShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172707_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$2 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172709_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeWaterMaskShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172710_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$1 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172712_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeOutlineShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172713_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$0 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172715_ ()Z net/minecraft/client/renderer/GameRenderer/isPanoramicMode ()Z +MD: net/minecraft/client/renderer/GameRenderer/m_172718_ (FFF)V net/minecraft/client/renderer/GameRenderer/renderZoomed (FFF)V +MD: net/minecraft/client/renderer/GameRenderer/m_172722_ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/renderer/GameRenderer/preloadUiShader (Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172724_ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/preloadShader (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172728_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$59 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172732_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$53 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172734_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getShader (Ljava/lang/String;)Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172736_ (Z)V net/minecraft/client/renderer/GameRenderer/setRenderHand (Z)V +MD: net/minecraft/client/renderer/GameRenderer/m_172738_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeArmorGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172741_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeArmorEntityGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172744_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGlintTranslucentShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172745_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172746_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGlintDirectShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172747_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172748_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityGlintDirectShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172749_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172750_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextIntensityShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172751_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextSeeThroughShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172752_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextIntensitySeeThroughShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172753_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeLightningShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172754_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTripwireShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172755_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEndPortalShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172756_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEndGatewayShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172757_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeLinesShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172758_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeCrumblingShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172759_ ()V net/minecraft/client/renderer/GameRenderer/shutdownShaders ()V +MD: net/minecraft/client/renderer/GameRenderer/m_172760_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$65 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_172762_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$62 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_172767_ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/renderer/GameRenderer/reloadShaders (Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172773_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$52 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172775_ (Z)V net/minecraft/client/renderer/GameRenderer/setRenderBlockOutline (Z)V +MD: net/minecraft/client/renderer/GameRenderer/m_172777_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$51 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172779_ (Z)V net/minecraft/client/renderer/GameRenderer/setPanoramicMode (Z)V +MD: net/minecraft/client/renderer/GameRenderer/m_172781_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$50 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172783_ ()V net/minecraft/client/renderer/GameRenderer/cycleEffect ()V +MD: net/minecraft/client/renderer/GameRenderer/m_172784_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$49 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172786_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$48 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172788_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$46 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172790_ ()F net/minecraft/client/renderer/GameRenderer/getDepthFar ()F +MD: net/minecraft/client/renderer/GameRenderer/m_172791_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$45 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172793_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$43 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172795_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$42 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172797_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/renderer/GameRenderer/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/renderer/GameRenderer/m_172798_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$41 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172800_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$40 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172802_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$39 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172804_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$38 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172806_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$37 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172808_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172809_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$36 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172811_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172812_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$35 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172814_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorTexShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172815_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$34 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172817_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172818_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$33 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172820_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexColorShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172821_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$32 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172824_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$31 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172827_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$30 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172829_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getParticleShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172830_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$29 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172832_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorLightmapShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172833_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$28 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172835_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorTexLightmapShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172836_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$27 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172838_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexColorNormalShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172839_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$26 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_182642_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/GameRenderer/takeAutoScreenshot (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/GameRenderer/m_182644_ ()V net/minecraft/client/renderer/GameRenderer/tryTakeScreenshotIfNeeded ()V +MD: net/minecraft/client/renderer/GameRenderer/m_234223_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityTranslucentEmissiveShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_234224_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$60 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/client/renderer/GameRenderer/m_234226_ (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/nio/file/Path;)V net/minecraft/client/renderer/GameRenderer/lambda$takeAutoScreenshot$68 (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/GameRenderer/m_234229_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$54 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_234231_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$66 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_234232_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$63 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_234233_ (II)Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$64 (II)Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_234236_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/GameRenderer/lambda$pick$61 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/GameRenderer/m_234238_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/GameRenderer/lambda$tryTakeScreenshotIfNeeded$67 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/GameRenderer/m_247116_ ()Lnet/minecraft/server/packs/resources/PreparableReloadListener; net/minecraft/client/renderer/GameRenderer/createReloadListener ()Lnet/minecraft/server/packs/resources/PreparableReloadListener; +MD: net/minecraft/client/renderer/GameRenderer/m_252879_ (Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/GameRenderer/resetProjectionMatrix (Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/GameRenderer/m_253088_ (D)Lorg/joml/Matrix4f; net/minecraft/client/renderer/GameRenderer/getProjectionMatrix (D)Lorg/joml/Matrix4f; +MD: net/minecraft/client/renderer/GameRenderer/m_268792_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$47 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_268793_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$44 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_269511_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextBackgroundSeeThroughShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_269563_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextBackgroundShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_280083_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/renderer/GameRenderer/renderConfusionOverlay (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_285674_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$57 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285675_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$56 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285676_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$58 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285677_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$55 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285738_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiTextHighlightShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_285858_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_285862_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiGhostRecipeOverlayShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_285975_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiOverlayShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer$1/ (Lnet/minecraft/client/renderer/GameRenderer;)V net/minecraft/client/renderer/GameRenderer$1/ (Lnet/minecraft/client/renderer/GameRenderer;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_245944_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/renderer/GameRenderer$1/lambda$prepare$2 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_246544_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/client/renderer/GameRenderer$1/lambda$prepare$0 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/client/renderer/GameRenderer$1/m_246929_ ([B)Ljava/io/InputStream; net/minecraft/client/renderer/GameRenderer$1/lambda$prepare$1 ([B)Ljava/io/InputStream; +MD: net/minecraft/client/renderer/GameRenderer$1/m_5787_ (Lnet/minecraft/client/renderer/GameRenderer$ResourceCache;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GameRenderer$1/apply (Lnet/minecraft/client/renderer/GameRenderer$ResourceCache;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GameRenderer$1/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/renderer/GameRenderer$1/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/GameRenderer$1/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GameRenderer$ResourceCache; net/minecraft/client/renderer/GameRenderer$1/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GameRenderer$ResourceCache; +MD: net/minecraft/client/renderer/GameRenderer$1/m_7812_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer$1/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/util/Map;)V net/minecraft/client/renderer/GameRenderer$ResourceCache/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/GameRenderer$ResourceCache/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_243825_ ()Ljava/util/Map; net/minecraft/client/renderer/GameRenderer$ResourceCache/cache ()Ljava/util/Map; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_244315_ ()Lnet/minecraft/server/packs/resources/ResourceProvider; net/minecraft/client/renderer/GameRenderer$ResourceCache/original ()Lnet/minecraft/server/packs/resources/ResourceProvider; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/hashCode ()I net/minecraft/client/renderer/GameRenderer$ResourceCache/hashCode ()I +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/client/renderer/GameRenderer$ResourceCache/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/toString ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer$ResourceCache/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/ ()V net/minecraft/client/renderer/GpuWarnlistManager/ ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/ ()V net/minecraft/client/renderer/GpuWarnlistManager/ ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109218_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/hasWarnings ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109222_ (Lcom/google/gson/JsonArray;Ljava/util/List;)V net/minecraft/client/renderer/GpuWarnlistManager/compilePatterns (Lcom/google/gson/JsonArray;Ljava/util/List;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109233_ (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/renderer/GpuWarnlistManager/lambda$getAllWarnings$0 (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109237_ (Ljava/util/List;Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/GpuWarnlistManager/lambda$compilePatterns$1 (Ljava/util/List;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109240_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/willShowWarning ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109244_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lcom/google/gson/JsonObject; net/minecraft/client/renderer/GpuWarnlistManager/parseJson (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lcom/google/gson/JsonObject; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109247_ ()V net/minecraft/client/renderer/GpuWarnlistManager/showWarning ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109248_ ()V net/minecraft/client/renderer/GpuWarnlistManager/dismissWarning ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109249_ ()V net/minecraft/client/renderer/GpuWarnlistManager/dismissWarningAndSkipFabulous ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109250_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/isShowingWarning ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109251_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/isSkippingFabulous ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109252_ ()V net/minecraft/client/renderer/GpuWarnlistManager/resetWarnings ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109253_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getRendererWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109254_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getVersionWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109255_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getVendorWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109256_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getAllWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GpuWarnlistManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5787_ (Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GpuWarnlistManager/apply (Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations; net/minecraft/client/renderer/GpuWarnlistManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/renderer/GpuWarnlistManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/ (Ljava/util/List;Ljava/util/List;Ljava/util/List;)V net/minecraft/client/renderer/GpuWarnlistManager$Preparations/ (Ljava/util/List;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/m_109269_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/client/renderer/GpuWarnlistManager$Preparations/apply ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/m_109272_ (Ljava/util/List;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager$Preparations/matchAny (Ljava/util/List;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109279_ (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getRenderType (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109282_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getChunkRenderType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109284_ (Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getRenderType (Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109287_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getRenderLayer (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109289_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/ItemBlockRenderTypes/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109291_ (Z)V net/minecraft/client/renderer/ItemBlockRenderTypes/setFancy (Z)V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109293_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getMovingBlockRenderType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_276704_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/ItemBlockRenderTypes/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/ ()V net/minecraft/client/renderer/ItemInHandRenderer/ ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/renderer/ItemInHandRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109311_ ()V net/minecraft/client/renderer/ItemInHandRenderer/tick ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109312_ (F)F net/minecraft/client/renderer/ItemInHandRenderer/calculateMapTilt (F)F +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109314_ (FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/player/LocalPlayer;I)V net/minecraft/client/renderer/ItemInHandRenderer/renderHandsWithItems (FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/player/LocalPlayer;I)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109320_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/renderer/ItemInHandRenderer/itemUsed (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109330_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/ItemInHandRenderer/applyEatTransform (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109335_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V net/minecraft/client/renderer/ItemInHandRenderer/applyItemArmAttackTransform (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109339_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFF)V net/minecraft/client/renderer/ItemInHandRenderer/renderTwoHandedMap (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFF)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109346_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFLnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/client/renderer/ItemInHandRenderer/renderPlayerArm (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFLnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109353_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFLnet/minecraft/world/entity/HumanoidArm;FLnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/ItemInHandRenderer/renderOneHandedMap (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFLnet/minecraft/world/entity/HumanoidArm;FLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109361_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/client/renderer/ItemInHandRenderer/renderMapHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109366_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/ItemInHandRenderer/renderMap (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109371_ (Lnet/minecraft/client/player/AbstractClientPlayer;FFLnet/minecraft/world/InteractionHand;FLnet/minecraft/world/item/ItemStack;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/ItemInHandRenderer/renderArmWithItem (Lnet/minecraft/client/player/AbstractClientPlayer;FFLnet/minecraft/world/InteractionHand;FLnet/minecraft/world/item/ItemStack;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109382_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V net/minecraft/client/renderer/ItemInHandRenderer/applyItemArmTransform (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_172912_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/renderer/ItemInHandRenderer/isChargedCrossbow (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_172914_ (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer/evaluateWhichHandsToRender (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_172916_ (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer/selectionUsingItemWhileHoldingBowLike (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_269530_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/ItemInHandRenderer/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_271982_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;F)V net/minecraft/client/renderer/ItemInHandRenderer/applyBrushTransform (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;F)V +MD: net/minecraft/client/renderer/ItemInHandRenderer$1/ ()V net/minecraft/client/renderer/ItemInHandRenderer$1/ ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ ()V net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ (Ljava/lang/String;IZZ)V net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/m_172930_ ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/$values ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/m_172931_ (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/onlyForHand (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/values ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/values ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V net/minecraft/client/renderer/ItemModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V +MD: net/minecraft/client/renderer/ItemModelShaper/m_109393_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/renderer/ItemModelShaper/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/renderer/ItemModelShaper/m_109394_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/ItemModelShaper/getItemModel (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/ItemModelShaper/m_109396_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/client/resources/model/ModelResourceLocation;)V net/minecraft/client/renderer/ItemModelShaper/register (Lnet/minecraft/world/item/Item;Lnet/minecraft/client/resources/model/ModelResourceLocation;)V +MD: net/minecraft/client/renderer/ItemModelShaper/m_109403_ ()V net/minecraft/client/renderer/ItemModelShaper/rebuildCache ()V +MD: net/minecraft/client/renderer/ItemModelShaper/m_109404_ (Lnet/minecraft/world/item/Item;)I net/minecraft/client/renderer/ItemModelShaper/getIndex (Lnet/minecraft/world/item/Item;)I +MD: net/minecraft/client/renderer/ItemModelShaper/m_109406_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/ItemModelShaper/getItemModel (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/LevelRenderer/ ()V net/minecraft/client/renderer/LevelRenderer/ ()V +MD: net/minecraft/client/renderer/LevelRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;)V net/minecraft/client/renderer/LevelRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;)V +MD: net/minecraft/client/renderer/LevelRenderer/close ()V net/minecraft/client/renderer/LevelRenderer/close ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109482_ ()V net/minecraft/client/renderer/LevelRenderer/initOutline ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109487_ (II)V net/minecraft/client/renderer/LevelRenderer/resize (II)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109490_ (III)V net/minecraft/client/renderer/LevelRenderer/setSectionDirtyWithNeighbors (III)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109494_ (IIIIII)V net/minecraft/client/renderer/LevelRenderer/setBlocksDirty (IIIIII)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109501_ (IIIZ)V net/minecraft/client/renderer/LevelRenderer/setSectionDirty (IIIZ)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109506_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/LevelRenderer/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109514_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/LevelRenderer/playStreamingMusic (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109517_ (Lnet/minecraft/world/entity/Entity;DDDFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/LevelRenderer/renderEntity (Lnet/minecraft/world/entity/Entity;DDDFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109537_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/LevelRenderer/getLightColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/LevelRenderer/m_109541_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/LevelRenderer/getLightColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/LevelRenderer/m_109544_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/client/renderer/LevelRenderer/blockChanged (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109550_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/client/renderer/LevelRenderer/notifyNearbyEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109588_ (Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/LevelRenderer/checkPoseStack (Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109599_ (Lcom/mojang/blaze3d/vertex/PoseStack;FJZLnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/renderer/LightTexture;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/LevelRenderer/renderLevel (Lcom/mojang/blaze3d/vertex/PoseStack;FJZLnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/renderer/LightTexture;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109608_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109621_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFFFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109637_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/LevelRenderer/renderHitOutline (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109646_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/AABB;FFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/AABB;FFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109693_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/tickRain (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109701_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/renderer/LevelRenderer/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109703_ (Lnet/minecraft/client/renderer/LightTexture;FDDD)V net/minecraft/client/renderer/LevelRenderer/renderSnowAndRain (Lnet/minecraft/client/renderer/LightTexture;FDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109721_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/LevelRenderer/setBlockDirty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109728_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; net/minecraft/client/renderer/LevelRenderer/getRelativeFrom (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; +MD: net/minecraft/client/renderer/LevelRenderer/m_109732_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/client/renderer/LevelRenderer/setBlockDirty (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109735_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/client/renderer/LevelRenderer/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109743_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/client/renderer/LevelRenderer/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109752_ (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)V net/minecraft/client/renderer/LevelRenderer/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109762_ (Ljava/util/Collection;Ljava/util/Collection;)V net/minecraft/client/renderer/LevelRenderer/updateGlobalBlockEntities (Ljava/util/Collection;Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109765_ (Lnet/minecraft/server/level/BlockDestructionProgress;)V net/minecraft/client/renderer/LevelRenderer/removeProgress (Lnet/minecraft/server/level/BlockDestructionProgress;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109767_ (Z)Lnet/minecraft/client/ParticleStatus; net/minecraft/client/renderer/LevelRenderer/calculateParticleLevel (Z)Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/renderer/LevelRenderer/m_109769_ ()V net/minecraft/client/renderer/LevelRenderer/doEntityOutline ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109770_ (III)V net/minecraft/client/renderer/LevelRenderer/setSectionDirty (III)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109774_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/LevelRenderer/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109780_ (Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/LevelRenderer/renderEndSky (Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109782_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFF)V net/minecraft/client/renderer/LevelRenderer/renderShape (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109795_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/renderer/LevelRenderer/addParticleInternal (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/renderer/LevelRenderer/m_109804_ (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/renderer/LevelRenderer/addParticleInternal (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/renderer/LevelRenderer/m_109817_ ()Z net/minecraft/client/renderer/LevelRenderer/shouldShowEntityOutlines ()Z +MD: net/minecraft/client/renderer/LevelRenderer/m_109818_ ()V net/minecraft/client/renderer/LevelRenderer/allChanged ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109820_ ()Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/getChunkStatistics ()Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_109821_ ()I net/minecraft/client/renderer/LevelRenderer/countRenderedChunks ()I +MD: net/minecraft/client/renderer/LevelRenderer/m_109822_ ()Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/getEntityStatistics ()Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_109823_ ()V net/minecraft/client/renderer/LevelRenderer/tick ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109824_ ()V net/minecraft/client/renderer/LevelRenderer/clear ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109825_ ()Z net/minecraft/client/renderer/LevelRenderer/hasRenderedAllChunks ()Z +MD: net/minecraft/client/renderer/LevelRenderer/m_109826_ ()V net/minecraft/client/renderer/LevelRenderer/needsUpdate ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109827_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/entityTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109828_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getTranslucentTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109829_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getItemEntityTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109830_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getParticlesTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109831_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getWeatherTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109832_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getCloudsTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109833_ ()V net/minecraft/client/renderer/LevelRenderer/initTransparency ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109834_ ()V net/minecraft/client/renderer/LevelRenderer/deinitTransparency ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109835_ ()V net/minecraft/client/renderer/LevelRenderer/createDarkSky ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109836_ ()V net/minecraft/client/renderer/LevelRenderer/createLightSky ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109837_ ()V net/minecraft/client/renderer/LevelRenderer/createStars ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_172965_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_172993_ (Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Matrix4f;)V net/minecraft/client/renderer/LevelRenderer/renderChunkLayer (Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_173012_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/renderWorldBorder (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_173014_ ()V net/minecraft/client/renderer/LevelRenderer/graphicsChanged ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_173015_ ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher; net/minecraft/client/renderer/LevelRenderer/getChunkRenderDispatcher ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher; +MD: net/minecraft/client/renderer/LevelRenderer/m_173016_ ()D net/minecraft/client/renderer/LevelRenderer/getTotalChunks ()D +MD: net/minecraft/client/renderer/LevelRenderer/m_173017_ ()D net/minecraft/client/renderer/LevelRenderer/getLastViewDistance ()D +MD: net/minecraft/client/renderer/LevelRenderer/m_173018_ ()V net/minecraft/client/renderer/LevelRenderer/captureFrustum ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_173019_ ()V net/minecraft/client/renderer/LevelRenderer/killFrustum ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_194338_ (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/culling/Frustum;ZZ)V net/minecraft/client/renderer/LevelRenderer/setupRender (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/culling/Frustum;ZZ)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194343_ (Lnet/minecraft/client/Camera;Ljava/util/Queue;)V net/minecraft/client/renderer/LevelRenderer/initializeQueueForFullUpdate (Lnet/minecraft/client/Camera;Ljava/util/Queue;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194352_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)V net/minecraft/client/renderer/LevelRenderer/addRecentlyCompiledChunk (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194354_ (Lnet/minecraft/client/renderer/culling/Frustum;)V net/minecraft/client/renderer/LevelRenderer/applyFrustum (Lnet/minecraft/client/renderer/culling/Frustum;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194359_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Z net/minecraft/client/renderer/LevelRenderer/closeToBorder (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Z +MD: net/minecraft/client/renderer/LevelRenderer/m_194362_ (Ljava/util/LinkedHashSet;Lnet/minecraft/client/renderer/LevelRenderer$RenderInfoMap;Lnet/minecraft/world/phys/Vec3;Ljava/util/Queue;Z)V net/minecraft/client/renderer/LevelRenderer/updateRenderChunks (Ljava/util/LinkedHashSet;Lnet/minecraft/client/renderer/LevelRenderer$RenderInfoMap;Lnet/minecraft/world/phys/Vec3;Ljava/util/Queue;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194370_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/compileChunks (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_202423_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FLnet/minecraft/client/Camera;ZLjava/lang/Runnable;)V net/minecraft/client/renderer/LevelRenderer/renderSky (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FLnet/minecraft/client/Camera;ZLjava/lang/Runnable;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_202430_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/LevelRenderer/isChunkCompiled (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/LevelRenderer/m_234249_ (DDD)Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/lambda$addParticle$8 (DDD)Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_234253_ (J)Ljava/util/SortedSet; net/minecraft/client/renderer/LevelRenderer/lambda$destroyBlockProgress$10 (J)Ljava/util/SortedSet; +MD: net/minecraft/client/renderer/LevelRenderer/m_234257_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/LevelRenderer/lambda$levelEvent$9 (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/LevelRenderer/m_234259_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; net/minecraft/client/renderer/LevelRenderer/drawStars (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234261_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;DDDLnet/minecraft/world/phys/Vec3;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; net/minecraft/client/renderer/LevelRenderer/buildClouds (Lcom/mojang/blaze3d/vertex/BufferBuilder;DDDLnet/minecraft/world/phys/Vec3;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234267_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;F)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; net/minecraft/client/renderer/LevelRenderer/buildSkyDisc (Lcom/mojang/blaze3d/vertex/BufferBuilder;F)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234270_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;DDDFFFFDDDDDD)V net/minecraft/client/renderer/LevelRenderer/lambda$renderShape$7 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;DDDFFFFDDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234286_ (Lnet/minecraft/client/Camera;FZF)V net/minecraft/client/renderer/LevelRenderer/lambda$renderLevel$4 (Lnet/minecraft/client/Camera;FZF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234291_ (Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/Vec3;Z)V net/minecraft/client/renderer/LevelRenderer/lambda$setupRender$2 (Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/Vec3;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234295_ (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/LevelRenderer/lambda$renderLevel$5 (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234299_ (Lnet/minecraft/client/renderer/RenderType;)Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/lambda$renderChunkLayer$6 (Lnet/minecraft/client/renderer/RenderType;)Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_234301_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)D net/minecraft/client/renderer/LevelRenderer/lambda$initializeQueueForFullUpdate$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)D +MD: net/minecraft/client/renderer/LevelRenderer/m_234304_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/LevelRenderer/levelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234308_ (J)J net/minecraft/client/renderer/LevelRenderer/lambda$setupRender$1 (J)J +MD: net/minecraft/client/renderer/LevelRenderer/m_234310_ (Lnet/minecraft/client/Camera;)Z net/minecraft/client/renderer/LevelRenderer/doesMobEffectBlockSky (Lnet/minecraft/client/Camera;)Z +MD: net/minecraft/client/renderer/LevelRenderer/m_244728_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/renderer/LevelRenderer/lambda$initTransparency$0 (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/renderer/LevelRenderer/m_252964_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;DDDLnet/minecraft/client/renderer/culling/Frustum;)V net/minecraft/client/renderer/LevelRenderer/captureFrustum (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;DDDLnet/minecraft/client/renderer/culling/Frustum;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_253054_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDD)V net/minecraft/client/renderer/LevelRenderer/renderClouds (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_253210_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/Vec3;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/LevelRenderer/prepareCullFrustum (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/Vec3;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269092_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;IIIIIII)V net/minecraft/client/renderer/LevelRenderer/addFrustumQuad (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;IIIIIII)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269208_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V net/minecraft/client/renderer/LevelRenderer/addChainedFilledBoxVertices (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269236_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V net/minecraft/client/renderer/LevelRenderer/addFrustumVertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269240_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/renderDebug (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269282_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFFF)V net/minecraft/client/renderer/LevelRenderer/addChainedFilledBoxVertices (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_285739_ (FFFF)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/LevelRenderer/shiftHue (FFFF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/LevelRenderer/m_285900_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFFZ)V net/minecraft/client/renderer/LevelRenderer/renderVoxelShape (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFFZ)V +MD: net/minecraft/client/renderer/LevelRenderer/m_285956_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/LevelRenderer/mixColor (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/LevelRenderer/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/LevelRenderer/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;I)V net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;I)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hashCode ()I net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hashCode ()I +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_109854_ (BLnet/minecraft/core/Direction;)V net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/setDirections (BLnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_109859_ (Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hasDirection (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_173025_ ()Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hasSourceDirections ()Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_173026_ (I)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hasSourceDirection (I)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_173028_ (Lnet/minecraft/core/Direction;)V net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/addSourceDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_274540_ (III)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/isAxisAlignedWith (III)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/ (I)V net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/ (I)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/ (I)V net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/ (I)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/m_173035_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo; net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/get (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo; +MD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/m_173037_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)V net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/put (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)V +MD: net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/client/renderer/LightTexture/ (Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/LightTexture/ (Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/LightTexture/close ()V net/minecraft/client/renderer/LightTexture/close ()V +MD: net/minecraft/client/renderer/LightTexture/m_109880_ ()V net/minecraft/client/renderer/LightTexture/tick ()V +MD: net/minecraft/client/renderer/LightTexture/m_109881_ (F)V net/minecraft/client/renderer/LightTexture/updateLightTexture (F)V +MD: net/minecraft/client/renderer/LightTexture/m_109883_ (I)I net/minecraft/client/renderer/LightTexture/block (I)I +MD: net/minecraft/client/renderer/LightTexture/m_109885_ (II)I net/minecraft/client/renderer/LightTexture/pack (II)I +MD: net/minecraft/client/renderer/LightTexture/m_109891_ ()V net/minecraft/client/renderer/LightTexture/turnOffLightLayer ()V +MD: net/minecraft/client/renderer/LightTexture/m_109892_ (F)F net/minecraft/client/renderer/LightTexture/notGamma (F)F +MD: net/minecraft/client/renderer/LightTexture/m_109894_ (I)I net/minecraft/client/renderer/LightTexture/sky (I)I +MD: net/minecraft/client/renderer/LightTexture/m_109896_ ()V net/minecraft/client/renderer/LightTexture/turnOnLightLayer ()V +MD: net/minecraft/client/renderer/LightTexture/m_234312_ (Lnet/minecraft/world/entity/LivingEntity;FF)F net/minecraft/client/renderer/LightTexture/calculateDarknessScale (Lnet/minecraft/world/entity/LivingEntity;FF)F +MD: net/minecraft/client/renderer/LightTexture/m_234316_ (Lnet/minecraft/world/level/dimension/DimensionType;I)F net/minecraft/client/renderer/LightTexture/getBrightness (Lnet/minecraft/world/level/dimension/DimensionType;I)F +MD: net/minecraft/client/renderer/LightTexture/m_234319_ (F)F net/minecraft/client/renderer/LightTexture/getDarknessGamma (F)F +MD: net/minecraft/client/renderer/LightTexture/m_252983_ (Lorg/joml/Vector3f;)V net/minecraft/client/renderer/LightTexture/clampColor (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/renderer/MultiBufferSource/m_109898_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/MultiBufferSource/immediate (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/MultiBufferSource/m_109900_ (Ljava/util/Map;Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/MultiBufferSource/immediateWithBuffers (Ljava/util/Map;Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/MultiBufferSource/m_6299_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/MultiBufferSource/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Ljava/util/Map;)V net/minecraft/client/renderer/MultiBufferSource$BufferSource/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109911_ ()V net/minecraft/client/renderer/MultiBufferSource$BufferSource/endBatch ()V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109912_ (Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/MultiBufferSource$BufferSource/endBatch (Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109914_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; net/minecraft/client/renderer/MultiBufferSource$BufferSource/getBuilderRaw (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109916_ (Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/MultiBufferSource$BufferSource/lambda$endBatch$0 (Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_173043_ ()V net/minecraft/client/renderer/MultiBufferSource$BufferSource/endLastBatch ()V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_6299_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/MultiBufferSource$BufferSource/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource/ (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/renderer/OutlineBufferSource/ (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/renderer/OutlineBufferSource/m_109928_ ()V net/minecraft/client/renderer/OutlineBufferSource/endOutlineBatch ()V +MD: net/minecraft/client/renderer/OutlineBufferSource/m_109929_ (IIII)V net/minecraft/client/renderer/OutlineBufferSource/setColor (IIII)V +MD: net/minecraft/client/renderer/OutlineBufferSource/m_6299_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIII)V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIII)V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_141991_ ()V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/unsetDefaultColor ()V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5752_ ()V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/endVertex ()V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5954_ (FFFFFFFFFIIFFF)V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/vertex (FFFFFFFFFIIFFF)V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7404_ (IIII)V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/defaultColor (IIII)V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/PanoramaRenderer/ (Lnet/minecraft/client/renderer/CubeMap;)V net/minecraft/client/renderer/PanoramaRenderer/ (Lnet/minecraft/client/renderer/CubeMap;)V +MD: net/minecraft/client/renderer/PanoramaRenderer/m_110003_ (FF)V net/minecraft/client/renderer/PanoramaRenderer/render (FF)V +MD: net/minecraft/client/renderer/PanoramaRenderer/m_246245_ (FF)F net/minecraft/client/renderer/PanoramaRenderer/wrap (FF)F +MD: net/minecraft/client/renderer/PostChain/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/PostChain/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/PostChain/close ()V net/minecraft/client/renderer/PostChain/close ()V +MD: net/minecraft/client/renderer/PostChain/m_110022_ ()Ljava/lang/String; net/minecraft/client/renderer/PostChain/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/PostChain/m_110023_ (F)V net/minecraft/client/renderer/PostChain/process (F)V +MD: net/minecraft/client/renderer/PostChain/m_110025_ (II)V net/minecraft/client/renderer/PostChain/resize (II)V +MD: net/minecraft/client/renderer/PostChain/m_110028_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/PostChain/parseTargetNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/PostChain/m_110030_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/PostChain/parsePassNode (Lnet/minecraft/client/renderer/texture/TextureManager;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/PostChain/m_110033_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/PostChain/load (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/PostChain/m_110036_ (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/PostChain/getTempTarget (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/PostChain/m_110038_ (Ljava/lang/String;II)V net/minecraft/client/renderer/PostChain/addTempTarget (Ljava/lang/String;II)V +MD: net/minecraft/client/renderer/PostChain/m_110042_ (Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lnet/minecraft/client/renderer/PostPass; net/minecraft/client/renderer/PostChain/addPass (Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lnet/minecraft/client/renderer/PostPass; +MD: net/minecraft/client/renderer/PostChain/m_110046_ ()V net/minecraft/client/renderer/PostChain/updateOrthoMatrix ()V +MD: net/minecraft/client/renderer/PostChain/m_110047_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/PostChain/parseUniformNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/PostChain/m_110049_ (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/PostChain/getRenderTarget (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/PostChain/m_234321_ (Ljava/lang/String;)Lnet/minecraft/server/ChainedJsonException; net/minecraft/client/renderer/PostChain/lambda$parsePassNode$0 (Ljava/lang/String;)Lnet/minecraft/server/ChainedJsonException; +MD: net/minecraft/client/renderer/PostPass/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)V net/minecraft/client/renderer/PostPass/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)V +MD: net/minecraft/client/renderer/PostPass/close ()V net/minecraft/client/renderer/PostPass/close ()V +MD: net/minecraft/client/renderer/PostPass/m_110065_ (F)V net/minecraft/client/renderer/PostPass/process (F)V +MD: net/minecraft/client/renderer/PostPass/m_110069_ (Ljava/lang/String;Ljava/util/function/IntSupplier;II)V net/minecraft/client/renderer/PostPass/addAuxAsset (Ljava/lang/String;Ljava/util/function/IntSupplier;II)V +MD: net/minecraft/client/renderer/PostPass/m_110074_ ()Lnet/minecraft/client/renderer/EffectInstance; net/minecraft/client/renderer/PostPass/getEffect ()Lnet/minecraft/client/renderer/EffectInstance; +MD: net/minecraft/client/renderer/PostPass/m_173046_ ()Ljava/lang/String; net/minecraft/client/renderer/PostPass/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/PostPass/m_253214_ (Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/PostPass/setOrthoMatrix (Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/Rect2i/ (IIII)V net/minecraft/client/renderer/Rect2i/ (IIII)V +MD: net/minecraft/client/renderer/Rect2i/m_110085_ ()I net/minecraft/client/renderer/Rect2i/getX ()I +MD: net/minecraft/client/renderer/Rect2i/m_110086_ ()I net/minecraft/client/renderer/Rect2i/getY ()I +MD: net/minecraft/client/renderer/Rect2i/m_110087_ (II)Z net/minecraft/client/renderer/Rect2i/contains (II)Z +MD: net/minecraft/client/renderer/Rect2i/m_110090_ ()I net/minecraft/client/renderer/Rect2i/getWidth ()I +MD: net/minecraft/client/renderer/Rect2i/m_110091_ ()I net/minecraft/client/renderer/Rect2i/getHeight ()I +MD: net/minecraft/client/renderer/Rect2i/m_173047_ (I)V net/minecraft/client/renderer/Rect2i/setX (I)V +MD: net/minecraft/client/renderer/Rect2i/m_173049_ (II)V net/minecraft/client/renderer/Rect2i/setPosition (II)V +MD: net/minecraft/client/renderer/Rect2i/m_173052_ (Lnet/minecraft/client/renderer/Rect2i;)Lnet/minecraft/client/renderer/Rect2i; net/minecraft/client/renderer/Rect2i/intersect (Lnet/minecraft/client/renderer/Rect2i;)Lnet/minecraft/client/renderer/Rect2i; +MD: net/minecraft/client/renderer/Rect2i/m_173054_ (I)V net/minecraft/client/renderer/Rect2i/setY (I)V +MD: net/minecraft/client/renderer/Rect2i/m_173056_ (I)V net/minecraft/client/renderer/Rect2i/setWidth (I)V +MD: net/minecraft/client/renderer/Rect2i/m_173058_ (I)V net/minecraft/client/renderer/Rect2i/setHeight (I)V +MD: net/minecraft/client/renderer/RenderBuffers/ ()V net/minecraft/client/renderer/RenderBuffers/ ()V +MD: net/minecraft/client/renderer/RenderBuffers/m_110098_ ()Lnet/minecraft/client/renderer/ChunkBufferBuilderPack; net/minecraft/client/renderer/RenderBuffers/fixedBufferPack ()Lnet/minecraft/client/renderer/ChunkBufferBuilderPack; +MD: net/minecraft/client/renderer/RenderBuffers/m_110101_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/RenderBuffers/put (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/RenderBuffers/m_110104_ ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/RenderBuffers/bufferSource ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/RenderBuffers/m_110108_ ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/RenderBuffers/crumblingBufferSource ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/RenderBuffers/m_110109_ ()Lnet/minecraft/client/renderer/OutlineBufferSource; net/minecraft/client/renderer/RenderBuffers/outlineBufferSource ()Lnet/minecraft/client/renderer/OutlineBufferSource; +MD: net/minecraft/client/renderer/RenderBuffers/m_173060_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/RenderBuffers/lambda$new$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/RenderBuffers/m_268794_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;)V net/minecraft/client/renderer/RenderBuffers/lambda$new$1 (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;)V +MD: net/minecraft/client/renderer/RenderStateShard/ ()V net/minecraft/client/renderer/RenderStateShard/ ()V +MD: net/minecraft/client/renderer/RenderStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard/m_110164_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$20 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110165_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$19 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110166_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$18 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110167_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$17 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110168_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$16 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110169_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$15 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110170_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$14 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110171_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$13 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110172_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$12 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110173_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$11 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110174_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$10 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110175_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$9 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110176_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$8 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110177_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$7 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110178_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$6 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110179_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$5 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110180_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$4 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110181_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$3 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110182_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$2 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110183_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110184_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$0 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110185_ ()V net/minecraft/client/renderer/RenderStateShard/setupRenderState ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110186_ (F)V net/minecraft/client/renderer/RenderStateShard/setupGlintTexturing (F)V +MD: net/minecraft/client/renderer/RenderStateShard/m_110188_ ()V net/minecraft/client/renderer/RenderStateShard/clearRenderState ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110199_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$37 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110200_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$36 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110201_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$35 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110202_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$34 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110203_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$33 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110204_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$32 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110205_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$31 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110206_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$30 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110207_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$29 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110208_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$28 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110209_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$27 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110211_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$26 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110212_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$25 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110213_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$24 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110214_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$23 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110215_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$22 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110216_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$21 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285678_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$41 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285679_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$40 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285680_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$38 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285681_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$39 ()V +MD: net/minecraft/client/renderer/RenderStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;Z)V net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$CullStateShard/ (Z)V net/minecraft/client/renderer/RenderStateShard$CullStateShard/ (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$CullStateShard/m_110239_ (Z)V net/minecraft/client/renderer/RenderStateShard$CullStateShard/lambda$new$1 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$CullStateShard/m_110241_ (Z)V net/minecraft/client/renderer/RenderStateShard$CullStateShard/lambda$new$0 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/ (Ljava/lang/String;I)V net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/m_110248_ (I)V net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/lambda$new$1 (I)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/m_110250_ (I)V net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/lambda$new$0 (I)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ (Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ (Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ ()V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ ()V +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/m_142706_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/cutoutTexture ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/m_173119_ ()V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/m_173120_ ()V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/lambda$new$0 ()V +MD: net/minecraft/client/renderer/RenderStateShard$LayeringStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$LayeringStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/ (Z)V net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/ (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/m_110272_ (Z)V net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/lambda$new$1 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/m_110274_ (Z)V net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/lambda$new$0 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/ (Ljava/util/OptionalDouble;)V net/minecraft/client/renderer/RenderStateShard$LineStateShard/ (Ljava/util/OptionalDouble;)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/m_110279_ (Ljava/util/OptionalDouble;)V net/minecraft/client/renderer/RenderStateShard$LineStateShard/lambda$new$1 (Ljava/util/OptionalDouble;)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/m_110281_ (Ljava/util/OptionalDouble;)V net/minecraft/client/renderer/RenderStateShard$LineStateShard/lambda$new$0 (Ljava/util/OptionalDouble;)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$LineStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/ (Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/ (Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_142706_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/cutoutTexture ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_173124_ (Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/lambda$new$0 (Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_173127_ ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/builder ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_173128_ ()V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/ ()V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/ ()V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/m_173131_ ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/build ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/m_173132_ (Lnet/minecraft/resources/ResourceLocation;ZZ)Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/add (Lnet/minecraft/resources/ResourceLocation;ZZ)Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; +MD: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/ (FF)V net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/ (FF)V +MD: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/m_110295_ ()V net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/m_252593_ (FF)V net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/lambda$new$0 (FF)V +MD: net/minecraft/client/renderer/RenderStateShard$OutputStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$OutputStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/ (Z)V net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/ (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/m_110305_ (Z)V net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/lambda$new$1 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/m_110307_ (Z)V net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/lambda$new$0 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ (Ljava/util/function/Supplier;)V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173140_ (Ljava/util/function/Supplier;)V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$0 (Ljava/util/function/Supplier;)V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173142_ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$4 ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173143_ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$3 ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173144_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$2 ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173145_ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V net/minecraft/client/renderer/RenderStateShard$TextureStateShard/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/m_110345_ ()V net/minecraft/client/renderer/RenderStateShard$TextureStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/m_142706_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderStateShard$TextureStateShard/cutoutTexture ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/m_263890_ (Lnet/minecraft/resources/ResourceLocation;ZZ)V net/minecraft/client/renderer/RenderStateShard$TextureStateShard/lambda$new$0 (Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$TextureStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$TexturingStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$TexturingStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/ (ZZ)V net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/ (ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/m_110361_ (ZZ)V net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/lambda$new$1 (ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/m_110364_ (ZZ)V net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/lambda$new$0 (ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType/ ()V net/minecraft/client/renderer/RenderType/ ()V +MD: net/minecraft/client/renderer/RenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLjava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLjava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderType/m_110405_ ()Z net/minecraft/client/renderer/RenderType/affectsCrumbling ()Z +MD: net/minecraft/client/renderer/RenderType/m_110406_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderType/asOptional ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderType/m_110408_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType/translucentMovingBlockState ()Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType/m_110409_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType/tripwireState ()Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType/m_110431_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/armorCutoutNoCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110436_ (Lnet/minecraft/resources/ResourceLocation;FF)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/energySwirl (Lnet/minecraft/resources/ResourceLocation;FF)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110443_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCull (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110446_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entitySolid (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110448_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCullZOffset (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110451_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/solid ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110452_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutout (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110454_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucent (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110457_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/cutoutMipped ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110458_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110460_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/beaconBeam (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110463_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/cutout ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110464_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCullZOffset (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110466_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/translucent ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110467_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/itemEntityTranslucentCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110469_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/translucentMovingBlock ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110470_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucentCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110472_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/translucentNoCrumbling ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110473_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110475_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/leash ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110476_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entitySmoothCutout (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110478_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/waterMask ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110479_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityDecal (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110481_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/armorGlint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110482_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityNoOutline (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110484_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/armorEntityGlint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110485_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityShadow (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110487_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/glintTranslucent ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110488_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/eyes (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110490_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/glint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110491_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/outline (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110493_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/glintDirect ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110494_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/crumbling (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110496_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityGlint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110497_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/text (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110499_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityGlintDirect ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110500_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textSeeThrough (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110502_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lightning ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110503_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/tripwire ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110504_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lines ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110506_ ()Ljava/util/List; net/minecraft/client/renderer/RenderType/chunkBufferLayers ()Ljava/util/List; +MD: net/minecraft/client/renderer/RenderType/m_110507_ ()I net/minecraft/client/renderer/RenderType/bufferSize ()I +MD: net/minecraft/client/renderer/RenderType/m_110508_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; net/minecraft/client/renderer/RenderType/format ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: net/minecraft/client/renderer/RenderType/m_173186_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; net/minecraft/client/renderer/RenderType/mode ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: net/minecraft/client/renderer/RenderType/m_173207_ (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType/translucentState (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType/m_173209_ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;ILnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; net/minecraft/client/renderer/RenderType/create (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;ILnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +MD: net/minecraft/client/renderer/RenderType/m_173215_ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; net/minecraft/client/renderer/RenderType/create (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +MD: net/minecraft/client/renderer/RenderType/m_173235_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/dragonExplosionAlpha (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173237_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textIntensity (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173239_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/endPortal ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173240_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textIntensitySeeThrough (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173242_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/endGateway ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173247_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lineStrip ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_181444_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textPolygonOffset (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_181446_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textIntensityPolygonOffset (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_234326_ ()Z net/minecraft/client/renderer/RenderType/canConsolidateConsecutiveGeometry ()Z +MD: net/minecraft/client/renderer/RenderType/m_234329_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$10 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_234335_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucentEmissive (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_234338_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucentEmissive (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269058_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textBackground ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269166_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugQuads ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269313_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugFilledBox ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269399_ (D)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugLineStrip (D)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269508_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textBackgroundSeeThrough ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_276775_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lcom/mojang/blaze3d/vertex/VertexSorting;)V net/minecraft/client/renderer/RenderType/end (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: net/minecraft/client/renderer/RenderType/m_280070_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugSectionQuads ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285682_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285683_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$14 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285684_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$13 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285685_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$19 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285686_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$4 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285687_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$5 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285688_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$7 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285689_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$21 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285690_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285691_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$12 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285692_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$17 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285693_ (Ljava/lang/Double;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; net/minecraft/client/renderer/RenderType/lambda$static$23 (Ljava/lang/Double;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +MD: net/minecraft/client/renderer/RenderType/m_285694_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$8 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285695_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$6 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285696_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$3 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285697_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$22 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285698_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$9 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285699_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$15 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285700_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$11 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285701_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$18 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285702_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285703_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$16 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285704_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$20 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285783_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/guiTextHighlight ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285811_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/guiGhostRecipeOverlay ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285907_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/gui ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_286086_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/guiOverlay ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_5492_ ()Z net/minecraft/client/renderer/RenderType/isOutline ()Z +MD: net/minecraft/client/renderer/RenderType/m_7280_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderType/outline ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderType/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/ ()V net/minecraft/client/renderer/RenderType$CompositeRenderType/ ()V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)V net/minecraft/client/renderer/RenderType$CompositeRenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_110526_ (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$new$1 (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_173265_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType$CompositeRenderType/state ()Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_173266_ (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$new$2 (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_173268_ (Lnet/minecraft/client/renderer/RenderType$CompositeState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$new$3 (Lnet/minecraft/client/renderer/RenderType$CompositeState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_285705_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$static$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_5492_ ()Z net/minecraft/client/renderer/RenderType$CompositeRenderType/isOutline ()Z +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_7280_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderType$CompositeRenderType/outline ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType$CompositeRenderType/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$CompositeState/ (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)V net/minecraft/client/renderer/RenderType$CompositeState/ (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)V +MD: net/minecraft/client/renderer/RenderType$CompositeState/m_110628_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState/builder ()Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType$CompositeState/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/ ()V net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/ ()V +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110661_ (Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setCullState (Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110663_ (Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setDepthTestState (Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110669_ (Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setLayeringState (Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110671_ (Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setLightmapState (Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110673_ (Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setLineState (Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110675_ (Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setOutputState (Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110677_ (Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setOverlayState (Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110683_ (Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setTexturingState (Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110685_ (Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setTransparencyState (Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110687_ (Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setWriteMaskState (Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110689_ (Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/createCompositeState (Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110691_ (Z)Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/createCompositeState (Z)Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_173290_ (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setTextureState (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_173292_ (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setShaderState (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_286027_ (Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setColorLogicState (Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/ ()V net/minecraft/client/renderer/RenderType$OutlineProperty/ ()V +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/renderer/RenderType$OutlineProperty/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/m_173294_ ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; net/minecraft/client/renderer/RenderType$OutlineProperty/$values ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType$OutlineProperty/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/RenderType$OutlineProperty; net/minecraft/client/renderer/RenderType$OutlineProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/values ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; net/minecraft/client/renderer/RenderType$OutlineProperty/values ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +MD: net/minecraft/client/renderer/RunningTrimmedMean/ (I)V net/minecraft/client/renderer/RunningTrimmedMean/ (I)V +MD: net/minecraft/client/renderer/RunningTrimmedMean/m_110712_ (J)J net/minecraft/client/renderer/RunningTrimmedMean/registerValueAndGetMean (J)J +MD: net/minecraft/client/renderer/ScreenEffectRenderer/ ()V net/minecraft/client/renderer/ScreenEffectRenderer/ ()V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/ ()V net/minecraft/client/renderer/ScreenEffectRenderer/ ()V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110716_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/client/renderer/ScreenEffectRenderer/getViewBlockingState (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110718_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderScreenEffect (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110725_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderWater (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110728_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderFire (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_173296_ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderTex (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ShaderInstance/ ()V net/minecraft/client/renderer/ShaderInstance/ ()V +MD: net/minecraft/client/renderer/ShaderInstance/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)V net/minecraft/client/renderer/ShaderInstance/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)V +MD: net/minecraft/client/renderer/ShaderInstance/close ()V net/minecraft/client/renderer/ShaderInstance/close ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_108943_ ()I net/minecraft/client/renderer/ShaderInstance/getId ()I +MD: net/minecraft/client/renderer/ShaderInstance/m_108957_ ()V net/minecraft/client/renderer/ShaderInstance/markDirty ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_108962_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/ShaderInstance/getVertexProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/ShaderInstance/m_108964_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/ShaderInstance/getFragmentProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/ShaderInstance/m_142662_ ()V net/minecraft/client/renderer/ShaderInstance/attachToProgram ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_173340_ (Lnet/minecraft/server/packs/resources/ResourceProvider;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/ShaderInstance/getOrCreate (Lnet/minecraft/server/packs/resources/ResourceProvider;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/ShaderInstance/m_173344_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/ShaderInstance/parseSamplerNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/ShaderInstance/m_173346_ (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; net/minecraft/client/renderer/ShaderInstance/parseBlendNode (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; +MD: net/minecraft/client/renderer/ShaderInstance/m_173348_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; net/minecraft/client/renderer/ShaderInstance/getUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; +MD: net/minecraft/client/renderer/ShaderInstance/m_173350_ (Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/client/renderer/ShaderInstance/setSampler (Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/client/renderer/ShaderInstance/m_173354_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/ShaderInstance/parseUniformNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/ShaderInstance/m_173356_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; net/minecraft/client/renderer/ShaderInstance/safeGetUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; +MD: net/minecraft/client/renderer/ShaderInstance/m_173362_ ()V net/minecraft/client/renderer/ShaderInstance/clear ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_173363_ ()V net/minecraft/client/renderer/ShaderInstance/apply ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_173364_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; net/minecraft/client/renderer/ShaderInstance/getVertexFormat ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: net/minecraft/client/renderer/ShaderInstance/m_173365_ ()Ljava/lang/String; net/minecraft/client/renderer/ShaderInstance/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/ShaderInstance/m_173366_ ()V net/minecraft/client/renderer/ShaderInstance/updateLocations ()V +MD: net/minecraft/client/renderer/ShaderInstance$1/ (Ljava/lang/String;Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/renderer/ShaderInstance$1/ (Ljava/lang/String;Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/renderer/ShaderInstance$1/m_142138_ (ZLjava/lang/String;)Ljava/lang/String; net/minecraft/client/renderer/ShaderInstance$1/applyImport (ZLjava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/renderer/Sheets/ ()V net/minecraft/client/renderer/Sheets/ ()V +MD: net/minecraft/client/renderer/Sheets/ ()V net/minecraft/client/renderer/Sheets/ ()V +MD: net/minecraft/client/renderer/Sheets/m_110762_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/bannerSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110763_ (I)[Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/lambda$static$2 (I)[Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110765_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/lambda$static$1 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110767_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/state/properties/ChestType;Z)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/chooseMaterial (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/state/properties/ChestType;Z)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110771_ (Lnet/minecraft/world/level/block/state/properties/ChestType;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/chooseMaterial (Lnet/minecraft/world/level/block/state/properties/ChestType;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110778_ (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/chestMaterial (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110780_ (Ljava/util/function/Consumer;)V net/minecraft/client/renderer/Sheets/getAllMaterials (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/renderer/Sheets/m_110782_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/shieldSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110783_ (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110785_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/bedSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110786_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/shulkerBoxSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110787_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/signSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110788_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/chestSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110789_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/solidBlockSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110790_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/cutoutBlockSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110791_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/translucentItemSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110792_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/translucentCullBlockSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_173381_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_173385_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234347_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getBannerMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234349_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getShieldMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234351_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createBannerMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234353_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createShieldMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_245275_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createHangingSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_246640_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/hangingSignSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_246984_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getHangingSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_266442_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/armorTrimsSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_272215_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createDecoratedPotMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_272280_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getDecoratedPotMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets$1/ ()V net/minecraft/client/renderer/Sheets$1/ ()V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/renderer/SpriteCoordinateExpander/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_141991_ ()V net/minecraft/client/renderer/SpriteCoordinateExpander/unsetDefaultColor ()V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5752_ ()V net/minecraft/client/renderer/SpriteCoordinateExpander/endVertex ()V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5954_ (FFFFFFFFFIIFFF)V net/minecraft/client/renderer/SpriteCoordinateExpander/vertex (FFFFFFFFFIIFFF)V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7404_ (IIII)V net/minecraft/client/renderer/SpriteCoordinateExpander/defaultColor (IIII)V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/ViewArea/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/world/level/Level;ILnet/minecraft/client/renderer/LevelRenderer;)V net/minecraft/client/renderer/ViewArea/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/world/level/Level;ILnet/minecraft/client/renderer/LevelRenderer;)V +MD: net/minecraft/client/renderer/ViewArea/m_110849_ ()V net/minecraft/client/renderer/ViewArea/releaseAllBuffers ()V +MD: net/minecraft/client/renderer/ViewArea/m_110850_ (DD)V net/minecraft/client/renderer/ViewArea/repositionCamera (DD)V +MD: net/minecraft/client/renderer/ViewArea/m_110853_ (I)V net/minecraft/client/renderer/ViewArea/setViewDistance (I)V +MD: net/minecraft/client/renderer/ViewArea/m_110855_ (III)I net/minecraft/client/renderer/ViewArea/getChunkIndex (III)I +MD: net/minecraft/client/renderer/ViewArea/m_110859_ (IIIZ)V net/minecraft/client/renderer/ViewArea/setDirty (IIIZ)V +MD: net/minecraft/client/renderer/ViewArea/m_110864_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)V net/minecraft/client/renderer/ViewArea/createChunks (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)V +MD: net/minecraft/client/renderer/ViewArea/m_110866_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; net/minecraft/client/renderer/ViewArea/getRenderChunkAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; +MD: net/minecraft/client/renderer/VirtualScreen/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/VirtualScreen/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/VirtualScreen/close ()V net/minecraft/client/renderer/VirtualScreen/close ()V +MD: net/minecraft/client/renderer/VirtualScreen/m_110872_ (Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window; net/minecraft/client/renderer/VirtualScreen/newWindow (Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window; +MD: net/minecraft/client/renderer/block/BlockModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V net/minecraft/client/renderer/block/BlockModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110881_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/renderer/block/BlockModelShaper/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110882_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/block/BlockModelShaper/getParticleIcon (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110884_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/client/renderer/block/BlockModelShaper/getValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110887_ (Ljava/util/Map;)Ljava/lang/String; net/minecraft/client/renderer/block/BlockModelShaper/statePropertiesToString (Ljava/util/Map;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110889_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/renderer/block/BlockModelShaper/stateToModelLocation (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110893_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/BlockModelShaper/getBlockModel (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110895_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/renderer/block/BlockModelShaper/stateToModelLocation (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_245515_ (Ljava/util/Map;)V net/minecraft/client/renderer/block/BlockModelShaper/replaceCache (Ljava/util/Map;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/ (Lnet/minecraft/client/renderer/block/BlockModelShaper;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;Lnet/minecraft/client/color/block/BlockColors;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/ (Lnet/minecraft/client/renderer/block/BlockModelShaper;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;Lnet/minecraft/client/color/block/BlockColors;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110907_ ()Lnet/minecraft/client/renderer/block/BlockModelShaper; net/minecraft/client/renderer/block/BlockRenderDispatcher/getBlockModelShaper ()Lnet/minecraft/client/renderer/block/BlockModelShaper; +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110910_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/BlockRenderDispatcher/getBlockModel (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110912_ (Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderSingleBlock (Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110918_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderBreakingTexture (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110937_ ()Lnet/minecraft/client/renderer/block/ModelBlockRenderer; net/minecraft/client/renderer/block/BlockRenderDispatcher/getModelRenderer ()Lnet/minecraft/client/renderer/block/ModelBlockRenderer; +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_234355_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderBatched (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_234363_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderLiquid (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher$1/ ()V net/minecraft/client/renderer/block/BlockRenderDispatcher$1/ ()V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/ ()V net/minecraft/client/renderer/block/LiquidBlockRenderer/ ()V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110944_ ()V net/minecraft/client/renderer/block/LiquidBlockRenderer/setupSprites ()V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110945_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/block/LiquidBlockRenderer/getLightColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110959_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isFaceOccludedBySelf (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110978_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;FLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isFaceOccludedByState (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;FLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110984_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDFFFFFI)V net/minecraft/client/renderer/block/LiquidBlockRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDFFFFFI)V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203149_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;FFFLnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/block/LiquidBlockRenderer/calculateAverageHeight (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;FFFLnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203156_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/block/LiquidBlockRenderer/getHeight (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203160_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/client/renderer/block/LiquidBlockRenderer/getHeight (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203166_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/shouldRenderFace (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203179_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;FLnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isFaceOccludedByNeighbor (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;FLnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203185_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isNeighborSameFluid (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203188_ ([FF)V net/minecraft/client/renderer/block/LiquidBlockRenderer/addWeightedHeight ([FF)V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_234369_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/client/renderer/block/LiquidBlockRenderer/tesselate (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer$1/ ()V net/minecraft/client/renderer/block/LiquidBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/ (Lnet/minecraft/client/color/block/BlockColors;)V net/minecraft/client/renderer/block/ModelBlockRenderer/ (Lnet/minecraft/client/color/block/BlockColors;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111000_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer/enableCaching ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111001_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;IIZLcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Ljava/util/BitSet;)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderModelFaceFlat (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;IIZLcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Ljava/util/BitSet;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111012_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;[FLjava/util/BitSet;Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace;I)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderModelFaceAO (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;[FLjava/util/BitSet;Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace;I)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111023_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFFIIIII)V net/minecraft/client/renderer/block/ModelBlockRenderer/putQuadData (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFFIIIII)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111039_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;[ILnet/minecraft/core/Direction;[FLjava/util/BitSet;)V net/minecraft/client/renderer/block/ModelBlockRenderer/calculateShape (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;[ILnet/minecraft/core/Direction;[FLjava/util/BitSet;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111058_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFLjava/util/List;II)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderQuadList (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFLjava/util/List;II)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111067_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/BakedModel;FFFII)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderModel (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/BakedModel;FFFII)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111077_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer/clearCache ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_234379_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V net/minecraft/client/renderer/block/ModelBlockRenderer/tesselateBlock (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_234390_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V net/minecraft/client/renderer/block/ModelBlockRenderer/tesselateWithAO (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_234401_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V net/minecraft/client/renderer/block/ModelBlockRenderer/tesselateWithoutAO (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$1/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;FZ[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;)V net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;FZ[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/m_111131_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/fromFacing (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/m_111133_ ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo;)V net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/lambda$static$0 ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/m_173407_ ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/$values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/m_111153_ (IIII)I net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/blend (IIII)I +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/m_111158_ (IIIIFFFF)I net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/blend (IIIIFFFF)I +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/m_111167_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;[FLjava/util/BitSet;Z)V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/calculate (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;[FLjava/util/BitSet;Z)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ (Ljava/lang/String;IIIII)V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ (Ljava/lang/String;IIIII)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/m_111201_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/fromFacing (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/m_111203_ ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap;)V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/lambda$static$0 ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/m_173408_ ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/$values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111220_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/enable ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111221_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/getLightColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111225_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/disable ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111226_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111230_ ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/lambda$new$1 ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111231_ ()Lit/unimi/dsi/fastutil/longs/Long2IntLinkedOpenHashMap; net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/lambda$new$0 ()Lit/unimi/dsi/fastutil/longs/Long2IntLinkedOpenHashMap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/rehash (I)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/rehash (I)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/rehash (I)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/rehash (I)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ (Ljava/lang/String;ILnet/minecraft/core/Direction;Z)V net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ (Ljava/lang/String;ILnet/minecraft/core/Direction;Z)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/m_173409_ ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/$values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +MD: net/minecraft/client/renderer/block/model/BakedQuad/ ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V net/minecraft/client/renderer/block/model/BakedQuad/ ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111303_ ()[I net/minecraft/client/renderer/block/model/BakedQuad/getVertices ()[I +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111304_ ()Z net/minecraft/client/renderer/block/model/BakedQuad/isTinted ()Z +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111305_ ()I net/minecraft/client/renderer/block/model/BakedQuad/getTintIndex ()I +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111306_ ()Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/BakedQuad/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111307_ ()Z net/minecraft/client/renderer/block/model/BakedQuad/isShade ()Z +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_173410_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/block/model/BakedQuad/getSprite ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/block/model/BlockElement/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V net/minecraft/client/renderer/block/model/BlockElement/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V +MD: net/minecraft/client/renderer/block/model/BlockElement/m_111319_ ()V net/minecraft/client/renderer/block/model/BlockElement/fillUvs ()V +MD: net/minecraft/client/renderer/block/model/BlockElement/m_111320_ (Lnet/minecraft/core/Direction;)[F net/minecraft/client/renderer/block/model/BlockElement/uvsByFace (Lnet/minecraft/core/Direction;)[F +MD: net/minecraft/client/renderer/block/model/BlockElement$1/ ()V net/minecraft/client/renderer/block/model/BlockElement$1/ ()V +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockElement$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElement; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElement; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111325_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getFaces (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111332_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/BlockElementRotation; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getRotation (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/BlockElementRotation; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111334_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getVector3f (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111337_ (Ljava/lang/String;)Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getFacing (Ljava/lang/String;)Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111339_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/filterNullFromFaces (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111342_ (Lcom/google/gson/JsonObject;)F net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getAngle (Lcom/google/gson/JsonObject;)F +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111344_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction$Axis; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getAxis (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111346_ (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getFrom (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111352_ (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getTo (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElementFace/ (Lnet/minecraft/core/Direction;ILjava/lang/String;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V net/minecraft/client/renderer/block/model/BlockElementFace/ (Lnet/minecraft/core/Direction;ILjava/lang/String;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElementFace; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElementFace; +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/m_111368_ (Lcom/google/gson/JsonObject;)I net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/getTintIndex (Lcom/google/gson/JsonObject;)I +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/m_111370_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/getTexture (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/m_111372_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/getCullFacing (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/ (Lorg/joml/Vector3f;Lnet/minecraft/core/Direction$Axis;FZ)V net/minecraft/client/renderer/block/model/BlockElementRotation/ (Lorg/joml/Vector3f;Lnet/minecraft/core/Direction$Axis;FZ)V +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/BlockElementRotation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111378_ ()Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElementRotation/origin ()Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111379_ ()Lnet/minecraft/core/Direction$Axis; net/minecraft/client/renderer/block/model/BlockElementRotation/axis ()Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111380_ ()F net/minecraft/client/renderer/block/model/BlockElementRotation/angle ()F +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111381_ ()Z net/minecraft/client/renderer/block/model/BlockElementRotation/rescale ()Z +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/hashCode ()I net/minecraft/client/renderer/block/model/BlockElementRotation/hashCode ()I +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockElementRotation/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/ ([FI)V net/minecraft/client/renderer/block/model/BlockFaceUV/ ([FI)V +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111392_ (I)F net/minecraft/client/renderer/block/model/BlockFaceUV/getU (I)F +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111394_ ([F)V net/minecraft/client/renderer/block/model/BlockFaceUV/setMissingUv ([F)V +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111396_ (I)F net/minecraft/client/renderer/block/model/BlockFaceUV/getV (I)F +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111398_ (I)I net/minecraft/client/renderer/block/model/BlockFaceUV/getReverseIndex (I)I +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111400_ (I)I net/minecraft/client/renderer/block/model/BlockFaceUV/getShiftedIndex (I)I +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/m_111407_ (Lcom/google/gson/JsonObject;)I net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/getRotation (Lcom/google/gson/JsonObject;)I +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/m_111409_ (Lcom/google/gson/JsonObject;)[F net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/getUVs (Lcom/google/gson/JsonObject;)[F +MD: net/minecraft/client/renderer/block/model/BlockModel/ ()V net/minecraft/client/renderer/block/model/BlockModel/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModel/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;Ljava/lang/Boolean;Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Ljava/util/List;)V net/minecraft/client/renderer/block/model/BlockModel/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;Ljava/lang/Boolean;Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111436_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel/getElements ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111437_ (Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; net/minecraft/client/renderer/block/model/BlockModel/bakeFace (Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111449_ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/BlockModel/bake (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111461_ (Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel/fromStream (Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111463_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel/fromString (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111476_ ()Z net/minecraft/client/renderer/block/model/BlockModel/hasAmbientOcclusion ()Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111477_ (Ljava/lang/String;)Z net/minecraft/client/renderer/block/model/BlockModel/hasTexture (Ljava/lang/String;)Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111479_ ()Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel/getGuiLight ()Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111480_ (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/block/model/BlockModel/getMaterial (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111484_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel/getOverrides ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111485_ (Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/renderer/block/model/BlockModel/findTextureEntry (Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111488_ (Ljava/lang/String;)Z net/minecraft/client/renderer/block/model/BlockModel/isTextureReference (Ljava/lang/String;)Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111490_ ()Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel/getRootModel ()Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111491_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/renderer/block/model/BlockModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_173420_ ()Z net/minecraft/client/renderer/block/model/BlockModel/isResolved ()Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_244730_ (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/ItemOverride;)V net/minecraft/client/renderer/block/model/BlockModel/lambda$resolveParents$0 (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/ItemOverride;)V +MD: net/minecraft/client/renderer/block/model/BlockModel/m_246736_ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/renderer/block/model/BlockModel/getItemOverrides (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_269178_ (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/BlockModel/getTransform (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/renderer/block/model/BlockModel/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/renderer/block/model/BlockModel/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/BlockModel/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_7970_ ()Ljava/util/Collection; net/minecraft/client/renderer/block/model/BlockModel/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/block/model/BlockModel/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockModel/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockModel$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111494_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getOverrides (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111503_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/parseTextureLocationOrReference (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111506_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getElements (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111509_ (Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getTextureMap (Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111511_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getParentName (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_271865_ (Lcom/google/gson/JsonObject;)Ljava/lang/Boolean; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getAmbientOcclusion (Lcom/google/gson/JsonObject;)Ljava/lang/Boolean; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ ()V net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/m_111526_ ()Z net/minecraft/client/renderer/block/model/BlockModel$GuiLight/lightLikeBlock ()Z +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/m_111527_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/getByName (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/m_173422_ ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/$values ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/values ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/values ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$LoopException/ (Ljava/lang/String;)V net/minecraft/client/renderer/block/model/BlockModel$LoopException/ (Ljava/lang/String;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;)V net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/List;)V net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/BlockModelDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/hashCode ()I net/minecraft/client/renderer/block/model/BlockModelDefinition/hashCode ()I +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111539_ ()Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockModelDefinition/getVariants ()Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111540_ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition/fromStream (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111543_ ()Z net/minecraft/client/renderer/block/model/BlockModelDefinition/isMultiPart ()Z +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111544_ ()Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; net/minecraft/client/renderer/block/model/BlockModelDefinition/getMultiPart ()Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_173425_ (Ljava/lang/String;)Z net/minecraft/client/renderer/block/model/BlockModelDefinition/hasVariant (Ljava/lang/String;)Z +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_173427_ ()Ljava/util/Set; net/minecraft/client/renderer/block/model/BlockModelDefinition/getMultiVariants ()Ljava/util/Set; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_173428_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/MultiVariant; net/minecraft/client/renderer/block/model/BlockModelDefinition/getVariant (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/MultiVariant; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_247114_ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition/fromJsonElement (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/ ()V net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/m_111551_ ()Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/getDefinition ()Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/m_111552_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/setDefinition (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/m_111555_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/getVariants (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/m_111562_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/getMultiPart (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;)V net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/ ()V net/minecraft/client/renderer/block/model/FaceBakery/ ()V +MD: net/minecraft/client/renderer/block/model/FaceBakery/ ()V net/minecraft/client/renderer/block/model/FaceBakery/ ()V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111573_ (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;[FLcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)[I net/minecraft/client/renderer/block/model/FaceBakery/makeVertices (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;[FLcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)[I +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111581_ (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/core/Direction;Lcom/mojang/math/Transformation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; net/minecraft/client/renderer/block/model/FaceBakery/recomputeUVs (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/core/Direction;Lcom/mojang/math/Transformation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111592_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)[F net/minecraft/client/renderer/block/model/FaceBakery/setupShape (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)[F +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111600_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;ZLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; net/minecraft/client/renderer/block/model/FaceBakery/bakeQuad (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;ZLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111610_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/client/renderer/block/model/FaceBakery/lambda$recomputeUVs$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111612_ ([I)Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/FaceBakery/calculateFacing ([I)Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111614_ ([IILorg/joml/Vector3f;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V net/minecraft/client/renderer/block/model/FaceBakery/fillVertex ([IILorg/joml/Vector3f;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111620_ ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;[FLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V net/minecraft/client/renderer/block/model/FaceBakery/bakeVertex ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;[FLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111630_ ([ILnet/minecraft/core/Direction;)V net/minecraft/client/renderer/block/model/FaceBakery/recalculateWinding ([ILnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_252821_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;Lorg/joml/Vector3f;)V net/minecraft/client/renderer/block/model/FaceBakery/rotateVertexBy (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_252985_ (Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;)V net/minecraft/client/renderer/block/model/FaceBakery/applyElementRotation (Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_253132_ (Lorg/joml/Vector3f;Lcom/mojang/math/Transformation;)V net/minecraft/client/renderer/block/model/FaceBakery/applyModelRotation (Lorg/joml/Vector3f;Lcom/mojang/math/Transformation;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery$1/ ()V net/minecraft/client/renderer/block/model/FaceBakery$1/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111638_ (ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemModelGenerator/processFrames (ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111661_ (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/lang/String;I)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemModelGenerator/createSideElements (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/lang/String;I)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111665_ (Ljava/util/List;Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V net/minecraft/client/renderer/block/model/ItemModelGenerator/createOrExpandSpan (Ljava/util/List;Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111670_ (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/ItemModelGenerator/generateBlockModel (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_173439_ (IILnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;I)V net/minecraft/client/renderer/block/model/ItemModelGenerator/lambda$getSpans$0 (IILnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;I)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_245924_ (Lnet/minecraft/client/renderer/texture/SpriteContents;IIIII)Z net/minecraft/client/renderer/block/model/ItemModelGenerator/isTransparent (Lnet/minecraft/client/renderer/texture/SpriteContents;IIIII)Z +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_246249_ (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;Ljava/util/List;Lnet/minecraft/client/renderer/texture/SpriteContents;IIIIIZ)V net/minecraft/client/renderer/block/model/ItemModelGenerator/checkTransition (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;Ljava/util/List;Lnet/minecraft/client/renderer/texture/SpriteContents;IIIIIZ)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_247383_ (Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemModelGenerator/getSpans (Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$1/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator$1/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/ (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/ (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111683_ ()Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getFacing ()Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111684_ (I)V net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/expand (I)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111686_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getMin ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111687_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getMax ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111688_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getAnchor ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ (Ljava/lang/String;ILnet/minecraft/core/Direction;II)V net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ (Ljava/lang/String;ILnet/minecraft/core/Direction;II)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111704_ ()Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111707_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/getXOffset ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111708_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/getYOffset ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111709_ ()Z net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/isHorizontal ()Z +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_173445_ ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/$values ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/values ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/values ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemOverride/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/renderer/block/model/ItemOverride/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/ItemOverride/m_111718_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/ItemOverride/getModel ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/ItemOverride/m_173449_ ()Ljava/util/stream/Stream; net/minecraft/client/renderer/block/model/ItemOverride/getPredicates ()Ljava/util/stream/Stream; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemOverride; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemOverride; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/m_173450_ (Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/getPredicates (Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/m_173452_ (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/lambda$getPredicates$0 (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/ (Lnet/minecraft/resources/ResourceLocation;F)V net/minecraft/client/renderer/block/model/ItemOverride$Predicate/ (Lnet/minecraft/resources/ResourceLocation;F)V +MD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/m_173459_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/ItemOverride$Predicate/getProperty ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/m_173460_ ()F net/minecraft/client/renderer/block/model/ItemOverride$Predicate/getValue ()F +MD: net/minecraft/client/renderer/block/model/ItemOverrides/ ()V net/minecraft/client/renderer/block/model/ItemOverrides/ ()V +MD: net/minecraft/client/renderer/block/model/ItemOverrides/ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/List;)V net/minecraft/client/renderer/block/model/ItemOverrides/ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/ItemOverrides/ ()V net/minecraft/client/renderer/block/model/ItemOverrides/ ()V +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173462_ (I)[Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; net/minecraft/client/renderer/block/model/ItemOverrides/lambda$new$2 (I)[Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173464_ (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/ItemOverrides/resolve (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173475_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate;)Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; net/minecraft/client/renderer/block/model/ItemOverrides/lambda$new$1 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate;)Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173478_ (I)[Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/ItemOverrides/lambda$new$0 (I)[Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_246989_ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverride;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/ItemOverrides/bakeModel (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverride;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/ ([Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher;Lnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/ ([Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher;Lnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/m_173485_ ([F)Z net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/test ([F)Z +MD: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/ (IF)V net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/ (IF)V +MD: net/minecraft/client/renderer/block/model/ItemTransform/ ()V net/minecraft/client/renderer/block/model/ItemTransform/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransform/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V net/minecraft/client/renderer/block/model/ItemTransform/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/renderer/block/model/ItemTransform/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/ItemTransform/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/ItemTransform/hashCode ()I net/minecraft/client/renderer/block/model/ItemTransform/hashCode ()I +MD: net/minecraft/client/renderer/block/model/ItemTransform/m_111763_ (ZLcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/block/model/ItemTransform/apply (ZLcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/m_111778_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/joml/Vector3f;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/getVector3f (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/joml/Vector3f;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ ()V net/minecraft/client/renderer/block/model/ItemTransforms/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;)V net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;)V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;)V net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;)V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ ()V net/minecraft/client/renderer/block/model/ItemTransforms/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/m_269404_ (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/ItemTransforms/getTransform (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/ItemTransforms/m_269504_ (Lnet/minecraft/world/item/ItemDisplayContext;)Z net/minecraft/client/renderer/block/model/ItemTransforms/hasTransform (Lnet/minecraft/world/item/ItemDisplayContext;)Z +MD: net/minecraft/client/renderer/block/model/ItemTransforms$1/ ()V net/minecraft/client/renderer/block/model/ItemTransforms$1/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/m_269518_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/getTransform (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/MultiVariant/ (Ljava/util/List;)V net/minecraft/client/renderer/block/model/MultiVariant/ (Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/MultiVariant/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/MultiVariant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/MultiVariant/hashCode ()I net/minecraft/client/renderer/block/model/MultiVariant/hashCode ()I +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_111848_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/MultiVariant/getVariants ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_244731_ (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/block/model/MultiVariant/lambda$resolveParents$0 (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/renderer/block/model/MultiVariant/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/MultiVariant/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_7970_ ()Ljava/util/Collection; net/minecraft/client/renderer/block/model/MultiVariant/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/ ()V net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/MultiVariant; net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/MultiVariant; +MD: net/minecraft/client/renderer/block/model/Variant/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;ZI)V net/minecraft/client/renderer/block/model/Variant/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;ZI)V +MD: net/minecraft/client/renderer/block/model/Variant/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/Variant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/Variant/hashCode ()I net/minecraft/client/renderer/block/model/Variant/hashCode ()I +MD: net/minecraft/client/renderer/block/model/Variant/m_111883_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/Variant/getModelLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/Variant/m_111886_ ()I net/minecraft/client/renderer/block/model/Variant/getWeight ()I +MD: net/minecraft/client/renderer/block/model/Variant/m_6189_ ()Lcom/mojang/math/Transformation; net/minecraft/client/renderer/block/model/Variant/getRotation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/renderer/block/model/Variant/m_7538_ ()Z net/minecraft/client/renderer/block/model/Variant/isUvLocked ()Z +MD: net/minecraft/client/renderer/block/model/Variant/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/Variant/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/ ()V net/minecraft/client/renderer/block/model/Variant$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/Variant; net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/Variant; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111896_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/renderer/block/model/Variant$Deserializer/getBlockRotation (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111898_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/Variant$Deserializer/getModel (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111900_ (Lcom/google/gson/JsonObject;)I net/minecraft/client/renderer/block/model/Variant$Deserializer/getWeight (Lcom/google/gson/JsonObject;)I +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111902_ (Lcom/google/gson/JsonObject;)Z net/minecraft/client/renderer/block/model/Variant$Deserializer/getUvLock (Lcom/google/gson/JsonObject;)Z +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/ (Ljava/lang/Iterable;)V net/minecraft/client/renderer/block/model/multipart/AndCondition/ (Ljava/lang/Iterable;)V +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_111914_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/AndCondition/lambda$getPredicate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_111917_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/AndCondition/lambda$getPredicate$2 (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_173500_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z net/minecraft/client/renderer/block/model/multipart/AndCondition/lambda$getPredicate$1 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/AndCondition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Condition/ ()V net/minecraft/client/renderer/block/model/multipart/Condition/ ()V +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_111927_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$3 (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_111931_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$1 (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_173503_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_173505_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Condition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ ()V net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ ()V +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111944_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/getBlockStatePredicate (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111948_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/Optional;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getBlockStatePredicate$3 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/Optional;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111952_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getPredicate$2 (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111955_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getPredicate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_173507_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getPredicate$1 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/List;)V net/minecraft/client/renderer/block/model/multipart/MultiPart/ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/multipart/MultiPart/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/hashCode ()I net/minecraft/client/renderer/block/model/multipart/MultiPart/hashCode ()I +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_111967_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/multipart/MultiPart/getSelectors ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_111968_ (Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Ljava/util/stream/Stream; net/minecraft/client/renderer/block/model/multipart/MultiPart/lambda$getDependencies$0 (Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Ljava/util/stream/Stream; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_111982_ ()Ljava/util/Set; net/minecraft/client/renderer/block/model/multipart/MultiPart/getMultiVariants ()Ljava/util/Set; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_244732_ (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)V net/minecraft/client/renderer/block/model/multipart/MultiPart/lambda$resolveParents$1 (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/renderer/block/model/multipart/MultiPart/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/multipart/MultiPart/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_7970_ ()Ljava/util/Collection; net/minecraft/client/renderer/block/model/multipart/MultiPart/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;)V net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/m_111990_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonArray;)Ljava/util/List; net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/getSelectors (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonArray;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/ (Ljava/lang/Iterable;)V net/minecraft/client/renderer/block/model/multipart/OrCondition/ (Ljava/lang/Iterable;)V +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_112007_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/OrCondition/lambda$getPredicate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_112010_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/OrCondition/lambda$getPredicate$2 (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_173511_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z net/minecraft/client/renderer/block/model/multipart/OrCondition/lambda$getPredicate$1 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/OrCondition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Selector/ (Lnet/minecraft/client/renderer/block/model/multipart/Condition;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V net/minecraft/client/renderer/block/model/multipart/Selector/ (Lnet/minecraft/client/renderer/block/model/multipart/Condition;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V +MD: net/minecraft/client/renderer/block/model/multipart/Selector/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/multipart/Selector/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/multipart/Selector/hashCode ()I net/minecraft/client/renderer/block/model/multipart/Selector/hashCode ()I +MD: net/minecraft/client/renderer/block/model/multipart/Selector/m_112020_ ()Lnet/minecraft/client/renderer/block/model/MultiVariant; net/minecraft/client/renderer/block/model/multipart/Selector/getVariant ()Lnet/minecraft/client/renderer/block/model/MultiVariant; +MD: net/minecraft/client/renderer/block/model/multipart/Selector/m_112021_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Selector/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/ ()V net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/Selector; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/Selector; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112027_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/lambda$getCondition$1 (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112033_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/getCondition (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112035_ (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/getKeyValueCondition (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112037_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/lambda$getCondition$0 (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112039_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/getSelector (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BannerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_112065_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;)V net/minecraft/client/renderer/blockentity/BannerRenderer/renderPatterns (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_112074_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;Z)V net/minecraft/client/renderer/blockentity/BannerRenderer/renderPatterns (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;Z)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_173522_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BannerRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_234418_ (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II[FLnet/minecraft/client/resources/model/Material;)V net/minecraft/client/renderer/blockentity/BannerRenderer/lambda$renderPatterns$1 (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II[FLnet/minecraft/client/resources/model/Material;)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_234426_ (ZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/BannerRenderer/lambda$renderPatterns$0 (ZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BannerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BannerRenderer/render (Lnet/minecraft/world/level/block/entity/BannerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BannerRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/ ()V net/minecraft/client/renderer/blockentity/BeaconRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BeaconRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112119_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderQuad (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112155_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFFFFFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderPart (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFFFFFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112176_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;FJII[F)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderBeaconBeam (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;FJII[F)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112184_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/resources/ResourceLocation;FFJII[FFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderBeaconBeam (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/resources/ResourceLocation;FFJII[FFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/BeaconRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_142756_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRender (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_142756_ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRender (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_253258_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIFFFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/addVertex (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIFFFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BeaconRenderer/render (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BeaconRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BedRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_112201_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/blockentity/BedRenderer/lambda$render$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_173541_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/Material;IIZ)V net/minecraft/client/renderer/blockentity/BedRenderer/renderPiece (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/Material;IIZ)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_173550_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BedRenderer/createHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_173551_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BedRenderer/createFootLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BedBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BedRenderer/render (Lnet/minecraft/world/level/block/entity/BedBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BedRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/ ()V net/minecraft/client/renderer/blockentity/BellRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BellRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/m_173555_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BellRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BellRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BellBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BellRenderer/render (Lnet/minecraft/world/level/block/entity/BellBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BellRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/model/geom/EntityModelSet;Ljava/util/function/Supplier;Ljava/util/function/Supplier;Ljava/util/function/Supplier;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/model/geom/EntityModelSet;Ljava/util/function/Supplier;Ljava/util/function/Supplier;Ljava/util/function/Supplier;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112257_ (Lnet/minecraft/world/level/Level;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112265_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/getRenderer (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112267_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112272_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)Z net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/renderItem (Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)Z +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112278_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/lang/Runnable;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/tryRender (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112284_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/setupAndRender (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112290_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/lambda$renderItem$1 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112297_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/lambda$render$0 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_173564_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/prepare (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/BlockEntityRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_142756_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/blockentity/BlockEntityRenderer/shouldRender (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/client/renderer/blockentity/BlockEntityRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BlockEntityRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider/m_173570_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider/create (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173581_ ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getBlockEntityRenderDispatcher ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173582_ (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/bakeLayer (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173584_ ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getBlockRenderDispatcher ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173585_ ()Lnet/minecraft/client/model/geom/EntityModelSet; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getModelSet ()Lnet/minecraft/client/model/geom/EntityModelSet; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173586_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_234446_ ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getEntityRenderer ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_234447_ ()Lnet/minecraft/client/renderer/entity/ItemRenderer; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getItemRenderer ()Lnet/minecraft/client/renderer/entity/ItemRenderer; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/m_173590_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/register (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/m_173598_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Ljava/util/Map; net/minecraft/client/renderer/blockentity/BlockEntityRenderers/createEntityRenderers (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Ljava/util/Map; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/m_257086_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/lambda$createEntityRenderers$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/ ()V net/minecraft/client/renderer/blockentity/BrightnessCombiner/ ()V +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_112315_ (I)I net/minecraft/client/renderer/blockentity/BrightnessCombiner/lambda$acceptNone$2 (I)I +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_112322_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;I)I net/minecraft/client/renderer/blockentity/BrightnessCombiner/lambda$acceptDouble$0 (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;I)I +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_112332_ (I)I net/minecraft/client/renderer/blockentity/BrightnessCombiner/lambda$acceptSingle$1 (I)I +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6502_ ()Lit/unimi/dsi/fastutil/ints/Int2IntFunction; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptNone ()Lit/unimi/dsi/fastutil/ints/Int2IntFunction; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6502_ ()Ljava/lang/Object; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6959_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptDouble (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_7693_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptSingle (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/m_277029_ (Lnet/minecraft/core/Direction;I)[F net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/translations (Lnet/minecraft/core/Direction;I)[F +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/ ()V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/blockentity/CampfireRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/CampfireRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/CampfireRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/CampfireRenderer/render (Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/CampfireRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/CampfireRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/ChestRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_112369_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;FII)V net/minecraft/client/renderer/blockentity/ChestRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;FII)V +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_173608_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ChestRenderer/createSingleBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_173609_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ChestRenderer/createDoubleBodyRightLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_173610_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ChestRenderer/createDoubleBodyLeftLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ChestRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/ ()V net/minecraft/client/renderer/blockentity/ConduitRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/ConduitRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173614_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createEyeLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173615_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createWindLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173616_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createShellLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173617_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createCageLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ConduitRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ConduitRenderer/render (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_271834_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/getMaterial (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_271954_ (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/Material;)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/renderSide (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/Material;)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_272062_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/createSidesLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_272233_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/createBaseLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/render (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ ()V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/render (Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/ ()V net/minecraft/client/renderer/blockentity/HangingSignRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_245629_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/HangingSignRenderer/getSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_245648_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel; net/minecraft/client/renderer/blockentity/HangingSignRenderer/lambda$new$1 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_245885_ (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/renderSignModel (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_246656_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/client/renderer/blockentity/HangingSignRenderer/lambda$new$0 (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_247112_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/HangingSignRenderer/createHangingSignLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_276777_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/translateSign (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_278631_ ()F net/minecraft/client/renderer/blockentity/HangingSignRenderer/getSignTextRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_278725_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/blockentity/HangingSignRenderer/getTextOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_278770_ ()F net/minecraft/client/renderer/blockentity/HangingSignRenderer/getSignModelRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/render (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/m_246561_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/evaluateVisibleParts (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/renderer/blockentity/LecternRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/LecternRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/LecternRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/LecternRenderer/render (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/LecternRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/LecternRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_112458_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;ZI)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/renderBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;ZI)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/PistonHeadRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_6922_ (Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/render (Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/render (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/ ()V net/minecraft/client/renderer/blockentity/SignRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/SignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173639_ (Lnet/minecraft/world/level/block/entity/SignText;)I net/minecraft/client/renderer/blockentity/SignRenderer/getDarkColor (Lnet/minecraft/world/level/block/entity/SignText;)I +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173644_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/client/renderer/blockentity/SignRenderer/lambda$new$0 (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173646_ (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; net/minecraft/client/renderer/blockentity/SignRenderer/createSignModel (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173649_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; net/minecraft/client/renderer/blockentity/SignRenderer/lambda$new$1 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173654_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/SignRenderer/createSignLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_245629_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/SignRenderer/getSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_245885_ (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSignModel (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_276705_ (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/renderer/blockentity/SignRenderer/lambda$renderSignText$2 (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_276777_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/blockentity/SignRenderer/translateSign (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_277119_ (Lnet/minecraft/core/BlockPos;I)Z net/minecraft/client/renderer/blockentity/SignRenderer/isOutlineVisible (Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278631_ ()F net/minecraft/client/renderer/blockentity/SignRenderer/getSignTextRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278725_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/blockentity/SignRenderer/getTextOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278756_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/SignBlock;Lnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSignWithText (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/SignBlock;Lnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278770_ ()F net/minecraft/client/renderer/blockentity/SignRenderer/getSignModelRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278784_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSign (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278823_ (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/blockentity/SignRenderer/translateSignText (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278841_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SignText;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IIIZ)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSignText (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SignText;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IIIZ)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SignRenderer/render (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SignRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ ()V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_112523_ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/blockentity/SkullBlockRenderer/getRenderType (Lnet/minecraft/world/level/block/SkullBlock$Type;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_173661_ (Lnet/minecraft/client/model/geom/EntityModelSet;)Ljava/util/Map; net/minecraft/client/renderer/blockentity/SkullBlockRenderer/createSkullRenderers (Lnet/minecraft/client/model/geom/EntityModelSet;)Ljava/util/Map; +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_173663_ (Lnet/minecraft/core/Direction;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/SkullModelBase;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/renderSkull (Lnet/minecraft/core/Direction;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/SkullModelBase;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_260765_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SkullBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/render (Lnet/minecraft/world/level/block/entity/SkullBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/SpawnerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SpawnerRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SpawnerRenderer/render (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/StructureBlockRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_173676_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/renderInvisibleBlocks (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z net/minecraft/client/renderer/blockentity/StructureBlockRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/client/renderer/blockentity/StructureBlockRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/render (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/ ()V net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ ()V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142330_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142489_ ()F net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/getOffsetDown ()F +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142491_ ()F net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/getOffsetUp ()F +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/render (Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/render (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ ()V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_142330_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_142489_ ()F net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/getOffsetDown ()F +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_142491_ ()F net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/getOffsetUp ()F +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_173690_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/renderCube (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_252771_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFLnet/minecraft/core/Direction;)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/renderFace (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFLnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/render (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/LevelRenderer;Ljava/util/concurrent/Executor;ZLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/LevelRenderer;Ljava/util/concurrent/Executor;ZLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112693_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/setCamera (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112709_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/schedule (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112719_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getStats ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112727_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getCameraPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112731_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/blockUntilClear ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112732_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/isQueueEmpty ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112733_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/dispose ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112734_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/runTask ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112735_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/clearBatchQueue ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_173712_ ()I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getToBatchCount ()I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_173713_ ()I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getToUpload ()I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_173714_ ()I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getFreeBufferCount ()I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194410_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194412_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$0 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194415_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$1 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194417_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/uploadAllPendingUploads ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194418_ ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/pollTask ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_200431_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/rebuildChunkSync (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234450_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;Lcom/mojang/blaze3d/vertex/VertexBuffer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/uploadChunkLayer (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;Lcom/mojang/blaze3d/vertex/VertexBuffer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234453_ (Lcom/mojang/blaze3d/vertex/VertexBuffer;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$uploadChunkLayer$5 (Lcom/mojang/blaze3d/vertex/VertexBuffer;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234456_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$3 (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234460_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$2 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234463_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$schedule$4 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ (Ljava/lang/String;I)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/m_173715_ ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/$values ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/values ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/values ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_112757_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/hasNoRenderableLayers ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_112758_ (Lnet/minecraft/client/renderer/RenderType;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/isEmpty (Lnet/minecraft/client/renderer/RenderType;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_112773_ ()Ljava/util/List; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/getRenderableBlockEntities ()Ljava/util/List; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_7259_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/facesCanSeeEachother (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/m_7259_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/facesCanSeeEachother (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;IIII)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;IIII)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112798_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/hasAllNeighbors ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112801_ (III)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/setOrigin (III)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112805_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/beginLayer (Lcom/mojang/blaze3d/vertex/BufferBuilder;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112807_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112809_ (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/resortTransparency (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112822_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/doesChunkExistAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112824_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getRelativeOrigin (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112828_ (Z)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/setDirty (Z)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112830_ ([Lnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lambda$new$2 ([Lnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112832_ ()D net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getDistToPlayerSqr ()D +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112835_ ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getCompiledChunk ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112836_ (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lambda$new$0 (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112838_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/releaseBuffers ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112839_ ()Lnet/minecraft/core/BlockPos; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getOrigin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112840_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/setNotDirty ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112841_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/isDirty ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112842_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/isDirtyFromPlayer ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112846_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/reset ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_194419_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/cancelTasks ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_200434_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/rebuildChunkAsync (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_200437_ (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/createCompileTask (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_200439_ (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/compileSync (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_202440_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_234465_ (Ljava/util/Collection;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/updateGlobalBlockEntities (Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_285706_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lambda$new$1 (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DZ)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DZ)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Ljava/lang/Object;)I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/m_183497_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/name ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/m_5869_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/doTask (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/m_6204_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/cancel ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/RenderChunkRegion;Z)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/RenderChunkRegion;Z)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_183497_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/name ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234467_ (FFFLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/compile (FFFLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234472_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Ljava/util/List;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/lambda$doTask$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Ljava/util/List;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234476_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/handleBlockEntity (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234479_ (Ljava/util/List;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/lambda$doTask$0 (Ljava/util/List;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_5869_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/doTask (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_6204_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/cancel ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_112897_ (Ljava/lang/Void;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/lambda$doTask$0 (Ljava/lang/Void;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_183497_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/name ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_234490_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/lambda$doTask$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_5869_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/doTask (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_6204_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/cancel ()V +MD: net/minecraft/client/renderer/chunk/RenderChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/renderer/chunk/RenderChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/renderer/chunk/RenderChunk/m_200447_ (III)Ljava/lang/String; net/minecraft/client/renderer/chunk/RenderChunk/lambda$getBlockState$0 (III)Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/RenderChunk/m_200451_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/client/renderer/chunk/RenderChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/client/renderer/chunk/RenderChunk/m_200453_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/client/renderer/chunk/RenderChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/ (Lnet/minecraft/world/level/Level;II[[Lnet/minecraft/client/renderer/chunk/RenderChunk;)V net/minecraft/client/renderer/chunk/RenderChunkRegion/ (Lnet/minecraft/world/level/Level;II[[Lnet/minecraft/client/renderer/chunk/RenderChunk;)V +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_141928_ ()I net/minecraft/client/renderer/chunk/RenderChunkRegion/getHeight ()I +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_141937_ ()I net/minecraft/client/renderer/chunk/RenderChunkRegion/getMinBuildHeight ()I +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/client/renderer/chunk/RenderChunkRegion/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/renderer/chunk/RenderChunkRegion/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/client/renderer/chunk/RenderChunkRegion/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/client/renderer/chunk/RenderChunkRegion/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/client/renderer/chunk/RenderChunkRegion/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/client/renderer/chunk/RenderChunkRegion/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/ ()V net/minecraft/client/renderer/chunk/RenderRegionCache/ ()V +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/m_200462_ (Lnet/minecraft/world/level/Level;J)Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo; net/minecraft/client/renderer/chunk/RenderRegionCache/lambda$createRegion$0 (Lnet/minecraft/world/level/Level;J)Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/m_200465_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/client/renderer/chunk/RenderChunkRegion; net/minecraft/client/renderer/chunk/RenderRegionCache/createRegion (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/client/renderer/chunk/RenderChunkRegion; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/m_200470_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II[[Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo;)Z net/minecraft/client/renderer/chunk/RenderRegionCache/isAllEmpty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II[[Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo;)Z +MD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/m_200480_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/chunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/m_200481_ ()Lnet/minecraft/client/renderer/chunk/RenderChunk; net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/renderChunk ()Lnet/minecraft/client/renderer/chunk/RenderChunk; +MD: net/minecraft/client/renderer/chunk/VisGraph/ ()V net/minecraft/client/renderer/chunk/VisGraph/ ()V +MD: net/minecraft/client/renderer/chunk/VisGraph/ ()V net/minecraft/client/renderer/chunk/VisGraph/ ()V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112958_ ()Lnet/minecraft/client/renderer/chunk/VisibilitySet; net/minecraft/client/renderer/chunk/VisGraph/resolve ()Lnet/minecraft/client/renderer/chunk/VisibilitySet; +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112959_ (I)Ljava/util/Set; net/minecraft/client/renderer/chunk/VisGraph/floodFill (I)Ljava/util/Set; +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112961_ (III)I net/minecraft/client/renderer/chunk/VisGraph/getIndex (III)I +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112965_ (ILnet/minecraft/core/Direction;)I net/minecraft/client/renderer/chunk/VisGraph/getNeighborIndexAtFace (ILnet/minecraft/core/Direction;)I +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112968_ (ILjava/util/Set;)V net/minecraft/client/renderer/chunk/VisGraph/addEdges (ILjava/util/Set;)V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112971_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/chunk/VisGraph/setOpaque (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112973_ ([I)V net/minecraft/client/renderer/chunk/VisGraph/lambda$static$0 ([I)V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112975_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/chunk/VisGraph/getIndex (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/chunk/VisGraph$1/ ()V net/minecraft/client/renderer/chunk/VisGraph$1/ ()V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/ ()V net/minecraft/client/renderer/chunk/VisibilitySet/ ()V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/ ()V net/minecraft/client/renderer/chunk/VisibilitySet/ ()V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112983_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/chunk/VisibilitySet/visibilityBetween (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112986_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)V net/minecraft/client/renderer/chunk/VisibilitySet/set (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112990_ (Ljava/util/Set;)V net/minecraft/client/renderer/chunk/VisibilitySet/add (Ljava/util/Set;)V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112992_ (Z)V net/minecraft/client/renderer/chunk/VisibilitySet/setAll (Z)V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/toString ()Ljava/lang/String; net/minecraft/client/renderer/chunk/VisibilitySet/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/culling/Frustum/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/culling/Frustum/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/culling/Frustum/ (Lnet/minecraft/client/renderer/culling/Frustum;)V net/minecraft/client/renderer/culling/Frustum/ (Lnet/minecraft/client/renderer/culling/Frustum;)V +MD: net/minecraft/client/renderer/culling/Frustum/m_113002_ (DDD)V net/minecraft/client/renderer/culling/Frustum/prepare (DDD)V +MD: net/minecraft/client/renderer/culling/Frustum/m_113006_ (DDDDDD)Z net/minecraft/client/renderer/culling/Frustum/cubeInFrustum (DDDDDD)Z +MD: net/minecraft/client/renderer/culling/Frustum/m_113029_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/client/renderer/culling/Frustum/isVisible (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/client/renderer/culling/Frustum/m_194441_ (I)Lnet/minecraft/client/renderer/culling/Frustum; net/minecraft/client/renderer/culling/Frustum/offsetToFullyIncludeCameraCube (I)Lnet/minecraft/client/renderer/culling/Frustum; +MD: net/minecraft/client/renderer/culling/Frustum/m_253155_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/culling/Frustum/calculateFrustum (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113055_ (JLjava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$clearRemovedHives$2 (JLjava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113058_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$updateLastLookedAtUuid$14 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113066_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/addOrUpdateBeeInfo (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113068_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer/getPosDescription (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113071_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/addOrUpdateHiveInfo (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113085_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$getHiveMembers$12 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113115_ (Ljava/util/Collection;)Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer/getBeeUuidsAsString (Ljava/util/Collection;)Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113119_ (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$renderFlowerInfos$10 (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113126_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/clearRemovedBees ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113129_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; net/minecraft/client/renderer/debug/BeeDebugRenderer/getHiveMembers (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113131_ (Ljava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$clearRemovedBees$1 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113133_ (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$createHiveBlacklistMap$8 (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113136_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/clearRemovedHives ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113139_ (Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$getGhostHives$13 (Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113142_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/isBeeSelected (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113146_ ()Ljava/util/Map; net/minecraft/client/renderer/debug/BeeDebugRenderer/createHiveBlacklistMap ()Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113147_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/isPlayerCloseEnoughToMob (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113154_ ()Lnet/minecraft/client/Camera; net/minecraft/client/renderer/debug/BeeDebugRenderer/getCamera ()Lnet/minecraft/client/Camera; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113155_ ()Ljava/util/Map; net/minecraft/client/renderer/debug/BeeDebugRenderer/getGhostHives ()Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113156_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/updateLastLookedAtUuid ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173763_ (I)V net/minecraft/client/renderer/debug/BeeDebugRenderer/removeBeeInfo (I)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173765_ (ILnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$removeBeeInfo$0 (ILnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173768_ (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$createHiveBlacklistMap$7 (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173772_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)Ljava/util/Set; net/minecraft/client/renderer/debug/BeeDebugRenderer/getHiveMemberNames (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173774_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$renderFlowerInfos$9 (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173776_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$createHiveBlacklistMap$6 (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268819_ (Lnet/minecraft/core/BlockPos;Ljava/util/Map;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$doRender$4 (Lnet/minecraft/core/BlockPos;Ljava/util/Map;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268820_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/Map$Entry;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$renderFlowerInfos$11 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/Map$Entry;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268821_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$doRender$5 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268822_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$doRender$3 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269015_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderTextOverMob (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269057_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;II)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderTextOverHive (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;II)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269169_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;Ljava/util/Collection;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderHiveInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269172_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/highlightHive (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269283_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/doRender (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269284_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderBeeInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269380_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderTextOverPos (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269467_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderPath (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269561_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderFlowerInfos (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269584_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderGhostHive (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/BeeDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/ (Ljava/util/UUID;ILnet/minecraft/core/Position;Lnet/minecraft/world/level/pathfinder/Path;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/ (Ljava/util/UUID;ILnet/minecraft/core/Position;Lnet/minecraft/world/level/pathfinder/Path;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113174_ ()Ljava/util/UUID; net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/getUuid ()Ljava/util/UUID; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113175_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/hasHive (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113177_ ()Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113178_ ()Z net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/hasFlower ()Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/toString ()Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;IIZJ)V net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;IIZJ)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113211_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$updateLastLookedAtUuid$8 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113219_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/addOrUpdateBrainDump (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113226_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/addPoi (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113228_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/removePoi (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113230_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/debug/BrainDebugRenderer/setFreeTicketCount (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113233_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$getPotentialTicketHolders$6 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113262_ (Ljava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$clearRemovedEntities$1 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113264_ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/clearRemovedEntities ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113265_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/isMobSelected (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113276_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$getTicketHolders$5 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113279_ ()Ljava/util/Map; net/minecraft/client/renderer/debug/BrainDebugRenderer/getGhostPois ()Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113280_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/isPlayerCloseEnoughToMob (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113282_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; net/minecraft/client/renderer/debug/BrainDebugRenderer/getTicketHolderNames (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113284_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; net/minecraft/client/renderer/debug/BrainDebugRenderer/getTicketHolders (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113286_ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/updateLastLookedAtUuid ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113287_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; net/minecraft/client/renderer/debug/BrainDebugRenderer/getPotentialTicketHolderNames (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113289_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; net/minecraft/client/renderer/debug/BrainDebugRenderer/getPotentialTicketHolders (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113291_ (Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$getGhostPois$7 (Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_173810_ (I)V net/minecraft/client/renderer/debug/BrainDebugRenderer/removeBrainDump (I)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_173812_ (ILnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$removeBrainDump$0 (ILnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_268823_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$doRender$4 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_268824_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$doRender$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_268825_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$doRender$3 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269077_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/doRender (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269122_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderPoiInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269312_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderBrainInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269385_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderTextOverPos (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269424_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderPath (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269464_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/highlightPoi (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269502_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderTextOverMob (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269509_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderGhostPoi (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269588_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;II)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderTextOverPoi (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;II)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/ (Ljava/util/UUID;ILjava/lang/String;Ljava/lang/String;IFFLnet/minecraft/core/Position;Ljava/lang/String;Lnet/minecraft/world/level/pathfinder/Path;ZI)V net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/ (Ljava/util/UUID;ILjava/lang/String;Ljava/lang/String;IFFLnet/minecraft/core/Position;Ljava/lang/String;Lnet/minecraft/world/level/pathfinder/Path;ZI)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/m_113322_ ()Ljava/util/UUID; net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/getUuid ()Ljava/util/UUID; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/m_113326_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/hasPoi (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/m_113331_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/hasPotentialPoi (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;I)V net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/ ()V net/minecraft/client/renderer/debug/ChunkBorderRenderer/ ()V +MD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/ChunkBorderRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/ChunkBorderRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/ChunkDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/ChunkDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/ (Lnet/minecraft/client/renderer/debug/ChunkDebugRenderer;Lnet/minecraft/client/server/IntegratedServer;DD)V net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/ (Lnet/minecraft/client/renderer/debug/ChunkDebugRenderer;Lnet/minecraft/client/server/IntegratedServer;DD)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/m_113393_ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/resources/ResourceKey;II)Ljava/util/Map; net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/lambda$new$0 (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/resources/ResourceKey;II)Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/CollisionBoxRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/CollisionBoxRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/DebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113434_ ()V net/minecraft/client/renderer/debug/DebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113446_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/debug/DebugRenderer/lambda$getTargetedEntity$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113448_ (Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; net/minecraft/client/renderer/debug/DebugRenderer/getTargetedEntity (Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113457_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;DDD)V net/minecraft/client/renderer/debug/DebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113506_ ()Z net/minecraft/client/renderer/debug/DebugRenderer/switchRenderChunkborder ()Z +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269008_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDDDDFFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269055_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;IIII)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;IIII)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269271_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDI)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDI)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269311_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269371_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;FFFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;FFFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269439_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIFZFZ)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIFZFZ)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269451_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;FFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;FFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269569_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_173830_ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackListener (Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_234509_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_234513_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackGameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_268826_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_268827_ (Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$1 (Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_269429_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_274003_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$3 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/ (JLnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/ (JLnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173861_ ()J net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/timeStamp ()J +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173862_ ()Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/gameEvent ()Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173863_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/position ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/hashCode ()I net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/hashCode ()I +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/m_173868_ ()Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/isExpired ()Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/toString ()Ljava/lang/String; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_142078_ ()I net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/getListenerRadius ()I +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_173875_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_234542_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/isExpired (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_234545_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/lambda$isExpired$0 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/ ()V net/minecraft/client/renderer/debug/GameTestDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_113515_ (JLjava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/GameTestDebugRenderer/lambda$render$0 (JLjava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_113524_ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;I)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/addMarker (Lnet/minecraft/core/BlockPos;ILjava/lang/String;I)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_268829_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/lambda$render$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_269452_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/renderMarker (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/GameTestDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/ (ILjava/lang/String;J)V net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/ (ILjava/lang/String;J)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113539_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getR ()F +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113540_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getG ()F +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113541_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getB ()F +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113542_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getA ()F +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_113548_ (ILjava/util/List;)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/addGoalSelector (ILjava/util/List;)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_173888_ (I)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/removeGoalSelector (I)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_268830_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/Integer;Ljava/util/List;)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/lambda$render$0 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/Integer;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;Z)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;Z)V +MD: net/minecraft/client/renderer/debug/HeightMapRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/HeightMapRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/HeightMapRenderer/m_113573_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lorg/joml/Vector3f; net/minecraft/client/renderer/debug/HeightMapRenderer/getColor (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/debug/HeightMapRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/HeightMapRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/HeightMapRenderer$1/ ()V net/minecraft/client/renderer/debug/HeightMapRenderer$1/ ()V +MD: net/minecraft/client/renderer/debug/LightDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/LightDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/LightDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/LightDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ ()V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/LightLayer;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/LightLayer;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280041_ (Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;Lnet/minecraft/core/Direction;III)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lambda$renderFaces$0 (Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;Lnet/minecraft/core/Direction;III)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280110_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderEdges (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280135_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDIIIIIILorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderEdge (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDIIIIIILorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280142_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/Direction;DDDIIILorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderFace (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/Direction;DDDIIILorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280198_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderFaces (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280371_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Vector4f;IIIIII)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lambda$renderEdges$1 (Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Vector4f;IIIIII)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/ ()V net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/ ()V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/ (Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/core/SectionPos;ILnet/minecraft/world/level/LightLayer;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/ (Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/core/SectionPos;ILnet/minecraft/world/level/LightLayer;)V +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/m_113596_ (JLnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/addUpdate (JLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/m_113605_ (Ljava/lang/Long;)Ljava/util/Map; net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/lambda$addUpdate$0 (Ljava/lang/Long;)Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/ ()V net/minecraft/client/renderer/debug/PathfindingRenderer/ ()V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_113611_ (ILnet/minecraft/world/level/pathfinder/Path;F)V net/minecraft/client/renderer/debug/PathfindingRenderer/addPath (ILnet/minecraft/world/level/pathfinder/Path;F)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_113634_ (Lnet/minecraft/core/BlockPos;DDD)F net/minecraft/client/renderer/debug/PathfindingRenderer/distanceToCamera (Lnet/minecraft/core/BlockPos;DDD)F +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_269027_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/pathfinder/Path;FZZDDD)V net/minecraft/client/renderer/debug/PathfindingRenderer/renderPath (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/pathfinder/Path;FZZDDD)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_269170_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/pathfinder/Path;DDD)V net/minecraft/client/renderer/debug/PathfindingRenderer/renderPathLine (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/pathfinder/Path;DDD)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/PathfindingRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/RaidDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_113663_ (Ljava/util/Collection;)V net/minecraft/client/renderer/debug/RaidDebugRenderer/setRaidCenters (Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_113665_ ()Lnet/minecraft/client/Camera; net/minecraft/client/renderer/debug/RaidDebugRenderer/getCamera ()Lnet/minecraft/client/Camera; +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_269099_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/RaidDebugRenderer/highlightRaidCenter (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_269257_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/debug/RaidDebugRenderer/renderTextOverBlock (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/RaidDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/SolidFaceRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/SolidFaceRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/SolidFaceRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/SolidFaceRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/StructureRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/StructureRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/StructureRenderer/m_113682_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/dimension/DimensionType;)V net/minecraft/client/renderer/debug/StructureRenderer/addBoundingBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/dimension/DimensionType;)V +MD: net/minecraft/client/renderer/debug/StructureRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/StructureRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/StructureRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/StructureRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/SupportBlockRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_285734_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/debug/SupportBlockRenderer/getBias (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_285847_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;DFFF)V net/minecraft/client/renderer/debug/SupportBlockRenderer/highlightPosition (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;DFFF)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_285890_ (Ljava/util/function/DoubleSupplier;Lnet/minecraft/world/entity/Entity;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;FFFLnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/SupportBlockRenderer/lambda$drawHighlights$2 (Ljava/util/function/DoubleSupplier;Lnet/minecraft/world/entity/Entity;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;FFFLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_286040_ ()D net/minecraft/client/renderer/debug/SupportBlockRenderer/lambda$render$0 ()D +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_286095_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/world/entity/Entity;Ljava/util/function/DoubleSupplier;FFF)V net/minecraft/client/renderer/debug/SupportBlockRenderer/drawHighlights (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/world/entity/Entity;Ljava/util/function/DoubleSupplier;FFF)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_286110_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/debug/SupportBlockRenderer/lambda$render$1 (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/SupportBlockRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/ ()V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_113709_ (Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/setVillageSection (Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_113711_ (Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/setNotVillageSection (Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_268831_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/lambda$render$0 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_269445_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/highlightVillageSection (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/WaterDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/WaterDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/WaterDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/WaterDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/ ()V net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/ ()V +MD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/m_113737_ (Lnet/minecraft/core/BlockPos;FFFFF)V net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/addPos (Lnet/minecraft/core/BlockPos;FFFFF)V +MD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HorseModel;F)V net/minecraft/client/renderer/entity/AbstractHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HorseModel;F)V +MD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/m_7546_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/AbstractHorseRenderer/scale (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/AbstractHorseRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/ ()V net/minecraft/client/renderer/entity/AbstractZombieRenderer/ ()V +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;)V net/minecraft/client/renderer/entity/AbstractZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;)V +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AbstractZombieRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AbstractZombieRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/Zombie;)Z net/minecraft/client/renderer/entity/AbstractZombieRenderer/isShaking (Lnet/minecraft/world/entity/monster/Zombie;)Z +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/AbstractZombieRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/AllayRenderer/ ()V net/minecraft/client/renderer/entity/AllayRenderer/ ()V +MD: net/minecraft/client/renderer/entity/AllayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/AllayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/allay/Allay;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AllayRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/allay/Allay;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AllayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/AllayRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_6086_ (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/AllayRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/ ()V net/minecraft/client/renderer/entity/ArmorStandRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ArmorStandRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ArmorStandRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/ArmorStand;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ArmorStandRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/ArmorStand;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_6512_ (Lnet/minecraft/world/entity/decoration/ArmorStand;)Z net/minecraft/client/renderer/entity/ArmorStandRenderer/shouldShowName (Lnet/minecraft/world/entity/decoration/ArmorStand;)Z +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/ArmorStandRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_6512_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/ArmorStandRenderer/shouldShowName (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7225_ (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/ArmorStandRenderer/getRenderType (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7225_ (Lnet/minecraft/world/entity/decoration/ArmorStand;ZZZ)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/ArmorStandRenderer/getRenderType (Lnet/minecraft/world/entity/decoration/ArmorStand;ZZZ)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ArmorStandRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7523_ (Lnet/minecraft/world/entity/decoration/ArmorStand;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ArmorStandRenderer/setupRotations (Lnet/minecraft/world/entity/decoration/ArmorStand;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/m_253099_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIFFIIII)V net/minecraft/client/renderer/entity/ArrowRenderer/vertex (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIFFIIII)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ArrowRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/AbstractArrow;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ArrowRenderer/render (Lnet/minecraft/world/entity/projectile/AbstractArrow;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/ ()V net/minecraft/client/renderer/entity/AxolotlRenderer/ ()V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/AxolotlRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/m_262768_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/entity/AxolotlRenderer/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AxolotlRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AxolotlRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BatRenderer/ ()V net/minecraft/client/renderer/entity/BatRenderer/ ()V +MD: net/minecraft/client/renderer/entity/BatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/BatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BatRenderer/m_5478_ (Lnet/minecraft/world/entity/ambient/Bat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BatRenderer/getTextureLocation (Lnet/minecraft/world/entity/ambient/Bat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/BatRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7523_ (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/BatRenderer/setupRotations (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7546_ (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/BatRenderer/scale (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/BatRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/BeeRenderer/ ()V net/minecraft/client/renderer/entity/BeeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/BeeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/BeeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/BeeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BeeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BeeRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BeeRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BlazeRenderer/ ()V net/minecraft/client/renderer/entity/BlazeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/BlazeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/BlazeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BlazeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Blaze;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BlazeRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Blaze;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/BlazeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_6086_ (Lnet/minecraft/world/entity/monster/Blaze;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/BlazeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/monster/Blaze;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/BoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V net/minecraft/client/renderer/entity/BoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_173937_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/client/renderer/entity/BoatRenderer/lambda$new$0 (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_234565_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Ljava/lang/String; net/minecraft/client/renderer/entity/BoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Ljava/lang/String; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_244734_ (ZLnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/renderer/entity/BoatRenderer/lambda$new$1 (ZLnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_245348_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Lnet/minecraft/client/model/ListModel; net/minecraft/client/renderer/entity/BoatRenderer/createBoatModel (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Lnet/minecraft/client/model/ListModel; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_5478_ (Lnet/minecraft/world/entity/vehicle/Boat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/vehicle/Boat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_7392_ (Lnet/minecraft/world/entity/vehicle/Boat;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/BoatRenderer/render (Lnet/minecraft/world/entity/vehicle/Boat;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/BoatRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/CamelRenderer/ ()V net/minecraft/client/renderer/entity/CamelRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CamelRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/CamelRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/CamelRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CamelRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CamelRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/camel/Camel;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CamelRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/camel/Camel;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CatRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Cat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CatRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Cat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CatRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CatRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CatRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7546_ (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CatRenderer/scale (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/ ()V net/minecraft/client/renderer/entity/CaveSpiderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CaveSpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CaveSpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CaveSpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/CaveSpider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CaveSpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/CaveSpider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/CaveSpider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CaveSpiderRenderer/scale (Lnet/minecraft/world/entity/monster/CaveSpider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CaveSpiderRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/ ()V net/minecraft/client/renderer/entity/ChestedHorseRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/ChestedHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChestedHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChestedHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChickenRenderer/ ()V net/minecraft/client/renderer/entity/ChickenRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ChickenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ChickenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChickenRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Chicken;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChickenRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Chicken;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Chicken;F)F net/minecraft/client/renderer/entity/ChickenRenderer/getBob (Lnet/minecraft/world/entity/animal/Chicken;F)F +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/ChickenRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/CodRenderer/ ()V net/minecraft/client/renderer/entity/CodRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CodRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CodRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CodRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CodRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CodRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Cod;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CodRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Cod;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CodRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CodRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CodRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Cod;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CodRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Cod;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CowRenderer/ ()V net/minecraft/client/renderer/entity/CowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CowRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Cow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CowRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Cow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CreeperRenderer/ ()V net/minecraft/client/renderer/entity/CreeperRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CreeperRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CreeperRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CreeperRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Creeper;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CreeperRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Creeper;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_6931_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/CreeperRenderer/getWhiteOverlayProgress (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_6931_ (Lnet/minecraft/world/entity/monster/Creeper;F)F net/minecraft/client/renderer/entity/CreeperRenderer/getWhiteOverlayProgress (Lnet/minecraft/world/entity/monster/Creeper;F)F +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Creeper;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CreeperRenderer/scale (Lnet/minecraft/world/entity/monster/Creeper;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CreeperRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_269592_ (Lnet/minecraft/world/entity/Display$RenderState;Lnet/minecraft/world/entity/Display;)Lorg/joml/Quaternionf; net/minecraft/client/renderer/entity/DisplayRenderer/calculateOrientation (Lnet/minecraft/world/entity/Display$RenderState;Lnet/minecraft/world/entity/Display;)Lorg/joml/Quaternionf; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Display;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Display;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Display;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer/render (Lnet/minecraft/world/entity/Display;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$1/ ()V net/minecraft/client/renderer/entity/DisplayRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display$BlockDisplay;)Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display$BlockDisplay;)Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display$BlockDisplay;Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display$BlockDisplay;Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display$ItemDisplay;)Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display$ItemDisplay;)Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display$ItemDisplay;Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display$ItemDisplay;Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_269268_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/splitLines (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display$TextDisplay;)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display$TextDisplay;)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display$TextDisplay;Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display$TextDisplay;Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DolphinRenderer/ ()V net/minecraft/client/renderer/entity/DolphinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/DolphinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DolphinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DolphinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DolphinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DolphinRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DolphinRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/ ()V net/minecraft/client/renderer/entity/DragonFireballRenderer/ ()V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DragonFireballRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_253219_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V net/minecraft/client/renderer/entity/DragonFireballRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DragonFireballRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/DragonFireball;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DragonFireballRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/DragonFireball;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_6086_ (Lnet/minecraft/world/entity/projectile/DragonFireball;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/DragonFireballRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/projectile/DragonFireball;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/DragonFireballRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DragonFireballRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/DragonFireball;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DragonFireballRenderer/render (Lnet/minecraft/world/entity/projectile/DragonFireball;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/ ()V net/minecraft/client/renderer/entity/DrownedRenderer/ ()V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DrownedRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DrownedRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DrownedRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/DrownedRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/m_7523_ (Lnet/minecraft/world/entity/monster/Drowned;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/DrownedRenderer/setupRotations (Lnet/minecraft/world/entity/monster/Drowned;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/ ()V net/minecraft/client/renderer/entity/ElderGuardianRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ElderGuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ElderGuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ElderGuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/ElderGuardianRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Guardian;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/ElderGuardianRenderer/scale (Lnet/minecraft/world/entity/monster/Guardian;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/ ()V net/minecraft/client/renderer/entity/EndCrystalRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EndCrystalRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_114158_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;F)F net/minecraft/client/renderer/entity/EndCrystalRenderer/getY (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;F)F +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_173971_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/EndCrystalRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndCrystalRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5478_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndCrystalRenderer/getTextureLocation (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EndCrystalRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5523_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EndCrystalRenderer/shouldRender (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_7392_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndCrystalRenderer/render (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndCrystalRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/ ()V net/minecraft/client/renderer/entity/EnderDragonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EnderDragonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_114187_ (FFFFILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/renderCrystalBeams (FFFFILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_173974_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/EnderDragonRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_252736_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex4 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_252912_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex2 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_253012_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex3 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_253170_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex01 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_5478_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EnderDragonRenderer/getTextureLocation (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EnderDragonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_7392_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/render (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_173977_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/renderSide (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6839_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/prepareMobModel (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6973_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFFFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/setupAnim (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFFFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/ ()V net/minecraft/client/renderer/entity/EndermanRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EndermanRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermanRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/EnderMan;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermanRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/EnderMan;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/EnderMan;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/monster/EnderMan;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7860_ (Lnet/minecraft/world/entity/monster/EnderMan;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/EndermanRenderer/getRenderOffset (Lnet/minecraft/world/entity/monster/EnderMan;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/EndermanRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/ ()V net/minecraft/client/renderer/entity/EndermiteRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EndermiteRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermiteRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Endermite;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermiteRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Endermite;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_6441_ (Lnet/minecraft/world/entity/monster/Endermite;)F net/minecraft/client/renderer/entity/EndermiteRenderer/getFlipDegrees (Lnet/minecraft/world/entity/monster/Endermite;)F +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/EndermiteRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/ ()V net/minecraft/client/renderer/entity/EntityRenderDispatcher/ ()V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/Options;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/Options;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114377_ ()Z net/minecraft/client/renderer/entity/EntityRenderDispatcher/shouldRenderHitBoxes ()Z +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114378_ (DDD)D net/minecraft/client/renderer/entity/EntityRenderDispatcher/distanceToSqr (DDD)D +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114382_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderDispatcher/getRenderer (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114384_ (Lnet/minecraft/world/entity/Entity;DDDFFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/render (Lnet/minecraft/world/entity/Entity;DDDFFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114394_ (Lnet/minecraft/world/entity/Entity;F)I net/minecraft/client/renderer/entity/EntityRenderDispatcher/getPackedLightCoords (Lnet/minecraft/world/entity/Entity;F)I +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114397_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EntityRenderDispatcher/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114406_ (Lnet/minecraft/world/level/Level;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114408_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/prepare (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114414_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFF)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/fireVertex (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFF)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114422_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFF)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/shadowVertex (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFF)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114441_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderHitbox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114453_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderFlame (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114457_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;FFLnet/minecraft/world/level/LevelReader;F)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderShadow (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;FFLnet/minecraft/world/level/LevelReader;F)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114468_ (Z)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/setRenderShadow (Z)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114471_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/entity/EntityRenderDispatcher/distanceToSqr (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114473_ (Z)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/setRenderHitBoxes (Z)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_234586_ ()Lnet/minecraft/client/renderer/ItemInHandRenderer; net/minecraft/client/renderer/entity/EntityRenderDispatcher/getItemInHandRenderer ()Lnet/minecraft/client/renderer/ItemInHandRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_252923_ (Lorg/joml/Quaternionf;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/overrideCameraOrientation (Lorg/joml/Quaternionf;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_253208_ ()Lorg/joml/Quaternionf; net/minecraft/client/renderer/entity/EntityRenderDispatcher/cameraOrientation ()Lorg/joml/Quaternionf; +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_277056_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;DDDFF)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderBlockShadow (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;DDDFF)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_114481_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/renderer/entity/EntityRenderer/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_114505_ (Lnet/minecraft/world/entity/Entity;F)I net/minecraft/client/renderer/entity/EntityRenderer/getPackedLightCoords (Lnet/minecraft/world/entity/Entity;F)I +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_114508_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/EntityRenderer/getSkyLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EntityRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/EntityRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/EntityRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_7649_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EntityRenderer/renderNameTag (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/EntityRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider/m_174009_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRendererProvider/create (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/renderer/entity/EntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174022_ ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getEntityRenderDispatcher ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174023_ (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/bakeLayer (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174025_ ()Lnet/minecraft/client/renderer/entity/ItemRenderer; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getItemRenderer ()Lnet/minecraft/client/renderer/entity/ItemRenderer; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174026_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getResourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174027_ ()Lnet/minecraft/client/model/geom/EntityModelSet; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getModelSet ()Lnet/minecraft/client/model/geom/EntityModelSet; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174028_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_234597_ ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getBlockRenderDispatcher ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_234598_ ()Lnet/minecraft/client/renderer/ItemInHandRenderer; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getItemInHandRenderer ()Lnet/minecraft/client/renderer/ItemInHandRenderer; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_266367_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/renderer/entity/EntityRenderers/ ()V net/minecraft/client/renderer/entity/EntityRenderers/ ()V +MD: net/minecraft/client/renderer/entity/EntityRenderers/ ()V net/minecraft/client/renderer/entity/EntityRenderers/ ()V +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174035_ ()Z net/minecraft/client/renderer/entity/EntityRenderers/validateRegistrations ()Z +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174036_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V net/minecraft/client/renderer/entity/EntityRenderers/register (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174049_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; net/minecraft/client/renderer/entity/EntityRenderers/createEntityRenderers (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174051_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; net/minecraft/client/renderer/entity/EntityRenderers/createPlayerRenderers (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174053_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$23 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174055_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$22 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174057_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$21 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174059_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$20 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174061_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$19 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174063_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$18 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174065_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$17 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174067_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$16 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174069_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$15 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174071_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$14 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174073_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$13 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174075_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$12 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174077_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$11 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174079_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$10 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174081_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$9 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174083_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$8 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174085_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$7 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174087_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$6 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174089_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$5 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174091_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$4 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174093_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$2 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174095_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$1 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174097_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$0 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_234604_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Ljava/lang/String;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V net/minecraft/client/renderer/entity/EntityRenderers/lambda$createPlayerRenderers$27 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Ljava/lang/String;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_234609_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$25 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_234611_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$24 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_244735_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$3 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_257087_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V net/minecraft/client/renderer/entity/EntityRenderers/lambda$createEntityRenderers$26 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/ ()V net/minecraft/client/renderer/entity/EvokerFangsRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EvokerFangsRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerFangsRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/EvokerFangs;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerFangsRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/EvokerFangs;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EvokerFangsRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/EvokerFangs;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EvokerFangsRenderer/render (Lnet/minecraft/world/entity/projectile/EvokerFangs;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer/ ()V net/minecraft/client/renderer/entity/EvokerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EvokerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EvokerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/ (Lnet/minecraft/client/renderer/entity/EvokerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/EvokerRenderer$1/ (Lnet/minecraft/client/renderer/entity/EvokerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/EvokerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/EvokerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/SpellcasterIllager;FFFFFF)V net/minecraft/client/renderer/entity/EvokerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/SpellcasterIllager;FFFFFF)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ ()V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_252863_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFIIIFFI)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFIIIFFI)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_5478_ (Lnet/minecraft/world/entity/ExperienceOrb;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getTextureLocation (Lnet/minecraft/world/entity/ExperienceOrb;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_6086_ (Lnet/minecraft/world/entity/ExperienceOrb;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/ExperienceOrb;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_7392_ (Lnet/minecraft/world/entity/ExperienceOrb;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/render (Lnet/minecraft/world/entity/ExperienceOrb;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FallingBlockRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FallingBlockRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_5478_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FallingBlockRenderer/getTextureLocation (Lnet/minecraft/world/entity/item/FallingBlockEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FallingBlockRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_7392_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FallingBlockRenderer/render (Lnet/minecraft/world/entity/item/FallingBlockEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FireworkEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FireworkEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FireworkEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FireworkEntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FireworkEntityRenderer/render (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/ ()V net/minecraft/client/renderer/entity/FishingHookRenderer/ ()V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FishingHookRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_114690_ (II)F net/minecraft/client/renderer/entity/FishingHookRenderer/fraction (II)F +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_174118_ (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;FF)V net/minecraft/client/renderer/entity/FishingHookRenderer/stringVertex (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;FF)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_253251_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V net/minecraft/client/renderer/entity/FishingHookRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/FishingHook;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FishingHookRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/FishingHook;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FishingHookRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FishingHookRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/FishingHook;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FishingHookRenderer/render (Lnet/minecraft/world/entity/projectile/FishingHook;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FoxRenderer/ ()V net/minecraft/client/renderer/entity/FoxRenderer/ ()V +MD: net/minecraft/client/renderer/entity/FoxRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FoxRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FoxRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FoxRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/FoxRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Fox;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/FoxRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Fox;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/FrogRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FrogRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FrogRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FrogRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FrogRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FrogRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GhastRenderer/ ()V net/minecraft/client/renderer/entity/GhastRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GhastRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/GhastRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GhastRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Ghast;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GhastRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Ghast;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Ghast;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GhastRenderer/scale (Lnet/minecraft/world/entity/monster/Ghast;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GhastRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/ ()V net/minecraft/client/renderer/entity/GiantMobRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;F)V net/minecraft/client/renderer/entity/GiantMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;F)V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GiantMobRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Giant;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GiantMobRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Giant;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Giant;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GiantMobRenderer/scale (Lnet/minecraft/world/entity/monster/Giant;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GiantMobRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/ ()V net/minecraft/client/renderer/entity/GlowSquidRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V net/minecraft/client/renderer/entity/GlowSquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GlowSquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_5478_ (Lnet/minecraft/world/entity/GlowSquid;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GlowSquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/GlowSquid;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GlowSquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/GlowSquidRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_6086_ (Lnet/minecraft/world/entity/GlowSquid;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/GlowSquidRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/GlowSquid;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/GoatRenderer/ ()V net/minecraft/client/renderer/entity/GoatRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/GoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/GoatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GoatRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/ ()V net/minecraft/client/renderer/entity/GuardianRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_114802_ (Lnet/minecraft/world/entity/LivingEntity;DF)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/GuardianRenderer/getPosition (Lnet/minecraft/world/entity/LivingEntity;DF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_252738_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFFIIIFF)V net/minecraft/client/renderer/entity/GuardianRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFFIIIFF)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5523_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/GuardianRenderer/shouldRender (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5523_ (Lnet/minecraft/world/entity/monster/Guardian;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/GuardianRenderer/shouldRender (Lnet/minecraft/world/entity/monster/Guardian;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/GuardianRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Guardian;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/monster/Guardian;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/HoglinRenderer/ ()V net/minecraft/client/renderer/entity/HoglinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/HoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/HoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/client/renderer/entity/HoglinRenderer/isShaking (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/HoglinRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/HorseRenderer/ ()V net/minecraft/client/renderer/entity/HorseRenderer/ ()V +MD: net/minecraft/client/renderer/entity/HorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/HorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/HorseRenderer/m_114873_ (Ljava/util/EnumMap;)V net/minecraft/client/renderer/entity/HorseRenderer/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/renderer/entity/HorseRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/Horse;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/Horse;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HorseRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;FFFF)V net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;FFFF)V +MD: net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;F)V net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;F)V +MD: net/minecraft/client/renderer/entity/HuskRenderer/ ()V net/minecraft/client/renderer/entity/HuskRenderer/ ()V +MD: net/minecraft/client/renderer/entity/HuskRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/HuskRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HuskRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HuskRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/HuskRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Zombie;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/HuskRenderer/scale (Lnet/minecraft/world/entity/monster/Zombie;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/IllagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/IllagerModel;F)V net/minecraft/client/renderer/entity/IllagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/IllagerModel;F)V +MD: net/minecraft/client/renderer/entity/IllagerRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/IllagerRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/IllagerRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/AbstractIllager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/IllagerRenderer/scale (Lnet/minecraft/world/entity/monster/AbstractIllager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/ ()V net/minecraft/client/renderer/entity/IllusionerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/IllusionerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IllusionerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Illusioner;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IllusionerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Illusioner;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5933_ (Lnet/minecraft/world/entity/monster/Illusioner;)Z net/minecraft/client/renderer/entity/IllusionerRenderer/isBodyVisible (Lnet/minecraft/world/entity/monster/Illusioner;)Z +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5933_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/IllusionerRenderer/isBodyVisible (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Illusioner;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/monster/Illusioner;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/ (Lnet/minecraft/client/renderer/entity/IllusionerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/ (Lnet/minecraft/client/renderer/entity/IllusionerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Illusioner;FFFFFF)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Illusioner;FFFFFF)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/ ()V net/minecraft/client/renderer/entity/IronGolemRenderer/ ()V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/IronGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IronGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/IronGolem;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IronGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/IronGolem;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/IronGolemRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/IronGolem;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/IronGolemRenderer/setupRotations (Lnet/minecraft/world/entity/animal/IronGolem;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ItemEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_115042_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/client/renderer/entity/ItemEntityRenderer/getRenderAmount (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemEntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/item/ItemEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemEntityRenderer/render (Lnet/minecraft/world/entity/item/ItemEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/ ()V net/minecraft/client/renderer/entity/ItemFrameRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ItemFrameRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_174208_ (Lnet/minecraft/world/entity/decoration/ItemFrame;II)I net/minecraft/client/renderer/entity/ItemFrameRenderer/getLightVal (Lnet/minecraft/world/entity/decoration/ItemFrame;II)I +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_174212_ (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/renderer/entity/ItemFrameRenderer/getFrameModelResourceLoc (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemFrameRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/ItemFrame;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemFrameRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/ItemFrame;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ItemFrameRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6086_ (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ItemFrameRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6512_ (Lnet/minecraft/world/entity/decoration/ItemFrame;)Z net/minecraft/client/renderer/entity/ItemFrameRenderer/shouldShowName (Lnet/minecraft/world/entity/decoration/ItemFrame;)Z +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/ItemFrameRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7392_ (Lnet/minecraft/world/entity/decoration/ItemFrame;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/render (Lnet/minecraft/world/entity/decoration/ItemFrame;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7649_ (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/renderNameTag (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7649_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/renderNameTag (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ItemFrameRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7860_ (Lnet/minecraft/world/entity/decoration/ItemFrame;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ItemFrameRenderer/getRenderOffset (Lnet/minecraft/world/entity/decoration/ItemFrame;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/ItemRenderer/ ()V net/minecraft/client/renderer/entity/ItemRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ItemRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/resources/model/ModelManager;Lnet/minecraft/client/color/item/ItemColors;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;)V net/minecraft/client/renderer/entity/ItemRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/resources/model/ModelManager;Lnet/minecraft/client/color/item/ItemColors;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115103_ ()Lnet/minecraft/client/renderer/ItemModelShaper; net/minecraft/client/renderer/entity/ItemRenderer/getItemModelShaper ()Lnet/minecraft/client/renderer/ItemModelShaper; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115143_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/renderer/entity/ItemRenderer/render (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115162_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/renderer/entity/ItemRenderer/renderQuadList (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115180_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getCompassFoilBuffer (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115184_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getArmorFoilBuffer (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115189_ (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/entity/ItemRenderer/renderModelLists (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115207_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getCompassFoilBufferDirect (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115211_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getFoilBuffer (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115222_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getFoilBufferDirect (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_174264_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/entity/ItemRenderer/getModel (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_269128_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;IILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;I)V net/minecraft/client/renderer/entity/ItemRenderer/renderStatic (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;IILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;I)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_269491_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;III)V net/minecraft/client/renderer/entity/ItemRenderer/renderStatic (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;III)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_285827_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/renderer/entity/ItemRenderer/hasAnimatedTexture (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/entity/ItemRenderer/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/ ()V net/minecraft/client/renderer/entity/LeashKnotRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/LeashKnotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LeashKnotRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LeashKnotRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LeashKnotRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_7392_ (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LeashKnotRenderer/render (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/LightningBoltRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_115272_ (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFIFFFFFFFZZZZ)V net/minecraft/client/renderer/entity/LightningBoltRenderer/quad (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFIFFFFFFFZZZZ)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LightningBoltRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_5478_ (Lnet/minecraft/world/entity/LightningBolt;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LightningBoltRenderer/getTextureLocation (Lnet/minecraft/world/entity/LightningBolt;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_7392_ (Lnet/minecraft/world/entity/LightningBolt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LightningBoltRenderer/render (Lnet/minecraft/world/entity/LightningBolt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LightningBoltRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/ ()V net/minecraft/client/renderer/entity/LivingEntityRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V net/minecraft/client/renderer/entity/LivingEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115326_ (Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/addLayer (Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115328_ (Lnet/minecraft/core/Direction;)F net/minecraft/client/renderer/entity/LivingEntityRenderer/sleepDirectionToRotation (Lnet/minecraft/core/Direction;)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115338_ (Lnet/minecraft/world/entity/LivingEntity;F)I net/minecraft/client/renderer/entity/LivingEntityRenderer/getOverlayCoords (Lnet/minecraft/world/entity/LivingEntity;F)I +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115342_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getAttackAnim (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_194453_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/isEntityUpsideDown (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_5933_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/isBodyVisible (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6512_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/shouldShowName (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6931_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getWhiteOverlayProgress (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7200_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/LivingEntityRenderer/getModel ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7225_ (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/LivingEntityRenderer/getRenderType (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LivingEntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LivingEntityRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/LivingEntityRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/LivingEntityRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer$1/ ()V net/minecraft/client/renderer/entity/LivingEntityRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/LlamaRenderer/ ()V net/minecraft/client/renderer/entity/LlamaRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LlamaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/LlamaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/LlamaRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/Llama;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/Llama;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaRenderer$1/ ()V net/minecraft/client/renderer/entity/LlamaRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/ ()V net/minecraft/client/renderer/entity/LlamaSpitRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/LlamaSpitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/LlamaSpit;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaSpitRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/LlamaSpit;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaSpitRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LlamaSpitRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/LlamaSpit;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LlamaSpitRenderer/render (Lnet/minecraft/world/entity/projectile/LlamaSpit;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/ ()V net/minecraft/client/renderer/entity/MagmaCubeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/MagmaCube;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MagmaCubeRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/MagmaCube;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MagmaCubeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_6086_ (Lnet/minecraft/world/entity/monster/MagmaCube;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/MagmaCubeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/monster/MagmaCube;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/MagmaCubeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/MagmaCube;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/monster/MagmaCube;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/MagmaCube;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/scale (Lnet/minecraft/world/entity/monster/MagmaCube;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/ ()V net/minecraft/client/renderer/entity/MinecartRenderer/ ()V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/MinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_5478_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MinecartRenderer/getTextureLocation (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MinecartRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_7002_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MinecartRenderer/renderMinecartContents (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_7392_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MinecartRenderer/render (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MinecartRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V net/minecraft/client/renderer/entity/MobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_115461_ (Lnet/minecraft/world/entity/Mob;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/entity/MobRenderer/renderLeash (Lnet/minecraft/world/entity/Mob;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_174307_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FFFIIIIFFFFIZ)V net/minecraft/client/renderer/entity/MobRenderer/addVertexPair (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FFFIIIIFFFFIZ)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_5523_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/MobRenderer/shouldRender (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/MobRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_6512_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/client/renderer/entity/MobRenderer/shouldShowName (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/MobRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_6512_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/MobRenderer/shouldShowName (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MobRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MobRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MobRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/ ()V net/minecraft/client/renderer/entity/MushroomCowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/MushroomCowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/m_115515_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/entity/MushroomCowRenderer/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MushroomCowRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MushroomCowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/NoopRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/NoopRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/NoopRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/NoopRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/OcelotRenderer/ ()V net/minecraft/client/renderer/entity/OcelotRenderer/ ()V +MD: net/minecraft/client/renderer/entity/OcelotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/OcelotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/OcelotRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/OcelotRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/OcelotRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Ocelot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/OcelotRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Ocelot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PaintingRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PaintingRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_115558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/decoration/Painting;IILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/renderer/entity/PaintingRenderer/renderPainting (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/decoration/Painting;IILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_253084_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFIIII)V net/minecraft/client/renderer/entity/PaintingRenderer/vertex (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFIIII)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PaintingRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/Painting;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PaintingRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/Painting;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_7392_ (Lnet/minecraft/world/entity/decoration/Painting;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PaintingRenderer/render (Lnet/minecraft/world/entity/decoration/Painting;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PaintingRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/ ()V net/minecraft/client/renderer/entity/PandaRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PandaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PandaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_115624_ (FFIFF)F net/minecraft/client/renderer/entity/PandaRenderer/getAngle (FFIFF)F +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_115646_ (Ljava/util/EnumMap;)V net/minecraft/client/renderer/entity/PandaRenderer/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PandaRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PandaRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PandaRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Panda;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PandaRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Panda;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ParrotRenderer/ ()V net/minecraft/client/renderer/entity/ParrotRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ParrotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ParrotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_262360_ (Lnet/minecraft/world/entity/animal/Parrot$Variant;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ParrotRenderer/getVariantTexture (Lnet/minecraft/world/entity/animal/Parrot$Variant;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ParrotRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ParrotRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Parrot;F)F net/minecraft/client/renderer/entity/ParrotRenderer/getBob (Lnet/minecraft/world/entity/animal/Parrot;F)F +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/ParrotRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/ParrotRenderer$1/ ()V net/minecraft/client/renderer/entity/ParrotRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/ ()V net/minecraft/client/renderer/entity/PhantomRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PhantomRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PhantomRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PhantomRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PhantomRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7523_ (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PhantomRenderer/setupRotations (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PhantomRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PhantomRenderer/scale (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PigRenderer/ ()V net/minecraft/client/renderer/entity/PigRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PigRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PigRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PigRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PigRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PigRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Pig;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PigRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Pig;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/ ()V net/minecraft/client/renderer/entity/PiglinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PiglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)V net/minecraft/client/renderer/entity/PiglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)V +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_174349_ (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)Lnet/minecraft/client/model/PiglinModel; net/minecraft/client/renderer/entity/PiglinRenderer/createModel (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)Lnet/minecraft/client/model/PiglinModel; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PiglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PiglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5936_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/client/renderer/entity/PiglinRenderer/isShaking (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/PiglinRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/PillagerRenderer/ ()V net/minecraft/client/renderer/entity/PillagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Pillager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Pillager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/ ()V net/minecraft/client/renderer/entity/PolarBearRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PolarBearRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PolarBearRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/PolarBear;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PolarBearRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/PolarBear;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_7546_ (Lnet/minecraft/world/entity/animal/PolarBear;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PolarBearRenderer/scale (Lnet/minecraft/world/entity/animal/PolarBear;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PolarBearRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/ ()V net/minecraft/client/renderer/entity/PufferfishRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PufferfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Pufferfish;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PufferfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Pufferfish;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PufferfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/Pufferfish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/animal/Pufferfish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PufferfishRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Pufferfish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PufferfishRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Pufferfish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/RabbitRenderer/ ()V net/minecraft/client/renderer/entity/RabbitRenderer/ ()V +MD: net/minecraft/client/renderer/entity/RabbitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/RabbitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/RabbitRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RabbitRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RabbitRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RabbitRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RabbitRenderer$1/ ()V net/minecraft/client/renderer/entity/RabbitRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/RavagerRenderer/ ()V net/minecraft/client/renderer/entity/RavagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/RavagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/RavagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/RavagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RavagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RavagerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Ravager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RavagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Ravager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RenderLayerParent/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RenderLayerParent/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RenderLayerParent/m_7200_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/RenderLayerParent/getModel ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/SalmonRenderer/ ()V net/minecraft/client/renderer/entity/SalmonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SalmonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SalmonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Salmon;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SalmonRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Salmon;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SalmonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SalmonRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Salmon;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SalmonRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Salmon;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/SheepRenderer/ ()V net/minecraft/client/renderer/entity/SheepRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SheepRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SheepRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SheepRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SheepRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SheepRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Sheep;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SheepRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Sheep;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ ()V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/ShulkerBullet;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/ShulkerBullet;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_6086_ (Lnet/minecraft/world/entity/projectile/ShulkerBullet;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/projectile/ShulkerBullet;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/ShulkerBullet;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/render (Lnet/minecraft/world/entity/projectile/ShulkerBullet;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/ ()V net/minecraft/client/renderer/entity/ShulkerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ShulkerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_115876_ (I)[Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/lambda$static$1 (I)[Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_115918_ (Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/lambda$static$0 (Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_174371_ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/entity/ShulkerRenderer/lambda$shouldRender$2 (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_174375_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/getTextureLocation (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5523_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/ShulkerRenderer/shouldRender (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5523_ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/ShulkerRenderer/shouldRender (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/ShulkerRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ShulkerRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7523_ (Lnet/minecraft/world/entity/monster/Shulker;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ShulkerRenderer/setupRotations (Lnet/minecraft/world/entity/monster/Shulker;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ShulkerRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7860_ (Lnet/minecraft/world/entity/monster/Shulker;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ShulkerRenderer/getRenderOffset (Lnet/minecraft/world/entity/monster/Shulker;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/ ()V net/minecraft/client/renderer/entity/SilverfishRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SilverfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Silverfish;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SilverfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Silverfish;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SilverfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_6441_ (Lnet/minecraft/world/entity/monster/Silverfish;)F net/minecraft/client/renderer/entity/SilverfishRenderer/getFlipDegrees (Lnet/minecraft/world/entity/monster/Silverfish;)F +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/SilverfishRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/ ()V net/minecraft/client/renderer/entity/SkeletonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Z net/minecraft/client/renderer/entity/SkeletonRenderer/isShaking (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Z +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/SkeletonRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/SlimeRenderer/ ()V net/minecraft/client/renderer/entity/SlimeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SlimeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SlimeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Slime;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SlimeRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Slime;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Slime;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/monster/Slime;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/SlimeRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Slime;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/SlimeRenderer/scale (Lnet/minecraft/world/entity/monster/Slime;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/SnifferRenderer/ ()V net/minecraft/client/renderer/entity/SnifferRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SnifferRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SnifferRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SnifferRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnifferRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SnifferRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnifferRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/ ()V net/minecraft/client/renderer/entity/SnowGolemRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SnowGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/SnowGolem;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnowGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/SnowGolem;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnowGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/ ()V net/minecraft/client/renderer/entity/SpectralArrowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SpectralArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpectralArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/SpectralArrow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpectralArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/SpectralArrow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpiderRenderer/ ()V net/minecraft/client/renderer/entity/SpiderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_6441_ (Lnet/minecraft/world/entity/monster/Spider;)F net/minecraft/client/renderer/entity/SpiderRenderer/getFlipDegrees (Lnet/minecraft/world/entity/monster/Spider;)F +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/SpiderRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/SquidRenderer/ ()V net/minecraft/client/renderer/entity/SquidRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V net/minecraft/client/renderer/entity/SquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Squid;F)F net/minecraft/client/renderer/entity/SquidRenderer/getBob (Lnet/minecraft/world/entity/animal/Squid;F)F +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/SquidRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SquidRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Squid;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SquidRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Squid;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/StrayRenderer/ ()V net/minecraft/client/renderer/entity/StrayRenderer/ ()V +MD: net/minecraft/client/renderer/entity/StrayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/StrayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/StrayRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StrayRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StrayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StrayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StriderRenderer/ ()V net/minecraft/client/renderer/entity/StriderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/StriderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/StriderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StriderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Strider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StriderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Strider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/Strider;)Z net/minecraft/client/renderer/entity/StriderRenderer/isShaking (Lnet/minecraft/world/entity/monster/Strider;)Z +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/StriderRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/StriderRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Strider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/StriderRenderer/scale (Lnet/minecraft/world/entity/monster/Strider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/ ()V net/minecraft/client/renderer/entity/TadpoleRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TadpoleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TadpoleRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/frog/Tadpole;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TadpoleRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/frog/Tadpole;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FZ)V net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FZ)V +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ThrownItemRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ThrownItemRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ThrownItemRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/ ()V net/minecraft/client/renderer/entity/ThrownTridentRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ThrownTridentRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ThrownTridentRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/ThrownTrident;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ThrownTridentRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/ThrownTrident;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/ThrownTrident;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ThrownTridentRenderer/render (Lnet/minecraft/world/entity/projectile/ThrownTrident;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ThrownTridentRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/ ()V net/minecraft/client/renderer/entity/TippableArrowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TippableArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TippableArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/Arrow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TippableArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/Arrow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TntMinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/m_234661_ (Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZ)V net/minecraft/client/renderer/entity/TntMinecartRenderer/renderWhiteSolidBlock (Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZ)V +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/m_7002_ (Lnet/minecraft/world/entity/vehicle/MinecartTNT;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntMinecartRenderer/renderMinecartContents (Lnet/minecraft/world/entity/vehicle/MinecartTNT;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/m_7002_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntMinecartRenderer/renderMinecartContents (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TntRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TntRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TntRenderer/m_5478_ (Lnet/minecraft/world/entity/item/PrimedTnt;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TntRenderer/getTextureLocation (Lnet/minecraft/world/entity/item/PrimedTnt;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TntRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TntRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TntRenderer/m_7392_ (Lnet/minecraft/world/entity/item/PrimedTnt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntRenderer/render (Lnet/minecraft/world/entity/item/PrimedTnt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TntRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/ ()V net/minecraft/client/renderer/entity/TropicalFishRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TropicalFishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TropicalFishRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/TropicalFish;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TropicalFishRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/TropicalFish;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/TropicalFish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/animal/TropicalFish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/TropicalFishRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/TropicalFish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/TropicalFishRenderer/setupRotations (Lnet/minecraft/world/entity/animal/TropicalFish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer$1/ ()V net/minecraft/client/renderer/entity/TropicalFishRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/ ()V net/minecraft/client/renderer/entity/TurtleRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TurtleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TurtleRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TurtleRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/Turtle;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/animal/Turtle;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/ ()V net/minecraft/client/renderer/entity/UndeadHorseRenderer/ ()V +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/UndeadHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/UndeadHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/UndeadHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VexRenderer/ ()V net/minecraft/client/renderer/entity/VexRenderer/ ()V +MD: net/minecraft/client/renderer/entity/VexRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/VexRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/VexRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VexRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VexRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VexRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VexRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/VexRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/VexRenderer/m_6086_ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/VexRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/VillagerRenderer/ ()V net/minecraft/client/renderer/entity/VillagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/VillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/VillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/VillagerRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_7546_ (Lnet/minecraft/world/entity/npc/Villager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/VillagerRenderer/scale (Lnet/minecraft/world/entity/npc/Villager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/ ()V net/minecraft/client/renderer/entity/VindicatorRenderer/ ()V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/VindicatorRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VindicatorRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VindicatorRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/ (Lnet/minecraft/client/renderer/entity/VindicatorRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/ (Lnet/minecraft/client/renderer/entity/VindicatorRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Vindicator;FFFFFF)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Vindicator;FFFFFF)V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/ ()V net/minecraft/client/renderer/entity/WanderingTraderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WanderingTraderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_5478_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WanderingTraderRenderer/getTextureLocation (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WanderingTraderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WanderingTraderRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_7546_ (Lnet/minecraft/world/entity/npc/WanderingTrader;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WanderingTraderRenderer/scale (Lnet/minecraft/world/entity/npc/WanderingTrader;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WardenRenderer/ ()V net/minecraft/client/renderer/entity/WardenRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WardenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WardenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234792_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$4 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234796_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$3 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234800_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$2 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234804_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$1 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234808_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$0 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WardenRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WardenRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitchRenderer/ ()V net/minecraft/client/renderer/entity/WitchRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitchRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitchRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitchRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Witch;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitchRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Witch;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Witch;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/monster/Witch;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Witch;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitchRenderer/scale (Lnet/minecraft/world/entity/monster/Witch;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitchRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/ ()V net/minecraft/client/renderer/entity/WitherBossRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitherBossRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherBossRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_5478_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherBossRenderer/getTextureLocation (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherBossRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_6086_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherBossRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherBossRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_7546_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherBossRenderer/scale (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ ()V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/scale (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/ ()V net/minecraft/client/renderer/entity/WitherSkullRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitherSkullRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_174450_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/WitherSkullRenderer/createSkullLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkullRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/WitherSkull;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkullRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/WitherSkull;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherSkullRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_6086_ (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherSkullRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/WitherSkull;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitherSkullRenderer/render (Lnet/minecraft/world/entity/projectile/WitherSkull;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitherSkullRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/ ()V net/minecraft/client/renderer/entity/WolfRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WolfRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WolfRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WolfRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WolfRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Wolf;F)F net/minecraft/client/renderer/entity/WolfRenderer/getBob (Lnet/minecraft/world/entity/animal/Wolf;F)F +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/WolfRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/Wolf;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/animal/Wolf;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/ ()V net/minecraft/client/renderer/entity/ZoglinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ZoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zoglin;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zoglin;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ ()V net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZombieVillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/ZombieVillager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZombieVillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/ZombieVillager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/ZombieVillager;)Z net/minecraft/client/renderer/entity/ZombieVillagerRenderer/isShaking (Lnet/minecraft/world/entity/monster/ZombieVillager;)Z +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/ZombieVillagerRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/layers/ArrowLayer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V net/minecraft/client/renderer/entity/layers/ArrowLayer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/ArrowLayer/m_5558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V net/minecraft/client/renderer/entity/layers/ArrowLayer/renderStuckItem (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V +MD: net/minecraft/client/renderer/entity/layers/ArrowLayer/m_7040_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/renderer/entity/layers/ArrowLayer/numStuck (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ ()V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/m_253245_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FIFFI)V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FIFFI)V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/m_5558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/renderStuckItem (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/m_7040_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/renderer/entity/layers/BeeStingerLayer/numStuck (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/renderer/entity/layers/CapeLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/CapeLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/CapeLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CapeLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CapeLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V net/minecraft/client/renderer/entity/layers/CapeLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V +MD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/EnderMan;FFFFFF)V net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/EnderMan;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/ ()V net/minecraft/client/renderer/entity/layers/CatCollarLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/CatCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CatCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Cat;FFFFFF)V net/minecraft/client/renderer/entity/layers/CatCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Cat;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ ()V net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/m_7029_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/getTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/m_7193_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/model ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/m_7631_ (F)F net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/xOffset (F)F +MD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;FFFLnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;FFFLnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/m_174483_ (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/translateToHead (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Dolphin;FFFFFF)V net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Dolphin;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ ()V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Drowned;FFFFFF)V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Drowned;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/ ()V net/minecraft/client/renderer/entity/layers/ElytraLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/ElytraLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ElytraLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ElytraLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ ()V net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/EnderEyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_7029_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/getTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_7193_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/model ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_7631_ (F)F net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/xOffset (F)F +MD: net/minecraft/client/renderer/entity/layers/EyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/EyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/EyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/EyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/EyesLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/EyesLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Fox;FFFFFF)V net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Fox;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/HorseArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ ()V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/m_117068_ (Ljava/util/EnumMap;)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ ()V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/resources/model/ModelManager;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/resources/model/ModelManager;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117078_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/client/model/HumanoidModel; net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/getArmorModel (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/client/model/HumanoidModel; +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117080_ (Lnet/minecraft/world/item/ArmorItem;ZLjava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/getArmorLocation (Lnet/minecraft/world/item/ArmorItem;ZLjava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117118_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;ILnet/minecraft/client/model/HumanoidModel;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderArmorPiece (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;ILnet/minecraft/client/model/HumanoidModel;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117125_ (Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/setPartVisibility (Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117128_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/usesInnerModel (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289594_ (Lnet/minecraft/world/item/ArmorItem;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;ZLnet/minecraft/world/item/armortrim/ArmorTrim;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/lambda$renderArmorPiece$0 (Lnet/minecraft/world/item/ArmorItem;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;ZLnet/minecraft/world/item/armortrim/ArmorTrim;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289597_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderGlint (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289604_ (Lnet/minecraft/world/item/ArmorMaterial;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/armortrim/ArmorTrim;Lnet/minecraft/client/model/HumanoidModel;Z)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderTrim (Lnet/minecraft/world/item/ArmorMaterial;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/armortrim/ArmorTrim;Lnet/minecraft/client/model/HumanoidModel;Z)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289609_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ArmorItem;Lnet/minecraft/client/model/HumanoidModel;ZFFFLjava/lang/String;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderModel (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ArmorItem;Lnet/minecraft/client/model/HumanoidModel;ZFFFLjava/lang/String;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/ ()V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/ ()V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ ()V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/m_117184_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/renderArmWithItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ ()V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Llama;FFFFFF)V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Llama;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/m_234852_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZLnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/renderMushroomBlock (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZLnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/MushroomCow;FFFFFF)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/MushroomCow;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Panda;FFFFFF)V net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Panda;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_117293_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/lambda$render$0 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_117317_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFZ)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFZ)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_262347_ (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/client/renderer/MultiBufferSource;IFFFFLnet/minecraft/world/entity/EntityType;)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/lambda$render$1 (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/client/renderer/MultiBufferSource;IFFFFLnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFFF)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ ()V net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/m_117184_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/renderArmWithItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/m_174517_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/renderArmWithSpyglass (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/RenderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117347_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/RenderLayer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117359_ (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFFFFF)V net/minecraft/client/renderer/entity/layers/RenderLayer/coloredCutoutModelCopyLayerRender (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117376_ (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/renderer/entity/layers/RenderLayer/renderColoredCutoutModel (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117386_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/RenderLayer/getParentModel ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/RenderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SaddleLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/entity/layers/SaddleLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/entity/layers/SaddleLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SaddleLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/ ()V net/minecraft/client/renderer/entity/layers/SheepFurLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/SheepFurLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SheepFurLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Sheep;FFFFFF)V net/minecraft/client/renderer/entity/layers/SheepFurLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Sheep;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Shulker;FFFFFF)V net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Shulker;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/SnowGolem;FFFFFF)V net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/SnowGolem;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ ()V net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ ()V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/m_174542_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ ()V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Mob;FFFFFF)V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Mob;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_5558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/renderStuckItem (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_7040_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/numStuck (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ ()V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/TropicalFish;FFFFFF)V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/TropicalFish;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/ ()V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/ ()V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ ()V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_117656_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_117658_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectMap;Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/getHatData (Lit/unimi/dsi/fastutil/objects/Object2ObjectMap;Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_117668_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/getResourceLocation (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_234874_ (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$getHatData$2 (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_244736_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$getResourceLocation$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_257088_ (Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$getHatData$3 (Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234889_ ()V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/onlyDrawSelectedParts ()V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234912_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/lambda$resetDrawForAllParts$2 (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234914_ ()V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/resetDrawForAllParts ()V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234915_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/lambda$onlyDrawSelectedParts$1 (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234917_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/lambda$onlyDrawSelectedParts$0 (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/warden/Warden;FFFFFF)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/warden/Warden;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction/m_234919_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction/apply (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector/m_234923_ (Lnet/minecraft/client/model/EntityModel;)Ljava/util/List; net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector/getPartsToDraw (Lnet/minecraft/client/model/EntityModel;)Ljava/util/List; +MD: net/minecraft/client/renderer/entity/layers/WitchItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/WitchItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/WitchItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WitchItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WitchItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WitchItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ ()V net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/m_7029_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/WitherArmorLayer/getTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/m_7193_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/WitherArmorLayer/model ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/m_7631_ (F)F net/minecraft/client/renderer/entity/layers/WitherArmorLayer/xOffset (F)F +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ ()V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Wolf;FFFFFF)V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Wolf;FFFFFF)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V net/minecraft/client/renderer/entity/player/PlayerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117770_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderRightHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117775_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117794_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/renderer/entity/player/PlayerRenderer/getArmPose (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117813_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderLeftHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117818_ (Lnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/setModelProperties (Lnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_5478_ (Lnet/minecraft/client/player/AbstractClientPlayer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/player/PlayerRenderer/getTextureLocation (Lnet/minecraft/client/player/AbstractClientPlayer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/player/PlayerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7392_ (Lnet/minecraft/client/player/AbstractClientPlayer;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/render (Lnet/minecraft/client/player/AbstractClientPlayer;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7523_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/player/PlayerRenderer/setupRotations (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/player/PlayerRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7546_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/player/PlayerRenderer/scale (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/player/PlayerRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7649_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderNameTag (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7649_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderNameTag (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/player/PlayerRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7860_ (Lnet/minecraft/client/player/AbstractClientPlayer;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/player/PlayerRenderer/getRenderOffset (Lnet/minecraft/client/player/AbstractClientPlayer;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/item/ClampedItemPropertyFunction/m_141951_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ClampedItemPropertyFunction/call (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ClampedItemPropertyFunction/m_142187_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ClampedItemPropertyFunction/unclampedCall (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/ (Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget;)V net/minecraft/client/renderer/item/CompassItemPropertyFunction/ (Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget;)V +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_142187_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/unclampedCall (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234934_ (I)I net/minecraft/client/renderer/item/CompassItemPropertyFunction/hash (I)I +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234936_ (IJ)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/getRandomlySpinningRotation (IJ)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234939_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/item/CompassItemPropertyFunction/getWrappedVisualRotationY (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234941_ (Lnet/minecraft/world/entity/Entity;JLnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/getRotationTowardsCompassTarget (Lnet/minecraft/world/entity/Entity;JLnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234945_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/multiplayer/ClientLevel; net/minecraft/client/renderer/item/CompassItemPropertyFunction/tryFetchLevelIfMissing (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/multiplayer/ClientLevel; +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234948_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)D net/minecraft/client/renderer/item/CompassItemPropertyFunction/getAngleFromEntityToPos (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234951_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/client/renderer/item/CompassItemPropertyFunction/isValidCompassTargetPos (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234954_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;ILnet/minecraft/world/entity/Entity;)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/getCompassRotation (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;ILnet/minecraft/world/entity/Entity;)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget/m_234964_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget/getPos (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/ ()V net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/ ()V +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/m_234972_ (J)Z net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/shouldUpdate (J)Z +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/m_234974_ (JD)V net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/update (JD)V +MD: net/minecraft/client/renderer/item/ItemProperties/ ()V net/minecraft/client/renderer/item/ItemProperties/ ()V +MD: net/minecraft/client/renderer/item/ItemProperties/ ()V net/minecraft/client/renderer/item/ItemProperties/ ()V +MD: net/minecraft/client/renderer/item/ItemProperties/m_117827_ (Lnet/minecraft/world/item/Item;)Ljava/util/Map; net/minecraft/client/renderer/item/ItemProperties/lambda$register$2 (Lnet/minecraft/world/item/Item;)Ljava/util/Map; +MD: net/minecraft/client/renderer/item/ItemProperties/m_117829_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/item/ItemPropertyFunction; net/minecraft/client/renderer/item/ItemProperties/getProperty (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/item/ItemPropertyFunction; +MD: net/minecraft/client/renderer/item/ItemProperties/m_174570_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)V net/minecraft/client/renderer/item/ItemProperties/register (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)V +MD: net/minecraft/client/renderer/item/ItemProperties/m_174574_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$19 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174579_ (Lnet/minecraft/client/renderer/item/ItemPropertyFunction;)V net/minecraft/client/renderer/item/ItemProperties/registerCustomModelData (Lnet/minecraft/client/renderer/item/ItemPropertyFunction;)V +MD: net/minecraft/client/renderer/item/ItemProperties/m_174581_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction; net/minecraft/client/renderer/item/ItemProperties/registerGeneric (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction; +MD: net/minecraft/client/renderer/item/ItemProperties/m_174584_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$18 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174589_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$17 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174604_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$14 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174609_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$13 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174624_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$10 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174629_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$9 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174634_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$7 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174639_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$6 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174644_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$4 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174649_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$3 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174654_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$1 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174659_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_234977_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$22 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_234982_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; net/minecraft/client/renderer/item/ItemProperties/lambda$static$12 (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/client/renderer/item/ItemProperties/m_234986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$21 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_234991_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; net/minecraft/client/renderer/item/ItemProperties/lambda$static$11 (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/client/renderer/item/ItemProperties/m_234995_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$20 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_271563_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$8 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_275783_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$16 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_275784_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$15 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_289053_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$5 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties$1/ ()V net/minecraft/client/renderer/item/ItemProperties$1/ ()V +MD: net/minecraft/client/renderer/item/ItemProperties$1/m_117903_ (Lnet/minecraft/world/level/Level;D)D net/minecraft/client/renderer/item/ItemProperties$1/wobble (Lnet/minecraft/world/level/Level;D)D +MD: net/minecraft/client/renderer/item/ItemProperties$1/m_142187_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties$1/unclampedCall (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemPropertyFunction/m_141951_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemPropertyFunction/call (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/texture/AbstractTexture/ ()V net/minecraft/client/renderer/texture/AbstractTexture/ ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/close ()V net/minecraft/client/renderer/texture/AbstractTexture/close ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117954_ ()V net/minecraft/client/renderer/texture/AbstractTexture/lambda$bind$1 ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117960_ (ZZ)V net/minecraft/client/renderer/texture/AbstractTexture/setFilter (ZZ)V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117963_ ()I net/minecraft/client/renderer/texture/AbstractTexture/getId ()I +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117964_ ()V net/minecraft/client/renderer/texture/AbstractTexture/releaseId ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117966_ ()V net/minecraft/client/renderer/texture/AbstractTexture/bind ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117967_ ()V net/minecraft/client/renderer/texture/AbstractTexture/lambda$releaseId$0 ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_6479_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V net/minecraft/client/renderer/texture/AbstractTexture/reset (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/AbstractTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/Dumpable/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/Dumpable/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/ ()V net/minecraft/client/renderer/texture/DynamicTexture/ ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/ (IIZ)V net/minecraft/client/renderer/texture/DynamicTexture/ (IIZ)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/DynamicTexture/ (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/close ()V net/minecraft/client/renderer/texture/DynamicTexture/close ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_117985_ ()V net/minecraft/client/renderer/texture/DynamicTexture/upload ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_117988_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/DynamicTexture/setPixels (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_117991_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/DynamicTexture/getPixels ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/DynamicTexture/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_283979_ ()V net/minecraft/client/renderer/texture/DynamicTexture/lambda$new$0 ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/DynamicTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/ ()V net/minecraft/client/renderer/texture/HttpTexture/ ()V +MD: net/minecraft/client/renderer/texture/HttpTexture/ (Ljava/io/File;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;ZLjava/lang/Runnable;)V net/minecraft/client/renderer/texture/HttpTexture/ (Ljava/io/File;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;ZLjava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118007_ ()V net/minecraft/client/renderer/texture/HttpTexture/lambda$load$4 ()V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118010_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/loadCallback (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118012_ (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V net/minecraft/client/renderer/texture/HttpTexture/doNotchTransparencyHack (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118018_ (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/HttpTexture/load (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118020_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/upload (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118022_ (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V net/minecraft/client/renderer/texture/HttpTexture/setNoAlpha (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118030_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$load$2 (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118032_ (Lcom/mojang/blaze3d/platform/NativeImage;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/HttpTexture/processLegacySkin (Lcom/mojang/blaze3d/platform/NativeImage;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118034_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$loadCallback$1 (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_174682_ (Ljava/io/InputStream;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$load$3 (Ljava/io/InputStream;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_174684_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$loadCallback$0 (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/HttpTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/ ()V net/minecraft/client/renderer/texture/MipmapGenerator/ ()V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/ ()V net/minecraft/client/renderer/texture/MipmapGenerator/ ()V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118040_ (I)F net/minecraft/client/renderer/texture/MipmapGenerator/getPow22 (I)F +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118042_ (IIIII)I net/minecraft/client/renderer/texture/MipmapGenerator/gammaBlend (IIIII)I +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118048_ (IIIIZ)I net/minecraft/client/renderer/texture/MipmapGenerator/alphaBlend (IIIIZ)I +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118057_ ([F)V net/minecraft/client/renderer/texture/MipmapGenerator/lambda$static$0 ([F)V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_246246_ ([Lcom/mojang/blaze3d/platform/NativeImage;I)[Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/MipmapGenerator/generateMipLevels ([Lcom/mojang/blaze3d/platform/NativeImage;I)[Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_246464_ (Lcom/mojang/blaze3d/platform/NativeImage;)Z net/minecraft/client/renderer/texture/MipmapGenerator/hasTransparentPixel (Lcom/mojang/blaze3d/platform/NativeImage;)Z +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_118071_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_118080_ ()Lnet/minecraft/client/renderer/texture/DynamicTexture; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/getTexture ()Lnet/minecraft/client/renderer/texture/DynamicTexture; +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_245315_ (II)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/generateMissingImage (II)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_246104_ ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/create ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/OverlayTexture/ ()V net/minecraft/client/renderer/texture/OverlayTexture/ ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/ ()V net/minecraft/client/renderer/texture/OverlayTexture/ ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/close ()V net/minecraft/client/renderer/texture/OverlayTexture/close ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118087_ ()V net/minecraft/client/renderer/texture/OverlayTexture/setupOverlayColor ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118088_ (F)I net/minecraft/client/renderer/texture/OverlayTexture/u (F)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118090_ (FZ)I net/minecraft/client/renderer/texture/OverlayTexture/pack (FZ)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118093_ (II)I net/minecraft/client/renderer/texture/OverlayTexture/pack (II)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118096_ (Z)I net/minecraft/client/renderer/texture/OverlayTexture/v (Z)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118098_ ()V net/minecraft/client/renderer/texture/OverlayTexture/teardownOverlayColor ()V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V net/minecraft/client/renderer/texture/PreloadedTexture/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118105_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/PreloadedTexture/getFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118106_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/PreloadedTexture/lambda$new$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118109_ (Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage;)Ljava/lang/Void; net/minecraft/client/renderer/texture/PreloadedTexture/lambda$getFuture$1 (Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage;)Ljava/lang/Void; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118111_ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/renderer/texture/PreloadedTexture/lambda$reset$3 (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118120_ (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor; net/minecraft/client/renderer/texture/PreloadedTexture/executor (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118122_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/PreloadedTexture/lambda$executor$5 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118127_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/PreloadedTexture/lambda$reset$2 (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_174695_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/PreloadedTexture/lambda$executor$4 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_6335_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/PreloadedTexture/getTextureImage (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_6479_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V net/minecraft/client/renderer/texture/PreloadedTexture/reset (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/ ()V net/minecraft/client/renderer/texture/SimpleTexture/ ()V +MD: net/minecraft/client/renderer/texture/SimpleTexture/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/SimpleTexture/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_118136_ (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V net/minecraft/client/renderer/texture/SimpleTexture/doLoad (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_118141_ (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V net/minecraft/client/renderer/texture/SimpleTexture/lambda$load$0 (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_6335_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/SimpleTexture/getTextureImage (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/SimpleTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Ljava/io/IOException;)V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Ljava/io/IOException;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection;Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection;Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/close ()V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/close ()V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118154_ ()Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/getTextureMetadata ()Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118155_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118158_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/getImage ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118159_ ()V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/throwIfError ()V +MD: net/minecraft/client/renderer/texture/SpriteContents/ ()V net/minecraft/client/renderer/texture/SpriteContents/ ()V +MD: net/minecraft/client/renderer/texture/SpriteContents/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/metadata/animation/FrameSize;Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)V net/minecraft/client/renderer/texture/SpriteContents/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/metadata/animation/FrameSize;Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)V +MD: net/minecraft/client/renderer/texture/SpriteContents/close ()V net/minecraft/client/renderer/texture/SpriteContents/close ()V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245088_ ()I net/minecraft/client/renderer/texture/SpriteContents/getFrameCount ()I +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245330_ ()I net/minecraft/client/renderer/texture/SpriteContents/height ()I +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245638_ ()Ljava/util/stream/IntStream; net/minecraft/client/renderer/texture/SpriteContents/getUniqueFrames ()Ljava/util/stream/IntStream; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245776_ ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/lambda$increaseMipLevel$0 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245953_ (Ljava/util/List;II)V net/minecraft/client/renderer/texture/SpriteContents/lambda$createAnimatedTexture$3 (Ljava/util/List;II)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245970_ (III)Z net/minecraft/client/renderer/texture/SpriteContents/isTransparent (III)Z +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246162_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/SpriteContents/name ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246368_ (I)V net/minecraft/client/renderer/texture/SpriteContents/increaseMipLevel (I)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246492_ ()I net/minecraft/client/renderer/texture/SpriteContents/width ()I +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246599_ ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/lambda$increaseMipLevel$1 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246786_ ()Lnet/minecraft/client/renderer/texture/SpriteTicker; net/minecraft/client/renderer/texture/SpriteContents/createTicker ()Lnet/minecraft/client/renderer/texture/SpriteTicker; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246850_ (II)V net/minecraft/client/renderer/texture/SpriteContents/uploadFirstFrame (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247381_ (IIII[Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/SpriteContents/upload (IIII[Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247391_ (Lnet/minecraft/client/resources/metadata/animation/FrameSize;IILnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture; net/minecraft/client/renderer/texture/SpriteContents/createAnimatedTexture (Lnet/minecraft/client/resources/metadata/animation/FrameSize;IILnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247508_ (Lit/unimi/dsi/fastutil/ints/IntSet;I)Z net/minecraft/client/renderer/texture/SpriteContents/lambda$createAnimatedTexture$4 (Lit/unimi/dsi/fastutil/ints/IntSet;I)Z +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247509_ ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/lambda$increaseMipLevel$2 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;IZ)V net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;IZ)V +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_245074_ (III)V net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/uploadFrame (III)V +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_245080_ (I)I net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/getFrameX (I)I +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_246130_ ()Ljava/util/stream/IntStream; net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/getUniqueFrames ()Ljava/util/stream/IntStream; +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_246436_ (I)I net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/getFrameY (I)I +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_246690_ ()Lnet/minecraft/client/renderer/texture/SpriteTicker; net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/createTicker ()Lnet/minecraft/client/renderer/texture/SpriteTicker; +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_247129_ (II)V net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/uploadFirstFrame (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_247333_ (Lnet/minecraft/client/renderer/texture/SpriteContents$FrameInfo;)I net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/lambda$getUniqueFrames$0 (Lnet/minecraft/client/renderer/texture/SpriteContents$FrameInfo;)I +MD: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/ (II)V net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/ (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/ (Lnet/minecraft/client/renderer/texture/SpriteContents;)V net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/ (Lnet/minecraft/client/renderer/texture/SpriteContents;)V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/close ()V net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/close ()V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/m_245152_ (IILnet/minecraft/client/renderer/texture/SpriteContents$Ticker;)V net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/uploadInterpolatedFrame (IILnet/minecraft/client/renderer/texture/SpriteContents$Ticker;)V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/m_246491_ (Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;IIII)I net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/getPixel (Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;IIII)I +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/m_247111_ (DII)I net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/mix (DII)I +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;Lnet/minecraft/client/renderer/texture/SpriteContents$InterpolationData;)V net/minecraft/client/renderer/texture/SpriteContents$Ticker/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;Lnet/minecraft/client/renderer/texture/SpriteContents$InterpolationData;)V +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/close ()V net/minecraft/client/renderer/texture/SpriteContents$Ticker/close ()V +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/m_247291_ (II)V net/minecraft/client/renderer/texture/SpriteContents$Ticker/lambda$tickAndUpload$0 (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/m_247697_ (II)V net/minecraft/client/renderer/texture/SpriteContents$Ticker/tickAndUpload (II)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/ ()V net/minecraft/client/renderer/texture/SpriteLoader/ ()V +MD: net/minecraft/client/renderer/texture/SpriteLoader/ (Lnet/minecraft/resources/ResourceLocation;III)V net/minecraft/client/renderer/texture/SpriteLoader/ (Lnet/minecraft/resources/ResourceLocation;III)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245083_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/SpriteLoader/loadSprite (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245151_ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteLoader/lambda$stitch$0 (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245483_ (Lnet/minecraft/client/renderer/texture/TextureAtlas;)Lnet/minecraft/client/renderer/texture/SpriteLoader; net/minecraft/client/renderer/texture/SpriteLoader/create (Lnet/minecraft/client/renderer/texture/TextureAtlas;)Lnet/minecraft/client/renderer/texture/SpriteLoader; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245562_ (ILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/renderer/texture/SpriteLoader/lambda$stitch$1 (ILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_246118_ (Ljava/util/List;)Ljava/util/List; net/minecraft/client/renderer/texture/SpriteLoader/lambda$runSpriteSuppliers$4 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_246510_ (Ljava/util/Map;IILnet/minecraft/client/renderer/texture/SpriteContents;II)V net/minecraft/client/renderer/texture/SpriteLoader/lambda$getStitchedSprites$8 (Ljava/util/Map;IILnet/minecraft/client/renderer/texture/SpriteContents;II)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_246625_ (Ljava/util/Map;I)V net/minecraft/client/renderer/texture/SpriteLoader/lambda$stitch$2 (Ljava/util/Map;I)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260766_ (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/renderer/texture/SpriteLoader/lambda$loadAndStitch$6 (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260767_ (ILjava/util/concurrent/Executor;Ljava/util/List;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; net/minecraft/client/renderer/texture/SpriteLoader/lambda$loadAndStitch$7 (ILjava/util/concurrent/Executor;Ljava/util/List;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260768_ (Ljava/util/concurrent/Executor;Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader/lambda$runSpriteSuppliers$3 (Ljava/util/concurrent/Executor;Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260769_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/client/renderer/texture/SpriteLoader/lambda$loadAndStitch$5 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260809_ (Ljava/util/List;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader/runSpriteSuppliers (Ljava/util/List;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260881_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;ILjava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader/loadAndStitch (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;ILjava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_261295_ (Ljava/util/List;ILjava/util/concurrent/Executor;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; net/minecraft/client/renderer/texture/SpriteLoader/stitch (Ljava/util/List;ILjava/util/concurrent/Executor;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_276091_ (Lnet/minecraft/client/renderer/texture/Stitcher;II)Ljava/util/Map; net/minecraft/client/renderer/texture/SpriteLoader/getStitchedSprites (Lnet/minecraft/client/renderer/texture/Stitcher;II)Ljava/util/Map; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/ (IIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/renderer/texture/SpriteLoader$Preparations/ (IIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/SpriteLoader$Preparations/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243669_ ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/width ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243807_ ()Ljava/util/Map; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/regions ()Ljava/util/Map; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243912_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/missing ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244353_ ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/mipLevel ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244415_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/readyForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244632_ ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/height ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/hashCode ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/hashCode ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/m_245936_ (Ljava/lang/Void;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/lambda$waitForUpload$0 (Ljava/lang/Void;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/m_246429_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/waitForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteTicker/close ()V net/minecraft/client/renderer/texture/SpriteTicker/close ()V +MD: net/minecraft/client/renderer/texture/SpriteTicker/m_247697_ (II)V net/minecraft/client/renderer/texture/SpriteTicker/tickAndUpload (II)V +MD: net/minecraft/client/renderer/texture/Stitcher/ ()V net/minecraft/client/renderer/texture/Stitcher/ ()V +MD: net/minecraft/client/renderer/texture/Stitcher/ (III)V net/minecraft/client/renderer/texture/Stitcher/ (III)V +MD: net/minecraft/client/renderer/texture/Stitcher/m_118174_ ()I net/minecraft/client/renderer/texture/Stitcher/getWidth ()I +MD: net/minecraft/client/renderer/texture/Stitcher/m_118178_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z net/minecraft/client/renderer/texture/Stitcher/addToStorage (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z +MD: net/minecraft/client/renderer/texture/Stitcher/m_118180_ (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V net/minecraft/client/renderer/texture/Stitcher/gatherSprites (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V +MD: net/minecraft/client/renderer/texture/Stitcher/m_118187_ ()I net/minecraft/client/renderer/texture/Stitcher/getHeight ()I +MD: net/minecraft/client/renderer/texture/Stitcher/m_118188_ (II)I net/minecraft/client/renderer/texture/Stitcher/smallestFittingMinTexel (II)I +MD: net/minecraft/client/renderer/texture/Stitcher/m_118191_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z net/minecraft/client/renderer/texture/Stitcher/expand (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z +MD: net/minecraft/client/renderer/texture/Stitcher/m_118193_ ()V net/minecraft/client/renderer/texture/Stitcher/stitch ()V +MD: net/minecraft/client/renderer/texture/Stitcher/m_118198_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; net/minecraft/client/renderer/texture/Stitcher/lambda$static$1 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; +MD: net/minecraft/client/renderer/texture/Stitcher/m_118200_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; net/minecraft/client/renderer/texture/Stitcher/lambda$static$0 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; +MD: net/minecraft/client/renderer/texture/Stitcher/m_244737_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/Stitcher/lambda$static$2 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/Stitcher/m_244738_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/client/renderer/texture/Stitcher$Entry; net/minecraft/client/renderer/texture/Stitcher/lambda$stitch$3 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/client/renderer/texture/Stitcher$Entry; +MD: net/minecraft/client/renderer/texture/Stitcher/m_246099_ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)V net/minecraft/client/renderer/texture/Stitcher/registerSprite (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)V +MD: net/minecraft/client/renderer/texture/Stitcher$Entry/m_245330_ ()I net/minecraft/client/renderer/texture/Stitcher$Entry/height ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Entry/m_246162_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/Stitcher$Entry/name ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/Stitcher$Entry/m_246492_ ()I net/minecraft/client/renderer/texture/Stitcher$Entry/width ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;I)V net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;I)V +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/Stitcher$Holder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118203_ ()I net/minecraft/client/renderer/texture/Stitcher$Holder/width ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118204_ ()I net/minecraft/client/renderer/texture/Stitcher$Holder/height ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_244486_ ()Lnet/minecraft/client/renderer/texture/Stitcher$Entry; net/minecraft/client/renderer/texture/Stitcher$Holder/entry ()Lnet/minecraft/client/renderer/texture/Stitcher$Entry; +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/hashCode ()I net/minecraft/client/renderer/texture/Stitcher$Holder/hashCode ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/Stitcher$Holder/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/Stitcher$Region/ (IIII)V net/minecraft/client/renderer/texture/Stitcher$Region/ (IIII)V +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_118221_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z net/minecraft/client/renderer/texture/Stitcher$Region/add (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_118225_ ()I net/minecraft/client/renderer/texture/Stitcher$Region/getX ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_118226_ ()I net/minecraft/client/renderer/texture/Stitcher$Region/getY ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_246763_ (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V net/minecraft/client/renderer/texture/Stitcher$Region/walk (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V +MD: net/minecraft/client/renderer/texture/Stitcher$Region/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/Stitcher$Region/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/Stitcher$SpriteLoader/m_118228_ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V net/minecraft/client/renderer/texture/Stitcher$SpriteLoader/load (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V +MD: net/minecraft/client/renderer/texture/StitcherException/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;Ljava/util/Collection;)V net/minecraft/client/renderer/texture/StitcherException/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/texture/StitcherException/m_118258_ ()Ljava/util/Collection; net/minecraft/client/renderer/texture/StitcherException/getAllSprites ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/texture/TextureAtlas/ ()V net/minecraft/client/renderer/texture/TextureAtlas/ ()V +MD: net/minecraft/client/renderer/texture/TextureAtlas/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureAtlas/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118270_ ()V net/minecraft/client/renderer/texture/TextureAtlas/cycleAnimationFrames ()V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118316_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/texture/TextureAtlas/getSprite (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118329_ ()V net/minecraft/client/renderer/texture/TextureAtlas/clearTextureData ()V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118330_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/TextureAtlas/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_245285_ ()I net/minecraft/client/renderer/texture/TextureAtlas/maxSupportedTextureSize ()I +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_247065_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/renderer/texture/TextureAtlas/upload (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_247255_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/renderer/texture/TextureAtlas/updateFilter (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_260988_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/util/Map;)V net/minecraft/client/renderer/texture/TextureAtlas/dumpSpriteNames (Ljava/nio/file/Path;Ljava/lang/String;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureAtlas/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_276092_ ()I net/minecraft/client/renderer/texture/TextureAtlas/getWidth ()I +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_276095_ ()I net/minecraft/client/renderer/texture/TextureAtlas/getHeight ()I +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/TextureAtlas/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_7673_ ()V net/minecraft/client/renderer/texture/TextureAtlas/tick ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/SpriteContents;IIII)V net/minecraft/client/renderer/texture/TextureAtlasSprite/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/SpriteContents;IIII)V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118366_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/atlasSize ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118367_ (D)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getU (D)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118381_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/texture/TextureAtlasSprite/wrap (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118393_ (D)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getV (D)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118409_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getU0 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118410_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getU1 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118411_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getV0 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118412_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getV1 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118416_ ()V net/minecraft/client/renderer/texture/TextureAtlasSprite/uploadFirstFrame ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118417_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/uvShrinkRatio ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174727_ (F)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getUOffset (F)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174741_ (F)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getVOffset (F)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174743_ ()I net/minecraft/client/renderer/texture/TextureAtlasSprite/getX ()I +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174744_ ()I net/minecraft/client/renderer/texture/TextureAtlasSprite/getY ()I +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_245424_ ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/TextureAtlasSprite/contents ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_247406_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker; net/minecraft/client/renderer/texture/TextureAtlasSprite/createTicker ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_247685_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/TextureAtlasSprite/atlasLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/TextureAtlasSprite/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/SpriteTicker;)V net/minecraft/client/renderer/texture/TextureAtlasSprite$1/ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/SpriteTicker;)V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/close ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$1/close ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/m_245385_ ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$1/tickAndUpload ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/close ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/close ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/m_245385_ ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/tickAndUpload ()V +MD: net/minecraft/client/renderer/texture/TextureManager/ ()V net/minecraft/client/renderer/texture/TextureManager/ ()V +MD: net/minecraft/client/renderer/texture/TextureManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/TextureManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/TextureManager/close ()V net/minecraft/client/renderer/texture/TextureManager/close ()V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118486_ (Lnet/minecraft/client/renderer/texture/AbstractTexture;)Ljava/lang/String; net/minecraft/client/renderer/texture/TextureManager/lambda$loadTexture$1 (Lnet/minecraft/client/renderer/texture/AbstractTexture;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118488_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/TextureManager/execute (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118490_ (Ljava/lang/String;Lnet/minecraft/client/renderer/texture/DynamicTexture;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/TextureManager/register (Ljava/lang/String;Lnet/minecraft/client/renderer/texture/DynamicTexture;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118495_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V net/minecraft/client/renderer/texture/TextureManager/register (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118498_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/PreloadedTexture;)V net/minecraft/client/renderer/texture/TextureManager/lambda$preload$2 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/PreloadedTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118501_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/TextureManager/preload (Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118504_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/TextureManager/lambda$reload$6 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118506_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/AbstractTexture; net/minecraft/client/renderer/texture/TextureManager/getTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/AbstractTexture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118508_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V net/minecraft/client/renderer/texture/TextureManager/safeClose (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118511_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/TextureManager/lambda$execute$3 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118513_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/release (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118515_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; net/minecraft/client/renderer/texture/TextureManager/loadTexture (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118519_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/_bind (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_174784_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/bindForSetup (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_174786_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; net/minecraft/client/renderer/texture/TextureManager/getTexture (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_174789_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/lambda$bindForSetup$0 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_244739_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V net/minecraft/client/renderer/texture/TextureManager/lambda$reload$5 (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_244740_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/renderer/texture/TextureManager/lambda$reload$4 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276076_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureManager/lambda$dumpAllSheets$7 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276077_ (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V net/minecraft/client/renderer/texture/TextureManager/lambda$_dumpAllSheets$8 (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276083_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureManager/_dumpAllSheets (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276085_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureManager/dumpAllSheets (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/TextureManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_7673_ ()V net/minecraft/client/renderer/texture/TextureManager/tick ()V +MD: net/minecraft/client/renderer/texture/Tickable/m_7673_ ()V net/minecraft/client/renderer/texture/Tickable/tick ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ ()V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ (Ljava/util/List;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ (Ljava/util/List;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/m_260886_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/List; net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/list (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/m_261166_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader; net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader; +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/m_261183_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/lambda$list$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/ (Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader;Ljava/util/Map;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/ (Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/m_260801_ (Ljava/util/function/Predicate;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/removeAll (Ljava/util/function/Predicate;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/m_260840_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/add (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource/ ()V net/minecraft/client/renderer/texture/atlas/SpriteSource/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/SpriteSource/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/SpriteSource/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_260801_ (Ljava/util/function/Predicate;)V net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/removeAll (Ljava/util/function/Predicate;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_260840_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/add (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_261028_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/add (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_261059_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/lambda$add$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier/m_260986_ ()V net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier/discard ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/client/renderer/texture/atlas/SpriteSourceType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/atlas/SpriteSourceType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/f_260449_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/renderer/texture/atlas/SpriteSourceType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/hashCode ()I net/minecraft/client/renderer/texture/atlas/SpriteSourceType/hashCode ()I +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/SpriteSourceType/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_260887_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/SpriteSources/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274004_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274005_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274006_ (Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType;)Lcom/mojang/serialization/DataResult; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$3 (Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274007_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ ()V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_260906_ (Lnet/minecraft/resources/FileToIdConverter;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$run$3 (Lnet/minecraft/resources/FileToIdConverter;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_261073_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_261264_ (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_261300_ (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;I)V net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;I)V +MD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/m_266167_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/get ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/m_266458_ ()V net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/release ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ ()V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266217_ ([I[I)Ljava/util/function/IntUnaryOperator; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/createPaletteMapping ([I[I)Ljava/util/function/IntUnaryOperator; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266306_ (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266309_ (Ljava/util/Map;Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$run$6 (Ljava/util/Map;Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266373_ (Lnet/minecraft/server/packs/resources/ResourceManager;)[I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$run$4 (Lnet/minecraft/server/packs/resources/ResourceManager;)[I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266448_ (Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/IntUnaryOperator; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$run$5 (Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/IntUnaryOperator; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266460_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266527_ (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/Map; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$2 (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/Map; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266589_ (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/List; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266592_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/loadPaletteEntryFromImage (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_267542_ (Lit/unimi/dsi/fastutil/ints/Int2IntMap;I)I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$createPaletteMapping$7 (Lit/unimi/dsi/fastutil/ints/Int2IntMap;I)I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Ljava/util/function/Supplier;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Ljava/util/function/Supplier;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_265892_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/permutationLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266004_ ()Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/baseImage ()Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266059_ ()Ljava/util/function/Supplier; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/palette ()Ljava/util/function/Supplier; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Ljava/lang/Object; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Ljava/lang/Object; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/hashCode ()I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/hashCode ()I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/m_260986_ ()V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/discard ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ ()V net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/SingleFile/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_261151_ (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_261182_ (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Ljava/util/Optional; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_261205_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ ()V net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ (Lnet/minecraft/util/ResourceLocationPattern;)V net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ (Lnet/minecraft/util/ResourceLocationPattern;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_261008_ (Lnet/minecraft/client/renderer/texture/atlas/sources/SourceFilter;)Lnet/minecraft/util/ResourceLocationPattern; net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/SourceFilter;)Lnet/minecraft/util/ResourceLocationPattern; +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_261225_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ ()V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;DD)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;DD)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260798_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260837_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/util/List; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260876_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_261096_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$3 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_261208_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$2 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ ()V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ (Lnet/minecraft/resources/ResourceLocation;DDDD)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ (Lnet/minecraft/resources/ResourceLocation;DDDD)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260480_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/y ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260547_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/x ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260568_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/sprite ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260610_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/height ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260701_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/width ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/hashCode ()I net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/hashCode ()I +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/m_261120_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region;DD)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region;DD)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Ljava/lang/Object; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Ljava/lang/Object; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/m_260986_ ()V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/discard ()V +MD: net/minecraft/client/resources/ClientPackSource/ ()V net/minecraft/client/resources/ClientPackSource/ ()V +MD: net/minecraft/client/resources/ClientPackSource/ (Ljava/nio/file/Path;)V net/minecraft/client/resources/ClientPackSource/ (Ljava/nio/file/Path;)V +MD: net/minecraft/client/resources/ClientPackSource/m_244741_ (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/client/resources/ClientPackSource/lambda$createVanillaPack$0 (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/client/resources/ClientPackSource/m_245328_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/resources/ClientPackSource/getPackTitle (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/resources/ClientPackSource/m_245382_ (Ljava/util/function/BiConsumer;)V net/minecraft/client/resources/ClientPackSource/populatePackList (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/client/resources/ClientPackSource/m_245806_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/client/resources/ClientPackSource/createVanillaPack (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/client/resources/ClientPackSource/m_246091_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/client/resources/ClientPackSource/createBuiltinPack (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/client/resources/ClientPackSource/m_246691_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/client/resources/ClientPackSource/createVanillaPackSource (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/client/resources/ClientPackSource/m_247002_ (Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/client/resources/ClientPackSource/findExplodedAssetPacks (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/client/resources/DefaultPlayerSkin/ ()V net/minecraft/client/resources/DefaultPlayerSkin/ ()V +MD: net/minecraft/client/resources/DefaultPlayerSkin/ ()V net/minecraft/client/resources/DefaultPlayerSkin/ ()V +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_118626_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/DefaultPlayerSkin/getDefaultSkin ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_118627_ (Ljava/util/UUID;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/DefaultPlayerSkin/getDefaultSkin (Ljava/util/UUID;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_118629_ (Ljava/util/UUID;)Ljava/lang/String; net/minecraft/client/resources/DefaultPlayerSkin/getSkinModelName (Ljava/util/UUID;)Ljava/lang/String; +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_257644_ (Ljava/util/UUID;)Lnet/minecraft/client/resources/DefaultPlayerSkin$SkinType; net/minecraft/client/resources/DefaultPlayerSkin/getSkinType (Ljava/util/UUID;)Lnet/minecraft/client/resources/DefaultPlayerSkin$SkinType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ ()V net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ ()V +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/m_257484_ ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$ModelType/$values ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$ModelType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/values ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$ModelType/values ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Ljava/lang/String;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Ljava/lang/String;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/DefaultPlayerSkin$SkinType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256814_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/DefaultPlayerSkin$SkinType/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256901_ ()Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$SkinType/model ()Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/hashCode ()I net/minecraft/client/resources/DefaultPlayerSkin$SkinType/hashCode ()I +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/toString ()Ljava/lang/String; net/minecraft/client/resources/DefaultPlayerSkin$SkinType/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/DownloadedPackSource/ ()V net/minecraft/client/resources/DownloadedPackSource/ ()V +MD: net/minecraft/client/resources/DownloadedPackSource/ (Ljava/io/File;)V net/minecraft/client/resources/DownloadedPackSource/ (Ljava/io/File;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245230_ (ZLnet/minecraft/client/Minecraft;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$1 (ZLnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245289_ (Ljava/lang/Void;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$7 (Ljava/lang/Void;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245308_ ()Ljava/util/Map; net/minecraft/client/resources/DownloadedPackSource/getDownloadHeaders ()Ljava/util/Map; +MD: net/minecraft/client/resources/DownloadedPackSource/m_245350_ (Ljava/lang/String;Ljava/io/File;)Z net/minecraft/client/resources/DownloadedPackSource/checkHash (Ljava/lang/String;Ljava/io/File;)Z +MD: net/minecraft/client/resources/DownloadedPackSource/m_245559_ ()V net/minecraft/client/resources/DownloadedPackSource/clearOldDownloads ()V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245607_ (Ljava/io/File;Lnet/minecraft/client/Minecraft;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$6 (Ljava/io/File;Lnet/minecraft/client/Minecraft;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/DownloadedPackSource/m_245964_ (Lnet/minecraft/client/Minecraft;Z)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$4 (Lnet/minecraft/client/Minecraft;Z)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_246151_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/clearServerPack ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_246169_ (Ljava/io/File;)V net/minecraft/client/resources/DownloadedPackSource/deleteQuietly (Ljava/io/File;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_246254_ (Ljava/net/URL;Ljava/lang/String;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/downloadAndSelectResourcePack (Ljava/net/URL;Ljava/lang/String;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_246722_ (Ljava/lang/Throwable;Ljava/io/File;Ljava/lang/Void;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$3 (Ljava/lang/Throwable;Ljava/io/File;Ljava/lang/Void;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_246966_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/ProgressScreen;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/ProgressScreen;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_247083_ (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/client/Minecraft;ZLjava/lang/Object;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$2 (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/client/Minecraft;ZLjava/lang/Object;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/DownloadedPackSource/m_247163_ (Lnet/minecraft/client/Minecraft;Ljava/lang/Void;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$5 (Lnet/minecraft/client/Minecraft;Ljava/lang/Void;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_247400_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/loadBundledResourcePack (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_247526_ (Ljava/io/File;Lnet/minecraft/server/packs/repository/PackSource;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/setServerPack (Ljava/io/File;Lnet/minecraft/server/packs/repository/PackSource;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_254765_ (Ljava/io/File;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/client/resources/DownloadedPackSource/lambda$setServerPack$8 (Ljava/io/File;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/client/resources/DownloadedPackSource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/client/resources/DownloadedPackSource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/resources/FoliageColorReloadListener/ ()V net/minecraft/client/resources/FoliageColorReloadListener/ ()V +MD: net/minecraft/client/resources/FoliageColorReloadListener/ ()V net/minecraft/client/resources/FoliageColorReloadListener/ ()V +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5787_ ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/FoliageColorReloadListener/apply ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/FoliageColorReloadListener/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/resources/FoliageColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I net/minecraft/client/resources/FoliageColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I +MD: net/minecraft/client/resources/GrassColorReloadListener/ ()V net/minecraft/client/resources/GrassColorReloadListener/ ()V +MD: net/minecraft/client/resources/GrassColorReloadListener/ ()V net/minecraft/client/resources/GrassColorReloadListener/ ()V +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5787_ ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/GrassColorReloadListener/apply ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/GrassColorReloadListener/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/resources/GrassColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I net/minecraft/client/resources/GrassColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I +MD: net/minecraft/client/resources/IndexedAssetSource/ ()V net/minecraft/client/resources/IndexedAssetSource/ ()V +MD: net/minecraft/client/resources/IndexedAssetSource/ ()V net/minecraft/client/resources/IndexedAssetSource/ ()V +MD: net/minecraft/client/resources/IndexedAssetSource/m_245793_ (Ljava/nio/file/Path;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/client/resources/IndexedAssetSource/createIndexFs (Ljava/nio/file/Path;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/client/resources/LegacyStuffWrapper/ ()V net/minecraft/client/resources/LegacyStuffWrapper/ ()V +MD: net/minecraft/client/resources/LegacyStuffWrapper/m_118726_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I net/minecraft/client/resources/LegacyStuffWrapper/getPixels (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I +MD: net/minecraft/client/resources/MobEffectTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/resources/MobEffectTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/resources/MobEffectTextureManager/m_118732_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/MobEffectTextureManager/get (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/PaintingTextureManager/ ()V net/minecraft/client/resources/PaintingTextureManager/ ()V +MD: net/minecraft/client/resources/PaintingTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/resources/PaintingTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/resources/PaintingTextureManager/m_118806_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/PaintingTextureManager/getBackSprite ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/PaintingTextureManager/m_235033_ (Lnet/minecraft/world/entity/decoration/PaintingVariant;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/PaintingTextureManager/get (Lnet/minecraft/world/entity/decoration/PaintingVariant;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/SkinManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V net/minecraft/client/resources/SkinManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V +MD: net/minecraft/client/resources/SkinManager/m_118815_ (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; net/minecraft/client/resources/SkinManager/getInsecureSkinInformation (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; +MD: net/minecraft/client/resources/SkinManager/m_118817_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Z)V net/minecraft/client/resources/SkinManager/registerSkins (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Z)V +MD: net/minecraft/client/resources/SkinManager/m_118821_ (Lcom/mojang/authlib/GameProfile;ZLnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$4 (Lcom/mojang/authlib/GameProfile;ZLnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V +MD: net/minecraft/client/resources/SkinManager/m_118825_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/registerTexture (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager/m_118828_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/registerTexture (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager/m_118832_ (Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V net/minecraft/client/resources/SkinManager/lambda$registerTexture$0 (Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +MD: net/minecraft/client/resources/SkinManager/m_174842_ (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$3 (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V +MD: net/minecraft/client/resources/SkinManager/m_174845_ (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$1 (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)V +MD: net/minecraft/client/resources/SkinManager/m_174849_ (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$2 (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V +MD: net/minecraft/client/resources/SkinManager/m_240306_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/getInsecureSkinLocation (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager/m_242632_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/getTextureLocation (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager$1/ (Lnet/minecraft/client/resources/SkinManager;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V net/minecraft/client/resources/SkinManager$1/ (Lnet/minecraft/client/resources/SkinManager;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V +MD: net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/String;)Ljava/util/Map; net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/String;)Ljava/util/Map; +MD: net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/resources/SkinManager$2/ ()V net/minecraft/client/resources/SkinManager$2/ ()V +MD: net/minecraft/client/resources/SkinManager$SkinTextureCallback/m_118856_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V net/minecraft/client/resources/SkinManager$SkinTextureCallback/onSkinTextureAvailable (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +MD: net/minecraft/client/resources/SplashManager/ ()V net/minecraft/client/resources/SplashManager/ ()V +MD: net/minecraft/client/resources/SplashManager/ (Lnet/minecraft/client/User;)V net/minecraft/client/resources/SplashManager/ (Lnet/minecraft/client/User;)V +MD: net/minecraft/client/resources/SplashManager/m_118875_ (Ljava/lang/String;)Z net/minecraft/client/resources/SplashManager/lambda$prepare$0 (Ljava/lang/String;)Z +MD: net/minecraft/client/resources/SplashManager/m_280369_ ()Lnet/minecraft/client/gui/components/SplashRenderer; net/minecraft/client/resources/SplashManager/getSplash ()Lnet/minecraft/client/gui/components/SplashRenderer; +MD: net/minecraft/client/resources/SplashManager/m_5787_ (Ljava/util/List;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/SplashManager/apply (Ljava/util/List;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/SplashManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/SplashManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/SplashManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/resources/SplashManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/resources/SplashManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/List; net/minecraft/client/resources/SplashManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/List; +MD: net/minecraft/client/resources/TextureAtlasHolder/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/TextureAtlasHolder/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/TextureAtlasHolder/close ()V net/minecraft/client/resources/TextureAtlasHolder/close ()V +MD: net/minecraft/client/resources/TextureAtlasHolder/m_118901_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/TextureAtlasHolder/getSprite (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/TextureAtlasHolder/m_245256_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/TextureAtlasHolder/apply (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/TextureAtlasHolder/m_246837_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/resources/TextureAtlasHolder/lambda$reload$0 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/resources/TextureAtlasHolder/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/TextureAtlasHolder/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/language/ClientLanguage/ ()V net/minecraft/client/resources/language/ClientLanguage/ ()V +MD: net/minecraft/client/resources/language/ClientLanguage/ (Ljava/util/Map;Z)V net/minecraft/client/resources/language/ClientLanguage/ (Ljava/util/Map;Z)V +MD: net/minecraft/client/resources/language/ClientLanguage/m_118919_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/resources/language/ClientLanguage/getOrDefault (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/resources/language/ClientLanguage/m_235035_ (Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V net/minecraft/client/resources/language/ClientLanguage/appendFrom (Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/client/resources/language/ClientLanguage/m_264420_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Z)Lnet/minecraft/client/resources/language/ClientLanguage; net/minecraft/client/resources/language/ClientLanguage/loadFrom (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Z)Lnet/minecraft/client/resources/language/ClientLanguage; +MD: net/minecraft/client/resources/language/ClientLanguage/m_5536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/resources/language/ClientLanguage/getVisualOrder (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/resources/language/ClientLanguage/m_6627_ ()Z net/minecraft/client/resources/language/ClientLanguage/isDefaultRightToLeft ()Z +MD: net/minecraft/client/resources/language/ClientLanguage/m_6722_ (Ljava/lang/String;)Z net/minecraft/client/resources/language/ClientLanguage/has (Ljava/lang/String;)Z +MD: net/minecraft/client/resources/language/FormattedBidiReorder/ ()V net/minecraft/client/resources/language/FormattedBidiReorder/ ()V +MD: net/minecraft/client/resources/language/FormattedBidiReorder/m_118929_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/resources/language/FormattedBidiReorder/shape (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/resources/language/FormattedBidiReorder/m_118931_ (Lnet/minecraft/network/chat/FormattedText;Z)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/resources/language/FormattedBidiReorder/reorder (Lnet/minecraft/network/chat/FormattedText;Z)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/resources/language/I18n/ ()V net/minecraft/client/resources/language/I18n/ ()V +MD: net/minecraft/client/resources/language/I18n/ ()V net/minecraft/client/resources/language/I18n/ ()V +MD: net/minecraft/client/resources/language/I18n/m_118936_ (Ljava/lang/String;)Z net/minecraft/client/resources/language/I18n/exists (Ljava/lang/String;)Z +MD: net/minecraft/client/resources/language/I18n/m_118938_ (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; net/minecraft/client/resources/language/I18n/get (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/client/resources/language/I18n/m_118941_ (Lnet/minecraft/locale/Language;)V net/minecraft/client/resources/language/I18n/setLanguage (Lnet/minecraft/locale/Language;)V +MD: net/minecraft/client/resources/language/LanguageInfo/ ()V net/minecraft/client/resources/language/LanguageInfo/ ()V +MD: net/minecraft/client/resources/language/LanguageInfo/ (Ljava/lang/String;Ljava/lang/String;Z)V net/minecraft/client/resources/language/LanguageInfo/ (Ljava/lang/String;Ljava/lang/String;Z)V +MD: net/minecraft/client/resources/language/LanguageInfo/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/language/LanguageInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/language/LanguageInfo/f_118944_ ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageInfo/region ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageInfo/f_118945_ ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageInfo/name ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageInfo/f_118946_ ()Z net/minecraft/client/resources/language/LanguageInfo/bidirectional ()Z +MD: net/minecraft/client/resources/language/LanguageInfo/hashCode ()I net/minecraft/client/resources/language/LanguageInfo/hashCode ()I +MD: net/minecraft/client/resources/language/LanguageInfo/m_264330_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/resources/language/LanguageInfo/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/resources/language/LanguageInfo/m_264517_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/resources/language/LanguageInfo/toComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/resources/language/LanguageInfo/toString ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageInfo/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageManager/ ()V net/minecraft/client/resources/language/LanguageManager/ ()V +MD: net/minecraft/client/resources/language/LanguageManager/ (Ljava/lang/String;)V net/minecraft/client/resources/language/LanguageManager/ (Ljava/lang/String;)V +MD: net/minecraft/client/resources/language/LanguageManager/m_118976_ (Ljava/lang/String;)Lnet/minecraft/client/resources/language/LanguageInfo; net/minecraft/client/resources/language/LanguageManager/getLanguage (Ljava/lang/String;)Lnet/minecraft/client/resources/language/LanguageInfo; +MD: net/minecraft/client/resources/language/LanguageManager/m_118981_ (Ljava/util/stream/Stream;)Ljava/util/Map; net/minecraft/client/resources/language/LanguageManager/extractLanguages (Ljava/util/stream/Stream;)Ljava/util/Map; +MD: net/minecraft/client/resources/language/LanguageManager/m_263891_ (Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;)V net/minecraft/client/resources/language/LanguageManager/lambda$extractLanguages$0 (Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;)V +MD: net/minecraft/client/resources/language/LanguageManager/m_264110_ (Ljava/lang/String;)V net/minecraft/client/resources/language/LanguageManager/setSelected (Ljava/lang/String;)V +MD: net/minecraft/client/resources/language/LanguageManager/m_264236_ ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageManager/getSelected ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageManager/m_264450_ ()Ljava/util/SortedMap; net/minecraft/client/resources/language/LanguageManager/getLanguages ()Ljava/util/SortedMap; +MD: net/minecraft/client/resources/language/LanguageManager/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/resources/language/LanguageManager/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/ (II)V net/minecraft/client/resources/metadata/animation/AnimationFrame/ (II)V +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/ (I)V net/minecraft/client/resources/metadata/animation/AnimationFrame/ (I)V +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/m_119010_ ()I net/minecraft/client/resources/metadata/animation/AnimationFrame/getIndex ()I +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/m_174856_ (I)I net/minecraft/client/resources/metadata/animation/AnimationFrame/getTime (I)I +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ ()V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ ()V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ (Ljava/util/List;IIIZ)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ (Ljava/util/List;IIIZ)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_119030_ ()I net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/getDefaultFrameTime ()I +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_119036_ ()Z net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/isInterpolatedFrames ()Z +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_174861_ (Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput;)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/forEachFrame (Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput;)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_245821_ (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/calculateFrameSize (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/ (Ljava/util/List;IIIZ)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/ (Ljava/util/List;IIIZ)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/m_245821_ (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/calculateFrameSize (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput/m_174863_ (II)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput/accept (II)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/ ()V net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/ ()V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_119058_ (ILcom/google/gson/JsonElement;)Lnet/minecraft/client/resources/metadata/animation/AnimationFrame; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/getFrame (ILcom/google/gson/JsonElement;)Lnet/minecraft/client/resources/metadata/animation/AnimationFrame; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/animation/FrameSize/ (II)V net/minecraft/client/resources/metadata/animation/FrameSize/ (II)V +MD: net/minecraft/client/resources/metadata/animation/FrameSize/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/metadata/animation/FrameSize/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244129_ ()I net/minecraft/client/resources/metadata/animation/FrameSize/width ()I +MD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244503_ ()I net/minecraft/client/resources/metadata/animation/FrameSize/height ()I +MD: net/minecraft/client/resources/metadata/animation/FrameSize/hashCode ()I net/minecraft/client/resources/metadata/animation/FrameSize/hashCode ()I +MD: net/minecraft/client/resources/metadata/animation/FrameSize/toString ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/FrameSize/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ ()V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ ()V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/m_119070_ ()Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/getHat ()Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ ()V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ ()V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_119082_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/getName ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_119083_ (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/lambda$static$0 (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_119085_ (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/getByName (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_174867_ ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/$values ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/values ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/values ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/ ()V net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/ ()V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection; net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ ()V net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ ()V +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ (Ljava/util/Map;)V net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ (Ljava/util/Map;)V +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/metadata/language/LanguageMetadataSection/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_119097_ ()Ljava/util/Map; net/minecraft/client/resources/metadata/language/LanguageMetadataSection/languages ()Ljava/util/Map; +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/hashCode ()I net/minecraft/client/resources/metadata/language/LanguageMetadataSection/hashCode ()I +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/toString ()Ljava/lang/String; net/minecraft/client/resources/metadata/language/LanguageMetadataSection/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ ()V net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ ()V +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ (ZZ)V net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ (ZZ)V +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/m_119115_ ()Z net/minecraft/client/resources/metadata/texture/TextureMetadataSection/isBlur ()Z +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/m_119116_ ()Z net/minecraft/client/resources/metadata/texture/TextureMetadataSection/isClamp ()Z +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/ ()V net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/ ()V +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/AtlasSet/ (Ljava/util/Map;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/resources/model/AtlasSet/ (Ljava/util/Map;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/resources/model/AtlasSet/close ()V net/minecraft/client/resources/model/AtlasSet/close ()V +MD: net/minecraft/client/resources/model/AtlasSet/m_245402_ (Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; net/minecraft/client/resources/model/AtlasSet/lambda$scheduleLoad$1 (Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; +MD: net/minecraft/client/resources/model/AtlasSet/m_245433_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; net/minecraft/client/resources/model/AtlasSet/getAtlas (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; +MD: net/minecraft/client/resources/model/AtlasSet/m_247721_ (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;)Ljava/util/Map; net/minecraft/client/resources/model/AtlasSet/scheduleLoad (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/AtlasSet/m_260770_ (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/AtlasSet/lambda$scheduleLoad$2 (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/AtlasSet/m_260771_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry; net/minecraft/client/resources/model/AtlasSet/lambda$new$0 (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry; +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/AtlasSet$AtlasEntry/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/close ()V net/minecraft/client/resources/model/AtlasSet$AtlasEntry/close ()V +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/AtlasSet$AtlasEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_244361_ ()Lnet/minecraft/client/renderer/texture/TextureAtlas; net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlas ()Lnet/minecraft/client/renderer/texture/TextureAtlas; +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_260723_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlasInfoLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/hashCode ()I net/minecraft/client/resources/model/AtlasSet$AtlasEntry/hashCode ()I +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/toString ()Ljava/lang/String; net/minecraft/client/resources/model/AtlasSet$AtlasEntry/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/resources/model/AtlasSet$StitchResult/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_245551_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/AtlasSet$StitchResult/getSprite (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_246239_ ()V net/minecraft/client/resources/model/AtlasSet$StitchResult/upload ()V +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_246362_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/AtlasSet$StitchResult/readyForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_247223_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/AtlasSet$StitchResult/missing ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/BakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/BakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/BakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/BakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/BakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/BakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/BakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/BakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/BakedModel/m_7521_ ()Z net/minecraft/client/resources/model/BakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/BakedModel/m_7539_ ()Z net/minecraft/client/resources/model/BakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/BakedModel/m_7541_ ()Z net/minecraft/client/resources/model/BakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/BakedModel/m_7547_ ()Z net/minecraft/client/resources/model/BakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/BlockModelRotation/ ()V net/minecraft/client/resources/model/BlockModelRotation/ ()V +MD: net/minecraft/client/resources/model/BlockModelRotation/ (Ljava/lang/String;III)V net/minecraft/client/resources/model/BlockModelRotation/ (Ljava/lang/String;III)V +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119153_ (II)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/by (II)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119156_ (Lnet/minecraft/client/resources/model/BlockModelRotation;)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/lambda$static$1 (Lnet/minecraft/client/resources/model/BlockModelRotation;)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119159_ (II)I net/minecraft/client/resources/model/BlockModelRotation/getIndex (II)I +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119162_ (Lnet/minecraft/client/resources/model/BlockModelRotation;)Ljava/lang/Integer; net/minecraft/client/resources/model/BlockModelRotation/lambda$static$0 (Lnet/minecraft/client/resources/model/BlockModelRotation;)Ljava/lang/Integer; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_174873_ ()Lcom/mojang/math/OctahedralGroup; net/minecraft/client/resources/model/BlockModelRotation/actualRotation ()Lcom/mojang/math/OctahedralGroup; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_174874_ ()[Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/$values ()[Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_6189_ ()Lcom/mojang/math/Transformation; net/minecraft/client/resources/model/BlockModelRotation/getRotation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/resources/model/BlockModelRotation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/values ()[Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/values ()[Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BuiltInModel/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V net/minecraft/client/resources/model/BuiltInModel/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V +MD: net/minecraft/client/resources/model/BuiltInModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/BuiltInModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/BuiltInModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/BuiltInModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/BuiltInModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/BuiltInModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/BuiltInModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/BuiltInModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/BuiltInModel/m_7521_ ()Z net/minecraft/client/resources/model/BuiltInModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/BuiltInModel/m_7539_ ()Z net/minecraft/client/resources/model/BuiltInModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/BuiltInModel/m_7541_ ()Z net/minecraft/client/resources/model/BuiltInModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/BuiltInModel/m_7547_ ()Z net/minecraft/client/resources/model/BuiltInModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/Material/ ()V net/minecraft/client/resources/model/Material/ ()V +MD: net/minecraft/client/resources/model/Material/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/Material/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/Material/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/Material/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/Material/hashCode ()I net/minecraft/client/resources/model/Material/hashCode ()I +MD: net/minecraft/client/resources/model/Material/m_119193_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/Material/atlasLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/Material/m_119194_ (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/resources/model/Material/buffer (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/resources/model/Material/m_119197_ (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;Z)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/resources/model/Material/buffer (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;Z)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/resources/model/Material/m_119201_ (Ljava/util/function/Function;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/resources/model/Material/renderType (Ljava/util/function/Function;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/resources/model/Material/m_119203_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/Material/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/Material/m_119204_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/Material/sprite ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/Material/toString ()Ljava/lang/String; net/minecraft/client/resources/model/Material/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBaker/m_245240_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelBaker/bake (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelBaker/m_245361_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; net/minecraft/client/resources/model/ModelBaker/getModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; +MD: net/minecraft/client/resources/model/ModelBakery/ ()V net/minecraft/client/resources/model/ModelBakery/ ()V +MD: net/minecraft/client/resources/model/ModelBakery/ (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/client/resources/model/ModelBakery/ (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119251_ ()Ljava/util/Map; net/minecraft/client/resources/model/ModelBakery/getBakedTopLevelModels ()Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelBakery/m_119252_ (I)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/ModelBakery/lambda$static$0 (I)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/ModelBakery/m_119254_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$registerModelGroup$24 (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119259_ (Lnet/minecraft/world/level/block/Block;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/resources/model/ModelBakery/lambda$predicate$10 (Lnet/minecraft/world/level/block/Block;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/resources/model/ModelBakery/m_119263_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$7 (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119273_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/client/resources/model/ModelBakery/predicate (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/client/resources/model/ModelBakery/m_119276_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/lang/Comparable; net/minecraft/client/resources/model/ModelBakery/getValueHelper (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/lang/Comparable; +MD: net/minecraft/client/resources/model/ModelBakery/m_119279_ (Lcom/google/common/collect/ImmutableList;Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/Map;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$20 (Lcom/google/common/collect/ImmutableList;Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/Map;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119296_ (Lnet/minecraft/client/renderer/block/model/BlockModel;)V net/minecraft/client/resources/model/ModelBakery/lambda$static$3 (Lnet/minecraft/client/renderer/block/model/BlockModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119306_ (Lnet/minecraft/client/resources/model/ModelResourceLocation;)V net/minecraft/client/resources/model/ModelBakery/loadTopLevel (Lnet/minecraft/client/resources/model/ModelResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119308_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$4 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119310_ (Ljava/lang/Iterable;)V net/minecraft/client/resources/model/ModelBakery/registerModelGroup (Ljava/lang/Iterable;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119322_ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$16 (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119327_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$12 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119331_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$22 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119341_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; net/minecraft/client/resources/model/ModelBakery/getModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; +MD: net/minecraft/client/resources/model/ModelBakery/m_119346_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$6 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119352_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/UnbakedModel;)V net/minecraft/client/resources/model/ModelBakery/cacheAndQueueDependencies (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/UnbakedModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119355_ ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/client/resources/model/ModelBakery/getModelGroups ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/client/resources/model/ModelBakery/m_119358_ (Lnet/minecraft/client/renderer/block/model/BlockModel;)V net/minecraft/client/resources/model/ModelBakery/lambda$static$2 (Lnet/minecraft/client/renderer/block/model/BlockModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119360_ (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$13 (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery/m_119362_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/ModelBakery/loadModel (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119364_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/resources/model/ModelBakery/loadBlockModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/resources/model/ModelBakery/m_119370_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/ModelBakery/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/ModelBakery/m_174882_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$17 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery/m_174886_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$15 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery/m_174890_ (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Z net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$18 (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/resources/model/ModelBakery/m_174893_ (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Ljava/util/Set; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$21 (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Ljava/util/Set; +MD: net/minecraft/client/resources/model/ModelBakery/m_174895_ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$19 (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_174903_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$5 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_244742_ (Lnet/minecraft/client/resources/model/UnbakedModel;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$8 (Lnet/minecraft/client/resources/model/UnbakedModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_244743_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelBakery$LoadedJson;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$14 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelBakery$LoadedJson;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/resources/model/ModelBakery/m_244744_ (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/ModelBakery/lambda$bakeModels$9 (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_245909_ (Ljava/util/function/BiFunction;)V net/minecraft/client/resources/model/ModelBakery/bakeModels (Ljava/util/function/BiFunction;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_257089_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$11 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/client/resources/model/ModelBakery/m_283980_ (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;Ljava/util/Set;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$23 (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;Ljava/util/Set;)V +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;Z)V net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;Z)V +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243798_ ()Lcom/mojang/math/Transformation; net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/transformation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243915_ ()Z net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/isUvLocked ()Z +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243934_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/hashCode ()I net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/hashCode ()I +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException/ (Ljava/lang/String;)V net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException/ (Ljava/lang/String;)V +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/ (Ljava/lang/String;Lcom/google/gson/JsonElement;)V net/minecraft/client/resources/model/ModelBakery$LoadedJson/ (Ljava/lang/String;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelBakery$LoadedJson/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_243774_ ()Ljava/lang/String; net/minecraft/client/resources/model/ModelBakery$LoadedJson/source ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_244212_ ()Lcom/google/gson/JsonElement; net/minecraft/client/resources/model/ModelBakery$LoadedJson/data ()Lcom/google/gson/JsonElement; +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/hashCode ()I net/minecraft/client/resources/model/ModelBakery$LoadedJson/hashCode ()I +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelBakery$LoadedJson/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/ (Lnet/minecraft/client/resources/model/ModelBakery;Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/ (Lnet/minecraft/client/resources/model/ModelBakery;Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/m_245240_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/bake (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/m_245361_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/getModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/m_246280_ (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/lambda$new$0 (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/hashCode ()I net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/hashCode ()I +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119379_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/create (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119383_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/UnbakedModel;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/create (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/UnbakedModel;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119387_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Ljava/util/List; net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/getColoringValues (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119390_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Z net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/lambda$create$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Z +MD: net/minecraft/client/resources/model/ModelManager/ ()V net/minecraft/client/resources/model/ModelManager/ ()V +MD: net/minecraft/client/resources/model/ModelManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/color/block/BlockColors;I)V net/minecraft/client/resources/model/ModelManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/color/block/BlockColors;I)V +MD: net/minecraft/client/resources/model/ModelManager/close ()V net/minecraft/client/resources/model/ModelManager/close ()V +MD: net/minecraft/client/resources/model/ModelManager/m_119409_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelManager/getMissingModel ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelManager/m_119410_ (I)V net/minecraft/client/resources/model/ModelManager/updateMaxMipLevel (I)V +MD: net/minecraft/client/resources/model/ModelManager/m_119415_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/resources/model/ModelManager/requiresRender (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/resources/model/ModelManager/m_119422_ (Lnet/minecraft/client/resources/model/ModelResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelManager/getModel (Lnet/minecraft/client/resources/model/ModelResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelManager/m_119428_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; net/minecraft/client/resources/model/ModelManager/getAtlas (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; +MD: net/minecraft/client/resources/model/ModelManager/m_119430_ ()Lnet/minecraft/client/renderer/block/BlockModelShaper; net/minecraft/client/resources/model/ModelManager/getBlockModelShaper ()Lnet/minecraft/client/renderer/block/BlockModelShaper; +MD: net/minecraft/client/resources/model/ModelManager/m_245068_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$11 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_245121_ (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/model/ModelManager/lambda$reload$5 (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/model/ModelManager/m_245318_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$10 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/model/ModelManager/m_245476_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelBakery;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; net/minecraft/client/resources/model/ModelManager/loadModels (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelBakery;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +MD: net/minecraft/client/resources/model/ModelManager/m_245484_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V net/minecraft/client/resources/model/ModelManager/lambda$loadModels$17 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V +MD: net/minecraft/client/resources/model/ModelManager/m_245561_ (Ljava/util/Map;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelManager/lambda$loadModels$18 (Ljava/util/Map;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelManager/m_245893_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)V net/minecraft/client/resources/model/ModelManager/lambda$reload$6 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)V +MD: net/minecraft/client/resources/model/ModelManager/m_245925_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/lambda$loadModels$19 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_246264_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$12 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/resources/model/ModelManager/m_246294_ (Ljava/util/Map;Lcom/google/common/collect/Multimap;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/ModelManager/lambda$loadModels$15 (Ljava/util/Map;Lcom/google/common/collect/Multimap;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/ModelManager/m_246360_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$7 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_246478_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$8 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/resources/model/ModelManager/m_246505_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/client/resources/model/ModelBakery; net/minecraft/client/resources/model/ModelManager/lambda$reload$0 (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/client/resources/model/ModelBakery; +MD: net/minecraft/client/resources/model/ModelManager/m_246572_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$14 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/model/ModelManager/m_246687_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$13 (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_246704_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/loadBlockModels (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_246805_ (Lnet/minecraft/client/resources/model/Material;)Ljava/lang/String; net/minecraft/client/resources/model/ModelManager/lambda$loadModels$16 (Lnet/minecraft/client/resources/model/Material;)Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelManager/m_246899_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/loadBlockStates (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_246937_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; net/minecraft/client/resources/model/ModelManager/lambda$reload$3 (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +MD: net/minecraft/client/resources/model/ModelManager/m_247063_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$9 (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_247195_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/lambda$reload$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_247228_ (Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; net/minecraft/client/resources/model/ModelManager/lambda$reload$2 (Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; +MD: net/minecraft/client/resources/model/ModelManager/m_247616_ (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/model/ModelManager/apply (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/model/ModelManager/m_247745_ (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; net/minecraft/client/resources/model/ModelManager/lambda$reload$4 (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +MD: net/minecraft/client/resources/model/ModelManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/ (Lnet/minecraft/client/resources/model/ModelBakery;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/resources/model/ModelManager$ReloadState/ (Lnet/minecraft/client/resources/model/ModelBakery;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelManager$ReloadState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244037_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager$ReloadState/readyForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244177_ ()Ljava/util/Map; net/minecraft/client/resources/model/ModelManager$ReloadState/atlasPreparations ()Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244394_ ()Lnet/minecraft/client/resources/model/ModelBakery; net/minecraft/client/resources/model/ModelManager$ReloadState/modelBakery ()Lnet/minecraft/client/resources/model/ModelBakery; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244561_ ()Ljava/util/Map; net/minecraft/client/resources/model/ModelManager$ReloadState/modelCache ()Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244619_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelManager$ReloadState/missingModel ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/hashCode ()I net/minecraft/client/resources/model/ModelManager$ReloadState/hashCode ()I +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelManager$ReloadState/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V +MD: net/minecraft/client/resources/model/ModelResourceLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/resources/model/ModelResourceLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/resources/model/ModelResourceLocation/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelResourceLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelResourceLocation/hashCode ()I net/minecraft/client/resources/model/ModelResourceLocation/hashCode ()I +MD: net/minecraft/client/resources/model/ModelResourceLocation/m_119448_ ()Ljava/lang/String; net/minecraft/client/resources/model/ModelResourceLocation/getVariant ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelResourceLocation/m_245263_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/resources/model/ModelResourceLocation/vanilla (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/resources/model/ModelResourceLocation/m_246655_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/resources/model/ModelResourceLocation/lowercaseVariant (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelResourceLocation/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelResourceLocation/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelState/m_6189_ ()Lcom/mojang/math/Transformation; net/minecraft/client/resources/model/ModelState/getRotation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/resources/model/ModelState/m_7538_ ()Z net/minecraft/client/resources/model/ModelState/isUvLocked ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/ (Ljava/util/List;)V net/minecraft/client/resources/model/MultiPartBakedModel/ (Ljava/util/List;)V +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/MultiPartBakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/MultiPartBakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/MultiPartBakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/MultiPartBakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7521_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7539_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7541_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7547_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/ ()V net/minecraft/client/resources/model/MultiPartBakedModel$Builder/ ()V +MD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/m_119476_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/MultiPartBakedModel$Builder/build ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/m_119477_ (Ljava/util/function/Predicate;Lnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/resources/model/MultiPartBakedModel$Builder/add (Ljava/util/function/Predicate;Lnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/resources/model/SimpleBakedModel/ (Ljava/util/List;Ljava/util/Map;ZZZLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V net/minecraft/client/resources/model/SimpleBakedModel/ (Ljava/util/List;Ljava/util/Map;ZZZLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/SimpleBakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/SimpleBakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/SimpleBakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/SimpleBakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7521_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7539_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7541_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7547_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Z)V net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Z)V +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119526_ (Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/addUnculledFace (Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119528_ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/particle (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119530_ (Lnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/addCulledFace (Lnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119533_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/SimpleBakedModel$Builder/build ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_174911_ ()Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/item ()Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/UnbakedModel/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/resources/model/UnbakedModel/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/resources/model/UnbakedModel/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/UnbakedModel/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/UnbakedModel/m_7970_ ()Ljava/util/Collection; net/minecraft/client/resources/model/UnbakedModel/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/resources/model/WeightedBakedModel/ (Ljava/util/List;)V net/minecraft/client/resources/model/WeightedBakedModel/ (Ljava/util/List;)V +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/WeightedBakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_235061_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)Ljava/util/List; net/minecraft/client/resources/model/WeightedBakedModel/lambda$getQuads$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)Ljava/util/List; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/WeightedBakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/WeightedBakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/WeightedBakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7521_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7539_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7541_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7547_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/ ()V net/minecraft/client/resources/model/WeightedBakedModel$Builder/ ()V +MD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/m_119558_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/WeightedBakedModel$Builder/build ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/m_119559_ (Lnet/minecraft/client/resources/model/BakedModel;I)Lnet/minecraft/client/resources/model/WeightedBakedModel$Builder; net/minecraft/client/resources/model/WeightedBakedModel$Builder/add (Lnet/minecraft/client/resources/model/BakedModel;I)Lnet/minecraft/client/resources/model/WeightedBakedModel$Builder; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_5891_ ()Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/AbstractSoundInstance/getSound ()Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_6775_ (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; net/minecraft/client/resources/sounds/AbstractSoundInstance/resolve (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7438_ ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/AbstractSoundInstance/getAttenuation ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7766_ ()I net/minecraft/client/resources/sounds/AbstractSoundInstance/getDelay ()I +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7769_ ()F net/minecraft/client/resources/sounds/AbstractSoundInstance/getVolume ()F +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7772_ ()D net/minecraft/client/resources/sounds/AbstractSoundInstance/getX ()D +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7775_ ()Z net/minecraft/client/resources/sounds/AbstractSoundInstance/isLooping ()Z +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7778_ ()D net/minecraft/client/resources/sounds/AbstractSoundInstance/getZ ()D +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7780_ ()D net/minecraft/client/resources/sounds/AbstractSoundInstance/getY ()D +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7783_ ()F net/minecraft/client/resources/sounds/AbstractSoundInstance/getPitch ()F +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7796_ ()Z net/minecraft/client/resources/sounds/AbstractSoundInstance/isRelative ()Z +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7904_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/AbstractSoundInstance/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_8070_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/client/resources/sounds/AbstractSoundInstance/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/toString ()Ljava/lang/String; net/minecraft/client/resources/sounds/AbstractSoundInstance/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/m_119609_ ()V net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/stop ()V +MD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/m_7801_ ()Z net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/isStopped ()Z +MD: net/minecraft/client/resources/sounds/AmbientSoundHandler/m_7551_ ()V net/minecraft/client/resources/sounds/AmbientSoundHandler/tick ()V +MD: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/m_5958_ ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/getAlternativeSoundInstance ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +MD: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/m_7774_ ()Z net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/shouldSwitchSounds ()Z +MD: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/m_5958_ ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/getAlternativeSoundInstance ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +MD: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/m_7774_ ()Z net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/shouldSwitchSounds ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/client/resources/sounds/BeeSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_119627_ ()F net/minecraft/client/resources/sounds/BeeSoundInstance/getMinPitch ()F +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_119628_ ()F net/minecraft/client/resources/sounds/BeeSoundInstance/getMaxPitch ()F +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_5958_ ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; net/minecraft/client/resources/sounds/BeeSoundInstance/getAlternativeSoundInstance ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/BeeSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7774_ ()Z net/minecraft/client/resources/sounds/BeeSoundInstance/shouldSwitchSounds ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/BeeSoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/BeeSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/world/level/biome/BiomeManager;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/world/level/biome/BiomeManager;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_119651_ (Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/core/Holder;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$1 (Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_119654_ ()F net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/getMoodiness ()F +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_263141_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance;)Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance; net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$0 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance;)Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance; +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_263142_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$2 (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_274008_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$3 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_7551_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/tick ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/m_119659_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fadeOut ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/m_119660_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fadeIn ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/m_119668_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/lambda$tick$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/m_7551_ ()V net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/tick ()V +MD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/world/entity/Entity;J)V net/minecraft/client/resources/sounds/EntityBoundSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/world/entity/Entity;J)V +MD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/EntityBoundSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/EntityBoundSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)V net/minecraft/client/resources/sounds/MinecartSoundInstance/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)V +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/MinecartSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/MinecartSoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/MinecartSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/vehicle/AbstractMinecart;Z)V net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/vehicle/AbstractMinecart;Z)V +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDD)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDD)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;DDD)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;DDD)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDDZ)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDDZ)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119745_ (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forMusic (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119752_ (Lnet/minecraft/sounds/SoundEvent;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forUI (Lnet/minecraft/sounds/SoundEvent;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119755_ (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forUI (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119759_ (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forAmbientAddition (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119766_ (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forLocalAmbience (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_235127_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/util/RandomSource;DDD)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forAmbientMood (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/util/RandomSource;DDD)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_246411_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forRecord (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_263171_ (Lnet/minecraft/core/Holder;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forUI (Lnet/minecraft/core/Holder;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SnifferSoundInstance/ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V net/minecraft/client/resources/sounds/SnifferSoundInstance/ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V +MD: net/minecraft/client/resources/sounds/SnifferSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/SnifferSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/SnifferSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/SnifferSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/Sound/ ()V net/minecraft/client/resources/sounds/Sound/ ()V +MD: net/minecraft/client/resources/sounds/Sound/ (Ljava/lang/String;Lnet/minecraft/util/valueproviders/SampledFloat;Lnet/minecraft/util/valueproviders/SampledFloat;ILnet/minecraft/client/resources/sounds/Sound$Type;ZZI)V net/minecraft/client/resources/sounds/Sound/ (Ljava/lang/String;Lnet/minecraft/util/valueproviders/SampledFloat;Lnet/minecraft/util/valueproviders/SampledFloat;ILnet/minecraft/client/resources/sounds/Sound$Type;ZZI)V +MD: net/minecraft/client/resources/sounds/Sound/m_119787_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/Sound/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/Sound/m_119790_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/Sound/getPath ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/Sound/m_119795_ ()Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound/getType ()Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound/m_119796_ ()Z net/minecraft/client/resources/sounds/Sound/shouldStream ()Z +MD: net/minecraft/client/resources/sounds/Sound/m_119797_ ()Z net/minecraft/client/resources/sounds/Sound/shouldPreload ()Z +MD: net/minecraft/client/resources/sounds/Sound/m_119798_ ()I net/minecraft/client/resources/sounds/Sound/getAttenuationDistance ()I +MD: net/minecraft/client/resources/sounds/Sound/m_213718_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/Sound/getSound (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/Sound/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/resources/sounds/Sound/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/resources/sounds/Sound/m_235146_ ()Lnet/minecraft/util/valueproviders/SampledFloat; net/minecraft/client/resources/sounds/Sound/getVolume ()Lnet/minecraft/util/valueproviders/SampledFloat; +MD: net/minecraft/client/resources/sounds/Sound/m_235147_ ()Lnet/minecraft/util/valueproviders/SampledFloat; net/minecraft/client/resources/sounds/Sound/getPitch ()Lnet/minecraft/util/valueproviders/SampledFloat; +MD: net/minecraft/client/resources/sounds/Sound/m_7789_ ()I net/minecraft/client/resources/sounds/Sound/getWeight ()I +MD: net/minecraft/client/resources/sounds/Sound/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/resources/sounds/Sound/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/resources/sounds/Sound/toString ()Ljava/lang/String; net/minecraft/client/resources/sounds/Sound/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/sounds/Sound$Type/ ()V net/minecraft/client/resources/sounds/Sound$Type/ ()V +MD: net/minecraft/client/resources/sounds/Sound$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/resources/sounds/Sound$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/resources/sounds/Sound$Type/m_119810_ (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/getByName (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound$Type/m_174943_ ()[Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/$values ()[Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound$Type/values ()[Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/values ()[Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/ (Ljava/util/List;ZLjava/lang/String;)V net/minecraft/client/resources/sounds/SoundEventRegistration/ (Ljava/util/List;ZLjava/lang/String;)V +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/m_119822_ ()Ljava/util/List; net/minecraft/client/resources/sounds/SoundEventRegistration/getSounds ()Ljava/util/List; +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/m_119823_ ()Z net/minecraft/client/resources/sounds/SoundEventRegistration/isReplace ()Z +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/m_119824_ ()Ljava/lang/String; net/minecraft/client/resources/sounds/SoundEventRegistration/getSubtitle ()Ljava/lang/String; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/resources/sounds/SoundEventRegistration; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/resources/sounds/SoundEventRegistration; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/m_119830_ (Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/getSounds (Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/m_119832_ (Lcom/google/gson/JsonObject;Lnet/minecraft/client/resources/sounds/Sound$Type;)Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/getType (Lcom/google/gson/JsonObject;Lnet/minecraft/client/resources/sounds/Sound$Type;)Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/m_119835_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/getSound (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_235150_ ()Lnet/minecraft/util/RandomSource; net/minecraft/client/resources/sounds/SoundInstance/createUnseededRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_5891_ ()Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/SoundInstance/getSound ()Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_6775_ (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; net/minecraft/client/resources/sounds/SoundInstance/resolve (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7438_ ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance/getAttenuation ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7766_ ()I net/minecraft/client/resources/sounds/SoundInstance/getDelay ()I +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/SoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7769_ ()F net/minecraft/client/resources/sounds/SoundInstance/getVolume ()F +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7772_ ()D net/minecraft/client/resources/sounds/SoundInstance/getX ()D +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7775_ ()Z net/minecraft/client/resources/sounds/SoundInstance/isLooping ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7778_ ()D net/minecraft/client/resources/sounds/SoundInstance/getZ ()D +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7780_ ()D net/minecraft/client/resources/sounds/SoundInstance/getY ()D +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7783_ ()F net/minecraft/client/resources/sounds/SoundInstance/getPitch ()F +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/SoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7796_ ()Z net/minecraft/client/resources/sounds/SoundInstance/isRelative ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7904_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/SoundInstance/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_8070_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/client/resources/sounds/SoundInstance/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ ()V net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ ()V +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ (Ljava/lang/String;I)V net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ (Ljava/lang/String;I)V +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/m_174956_ ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance$Attenuation/$values ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance$Attenuation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/values ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance$Attenuation/values ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/TickableSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/TickableSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/TickableSoundInstance/m_7801_ ()Z net/minecraft/client/resources/sounds/TickableSoundInstance/isStopped ()Z +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/m_7551_ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/tick ()V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances/ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances/ ()V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/m_7788_ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/tick ()V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/tick ()V +MD: net/minecraft/client/searchtree/FullTextSearchTree/ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/List;)V net/minecraft/client/searchtree/FullTextSearchTree/ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/List;)V +MD: net/minecraft/client/searchtree/FullTextSearchTree/m_213685_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/FullTextSearchTree/searchResourceLocation (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/FullTextSearchTree/m_213913_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/FullTextSearchTree/searchPlainText (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/FullTextSearchTree/m_214078_ ()V net/minecraft/client/searchtree/FullTextSearchTree/refresh ()V +MD: net/minecraft/client/searchtree/IdSearchTree/ (Ljava/util/function/Function;Ljava/util/List;)V net/minecraft/client/searchtree/IdSearchTree/ (Ljava/util/function/Function;Ljava/util/List;)V +MD: net/minecraft/client/searchtree/IdSearchTree/m_213685_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/IdSearchTree/searchResourceLocation (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/IdSearchTree/m_213913_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/IdSearchTree/searchPlainText (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/IdSearchTree/m_6293_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/IdSearchTree/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/IntersectionIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V net/minecraft/client/searchtree/IntersectionIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V +MD: net/minecraft/client/searchtree/IntersectionIterator/computeNext ()Ljava/lang/Object; net/minecraft/client/searchtree/IntersectionIterator/computeNext ()Ljava/lang/Object; +MD: net/minecraft/client/searchtree/MergingUniqueIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V net/minecraft/client/searchtree/MergingUniqueIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V +MD: net/minecraft/client/searchtree/MergingUniqueIterator/computeNext ()Ljava/lang/Object; net/minecraft/client/searchtree/MergingUniqueIterator/computeNext ()Ljava/lang/Object; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235190_ ()Lnet/minecraft/client/searchtree/PlainTextSearchTree; net/minecraft/client/searchtree/PlainTextSearchTree/empty ()Lnet/minecraft/client/searchtree/PlainTextSearchTree; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235191_ (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Ljava/lang/String;)V net/minecraft/client/searchtree/PlainTextSearchTree/lambda$create$1 (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Ljava/lang/String;)V +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235195_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/PlainTextSearchTree/lambda$empty$0 (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235197_ (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/PlainTextSearchTree; net/minecraft/client/searchtree/PlainTextSearchTree/create (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/PlainTextSearchTree; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235200_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/PlainTextSearchTree/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/RefreshableSearchTree/m_214078_ ()V net/minecraft/client/searchtree/RefreshableSearchTree/refresh ()V +MD: net/minecraft/client/searchtree/RefreshableSearchTree/m_235202_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/RefreshableSearchTree/lambda$empty$0 (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/RefreshableSearchTree/m_235204_ ()Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/searchtree/RefreshableSearchTree/empty ()Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_213904_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree/searchNamespace (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_213906_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree/searchPath (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_235205_ ()Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; net/minecraft/client/searchtree/ResourceLocationSearchTree/empty ()Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_235206_ (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/searchtree/ResourceLocationSearchTree/lambda$create$0 (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_235212_ (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; net/minecraft/client/searchtree/ResourceLocationSearchTree/create (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$1/ ()V net/minecraft/client/searchtree/ResourceLocationSearchTree$1/ ()V +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$1/m_213904_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$1/searchNamespace (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$1/m_213906_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$1/searchPath (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/ (Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/client/searchtree/SuffixArray;)V net/minecraft/client/searchtree/ResourceLocationSearchTree$2/ (Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/client/searchtree/SuffixArray;)V +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/m_213904_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$2/searchNamespace (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/m_213906_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$2/searchPath (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/SearchRegistry/ ()V net/minecraft/client/searchtree/SearchRegistry/ ()V +MD: net/minecraft/client/searchtree/SearchRegistry/ ()V net/minecraft/client/searchtree/SearchRegistry/ ()V +MD: net/minecraft/client/searchtree/SearchRegistry/m_235230_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; net/minecraft/client/searchtree/SearchRegistry/getTree (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; +MD: net/minecraft/client/searchtree/SearchRegistry/m_235232_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V net/minecraft/client/searchtree/SearchRegistry/register (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V +MD: net/minecraft/client/searchtree/SearchRegistry/m_235235_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V net/minecraft/client/searchtree/SearchRegistry/populate (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V +MD: net/minecraft/client/searchtree/SearchRegistry/m_235238_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchRegistry$TreeEntry; net/minecraft/client/searchtree/SearchRegistry/getSupplier (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchRegistry$TreeEntry; +MD: net/minecraft/client/searchtree/SearchRegistry/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/searchtree/SearchRegistry/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/searchtree/SearchRegistry$Key/ ()V net/minecraft/client/searchtree/SearchRegistry$Key/ ()V +MD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/ (Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V net/minecraft/client/searchtree/SearchRegistry$TreeEntry/ (Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V +MD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/m_235244_ ()V net/minecraft/client/searchtree/SearchRegistry$TreeEntry/refresh ()V +MD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/m_235245_ (Ljava/util/List;)V net/minecraft/client/searchtree/SearchRegistry$TreeEntry/populate (Ljava/util/List;)V +MD: net/minecraft/client/searchtree/SearchTree/m_6293_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/SearchTree/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/SuffixArray/ ()V net/minecraft/client/searchtree/SuffixArray/ ()V +MD: net/minecraft/client/searchtree/SuffixArray/ ()V net/minecraft/client/searchtree/SuffixArray/ ()V +MD: net/minecraft/client/searchtree/SuffixArray/m_119967_ ()V net/minecraft/client/searchtree/SuffixArray/generate ()V +MD: net/minecraft/client/searchtree/SuffixArray/m_119968_ (I)Ljava/lang/String; net/minecraft/client/searchtree/SuffixArray/getString (I)Ljava/lang/String; +MD: net/minecraft/client/searchtree/SuffixArray/m_119970_ (Ljava/lang/Object;Ljava/lang/String;)V net/minecraft/client/searchtree/SuffixArray/add (Ljava/lang/Object;Ljava/lang/String;)V +MD: net/minecraft/client/searchtree/SuffixArray/m_119973_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/SuffixArray/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/SuffixArray/m_119975_ (Ljava/lang/String;I)I net/minecraft/client/searchtree/SuffixArray/compare (Ljava/lang/String;I)I +MD: net/minecraft/client/searchtree/SuffixArray/m_119984_ ()V net/minecraft/client/searchtree/SuffixArray/print ()V +MD: net/minecraft/client/searchtree/SuffixArray/m_194455_ ([I[III)I net/minecraft/client/searchtree/SuffixArray/lambda$generate$0 ([I[III)I +MD: net/minecraft/client/searchtree/SuffixArray/m_194460_ ([I[I[III)V net/minecraft/client/searchtree/SuffixArray/lambda$generate$1 ([I[I[III)V +MD: net/minecraft/client/server/IntegratedPlayerList/ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V net/minecraft/client/server/IntegratedPlayerList/ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V +MD: net/minecraft/client/server/IntegratedPlayerList/m_6418_ (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/client/server/IntegratedPlayerList/canPlayerLogin (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/server/IntegratedPlayerList/m_6765_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/client/server/IntegratedPlayerList/save (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/client/server/IntegratedPlayerList/m_6960_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/client/server/IntegratedPlayerList/getSingleplayerData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/client/server/IntegratedPlayerList/m_7873_ ()Lnet/minecraft/client/server/IntegratedServer; net/minecraft/client/server/IntegratedPlayerList/getServer ()Lnet/minecraft/client/server/IntegratedServer; +MD: net/minecraft/client/server/IntegratedPlayerList/m_7873_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/client/server/IntegratedPlayerList/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/client/server/IntegratedServer/ ()V net/minecraft/client/server/IntegratedServer/ ()V +MD: net/minecraft/client/server/IntegratedServer/ (Ljava/lang/Thread;Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V net/minecraft/client/server/IntegratedServer/ (Ljava/lang/Thread;Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V +MD: net/minecraft/client/server/IntegratedServer/m_120046_ (Ljava/util/UUID;)V net/minecraft/client/server/IntegratedServer/setUUID (Ljava/util/UUID;)V +MD: net/minecraft/client/server/IntegratedServer/m_142359_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/server/IntegratedServer/getForcedGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/server/IntegratedServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/client/server/IntegratedServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/client/server/IntegratedServer/m_174968_ ()V net/minecraft/client/server/IntegratedServer/tickPaused ()V +MD: net/minecraft/client/server/IntegratedServer/m_183471_ ()Lnet/minecraft/util/ModCheck; net/minecraft/client/server/IntegratedServer/getModdedStatus ()Lnet/minecraft/util/ModCheck; +MD: net/minecraft/client/server/IntegratedServer/m_235256_ ()Ljava/lang/String; net/minecraft/client/server/IntegratedServer/lambda$fillServerSystemReport$0 ()Ljava/lang/String; +MD: net/minecraft/client/server/IntegratedServer/m_263547_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/client/server/IntegratedServer/lambda$publishServer$1 (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/client/server/IntegratedServer/m_263548_ (Ljava/util/Optional;)V net/minecraft/client/server/IntegratedServer/lambda$publishServer$2 (Ljava/util/Optional;)V +MD: net/minecraft/client/server/IntegratedServer/m_289054_ ()V net/minecraft/client/server/IntegratedServer/lambda$halt$3 ()V +MD: net/minecraft/client/server/IntegratedServer/m_5705_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/client/server/IntegratedServer/tickServer (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/server/IntegratedServer/m_6102_ ()Z net/minecraft/client/server/IntegratedServer/shouldInformAdmins ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6237_ ()Ljava/io/File; net/minecraft/client/server/IntegratedServer/getServerDirectory ()Ljava/io/File; +MD: net/minecraft/client/server/IntegratedServer/m_6365_ ()Z net/minecraft/client/server/IntegratedServer/forceSynchronousWrites ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6982_ ()Z net/minecraft/client/server/IntegratedServer/isDedicatedServer ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6983_ ()Z net/minecraft/client/server/IntegratedServer/shouldRconBroadcast ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6992_ ()Z net/minecraft/client/server/IntegratedServer/isPublished ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6993_ ()Z net/minecraft/client/server/IntegratedServer/isCommandBlockEnabled ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6994_ ()Z net/minecraft/client/server/IntegratedServer/isEpollEnabled ()Z +MD: net/minecraft/client/server/IntegratedServer/m_7010_ ()I net/minecraft/client/server/IntegratedServer/getPort ()I +MD: net/minecraft/client/server/IntegratedServer/m_7022_ ()I net/minecraft/client/server/IntegratedServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/client/server/IntegratedServer/m_7032_ ()I net/minecraft/client/server/IntegratedServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/client/server/IntegratedServer/m_7034_ ()I net/minecraft/client/server/IntegratedServer/getFunctionCompilationLevel ()I +MD: net/minecraft/client/server/IntegratedServer/m_7038_ ()Z net/minecraft/client/server/IntegratedServer/initServer ()Z +MD: net/minecraft/client/server/IntegratedServer/m_7041_ ()V net/minecraft/client/server/IntegratedServer/stopServer ()V +MD: net/minecraft/client/server/IntegratedServer/m_7186_ (I)I net/minecraft/client/server/IntegratedServer/getScaledTrackingDistance (I)I +MD: net/minecraft/client/server/IntegratedServer/m_7268_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/server/IntegratedServer/onServerCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/server/IntegratedServer/m_7386_ (Lnet/minecraft/world/level/GameType;ZI)Z net/minecraft/client/server/IntegratedServer/publishServer (Lnet/minecraft/world/level/GameType;ZI)Z +MD: net/minecraft/client/server/IntegratedServer/m_7570_ (Z)V net/minecraft/client/server/IntegratedServer/halt (Z)V +MD: net/minecraft/client/server/IntegratedServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/client/server/IntegratedServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/client/server/IntegratedServer/m_7835_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/server/IntegratedServer/setDefaultGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/server/LanServer/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/server/LanServer/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/server/LanServer/m_120078_ ()Ljava/lang/String; net/minecraft/client/server/LanServer/getMotd ()Ljava/lang/String; +MD: net/minecraft/client/server/LanServer/m_120079_ ()Ljava/lang/String; net/minecraft/client/server/LanServer/getAddress ()Ljava/lang/String; +MD: net/minecraft/client/server/LanServer/m_120080_ ()V net/minecraft/client/server/LanServer/updatePingTime ()V +MD: net/minecraft/client/server/LanServerDetection/ ()V net/minecraft/client/server/LanServerDetection/ ()V +MD: net/minecraft/client/server/LanServerDetection/ ()V net/minecraft/client/server/LanServerDetection/ ()V +MD: net/minecraft/client/server/LanServerDetection$LanServerDetector/ (Lnet/minecraft/client/server/LanServerDetection$LanServerList;)V net/minecraft/client/server/LanServerDetection$LanServerDetector/ (Lnet/minecraft/client/server/LanServerDetection$LanServerList;)V +MD: net/minecraft/client/server/LanServerDetection$LanServerDetector/run ()V net/minecraft/client/server/LanServerDetection$LanServerDetector/run ()V +MD: net/minecraft/client/server/LanServerDetection$LanServerList/ ()V net/minecraft/client/server/LanServerDetection$LanServerList/ ()V +MD: net/minecraft/client/server/LanServerDetection$LanServerList/m_120096_ (Ljava/lang/String;Ljava/net/InetAddress;)V net/minecraft/client/server/LanServerDetection$LanServerList/addServer (Ljava/lang/String;Ljava/net/InetAddress;)V +MD: net/minecraft/client/server/LanServerDetection$LanServerList/m_247578_ ()Ljava/util/List; net/minecraft/client/server/LanServerDetection$LanServerList/takeDirtyServers ()Ljava/util/List; +MD: net/minecraft/client/server/LanServerPinger/ ()V net/minecraft/client/server/LanServerPinger/ ()V +MD: net/minecraft/client/server/LanServerPinger/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/server/LanServerPinger/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/server/LanServerPinger/interrupt ()V net/minecraft/client/server/LanServerPinger/interrupt ()V +MD: net/minecraft/client/server/LanServerPinger/m_120111_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/server/LanServerPinger/parseMotd (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/server/LanServerPinger/m_120113_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/server/LanServerPinger/createPingString (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/server/LanServerPinger/m_120116_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/server/LanServerPinger/parseAddress (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/server/LanServerPinger/run ()V net/minecraft/client/server/LanServerPinger/run ()V +MD: net/minecraft/client/sounds/AudioStream/m_6206_ ()Ljavax/sound/sampled/AudioFormat; net/minecraft/client/sounds/AudioStream/getFormat ()Ljavax/sound/sampled/AudioFormat; +MD: net/minecraft/client/sounds/AudioStream/m_7118_ (I)Ljava/nio/ByteBuffer; net/minecraft/client/sounds/AudioStream/read (I)Ljava/nio/ByteBuffer; +MD: net/minecraft/client/sounds/ChannelAccess/ (Lcom/mojang/blaze3d/audio/Library;Ljava/util/concurrent/Executor;)V net/minecraft/client/sounds/ChannelAccess/ (Lcom/mojang/blaze3d/audio/Library;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120127_ ()V net/minecraft/client/sounds/ChannelAccess/scheduleTick ()V +MD: net/minecraft/client/sounds/ChannelAccess/m_120128_ (Lcom/mojang/blaze3d/audio/Library$Pool;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/ChannelAccess/createHandle (Lcom/mojang/blaze3d/audio/Library$Pool;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/ChannelAccess/m_120130_ (Lcom/mojang/blaze3d/audio/Library$Pool;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/sounds/ChannelAccess/lambda$createHandle$0 (Lcom/mojang/blaze3d/audio/Library$Pool;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120137_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess/executeOnChannels (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120139_ ()V net/minecraft/client/sounds/ChannelAccess/clear ()V +MD: net/minecraft/client/sounds/ChannelAccess/m_120142_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess/lambda$executeOnChannels$2 (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120144_ ()V net/minecraft/client/sounds/ChannelAccess/lambda$scheduleTick$3 ()V +MD: net/minecraft/client/sounds/ChannelAccess/m_174977_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)Lcom/mojang/blaze3d/audio/Channel; net/minecraft/client/sounds/ChannelAccess/lambda$executeOnChannels$1 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)Lcom/mojang/blaze3d/audio/Channel; +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/ (Lnet/minecraft/client/sounds/ChannelAccess;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/ (Lnet/minecraft/client/sounds/ChannelAccess;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120151_ ()Z net/minecraft/client/sounds/ChannelAccess$ChannelHandle/isStopped ()Z +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120154_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/execute (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120156_ ()V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/release ()V +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120157_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/lambda$execute$0 (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/LoopingAudioStream/ (Lnet/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider;Ljava/io/InputStream;)V net/minecraft/client/sounds/LoopingAudioStream/ (Lnet/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider;Ljava/io/InputStream;)V +MD: net/minecraft/client/sounds/LoopingAudioStream/close ()V net/minecraft/client/sounds/LoopingAudioStream/close ()V +MD: net/minecraft/client/sounds/LoopingAudioStream/m_6206_ ()Ljavax/sound/sampled/AudioFormat; net/minecraft/client/sounds/LoopingAudioStream/getFormat ()Ljavax/sound/sampled/AudioFormat; +MD: net/minecraft/client/sounds/LoopingAudioStream/m_7118_ (I)Ljava/nio/ByteBuffer; net/minecraft/client/sounds/LoopingAudioStream/read (I)Ljava/nio/ByteBuffer; +MD: net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider/m_120169_ (Ljava/io/InputStream;)Lnet/minecraft/client/sounds/AudioStream; net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider/create (Ljava/io/InputStream;)Lnet/minecraft/client/sounds/AudioStream; +MD: net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/ (Ljava/io/InputStream;)V net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/ (Ljava/io/InputStream;)V +MD: net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/close ()V net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/close ()V +MD: net/minecraft/client/sounds/MusicManager/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/sounds/MusicManager/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/sounds/MusicManager/m_120183_ ()V net/minecraft/client/sounds/MusicManager/tick ()V +MD: net/minecraft/client/sounds/MusicManager/m_120184_ (Lnet/minecraft/sounds/Music;)V net/minecraft/client/sounds/MusicManager/startPlaying (Lnet/minecraft/sounds/Music;)V +MD: net/minecraft/client/sounds/MusicManager/m_120186_ ()V net/minecraft/client/sounds/MusicManager/stopPlaying ()V +MD: net/minecraft/client/sounds/MusicManager/m_120187_ (Lnet/minecraft/sounds/Music;)Z net/minecraft/client/sounds/MusicManager/isPlayingMusic (Lnet/minecraft/sounds/Music;)Z +MD: net/minecraft/client/sounds/MusicManager/m_278151_ (Lnet/minecraft/sounds/Music;)V net/minecraft/client/sounds/MusicManager/stopPlaying (Lnet/minecraft/sounds/Music;)V +MD: net/minecraft/client/sounds/SoundBufferLibrary/ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/sounds/SoundBufferLibrary/ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120193_ ()V net/minecraft/client/sounds/SoundBufferLibrary/clear ()V +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120194_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/lambda$preload$5 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120196_ (Lnet/minecraft/client/resources/sounds/Sound;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/lambda$preload$4 (Lnet/minecraft/client/resources/sounds/Sound;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120198_ (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/preload (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120200_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/sounds/SoundBufferLibrary/lambda$clear$3 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120202_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/getCompleteBuffer (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120204_ (Lnet/minecraft/resources/ResourceLocation;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/getStream (Lnet/minecraft/resources/ResourceLocation;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120207_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/lambda$getCompleteBuffer$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_174980_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/blaze3d/audio/SoundBuffer; net/minecraft/client/sounds/SoundBufferLibrary/lambda$getCompleteBuffer$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/blaze3d/audio/SoundBuffer; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_244746_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/sounds/AudioStream; net/minecraft/client/sounds/SoundBufferLibrary/lambda$getStream$2 (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/sounds/AudioStream; +MD: net/minecraft/client/sounds/SoundEngine/ ()V net/minecraft/client/sounds/SoundEngine/ ()V +MD: net/minecraft/client/sounds/SoundEngine/ (Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/client/Options;Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/sounds/SoundEngine/ (Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/client/Options;Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120239_ ()V net/minecraft/client/sounds/SoundEngine/reload ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120258_ (Lnet/minecraft/sounds/SoundSource;)F net/minecraft/client/sounds/SoundEngine/getVolume (Lnet/minecraft/sounds/SoundSource;)F +MD: net/minecraft/client/sounds/SoundEngine/m_120260_ (Lnet/minecraft/sounds/SoundSource;F)V net/minecraft/client/sounds/SoundEngine/updateCategoryVolume (Lnet/minecraft/sounds/SoundSource;F)V +MD: net/minecraft/client/sounds/SoundEngine/m_120270_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/sounds/SoundEngine/updateSource (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120272_ (Lnet/minecraft/client/resources/sounds/Sound;)V net/minecraft/client/sounds/SoundEngine/requestPreload (Lnet/minecraft/client/resources/sounds/Sound;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120274_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundEngine/stop (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120276_ (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V net/minecraft/client/sounds/SoundEngine/playDelayed (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V +MD: net/minecraft/client/sounds/SoundEngine/m_120279_ (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V net/minecraft/client/sounds/SoundEngine/lambda$updateCategoryVolume$1 (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120282_ (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V net/minecraft/client/sounds/SoundEngine/queueTickingSound (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120287_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V net/minecraft/client/sounds/SoundEngine/lambda$stopAll$2 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120295_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundEngine/addEventListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120299_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/client/sounds/SoundEngine/stop (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120302_ (Z)V net/minecraft/client/sounds/SoundEngine/tick (Z)V +MD: net/minecraft/client/sounds/SoundEngine/m_120304_ ()V net/minecraft/client/sounds/SoundEngine/destroy ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120305_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/isActive (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120307_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundEngine/removeEventListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120311_ ()V net/minecraft/client/sounds/SoundEngine/stopAll ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120312_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundEngine/play (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120314_ ()V net/minecraft/client/sounds/SoundEngine/pause ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120315_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/requiresManualLooping (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120317_ ()V net/minecraft/client/sounds/SoundEngine/resume ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120318_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/shouldLoopManually (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120320_ ()Ljava/lang/String; net/minecraft/client/sounds/SoundEngine/getDebugString ()Ljava/lang/String; +MD: net/minecraft/client/sounds/SoundEngine/m_120321_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/shouldLoopAutomatically (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120323_ ()V net/minecraft/client/sounds/SoundEngine/loadLibrary ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120324_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)F net/minecraft/client/sounds/SoundEngine/calculatePitch (Lnet/minecraft/client/resources/sounds/SoundInstance;)F +MD: net/minecraft/client/sounds/SoundEngine/m_120326_ ()V net/minecraft/client/sounds/SoundEngine/tickNonPaused ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120327_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)F net/minecraft/client/sounds/SoundEngine/calculateVolume (Lnet/minecraft/client/resources/sounds/SoundInstance;)F +MD: net/minecraft/client/sounds/SoundEngine/m_174988_ (FLcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$updateCategoryVolume$0 (FLcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194474_ (FFLnet/minecraft/world/phys/Vec3;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$tickNonPaused$4 (FFLnet/minecraft/world/phys/Vec3;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194479_ (FFLnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;FZZLnet/minecraft/world/phys/Vec3;ZLcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$play$5 (FFLnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;FZZLnet/minecraft/world/phys/Vec3;ZLcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194493_ (Lcom/mojang/blaze3d/audio/SoundBuffer;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$play$6 (Lcom/mojang/blaze3d/audio/SoundBuffer;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194496_ (Lnet/minecraft/client/sounds/AudioStream;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$play$8 (Lnet/minecraft/client/sounds/AudioStream;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194499_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lcom/mojang/blaze3d/audio/SoundBuffer;)V net/minecraft/client/sounds/SoundEngine/lambda$play$7 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lcom/mojang/blaze3d/audio/SoundBuffer;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194502_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lnet/minecraft/client/sounds/AudioStream;)V net/minecraft/client/sounds/SoundEngine/lambda$play$9 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lnet/minecraft/client/sounds/AudioStream;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194505_ (Ljava/lang/String;)V net/minecraft/client/sounds/SoundEngine/lambda$shouldChangeDevice$3 (Ljava/lang/String;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194507_ (Ljava/util/stream/Stream;)V net/minecraft/client/sounds/SoundEngine/lambda$resume$11 (Ljava/util/stream/Stream;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194509_ (Ljava/util/stream/Stream;)V net/minecraft/client/sounds/SoundEngine/lambda$pause$10 (Ljava/util/stream/Stream;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194511_ ()Ljava/util/List; net/minecraft/client/sounds/SoundEngine/getAvailableSoundDevices ()Ljava/util/List; +MD: net/minecraft/client/sounds/SoundEngine/m_194512_ ()Z net/minecraft/client/sounds/SoundEngine/shouldChangeDevice ()Z +MD: net/minecraft/client/sounds/SoundEngine/m_235257_ (FLnet/minecraft/sounds/SoundSource;)F net/minecraft/client/sounds/SoundEngine/calculateVolume (FLnet/minecraft/sounds/SoundSource;)F +MD: net/minecraft/client/sounds/SoundEngine/m_252595_ (Lnet/minecraft/world/phys/Vec3;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V net/minecraft/client/sounds/SoundEngine/lambda$updateSource$12 (Lnet/minecraft/world/phys/Vec3;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ ()V net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ ()V +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ (Ljava/lang/String;I)V net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ (Ljava/lang/String;I)V +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/m_194521_ ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; net/minecraft/client/sounds/SoundEngine$DeviceCheckState/$values ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/valueOf (Ljava/lang/String;)Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; net/minecraft/client/sounds/SoundEngine$DeviceCheckState/valueOf (Ljava/lang/String;)Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/values ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; net/minecraft/client/sounds/SoundEngine$DeviceCheckState/values ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +MD: net/minecraft/client/sounds/SoundEngineExecutor/ ()V net/minecraft/client/sounds/SoundEngineExecutor/ ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120332_ ()V net/minecraft/client/sounds/SoundEngineExecutor/flush ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120334_ ()Ljava/lang/Thread; net/minecraft/client/sounds/SoundEngineExecutor/createThread ()Ljava/lang/Thread; +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120336_ ()V net/minecraft/client/sounds/SoundEngineExecutor/run ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120337_ ()Z net/minecraft/client/sounds/SoundEngineExecutor/lambda$run$0 ()Z +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_5667_ ()V net/minecraft/client/sounds/SoundEngineExecutor/waitForTasks ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_6304_ ()Ljava/lang/Thread; net/minecraft/client/sounds/SoundEngineExecutor/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/client/sounds/SoundEngineExecutor/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/client/sounds/SoundEngineExecutor/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/client/sounds/SoundEventListener/m_6985_ (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V net/minecraft/client/sounds/SoundEventListener/onPlaySound (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V +MD: net/minecraft/client/sounds/SoundManager/ ()V net/minecraft/client/sounds/SoundManager/ ()V +MD: net/minecraft/client/sounds/SoundManager/ (Lnet/minecraft/client/Options;)V net/minecraft/client/sounds/SoundManager/ (Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/sounds/SoundManager/m_120354_ ()Ljava/util/Collection; net/minecraft/client/sounds/SoundManager/getAvailableSounds ()Ljava/util/Collection; +MD: net/minecraft/client/sounds/SoundManager/m_120358_ (Lnet/minecraft/sounds/SoundSource;F)V net/minecraft/client/sounds/SoundManager/updateSourceVolume (Lnet/minecraft/sounds/SoundSource;F)V +MD: net/minecraft/client/sounds/SoundManager/m_120361_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/sounds/SoundManager/updateSource (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/sounds/SoundManager/m_120367_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundManager/play (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundManager/m_120369_ (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V net/minecraft/client/sounds/SoundManager/playDelayed (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V +MD: net/minecraft/client/sounds/SoundManager/m_120372_ (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V net/minecraft/client/sounds/SoundManager/queueTickingSound (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V +MD: net/minecraft/client/sounds/SoundManager/m_120374_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundManager/addListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundManager/m_120384_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/sounds/WeighedSoundEvents; net/minecraft/client/sounds/SoundManager/getSoundEvent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/sounds/WeighedSoundEvents; +MD: net/minecraft/client/sounds/SoundManager/m_120386_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/client/sounds/SoundManager/stop (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/client/sounds/SoundManager/m_120389_ (Z)V net/minecraft/client/sounds/SoundManager/tick (Z)V +MD: net/minecraft/client/sounds/SoundManager/m_120391_ ()V net/minecraft/client/sounds/SoundManager/pause ()V +MD: net/minecraft/client/sounds/SoundManager/m_120399_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundManager/stop (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundManager/m_120401_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundManager/removeListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundManager/m_120403_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundManager/isActive (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundManager/m_120405_ ()V net/minecraft/client/sounds/SoundManager/stop ()V +MD: net/minecraft/client/sounds/SoundManager/m_120406_ ()V net/minecraft/client/sounds/SoundManager/destroy ()V +MD: net/minecraft/client/sounds/SoundManager/m_120407_ ()V net/minecraft/client/sounds/SoundManager/resume ()V +MD: net/minecraft/client/sounds/SoundManager/m_120408_ ()Ljava/lang/String; net/minecraft/client/sounds/SoundManager/getDebugString ()Ljava/lang/String; +MD: net/minecraft/client/sounds/SoundManager/m_194525_ ()Ljava/util/List; net/minecraft/client/sounds/SoundManager/getAvailableSoundDevices ()Ljava/util/List; +MD: net/minecraft/client/sounds/SoundManager/m_194526_ ()V net/minecraft/client/sounds/SoundManager/reload ()V +MD: net/minecraft/client/sounds/SoundManager/m_247403_ (Lnet/minecraft/client/resources/sounds/Sound;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceProvider;)Z net/minecraft/client/sounds/SoundManager/validateSoundResource (Lnet/minecraft/client/resources/sounds/Sound;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceProvider;)Z +MD: net/minecraft/client/sounds/SoundManager/m_5787_ (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/sounds/SoundManager/apply (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/sounds/SoundManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/sounds/SoundManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/sounds/SoundManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/sounds/SoundManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/SoundManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/sounds/SoundManager$Preparations; net/minecraft/client/sounds/SoundManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/sounds/SoundManager$Preparations; +MD: net/minecraft/client/sounds/SoundManager$1/ ()V net/minecraft/client/sounds/SoundManager$1/ ()V +MD: net/minecraft/client/sounds/SoundManager$2/ ()V net/minecraft/client/sounds/SoundManager$2/ ()V +MD: net/minecraft/client/sounds/SoundManager$Preparations/ ()V net/minecraft/client/sounds/SoundManager$Preparations/ ()V +MD: net/minecraft/client/sounds/SoundManager$Preparations/m_245281_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/sounds/SoundManager$Preparations/listResources (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations/m_245937_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/SoundManager$Preparations/apply (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations/m_246105_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/SoundEventRegistration;)V net/minecraft/client/sounds/SoundManager$Preparations/handleRegistration (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/SoundEventRegistration;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/ (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/Sound;)V net/minecraft/client/sounds/SoundManager$Preparations$1/ (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/Sound;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_213718_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/sounds/SoundManager$Preparations$1/getSound (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/sounds/SoundManager$Preparations$1/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_7789_ ()I net/minecraft/client/sounds/SoundManager$Preparations$1/getWeight ()I +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/SoundManager$Preparations$1/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/sounds/WeighedSoundEvents/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/sounds/WeighedSoundEvents/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_120451_ (Lnet/minecraft/client/sounds/Weighted;)V net/minecraft/client/sounds/WeighedSoundEvents/addSound (Lnet/minecraft/client/sounds/Weighted;)V +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_120453_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/sounds/WeighedSoundEvents/getSubtitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_213718_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/sounds/WeighedSoundEvents/getSound (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/sounds/WeighedSoundEvents/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_7789_ ()I net/minecraft/client/sounds/WeighedSoundEvents/getWeight ()I +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/WeighedSoundEvents/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/sounds/Weighted/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/sounds/Weighted/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/Weighted/m_7789_ ()I net/minecraft/client/sounds/Weighted/getWeight ()I +MD: net/minecraft/client/sounds/Weighted/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/Weighted/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/ ()V net/minecraft/client/telemetry/ClientTelemetryManager/ ()V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;)V net/minecraft/client/telemetry/ClientTelemetryManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/close ()V net/minecraft/client/telemetry/ClientTelemetryManager/close ()V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260838_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$new$2 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260841_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$new$1 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260868_ (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/client/telemetry/ClientTelemetryManager/lambda$static$0 (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260879_ (Ljava/util/Optional;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$4 (Ljava/util/Optional;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260889_ (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$6 (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260914_ ()Ljava/nio/file/Path; net/minecraft/client/telemetry/ClientTelemetryManager/getLogDirectory ()Ljava/nio/file/Path; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260933_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$3 ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260999_ (Ljava/util/Optional;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$close$7 (Ljava/util/Optional;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_261052_ ()Lnet/minecraft/client/telemetry/TelemetryEventSender; net/minecraft/client/telemetry/ClientTelemetryManager/createEventSender ()Lnet/minecraft/client/telemetry/TelemetryEventSender; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_261089_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;Lcom/mojang/authlib/minecraft/TelemetrySession;Ljava/util/Optional;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$5 (Lnet/minecraft/client/telemetry/TelemetryEventInstance;Lcom/mojang/authlib/minecraft/TelemetrySession;Ljava/util/Optional;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_285963_ ()Lnet/minecraft/client/telemetry/TelemetryEventSender; net/minecraft/client/telemetry/ClientTelemetryManager/getOutsideSessionSender ()Lnet/minecraft/client/telemetry/TelemetryEventSender; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_285995_ (ZLjava/time/Duration;Ljava/lang/String;)Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager; net/minecraft/client/telemetry/ClientTelemetryManager/createWorldSessionManager (ZLjava/time/Duration;Ljava/lang/String;)Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/ ()V net/minecraft/client/telemetry/TelemetryEventInstance/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventInstance/ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)V net/minecraft/client/telemetry/TelemetryEventInstance/ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)V +MD: net/minecraft/client/telemetry/TelemetryEventInstance/equals (Ljava/lang/Object;)Z net/minecraft/client/telemetry/TelemetryEventInstance/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260460_ ()Lnet/minecraft/client/telemetry/TelemetryEventType; net/minecraft/client/telemetry/TelemetryEventInstance/type ()Lnet/minecraft/client/telemetry/TelemetryEventType; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260563_ ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; net/minecraft/client/telemetry/TelemetryEventInstance/properties ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/hashCode ()I net/minecraft/client/telemetry/TelemetryEventInstance/hashCode ()I +MD: net/minecraft/client/telemetry/TelemetryEventInstance/m_260898_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryProperty;)V net/minecraft/client/telemetry/TelemetryEventInstance/lambda$new$0 (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryProperty;)V +MD: net/minecraft/client/telemetry/TelemetryEventInstance/m_261105_ (Lcom/mojang/authlib/minecraft/TelemetrySession;)Lcom/mojang/authlib/minecraft/TelemetryEvent; net/minecraft/client/telemetry/TelemetryEventInstance/export (Lcom/mojang/authlib/minecraft/TelemetrySession;)Lcom/mojang/authlib/minecraft/TelemetryEvent; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventInstance/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventLog/ ()V net/minecraft/client/telemetry/TelemetryEventLog/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventLog/ (Ljava/nio/channels/FileChannel;Ljava/util/concurrent/Executor;)V net/minecraft/client/telemetry/TelemetryEventLog/ (Ljava/nio/channels/FileChannel;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/telemetry/TelemetryEventLog/close ()V net/minecraft/client/telemetry/TelemetryEventLog/close ()V +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_260910_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V net/minecraft/client/telemetry/TelemetryEventLog/lambda$logger$0 (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_261088_ ()Lnet/minecraft/client/telemetry/TelemetryEventLogger; net/minecraft/client/telemetry/TelemetryEventLog/logger ()Lnet/minecraft/client/telemetry/TelemetryEventLogger; +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_261095_ ()V net/minecraft/client/telemetry/TelemetryEventLog/lambda$close$2 ()V +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_261271_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V net/minecraft/client/telemetry/TelemetryEventLog/lambda$logger$1 (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V +MD: net/minecraft/client/telemetry/TelemetryEventLogger/m_260877_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V net/minecraft/client/telemetry/TelemetryEventLogger/log (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/ ()V net/minecraft/client/telemetry/TelemetryEventSender/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_260869_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/TelemetryEventSender/lambda$static$0 (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_260919_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/TelemetryEventSender/send (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_261129_ (Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/TelemetryEventSender/lambda$decorate$2 (Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_261189_ (Ljava/util/function/Consumer;)Lnet/minecraft/client/telemetry/TelemetryEventSender; net/minecraft/client/telemetry/TelemetryEventSender/decorate (Ljava/util/function/Consumer;)Lnet/minecraft/client/telemetry/TelemetryEventSender; +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_261277_ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/TelemetryEventSender/lambda$decorate$1 (Ljava/util/function/Consumer;Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/TelemetryEventType/ ()V net/minecraft/client/telemetry/TelemetryEventType/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventType/ (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Z)V net/minecraft/client/telemetry/TelemetryEventType/ (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Z)V +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260811_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryEventType/makeTranslation (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260839_ ()Z net/minecraft/client/telemetry/TelemetryEventType/isOptIn ()Z +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260927_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventType/id ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260935_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryEventType/description ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260992_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Z net/minecraft/client/telemetry/TelemetryEventType/contains (Lnet/minecraft/client/telemetry/TelemetryProperty;)Z +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261110_ (Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lcom/mojang/authlib/minecraft/TelemetryEvent; net/minecraft/client/telemetry/TelemetryEventType/export (Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lcom/mojang/authlib/minecraft/TelemetryEvent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261115_ ()Ljava/util/List; net/minecraft/client/telemetry/TelemetryEventType/values ()Ljava/util/List; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261184_ ()Ljava/util/List; net/minecraft/client/telemetry/TelemetryEventType/properties ()Ljava/util/List; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261283_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/telemetry/TelemetryEventType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261290_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryEventType/title ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261291_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryEventInstance; net/minecraft/client/telemetry/TelemetryEventType/lambda$new$2 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryEventInstance; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261309_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType/builder (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_274009_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/client/telemetry/TelemetryEventType/lambda$static$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_274010_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventType/lambda$static$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventType/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventType/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/telemetry/TelemetryEventType$Builder/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_260803_ ()Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType$Builder/optIn ()Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_260878_ ()Lnet/minecraft/client/telemetry/TelemetryEventType; net/minecraft/client/telemetry/TelemetryEventType$Builder/register ()Lnet/minecraft/client/telemetry/TelemetryEventType; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_261219_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType$Builder/define (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_261244_ (Ljava/util/List;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType$Builder/defineAll (Ljava/util/List;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryLogManager/ ()V net/minecraft/client/telemetry/TelemetryLogManager/ ()V +MD: net/minecraft/client/telemetry/TelemetryLogManager/ (Lnet/minecraft/util/eventlog/EventLogDirectory;)V net/minecraft/client/telemetry/TelemetryLogManager/ (Lnet/minecraft/util/eventlog/EventLogDirectory;)V +MD: net/minecraft/client/telemetry/TelemetryLogManager/close ()V net/minecraft/client/telemetry/TelemetryLogManager/close ()V +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_260856_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/telemetry/TelemetryLogManager/openLogger ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_260905_ (Ljava/util/Optional;)V net/minecraft/client/telemetry/TelemetryLogManager/lambda$close$3 (Ljava/util/Optional;)V +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_260940_ ()Ljava/util/Optional; net/minecraft/client/telemetry/TelemetryLogManager/lambda$openLogger$1 ()Ljava/util/Optional; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_261021_ (Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/client/telemetry/TelemetryLogManager/lambda$openLogger$2 (Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_261065_ (Ljava/nio/file/Path;)Ljava/util/Optional; net/minecraft/client/telemetry/TelemetryLogManager/lambda$open$0 (Ljava/nio/file/Path;)Ljava/util/Optional; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_261252_ (Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/telemetry/TelemetryLogManager/open (Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/telemetry/TelemetryProperty/ ()V net/minecraft/client/telemetry/TelemetryProperty/ ()V +MD: net/minecraft/client/telemetry/TelemetryProperty/ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)V net/minecraft/client/telemetry/TelemetryProperty/ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/equals (Ljava/lang/Object;)Z net/minecraft/client/telemetry/TelemetryProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260588_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty/exportKey ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260625_ ()Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter; net/minecraft/client/telemetry/TelemetryProperty/exporter ()Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter; +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260687_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty/id ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260706_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/telemetry/TelemetryProperty/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/telemetry/TelemetryProperty/hashCode ()I net/minecraft/client/telemetry/TelemetryProperty/hashCode ()I +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260806_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$static$2 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260816_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$static$0 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260851_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/uuid (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260862_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lit/unimi/dsi/fastutil/longs/LongList;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$longSamples$5 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lit/unimi/dsi/fastutil/longs/LongList;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261074_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/string (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261080_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/time/Instant;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$static$1 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/time/Instant;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261124_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;)V net/minecraft/client/telemetry/TelemetryProperty/export (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261145_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/util/UUID;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$uuid$3 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/util/UUID;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261147_ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/create (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261193_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/bool (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261229_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryProperty/title ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261234_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/integer (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261255_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/longSamples (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_285707_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$gameLoadMeasurement$4 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_285885_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/gameLoadMeasurement (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_286063_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/makeLong (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty$Exporter/m_261109_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/client/telemetry/TelemetryProperty$Exporter/apply (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/ ()V net/minecraft/client/telemetry/TelemetryProperty$GameMode/ ()V +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/ (Ljava/lang/String;ILjava/lang/String;I)V net/minecraft/client/telemetry/TelemetryProperty$GameMode/ (Ljava/lang/String;ILjava/lang/String;I)V +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/m_260807_ ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; net/minecraft/client/telemetry/TelemetryProperty$GameMode/$values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/m_261006_ ()I net/minecraft/client/telemetry/TelemetryProperty$GameMode/id ()I +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/m_7912_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty$GameMode/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; net/minecraft/client/telemetry/TelemetryProperty$GameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; net/minecraft/client/telemetry/TelemetryProperty$GameMode/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/ ()V net/minecraft/client/telemetry/TelemetryProperty$ServerType/ ()V +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/telemetry/TelemetryProperty$ServerType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/m_261195_ ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/TelemetryProperty$ServerType/$values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/m_7912_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty$ServerType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/TelemetryProperty$ServerType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/TelemetryProperty$ServerType/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/ (Ljava/util/Map;)V net/minecraft/client/telemetry/TelemetryPropertyMap/ (Ljava/util/Map;)V +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_260858_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Ljava/lang/Object; net/minecraft/client/telemetry/TelemetryPropertyMap/get (Lnet/minecraft/client/telemetry/TelemetryProperty;)Ljava/lang/Object; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_260904_ ()Ljava/util/Set; net/minecraft/client/telemetry/TelemetryPropertyMap/propertySet ()Ljava/util/Set; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_261042_ (Ljava/util/List;)Lcom/mojang/serialization/Codec; net/minecraft/client/telemetry/TelemetryPropertyMap/createCodec (Ljava/util/List;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_261098_ ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap/builder ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryPropertyMap/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/ (Ljava/util/List;)V net/minecraft/client/telemetry/TelemetryPropertyMap$1/ (Ljava/util/List;)V +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/client/telemetry/TelemetryPropertyMap$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/client/telemetry/TelemetryPropertyMap$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/m_260915_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/encodeProperty (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/m_260959_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/lambda$decodeProperty$0 (Lnet/minecraft/client/telemetry/TelemetryProperty;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/m_261041_ (Lcom/mojang/serialization/DataResult;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/DataResult; net/minecraft/client/telemetry/TelemetryPropertyMap$1/decodeProperty (Lcom/mojang/serialization/DataResult;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/ ()V net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/ ()V +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_260832_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/putAll (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_260981_ ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/build ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_261137_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/put (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_285763_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/putIfNotNull (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/ (Lnet/minecraft/client/telemetry/TelemetryEventSender;ZLjava/time/Duration;Ljava/lang/String;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/ (Lnet/minecraft/client/telemetry/TelemetryEventSender;ZLjava/time/Duration;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_260888_ (Lnet/minecraft/world/level/GameType;Z)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onPlayerInfoReceived (Lnet/minecraft/world/level/GameType;Z)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_260912_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/lambda$new$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_260918_ (Ljava/lang/String;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onServerBrandReceived (Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261027_ ()V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onDisconnect ()V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261056_ ()V net/minecraft/client/telemetry/WorldSessionTelemetryManager/tick ()V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261141_ ()V net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldSessionStart ()V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261206_ (J)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/setTime (J)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_285708_ (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/lambda$onAdvancementDone$1 (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_286034_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onAdvancementDone (Lnet/minecraft/world/level/Level;Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/ ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_260819_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/sendEvent (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_260835_ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/takeSample ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_260947_ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/start ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261091_ ()I net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/getSampleCount ()I +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261168_ ()Z net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/shouldTakeSample ()Z +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261217_ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/stop ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261228_ ()Z net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/shouldSentEvent ()Z +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_263206_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/tick (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/ ()V net/minecraft/client/telemetry/events/GameLoadTimesEvent/ ()V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/ (Lcom/google/common/base/Ticker;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/ (Lcom/google/common/base/Ticker;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285762_ (Lcom/google/common/base/Stopwatch;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$beginStep$1 (Lcom/google/common/base/Stopwatch;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285833_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/beginStep (Lnet/minecraft/client/telemetry/TelemetryProperty;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285850_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$send$2 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285883_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$send$4 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285901_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/endStep (Lnet/minecraft/client/telemetry/TelemetryProperty;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285921_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;J)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$send$3 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;J)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285937_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/util/function/Function;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/beginStep (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/util/function/Function;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285977_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/beginStep (Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_286017_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$beginStep$0 (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_286019_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_286069_ (J)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/setBootstrapTime (J)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ ()V net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ ()V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ (I)V net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ (I)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/equals (Ljava/lang/Object;)Z net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/f_285578_ ()I net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/millis ()I +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/hashCode ()I net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/hashCode ()I +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/m_285895_ (Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)Ljava/lang/Integer; net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/lambda$static$0 (Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)Ljava/lang/Integer; +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/toString ()Ljava/lang/String; net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_260818_ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/resetValues ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_260819_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/sendEvent (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_260835_ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/takeSample ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_261164_ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/takeUsedMemorySample ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_261179_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/lambda$sendEvent$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_261284_ (J)J net/minecraft/client/telemetry/events/PerformanceMetricsEvent/toKilobytes (J)J +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_263206_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/tick (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/ (Ljava/lang/String;)V net/minecraft/client/telemetry/events/WorldLoadEvent/ (Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_260799_ (Lnet/minecraft/world/level/GameType;Z)V net/minecraft/client/telemetry/events/WorldLoadEvent/setGameMode (Lnet/minecraft/world/level/GameType;Z)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_261084_ (Ljava/lang/String;)V net/minecraft/client/telemetry/events/WorldLoadEvent/setServerBrand (Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_261131_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldLoadEvent/addProperties (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_261317_ ()Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/events/WorldLoadEvent/getServerType ()Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_263210_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)Z net/minecraft/client/telemetry/events/WorldLoadEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)Z +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_285709_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldLoadEvent/lambda$send$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent$1/ ()V net/minecraft/client/telemetry/events/WorldLoadEvent$1/ ()V +MD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/ (ZLjava/time/Duration;)V net/minecraft/client/telemetry/events/WorldLoadTimesEvent/ (ZLjava/time/Duration;)V +MD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/m_261125_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/WorldLoadTimesEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/m_261266_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldLoadTimesEvent/lambda$send$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/ ()V net/minecraft/client/telemetry/events/WorldUnloadEvent/ ()V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_260890_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;Ljava/time/Instant;)V net/minecraft/client/telemetry/events/WorldUnloadEvent/lambda$send$1 (Lnet/minecraft/client/telemetry/TelemetryEventSender;Ljava/time/Instant;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_260941_ (J)V net/minecraft/client/telemetry/events/WorldUnloadEvent/setTime (J)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_260990_ (Ljava/time/Instant;)I net/minecraft/client/telemetry/events/WorldUnloadEvent/getTimeInSecondsSinceLoad (Ljava/time/Instant;)I +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_261287_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/WorldUnloadEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_261297_ (Ljava/time/Instant;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldUnloadEvent/lambda$send$0 (Ljava/time/Instant;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_263234_ ()V net/minecraft/client/telemetry/events/WorldUnloadEvent/onPlayerInfoReceived ()V +MD: net/minecraft/client/tutorial/BundleTutorial/ (Lnet/minecraft/client/tutorial/Tutorial;Lnet/minecraft/client/Options;)V net/minecraft/client/tutorial/BundleTutorial/ (Lnet/minecraft/client/tutorial/Tutorial;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/tutorial/BundleTutorial/m_175005_ ()V net/minecraft/client/tutorial/BundleTutorial/showToast ()V +MD: net/minecraft/client/tutorial/BundleTutorial/m_175006_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/client/tutorial/BundleTutorial/onInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/client/tutorial/BundleTutorial/m_175010_ ()V net/minecraft/client/tutorial/BundleTutorial/clearToast ()V +MD: net/minecraft/client/tutorial/CompletedTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/CompletedTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/ ()V net/minecraft/client/tutorial/CraftPlanksTutorialStep/ ()V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/CraftPlanksTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_205662_ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/tags/TagKey;)Z net/minecraft/client/tutorial/CraftPlanksTutorialStep/hasCraftedPlanksPreviously (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/CraftPlanksTutorialStep/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_7736_ ()V net/minecraft/client/tutorial/CraftPlanksTutorialStep/clear ()V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_7737_ ()V net/minecraft/client/tutorial/CraftPlanksTutorialStep/tick ()V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ ()V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ ()V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_120503_ (Lnet/minecraft/client/player/LocalPlayer;)Z net/minecraft/client/tutorial/FindTreeTutorialStepInstance/hasPunchedTreesPreviously (Lnet/minecraft/client/player/LocalPlayer;)Z +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_235269_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/tutorial/FindTreeTutorialStepInstance/lambda$hasCollectedTreeItems$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_235271_ (Lnet/minecraft/client/player/LocalPlayer;)Z net/minecraft/client/tutorial/FindTreeTutorialStepInstance/hasCollectedTreeItems (Lnet/minecraft/client/player/LocalPlayer;)Z +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_7554_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/onLookAt (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/ ()V net/minecraft/client/tutorial/MovementTutorialStepInstance/ ()V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/MovementTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_6420_ (DD)V net/minecraft/client/tutorial/MovementTutorialStepInstance/onMouse (DD)V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_6484_ (Lnet/minecraft/client/player/Input;)V net/minecraft/client/tutorial/MovementTutorialStepInstance/onInput (Lnet/minecraft/client/player/Input;)V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/MovementTutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/MovementTutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/ ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/OpenInventoryTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/m_7736_ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/clear ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/m_7737_ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/tick ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/m_7744_ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/onOpenInventory ()V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ ()V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ ()V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_7464_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/onDestroyBlock (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/Tutorial/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/Options;)V net/minecraft/client/tutorial/Tutorial/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120564_ ()V net/minecraft/client/tutorial/Tutorial/onOpenInventory ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120565_ (DD)V net/minecraft/client/tutorial/Tutorial/onMouse (DD)V +MD: net/minecraft/client/tutorial/Tutorial/m_120568_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/Tutorial/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120570_ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;)V net/minecraft/client/tutorial/Tutorial/removeTimedToast (Lnet/minecraft/client/gui/components/toasts/TutorialToast;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120572_ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V net/minecraft/client/tutorial/Tutorial/addTimedToast (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V +MD: net/minecraft/client/tutorial/Tutorial/m_120575_ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;Lnet/minecraft/client/tutorial/Tutorial$TimedToast;)Z net/minecraft/client/tutorial/Tutorial/lambda$removeTimedToast$0 (Lnet/minecraft/client/gui/components/toasts/TutorialToast;Lnet/minecraft/client/tutorial/Tutorial$TimedToast;)Z +MD: net/minecraft/client/tutorial/Tutorial/m_120578_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/tutorial/Tutorial/onLookAt (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120581_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/client/tutorial/Tutorial/onDestroyBlock (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/client/tutorial/Tutorial/m_120586_ (Lnet/minecraft/client/player/Input;)V net/minecraft/client/tutorial/Tutorial/onInput (Lnet/minecraft/client/player/Input;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120588_ (Lnet/minecraft/client/tutorial/TutorialSteps;)V net/minecraft/client/tutorial/Tutorial/setStep (Lnet/minecraft/client/tutorial/TutorialSteps;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120592_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/tutorial/Tutorial/key (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/tutorial/Tutorial/m_120594_ ()V net/minecraft/client/tutorial/Tutorial/stop ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120595_ ()V net/minecraft/client/tutorial/Tutorial/start ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120596_ ()V net/minecraft/client/tutorial/Tutorial/tick ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120597_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/tutorial/Tutorial/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/tutorial/Tutorial/m_175024_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/client/tutorial/Tutorial/onInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/client/tutorial/Tutorial/m_175028_ ()Z net/minecraft/client/tutorial/Tutorial/isSurvival ()Z +MD: net/minecraft/client/tutorial/Tutorial$TimedToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V net/minecraft/client/tutorial/Tutorial$TimedToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V +MD: net/minecraft/client/tutorial/Tutorial$TimedToast/m_120609_ ()Z net/minecraft/client/tutorial/Tutorial$TimedToast/updateProgress ()Z +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_6420_ (DD)V net/minecraft/client/tutorial/TutorialStepInstance/onMouse (DD)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_6484_ (Lnet/minecraft/client/player/Input;)V net/minecraft/client/tutorial/TutorialStepInstance/onInput (Lnet/minecraft/client/player/Input;)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/TutorialStepInstance/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7464_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/client/tutorial/TutorialStepInstance/onDestroyBlock (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7554_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/tutorial/TutorialStepInstance/onLookAt (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/TutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/TutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7744_ ()V net/minecraft/client/tutorial/TutorialStepInstance/onOpenInventory ()V +MD: net/minecraft/client/tutorial/TutorialSteps/ ()V net/minecraft/client/tutorial/TutorialSteps/ ()V +MD: net/minecraft/client/tutorial/TutorialSteps/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Function;)V net/minecraft/client/tutorial/TutorialSteps/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/client/tutorial/TutorialSteps/m_120639_ ()Ljava/lang/String; net/minecraft/client/tutorial/TutorialSteps/getName ()Ljava/lang/String; +MD: net/minecraft/client/tutorial/TutorialSteps/m_120640_ (Lnet/minecraft/client/tutorial/Tutorial;)Lnet/minecraft/client/tutorial/TutorialStepInstance; net/minecraft/client/tutorial/TutorialSteps/create (Lnet/minecraft/client/tutorial/Tutorial;)Lnet/minecraft/client/tutorial/TutorialStepInstance; +MD: net/minecraft/client/tutorial/TutorialSteps/m_120642_ (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/getByName (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/client/tutorial/TutorialSteps/m_175029_ ()[Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/$values ()[Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/client/tutorial/TutorialSteps/valueOf (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/valueOf (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/client/tutorial/TutorialSteps/values ()[Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/values ()[Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/commands/BrigadierExceptions/ ()V net/minecraft/commands/BrigadierExceptions/ ()V +MD: net/minecraft/commands/BrigadierExceptions/ ()V net/minecraft/commands/BrigadierExceptions/ ()V +MD: net/minecraft/commands/BrigadierExceptions/dispatcherExpectedArgumentSeparator ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherExpectedArgumentSeparator ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/dispatcherParseException ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherParseException ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/dispatcherUnknownArgument ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherUnknownArgument ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/dispatcherUnknownCommand ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherUnknownCommand ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/doubleTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/doubleTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/doubleTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/doubleTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/floatTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/floatTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/floatTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/floatTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/integerTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/integerTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/integerTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/integerTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/literalIncorrect ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/literalIncorrect ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/longTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/longTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/longTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/longTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/m_77157_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$16 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77159_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$7 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77162_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$15 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77164_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$6 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77167_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$14 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77169_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$5 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77172_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$13 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77174_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$4 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77183_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$12 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77185_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77188_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$11 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77190_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77195_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$10 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77197_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77200_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$9 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77202_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77205_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$8 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedBool ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedBool ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedDouble ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedDouble ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedEndOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedEndOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedFloat ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedFloat ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedInt ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedInt ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedLong ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedLong ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedStartOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedStartOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedSymbol ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedSymbol ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidBool ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidBool ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidDouble ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidDouble ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidEscape ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidEscape ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidFloat ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidFloat ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidInt ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidInt ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidLong ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidLong ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/CommandBuildContext/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/CommandBuildContext/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/CommandBuildContext/m_255409_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext$Configurable; net/minecraft/commands/CommandBuildContext/configurable (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext$Configurable; +MD: net/minecraft/commands/CommandBuildContext/m_255418_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext; net/minecraft/commands/CommandBuildContext/simple (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext; +MD: net/minecraft/commands/CommandBuildContext$1/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/commands/CommandBuildContext$1/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/commands/CommandBuildContext$1/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/CommandBuildContext$1/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/CommandBuildContext$2/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/commands/CommandBuildContext$2/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/commands/CommandBuildContext$2/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/CommandBuildContext$2/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/CommandBuildContext$2/m_254905_ (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V net/minecraft/commands/CommandBuildContext$2/missingTagAccessPolicy (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V +MD: net/minecraft/commands/CommandBuildContext$2$1/ (Lnet/minecraft/commands/CommandBuildContext$2;Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/commands/CommandBuildContext$2$1/ (Lnet/minecraft/commands/CommandBuildContext$2;Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/commands/CommandBuildContext$2$1/m_254893_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/commands/CommandBuildContext$2$1/parent ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/commands/CommandBuildContext$3/ ()V net/minecraft/commands/CommandBuildContext$3/ ()V +MD: net/minecraft/commands/CommandBuildContext$Configurable/m_254905_ (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V net/minecraft/commands/CommandBuildContext$Configurable/missingTagAccessPolicy (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ ()V net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ ()V +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ (Ljava/lang/String;I)V net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ (Ljava/lang/String;I)V +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/m_227153_ ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/$values ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/values ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/values ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +MD: net/minecraft/commands/CommandFunction/ (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/commands/CommandFunction$Entry;)V net/minecraft/commands/CommandFunction/ (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/commands/CommandFunction$Entry;)V +MD: net/minecraft/commands/CommandFunction/m_77981_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/CommandFunction/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/CommandFunction/m_77984_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)Lnet/minecraft/commands/CommandFunction; net/minecraft/commands/CommandFunction/fromLines (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)Lnet/minecraft/commands/CommandFunction; +MD: net/minecraft/commands/CommandFunction/m_77989_ ()[Lnet/minecraft/commands/CommandFunction$Entry; net/minecraft/commands/CommandFunction/getEntries ()[Lnet/minecraft/commands/CommandFunction$Entry; +MD: net/minecraft/commands/CommandFunction$CacheableFunction/ ()V net/minecraft/commands/CommandFunction$CacheableFunction/ ()V +MD: net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/commands/CommandFunction;)V net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/CommandFunction$CacheableFunction/m_77999_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/CommandFunction$CacheableFunction/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/CommandFunction$CacheableFunction/m_78000_ (Lnet/minecraft/commands/CommandFunction;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/CommandFunction$CacheableFunction/lambda$getId$0 (Lnet/minecraft/commands/CommandFunction;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/CommandFunction$CacheableFunction/m_78002_ (Lnet/minecraft/server/ServerFunctionManager;)Ljava/util/Optional; net/minecraft/commands/CommandFunction$CacheableFunction/get (Lnet/minecraft/server/ServerFunctionManager;)Ljava/util/Optional; +MD: net/minecraft/commands/CommandFunction$CommandEntry/ (Lcom/mojang/brigadier/ParseResults;)V net/minecraft/commands/CommandFunction$CommandEntry/ (Lcom/mojang/brigadier/ParseResults;)V +MD: net/minecraft/commands/CommandFunction$CommandEntry/m_142134_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/commands/CommandFunction$CommandEntry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/commands/CommandFunction$CommandEntry/m_164875_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/commands/CommandFunction$CommandEntry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/commands/CommandFunction$CommandEntry/m_242679_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandFunction$CommandEntry/lambda$execute$0 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandFunction$CommandEntry/toString ()Ljava/lang/String; net/minecraft/commands/CommandFunction$CommandEntry/toString ()Ljava/lang/String; +MD: net/minecraft/commands/CommandFunction$Entry/m_142134_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/commands/CommandFunction$Entry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/ (Lnet/minecraft/commands/CommandFunction;)V net/minecraft/commands/CommandFunction$FunctionEntry/ (Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/m_142134_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/commands/CommandFunction$FunctionEntry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/m_164891_ (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;I)V net/minecraft/commands/CommandFunction$FunctionEntry/lambda$execute$1 (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;I)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/m_164894_ (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;IILjava/util/Deque;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandFunction;)V net/minecraft/commands/CommandFunction$FunctionEntry/lambda$execute$0 (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;IILjava/util/Deque;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/toString ()Ljava/lang/String; net/minecraft/commands/CommandFunction$FunctionEntry/toString ()Ljava/lang/String; +MD: net/minecraft/commands/CommandRuntimeException/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandRuntimeException/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandRuntimeException/m_79226_ ()Lnet/minecraft/network/chat/Component; net/minecraft/commands/CommandRuntimeException/getComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/CommandSigningContext/ ()V net/minecraft/commands/CommandSigningContext/ ()V +MD: net/minecraft/commands/CommandSigningContext/m_213987_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/commands/CommandSigningContext/getArgument (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/commands/CommandSigningContext$1/ ()V net/minecraft/commands/CommandSigningContext$1/ ()V +MD: net/minecraft/commands/CommandSigningContext$1/m_213987_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/commands/CommandSigningContext$1/getArgument (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/ (Ljava/util/Map;)V net/minecraft/commands/CommandSigningContext$SignedArguments/ (Ljava/util/Map;)V +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/equals (Ljava/lang/Object;)Z net/minecraft/commands/CommandSigningContext$SignedArguments/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/f_242498_ ()Ljava/util/Map; net/minecraft/commands/CommandSigningContext$SignedArguments/arguments ()Ljava/util/Map; +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/hashCode ()I net/minecraft/commands/CommandSigningContext$SignedArguments/hashCode ()I +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/m_213987_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/commands/CommandSigningContext$SignedArguments/getArgument (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/toString ()Ljava/lang/String; net/minecraft/commands/CommandSigningContext$SignedArguments/toString ()Ljava/lang/String; +MD: net/minecraft/commands/CommandSource/ ()V net/minecraft/commands/CommandSource/ ()V +MD: net/minecraft/commands/CommandSource/m_142559_ ()Z net/minecraft/commands/CommandSource/alwaysAccepts ()Z +MD: net/minecraft/commands/CommandSource/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSource/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSource/m_6102_ ()Z net/minecraft/commands/CommandSource/shouldInformAdmins ()Z +MD: net/minecraft/commands/CommandSource/m_6999_ ()Z net/minecraft/commands/CommandSource/acceptsSuccess ()Z +MD: net/minecraft/commands/CommandSource/m_7028_ ()Z net/minecraft/commands/CommandSource/acceptsFailure ()Z +MD: net/minecraft/commands/CommandSource$1/ ()V net/minecraft/commands/CommandSource$1/ ()V +MD: net/minecraft/commands/CommandSource$1/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSource$1/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSource$1/m_6102_ ()Z net/minecraft/commands/CommandSource$1/shouldInformAdmins ()Z +MD: net/minecraft/commands/CommandSource$1/m_6999_ ()Z net/minecraft/commands/CommandSource$1/acceptsSuccess ()Z +MD: net/minecraft/commands/CommandSource$1/m_7028_ ()Z net/minecraft/commands/CommandSource$1/acceptsFailure ()Z +MD: net/minecraft/commands/CommandSourceStack/ ()V net/minecraft/commands/CommandSourceStack/ ()V +MD: net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;ZLcom/mojang/brigadier/ResultConsumer;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/util/TaskChainer;Ljava/util/function/IntConsumer;)V net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;ZLcom/mojang/brigadier/ResultConsumer;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/util/TaskChainer;Ljava/util/function/IntConsumer;)V +MD: net/minecraft/commands/CommandSourceStack/m_165484_ (Lnet/minecraft/commands/CommandSource;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withSource (Lnet/minecraft/commands/CommandSource;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_212095_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/CommandSourceStack/suggestRegistryElements (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/CommandSourceStack/m_212155_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/CommandSourceStack/customSuggestion (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/CommandSourceStack/m_212325_ (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/CommandSourceStack/lambda$suggestRegistryElements$2 (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/CommandSourceStack/m_230893_ (Lnet/minecraft/commands/CommandSigningContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withSigningContext (Lnet/minecraft/commands/CommandSigningContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_230896_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/CommandSourceStack/getPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/CommandSourceStack/m_230897_ ()Z net/minecraft/commands/CommandSourceStack/isPlayer ()Z +MD: net/minecraft/commands/CommandSourceStack/m_230898_ ()Lnet/minecraft/commands/CommandSigningContext; net/minecraft/commands/CommandSourceStack/getSigningContext ()Lnet/minecraft/commands/CommandSigningContext; +MD: net/minecraft/commands/CommandSourceStack/m_241923_ ()Lnet/minecraft/util/TaskChainer; net/minecraft/commands/CommandSourceStack/getChatMessageChainer ()Lnet/minecraft/util/TaskChainer; +MD: net/minecraft/commands/CommandSourceStack/m_241952_ (Lnet/minecraft/util/TaskChainer;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withChatMessageChainer (Lnet/minecraft/util/TaskChainer;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_243053_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSourceStack/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSourceStack/m_243061_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/commands/CommandSourceStack/shouldFilterMessageTo (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/commands/CommandSourceStack/m_245239_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/commands/CommandSourceStack/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/commands/CommandSourceStack/m_246719_ (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/commands/CommandSourceStack/sendChatMessage (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/commands/CommandSourceStack/m_279866_ (I)V net/minecraft/commands/CommandSourceStack/lambda$new$1 (I)V +MD: net/minecraft/commands/CommandSourceStack/m_280336_ ()Ljava/util/function/IntConsumer; net/minecraft/commands/CommandSourceStack/getReturnValueConsumer ()Ljava/util/function/IntConsumer; +MD: net/minecraft/commands/CommandSourceStack/m_280439_ (Ljava/util/function/IntConsumer;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withReturnValueConsumer (Ljava/util/function/IntConsumer;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_288197_ (Ljava/util/function/Supplier;Z)V net/minecraft/commands/CommandSourceStack/sendSuccess (Ljava/util/function/Supplier;Z)V +MD: net/minecraft/commands/CommandSourceStack/m_5894_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/commands/CommandSourceStack/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/commands/CommandSourceStack/m_5982_ ()Ljava/util/Collection; net/minecraft/commands/CommandSourceStack/getOnlinePlayerNames ()Ljava/util/Collection; +MD: net/minecraft/commands/CommandSourceStack/m_5983_ ()Ljava/util/Collection; net/minecraft/commands/CommandSourceStack/getAllTeams ()Ljava/util/Collection; +MD: net/minecraft/commands/CommandSourceStack/m_5984_ ()Ljava/util/stream/Stream; net/minecraft/commands/CommandSourceStack/getAvailableSounds ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/CommandSourceStack/m_6553_ ()Ljava/util/Set; net/minecraft/commands/CommandSourceStack/levels ()Ljava/util/Set; +MD: net/minecraft/commands/CommandSourceStack/m_6761_ (I)Z net/minecraft/commands/CommandSourceStack/hasPermission (I)Z +MD: net/minecraft/commands/CommandSourceStack/m_6860_ ()Ljava/util/stream/Stream; net/minecraft/commands/CommandSourceStack/getRecipeNames ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/CommandSourceStack/m_81324_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withSuppressedOutput ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81325_ (I)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withPermission (I)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81327_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withLevel (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81329_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withEntity (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81331_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/facing (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81334_ (Lcom/mojang/brigadier/ResultConsumer;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withCallback (Lcom/mojang/brigadier/ResultConsumer;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81336_ (Lcom/mojang/brigadier/ResultConsumer;Ljava/util/function/BinaryOperator;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withCallback (Lcom/mojang/brigadier/ResultConsumer;Ljava/util/function/BinaryOperator;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81342_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/commands/CommandSourceStack/onCommandComplete (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/commands/CommandSourceStack/m_81346_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withRotation (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81348_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withPosition (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81350_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withAnchor (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81352_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSourceStack/sendFailure (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSourceStack/m_81357_ ()Lnet/minecraft/network/chat/Component; net/minecraft/commands/CommandSourceStack/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/CommandSourceStack/m_81358_ (I)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withMaximumPermission (I)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81360_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/commands/CommandSourceStack/lambda$new$0 (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/commands/CommandSourceStack/m_81364_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/facing (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81366_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSourceStack/broadcastToAdmins (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSourceStack/m_81368_ ()Ljava/lang/String; net/minecraft/commands/CommandSourceStack/getTextName ()Ljava/lang/String; +MD: net/minecraft/commands/CommandSourceStack/m_81371_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/CommandSourceStack/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/CommandSourceStack/m_81372_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/commands/CommandSourceStack/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/commands/CommandSourceStack/m_81373_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/commands/CommandSourceStack/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/CommandSourceStack/m_81374_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/commands/CommandSourceStack/getEntityOrException ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/CommandSourceStack/m_81375_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/CommandSourceStack/getPlayerOrException ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/CommandSourceStack/m_81376_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/CommandSourceStack/getRotation ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/CommandSourceStack/m_81377_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/commands/CommandSourceStack/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/commands/CommandSourceStack/m_81378_ ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/CommandSourceStack/getAnchor ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/Commands/ ()V net/minecraft/commands/Commands/ ()V +MD: net/minecraft/commands/Commands/ (Lnet/minecraft/commands/Commands$CommandSelection;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/Commands/ (Lnet/minecraft/commands/Commands$CommandSelection;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/Commands/m_230945_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Collection;)V net/minecraft/commands/Commands/lambda$validate$7 (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Collection;)V +MD: net/minecraft/commands/Commands/m_230951_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Ljava/lang/String; net/minecraft/commands/Commands/lambda$validate$9 (Lcom/mojang/brigadier/arguments/ArgumentType;)Ljava/lang/String; +MD: net/minecraft/commands/Commands/m_230953_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/commands/Commands/lambda$new$0 (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/commands/Commands/m_230957_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/commands/Commands/performPrefixedCommand (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/commands/Commands/m_230960_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Z net/minecraft/commands/Commands/lambda$validate$8 (Lcom/mojang/brigadier/arguments/ArgumentType;)Z +MD: net/minecraft/commands/Commands/m_230962_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/Commands/lambda$performCommand$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/Commands/m_242611_ (Lcom/mojang/brigadier/ParseResults;Ljava/util/function/UnaryOperator;)Lcom/mojang/brigadier/ParseResults; net/minecraft/commands/Commands/mapSource (Lcom/mojang/brigadier/ParseResults;Ljava/util/function/UnaryOperator;)Lcom/mojang/brigadier/ParseResults; +MD: net/minecraft/commands/Commands/m_242674_ (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)I net/minecraft/commands/Commands/performCommand (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)I +MD: net/minecraft/commands/Commands/m_255082_ (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/commands/CommandBuildContext; net/minecraft/commands/Commands/createValidationContext (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/commands/CommandBuildContext; +MD: net/minecraft/commands/Commands/m_82094_ ()Lcom/mojang/brigadier/CommandDispatcher; net/minecraft/commands/Commands/getDispatcher ()Lcom/mojang/brigadier/CommandDispatcher; +MD: net/minecraft/commands/Commands/m_82095_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/commands/Commands/sendCommands (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/commands/Commands/m_82097_ (Lcom/mojang/brigadier/ParseResults;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/Commands/getParseException (Lcom/mojang/brigadier/ParseResults;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/Commands/m_82101_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/commands/Commands/lambda$fillUsableCommands$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/commands/Commands/m_82112_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Map;)V net/minecraft/commands/Commands/fillUsableCommands (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Map;)V +MD: net/minecraft/commands/Commands/m_82120_ (Lnet/minecraft/commands/Commands$ParseFunction;)Ljava/util/function/Predicate; net/minecraft/commands/Commands/createValidator (Lnet/minecraft/commands/Commands$ParseFunction;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/Commands/m_82122_ (Lnet/minecraft/commands/Commands$ParseFunction;Ljava/lang/String;)Z net/minecraft/commands/Commands/lambda$createValidator$6 (Lnet/minecraft/commands/Commands$ParseFunction;Ljava/lang/String;)Z +MD: net/minecraft/commands/Commands/m_82125_ (Lnet/minecraft/commands/SharedSuggestionProvider;)Z net/minecraft/commands/Commands/lambda$fillUsableCommands$4 (Lnet/minecraft/commands/SharedSuggestionProvider;)Z +MD: net/minecraft/commands/Commands/m_82127_ (Ljava/lang/String;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/commands/Commands/literal (Ljava/lang/String;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/commands/Commands/m_82129_ (Ljava/lang/String;Lcom/mojang/brigadier/arguments/ArgumentType;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; net/minecraft/commands/Commands/argument (Ljava/lang/String;Lcom/mojang/brigadier/arguments/ArgumentType;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; +MD: net/minecraft/commands/Commands/m_82132_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/commands/Commands/lambda$performCommand$2 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/commands/Commands/m_82135_ (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/commands/Commands/lambda$performCommand$3 (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/commands/Commands/m_82138_ ()V net/minecraft/commands/Commands/validate ()V +MD: net/minecraft/commands/Commands$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/commands/Commands$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/commands/Commands$1/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/Commands$1/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/Commands$1$1/ (Lnet/minecraft/commands/Commands$1;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/commands/Commands$1$1/ (Lnet/minecraft/commands/Commands$1;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/commands/Commands$1$1/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/commands/Commands$1$1/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/commands/Commands$1$1/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/commands/Commands$1$1/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/commands/Commands$1$1/m_255396_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/commands/Commands$1$1/lambda$getOrThrow$0 (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/commands/Commands$CommandSelection/ ()V net/minecraft/commands/Commands$CommandSelection/ ()V +MD: net/minecraft/commands/Commands$CommandSelection/ (Ljava/lang/String;IZZ)V net/minecraft/commands/Commands$CommandSelection/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/commands/Commands$CommandSelection/m_165687_ ()[Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/commands/Commands$CommandSelection/$values ()[Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/commands/Commands$CommandSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/commands/Commands$CommandSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/commands/Commands$CommandSelection/values ()[Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/commands/Commands$CommandSelection/values ()[Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/commands/Commands$ParseFunction/m_82160_ (Lcom/mojang/brigadier/StringReader;)V net/minecraft/commands/Commands$ParseFunction/parse (Lcom/mojang/brigadier/StringReader;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_165916_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_205106_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_212095_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestRegistryElements (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_212155_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/customSuggestion (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_212335_ (Lnet/minecraft/core/Registry;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/SharedSuggestionProvider/suggestRegistryElements (Lnet/minecraft/core/Registry;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_240700_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getCustomTabSugggestions ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_245239_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/commands/SharedSuggestionProvider/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5894_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/commands/SharedSuggestionProvider/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5982_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getOnlinePlayerNames ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5983_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getAllTeams ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5984_ ()Ljava/util/stream/Stream; net/minecraft/commands/SharedSuggestionProvider/getAvailableSounds ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6264_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getSelectedEntities ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6265_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getRelevantCoordinates ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6284_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getAbsoluteCoordinates ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6553_ ()Ljava/util/Set; net/minecraft/commands/SharedSuggestionProvider/levels ()Ljava/util/Set; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6761_ (I)Z net/minecraft/commands/SharedSuggestionProvider/hasPermission (I)Z +MD: net/minecraft/commands/SharedSuggestionProvider/m_6860_ ()Ljava/util/stream/Stream; net/minecraft/commands/SharedSuggestionProvider/getRecipeNames ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82914_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$1 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82918_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$4 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82923_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$3 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82926_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82929_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82933_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82938_ (Ljava/lang/Iterable;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V net/minecraft/commands/SharedSuggestionProvider/filterResources (Ljava/lang/Iterable;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82944_ (Ljava/lang/Iterable;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V net/minecraft/commands/SharedSuggestionProvider/filterResources (Ljava/lang/Iterable;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82949_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/commands/SharedSuggestionProvider/matchesSubStr (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/commands/SharedSuggestionProvider/m_82952_ (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestCoordinates (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82957_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82960_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82965_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82967_ ([Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest ([Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82970_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82973_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/commands/SharedSuggestionProvider/lambda$suggest$5 (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/commands/SharedSuggestionProvider/m_82976_ (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest2DCoordinates (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82981_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82984_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ ()V net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ ()V +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ (Ljava/lang/String;I)V net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ (Ljava/lang/String;I)V +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/m_212351_ ()Z net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/shouldSuggestTags ()Z +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/m_212352_ ()Z net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/shouldSuggestElements ()Z +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/m_212353_ ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/$values ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/values ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/values ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +MD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ ()V net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ ()V +MD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/commands/arguments/AngleArgument/ ()V net/minecraft/commands/arguments/AngleArgument/ ()V +MD: net/minecraft/commands/arguments/AngleArgument/ ()V net/minecraft/commands/arguments/AngleArgument/ ()V +MD: net/minecraft/commands/arguments/AngleArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/AngleArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/AngleArgument/m_83807_ ()Lnet/minecraft/commands/arguments/AngleArgument; net/minecraft/commands/arguments/AngleArgument/angle ()Lnet/minecraft/commands/arguments/AngleArgument; +MD: net/minecraft/commands/arguments/AngleArgument/m_83810_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)F net/minecraft/commands/arguments/AngleArgument/getAngle (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)F +MD: net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/AngleArgument$SingleAngle; net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/AngleArgument$SingleAngle; +MD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/ (FZ)V net/minecraft/commands/arguments/AngleArgument$SingleAngle/ (FZ)V +MD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/m_83825_ (Lnet/minecraft/commands/CommandSourceStack;)F net/minecraft/commands/arguments/AngleArgument$SingleAngle/getAngle (Lnet/minecraft/commands/CommandSourceStack;)F +MD: net/minecraft/commands/arguments/ArgumentSignatures/ ()V net/minecraft/commands/arguments/ArgumentSignatures/ ()V +MD: net/minecraft/commands/arguments/ArgumentSignatures/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/ (Ljava/util/List;)V net/minecraft/commands/arguments/ArgumentSignatures/ (Ljava/util/List;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ArgumentSignatures/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ArgumentSignatures/f_240908_ ()Ljava/util/List; net/minecraft/commands/arguments/ArgumentSignatures/entries ()Ljava/util/List; +MD: net/minecraft/commands/arguments/ArgumentSignatures/hashCode ()I net/minecraft/commands/arguments/ArgumentSignatures/hashCode ()I +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_231061_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_240917_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry;)V net/minecraft/commands/arguments/ArgumentSignatures/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_240943_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/commands/arguments/ArgumentSignatures/get (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_244747_ (Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;Lnet/minecraft/network/chat/SignableCommand$Argument;)Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry; net/minecraft/commands/arguments/ArgumentSignatures/lambda$signCommand$1 (Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;Lnet/minecraft/network/chat/SignableCommand$Argument;)Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry; +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_245158_ (Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;)Lnet/minecraft/commands/arguments/ArgumentSignatures; net/minecraft/commands/arguments/ArgumentSignatures/signCommand (Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;)Lnet/minecraft/commands/arguments/ArgumentSignatures; +MD: net/minecraft/commands/arguments/ArgumentSignatures/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ArgumentSignatures/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Ljava/lang/String;Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Ljava/lang/String;Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ArgumentSignatures$Entry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240879_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/commands/arguments/ArgumentSignatures$Entry/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240910_ ()Ljava/lang/String; net/minecraft/commands/arguments/ArgumentSignatures$Entry/name ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/hashCode ()I net/minecraft/commands/arguments/ArgumentSignatures$Entry/hashCode ()I +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/m_241062_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures$Entry/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ArgumentSignatures$Entry/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Signer/m_241068_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/commands/arguments/ArgumentSignatures$Signer/sign (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/commands/arguments/ColorArgument/ ()V net/minecraft/commands/arguments/ColorArgument/ ()V +MD: net/minecraft/commands/arguments/ColorArgument/ ()V net/minecraft/commands/arguments/ColorArgument/ ()V +MD: net/minecraft/commands/arguments/ColorArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ColorArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ColorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ColorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ColorArgument/m_85463_ ()Lnet/minecraft/commands/arguments/ColorArgument; net/minecraft/commands/arguments/ColorArgument/color ()Lnet/minecraft/commands/arguments/ColorArgument; +MD: net/minecraft/commands/arguments/ColorArgument/m_85466_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/ChatFormatting; net/minecraft/commands/arguments/ColorArgument/getColor (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/commands/arguments/ColorArgument/m_85469_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ColorArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/ChatFormatting; net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/commands/arguments/ComponentArgument/ ()V net/minecraft/commands/arguments/ComponentArgument/ ()V +MD: net/minecraft/commands/arguments/ComponentArgument/ ()V net/minecraft/commands/arguments/ComponentArgument/ ()V +MD: net/minecraft/commands/arguments/ComponentArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ComponentArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ComponentArgument/m_87114_ ()Lnet/minecraft/commands/arguments/ComponentArgument; net/minecraft/commands/arguments/ComponentArgument/textComponent ()Lnet/minecraft/commands/arguments/ComponentArgument; +MD: net/minecraft/commands/arguments/ComponentArgument/m_87117_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/ComponentArgument/getComponent (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/ComponentArgument/m_87120_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ComponentArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/CompoundTagArgument/ ()V net/minecraft/commands/arguments/CompoundTagArgument/ ()V +MD: net/minecraft/commands/arguments/CompoundTagArgument/ ()V net/minecraft/commands/arguments/CompoundTagArgument/ ()V +MD: net/minecraft/commands/arguments/CompoundTagArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/CompoundTagArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/CompoundTagArgument/m_87657_ ()Lnet/minecraft/commands/arguments/CompoundTagArgument; net/minecraft/commands/arguments/CompoundTagArgument/compoundTag ()Lnet/minecraft/commands/arguments/CompoundTagArgument; +MD: net/minecraft/commands/arguments/CompoundTagArgument/m_87660_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/CompoundTagArgument/getCompoundTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/DimensionArgument/ ()V net/minecraft/commands/arguments/DimensionArgument/ ()V +MD: net/minecraft/commands/arguments/DimensionArgument/ ()V net/minecraft/commands/arguments/DimensionArgument/ ()V +MD: net/minecraft/commands/arguments/DimensionArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/DimensionArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/DimensionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/DimensionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88805_ ()Lnet/minecraft/commands/arguments/DimensionArgument; net/minecraft/commands/arguments/DimensionArgument/dimension ()Lnet/minecraft/commands/arguments/DimensionArgument; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88808_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/commands/arguments/DimensionArgument/getDimension (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88811_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/DimensionArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88813_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/commands/arguments/DimensionArgument/lambda$static$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/ ()V net/minecraft/commands/arguments/EntityAnchorArgument/ ()V +MD: net/minecraft/commands/arguments/EntityAnchorArgument/ ()V net/minecraft/commands/arguments/EntityAnchorArgument/ ()V +MD: net/minecraft/commands/arguments/EntityAnchorArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/EntityAnchorArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/EntityAnchorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/m_90350_ ()Lnet/minecraft/commands/arguments/EntityAnchorArgument; net/minecraft/commands/arguments/EntityAnchorArgument/anchor ()Lnet/minecraft/commands/arguments/EntityAnchorArgument; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/m_90353_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument/getAnchor (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/m_90356_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/EntityAnchorArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ ()V net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ ()V +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_167593_ ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/$values ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90377_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/apply (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90379_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/apply (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90381_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/lambda$static$1 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90384_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/getByName (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90386_ (Ljava/util/HashMap;)V net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/lambda$static$2 (Ljava/util/HashMap;)V +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90388_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/lambda$static$0 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/values ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/values ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityArgument/ ()V net/minecraft/commands/arguments/EntityArgument/ ()V +MD: net/minecraft/commands/arguments/EntityArgument/ (ZZ)V net/minecraft/commands/arguments/EntityArgument/ (ZZ)V +MD: net/minecraft/commands/arguments/EntityArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/EntityArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/EntityArgument/m_91449_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/entity ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91452_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/entity/Entity; net/minecraft/commands/arguments/EntityArgument/getEntity (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/arguments/EntityArgument/m_91455_ (Lnet/minecraft/commands/SharedSuggestionProvider;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/EntityArgument/lambda$listSuggestions$0 (Lnet/minecraft/commands/SharedSuggestionProvider;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/EntityArgument/m_91460_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/entities ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91461_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getEntities (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/m_91466_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/player ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91467_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getOptionalEntities (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/m_91470_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/players ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91471_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getOptionalPlayers (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/m_91474_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/arguments/EntityArgument/getPlayer (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/arguments/EntityArgument/m_91477_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getPlayers (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/EntityArgument$Info/ ()V net/minecraft/commands/arguments/EntityArgument$Info/ ()V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; net/minecraft/commands/arguments/EntityArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/EntityArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/EntityArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/EntityArgument;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; net/minecraft/commands/arguments/EntityArgument$Info/unpack (Lnet/minecraft/commands/arguments/EntityArgument;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/ (Lnet/minecraft/commands/arguments/EntityArgument$Info;ZZ)V net/minecraft/commands/arguments/EntityArgument$Info$Template/ (Lnet/minecraft/commands/arguments/EntityArgument$Info;ZZ)V +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/EntityArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/EntityArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/GameModeArgument/ ()V net/minecraft/commands/arguments/GameModeArgument/ ()V +MD: net/minecraft/commands/arguments/GameModeArgument/ ()V net/minecraft/commands/arguments/GameModeArgument/ ()V +MD: net/minecraft/commands/arguments/GameModeArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/GameModeArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameModeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/GameModeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/GameModeArgument/m_257624_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/GameModeArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/GameModeArgument/m_257772_ ()Lnet/minecraft/commands/arguments/GameModeArgument; net/minecraft/commands/arguments/GameModeArgument/gameMode ()Lnet/minecraft/commands/arguments/GameModeArgument; +MD: net/minecraft/commands/arguments/GameModeArgument/m_257804_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/commands/arguments/GameModeArgument/getGameMode (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/level/GameType; net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/commands/arguments/GameProfileArgument/ ()V net/minecraft/commands/arguments/GameProfileArgument/ ()V +MD: net/minecraft/commands/arguments/GameProfileArgument/ ()V net/minecraft/commands/arguments/GameProfileArgument/ ()V +MD: net/minecraft/commands/arguments/GameProfileArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/GameProfileArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94584_ ()Lnet/minecraft/commands/arguments/GameProfileArgument; net/minecraft/commands/arguments/GameProfileArgument/gameProfile ()Lnet/minecraft/commands/arguments/GameProfileArgument; +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94587_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/GameProfileArgument/lambda$listSuggestions$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94590_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument/getGameProfiles (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94593_ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument/lambda$parse$0 (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/GameProfileArgument$Result; net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/GameProfileArgument$Result; +MD: net/minecraft/commands/arguments/GameProfileArgument$Result/m_6474_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument$Result/getNames (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/m_6474_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/getNames (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274370_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/commands/arguments/HeightmapTypeArgument/getHeightmap (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274434_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/HeightmapTypeArgument/convertId (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274452_ ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/commands/arguments/HeightmapTypeArgument/keptTypes ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274454_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/HeightmapTypeArgument/lambda$static$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274499_ (I)[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/commands/arguments/HeightmapTypeArgument/lambda$keptTypes$1 (I)[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274509_ ()Lnet/minecraft/commands/arguments/HeightmapTypeArgument; net/minecraft/commands/arguments/HeightmapTypeArgument/heightmap ()Lnet/minecraft/commands/arguments/HeightmapTypeArgument; +MD: net/minecraft/commands/arguments/MessageArgument/ ()V net/minecraft/commands/arguments/MessageArgument/ ()V +MD: net/minecraft/commands/arguments/MessageArgument/ ()V net/minecraft/commands/arguments/MessageArgument/ ()V +MD: net/minecraft/commands/arguments/MessageArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/MessageArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/MessageArgument/m_244748_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/arguments/MessageArgument/lambda$resolveDisguisedMessage$2 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_244749_ (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/lang/Void;)V net/minecraft/commands/arguments/MessageArgument/lambda$resolveSignedMessage$0 (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/lang/Void;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_244750_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/MessageArgument/lambda$resolveDisguisedMessage$3 (Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/MessageArgument/m_244751_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/MessageArgument/lambda$resolveSignedMessage$1 (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/MessageArgument/m_245478_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/commands/arguments/MessageArgument/resolveChatMessage (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_246606_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/MessageArgument/filterPlainText (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/MessageArgument/m_247098_ (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/commands/arguments/MessageArgument/resolveDisguisedMessage (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_247736_ (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/commands/arguments/MessageArgument/resolveSignedMessage (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_96832_ ()Lnet/minecraft/commands/arguments/MessageArgument; net/minecraft/commands/arguments/MessageArgument/message ()Lnet/minecraft/commands/arguments/MessageArgument; +MD: net/minecraft/commands/arguments/MessageArgument/m_96835_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument/getMessage (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/MessageArgument$Message; net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/MessageArgument$Message; +MD: net/minecraft/commands/arguments/MessageArgument$Message/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/MessageArgument$Part;)V net/minecraft/commands/arguments/MessageArgument$Message/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/MessageArgument$Part;)V +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_169112_ ()Ljava/lang/String; net/minecraft/commands/arguments/MessageArgument$Message/getText ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_169113_ ()[Lnet/minecraft/commands/arguments/MessageArgument$Part; net/minecraft/commands/arguments/MessageArgument$Message/getParts ()[Lnet/minecraft/commands/arguments/MessageArgument$Part; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_232196_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument$Message/resolveComponent (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_96846_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/MessageArgument$Message; net/minecraft/commands/arguments/MessageArgument$Message/parseText (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/MessageArgument$Message; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_96849_ (Lnet/minecraft/commands/CommandSourceStack;Z)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument$Message/toComponent (Lnet/minecraft/commands/CommandSourceStack;Z)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument$Part/ (IILnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/commands/arguments/MessageArgument$Part/ (IILnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_169114_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/MessageArgument$Part/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_96859_ ()I net/minecraft/commands/arguments/MessageArgument$Part/getStart ()I +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_96860_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument$Part/toComponent (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_96862_ ()I net/minecraft/commands/arguments/MessageArgument$Part/getEnd ()I +MD: net/minecraft/commands/arguments/NbtPathArgument/ ()V net/minecraft/commands/arguments/NbtPathArgument/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument/ ()V net/minecraft/commands/arguments/NbtPathArgument/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/NbtPathArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_263143_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/NbtPathArgument/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_263144_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/NbtPathArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99487_ ()Lnet/minecraft/commands/arguments/NbtPathArgument; net/minecraft/commands/arguments/NbtPathArgument/nbtPath ()Lnet/minecraft/commands/arguments/NbtPathArgument; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99488_ (C)Z net/minecraft/commands/arguments/NbtPathArgument/isAllowedInUnquotedName (C)Z +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99492_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; net/minecraft/commands/arguments/NbtPathArgument/readObjectNode (Lcom/mojang/brigadier/StringReader;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99495_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; net/minecraft/commands/arguments/NbtPathArgument/parseNode (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99498_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/commands/arguments/NbtPathArgument/getPath (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99501_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/NbtPathArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99505_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Z net/minecraft/commands/arguments/NbtPathArgument/lambda$createTagPredicate$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99508_ (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/commands/arguments/NbtPathArgument/readUnquotedName (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99510_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/NbtPathArgument/createTagPredicate (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/ (Ljava/lang/String;)V net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/ (Ljava/lang/String;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/ (I)V net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/ (I)V +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_99568_ (Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/lambda$getOrCreateTag$0 (Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/commands/arguments/NbtPathArgument$NbtPath/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_169535_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/set (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263145_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/lambda$set$1 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263146_ (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Ljava/lang/Integer; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/lambda$set$2 (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263172_ (ILnet/minecraft/nbt/CompoundTag;Ljava/util/List;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/insert (ILnet/minecraft/nbt/CompoundTag;Ljava/util/List;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263200_ ()I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/estimatePathDepth ()I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263222_ (Lnet/minecraft/nbt/Tag;I)Z net/minecraft/commands/arguments/NbtPathArgument$NbtPath/isTooDeep (Lnet/minecraft/nbt/Tag;I)Z +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99626_ (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/createNotFoundException (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99632_ (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/lambda$apply$0 (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99635_ (Ljava/util/List;Ljava/util/function/Function;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/apply (Ljava/util/List;Ljava/util/function/Function;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99638_ (Lnet/minecraft/nbt/Tag;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/get (Lnet/minecraft/nbt/Tag;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99640_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/getOrCreate (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99643_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/countMatching (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99648_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/remove (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99650_ (Lnet/minecraft/nbt/Tag;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/getOrCreateParents (Lnet/minecraft/nbt/Tag;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/toString ()Ljava/lang/String; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$Node/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$Node/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$Node/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$Node/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$Node/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99653_ (Ljava/util/List;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$Node/get (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99655_ (Ljava/util/List;Ljava/util/function/BiConsumer;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$Node/collect (Ljava/util/List;Ljava/util/function/BiConsumer;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99658_ (Ljava/util/List;Ljava/util/function/Supplier;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$Node/getOrCreate (Ljava/util/List;Ljava/util/function/Supplier;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99661_ (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$Node/lambda$getOrCreate$0 (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtTagArgument/ ()V net/minecraft/commands/arguments/NbtTagArgument/ ()V +MD: net/minecraft/commands/arguments/NbtTagArgument/ ()V net/minecraft/commands/arguments/NbtTagArgument/ ()V +MD: net/minecraft/commands/arguments/NbtTagArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/NbtTagArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/NbtTagArgument/m_100659_ ()Lnet/minecraft/commands/arguments/NbtTagArgument; net/minecraft/commands/arguments/NbtTagArgument/nbtTag ()Lnet/minecraft/commands/arguments/NbtTagArgument; +MD: net/minecraft/commands/arguments/NbtTagArgument/m_100662_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtTagArgument/getNbtTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/ObjectiveArgument/ ()V net/minecraft/commands/arguments/ObjectiveArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveArgument/ ()V net/minecraft/commands/arguments/ObjectiveArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ObjectiveArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ObjectiveArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ObjectiveArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101957_ ()Lnet/minecraft/commands/arguments/ObjectiveArgument; net/minecraft/commands/arguments/ObjectiveArgument/objective ()Lnet/minecraft/commands/arguments/ObjectiveArgument; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101960_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/commands/arguments/ObjectiveArgument/getObjective (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101965_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/commands/arguments/ObjectiveArgument/getWritableObjective (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101968_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ObjectiveArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101970_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ObjectiveArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102555_ ()Lnet/minecraft/commands/arguments/ObjectiveCriteriaArgument; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/criteria ()Lnet/minecraft/commands/arguments/ObjectiveCriteriaArgument; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102556_ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getName (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102561_ (Lcom/mojang/brigadier/StringReader;ILjava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/lambda$parse$1 (Lcom/mojang/brigadier/StringReader;ILjava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102565_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getCriteria (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102568_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/commands/arguments/OperationArgument/ ()V net/minecraft/commands/arguments/OperationArgument/ ()V +MD: net/minecraft/commands/arguments/OperationArgument/ ()V net/minecraft/commands/arguments/OperationArgument/ ()V +MD: net/minecraft/commands/arguments/OperationArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/OperationArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/OperationArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/OperationArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/OperationArgument/m_103269_ ()Lnet/minecraft/commands/arguments/OperationArgument; net/minecraft/commands/arguments/OperationArgument/operation ()Lnet/minecraft/commands/arguments/OperationArgument; +MD: net/minecraft/commands/arguments/OperationArgument/m_103270_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$6 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103275_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; net/minecraft/commands/arguments/OperationArgument/getOperation (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; +MD: net/minecraft/commands/arguments/OperationArgument/m_103278_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V net/minecraft/commands/arguments/OperationArgument/lambda$getOperation$0 (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/commands/arguments/OperationArgument/m_103281_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; net/minecraft/commands/arguments/OperationArgument/getOperation (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; +MD: net/minecraft/commands/arguments/OperationArgument/m_103286_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$SimpleOperation; net/minecraft/commands/arguments/OperationArgument/getSimpleOperation (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$SimpleOperation; +MD: net/minecraft/commands/arguments/OperationArgument/m_103288_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$4 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103291_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$3 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103294_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$2 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103297_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$1 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_263893_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$5 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; +MD: net/minecraft/commands/arguments/OperationArgument$Operation/m_6407_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V net/minecraft/commands/arguments/OperationArgument$Operation/apply (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/commands/arguments/OperationArgument$SimpleOperation/m_103308_ (II)I net/minecraft/commands/arguments/OperationArgument$SimpleOperation/apply (II)I +MD: net/minecraft/commands/arguments/OperationArgument$SimpleOperation/m_6407_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V net/minecraft/commands/arguments/OperationArgument$SimpleOperation/apply (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/commands/arguments/ParticleArgument/ ()V net/minecraft/commands/arguments/ParticleArgument/ ()V +MD: net/minecraft/commands/arguments/ParticleArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/ParticleArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/ParticleArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ParticleArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ParticleArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ParticleArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103934_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/readParticle (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103937_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/getParticle (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103940_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ParticleArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103942_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ParticleArgument/lambda$readParticleType$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ParticleArgument/m_245039_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleType; net/minecraft/commands/arguments/ParticleArgument/readParticleType (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/commands/arguments/ParticleArgument/m_245999_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ParticleArgument; net/minecraft/commands/arguments/ParticleArgument/particle (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ParticleArgument; +MD: net/minecraft/commands/arguments/ParticleArgument/m_247456_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/readParticle (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/RangeArgument/m_105404_ ()Lnet/minecraft/commands/arguments/RangeArgument$Ints; net/minecraft/commands/arguments/RangeArgument/intRange ()Lnet/minecraft/commands/arguments/RangeArgument$Ints; +MD: net/minecraft/commands/arguments/RangeArgument/m_105405_ ()Lnet/minecraft/commands/arguments/RangeArgument$Floats; net/minecraft/commands/arguments/RangeArgument/floatRange ()Lnet/minecraft/commands/arguments/RangeArgument$Floats; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/ ()V net/minecraft/commands/arguments/RangeArgument$Floats/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Floats/ ()V net/minecraft/commands/arguments/RangeArgument$Floats/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Floats/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/RangeArgument$Floats/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/m_170804_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/commands/arguments/RangeArgument$Floats/getRange (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/ ()V net/minecraft/commands/arguments/RangeArgument$Ints/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Ints/ ()V net/minecraft/commands/arguments/RangeArgument$Ints/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Ints/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/RangeArgument$Ints/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/m_105419_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/commands/arguments/RangeArgument$Ints/getRange (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/commands/arguments/ResourceArgument/ ()V net/minecraft/commands/arguments/ResourceArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245369_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getEnchantment (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245599_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getConfiguredFeature (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245688_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getAttribute (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245927_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceArgument/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246260_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getEntityType (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246316_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceArgument/lambda$parse$3 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246504_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceArgument/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246539_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246781_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getResource (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247102_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceArgument; net/minecraft/commands/arguments/ResourceArgument/resource (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceArgument; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247201_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getMobEffect (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247467_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getStructure (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247713_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getSummonableEntityType (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/ ()V net/minecraft/commands/arguments/ResourceArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; net/minecraft/commands/arguments/ResourceArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceArgument;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; net/minecraft/commands/arguments/ResourceArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceArgument;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceArgument; net/minecraft/commands/arguments/ResourceArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceArgument; +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/ ()V net/minecraft/commands/arguments/ResourceKeyArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceKeyArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212373_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/resources/ResourceKey; net/minecraft/commands/arguments/ResourceKeyArgument/getRegistryKey (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212378_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; net/minecraft/commands/arguments/ResourceKeyArgument/getRegistry (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212384_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212386_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; net/minecraft/commands/arguments/ResourceKeyArgument/key (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212391_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_233248_ (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$resolveKey$4 (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_233260_ (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$getRegistryKey$3 (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_233263_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_245341_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/getConfiguredFeature (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_246813_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/resolveKey (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_247318_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/getStructure (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_247435_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/getStructureTemplatePool (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceKey; net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/ ()V net/minecraft/commands/arguments/ResourceKeyArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceKeyArgument;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceKeyArgument;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/ ()V net/minecraft/commands/arguments/ResourceLocationArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceLocationArgument/ ()V net/minecraft/commands/arguments/ResourceLocationArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceLocationArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceLocationArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106984_ ()Lnet/minecraft/commands/arguments/ResourceLocationArgument; net/minecraft/commands/arguments/ResourceLocationArgument/id ()Lnet/minecraft/commands/arguments/ResourceLocationArgument; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106987_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; net/minecraft/commands/arguments/ResourceLocationArgument/getAdvancement (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106990_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106994_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/commands/arguments/ResourceLocationArgument/getRecipe (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106997_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107001_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/commands/arguments/ResourceLocationArgument/getPredicate (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107004_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107009_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107011_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/arguments/ResourceLocationArgument/getId (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_171031_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/commands/arguments/ResourceLocationArgument/getItemModifier (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_212420_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$getRecipe$4 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/ ()V net/minecraft/commands/arguments/ResourceOrTagArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceOrTagArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceOrTagArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245090_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245252_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$parse$5 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245464_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; net/minecraft/commands/arguments/ResourceOrTagArgument/getResourceOrTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245664_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderSet$Named;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$getResourceOrTag$3 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderSet$Named;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245818_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$getResourceOrTag$2 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_246102_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$parse$6 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_246859_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_247081_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$getResourceOrTag$4 (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_247455_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; net/minecraft/commands/arguments/ResourceOrTagArgument/resourceOrTag (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/ ()V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceOrTagArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/ (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/f_243689_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/value ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/m_245172_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/m_245347_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/m_245443_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Result/m_245172_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagArgument$Result/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Result/m_245347_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagArgument$Result/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Result/m_245443_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$Result/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/ (Lnet/minecraft/core/HolderSet$Named;)V net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/ (Lnet/minecraft/core/HolderSet$Named;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/f_244078_ ()Lnet/minecraft/core/HolderSet$Named; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/tag ()Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/m_245172_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/m_245347_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/m_245443_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ ()V net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/m_246379_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/getResourceOrTagKey (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/m_246963_ (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/lambda$getResourceOrTagKey$0 (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/m_247494_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/resourceOrTagKey (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/ ()V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/f_243909_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/m_245137_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/m_245276_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/m_245390_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/m_245137_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/m_245276_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/m_245390_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/f_244059_ ()Lnet/minecraft/tags/TagKey; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/key ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/m_245137_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/m_245276_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/m_245390_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/ ()V net/minecraft/commands/arguments/ScoreHolderArgument/ ()V +MD: net/minecraft/commands/arguments/ScoreHolderArgument/ (Z)V net/minecraft/commands/arguments/ScoreHolderArgument/ (Z)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108217_ ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; net/minecraft/commands/arguments/ScoreHolderArgument/scoreHolder ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108220_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ScoreHolderArgument/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108223_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/ScoreHolderArgument/getName (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108226_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getNames (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108230_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/lambda$parse$2 (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108235_ (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/lambda$parse$3 (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108239_ ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; net/minecraft/commands/arguments/ScoreHolderArgument/scoreHolders ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108243_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getNames (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108246_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getNamesWithDefaultWildcard (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_171604_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/ScoreHolderArgument/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Result; net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Result; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/ ()V net/minecraft/commands/arguments/ScoreHolderArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ScoreHolderArgument;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/unpack (Lnet/minecraft/commands/arguments/ScoreHolderArgument;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info;Z)V net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info;Z)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ScoreHolderArgument; net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ScoreHolderArgument; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Result/m_6582_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument$Result/getNames (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/m_6582_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/getNames (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ScoreboardSlotArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ScoreboardSlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/m_109196_ ()Lnet/minecraft/commands/arguments/ScoreboardSlotArgument; net/minecraft/commands/arguments/ScoreboardSlotArgument/displaySlot ()Lnet/minecraft/commands/arguments/ScoreboardSlotArgument; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/m_109199_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I net/minecraft/commands/arguments/ScoreboardSlotArgument/getDisplaySlot (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/m_109202_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ScoreboardSlotArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/SlotArgument/ ()V net/minecraft/commands/arguments/SlotArgument/ ()V +MD: net/minecraft/commands/arguments/SlotArgument/ ()V net/minecraft/commands/arguments/SlotArgument/ ()V +MD: net/minecraft/commands/arguments/SlotArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/SlotArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/SlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/SlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/SlotArgument/m_111276_ ()Lnet/minecraft/commands/arguments/SlotArgument; net/minecraft/commands/arguments/SlotArgument/slot ()Lnet/minecraft/commands/arguments/SlotArgument; +MD: net/minecraft/commands/arguments/SlotArgument/m_111279_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I net/minecraft/commands/arguments/SlotArgument/getSlot (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I +MD: net/minecraft/commands/arguments/SlotArgument/m_111282_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/SlotArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/SlotArgument/m_111284_ (Ljava/util/HashMap;)V net/minecraft/commands/arguments/SlotArgument/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/ ()V net/minecraft/commands/arguments/StringRepresentableArgument/ ()V +MD: net/minecraft/commands/arguments/StringRepresentableArgument/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)V net/minecraft/commands/arguments/StringRepresentableArgument/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)V +MD: net/minecraft/commands/arguments/StringRepresentableArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/StringRepresentableArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/StringRepresentableArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234064_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$getExamples$3 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234066_ (Ljava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$parse$1 (Ljava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234068_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$listSuggestions$2 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234070_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_274434_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/StringRepresentableArgument/convertId (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Enum; net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Enum; +MD: net/minecraft/commands/arguments/TeamArgument/ ()V net/minecraft/commands/arguments/TeamArgument/ ()V +MD: net/minecraft/commands/arguments/TeamArgument/ ()V net/minecraft/commands/arguments/TeamArgument/ ()V +MD: net/minecraft/commands/arguments/TeamArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/TeamArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/TeamArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/TeamArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/TeamArgument/m_112088_ ()Lnet/minecraft/commands/arguments/TeamArgument; net/minecraft/commands/arguments/TeamArgument/team ()Lnet/minecraft/commands/arguments/TeamArgument; +MD: net/minecraft/commands/arguments/TeamArgument/m_112091_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/commands/arguments/TeamArgument/getTeam (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/commands/arguments/TeamArgument/m_112094_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/TeamArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/TemplateMirrorArgument/ ()V net/minecraft/commands/arguments/TemplateMirrorArgument/ ()V +MD: net/minecraft/commands/arguments/TemplateMirrorArgument/m_234343_ ()Lnet/minecraft/commands/arguments/StringRepresentableArgument; net/minecraft/commands/arguments/TemplateMirrorArgument/templateMirror ()Lnet/minecraft/commands/arguments/StringRepresentableArgument; +MD: net/minecraft/commands/arguments/TemplateMirrorArgument/m_234344_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; net/minecraft/commands/arguments/TemplateMirrorArgument/getMirror (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/commands/arguments/TemplateRotationArgument/ ()V net/minecraft/commands/arguments/TemplateRotationArgument/ ()V +MD: net/minecraft/commands/arguments/TemplateRotationArgument/m_234414_ ()Lnet/minecraft/commands/arguments/TemplateRotationArgument; net/minecraft/commands/arguments/TemplateRotationArgument/templateRotation ()Lnet/minecraft/commands/arguments/TemplateRotationArgument; +MD: net/minecraft/commands/arguments/TemplateRotationArgument/m_234415_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/commands/arguments/TemplateRotationArgument/getRotation (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/commands/arguments/TimeArgument/ ()V net/minecraft/commands/arguments/TimeArgument/ ()V +MD: net/minecraft/commands/arguments/TimeArgument/ (I)V net/minecraft/commands/arguments/TimeArgument/ (I)V +MD: net/minecraft/commands/arguments/TimeArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/TimeArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/TimeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/TimeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/TimeArgument/m_113037_ ()Lnet/minecraft/commands/arguments/TimeArgument; net/minecraft/commands/arguments/TimeArgument/time ()Lnet/minecraft/commands/arguments/TimeArgument; +MD: net/minecraft/commands/arguments/TimeArgument/m_263894_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/TimeArgument/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/TimeArgument/m_264474_ (I)Lnet/minecraft/commands/arguments/TimeArgument; net/minecraft/commands/arguments/TimeArgument/time (I)Lnet/minecraft/commands/arguments/TimeArgument; +MD: net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/TimeArgument$Info/ ()V net/minecraft/commands/arguments/TimeArgument$Info/ ()V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/TimeArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; net/minecraft/commands/arguments/TimeArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/TimeArgument;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; net/minecraft/commands/arguments/TimeArgument$Info/unpack (Lnet/minecraft/commands/arguments/TimeArgument;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/TimeArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/ (Lnet/minecraft/commands/arguments/TimeArgument$Info;I)V net/minecraft/commands/arguments/TimeArgument$Info$Template/ (Lnet/minecraft/commands/arguments/TimeArgument$Info;I)V +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/TimeArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/TimeArgument; net/minecraft/commands/arguments/TimeArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/TimeArgument; +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/TimeArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/UuidArgument/ ()V net/minecraft/commands/arguments/UuidArgument/ ()V +MD: net/minecraft/commands/arguments/UuidArgument/ ()V net/minecraft/commands/arguments/UuidArgument/ ()V +MD: net/minecraft/commands/arguments/UuidArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/UuidArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/UuidArgument/m_113850_ ()Lnet/minecraft/commands/arguments/UuidArgument; net/minecraft/commands/arguments/UuidArgument/uuid ()Lnet/minecraft/commands/arguments/UuidArgument; +MD: net/minecraft/commands/arguments/UuidArgument/m_113853_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/UUID; net/minecraft/commands/arguments/UuidArgument/getUuid (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/UUID; net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/UUID; +MD: net/minecraft/commands/arguments/blocks/BlockInput/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockInput/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_114669_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/commands/arguments/blocks/BlockInput/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_114670_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/commands/arguments/blocks/BlockInput/place (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_173523_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/commands/arguments/blocks/BlockInput/test (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_173526_ ()Ljava/util/Set; net/minecraft/commands/arguments/blocks/BlockInput/getDefinedProperties ()Ljava/util/Set; +MD: net/minecraft/commands/arguments/blocks/BlockInput/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockInput/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockInput/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/commands/arguments/blocks/BlockInput/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ ()V net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ ()V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_115573_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/getBlockPredicate (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234627_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/blockPredicate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234629_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/lambda$parse$0 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234631_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/lambda$parse$1 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234633_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/m_183631_ ()Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/requiresNbt ()Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result/m_183631_ ()Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result/requiresNbt ()Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/m_183631_ ()Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/requiresNbt ()Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/ ()V net/minecraft/commands/arguments/blocks/BlockStateArgument/ ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/blocks/BlockStateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/blocks/BlockStateArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/m_116123_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/commands/arguments/blocks/BlockStateArgument/getBlock (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/m_234650_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockStateArgument; net/minecraft/commands/arguments/blocks/BlockStateArgument/block (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockStateArgument; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/ ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;ZZ)V net/minecraft/commands/arguments/blocks/BlockStateParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;ZZ)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116765_ (I)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readBlock$6 (I)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116769_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser/serialize (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116775_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;I)V net/minecraft/commands/arguments/blocks/BlockStateParser/setValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;I)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116786_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/brigadier/suggestion/SuggestionsBuilder; net/minecraft/commands/arguments/blocks/BlockStateParser/addSuggestions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/brigadier/suggestion/SuggestionsBuilder; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116789_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116791_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$4 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116794_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116802_ (Ljava/lang/StringBuilder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V net/minecraft/commands/arguments/blocks/BlockStateParser/appendProperty (Ljava/lang/StringBuilder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116812_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116819_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116826_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readBlock ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116830_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readTag ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116834_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readProperties ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116838_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readVagueProperties ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116842_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readNbt ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234677_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/parse ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234678_ (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readTag$7 (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234681_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$serialize$10 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234683_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestPropertyNameOrEnd (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234685_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestVaguePropertyValue (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234688_ (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readProperties$8 (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234691_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForBlock (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234695_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;ZZ)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/fillSuggestions (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;ZZ)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234708_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$5 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234710_ (Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readVagueProperties$9 (Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234713_ ()Z net/minecraft/commands/arguments/blocks/BlockStateParser/hasBlockEntity ()Z +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234714_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestVaguePropertyNameOrEnd (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234716_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForTesting (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234728_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestPropertyName (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234730_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestVaguePropertyName (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234732_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestOpenNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234734_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestEquals (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234736_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestNextPropertyOrEnd (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234738_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestOpenVaguePropertiesOrNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234740_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestOpenPropertiesOrNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234742_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234744_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestItem (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234746_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestBlockIdOrTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_245437_ (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForBlock (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_247724_ (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForTesting (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234748_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/blockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234749_ ()Ljava/util/Map; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/properties ()Ljava/util/Map; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234750_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/hashCode ()I net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/hashCode ()I +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234762_ ()Lnet/minecraft/core/HolderSet; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/tag ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234763_ ()Ljava/util/Map; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/vagueProperties ()Ljava/util/Map; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234764_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/hashCode ()I net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/BlockPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_118239_ ()Lnet/minecraft/commands/arguments/coordinates/BlockPosArgument; net/minecraft/commands/arguments/coordinates/BlockPosArgument/blockPos ()Lnet/minecraft/commands/arguments/coordinates/BlockPosArgument; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_118242_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getLoadedBlockPos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_174395_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getSpawnablePos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_264205_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getLoadedBlockPos (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_264582_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getBlockPos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/m_118989_ ()Lnet/minecraft/commands/arguments/coordinates/ColumnPosArgument; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/columnPos ()Lnet/minecraft/commands/arguments/coordinates/ColumnPosArgument; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/m_118992_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ColumnPos; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/getColumnPos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ColumnPos; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_119568_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/Coordinates/getBlockPos (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6888_ ()Z net/minecraft/commands/arguments/coordinates/Coordinates/isXRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6892_ ()Z net/minecraft/commands/arguments/coordinates/Coordinates/isYRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6900_ ()Z net/minecraft/commands/arguments/coordinates/Coordinates/isZRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6955_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/Coordinates/getPosition (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6970_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/Coordinates/getRotation (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/ (DDD)V net/minecraft/commands/arguments/coordinates/LocalCoordinates/ (DDD)V +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/hashCode ()I net/minecraft/commands/arguments/coordinates/LocalCoordinates/hashCode ()I +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_119906_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/LocalCoordinates; net/minecraft/commands/arguments/coordinates/LocalCoordinates/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/LocalCoordinates; +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_119908_ (Lcom/mojang/brigadier/StringReader;I)D net/minecraft/commands/arguments/coordinates/LocalCoordinates/readDouble (Lcom/mojang/brigadier/StringReader;I)D +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6888_ ()Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/isXRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6892_ ()Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/isYRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6900_ ()Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/isZRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6955_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/LocalCoordinates/getPosition (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6970_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/LocalCoordinates/getRotation (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/RotationArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/m_120479_ ()Lnet/minecraft/commands/arguments/coordinates/RotationArgument; net/minecraft/commands/arguments/coordinates/RotationArgument/rotation ()Lnet/minecraft/commands/arguments/coordinates/RotationArgument; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/m_120482_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/RotationArgument/getRotation (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/SwizzleArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/m_120807_ ()Lnet/minecraft/commands/arguments/coordinates/SwizzleArgument; net/minecraft/commands/arguments/coordinates/SwizzleArgument/swizzle ()Lnet/minecraft/commands/arguments/coordinates/SwizzleArgument; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/m_120810_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/EnumSet; net/minecraft/commands/arguments/coordinates/SwizzleArgument/getSwizzle (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/EnumSet; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/EnumSet; net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/EnumSet; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/ ()V net/minecraft/commands/arguments/coordinates/Vec2Argument/ ()V +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/ (Z)V net/minecraft/commands/arguments/coordinates/Vec2Argument/ (Z)V +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/Vec2Argument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/Vec2Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/m_120822_ ()Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; net/minecraft/commands/arguments/coordinates/Vec2Argument/vec2 ()Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/m_120825_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/Vec2Argument/getVec2 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/m_174954_ (Z)Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; net/minecraft/commands/arguments/coordinates/Vec2Argument/vec2 (Z)Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/ ()V net/minecraft/commands/arguments/coordinates/Vec3Argument/ ()V +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/ (Z)V net/minecraft/commands/arguments/coordinates/Vec3Argument/ (Z)V +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/Vec3Argument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/Vec3Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120841_ ()Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; net/minecraft/commands/arguments/coordinates/Vec3Argument/vec3 ()Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120844_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/Vec3Argument/getVec3 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120847_ (Z)Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; net/minecraft/commands/arguments/coordinates/Vec3Argument/vec3 (Z)Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120849_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/Vec3Argument/getCoordinates (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/ ()V net/minecraft/commands/arguments/coordinates/WorldCoordinate/ ()V +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/ (ZD)V net/minecraft/commands/arguments/coordinates/WorldCoordinate/ (ZD)V +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/coordinates/WorldCoordinate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/hashCode ()I net/minecraft/commands/arguments/coordinates/WorldCoordinate/hashCode ()I +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120866_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinate/isRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120867_ (D)D net/minecraft/commands/arguments/coordinates/WorldCoordinate/get (D)D +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120869_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; net/minecraft/commands/arguments/coordinates/WorldCoordinate/parseInt (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120871_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; net/minecraft/commands/arguments/coordinates/WorldCoordinate/parseDouble (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120874_ (Lcom/mojang/brigadier/StringReader;)Z net/minecraft/commands/arguments/coordinates/WorldCoordinate/isRelative (Lcom/mojang/brigadier/StringReader;)Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/ (Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;)V net/minecraft/commands/arguments/coordinates/WorldCoordinates/ (Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;)V +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/hashCode ()I net/minecraft/commands/arguments/coordinates/WorldCoordinates/hashCode ()I +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_120887_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/parseInt (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_120889_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/parseDouble (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_120898_ ()Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/current ()Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_175085_ (DDD)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/absolute (DDD)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_175089_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/absolute (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6888_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/isXRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6892_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/isYRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6900_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/isZRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6955_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/WorldCoordinates/getPosition (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6970_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/WorldCoordinates/getRotation (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/item/FunctionArgument/ ()V net/minecraft/commands/arguments/item/FunctionArgument/ ()V +MD: net/minecraft/commands/arguments/item/FunctionArgument/ ()V net/minecraft/commands/arguments/item/FunctionArgument/ ()V +MD: net/minecraft/commands/arguments/item/FunctionArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120907_ ()Lnet/minecraft/commands/arguments/item/FunctionArgument; net/minecraft/commands/arguments/item/FunctionArgument/functions ()Lnet/minecraft/commands/arguments/item/FunctionArgument; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120910_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument/getFunctions (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120916_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/FunctionArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120918_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/item/FunctionArgument/lambda$getFunction$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120920_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument/getFunctionOrTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120926_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/FunctionArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120928_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/commands/CommandFunction; net/minecraft/commands/arguments/item/FunctionArgument/getFunction (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/commands/CommandFunction; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_235273_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument/getFunctionTag (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/FunctionArgument$Result; net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/FunctionArgument$Result; +MD: net/minecraft/commands/arguments/item/FunctionArgument$1/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/arguments/item/FunctionArgument$1/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/arguments/item/FunctionArgument$1/m_5911_ (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument$1/unwrap (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument$1/m_7588_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument$1/create (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument$2/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/arguments/item/FunctionArgument$2/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/arguments/item/FunctionArgument$2/m_5911_ (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument$2/unwrap (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument$2/m_7588_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument$2/create (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument$Result/m_5911_ (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument$Result/unwrap (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument$Result/m_7588_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument$Result/create (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/ItemArgument/ ()V net/minecraft/commands/arguments/item/ItemArgument/ ()V +MD: net/minecraft/commands/arguments/item/ItemArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/item/ItemArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/item/ItemArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/item/ItemArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/ItemArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemArgument/m_120963_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/item/ItemInput; net/minecraft/commands/arguments/item/ItemArgument/getItem (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/item/ItemInput; +MD: net/minecraft/commands/arguments/item/ItemArgument/m_235279_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemArgument; net/minecraft/commands/arguments/item/ItemArgument/item (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemArgument; +MD: net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemInput; net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemInput; +MD: net/minecraft/commands/arguments/item/ItemInput/ ()V net/minecraft/commands/arguments/item/ItemInput/ ()V +MD: net/minecraft/commands/arguments/item/ItemInput/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/item/ItemInput/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/item/ItemInput/m_120979_ ()Lnet/minecraft/world/item/Item; net/minecraft/commands/arguments/item/ItemInput/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/commands/arguments/item/ItemInput/m_120980_ (IZ)Lnet/minecraft/world/item/ItemStack; net/minecraft/commands/arguments/item/ItemInput/createItemStack (IZ)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/commands/arguments/item/ItemInput/m_120985_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/ItemInput/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/ItemInput/m_120988_ ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemInput/serialize ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemInput/m_235284_ ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemInput/getItemName ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemInput/m_235285_ ()Ljava/lang/Object; net/minecraft/commands/arguments/item/ItemInput/lambda$getItemName$1 ()Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/ItemInput/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/item/ItemInput/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/item/ItemInput/test (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/commands/arguments/item/ItemInput/test (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/commands/arguments/item/ItemParser/ ()V net/minecraft/commands/arguments/item/ItemParser/ ()V +MD: net/minecraft/commands/arguments/item/ItemParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)V net/minecraft/commands/arguments/item/ItemParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)V +MD: net/minecraft/commands/arguments/item/ItemParser/m_121012_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/ItemParser/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/ItemParser/m_121026_ ()V net/minecraft/commands/arguments/item/ItemParser/readItem ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_121030_ ()V net/minecraft/commands/arguments/item/ItemParser/readTag ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_121031_ ()V net/minecraft/commands/arguments/item/ItemParser/readNbt ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_235294_ (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/item/ItemParser/lambda$readTag$6 (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235297_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestOpenNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235299_ (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/Holder;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; net/minecraft/commands/arguments/item/ItemParser/lambda$parseForTesting$3 (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/Holder;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235302_ (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/HolderSet;)Lnet/minecraft/commands/arguments/item/ItemParser$TagResult; net/minecraft/commands/arguments/item/ItemParser/lambda$parseForTesting$4 (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/HolderSet;)Lnet/minecraft/commands/arguments/item/ItemParser$TagResult; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235305_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; net/minecraft/commands/arguments/item/ItemParser/parseForItem (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235308_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/fillSuggestions (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235312_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/ItemParser/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235314_ (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/item/ItemParser/lambda$readItem$5 (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235317_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235319_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/item/ItemParser/parseForTesting (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235322_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestItem (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235324_ ()V net/minecraft/commands/arguments/item/ItemParser/parse ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_235325_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestItemIdOrTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235327_ ()Ljava/lang/IllegalStateException; net/minecraft/commands/arguments/item/ItemParser/lambda$parseForItem$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/item/ItemParser$ItemResult/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/item/ItemParser$ItemResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235328_ ()Lnet/minecraft/core/Holder; net/minecraft/commands/arguments/item/ItemParser$ItemResult/item ()Lnet/minecraft/core/Holder; +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235329_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/item/ItemParser$ItemResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/hashCode ()I net/minecraft/commands/arguments/item/ItemParser$ItemResult/hashCode ()I +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemParser$ItemResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/item/ItemParser$TagResult/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/item/ItemParser$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235339_ ()Lnet/minecraft/core/HolderSet; net/minecraft/commands/arguments/item/ItemParser$TagResult/tag ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235340_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/item/ItemParser$TagResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/hashCode ()I net/minecraft/commands/arguments/item/ItemParser$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemParser$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/ ()V net/minecraft/commands/arguments/item/ItemPredicateArgument/ ()V +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/item/ItemPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/item/ItemPredicateArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_121040_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/item/ItemPredicateArgument/getItemPredicate (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235353_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument; net/minecraft/commands/arguments/item/ItemPredicateArgument/itemPredicate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235355_ (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$parse$1 (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235357_ (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$parse$0 (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235360_ (Lnet/minecraft/commands/arguments/item/ItemParser$TagResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$parse$2 (Lnet/minecraft/commands/arguments/item/ItemParser$TagResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235362_ (Ljava/util/function/Predicate;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$createResult$4 (Ljava/util/function/Predicate;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235365_ (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/createResult (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235368_ (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$createResult$3 (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/selector/EntitySelector/ ()V net/minecraft/commands/arguments/selector/EntitySelector/ ()V +MD: net/minecraft/commands/arguments/selector/EntitySelector/ (IZZLjava/util/function/Predicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Ljava/util/function/Function;Lnet/minecraft/world/phys/AABB;Ljava/util/function/BiConsumer;ZLjava/lang/String;Ljava/util/UUID;Lnet/minecraft/world/entity/EntityType;Z)V net/minecraft/commands/arguments/selector/EntitySelector/ (IZZLjava/util/function/Predicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Ljava/util/function/Function;Lnet/minecraft/world/phys/AABB;Ljava/util/function/BiConsumer;ZLjava/lang/String;Ljava/util/UUID;Lnet/minecraft/world/entity/EntityType;Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121138_ ()I net/minecraft/commands/arguments/selector/EntitySelector/getMaxResults ()I +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121139_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/entity/Entity; net/minecraft/commands/arguments/selector/EntitySelector/findSingleEntity (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121141_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelector/lambda$getPredicate$2 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121144_ (Lnet/minecraft/world/phys/Vec3;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/selector/EntitySelector/getPredicate (Lnet/minecraft/world/phys/Vec3;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121146_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelector/lambda$getPredicate$3 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121149_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/sortAndLimit (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121154_ (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V net/minecraft/commands/arguments/selector/EntitySelector/addEntities (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121159_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/includesEntities ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121160_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/findEntities (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121162_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/isSelfSelector ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121163_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/arguments/selector/EntitySelector/findSinglePlayer (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121165_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/isWorldLimited ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121166_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/findPlayers (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121168_ (Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/commands/arguments/selector/EntitySelector/checkPermissions (Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_175103_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/selector/EntitySelector/joinNames (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_175105_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/usesSelector ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_244752_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelector/lambda$findEntities$1 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_245733_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/findEntitiesRaw (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_260772_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelector/lambda$static$0 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_261276_ ()I net/minecraft/commands/arguments/selector/EntitySelector/getResultLimit ()I +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/ ()V net/minecraft/commands/arguments/selector/EntitySelector$1/ ()V +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/commands/arguments/selector/EntitySelector$1/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/m_141992_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/commands/arguments/selector/EntitySelector$1/tryCast (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/m_142225_ ()Ljava/lang/Class; net/minecraft/commands/arguments/selector/EntitySelector$1/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/ ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121222_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeNotEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121223_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121224_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/setTypeLimitedInversely ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121225_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isTypeLimited ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121226_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isTypeLimitedInversely ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121227_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasScores ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121228_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasAdvancements ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121229_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/finalizePredicates ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121230_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/selector/EntitySelectorParser/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121231_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setX (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121233_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/commands/arguments/selector/EntitySelectorParser/createAabb (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121237_ (I)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setMaxResults (I)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121241_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/limitToType (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121245_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setLevel (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121247_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/fillSelectorSuggestions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121249_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/fillSuggestions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121252_ (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setRotX (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121254_ (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;Ljava/util/function/ToDoubleFunction;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/selector/EntitySelectorParser/createRotationPredicate (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;Ljava/util/function/ToDoubleFunction;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121257_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$getSelector$10 (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121263_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$6 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121266_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121268_ (Ljava/util/function/BiConsumer;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setOrder (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121270_ (Ljava/util/function/BiFunction;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setSuggestions (Ljava/util/function/BiFunction;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121272_ (Ljava/util/function/Predicate;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/addPredicate (Ljava/util/function/Predicate;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121279_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setIncludesEntities (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121281_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/parseSelector ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121282_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setY (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121286_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestNameOrSelector (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121289_ (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setRotY (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121291_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$getSelector$9 (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121297_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$5 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121300_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121302_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasNameEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121304_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/parseNameOrUUID ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121305_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setZ (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121309_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestName (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121312_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$3 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121315_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasNameNotEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121317_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/parseOptions ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121318_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDeltaX (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121320_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$new$8 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121322_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestSelector (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121328_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setLimited (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121330_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/shouldInvertValue ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121331_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDeltaY (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121333_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOpenOptions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121336_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setSorted (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121338_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isTag ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121339_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDeltaZ (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121341_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOptionsKeyOrClose (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121344_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasGamemodeEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121346_ ()Lcom/mojang/brigadier/StringReader; net/minecraft/commands/arguments/selector/EntitySelectorParser/getReader ()Lcom/mojang/brigadier/StringReader; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121347_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOptionsKey (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121350_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasGamemodeNotEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121352_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/setWorldLimited ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121353_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOptionsNextOrClose (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121356_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasTeamEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121359_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasTeamNotEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121361_ ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/commands/arguments/selector/EntitySelectorParser/getLevel ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121362_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$7 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121365_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasScores (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121367_ ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/commands/arguments/selector/EntitySelectorParser/getRotX ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121368_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasAdvancements (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121370_ ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/commands/arguments/selector/EntitySelectorParser/getRotY ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121371_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getX ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121372_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getY ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121373_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getZ ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121374_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDeltaX ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121375_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDeltaY ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121376_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDeltaZ ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121377_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/selector/EntitySelectorParser/parse ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121378_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isCurrentEntity ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121379_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121380_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameNotEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121381_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isLimited ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121382_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isSorted ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121383_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175124_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamNotEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175127_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDistance (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175129_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$4 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175133_ (Ljava/util/function/ToDoubleFunction;DDLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$createRotationPredicate$12 (Ljava/util/function/ToDoubleFunction;DDLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175138_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$2 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175142_ ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDistance ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175143_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestEquals (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175146_ ()Ljava/util/function/BiConsumer; net/minecraft/commands/arguments/selector/EntitySelectorParser/getOrder ()Ljava/util/function/BiConsumer; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_287023_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$finalizePredicates$11 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121394_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$21 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121396_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$20 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121398_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$19 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121400_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$18 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121402_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$17 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121404_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$16 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121406_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$15 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121408_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$14 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121410_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$13 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121412_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$12 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121414_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$11 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121416_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$10 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121418_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$9 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121420_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$8 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121422_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$7 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121424_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$6 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121426_ ()V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/bootStrap ()V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121434_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$63 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121440_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/suggestNames (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121447_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Ljava/lang/String;I)Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/get (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Ljava/lang/String;I)Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121451_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$4 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121453_ (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/register (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121486_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$62 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121492_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121505_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$60 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121507_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121513_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$59 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121515_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121517_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$54 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121519_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121521_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$53 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121523_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$51 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121525_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$50 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121527_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$48 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121529_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$47 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121531_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$45 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121533_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$44 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121535_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$39 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121537_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$38 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121539_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$36 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121541_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$35 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121543_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$32 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121547_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$29 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121549_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$28 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121551_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$27 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121553_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$26 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121555_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$25 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121557_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$24 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121559_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$23 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121561_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$22 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175148_ (Lnet/minecraft/world/entity/EntityType;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$43 (Lnet/minecraft/world/entity/EntityType;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175152_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$30 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175155_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$42 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175163_ (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$46 (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175167_ (Ljava/util/Map;Lnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$56 (Ljava/util/Map;Lnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175170_ (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$58 (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175173_ (Lnet/minecraft/nbt/CompoundTag;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$49 (Lnet/minecraft/nbt/CompoundTag;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175181_ (ZLnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$57 (ZLnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175184_ (ZLnet/minecraft/advancements/CriterionProgress;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$55 (ZLnet/minecraft/advancements/CriterionProgress;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175187_ (ZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$34 (ZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175191_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$33 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175195_ (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$37 (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175199_ (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$52 (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175206_ (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$5 (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_205688_ (Lnet/minecraft/tags/TagKey;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$41 (Lnet/minecraft/tags/TagKey;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_244754_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$31 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_257090_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$40 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_287024_ (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$61 (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier/m_121563_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier/handle (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/ (Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/ (Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121565_ ()Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/modifier ()Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121567_ ()Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_243902_ ()Ljava/util/function/Predicate; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/canUse ()Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/hashCode ()I net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/hashCode ()I +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/toString ()Ljava/lang/String; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/toString ()Ljava/lang/String; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/ArgumentTypeInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/ArgumentTypeInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/ArgumentTypeInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/ArgumentTypeInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235382_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfos/byClass (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235384_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfos/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235386_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Class;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfos/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Class;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235391_ (Ljava/lang/Class;)Z net/minecraft/commands/synchronization/ArgumentTypeInfos/isClassRecognized (Ljava/lang/Class;)Z +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235393_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/ArgumentTypeInfos/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235395_ (Ljava/lang/Class;)Ljava/lang/Class; net/minecraft/commands/synchronization/ArgumentTypeInfos/fixClassType (Ljava/lang/Class;)Ljava/lang/Class; +MD: net/minecraft/commands/synchronization/ArgumentUtils/ ()V net/minecraft/commands/synchronization/ArgumentUtils/ ()V +MD: net/minecraft/commands/synchronization/ArgumentUtils/ ()V net/minecraft/commands/synchronization/ArgumentUtils/ ()V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235402_ (B)Z net/minecraft/commands/synchronization/ArgumentUtils/numberHasMin (B)Z +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235404_ (Lcom/google/gson/JsonObject;Lcom/mojang/brigadier/arguments/ArgumentType;)V net/minecraft/commands/synchronization/ArgumentUtils/serializeArgumentToJson (Lcom/google/gson/JsonObject;Lcom/mojang/brigadier/arguments/ArgumentType;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235407_ (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/commands/synchronization/ArgumentUtils/serializeCap (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235410_ (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/commands/synchronization/ArgumentUtils/serializeCap (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235414_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;)Lcom/google/gson/JsonObject; net/minecraft/commands/synchronization/ArgumentUtils/serializeNodeToJson (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;)Lcom/google/gson/JsonObject; +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235417_ (Lcom/mojang/brigadier/tree/CommandNode;)Ljava/util/Set; net/minecraft/commands/synchronization/ArgumentUtils/findUsedArgumentTypes (Lcom/mojang/brigadier/tree/CommandNode;)Ljava/util/Set; +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235419_ (Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/commands/synchronization/ArgumentUtils/findUsedArgumentTypes (Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235423_ (Ljava/util/Set;Ljava/util/Set;Lcom/mojang/brigadier/tree/CommandNode;)V net/minecraft/commands/synchronization/ArgumentUtils/lambda$findUsedArgumentTypes$0 (Ljava/util/Set;Ljava/util/Set;Lcom/mojang/brigadier/tree/CommandNode;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235427_ (ZZ)I net/minecraft/commands/synchronization/ArgumentUtils/createNumberFlags (ZZ)I +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235430_ (B)Z net/minecraft/commands/synchronization/ArgumentUtils/numberHasMax (B)Z +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/ (Ljava/util/function/Function;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/ (Ljava/util/function/Function;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_235449_ (Ljava/util/function/Function;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; net/minecraft/commands/synchronization/SingletonArgumentInfo/contextAware (Ljava/util/function/Function;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_235451_ (Ljava/util/function/Supplier;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; net/minecraft/commands/synchronization/SingletonArgumentInfo/contextFree (Ljava/util/function/Supplier;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_235453_ (Ljava/util/function/Supplier;Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/SingletonArgumentInfo/lambda$contextFree$0 (Ljava/util/function/Supplier;Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo;Ljava/util/function/Function;)V net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo;Ljava/util/function/Function;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/SuggestionProviders/ ()V net/minecraft/commands/synchronization/SuggestionProviders/ ()V +MD: net/minecraft/commands/synchronization/SuggestionProviders/ ()V net/minecraft/commands/synchronization/SuggestionProviders/ ()V +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121654_ (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/synchronization/SuggestionProviders/getName (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121656_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; net/minecraft/commands/synchronization/SuggestionProviders/getProvider (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121658_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; net/minecraft/commands/synchronization/SuggestionProviders/register (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121664_ (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; net/minecraft/commands/synchronization/SuggestionProviders/safelySwap (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121669_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121672_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_212435_ (Lnet/minecraft/world/entity/EntityType;)Lcom/mojang/brigadier/Message; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$4 (Lnet/minecraft/world/entity/EntityType;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_244756_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$3 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_257091_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$5 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_263147_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$2 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)V net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)V +MD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/getSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/getSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/DoubleArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/DoubleArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo;DD)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo;DD)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/DoubleArgumentType; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/DoubleArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/FloatArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/FloatArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo;FF)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo;FF)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/FloatArgumentType; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/FloatArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/IntegerArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/IntegerArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo;II)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo;II)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/IntegerArgumentType; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/IntegerArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/LongArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/LongArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo;JJ)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo;JJ)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/LongArgumentType; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/LongArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/ ()V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/ ()V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214163_ (Lcom/mojang/brigadier/arguments/StringArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/unpack (Lcom/mojang/brigadier/arguments/StringArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/ ()V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/ ()V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer;Lcom/mojang/brigadier/arguments/StringArgumentType$StringType;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer;Lcom/mojang/brigadier/arguments/StringArgumentType$StringType;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/StringArgumentType; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/StringArgumentType; +MD: net/minecraft/core/AxisCycle/ ()V net/minecraft/core/AxisCycle/ ()V +MD: net/minecraft/core/AxisCycle/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle/m_121799_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/between (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle/m_175240_ ()[Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/$values ()[Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/AxisCycle/valueOf (Ljava/lang/String;)Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/valueOf (Ljava/lang/String;)Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/values ()[Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/values ()[Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$1/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle$1/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle$1/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle$1/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle$1/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle$1/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle$1/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle$1/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$1/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle$1/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/AxisCycle$2/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle$2/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle$2/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle$2/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle$2/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle$2/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle$2/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle$2/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$2/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle$2/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/AxisCycle$3/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle$3/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle$3/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle$3/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle$3/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle$3/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle$3/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle$3/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$3/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle$3/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/BlockMath/ ()V net/minecraft/core/BlockMath/ ()V +MD: net/minecraft/core/BlockMath/ ()V net/minecraft/core/BlockMath/ ()V +MD: net/minecraft/core/BlockMath/m_121842_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; net/minecraft/core/BlockMath/blockCenterToCorner (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: net/minecraft/core/BlockMath/m_121844_ (Lcom/mojang/math/Transformation;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;)Lcom/mojang/math/Transformation; net/minecraft/core/BlockMath/getUVLockTransform (Lcom/mojang/math/Transformation;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;)Lcom/mojang/math/Transformation; +MD: net/minecraft/core/BlockMath/m_121848_ (Ljava/util/EnumMap;)V net/minecraft/core/BlockMath/lambda$static$1 (Ljava/util/EnumMap;)V +MD: net/minecraft/core/BlockMath/m_121850_ (Ljava/util/EnumMap;)V net/minecraft/core/BlockMath/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/core/BlockMath/m_175259_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; net/minecraft/core/BlockMath/blockCornerToCenter (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: net/minecraft/core/BlockPos/ ()V net/minecraft/core/BlockPos/ ()V +MD: net/minecraft/core/BlockPos/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/core/BlockPos/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/core/BlockPos/ (III)V net/minecraft/core/BlockPos/ (III)V +MD: net/minecraft/core/BlockPos/m_121878_ ()J net/minecraft/core/BlockPos/asLong ()J +MD: net/minecraft/core/BlockPos/m_121882_ (III)J net/minecraft/core/BlockPos/asLong (III)J +MD: net/minecraft/core/BlockPos/m_121886_ (IIIIII)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (IIIIII)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121893_ (IIIIIII)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$withinManhattan$4 (IIIIIII)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_121910_ (JIII)J net/minecraft/core/BlockPos/offset (JIII)J +MD: net/minecraft/core/BlockPos/m_121915_ (JLnet/minecraft/core/Direction;)J net/minecraft/core/BlockPos/offset (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/core/BlockPos/m_121919_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121921_ (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121923_ (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/IntStream; net/minecraft/core/BlockPos/lambda$static$2 (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/IntStream; +MD: net/minecraft/core/BlockPos/m_121925_ (Lnet/minecraft/core/BlockPos;III)Ljava/lang/Iterable; net/minecraft/core/BlockPos/withinManhattan (Lnet/minecraft/core/BlockPos;III)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121930_ (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/core/BlockPos/findClosestMatch (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/core/BlockPos/m_121935_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/lang/Iterable; net/minecraft/core/BlockPos/spiralAround (Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121940_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Iterable; net/minecraft/core/BlockPos/betweenClosed (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_121950_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$spiralAround$6 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_121966_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/core/BlockPos/lambda$static$1 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/BlockPos/m_121976_ (IIIIII)Ljava/lang/Iterable; net/minecraft/core/BlockPos/betweenClosed (IIIIII)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121983_ (J)I net/minecraft/core/BlockPos/getX (J)I +MD: net/minecraft/core/BlockPos/m_121985_ (Lnet/minecraft/core/BlockPos;III)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/withinManhattanStream (Lnet/minecraft/core/BlockPos;III)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121990_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122001_ (IIIIII)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$betweenClosed$5 (IIIIII)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_122008_ (J)I net/minecraft/core/BlockPos/getY (J)I +MD: net/minecraft/core/BlockPos/m_122012_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/north ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122012_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/north ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122013_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/north (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122013_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/north (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122015_ (J)I net/minecraft/core/BlockPos/getZ (J)I +MD: net/minecraft/core/BlockPos/m_122019_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/south ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122019_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/south ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122020_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/south (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122020_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/south (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122022_ (J)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/of (J)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122024_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/west ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122024_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/west ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122025_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/west (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122025_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/west (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122027_ (J)J net/minecraft/core/BlockPos/getFlatIndex (J)J +MD: net/minecraft/core/BlockPos/m_122029_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/east ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122029_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/east ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122030_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/east (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122030_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/east (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122032_ ()Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos/mutable ()Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos/m_142393_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/multiply (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_142393_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/multiply (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_175269_ ([I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/lambda$static$0 ([I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_175288_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/atY (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_235632_ (IILnet/minecraft/util/RandomSource;IIIII)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$randomBetweenClosed$3 (IILnet/minecraft/util/RandomSource;IIIII)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_235641_ (Lnet/minecraft/util/RandomSource;IIIIIII)Ljava/lang/Iterable; net/minecraft/core/BlockPos/randomBetweenClosed (Lnet/minecraft/util/RandomSource;IIIIIII)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_235650_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;I)Ljava/lang/Iterable; net/minecraft/core/BlockPos/randomInCube (Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;I)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_252807_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/core/BlockPos/getCenter ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/core/BlockPos/m_274446_ (Lnet/minecraft/core/Position;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/containing (Lnet/minecraft/core/Position;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_274561_ (DDD)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/containing (DDD)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_276707_ (Ljava/util/Queue;ILnet/minecraft/core/BlockPos;)V net/minecraft/core/BlockPos/lambda$breadthFirstTraversal$7 (Ljava/util/Queue;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/core/BlockPos/m_276833_ (Lnet/minecraft/core/BlockPos;IILjava/util/function/BiConsumer;Ljava/util/function/Predicate;)I net/minecraft/core/BlockPos/breadthFirstTraversal (Lnet/minecraft/core/BlockPos;IILjava/util/function/BiConsumer;Ljava/util/function/Predicate;)I +MD: net/minecraft/core/BlockPos/m_284476_ (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/squareOutSouthEast (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_6625_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/below (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_6625_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/below (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_6630_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/above (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_6630_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/above (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7494_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/above ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7494_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/above ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7495_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/below ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7495_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/below ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7918_ (III)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/offset (III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7949_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/immutable ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7954_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/rotate (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$1/ (IILnet/minecraft/util/RandomSource;IIIII)V net/minecraft/core/BlockPos$1/ (IILnet/minecraft/util/RandomSource;IIIII)V +MD: net/minecraft/core/BlockPos$1/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$1/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$1/computeNext ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$1/computeNext ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$2/ (IIIIIII)V net/minecraft/core/BlockPos$2/ (IIIIIII)V +MD: net/minecraft/core/BlockPos$2/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$2/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$2/computeNext ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$2/computeNext ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$3/ (IIIIII)V net/minecraft/core/BlockPos$3/ (IIIIII)V +MD: net/minecraft/core/BlockPos$3/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$3/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$3/computeNext ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$3/computeNext ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$4/ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)V net/minecraft/core/BlockPos$4/ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/core/BlockPos$4/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$4/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$4/computeNext ()Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$4/computeNext ()Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$5/ ()V net/minecraft/core/BlockPos$5/ ()V +MD: net/minecraft/core/BlockPos$MutableBlockPos/ (III)V net/minecraft/core/BlockPos$MutableBlockPos/ (III)V +MD: net/minecraft/core/BlockPos$MutableBlockPos/ (DDD)V net/minecraft/core/BlockPos$MutableBlockPos/ (DDD)V +MD: net/minecraft/core/BlockPos$MutableBlockPos/ ()V net/minecraft/core/BlockPos$MutableBlockPos/ ()V +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122012_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/north ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122013_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/north (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122019_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/south ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122020_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/south (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122024_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/west ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122025_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/west (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122029_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/east ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122030_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/east (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122139_ (Lnet/minecraft/core/AxisCycle;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (Lnet/minecraft/core/AxisCycle;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122147_ (Lnet/minecraft/core/Direction$Axis;II)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/clamp (Lnet/minecraft/core/Direction$Axis;II)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122154_ (Lnet/minecraft/core/Vec3i;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setWithOffset (Lnet/minecraft/core/Vec3i;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122159_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setWithOffset (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122169_ (DDD)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (DDD)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122173_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122175_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122178_ (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122184_ (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122188_ (J)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (J)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122190_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122193_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142393_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/multiply (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142393_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/multiply (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142443_ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setZ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142443_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/setZ (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142448_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/setY (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142448_ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setY (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142451_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/setX (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142451_ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setX (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_175306_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setWithOffset (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_6625_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/below (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_6630_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/above (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7494_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/above ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7495_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/below ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7918_ (III)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/offset (III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7949_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/immutable ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7954_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/rotate (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockSource/m_6414_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/BlockSource/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/BlockSource/m_7094_ ()D net/minecraft/core/BlockSource/z ()D +MD: net/minecraft/core/BlockSource/m_7096_ ()D net/minecraft/core/BlockSource/x ()D +MD: net/minecraft/core/BlockSource/m_7098_ ()D net/minecraft/core/BlockSource/y ()D +MD: net/minecraft/core/BlockSource/m_7727_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/core/BlockSource/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/core/BlockSource/m_7961_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockSource/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockSource/m_8118_ ()Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/core/BlockSource/getEntity ()Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/core/BlockSourceImpl/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/core/BlockSourceImpl/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/core/BlockSourceImpl/m_6414_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/BlockSourceImpl/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/BlockSourceImpl/m_7094_ ()D net/minecraft/core/BlockSourceImpl/z ()D +MD: net/minecraft/core/BlockSourceImpl/m_7096_ ()D net/minecraft/core/BlockSourceImpl/x ()D +MD: net/minecraft/core/BlockSourceImpl/m_7098_ ()D net/minecraft/core/BlockSourceImpl/y ()D +MD: net/minecraft/core/BlockSourceImpl/m_7727_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/core/BlockSourceImpl/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/core/BlockSourceImpl/m_7961_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockSourceImpl/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockSourceImpl/m_8118_ ()Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/core/BlockSourceImpl/getEntity ()Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/core/Cursor3D/ (IIIIII)V net/minecraft/core/Cursor3D/ (IIIIII)V +MD: net/minecraft/core/Cursor3D/m_122304_ ()Z net/minecraft/core/Cursor3D/advance ()Z +MD: net/minecraft/core/Cursor3D/m_122305_ ()I net/minecraft/core/Cursor3D/nextX ()I +MD: net/minecraft/core/Cursor3D/m_122306_ ()I net/minecraft/core/Cursor3D/nextY ()I +MD: net/minecraft/core/Cursor3D/m_122307_ ()I net/minecraft/core/Cursor3D/nextZ ()I +MD: net/minecraft/core/Cursor3D/m_122308_ ()I net/minecraft/core/Cursor3D/getNextType ()I +MD: net/minecraft/core/DefaultedMappedRegistry/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V net/minecraft/core/DefaultedMappedRegistry/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V +MD: net/minecraft/core/DefaultedMappedRegistry/m_122315_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedMappedRegistry/getDefaultKey ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/DefaultedMappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/DefaultedMappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/DefaultedMappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; net/minecraft/core/DefaultedMappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/DefaultedMappedRegistry/m_213642_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/DefaultedMappedRegistry/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/DefaultedMappedRegistry/m_257799_ ()Ljava/util/Optional; net/minecraft/core/DefaultedMappedRegistry/lambda$getRandom$0 ()Ljava/util/Optional; +MD: net/minecraft/core/DefaultedMappedRegistry/m_6612_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/core/DefaultedMappedRegistry/getOptional (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/core/DefaultedMappedRegistry/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/DefaultedMappedRegistry/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/DefaultedMappedRegistry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/DefaultedMappedRegistry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedMappedRegistry/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/DefaultedMappedRegistry/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedMappedRegistry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedMappedRegistry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/DefaultedRegistry/m_122315_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedRegistry/getDefaultKey ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/DefaultedRegistry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/DefaultedRegistry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedRegistry/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/DefaultedRegistry/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedRegistry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedRegistry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/Direction/ ()V net/minecraft/core/Direction/ ()V +MD: net/minecraft/core/Direction/ (Ljava/lang/String;IIIILjava/lang/String;Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Vec3i;)V net/minecraft/core/Direction/ (Ljava/lang/String;IIIILjava/lang/String;Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/core/Direction/m_122364_ (D)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/fromYRot (D)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122366_ (DDD)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getNearest (DDD)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122370_ (F)Z net/minecraft/core/Direction/isFacingAngle (F)Z +MD: net/minecraft/core/Direction/m_122372_ (FFF)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getNearest (FFF)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122376_ (I)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/from3DDataValue (I)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122378_ (III)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/fromDelta (III)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122382_ (Lnet/minecraft/world/entity/Entity;)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/orderedByNearest (Lnet/minecraft/world/entity/Entity;)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122387_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$AxisDirection;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/fromAxisAndDirection (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$AxisDirection;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122390_ (Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/get (Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122398_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/makeDirectionArray (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122402_ (Ljava/lang/String;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/byName (Ljava/lang/String;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122407_ (I)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/from2DDataValue (I)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122411_ ()I net/minecraft/core/Direction/get3DDataValue ()I +MD: net/minecraft/core/Direction/m_122416_ ()I net/minecraft/core/Direction/get2DDataValue ()I +MD: net/minecraft/core/Direction/m_122421_ ()Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction/getAxisDirection ()Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction/m_122424_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getOpposite ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122427_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWise ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122428_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWise ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122429_ ()I net/minecraft/core/Direction/getStepX ()I +MD: net/minecraft/core/Direction/m_122430_ ()I net/minecraft/core/Direction/getStepY ()I +MD: net/minecraft/core/Direction/m_122431_ ()I net/minecraft/core/Direction/getStepZ ()I +MD: net/minecraft/core/Direction/m_122433_ ()Ljava/lang/String; net/minecraft/core/Direction/getName ()Ljava/lang/String; +MD: net/minecraft/core/Direction/m_122434_ ()Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction/getAxis ()Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction/m_122435_ ()F net/minecraft/core/Direction/toYRot ()F +MD: net/minecraft/core/Direction/m_122436_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Direction/getNormal ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Direction/m_175357_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getFacingAxis (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175362_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWise (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175364_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWise (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175366_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWiseX ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175367_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWiseX ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175368_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWiseZ ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175369_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWiseZ ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175370_ ()[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/$values ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_194528_ (Lnet/minecraft/core/Direction;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Direction/verifyVertical (Lnet/minecraft/core/Direction;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Direction/m_235666_ ()Ljava/util/stream/Stream; net/minecraft/core/Direction/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Direction/m_235667_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Collection; net/minecraft/core/Direction/allShuffled (Lnet/minecraft/util/RandomSource;)Ljava/util/Collection; +MD: net/minecraft/core/Direction/m_235672_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_235676_ (I)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/lambda$static$4 (I)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_235680_ (I)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/lambda$static$1 (I)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_235682_ (Lnet/minecraft/core/Direction;)I net/minecraft/core/Direction/lambda$static$3 (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/core/Direction/m_235684_ (Lnet/minecraft/core/Direction;)Z net/minecraft/core/Direction/lambda$static$2 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/core/Direction/m_235686_ (Lnet/minecraft/core/Direction;)I net/minecraft/core/Direction/lambda$static$0 (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/core/Direction/m_252919_ (Lorg/joml/Matrix4f;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/rotate (Lorg/joml/Matrix4f;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_253071_ ()Lorg/joml/Vector3f; net/minecraft/core/Direction/step ()Lorg/joml/Vector3f; +MD: net/minecraft/core/Direction/m_253075_ ()Lorg/joml/Quaternionf; net/minecraft/core/Direction/getRotation ()Lorg/joml/Quaternionf; +MD: net/minecraft/core/Direction/m_274012_ ()Ljava/lang/String; net/minecraft/core/Direction/lambda$verifyVertical$5 ()Ljava/lang/String; +MD: net/minecraft/core/Direction/m_7912_ ()Ljava/lang/String; net/minecraft/core/Direction/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/core/Direction/toString ()Ljava/lang/String; net/minecraft/core/Direction/toString ()Ljava/lang/String; +MD: net/minecraft/core/Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/values ()[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/values ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction$1/ ()V net/minecraft/core/Direction$1/ ()V +MD: net/minecraft/core/Direction$Axis/ ()V net/minecraft/core/Direction$Axis/ ()V +MD: net/minecraft/core/Direction$Axis/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis/m_122473_ (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/byName (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/m_122477_ ()Ljava/lang/String; net/minecraft/core/Direction$Axis/getName ()Ljava/lang/String; +MD: net/minecraft/core/Direction$Axis/m_122478_ ()Z net/minecraft/core/Direction$Axis/isVertical ()Z +MD: net/minecraft/core/Direction$Axis/m_122479_ ()Z net/minecraft/core/Direction$Axis/isHorizontal ()Z +MD: net/minecraft/core/Direction$Axis/m_122480_ ()Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Axis/getPlane ()Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction$Axis/m_175371_ ()[Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/$values ()[Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/m_235688_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/m_6150_ (DDD)D net/minecraft/core/Direction$Axis/choose (DDD)D +MD: net/minecraft/core/Direction$Axis/m_7863_ (III)I net/minecraft/core/Direction$Axis/choose (III)I +MD: net/minecraft/core/Direction$Axis/m_7912_ ()Ljava/lang/String; net/minecraft/core/Direction$Axis/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/core/Direction$Axis/test (Lnet/minecraft/core/Direction;)Z net/minecraft/core/Direction$Axis/test (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/core/Direction$Axis/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Axis/toString ()Ljava/lang/String; net/minecraft/core/Direction$Axis/toString ()Ljava/lang/String; +MD: net/minecraft/core/Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/values ()[Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/values ()[Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis$1/m_6150_ (DDD)D net/minecraft/core/Direction$Axis$1/choose (DDD)D +MD: net/minecraft/core/Direction$Axis$1/m_7863_ (III)I net/minecraft/core/Direction$Axis$1/choose (III)I +MD: net/minecraft/core/Direction$Axis$1/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis$1/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Axis$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis$2/m_6150_ (DDD)D net/minecraft/core/Direction$Axis$2/choose (DDD)D +MD: net/minecraft/core/Direction$Axis$2/m_7863_ (III)I net/minecraft/core/Direction$Axis$2/choose (III)I +MD: net/minecraft/core/Direction$Axis$2/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis$2/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Axis$3/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis$3/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis$3/m_6150_ (DDD)D net/minecraft/core/Direction$Axis$3/choose (DDD)D +MD: net/minecraft/core/Direction$Axis$3/m_7863_ (III)I net/minecraft/core/Direction$Axis$3/choose (III)I +MD: net/minecraft/core/Direction$Axis$3/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis$3/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$AxisDirection/ ()V net/minecraft/core/Direction$AxisDirection/ ()V +MD: net/minecraft/core/Direction$AxisDirection/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/core/Direction$AxisDirection/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/core/Direction$AxisDirection/m_122540_ ()I net/minecraft/core/Direction$AxisDirection/getStep ()I +MD: net/minecraft/core/Direction$AxisDirection/m_122541_ ()Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/opposite ()Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$AxisDirection/m_175372_ ()Ljava/lang/String; net/minecraft/core/Direction$AxisDirection/getName ()Ljava/lang/String; +MD: net/minecraft/core/Direction$AxisDirection/m_175373_ ()[Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/$values ()[Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$AxisDirection/toString ()Ljava/lang/String; net/minecraft/core/Direction$AxisDirection/toString ()Ljava/lang/String; +MD: net/minecraft/core/Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$AxisDirection/values ()[Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/values ()[Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$Plane/ ()V net/minecraft/core/Direction$Plane/ ()V +MD: net/minecraft/core/Direction$Plane/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;[Lnet/minecraft/core/Direction$Axis;)V net/minecraft/core/Direction$Plane/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;[Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/core/Direction$Plane/iterator ()Ljava/util/Iterator; net/minecraft/core/Direction$Plane/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/Direction$Plane/m_122557_ ()Ljava/util/stream/Stream; net/minecraft/core/Direction$Plane/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Direction$Plane/m_175374_ ()[Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Plane/$values ()[Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction$Plane/m_235690_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction$Plane/getRandomDirection (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction$Plane/m_235692_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Plane/getRandomAxis (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Plane/m_235694_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/core/Direction$Plane/shuffledCopy (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/core/Direction$Plane/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Plane/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Plane/test (Lnet/minecraft/core/Direction;)Z net/minecraft/core/Direction$Plane/test (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/core/Direction$Plane/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Plane/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction$Plane/values ()[Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Plane/values ()[Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction8/ ()V net/minecraft/core/Direction8/ ()V +MD: net/minecraft/core/Direction8/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;)V net/minecraft/core/Direction8/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/Direction8/m_122593_ ()Ljava/util/Set; net/minecraft/core/Direction8/getDirections ()Ljava/util/Set; +MD: net/minecraft/core/Direction8/m_175375_ ()[Lnet/minecraft/core/Direction8; net/minecraft/core/Direction8/$values ()[Lnet/minecraft/core/Direction8; +MD: net/minecraft/core/Direction8/m_235697_ ()I net/minecraft/core/Direction8/getStepX ()I +MD: net/minecraft/core/Direction8/m_235698_ ()I net/minecraft/core/Direction8/getStepZ ()I +MD: net/minecraft/core/Direction8/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction8; net/minecraft/core/Direction8/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction8; +MD: net/minecraft/core/Direction8/values ()[Lnet/minecraft/core/Direction8; net/minecraft/core/Direction8/values ()[Lnet/minecraft/core/Direction8; +MD: net/minecraft/core/FrontAndTop/ ()V net/minecraft/core/FrontAndTop/ ()V +MD: net/minecraft/core/FrontAndTop/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)V net/minecraft/core/FrontAndTop/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/FrontAndTop/m_122622_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/fromFrontAndTop (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/FrontAndTop/m_122625_ ()Lnet/minecraft/core/Direction; net/minecraft/core/FrontAndTop/front ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/FrontAndTop/m_122626_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)I net/minecraft/core/FrontAndTop/lookupKey (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/core/FrontAndTop/m_122629_ ()Lnet/minecraft/core/Direction; net/minecraft/core/FrontAndTop/top ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/FrontAndTop/m_175376_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/core/FrontAndTop/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/core/FrontAndTop/m_175378_ ()[Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/$values ()[Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/FrontAndTop/m_7912_ ()Ljava/lang/String; net/minecraft/core/FrontAndTop/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/core/FrontAndTop/valueOf (Ljava/lang/String;)Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/valueOf (Ljava/lang/String;)Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/FrontAndTop/values ()[Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/values ()[Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/GlobalPos/ ()V net/minecraft/core/GlobalPos/ ()V +MD: net/minecraft/core/GlobalPos/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)V net/minecraft/core/GlobalPos/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/core/GlobalPos/equals (Ljava/lang/Object;)Z net/minecraft/core/GlobalPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/GlobalPos/hashCode ()I net/minecraft/core/GlobalPos/hashCode ()I +MD: net/minecraft/core/GlobalPos/m_122640_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/GlobalPos/dimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/GlobalPos/m_122641_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/GlobalPos/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/GlobalPos/m_122643_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/GlobalPos; net/minecraft/core/GlobalPos/of (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/core/GlobalPos/m_122646_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/GlobalPos/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/GlobalPos/toString ()Ljava/lang/String; net/minecraft/core/GlobalPos/toString ()Ljava/lang/String; +MD: net/minecraft/core/Holder/m_203334_ ()Ljava/lang/Object; net/minecraft/core/Holder/value ()Ljava/lang/Object; +MD: net/minecraft/core/Holder/m_203373_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Holder/is (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Holder/m_203376_ ()Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder/kind ()Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder/m_203401_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/Holder/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/Holder/m_203425_ (Ljava/util/function/Predicate;)Z net/minecraft/core/Holder/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/core/Holder/m_203439_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/Holder/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/Holder/m_203543_ ()Ljava/util/Optional; net/minecraft/core/Holder/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/Holder/m_203565_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Holder/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Holder/m_203616_ ()Ljava/util/stream/Stream; net/minecraft/core/Holder/tags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Holder/m_203633_ ()Z net/minecraft/core/Holder/isBound ()Z +MD: net/minecraft/core/Holder/m_203656_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/core/Holder/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/core/Holder/m_205709_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder; net/minecraft/core/Holder/direct (Ljava/lang/Object;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Holder$Direct/ (Ljava/lang/Object;)V net/minecraft/core/Holder$Direct/ (Ljava/lang/Object;)V +MD: net/minecraft/core/Holder$Direct/equals (Ljava/lang/Object;)Z net/minecraft/core/Holder$Direct/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/Holder$Direct/hashCode ()I net/minecraft/core/Holder$Direct/hashCode ()I +MD: net/minecraft/core/Holder$Direct/m_203334_ ()Ljava/lang/Object; net/minecraft/core/Holder$Direct/value ()Ljava/lang/Object; +MD: net/minecraft/core/Holder$Direct/m_203373_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Holder$Direct/is (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Holder$Direct/m_203376_ ()Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Direct/kind ()Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Direct/m_203401_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/Holder$Direct/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/Holder$Direct/m_203425_ (Ljava/util/function/Predicate;)Z net/minecraft/core/Holder$Direct/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/core/Holder$Direct/m_203439_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/Holder$Direct/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/Holder$Direct/m_203543_ ()Ljava/util/Optional; net/minecraft/core/Holder$Direct/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/Holder$Direct/m_203565_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Holder$Direct/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Holder$Direct/m_203616_ ()Ljava/util/stream/Stream; net/minecraft/core/Holder$Direct/tags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Holder$Direct/m_203633_ ()Z net/minecraft/core/Holder$Direct/isBound ()Z +MD: net/minecraft/core/Holder$Direct/m_203656_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/core/Holder$Direct/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/core/Holder$Direct/toString ()Ljava/lang/String; net/minecraft/core/Holder$Direct/toString ()Ljava/lang/String; +MD: net/minecraft/core/Holder$Kind/ ()V net/minecraft/core/Holder$Kind/ ()V +MD: net/minecraft/core/Holder$Kind/ (Ljava/lang/String;I)V net/minecraft/core/Holder$Kind/ (Ljava/lang/String;I)V +MD: net/minecraft/core/Holder$Kind/m_205744_ ()[Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Kind/$values ()[Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Kind/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Kind/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Kind/values ()[Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Kind/values ()[Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Reference/ (Lnet/minecraft/core/Holder$Reference$Type;Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V net/minecraft/core/Holder$Reference/ (Lnet/minecraft/core/Holder$Reference$Type;Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V +MD: net/minecraft/core/Holder$Reference/m_203334_ ()Ljava/lang/Object; net/minecraft/core/Holder$Reference/value ()Ljava/lang/Object; +MD: net/minecraft/core/Holder$Reference/m_203373_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Holder$Reference/is (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Holder$Reference/m_203376_ ()Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Reference/kind ()Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Reference/m_203401_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/Holder$Reference/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/Holder$Reference/m_203425_ (Ljava/util/function/Predicate;)Z net/minecraft/core/Holder$Reference/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/core/Holder$Reference/m_203439_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/Holder$Reference/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/Holder$Reference/m_203543_ ()Ljava/util/Optional; net/minecraft/core/Holder$Reference/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/Holder$Reference/m_203565_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Holder$Reference/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Holder$Reference/m_203616_ ()Ljava/util/stream/Stream; net/minecraft/core/Holder$Reference/tags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Holder$Reference/m_203633_ ()Z net/minecraft/core/Holder$Reference/isBound ()Z +MD: net/minecraft/core/Holder$Reference/m_203656_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/core/Holder$Reference/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/core/Holder$Reference/m_205769_ (Ljava/util/Collection;)V net/minecraft/core/Holder$Reference/bindTags (Ljava/util/Collection;)V +MD: net/minecraft/core/Holder$Reference/m_205785_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/Holder$Reference/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/Holder$Reference/m_246870_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/core/Holder$Reference/bindKey (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/core/Holder$Reference/m_247654_ (Ljava/lang/Object;)V net/minecraft/core/Holder$Reference/bindValue (Ljava/lang/Object;)V +MD: net/minecraft/core/Holder$Reference/m_254896_ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Holder$Reference/createStandAlone (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Holder$Reference/m_255375_ (Lnet/minecraft/core/HolderOwner;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Holder$Reference/createIntrusive (Lnet/minecraft/core/HolderOwner;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Holder$Reference/toString ()Ljava/lang/String; net/minecraft/core/Holder$Reference/toString ()Ljava/lang/String; +MD: net/minecraft/core/Holder$Reference$Type/ ()V net/minecraft/core/Holder$Reference$Type/ ()V +MD: net/minecraft/core/Holder$Reference$Type/ (Ljava/lang/String;I)V net/minecraft/core/Holder$Reference$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/core/Holder$Reference$Type/m_205794_ ()[Lnet/minecraft/core/Holder$Reference$Type; net/minecraft/core/Holder$Reference$Type/$values ()[Lnet/minecraft/core/Holder$Reference$Type; +MD: net/minecraft/core/Holder$Reference$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference$Type; net/minecraft/core/Holder$Reference$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference$Type; +MD: net/minecraft/core/Holder$Reference$Type/values ()[Lnet/minecraft/core/Holder$Reference$Type; net/minecraft/core/Holder$Reference$Type/values ()[Lnet/minecraft/core/Holder$Reference$Type; +MD: net/minecraft/core/HolderGetter/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/HolderGetter/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderGetter/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderGetter/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderGetter/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/HolderGetter/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/HolderGetter/m_255029_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderGetter/lambda$getOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderGetter/m_255043_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/HolderGetter/getOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/HolderGetter/m_255357_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderGetter/lambda$getOrThrow$1 (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderGetter$Provider/m_254974_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/HolderGetter$Provider/lookupOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/HolderGetter$Provider/m_255095_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderGetter$Provider/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderGetter$Provider/m_255318_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderGetter$Provider/lambda$lookupOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderLookup/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_255107_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listTagIds ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_255209_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listElementIds ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_255348_ (Ljava/util/function/Predicate;)Lnet/minecraft/core/HolderLookup; net/minecraft/core/HolderLookup/filterElements (Ljava/util/function/Predicate;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/core/HolderLookup$1/ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup;Ljava/util/function/Predicate;)V net/minecraft/core/HolderLookup$1/ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup;Ljava/util/function/Predicate;)V +MD: net/minecraft/core/HolderLookup$1/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$1/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$1/m_255004_ (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/core/HolderLookup$1/lambda$get$0 (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/core/HolderLookup$1/m_255425_ (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/core/HolderLookup$1/lambda$listElements$1 (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/core/HolderLookup$Delegate/ (Lnet/minecraft/core/HolderLookup;)V net/minecraft/core/HolderLookup$Delegate/ (Lnet/minecraft/core/HolderLookup;)V +MD: net/minecraft/core/HolderLookup$Delegate/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$Delegate/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$Delegate/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$Delegate/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$Delegate/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Delegate/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Delegate/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Delegate/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Provider/m_254861_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Provider/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Provider/m_254973_ (Ljava/util/stream/Stream;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/core/HolderLookup$Provider/create (Ljava/util/stream/Stream;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/core/HolderLookup$Provider/m_255025_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/HolderLookup$Provider/lookupOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/HolderLookup$Provider/m_255059_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderLookup$Provider/lambda$lookupOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderLookup$Provider/m_255063_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/HolderLookup$Provider/lambda$create$1 (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/HolderLookup$Provider/m_255325_ ()Lnet/minecraft/core/HolderGetter$Provider; net/minecraft/core/HolderLookup$Provider/asGetterLookup ()Lnet/minecraft/core/HolderGetter$Provider; +MD: net/minecraft/core/HolderLookup$Provider$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/core/HolderLookup$Provider$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/core/HolderLookup$Provider$1/m_254940_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/HolderLookup$Provider$1/lambda$lookup$0 (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/HolderLookup$Provider$1/m_255095_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Provider$1/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Provider$2/ (Ljava/util/Map;)V net/minecraft/core/HolderLookup$Provider$2/ (Ljava/util/Map;)V +MD: net/minecraft/core/HolderLookup$Provider$2/m_254861_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Provider$2/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_245140_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/core/HolderLookup; net/minecraft/core/HolderLookup$RegistryLookup/filterFeatures (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_246849_ (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/lang/Object;)Z net/minecraft/core/HolderLookup$RegistryLookup/lambda$filterFeatures$0 (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/lang/Object;)Z +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/HolderLookup$RegistryLookup/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/HolderLookup$RegistryLookup/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/ ()V net/minecraft/core/HolderLookup$RegistryLookup$Delegate/ ()V +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254893_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/parent ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderOwner/m_254921_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderOwner/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet/m_203333_ (Lnet/minecraft/core/Holder;)Z net/minecraft/core/HolderSet/contains (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/core/HolderSet/m_203440_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/HolderSet/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/HolderSet/m_203614_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderSet/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderSet/m_203632_ ()I net/minecraft/core/HolderSet/size ()I +MD: net/minecraft/core/HolderSet/m_203662_ (I)Lnet/minecraft/core/Holder; net/minecraft/core/HolderSet/get (I)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/HolderSet/m_205800_ (Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct (Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_205803_ (Ljava/util/function/Function;Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct (Ljava/util/function/Function;Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_205806_ (Ljava/util/function/Function;[Ljava/lang/Object;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct (Ljava/util/function/Function;[Ljava/lang/Object;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_205809_ ([Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct ([Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_207277_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderSet/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet/m_213653_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/HolderSet/getRandomElement (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/HolderSet/m_245234_ ()Ljava/util/Optional; net/minecraft/core/HolderSet/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/HolderSet/m_255229_ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/HolderSet/emptyNamed (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/HolderSet$Direct/ (Ljava/util/List;)V net/minecraft/core/HolderSet$Direct/ (Ljava/util/List;)V +MD: net/minecraft/core/HolderSet$Direct/m_203333_ (Lnet/minecraft/core/Holder;)Z net/minecraft/core/HolderSet$Direct/contains (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/core/HolderSet$Direct/m_203440_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/HolderSet$Direct/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/HolderSet$Direct/m_203661_ ()Ljava/util/List; net/minecraft/core/HolderSet$Direct/contents ()Ljava/util/List; +MD: net/minecraft/core/HolderSet$Direct/m_245234_ ()Ljava/util/Optional; net/minecraft/core/HolderSet$Direct/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/HolderSet$Direct/toString ()Ljava/lang/String; net/minecraft/core/HolderSet$Direct/toString ()Ljava/lang/String; +MD: net/minecraft/core/HolderSet$ListBacked/ ()V net/minecraft/core/HolderSet$ListBacked/ ()V +MD: net/minecraft/core/HolderSet$ListBacked/iterator ()Ljava/util/Iterator; net/minecraft/core/HolderSet$ListBacked/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/HolderSet$ListBacked/m_203614_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderSet$ListBacked/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderSet$ListBacked/m_203632_ ()I net/minecraft/core/HolderSet$ListBacked/size ()I +MD: net/minecraft/core/HolderSet$ListBacked/m_203661_ ()Ljava/util/List; net/minecraft/core/HolderSet$ListBacked/contents ()Ljava/util/List; +MD: net/minecraft/core/HolderSet$ListBacked/m_203662_ (I)Lnet/minecraft/core/Holder; net/minecraft/core/HolderSet$ListBacked/get (I)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/HolderSet$ListBacked/m_207277_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderSet$ListBacked/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet$ListBacked/m_213653_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/HolderSet$ListBacked/getRandomElement (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/HolderSet$ListBacked/spliterator ()Ljava/util/Spliterator; net/minecraft/core/HolderSet$ListBacked/spliterator ()Ljava/util/Spliterator; +MD: net/minecraft/core/HolderSet$Named/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)V net/minecraft/core/HolderSet$Named/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/core/HolderSet$Named/m_203333_ (Lnet/minecraft/core/Holder;)Z net/minecraft/core/HolderSet$Named/contains (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/core/HolderSet$Named/m_203440_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/HolderSet$Named/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/HolderSet$Named/m_203661_ ()Ljava/util/List; net/minecraft/core/HolderSet$Named/contents ()Ljava/util/List; +MD: net/minecraft/core/HolderSet$Named/m_205835_ (Ljava/util/List;)V net/minecraft/core/HolderSet$Named/bind (Ljava/util/List;)V +MD: net/minecraft/core/HolderSet$Named/m_205839_ ()Lnet/minecraft/tags/TagKey; net/minecraft/core/HolderSet$Named/key ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/core/HolderSet$Named/m_207277_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderSet$Named/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet$Named/m_245234_ ()Ljava/util/Optional; net/minecraft/core/HolderSet$Named/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/HolderSet$Named/toString ()Ljava/lang/String; net/minecraft/core/HolderSet$Named/toString ()Ljava/lang/String; +MD: net/minecraft/core/IdMap/m_13562_ ()I net/minecraft/core/IdMap/size ()I +MD: net/minecraft/core/IdMap/m_200957_ (I)Ljava/lang/Object; net/minecraft/core/IdMap/byIdOrThrow (I)Ljava/lang/Object; +MD: net/minecraft/core/IdMap/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/IdMap/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/IdMap/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/IdMap/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/IdMapper/ (I)V net/minecraft/core/IdMapper/ (I)V +MD: net/minecraft/core/IdMapper/ ()V net/minecraft/core/IdMapper/ ()V +MD: net/minecraft/core/IdMapper/iterator ()Ljava/util/Iterator; net/minecraft/core/IdMapper/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/IdMapper/m_122664_ (Ljava/lang/Object;I)V net/minecraft/core/IdMapper/addMapping (Ljava/lang/Object;I)V +MD: net/minecraft/core/IdMapper/m_122667_ (Ljava/lang/Object;)V net/minecraft/core/IdMapper/add (Ljava/lang/Object;)V +MD: net/minecraft/core/IdMapper/m_13562_ ()I net/minecraft/core/IdMapper/size ()I +MD: net/minecraft/core/IdMapper/m_175380_ (I)Z net/minecraft/core/IdMapper/contains (I)Z +MD: net/minecraft/core/IdMapper/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/IdMapper/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/IdMapper/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/IdMapper/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;)V net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;)V +MD: net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/core/LayeredRegistryAccess/m_245283_ (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getLayer (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_245317_ (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getAccessFrom (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_245473_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/core/LayeredRegistryAccess/lambda$collectRegistries$1 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/core/LayeredRegistryAccess/m_245589_ (Ljava/lang/Object;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/core/LayeredRegistryAccess/replaceFrom (Ljava/lang/Object;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/core/LayeredRegistryAccess/m_245684_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;)V net/minecraft/core/LayeredRegistryAccess/lambda$collectRegistries$2 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/core/LayeredRegistryAccess/m_246035_ (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getAccessForLoading (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_246119_ (Ljava/util/stream/Stream;)Ljava/util/Map; net/minecraft/core/LayeredRegistryAccess/collectRegistries (Ljava/util/stream/Stream;)Ljava/util/Map; +MD: net/minecraft/core/LayeredRegistryAccess/m_247084_ (Ljava/lang/Object;)I net/minecraft/core/LayeredRegistryAccess/getLayerIndexOrThrow (Ljava/lang/Object;)I +MD: net/minecraft/core/LayeredRegistryAccess/m_247441_ (II)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getCompositeAccessForLayers (II)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_247579_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/compositeAccess ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_247702_ (Ljava/util/List;)Ljava/util/List; net/minecraft/core/LayeredRegistryAccess/lambda$new$0 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/core/LayeredRegistryAccess/m_247705_ (Ljava/lang/Object;[Lnet/minecraft/core/RegistryAccess$Frozen;)Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/core/LayeredRegistryAccess/replaceFrom (Ljava/lang/Object;[Lnet/minecraft/core/RegistryAccess$Frozen;)Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/core/MappedRegistry/ ()V net/minecraft/core/MappedRegistry/ ()V +MD: net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V +MD: net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/core/MappedRegistry/iterator ()Ljava/util/Iterator; net/minecraft/core/MappedRegistry/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/MappedRegistry/m_123023_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/MappedRegistry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/MappedRegistry/m_13562_ ()I net/minecraft/core/MappedRegistry/size ()I +MD: net/minecraft/core/MappedRegistry/m_142003_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/MappedRegistry/containsKey (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/MappedRegistry/m_142427_ ()Z net/minecraft/core/MappedRegistry/isEmpty ()Z +MD: net/minecraft/core/MappedRegistry/m_194538_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V net/minecraft/core/MappedRegistry/lambda$new$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V +MD: net/minecraft/core/MappedRegistry/m_203300_ (I)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getHolder (I)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_203431_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getTag (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_203505_ ()Lnet/minecraft/core/HolderGetter; net/minecraft/core/MappedRegistry/createRegistrationLookup ()Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/MappedRegistry/m_203521_ ()Lnet/minecraft/core/Registry; net/minecraft/core/MappedRegistry/freeze ()Lnet/minecraft/core/Registry; +MD: net/minecraft/core/MappedRegistry/m_203561_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/MappedRegistry/getOrCreateTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/MappedRegistry/m_203611_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry/holders ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry/m_203612_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry/m_203613_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry/getTagNames ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry/m_203635_ ()V net/minecraft/core/MappedRegistry/resetTags ()V +MD: net/minecraft/core/MappedRegistry/m_203636_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getHolder (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_203652_ (Ljava/util/Map;)V net/minecraft/core/MappedRegistry/bindTags (Ljava/util/Map;)V +MD: net/minecraft/core/MappedRegistry/m_203658_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/MappedRegistry/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/MappedRegistry/m_203693_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/createIntrusiveHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; net/minecraft/core/MappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/MappedRegistry/m_205865_ (Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Object; net/minecraft/core/MappedRegistry/getValueFromNullable (Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_205921_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/core/MappedRegistry/validateWrite (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/core/MappedRegistry/m_211053_ ()Ljava/util/List; net/minecraft/core/MappedRegistry/holdersInOrder ()Ljava/util/List; +MD: net/minecraft/core/MappedRegistry/m_211054_ (Ljava/util/Map$Entry;)Z net/minecraft/core/MappedRegistry/lambda$freeze$6 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/core/MappedRegistry/m_211059_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/core/MappedRegistry/lambda$getTags$4 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/core/MappedRegistry/m_211067_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/MappedRegistry/createTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/MappedRegistry/m_211791_ (Lnet/minecraft/core/HolderSet$Named;)V net/minecraft/core/MappedRegistry/lambda$resetTags$13 (Lnet/minecraft/core/HolderSet$Named;)V +MD: net/minecraft/core/MappedRegistry/m_211793_ (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/MappedRegistry/lambda$freeze$7 (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/MappedRegistry/m_211795_ (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V net/minecraft/core/MappedRegistry/lambda$bindTags$12 (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V +MD: net/minecraft/core/MappedRegistry/m_211799_ (Ljava/util/Map;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/MappedRegistry/lambda$bindTags$9 (Ljava/util/Map;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/MappedRegistry/m_211802_ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/MappedRegistry/lambda$resetTags$14 (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/MappedRegistry/m_211804_ (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V net/minecraft/core/MappedRegistry/lambda$bindTags$10 (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V +MD: net/minecraft/core/MappedRegistry/m_211810_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/core/MappedRegistry/lambda$bindTags$11 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/core/MappedRegistry/m_213642_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_214010_ ()Ljava/util/Set; net/minecraft/core/MappedRegistry/registryKeySet ()Ljava/util/Set; +MD: net/minecraft/core/MappedRegistry/m_244758_ (Ljava/lang/Object;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/MappedRegistry/lambda$freeze$5 (Ljava/lang/Object;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/MappedRegistry/m_245419_ ()V net/minecraft/core/MappedRegistry/validateWrite ()V +MD: net/minecraft/core/MappedRegistry/m_245420_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/getOrCreateHolderOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_255290_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_255303_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/MappedRegistry/asLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/MappedRegistry/m_255331_ ()Lnet/minecraft/core/HolderOwner; net/minecraft/core/MappedRegistry/holderOwner ()Lnet/minecraft/core/HolderOwner; +MD: net/minecraft/core/MappedRegistry/m_257092_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/lambda$createIntrusiveHolder$8 (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_257093_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/core/MappedRegistry/lambda$new$1 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/core/MappedRegistry/m_257094_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/lambda$registerMapping$2 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_257095_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/lambda$getOrCreateHolderOrThrow$3 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_263177_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder; net/minecraft/core/MappedRegistry/wrapAsHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/MappedRegistry/m_6228_ (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/MappedRegistry/lifecycle (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/MappedRegistry/m_6246_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; net/minecraft/core/MappedRegistry/get (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_6566_ ()Ljava/util/Set; net/minecraft/core/MappedRegistry/keySet ()Ljava/util/Set; +MD: net/minecraft/core/MappedRegistry/m_6579_ ()Ljava/util/Set; net/minecraft/core/MappedRegistry/entrySet ()Ljava/util/Set; +MD: net/minecraft/core/MappedRegistry/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/MappedRegistry/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/MappedRegistry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/MappedRegistry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_7804_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/MappedRegistry/containsKey (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/MappedRegistry/m_7854_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getResourceKey (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/MappedRegistry/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/MappedRegistry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/MappedRegistry/toString ()Ljava/lang/String; net/minecraft/core/MappedRegistry/toString ()Ljava/lang/String; +MD: net/minecraft/core/MappedRegistry$1/ (Lnet/minecraft/core/MappedRegistry;)V net/minecraft/core/MappedRegistry$1/ (Lnet/minecraft/core/MappedRegistry;)V +MD: net/minecraft/core/MappedRegistry$1/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry$1/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry$1/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry$1/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry$1/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/MappedRegistry$1/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/MappedRegistry$1/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/MappedRegistry$1/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/MappedRegistry$1/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$1/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$2/ (Lnet/minecraft/core/MappedRegistry;)V net/minecraft/core/MappedRegistry$2/ (Lnet/minecraft/core/MappedRegistry;)V +MD: net/minecraft/core/MappedRegistry$2/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$2/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$2/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$2/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$2/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/MappedRegistry$2/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/MappedRegistry$2/m_255043_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry$2/getOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/NonNullList/ (Ljava/util/List;Ljava/lang/Object;)V net/minecraft/core/NonNullList/ (Ljava/util/List;Ljava/lang/Object;)V +MD: net/minecraft/core/NonNullList/add (ILjava/lang/Object;)V net/minecraft/core/NonNullList/add (ILjava/lang/Object;)V +MD: net/minecraft/core/NonNullList/clear ()V net/minecraft/core/NonNullList/clear ()V +MD: net/minecraft/core/NonNullList/get (I)Ljava/lang/Object; net/minecraft/core/NonNullList/get (I)Ljava/lang/Object; +MD: net/minecraft/core/NonNullList/m_122779_ ()Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/create ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/m_122780_ (ILjava/lang/Object;)Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/withSize (ILjava/lang/Object;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/m_122783_ (Ljava/lang/Object;[Ljava/lang/Object;)Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/of (Ljava/lang/Object;[Ljava/lang/Object;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/m_182647_ (I)Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/createWithCapacity (I)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/remove (I)Ljava/lang/Object; net/minecraft/core/NonNullList/remove (I)Ljava/lang/Object; +MD: net/minecraft/core/NonNullList/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/core/NonNullList/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/NonNullList/size ()I net/minecraft/core/NonNullList/size ()I +MD: net/minecraft/core/Position/m_7094_ ()D net/minecraft/core/Position/z ()D +MD: net/minecraft/core/Position/m_7096_ ()D net/minecraft/core/Position/x ()D +MD: net/minecraft/core/Position/m_7098_ ()D net/minecraft/core/Position/y ()D +MD: net/minecraft/core/PositionImpl/ (DDD)V net/minecraft/core/PositionImpl/ (DDD)V +MD: net/minecraft/core/PositionImpl/m_7094_ ()D net/minecraft/core/PositionImpl/z ()D +MD: net/minecraft/core/PositionImpl/m_7096_ ()D net/minecraft/core/PositionImpl/x ()D +MD: net/minecraft/core/PositionImpl/m_7098_ ()D net/minecraft/core/PositionImpl/y ()D +MD: net/minecraft/core/QuartPos/ ()V net/minecraft/core/QuartPos/ ()V +MD: net/minecraft/core/QuartPos/m_175400_ (I)I net/minecraft/core/QuartPos/fromBlock (I)I +MD: net/minecraft/core/QuartPos/m_175402_ (I)I net/minecraft/core/QuartPos/toBlock (I)I +MD: net/minecraft/core/QuartPos/m_175404_ (I)I net/minecraft/core/QuartPos/fromSection (I)I +MD: net/minecraft/core/QuartPos/m_175406_ (I)I net/minecraft/core/QuartPos/toSection (I)I +MD: net/minecraft/core/QuartPos/m_198376_ (I)I net/minecraft/core/QuartPos/quartLocal (I)I +MD: net/minecraft/core/Registry/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/core/Registry/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_122956_ (Lnet/minecraft/core/Registry;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/registerMapping (Lnet/minecraft/core/Registry;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_122961_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_122965_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_123009_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/Registry/getOptional (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_123013_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; net/minecraft/core/Registry/getOrThrow (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_123023_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/Registry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/Registry/m_123024_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_142003_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Registry/containsKey (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Registry/m_194579_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_194605_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/Registry/byNameCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/Registry/m_203300_ (I)Ljava/util/Optional; net/minecraft/core/Registry/getHolder (I)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_203431_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/Registry/getTag (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_203521_ ()Lnet/minecraft/core/Registry; net/minecraft/core/Registry/freeze ()Lnet/minecraft/core/Registry; +MD: net/minecraft/core/Registry/m_203561_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/Registry/getOrCreateTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/Registry/m_203611_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/holders ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_203612_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_203613_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/getTagNames ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_203635_ ()V net/minecraft/core/Registry/resetTags ()V +MD: net/minecraft/core/Registry/m_203636_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/Registry/getHolder (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_203652_ (Ljava/util/Map;)V net/minecraft/core/Registry/bindTags (Ljava/util/Map;)V +MD: net/minecraft/core/Registry/m_203658_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_203693_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/createIntrusiveHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_206058_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/Iterable; net/minecraft/core/Registry/getTagOrEmpty (Lnet/minecraft/tags/TagKey;)Ljava/lang/Iterable; +MD: net/minecraft/core/Registry/m_206060_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$12 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_206110_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/Registry/holderByNameCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/Registry/m_206115_ ()Lnet/minecraft/core/IdMap; net/minecraft/core/Registry/asHolderIdMap ()Lnet/minecraft/core/IdMap; +MD: net/minecraft/core/Registry/m_213642_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/Registry/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_214010_ ()Ljava/util/Set; net/minecraft/core/Registry/registryKeySet ()Ljava/util/Set; +MD: net/minecraft/core/Registry/m_235782_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/Registry/lambda$keys$15 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_246971_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/getHolderOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_255014_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/Registry/asTagAddingLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/Registry/m_255303_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/Registry/asLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/Registry/m_255331_ ()Lnet/minecraft/core/HolderOwner; net/minecraft/core/Registry/holderOwner ()Lnet/minecraft/core/HolderOwner; +MD: net/minecraft/core/Registry/m_257096_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_257097_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/lambda$holderByNameCodec$14 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_257100_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$9 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_257103_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$5 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_257104_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/lambda$holderByNameCodec$13 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_257105_ (Ljava/lang/Object;)I net/minecraft/core/Registry/lambda$byNameCodec$6 (Ljava/lang/Object;)I +MD: net/minecraft/core/Registry/m_257106_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/Registry/lambda$getHolderOrThrow$16 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/Registry/m_263174_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/registerForHolder (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_263175_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/registerForHolder (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_263177_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder; net/minecraft/core/Registry/wrapAsHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Registry/m_274013_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$4 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274014_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$8 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274015_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274016_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$11 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274017_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/core/Registry/lambda$byNameCodec$3 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_274018_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/core/Registry/lambda$holderByNameCodec$7 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_274019_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/core/Registry/lambda$byNameCodec$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_274020_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/core/Registry/lambda$holderByNameCodec$10 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_6228_ (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/lifecycle (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_6246_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; net/minecraft/core/Registry/get (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_6566_ ()Ljava/util/Set; net/minecraft/core/Registry/keySet ()Ljava/util/Set; +MD: net/minecraft/core/Registry/m_6579_ ()Ljava/util/Set; net/minecraft/core/Registry/entrySet ()Ljava/util/Set; +MD: net/minecraft/core/Registry/m_6612_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/core/Registry/getOptional (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/Registry/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/Registry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/Registry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_7804_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Registry/containsKey (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Registry/m_7854_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/core/Registry/getResourceKey (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/Registry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/Registry$1/ (Lnet/minecraft/core/Registry;)V net/minecraft/core/Registry$1/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/Registry$1/iterator ()Ljava/util/Iterator; net/minecraft/core/Registry$1/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/Registry$1/m_13562_ ()I net/minecraft/core/Registry$1/size ()I +MD: net/minecraft/core/Registry$1/m_257407_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; net/minecraft/core/Registry$1/lambda$iterator$0 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Registry$1/m_7447_ (Lnet/minecraft/core/Holder;)I net/minecraft/core/Registry$1/getId (Lnet/minecraft/core/Holder;)I +MD: net/minecraft/core/Registry$1/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/Registry$1/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/Registry$1/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/Registry$1/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/Registry$1/m_7942_ (I)Lnet/minecraft/core/Holder; net/minecraft/core/Registry$1/byId (I)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Registry$2/ (Lnet/minecraft/core/Registry;)V net/minecraft/core/Registry$2/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/Registry$2/m_254893_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/Registry$2/parent ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/Registry$2/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/Registry$2/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry$2/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/Registry$2/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/RegistryAccess/ ()V net/minecraft/core/RegistryAccess/ ()V +MD: net/minecraft/core/RegistryAccess/m_175515_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess/registryOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess/m_175521_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/RegistryAccess/lambda$registryOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/RegistryAccess/m_203557_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/RegistryAccess/freeze ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/RegistryAccess/m_206165_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/RegistryAccess/fromRegistryOfRegistries (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/RegistryAccess/m_206193_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistryAccess/registries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistryAccess/m_211816_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistryAccess/allRegistriesLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistryAccess/m_254861_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess/m_257107_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistryAccess/lambda$allRegistriesLifecycle$1 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistryAccess/m_6632_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess/registry (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess$1/ (Lnet/minecraft/core/Registry;)V net/minecraft/core/RegistryAccess$1/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/RegistryAccess$1/m_203557_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/RegistryAccess$1/freeze ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/RegistryAccess$1/m_206193_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistryAccess$1/registries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistryAccess$1/m_6632_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess$1/registry (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess$1FrozenAccess/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)V net/minecraft/core/RegistryAccess$1FrozenAccess/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/Map;)V net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/Map;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/stream/Stream;)V net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/stream/Stream;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/List;)V net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/List;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_206193_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/registries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_206231_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/lambda$new$0 (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_244761_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/lambda$registry$1 (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_6632_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/registry (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)V net/minecraft/core/RegistryAccess$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/RegistryAccess$RegistryEntry/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistryAccess$RegistryEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206233_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistryAccess$RegistryEntry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206234_ ()Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess$RegistryEntry/value ()Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/hashCode ()I net/minecraft/core/RegistryAccess$RegistryEntry/hashCode ()I +MD: net/minecraft/core/RegistryAccess$RegistryEntry/m_206241_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; net/minecraft/core/RegistryAccess$RegistryEntry/fromMapEntry (Ljava/util/Map$Entry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/m_206243_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; net/minecraft/core/RegistryAccess$RegistryEntry/fromUntyped (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/m_206247_ ()Lnet/minecraft/core/RegistryAccess$RegistryEntry; net/minecraft/core/RegistryAccess$RegistryEntry/freeze ()Lnet/minecraft/core/RegistryAccess$RegistryEntry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/toString ()Ljava/lang/String; net/minecraft/core/RegistryAccess$RegistryEntry/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistryCodecs/ ()V net/minecraft/core/RegistryCodecs/ ()V +MD: net/minecraft/core/RegistryCodecs/m_206277_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206279_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206287_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206291_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/networkCodec (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206303_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; net/minecraft/core/RegistryCodecs/withNameAndId (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/core/RegistryCodecs/m_206306_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/RegistryCodecs/lambda$withNameAndId$0 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/RegistryCodecs/m_206310_ (Lnet/minecraft/resources/ResourceKey;Z)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_246213_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/fullCodec (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_257108_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryCodecs/lambda$fullCodec$4 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryCodecs/m_257109_ (Lnet/minecraft/core/Registry;)Ljava/util/List; net/minecraft/core/RegistryCodecs/lambda$networkCodec$2 (Lnet/minecraft/core/Registry;)Ljava/util/List; +MD: net/minecraft/core/RegistryCodecs/m_257110_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/List;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryCodecs/lambda$networkCodec$1 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/List;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryCodecs/m_257111_ (Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V net/minecraft/core/RegistryCodecs/lambda$fullCodec$3 (Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V +MD: net/minecraft/core/RegistryCodecs/m_257112_ (Lnet/minecraft/core/Registry;)Ljava/util/Map; net/minecraft/core/RegistryCodecs/lambda$fullCodec$5 (Lnet/minecraft/core/Registry;)Ljava/util/Map; +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;ILjava/lang/Object;)V net/minecraft/core/RegistryCodecs$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;ILjava/lang/Object;)V +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistryCodecs$RegistryEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206354_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistryCodecs$RegistryEntry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206355_ ()I net/minecraft/core/RegistryCodecs$RegistryEntry/id ()I +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206356_ ()Ljava/lang/Object; net/minecraft/core/RegistryCodecs$RegistryEntry/value ()Ljava/lang/Object; +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/hashCode ()I net/minecraft/core/RegistryCodecs$RegistryEntry/hashCode ()I +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/toString ()Ljava/lang/String; net/minecraft/core/RegistryCodecs$RegistryEntry/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder/ ()V net/minecraft/core/RegistrySetBuilder/ ()V +MD: net/minecraft/core/RegistrySetBuilder/m_254882_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/RegistrySetBuilder/wrapContextLookup (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/RegistrySetBuilder/m_254900_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; net/minecraft/core/RegistrySetBuilder/createState (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; +MD: net/minecraft/core/RegistrySetBuilder/m_254916_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; net/minecraft/core/RegistrySetBuilder/add (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; +MD: net/minecraft/core/RegistrySetBuilder/m_254929_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/core/RegistrySetBuilder/buildPatch (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/core/RegistrySetBuilder/m_255144_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/core/RegistrySetBuilder/build (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/core/RegistrySetBuilder/m_255162_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; net/minecraft/core/RegistrySetBuilder/add (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; +MD: net/minecraft/core/RegistrySetBuilder/m_255212_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder/lambda$build$2 (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder/m_255427_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)V net/minecraft/core/RegistrySetBuilder/lambda$createState$0 (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)V +MD: net/minecraft/core/RegistrySetBuilder/m_257113_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$6 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder/m_257114_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder/lambda$build$1 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder/m_271565_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$4 (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +MD: net/minecraft/core/RegistrySetBuilder/m_271566_ (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$3 (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V +MD: net/minecraft/core/RegistrySetBuilder/m_271567_ (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$5 (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V +MD: net/minecraft/core/RegistrySetBuilder$1/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/core/RegistrySetBuilder$1/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/core/RegistrySetBuilder$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/ (Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)V net/minecraft/core/RegistrySetBuilder$BuildState/ (Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$BuildState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254627_ ()Ljava/util/List; net/minecraft/core/RegistrySetBuilder$BuildState/errors ()Ljava/util/List; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254644_ ()Ljava/util/Map; net/minecraft/core/RegistrySetBuilder$BuildState/registeredValues ()Ljava/util/Map; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254680_ ()Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner; net/minecraft/core/RegistrySetBuilder$BuildState/owner ()Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254690_ ()Ljava/util/Map; net/minecraft/core/RegistrySetBuilder$BuildState/registries ()Ljava/util/Map; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254749_ ()Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup; net/minecraft/core/RegistrySetBuilder$BuildState/lookup ()Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/hashCode ()I net/minecraft/core/RegistrySetBuilder$BuildState/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_254941_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$create$1 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_254987_ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$BuildState/addOwner (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255178_ ()V net/minecraft/core/RegistrySetBuilder$BuildState/throwOnError ()V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255218_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$BuildState/lambda$fillMissingHolders$3 (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255228_ ()V net/minecraft/core/RegistrySetBuilder$BuildState/reportRemainingUnreferencedValues ()V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255274_ ()Lnet/minecraft/data/worldgen/BootstapContext; net/minecraft/core/RegistrySetBuilder$BuildState/bootstapContext ()Lnet/minecraft/data/worldgen/BootstapContext; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255298_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/core/RegistrySetBuilder$BuildState/fillMissingHolders (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255312_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderLookup;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$BuildState/lambda$fillMissingHolders$4 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderLookup;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255346_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$reportRemainingUnreferencedValues$2 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255352_ (Lnet/minecraft/core/Holder$Reference;Ljava/util/Iterator;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$fillMissingHolders$5 (Lnet/minecraft/core/Holder$Reference;Ljava/util/Iterator;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255369_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; net/minecraft/core/RegistrySetBuilder$BuildState/create (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_257115_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$create$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_271568_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; net/minecraft/core/RegistrySetBuilder$BuildState/lambda$collectReferencedRegistries$6 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_272134_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistrySetBuilder$BuildState/collectReferencedRegistries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$BuildState/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$BuildState$1/ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V net/minecraft/core/RegistrySetBuilder$BuildState$1/ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState$1/m_255042_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$BuildState$1/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$BuildState$1/m_255420_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/RegistrySetBuilder$BuildState$1/lookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/ ()V net/minecraft/core/RegistrySetBuilder$CompositeOwner/ ()V +MD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/m_254921_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/RegistrySetBuilder$CompositeOwner/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/m_255436_ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$CompositeOwner/add (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/ (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/ (Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/core/RegistrySetBuilder$RegisteredValue/ (Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$RegisteredValue/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254641_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegisteredValue/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254685_ ()Ljava/lang/Object; net/minecraft/core/RegistrySetBuilder$RegisteredValue/value ()Ljava/lang/Object; +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/hashCode ()I net/minecraft/core/RegistrySetBuilder$RegisteredValue/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$RegisteredValue/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$RegistryBootstrap/m_254966_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/core/RegistrySetBuilder$RegistryBootstrap/run (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)V net/minecraft/core/RegistrySetBuilder$RegistryContents/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$RegistryContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_254715_ ()Ljava/util/Map; net/minecraft/core/RegistrySetBuilder$RegistryContents/values ()Ljava/util/Map; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271144_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegistryContents/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271195_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySetBuilder$RegistryContents/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/hashCode ()I net/minecraft/core/RegistrySetBuilder$RegistryContents/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/m_254889_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder$RegistryContents/buildAsLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$RegistryContents/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/ (Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V net/minecraft/core/RegistrySetBuilder$RegistryContents$1/ (Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254922_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/lambda$$0 (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_255009_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/lambda$$1 (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)V net/minecraft/core/RegistrySetBuilder$RegistryStub/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$RegistryStub/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254689_ ()Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap; net/minecraft/core/RegistrySetBuilder$RegistryStub/bootstrap ()Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254728_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegistryStub/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254738_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySetBuilder$RegistryStub/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/hashCode ()I net/minecraft/core/RegistrySetBuilder$RegistryStub/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/m_254914_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; net/minecraft/core/RegistrySetBuilder$RegistryStub/collectChanges (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/m_254946_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V net/minecraft/core/RegistrySetBuilder$RegistryStub/apply (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$RegistryStub/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$UniversalLookup/ (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$UniversalLookup/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/m_255345_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$UniversalLookup/getOrCreate (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/m_255379_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$UniversalLookup/lambda$getOrCreate$0 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/ (Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;Ljava/util/Optional;)V net/minecraft/core/RegistrySetBuilder$ValueAndHolder/ (Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;Ljava/util/Optional;)V +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$ValueAndHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254632_ ()Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$ValueAndHolder/holder ()Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254683_ ()Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue; net/minecraft/core/RegistrySetBuilder$ValueAndHolder/value ()Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue; +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/hashCode ()I net/minecraft/core/RegistrySetBuilder$ValueAndHolder/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$ValueAndHolder/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySynchronization/ ()V net/minecraft/core/RegistrySynchronization/ ()V +MD: net/minecraft/core/RegistrySynchronization/ ()V net/minecraft/core/RegistrySynchronization/ ()V +MD: net/minecraft/core/RegistrySynchronization/m_245094_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistrySynchronization/lambda$captureMap$9 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistrySynchronization/m_245122_ (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; net/minecraft/core/RegistrySynchronization/networkSafeRegistries (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySynchronization/m_245617_ (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Map; net/minecraft/core/RegistrySynchronization/lambda$captureMap$10 (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Map; +MD: net/minecraft/core/RegistrySynchronization/m_245699_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/getNetworkCodec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization/m_245863_ (Lnet/minecraft/core/RegistrySynchronization$NetworkedRegistryData;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/lambda$getNetworkCodec$2 (Lnet/minecraft/core/RegistrySynchronization$NetworkedRegistryData;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_245912_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V net/minecraft/core/RegistrySynchronization/put (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/core/RegistrySynchronization/m_245940_ (Lcom/mojang/serialization/codecs/UnboundedMapCodec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/captureMap (Lcom/mojang/serialization/codecs/UnboundedMapCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_246090_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Z net/minecraft/core/RegistrySynchronization/lambda$ownedNetworkableRegistries$1 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Z +MD: net/minecraft/core/RegistrySynchronization/m_246347_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/lambda$makeNetworkCodec$7 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization/m_246968_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/lambda$makeNetworkCodec$6 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_246999_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySynchronization/lambda$captureMap$8 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySynchronization/m_247146_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/makeNetworkCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_247199_ (Lnet/minecraft/core/RegistryAccess;)Ljava/util/stream/Stream; net/minecraft/core/RegistrySynchronization/ownedNetworkableRegistries (Lnet/minecraft/core/RegistryAccess;)Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySynchronization/m_257117_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/lambda$makeNetworkCodec$5 (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization/m_257599_ (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; net/minecraft/core/RegistrySynchronization/networkedRegistries (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySynchronization/m_268833_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/core/RegistrySynchronization/lambda$static$0 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/core/RegistrySynchronization/m_274021_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/core/RegistrySynchronization/lambda$getNetworkCodec$3 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/core/RegistrySynchronization/m_274022_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/lambda$getNetworkCodec$4 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244392_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/networkCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244545_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/hashCode ()I net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/hashCode ()I +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/toString ()Ljava/lang/String; net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/toString ()Ljava/lang/String; +MD: net/minecraft/core/Rotations/ (FFF)V net/minecraft/core/Rotations/ (FFF)V +MD: net/minecraft/core/Rotations/ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/core/Rotations/ (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/core/Rotations/equals (Ljava/lang/Object;)Z net/minecraft/core/Rotations/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/Rotations/m_123155_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/core/Rotations/save ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/core/Rotations/m_123156_ ()F net/minecraft/core/Rotations/getX ()F +MD: net/minecraft/core/Rotations/m_123157_ ()F net/minecraft/core/Rotations/getY ()F +MD: net/minecraft/core/Rotations/m_123158_ ()F net/minecraft/core/Rotations/getZ ()F +MD: net/minecraft/core/Rotations/m_175532_ ()F net/minecraft/core/Rotations/getWrappedX ()F +MD: net/minecraft/core/Rotations/m_175533_ ()F net/minecraft/core/Rotations/getWrappedY ()F +MD: net/minecraft/core/Rotations/m_175534_ ()F net/minecraft/core/Rotations/getWrappedZ ()F +MD: net/minecraft/core/SectionPos/ (III)V net/minecraft/core/SectionPos/ (III)V +MD: net/minecraft/core/SectionPos/m_123170_ ()I net/minecraft/core/SectionPos/x ()I +MD: net/minecraft/core/SectionPos/m_123171_ (I)I net/minecraft/core/SectionPos/blockToSectionCoord (I)I +MD: net/minecraft/core/SectionPos/m_123173_ (III)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (III)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123177_ (IIIIII)Ljava/util/stream/Stream; net/minecraft/core/SectionPos/betweenClosedStream (IIIIII)Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_123184_ (J)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (J)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123186_ (JIII)J net/minecraft/core/SectionPos/offset (JIII)J +MD: net/minecraft/core/SectionPos/m_123191_ (JLnet/minecraft/core/Direction;)J net/minecraft/core/SectionPos/offset (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/core/SectionPos/m_123196_ (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123199_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123201_ (Lnet/minecraft/core/SectionPos;I)Ljava/util/stream/Stream; net/minecraft/core/SectionPos/cube (Lnet/minecraft/core/SectionPos;I)Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_123204_ (S)I net/minecraft/core/SectionPos/sectionRelativeX (S)I +MD: net/minecraft/core/SectionPos/m_123206_ ()I net/minecraft/core/SectionPos/y ()I +MD: net/minecraft/core/SectionPos/m_123207_ (I)I net/minecraft/core/SectionPos/sectionRelative (I)I +MD: net/minecraft/core/SectionPos/m_123209_ (III)J net/minecraft/core/SectionPos/asLong (III)J +MD: net/minecraft/core/SectionPos/m_123213_ (J)I net/minecraft/core/SectionPos/x (J)I +MD: net/minecraft/core/SectionPos/m_123218_ (Lnet/minecraft/core/BlockPos;)S net/minecraft/core/SectionPos/sectionRelativePos (Lnet/minecraft/core/BlockPos;)S +MD: net/minecraft/core/SectionPos/m_123220_ (S)I net/minecraft/core/SectionPos/sectionRelativeY (S)I +MD: net/minecraft/core/SectionPos/m_123222_ ()I net/minecraft/core/SectionPos/z ()I +MD: net/minecraft/core/SectionPos/m_123223_ (I)I net/minecraft/core/SectionPos/sectionToBlockCoord (I)I +MD: net/minecraft/core/SectionPos/m_123225_ (J)I net/minecraft/core/SectionPos/y (J)I +MD: net/minecraft/core/SectionPos/m_123227_ (S)I net/minecraft/core/SectionPos/sectionRelativeZ (S)I +MD: net/minecraft/core/SectionPos/m_123229_ ()I net/minecraft/core/SectionPos/minBlockX ()I +MD: net/minecraft/core/SectionPos/m_123230_ (J)I net/minecraft/core/SectionPos/z (J)I +MD: net/minecraft/core/SectionPos/m_123232_ (S)I net/minecraft/core/SectionPos/relativeToBlockX (S)I +MD: net/minecraft/core/SectionPos/m_123234_ ()I net/minecraft/core/SectionPos/minBlockY ()I +MD: net/minecraft/core/SectionPos/m_123235_ (J)J net/minecraft/core/SectionPos/blockToSection (J)J +MD: net/minecraft/core/SectionPos/m_123237_ (S)I net/minecraft/core/SectionPos/relativeToBlockY (S)I +MD: net/minecraft/core/SectionPos/m_123239_ ()I net/minecraft/core/SectionPos/minBlockZ ()I +MD: net/minecraft/core/SectionPos/m_123240_ (J)J net/minecraft/core/SectionPos/getZeroNode (J)J +MD: net/minecraft/core/SectionPos/m_123242_ (S)I net/minecraft/core/SectionPos/relativeToBlockZ (S)I +MD: net/minecraft/core/SectionPos/m_123244_ ()I net/minecraft/core/SectionPos/maxBlockX ()I +MD: net/minecraft/core/SectionPos/m_123245_ (S)Lnet/minecraft/core/BlockPos; net/minecraft/core/SectionPos/relativeToBlockPos (S)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/SectionPos/m_123247_ ()I net/minecraft/core/SectionPos/maxBlockY ()I +MD: net/minecraft/core/SectionPos/m_123248_ ()I net/minecraft/core/SectionPos/maxBlockZ ()I +MD: net/minecraft/core/SectionPos/m_123249_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/SectionPos/origin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/SectionPos/m_123250_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/SectionPos/center ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/SectionPos/m_123251_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/core/SectionPos/chunk ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/core/SectionPos/m_123252_ ()J net/minecraft/core/SectionPos/asLong ()J +MD: net/minecraft/core/SectionPos/m_123253_ ()Ljava/util/stream/Stream; net/minecraft/core/SectionPos/blocksInside ()Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_175552_ (D)I net/minecraft/core/SectionPos/posToSectionCoord (D)I +MD: net/minecraft/core/SectionPos/m_175554_ (II)I net/minecraft/core/SectionPos/sectionToBlockCoord (II)I +MD: net/minecraft/core/SectionPos/m_175557_ (Lnet/minecraft/world/level/ChunkPos;III)Ljava/util/stream/Stream; net/minecraft/core/SectionPos/aroundChunk (Lnet/minecraft/world/level/ChunkPos;III)Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_175562_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/bottomOf (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_175568_ (Lnet/minecraft/core/BlockPos;)J net/minecraft/core/SectionPos/asLong (Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/core/SectionPos/m_194634_ (IIILit/unimi/dsi/fastutil/longs/LongConsumer;)V net/minecraft/core/SectionPos/aroundAndAtBlockPos (IIILit/unimi/dsi/fastutil/longs/LongConsumer;)V +MD: net/minecraft/core/SectionPos/m_194639_ (JLit/unimi/dsi/fastutil/longs/LongConsumer;)V net/minecraft/core/SectionPos/aroundAndAtBlockPos (JLit/unimi/dsi/fastutil/longs/LongConsumer;)V +MD: net/minecraft/core/SectionPos/m_194642_ (Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/longs/LongConsumer;)V net/minecraft/core/SectionPos/aroundAndAtBlockPos (Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/longs/LongConsumer;)V +MD: net/minecraft/core/SectionPos/m_235861_ (Lnet/minecraft/world/level/entity/EntityAccess;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/world/level/entity/EntityAccess;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_235863_ (Lnet/minecraft/core/Position;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/core/Position;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_235865_ (D)I net/minecraft/core/SectionPos/blockToSectionCoord (D)I +MD: net/minecraft/core/SectionPos/m_284454_ (II)J net/minecraft/core/SectionPos/getZeroNode (II)J +MD: net/minecraft/core/SectionPos/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/SectionPos/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/SectionPos/m_7918_ (III)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/offset (III)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos$1/ (JIIIIIII)V net/minecraft/core/SectionPos$1/ (JIIIIIII)V +MD: net/minecraft/core/SectionPos$1/tryAdvance (Ljava/util/function/Consumer;)Z net/minecraft/core/SectionPos$1/tryAdvance (Ljava/util/function/Consumer;)Z +MD: net/minecraft/core/UUIDUtil/ ()V net/minecraft/core/UUIDUtil/ ()V +MD: net/minecraft/core/UUIDUtil/ ()V net/minecraft/core/UUIDUtil/ ()V +MD: net/minecraft/core/UUIDUtil/m_235872_ (JJ)[I net/minecraft/core/UUIDUtil/leastMostToIntArray (JJ)[I +MD: net/minecraft/core/UUIDUtil/m_235875_ (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/getOrCreatePlayerUUID (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235877_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/readUUID (Lcom/mojang/serialization/Dynamic;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235879_ (Ljava/lang/String;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/createOfflinePlayerUUID (Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235881_ (Ljava/util/UUID;)[I net/minecraft/core/UUIDUtil/uuidToIntArray (Ljava/util/UUID;)[I +MD: net/minecraft/core/UUIDUtil/m_235883_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/core/UUIDUtil/lambda$static$0 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/UUIDUtil/m_235885_ ([I)Ljava/util/UUID; net/minecraft/core/UUIDUtil/uuidFromIntArray ([I)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235887_ (Ljava/util/UUID;)Ljava/util/stream/IntStream; net/minecraft/core/UUIDUtil/lambda$static$1 (Ljava/util/UUID;)Ljava/util/stream/IntStream; +MD: net/minecraft/core/UUIDUtil/m_241191_ (Ljava/util/UUID;)[B net/minecraft/core/UUIDUtil/uuidToByteArray (Ljava/util/UUID;)[B +MD: net/minecraft/core/UUIDUtil/m_252596_ (Ljava/util/UUID;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/lambda$static$7 (Ljava/util/UUID;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_252597_ (Ljava/util/UUID;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/lambda$static$6 (Ljava/util/UUID;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_252599_ (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/lambda$static$8 (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_274023_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/core/UUIDUtil/lambda$static$3 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/UUIDUtil/m_274024_ (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; net/minecraft/core/UUIDUtil/lambda$static$2 (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; +MD: net/minecraft/core/UUIDUtil/m_274025_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/core/UUIDUtil/lambda$static$5 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/UUIDUtil/m_274026_ (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; net/minecraft/core/UUIDUtil/lambda$static$4 (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; +MD: net/minecraft/core/Vec3i/ ()V net/minecraft/core/Vec3i/ ()V +MD: net/minecraft/core/Vec3i/ (III)V net/minecraft/core/Vec3i/ (III)V +MD: net/minecraft/core/Vec3i/compareTo (Lnet/minecraft/core/Vec3i;)I net/minecraft/core/Vec3i/compareTo (Lnet/minecraft/core/Vec3i;)I +MD: net/minecraft/core/Vec3i/compareTo (Ljava/lang/Object;)I net/minecraft/core/Vec3i/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/core/Vec3i/equals (Ljava/lang/Object;)Z net/minecraft/core/Vec3i/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/Vec3i/hashCode ()I net/minecraft/core/Vec3i/hashCode ()I +MD: net/minecraft/core/Vec3i/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122012_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/north ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122013_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/north (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122019_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/south ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122020_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/south (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122024_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/west ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122025_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/west (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122029_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/east ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122030_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/east (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_123304_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/core/Vec3i/get (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/Vec3i/m_123312_ (Lnet/minecraft/core/Vec3i;)Ljava/util/stream/IntStream; net/minecraft/core/Vec3i/lambda$static$2 (Lnet/minecraft/core/Vec3i;)Ljava/util/stream/IntStream; +MD: net/minecraft/core/Vec3i/m_123314_ (Lnet/minecraft/core/Vec3i;D)Z net/minecraft/core/Vec3i/closerThan (Lnet/minecraft/core/Vec3i;D)Z +MD: net/minecraft/core/Vec3i/m_123317_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Vec3i/lambda$static$1 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Vec3i/m_123331_ (Lnet/minecraft/core/Vec3i;)D net/minecraft/core/Vec3i/distSqr (Lnet/minecraft/core/Vec3i;)D +MD: net/minecraft/core/Vec3i/m_123333_ (Lnet/minecraft/core/Vec3i;)I net/minecraft/core/Vec3i/distManhattan (Lnet/minecraft/core/Vec3i;)I +MD: net/minecraft/core/Vec3i/m_123341_ ()I net/minecraft/core/Vec3i/getX ()I +MD: net/minecraft/core/Vec3i/m_123342_ ()I net/minecraft/core/Vec3i/getY ()I +MD: net/minecraft/core/Vec3i/m_123343_ ()I net/minecraft/core/Vec3i/getZ ()I +MD: net/minecraft/core/Vec3i/m_123344_ ()Ljava/lang/String; net/minecraft/core/Vec3i/toShortString ()Ljava/lang/String; +MD: net/minecraft/core/Vec3i/m_142393_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/multiply (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_142443_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/setZ (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_142448_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/setY (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_142451_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/setX (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_175585_ ([I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/lambda$static$0 ([I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_194650_ (I)Lcom/mojang/serialization/Codec; net/minecraft/core/Vec3i/offsetCodec (I)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/Vec3i/m_203193_ (Lnet/minecraft/core/Position;)D net/minecraft/core/Vec3i/distToCenterSqr (Lnet/minecraft/core/Position;)D +MD: net/minecraft/core/Vec3i/m_203195_ (Lnet/minecraft/core/Position;D)Z net/minecraft/core/Vec3i/closerToCenterThan (Lnet/minecraft/core/Position;D)Z +MD: net/minecraft/core/Vec3i/m_203198_ (DDD)D net/minecraft/core/Vec3i/distToCenterSqr (DDD)D +MD: net/minecraft/core/Vec3i/m_203202_ (DDD)D net/minecraft/core/Vec3i/distToLowCornerSqr (DDD)D +MD: net/minecraft/core/Vec3i/m_274027_ (ILnet/minecraft/core/Vec3i;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Vec3i/lambda$offsetCodec$4 (ILnet/minecraft/core/Vec3i;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Vec3i/m_274028_ (ILnet/minecraft/core/Vec3i;)Ljava/lang/String; net/minecraft/core/Vec3i/lambda$offsetCodec$3 (ILnet/minecraft/core/Vec3i;)Ljava/lang/String; +MD: net/minecraft/core/Vec3i/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_6625_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/below (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_6630_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/above (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7494_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/above ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7495_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/below ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/toString ()Ljava/lang/String; net/minecraft/core/Vec3i/toString ()Ljava/lang/String; +MD: net/minecraft/core/WritableRegistry/m_142427_ ()Z net/minecraft/core/WritableRegistry/isEmpty ()Z +MD: net/minecraft/core/WritableRegistry/m_203505_ ()Lnet/minecraft/core/HolderGetter; net/minecraft/core/WritableRegistry/createRegistrationLookup ()Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/WritableRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; net/minecraft/core/WritableRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/WritableRegistry/m_255290_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/WritableRegistry/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/cauldron/CauldronInteraction/ ()V net/minecraft/core/cauldron/CauldronInteraction/ ()V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175617_ ()Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap; net/minecraft/core/cauldron/CauldronInteraction/newInteractionMap ()Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175618_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/emptyBucket (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175626_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$9 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175628_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$16 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/fillBucket (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175645_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V net/minecraft/core/cauldron/CauldronInteraction/lambda$newInteractionMap$1 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175647_ (Ljava/util/Map;)V net/minecraft/core/cauldron/CauldronInteraction/addDefaultInteractions (Ljava/util/Map;)V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175649_ ()V net/minecraft/core/cauldron/CauldronInteraction/bootStrap ()V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175650_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$7 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175659_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175661_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$14 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175668_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$13 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175675_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$12 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175682_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$11 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175689_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$10 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175696_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$8 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175703_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175710_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/interact (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175717_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175724_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175738_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$newInteractionMap$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_278529_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$15 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/ ()V net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/ ()V +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_7101_ ()F net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/getUncertainty ()F +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_7104_ ()F net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/getPower ()F +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)V net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)V +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/BoatDispenseItemBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/BoatDispenseItemBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/ ()V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_123378_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Position;)V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/spawnItem (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Position;)V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_123387_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/core/Direction;)V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/playAnimation (Lnet/minecraft/core/BlockSource;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DefaultDispenseItemBehavior/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DefaultDispenseItemBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior/ ()V net/minecraft/core/dispenser/DispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_123395_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)V net/minecraft/core/dispenser/DispenseItemBehavior/setEntityPokingOutOfBlock (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_123399_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior/lambda$static$0 (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_123402_ ()V net/minecraft/core/dispenser/DispenseItemBehavior/bootStrap ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$1/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$1/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$1/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$1/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$10/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$10/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$10/m_276708_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ArmorStand;)V net/minecraft/core/dispenser/DispenseItemBehavior$10/lambda$execute$0 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ArmorStand;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$10/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$10/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$11/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$11/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$11/m_123526_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/core/dispenser/DispenseItemBehavior$11/lambda$execute$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$11/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$11/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$12/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$12/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$12/m_289055_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z net/minecraft/core/dispenser/DispenseItemBehavior$12/lambda$execute$0 (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$12/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$12/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$13/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$13/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$13/m_289056_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Z net/minecraft/core/dispenser/DispenseItemBehavior$13/lambda$execute$0 (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$13/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$13/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$14/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$14/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$14/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/DispenseItemBehavior$14/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$14/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$14/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$15/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/m_123550_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/SmallFireball;)V net/minecraft/core/dispenser/DispenseItemBehavior$15/lambda$execute$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/SmallFireball;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/DispenseItemBehavior$15/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$15/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$16/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$16/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$16/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$16/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$17/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$17/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$17/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$17/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$18/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$18/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$18/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$18/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$19/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$19/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$19/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$19/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$2/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$2/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$2/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$2/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$20/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$20/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$20/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$20/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$21/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$21/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$21/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$21/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$22/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$22/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$22/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$22/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$23/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$23/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$23/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$23/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$24/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/m_123441_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/core/dispenser/DispenseItemBehavior$24/lambda$execute$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/m_123446_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$24/takeLiquid (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$24/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$25/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$25/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$25/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$25/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$26/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$26/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$26/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$26/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$27/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$27/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$27/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$27/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$3/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$3/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$3/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$3/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$4/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$4/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$4/m_123464_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownEgg;)V net/minecraft/core/dispenser/DispenseItemBehavior$4/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownEgg;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$4/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$4/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$5/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$5/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$5/m_123472_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Snowball;)V net/minecraft/core/dispenser/DispenseItemBehavior$5/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Snowball;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$5/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$5/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$6/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_123481_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownExperienceBottle;)V net/minecraft/core/dispenser/DispenseItemBehavior$6/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownExperienceBottle;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$6/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_7101_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$6/getUncertainty ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_7104_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$6/getPower ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$7/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$7/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$7;)V net/minecraft/core/dispenser/DispenseItemBehavior$7$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$7;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_123497_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V net/minecraft/core/dispenser/DispenseItemBehavior$7$1/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$7$1/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_7101_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$7$1/getUncertainty ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_7104_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$7$1/getPower ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$8/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$8/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$8;)V net/minecraft/core/dispenser/DispenseItemBehavior$8$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$8;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_123513_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V net/minecraft/core/dispenser/DispenseItemBehavior$8$1/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$8$1/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_7101_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$8$1/getUncertainty ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_7104_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$8$1/getPower ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$9/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$9/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$9/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$9/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/ ()V net/minecraft/core/dispenser/OptionalDispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/m_123570_ ()Z net/minecraft/core/dispenser/OptionalDispenseItemBehavior/isSuccess ()Z +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/m_123573_ (Z)V net/minecraft/core/dispenser/OptionalDispenseItemBehavior/setSuccess (Z)V +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/OptionalDispenseItemBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/ ()V net/minecraft/core/dispenser/ShearsDispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_123576_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/core/dispenser/ShearsDispenseItemBehavior/tryShearBeehive (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_123582_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/core/dispenser/ShearsDispenseItemBehavior/tryShearLivingEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_202453_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/core/dispenser/ShearsDispenseItemBehavior/lambda$tryShearBeehive$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/ShearsDispenseItemBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V +MD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V +MD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/particles/BlockParticleOption/ ()V net/minecraft/core/particles/BlockParticleOption/ ()V +MD: net/minecraft/core/particles/BlockParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/core/particles/BlockParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/core/particles/BlockParticleOption/m_123632_ (Lnet/minecraft/core/particles/BlockParticleOption;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/particles/BlockParticleOption/lambda$codec$1 (Lnet/minecraft/core/particles/BlockParticleOption;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/particles/BlockParticleOption/m_123634_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/BlockParticleOption/codec (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/BlockParticleOption/m_123636_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/particles/BlockParticleOption; net/minecraft/core/particles/BlockParticleOption/lambda$codec$0 (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/particles/BlockParticleOption; +MD: net/minecraft/core/particles/BlockParticleOption/m_123642_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/particles/BlockParticleOption/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/particles/BlockParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/BlockParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/BlockParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/BlockParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/BlockParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/BlockParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/BlockParticleOption$1/ ()V net/minecraft/core/particles/BlockParticleOption$1/ ()V +MD: net/minecraft/core/particles/BlockParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/BlockParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/BlockParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/BlockParticleOption; net/minecraft/core/particles/BlockParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/BlockParticleOption; +MD: net/minecraft/core/particles/BlockParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/BlockParticleOption; net/minecraft/core/particles/BlockParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/BlockParticleOption; +MD: net/minecraft/core/particles/BlockParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/BlockParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions/ ()V net/minecraft/core/particles/DustColorTransitionOptions/ ()V +MD: net/minecraft/core/particles/DustColorTransitionOptions/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;F)V net/minecraft/core/particles/DustColorTransitionOptions/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;F)V +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_175764_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Ljava/lang/Float; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$2 (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Ljava/lang/Float; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252602_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$1 (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252603_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$0 (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252604_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252988_ ()Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/getFromColor ()Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_253173_ ()Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/getToColor ()Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/DustColorTransitionOptions/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/DustColorTransitionOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/DustColorTransitionOptions/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/ ()V net/minecraft/core/particles/DustColorTransitionOptions$1/ ()V +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustColorTransitionOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustColorTransitionOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustColorTransitionOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustColorTransitionOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions/ ()V net/minecraft/core/particles/DustParticleOptions/ ()V +MD: net/minecraft/core/particles/DustParticleOptions/ (Lorg/joml/Vector3f;F)V net/minecraft/core/particles/DustParticleOptions/ (Lorg/joml/Vector3f;F)V +MD: net/minecraft/core/particles/DustParticleOptions/m_175794_ (Lnet/minecraft/core/particles/DustParticleOptions;)Ljava/lang/Float; net/minecraft/core/particles/DustParticleOptions/lambda$static$1 (Lnet/minecraft/core/particles/DustParticleOptions;)Ljava/lang/Float; +MD: net/minecraft/core/particles/DustParticleOptions/m_252605_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/DustParticleOptions/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/DustParticleOptions/m_252606_ (Lnet/minecraft/core/particles/DustParticleOptions;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptions/lambda$static$0 (Lnet/minecraft/core/particles/DustParticleOptions;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/DustParticleOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/DustParticleOptions$1/ ()V net/minecraft/core/particles/DustParticleOptions$1/ ()V +MD: net/minecraft/core/particles/DustParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptionsBase/ (Lorg/joml/Vector3f;F)V net/minecraft/core/particles/DustParticleOptionsBase/ (Lorg/joml/Vector3f;F)V +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_175813_ ()F net/minecraft/core/particles/DustParticleOptionsBase/getScale ()F +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_252837_ ()Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptionsBase/getColor ()Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_252853_ (Lcom/mojang/brigadier/StringReader;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptionsBase/readVector3f (Lcom/mojang/brigadier/StringReader;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_253064_ (Lnet/minecraft/network/FriendlyByteBuf;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptionsBase/readVector3f (Lnet/minecraft/network/FriendlyByteBuf;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/DustParticleOptionsBase/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/DustParticleOptionsBase/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ItemParticleOption/ ()V net/minecraft/core/particles/ItemParticleOption/ ()V +MD: net/minecraft/core/particles/ItemParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/core/particles/ItemParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/core/particles/ItemParticleOption/m_123708_ (Lnet/minecraft/core/particles/ItemParticleOption;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/particles/ItemParticleOption/lambda$codec$1 (Lnet/minecraft/core/particles/ItemParticleOption;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/particles/ItemParticleOption/m_123710_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ItemParticleOption/codec (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ItemParticleOption/m_123712_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/particles/ItemParticleOption; net/minecraft/core/particles/ItemParticleOption/lambda$codec$0 (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/particles/ItemParticleOption; +MD: net/minecraft/core/particles/ItemParticleOption/m_123718_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/core/particles/ItemParticleOption/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/particles/ItemParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/ItemParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/ItemParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ItemParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ItemParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/ItemParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ItemParticleOption$1/ ()V net/minecraft/core/particles/ItemParticleOption$1/ ()V +MD: net/minecraft/core/particles/ItemParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ItemParticleOption; net/minecraft/core/particles/ItemParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ItemParticleOption; +MD: net/minecraft/core/particles/ItemParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ItemParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ItemParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ItemParticleOption; net/minecraft/core/particles/ItemParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ItemParticleOption; +MD: net/minecraft/core/particles/ItemParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ItemParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ParticleGroup/ ()V net/minecraft/core/particles/ParticleGroup/ ()V +MD: net/minecraft/core/particles/ParticleGroup/ (I)V net/minecraft/core/particles/ParticleGroup/ (I)V +MD: net/minecraft/core/particles/ParticleGroup/m_175819_ ()I net/minecraft/core/particles/ParticleGroup/getLimit ()I +MD: net/minecraft/core/particles/ParticleOptions/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/ParticleOptions/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/ParticleOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ParticleOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ParticleOptions/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/ParticleOptions/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ParticleOptions$Deserializer/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ParticleOptions$Deserializer/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ParticleOptions$Deserializer/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ParticleOptions$Deserializer/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ParticleType/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V net/minecraft/core/particles/ParticleType/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V +MD: net/minecraft/core/particles/ParticleType/m_123742_ ()Z net/minecraft/core/particles/ParticleType/getOverrideLimiter ()Z +MD: net/minecraft/core/particles/ParticleType/m_123743_ ()Lnet/minecraft/core/particles/ParticleOptions$Deserializer; net/minecraft/core/particles/ParticleType/getDeserializer ()Lnet/minecraft/core/particles/ParticleOptions$Deserializer; +MD: net/minecraft/core/particles/ParticleType/m_7652_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/ ()V net/minecraft/core/particles/ParticleTypes/ ()V +MD: net/minecraft/core/particles/ParticleTypes/ ()V net/minecraft/core/particles/ParticleTypes/ ()V +MD: net/minecraft/core/particles/ParticleTypes/m_123818_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$0 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_123824_ (Ljava/lang/String;Z)Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/ParticleTypes/register (Ljava/lang/String;Z)Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/ParticleTypes/m_175838_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$2 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_175840_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$1 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_235903_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$4 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_235905_ (Ljava/lang/String;ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ParticleTypes/register (Ljava/lang/String;ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ParticleTypes/m_235910_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$3 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes$1/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)V net/minecraft/core/particles/ParticleTypes$1/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)V +MD: net/minecraft/core/particles/ParticleTypes$1/m_7652_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes$1/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/ ()V net/minecraft/core/particles/SculkChargeParticleOptions/ ()V +MD: net/minecraft/core/particles/SculkChargeParticleOptions/ (F)V net/minecraft/core/particles/SculkChargeParticleOptions/ (F)V +MD: net/minecraft/core/particles/SculkChargeParticleOptions/equals (Ljava/lang/Object;)Z net/minecraft/core/particles/SculkChargeParticleOptions/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235914_ ()F net/minecraft/core/particles/SculkChargeParticleOptions/roll ()F +MD: net/minecraft/core/particles/SculkChargeParticleOptions/hashCode ()I net/minecraft/core/particles/SculkChargeParticleOptions/hashCode ()I +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_235919_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/SculkChargeParticleOptions/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_235921_ (Lnet/minecraft/core/particles/SculkChargeParticleOptions;)Ljava/lang/Float; net/minecraft/core/particles/SculkChargeParticleOptions/lambda$static$0 (Lnet/minecraft/core/particles/SculkChargeParticleOptions;)Ljava/lang/Float; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/SculkChargeParticleOptions/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/SculkChargeParticleOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/SculkChargeParticleOptions/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/SculkChargeParticleOptions/toString ()Ljava/lang/String; net/minecraft/core/particles/SculkChargeParticleOptions/toString ()Ljava/lang/String; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/ ()V net/minecraft/core/particles/SculkChargeParticleOptions$1/ ()V +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ShriekParticleOption/ ()V net/minecraft/core/particles/ShriekParticleOption/ ()V +MD: net/minecraft/core/particles/ShriekParticleOption/ (I)V net/minecraft/core/particles/ShriekParticleOption/ (I)V +MD: net/minecraft/core/particles/ShriekParticleOption/m_235951_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/ShriekParticleOption/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/ShriekParticleOption/m_235953_ (Lnet/minecraft/core/particles/ShriekParticleOption;)Ljava/lang/Integer; net/minecraft/core/particles/ShriekParticleOption/lambda$static$0 (Lnet/minecraft/core/particles/ShriekParticleOption;)Ljava/lang/Integer; +MD: net/minecraft/core/particles/ShriekParticleOption/m_235958_ ()I net/minecraft/core/particles/ShriekParticleOption/getDelay ()I +MD: net/minecraft/core/particles/ShriekParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/ShriekParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/ShriekParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ShriekParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ShriekParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/ShriekParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ShriekParticleOption$1/ ()V net/minecraft/core/particles/ShriekParticleOption$1/ ()V +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ShriekParticleOption; net/minecraft/core/particles/ShriekParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ShriekParticleOption; +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ShriekParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ShriekParticleOption; net/minecraft/core/particles/ShriekParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ShriekParticleOption; +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ShriekParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SimpleParticleType/ ()V net/minecraft/core/particles/SimpleParticleType/ ()V +MD: net/minecraft/core/particles/SimpleParticleType/ (Z)V net/minecraft/core/particles/SimpleParticleType/ (Z)V +MD: net/minecraft/core/particles/SimpleParticleType/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/SimpleParticleType/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/SimpleParticleType/m_6012_ ()Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/SimpleParticleType/getType ()Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/SimpleParticleType/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/SimpleParticleType/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/SimpleParticleType/m_7652_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/particles/SimpleParticleType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/SimpleParticleType/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/SimpleParticleType/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/SimpleParticleType$1/ ()V net/minecraft/core/particles/SimpleParticleType$1/ ()V +MD: net/minecraft/core/particles/SimpleParticleType$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SimpleParticleType$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SimpleParticleType$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/SimpleParticleType$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/SimpleParticleType$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SimpleParticleType$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SimpleParticleType$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/SimpleParticleType$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/VibrationParticleOption/ ()V net/minecraft/core/particles/VibrationParticleOption/ ()V +MD: net/minecraft/core/particles/VibrationParticleOption/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/core/particles/VibrationParticleOption/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/core/particles/VibrationParticleOption/m_235977_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/VibrationParticleOption/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235979_ (Lnet/minecraft/core/particles/VibrationParticleOption;)Ljava/lang/Integer; net/minecraft/core/particles/VibrationParticleOption/lambda$static$1 (Lnet/minecraft/core/particles/VibrationParticleOption;)Ljava/lang/Integer; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235981_ (Lnet/minecraft/core/particles/VibrationParticleOption;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/core/particles/VibrationParticleOption/lambda$static$0 (Lnet/minecraft/core/particles/VibrationParticleOption;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235983_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/core/particles/VibrationParticleOption/getDestination ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235984_ ()I net/minecraft/core/particles/VibrationParticleOption/getArrivalInTicks ()I +MD: net/minecraft/core/particles/VibrationParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/VibrationParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/VibrationParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/VibrationParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/VibrationParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/VibrationParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/VibrationParticleOption$1/ ()V net/minecraft/core/particles/VibrationParticleOption$1/ ()V +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/VibrationParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/VibrationParticleOption; net/minecraft/core/particles/VibrationParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/VibrationParticleOption; +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/VibrationParticleOption; net/minecraft/core/particles/VibrationParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/VibrationParticleOption; +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/VibrationParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/registries/BuiltInRegistries/ ()V net/minecraft/core/registries/BuiltInRegistries/ ()V +MD: net/minecraft/core/registries/BuiltInRegistries/ ()V net/minecraft/core/registries/BuiltInRegistries/ ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257371_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/core/registries/BuiltInRegistries/lambda$static$38 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257390_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$10 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257391_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$30 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257420_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$28 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257425_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$20 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257434_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$33 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257443_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$21 (Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257453_ ()V net/minecraft/core/registries/BuiltInRegistries/createContents ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257467_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/inventory/MenuType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$16 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257474_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$37 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257475_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$49 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257498_ ()V net/minecraft/core/registries/BuiltInRegistries/bootStrap ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257521_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$40 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257531_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$47 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257537_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$29 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257540_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/core/registries/BuiltInRegistries/lambda$static$12 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257555_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/core/registries/BuiltInRegistries/lambda$static$8 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257571_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Item; net/minecraft/core/registries/BuiltInRegistries/lambda$static$7 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257574_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$43 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257589_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/core/registries/BuiltInRegistries/lambda$static$0 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257600_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaulted (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257604_ ()V net/minecraft/core/registries/BuiltInRegistries/freeze ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257606_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$35 (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257614_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/core/registries/BuiltInRegistries/lambda$static$1 (Lnet/minecraft/core/Registry;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257618_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/core/registries/BuiltInRegistries/lambda$static$39 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257632_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$13 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257654_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$17 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257672_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/core/registries/BuiltInRegistries/lambda$static$2 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257683_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$31 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257688_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$44 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257693_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$41 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257700_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/EntityType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$6 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257705_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$15 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257716_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/Block; net/minecraft/core/registries/BuiltInRegistries/lambda$static$4 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257756_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Schedule; net/minecraft/core/registries/BuiltInRegistries/lambda$static$26 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Schedule; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257762_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaultedWithIntrusiveHolders (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257765_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/core/registries/BuiltInRegistries/lambda$static$3 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257766_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/registries/BuiltInRegistries/lambda$static$11 (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257790_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$50 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257807_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$42 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257816_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/core/registries/BuiltInRegistries/lambda$static$23 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257834_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaultedWithIntrusiveHolders (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257844_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/core/registries/BuiltInRegistries/lambda$static$18 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257853_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/enchantment/Enchantment; net/minecraft/core/registries/BuiltInRegistries/lambda$static$5 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/enchantment/Enchantment; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257858_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$22 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257864_ (Lnet/minecraft/core/Registry;)V net/minecraft/core/registries/BuiltInRegistries/validate (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257887_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/sensing/SensorType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$25 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/sensing/SensorType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257888_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$46 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257895_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/WritableRegistry; net/minecraft/core/registries/BuiltInRegistries/internalRegister (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/WritableRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257942_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/FrogVariant; net/minecraft/core/registries/BuiltInRegistries/lambda$static$52 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/FrogVariant; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257946_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/core/registries/BuiltInRegistries/lambda$static$27 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257954_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$9 (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257973_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$34 (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257979_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;)V net/minecraft/core/registries/BuiltInRegistries/lambda$validate$55 (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257982_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$36 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257988_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaulted (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257991_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/core/registries/BuiltInRegistries/lambda$static$19 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257992_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$51 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258002_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; net/minecraft/core/registries/BuiltInRegistries/registerSimple (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258027_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$32 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258029_ (Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lnet/minecraft/core/WritableRegistry;)Ljava/lang/Object; net/minecraft/core/registries/BuiltInRegistries/lambda$internalRegister$53 (Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lnet/minecraft/core/WritableRegistry;)Ljava/lang/Object; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258037_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V net/minecraft/core/registries/BuiltInRegistries/lambda$createContents$54 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V +MD: net/minecraft/core/registries/BuiltInRegistries/m_258062_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$24 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258070_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$45 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258073_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; net/minecraft/core/registries/BuiltInRegistries/registerSimple (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258095_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$48 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_276709_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$14 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap/m_257957_ (Lnet/minecraft/core/Registry;)Ljava/lang/Object; net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap/run (Lnet/minecraft/core/Registry;)Ljava/lang/Object; +MD: net/minecraft/core/registries/Registries/ ()V net/minecraft/core/registries/Registries/ ()V +MD: net/minecraft/core/registries/Registries/ ()V net/minecraft/core/registries/Registries/ ()V +MD: net/minecraft/core/registries/Registries/m_257397_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/registries/Registries/createRegistryKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/registries/Registries/m_257452_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/registries/Registries/levelToLevelStem (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/registries/Registries/m_257551_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/registries/Registries/levelStemToLevel (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/BlockFamilies/ ()V net/minecraft/data/BlockFamilies/ ()V +MD: net/minecraft/data/BlockFamilies/ ()V net/minecraft/data/BlockFamilies/ ()V +MD: net/minecraft/data/BlockFamilies/m_175934_ ()Ljava/util/stream/Stream; net/minecraft/data/BlockFamilies/getAllFamilies ()Ljava/util/stream/Stream; +MD: net/minecraft/data/BlockFamilies/m_175935_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamilies/familyBuilder (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/BlockFamily/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/BlockFamily/m_175951_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/BlockFamily/getBaseBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/BlockFamily/m_175952_ (Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; net/minecraft/data/BlockFamily/get (Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/BlockFamily/m_175954_ ()Ljava/util/Map; net/minecraft/data/BlockFamily/getVariants ()Ljava/util/Map; +MD: net/minecraft/data/BlockFamily/m_175955_ ()Z net/minecraft/data/BlockFamily/shouldGenerateModel ()Z +MD: net/minecraft/data/BlockFamily/m_175957_ ()Ljava/util/Optional; net/minecraft/data/BlockFamily/getRecipeGroupPrefix ()Ljava/util/Optional; +MD: net/minecraft/data/BlockFamily/m_175958_ ()Ljava/util/Optional; net/minecraft/data/BlockFamily/getRecipeUnlockedBy ()Ljava/util/Optional; +MD: net/minecraft/data/BlockFamily/m_245288_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/data/BlockFamily/shouldGenerateRecipe (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/data/BlockFamily$Builder/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/BlockFamily$Builder/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/BlockFamily$Builder/m_175962_ ()Lnet/minecraft/data/BlockFamily; net/minecraft/data/BlockFamily$Builder/getFamily ()Lnet/minecraft/data/BlockFamily; +MD: net/minecraft/data/BlockFamily$Builder/m_175963_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/button (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175965_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/sign (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175968_ (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/recipeGroupPrefix (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175970_ ()Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/dontGenerateModel ()Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175971_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/chiseled (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175973_ (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/recipeUnlockedBy (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175975_ ()Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/dontGenerateRecipe ()Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175976_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/cracked (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175978_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/cut (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175980_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/door (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175982_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/fence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175984_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/fenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175986_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/slab (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175988_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/stairs (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175990_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/pressurePlate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175992_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/polished (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175994_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/trapdoor (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175996_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/wall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_245388_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/mosaic (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_245652_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/featureLockedBehind ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_246792_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/customFence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_247314_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/customFenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Variant/ ()V net/minecraft/data/BlockFamily$Variant/ ()V +MD: net/minecraft/data/BlockFamily$Variant/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/BlockFamily$Variant/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/BlockFamily$Variant/m_176020_ ()Ljava/lang/String; net/minecraft/data/BlockFamily$Variant/getName ()Ljava/lang/String; +MD: net/minecraft/data/BlockFamily$Variant/m_176021_ ()[Lnet/minecraft/data/BlockFamily$Variant; net/minecraft/data/BlockFamily$Variant/$values ()[Lnet/minecraft/data/BlockFamily$Variant; +MD: net/minecraft/data/BlockFamily$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Variant; net/minecraft/data/BlockFamily$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Variant; +MD: net/minecraft/data/BlockFamily$Variant/values ()[Lnet/minecraft/data/BlockFamily$Variant; net/minecraft/data/BlockFamily$Variant/values ()[Lnet/minecraft/data/BlockFamily$Variant; +MD: net/minecraft/data/CachedOutput/ ()V net/minecraft/data/CachedOutput/ ()V +MD: net/minecraft/data/CachedOutput/m_213871_ (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V net/minecraft/data/CachedOutput/writeIfNeeded (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/CachedOutput/m_236018_ (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V net/minecraft/data/CachedOutput/lambda$static$0 (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/DataGenerator/ ()V net/minecraft/data/DataGenerator/ ()V +MD: net/minecraft/data/DataGenerator/ (Ljava/nio/file/Path;Lnet/minecraft/WorldVersion;Z)V net/minecraft/data/DataGenerator/ (Ljava/nio/file/Path;Lnet/minecraft/WorldVersion;Z)V +MD: net/minecraft/data/DataGenerator/m_123917_ ()V net/minecraft/data/DataGenerator/run ()V +MD: net/minecraft/data/DataGenerator/m_253030_ (ZLjava/lang/String;)Lnet/minecraft/data/DataGenerator$PackGenerator; net/minecraft/data/DataGenerator/getBuiltinDatapack (ZLjava/lang/String;)Lnet/minecraft/data/DataGenerator$PackGenerator; +MD: net/minecraft/data/DataGenerator/m_253147_ (Z)Lnet/minecraft/data/DataGenerator$PackGenerator; net/minecraft/data/DataGenerator/getVanillaPack (Z)Lnet/minecraft/data/DataGenerator$PackGenerator; +MD: net/minecraft/data/DataGenerator/m_253255_ (Lnet/minecraft/data/HashCache;Lcom/google/common/base/Stopwatch;Ljava/lang/String;Lnet/minecraft/data/DataProvider;)V net/minecraft/data/DataGenerator/lambda$run$0 (Lnet/minecraft/data/HashCache;Lcom/google/common/base/Stopwatch;Ljava/lang/String;Lnet/minecraft/data/DataProvider;)V +MD: net/minecraft/data/DataGenerator$PackGenerator/ (Lnet/minecraft/data/DataGenerator;ZLjava/lang/String;Lnet/minecraft/data/PackOutput;)V net/minecraft/data/DataGenerator$PackGenerator/ (Lnet/minecraft/data/DataGenerator;ZLjava/lang/String;Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/DataGenerator$PackGenerator/m_253108_ (Lnet/minecraft/data/DataProvider$Factory;)Lnet/minecraft/data/DataProvider; net/minecraft/data/DataGenerator$PackGenerator/addProvider (Lnet/minecraft/data/DataProvider$Factory;)Lnet/minecraft/data/DataProvider; +MD: net/minecraft/data/DataProvider/ ()V net/minecraft/data/DataProvider/ ()V +MD: net/minecraft/data/DataProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/DataProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/DataProvider/m_236069_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/data/DataProvider/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/data/DataProvider/m_236076_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/DataProvider/lambda$static$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/DataProvider/m_252607_ (Lcom/google/gson/JsonElement;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V net/minecraft/data/DataProvider/lambda$saveStable$2 (Lcom/google/gson/JsonElement;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V +MD: net/minecraft/data/DataProvider/m_253162_ (Lnet/minecraft/data/CachedOutput;Lcom/google/gson/JsonElement;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/DataProvider/saveStable (Lnet/minecraft/data/CachedOutput;Lcom/google/gson/JsonElement;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/DataProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/DataProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/DataProvider$Factory/m_253034_ (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; net/minecraft/data/DataProvider$Factory/create (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; +MD: net/minecraft/data/HashCache/ ()V net/minecraft/data/HashCache/ ()V +MD: net/minecraft/data/HashCache/ (Ljava/nio/file/Path;Ljava/util/Collection;Lnet/minecraft/WorldVersion;)V net/minecraft/data/HashCache/ (Ljava/nio/file/Path;Ljava/util/Collection;Lnet/minecraft/WorldVersion;)V +MD: net/minecraft/data/HashCache/m_123937_ ()V net/minecraft/data/HashCache/purgeStaleAndWrite ()V +MD: net/minecraft/data/HashCache/m_236092_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache/readCache (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache/m_236102_ (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Set;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/nio/file/Path;)V net/minecraft/data/HashCache/lambda$purgeStaleAndWrite$2 (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Set;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/nio/file/Path;)V +MD: net/minecraft/data/HashCache/m_252608_ (Lnet/minecraft/data/HashCache$CacheUpdater;Ljava/lang/Object;)Lnet/minecraft/data/HashCache$UpdateResult; net/minecraft/data/HashCache/lambda$generateUpdate$0 (Lnet/minecraft/data/HashCache$CacheUpdater;Ljava/lang/Object;)Lnet/minecraft/data/HashCache$UpdateResult; +MD: net/minecraft/data/HashCache/m_252609_ (Ljava/util/Set;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V net/minecraft/data/HashCache/lambda$purgeStaleAndWrite$1 (Ljava/util/Set;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V +MD: net/minecraft/data/HashCache/m_252859_ (Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/data/HashCache/getProviderCachePath (Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/data/HashCache/m_253116_ (Lnet/minecraft/data/HashCache$UpdateResult;)V net/minecraft/data/HashCache/applyUpdate (Lnet/minecraft/data/HashCache$UpdateResult;)V +MD: net/minecraft/data/HashCache/m_253234_ (Ljava/lang/String;Lnet/minecraft/data/HashCache$UpdateFunction;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/HashCache/generateUpdate (Ljava/lang/String;Lnet/minecraft/data/HashCache$UpdateFunction;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/HashCache/m_253256_ (Ljava/lang/String;)Z net/minecraft/data/HashCache/shouldRunInThisVersion (Ljava/lang/String;)Z +MD: net/minecraft/data/HashCache$CacheUpdater/ (Lnet/minecraft/data/HashCache;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V net/minecraft/data/HashCache$CacheUpdater/ (Lnet/minecraft/data/HashCache;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V +MD: net/minecraft/data/HashCache$CacheUpdater/m_213871_ (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V net/minecraft/data/HashCache$CacheUpdater/writeIfNeeded (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/HashCache$CacheUpdater/m_236119_ (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)Z net/minecraft/data/HashCache$CacheUpdater/shouldWrite (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)Z +MD: net/minecraft/data/HashCache$CacheUpdater/m_253164_ ()Lnet/minecraft/data/HashCache$UpdateResult; net/minecraft/data/HashCache$CacheUpdater/close ()Lnet/minecraft/data/HashCache$UpdateResult; +MD: net/minecraft/data/HashCache$ProviderCache/ (Ljava/lang/String;Lcom/google/common/collect/ImmutableMap;)V net/minecraft/data/HashCache$ProviderCache/ (Ljava/lang/String;Lcom/google/common/collect/ImmutableMap;)V +MD: net/minecraft/data/HashCache$ProviderCache/equals (Ljava/lang/Object;)Z net/minecraft/data/HashCache$ProviderCache/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/HashCache$ProviderCache/f_236126_ ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCache/version ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$ProviderCache/f_236127_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/data/HashCache$ProviderCache/data ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/data/HashCache$ProviderCache/hashCode ()I net/minecraft/data/HashCache$ProviderCache/hashCode ()I +MD: net/minecraft/data/HashCache$ProviderCache/m_236133_ ()I net/minecraft/data/HashCache$ProviderCache/count ()I +MD: net/minecraft/data/HashCache$ProviderCache/m_236134_ (Ljava/nio/file/Path;)Lcom/google/common/hash/HashCode; net/minecraft/data/HashCache$ProviderCache/get (Ljava/nio/file/Path;)Lcom/google/common/hash/HashCode; +MD: net/minecraft/data/HashCache$ProviderCache/m_236139_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache$ProviderCache/load (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache$ProviderCache/m_236142_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/HashCache$ProviderCache/save (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/HashCache$ProviderCache/m_252610_ (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/HashCache$ProviderCache/lambda$load$0 (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/HashCache$ProviderCache/toString ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCache/toString ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;Ljava/util/concurrent/ConcurrentMap;)V net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;Ljava/util/concurrent/ConcurrentMap;)V +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;)V net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;)V +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/equals (Ljava/lang/Object;)Z net/minecraft/data/HashCache$ProviderCacheBuilder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252424_ ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCacheBuilder/version ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252466_ ()Ljava/util/concurrent/ConcurrentMap; net/minecraft/data/HashCache$ProviderCacheBuilder/data ()Ljava/util/concurrent/ConcurrentMap; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/hashCode ()I net/minecraft/data/HashCache$ProviderCacheBuilder/hashCode ()I +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/m_252796_ (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V net/minecraft/data/HashCache$ProviderCacheBuilder/put (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/m_252979_ ()Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache$ProviderCacheBuilder/build ()Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/toString ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCacheBuilder/toString ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$UpdateFunction/m_252999_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/HashCache$UpdateFunction/update (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/HashCache$UpdateResult/ (Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;I)V net/minecraft/data/HashCache$UpdateResult/ (Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;I)V +MD: net/minecraft/data/HashCache$UpdateResult/equals (Ljava/lang/Object;)Z net/minecraft/data/HashCache$UpdateResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/HashCache$UpdateResult/f_252422_ ()Ljava/lang/String; net/minecraft/data/HashCache$UpdateResult/providerId ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$UpdateResult/f_252492_ ()I net/minecraft/data/HashCache$UpdateResult/writes ()I +MD: net/minecraft/data/HashCache$UpdateResult/f_252528_ ()Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache$UpdateResult/cache ()Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache$UpdateResult/hashCode ()I net/minecraft/data/HashCache$UpdateResult/hashCode ()I +MD: net/minecraft/data/HashCache$UpdateResult/toString ()Ljava/lang/String; net/minecraft/data/HashCache$UpdateResult/toString ()Ljava/lang/String; +MD: net/minecraft/data/Main/ ()V net/minecraft/data/Main/ ()V +MD: net/minecraft/data/Main/m_129658_ (Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/data/Main/lambda$main$0 (Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/data/Main/m_236679_ (Ljava/nio/file/Path;Ljava/util/Collection;ZZZZZLnet/minecraft/WorldVersion;Z)Lnet/minecraft/data/DataGenerator; net/minecraft/data/Main/createStandardGenerator (Ljava/nio/file/Path;Ljava/util/Collection;ZZZZZLnet/minecraft/WorldVersion;Z)Lnet/minecraft/data/DataGenerator; +MD: net/minecraft/data/Main/m_252612_ (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/NbtToSnbt; net/minecraft/data/Main/lambda$createStandardGenerator$4 (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/NbtToSnbt; +MD: net/minecraft/data/Main/m_252613_ (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/SnbtToNbt; net/minecraft/data/Main/lambda$createStandardGenerator$2 (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/SnbtToNbt; +MD: net/minecraft/data/Main/m_252616_ (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/Main/lambda$createStandardGenerator$5 (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/Main/m_254772_ (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; net/minecraft/data/Main/lambda$bindRegistries$1 (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; +MD: net/minecraft/data/Main/m_255400_ (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/DataProvider$Factory; net/minecraft/data/Main/bindRegistries (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/DataProvider$Factory; +MD: net/minecraft/data/Main/m_274033_ (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/tags/TagsProvider;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/tags/VanillaItemTagsProvider; net/minecraft/data/Main/lambda$createStandardGenerator$3 (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/tags/TagsProvider;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/tags/VanillaItemTagsProvider; +MD: net/minecraft/data/Main/main ([Ljava/lang/String;)V net/minecraft/data/Main/main ([Ljava/lang/String;)V +MD: net/minecraft/data/PackOutput/ (Ljava/nio/file/Path;)V net/minecraft/data/PackOutput/ (Ljava/nio/file/Path;)V +MD: net/minecraft/data/PackOutput/m_245114_ ()Ljava/nio/file/Path; net/minecraft/data/PackOutput/getOutputFolder ()Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput/m_245269_ (Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)Lnet/minecraft/data/PackOutput$PathProvider; net/minecraft/data/PackOutput/createPathProvider (Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)Lnet/minecraft/data/PackOutput$PathProvider; +MD: net/minecraft/data/PackOutput/m_247566_ (Lnet/minecraft/data/PackOutput$Target;)Ljava/nio/file/Path; net/minecraft/data/PackOutput/getOutputFolder (Lnet/minecraft/data/PackOutput$Target;)Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput$PathProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)V net/minecraft/data/PackOutput$PathProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)V +MD: net/minecraft/data/PackOutput$PathProvider/m_245527_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/data/PackOutput$PathProvider/file (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput$PathProvider/m_245731_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; net/minecraft/data/PackOutput$PathProvider/json (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput$Target/ ()V net/minecraft/data/PackOutput$Target/ ()V +MD: net/minecraft/data/PackOutput$Target/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/PackOutput$Target/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/PackOutput$Target/m_245592_ ()[Lnet/minecraft/data/PackOutput$Target; net/minecraft/data/PackOutput$Target/$values ()[Lnet/minecraft/data/PackOutput$Target; +MD: net/minecraft/data/PackOutput$Target/valueOf (Ljava/lang/String;)Lnet/minecraft/data/PackOutput$Target; net/minecraft/data/PackOutput$Target/valueOf (Ljava/lang/String;)Lnet/minecraft/data/PackOutput$Target; +MD: net/minecraft/data/PackOutput$Target/values ()[Lnet/minecraft/data/PackOutput$Target; net/minecraft/data/PackOutput$Target/values ()[Lnet/minecraft/data/PackOutput$Target; +MD: net/minecraft/data/advancements/AdvancementProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)V net/minecraft/data/advancements/AdvancementProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)V +MD: net/minecraft/data/advancements/AdvancementProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/advancements/AdvancementProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/advancements/AdvancementProvider/m_252617_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/advancements/AdvancementProvider/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/advancements/AdvancementProvider/m_252618_ (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/advancements/Advancement;)V net/minecraft/data/advancements/AdvancementProvider/lambda$run$0 (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/data/advancements/AdvancementProvider/m_254775_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/advancements/AdvancementProvider/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/advancements/AdvancementProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/advancements/AdvancementProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/advancements/AdvancementSubProvider/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/AdvancementSubProvider/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/AdvancementSubProvider/m_266597_ (Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; net/minecraft/data/advancements/AdvancementSubProvider/createPlaceholder (Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/data/advancements/packs/VanillaAdvancementProvider/ ()V net/minecraft/data/advancements/packs/VanillaAdvancementProvider/ ()V +MD: net/minecraft/data/advancements/packs/VanillaAdvancementProvider/m_255090_ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/advancements/AdvancementProvider; net/minecraft/data/advancements/packs/VanillaAdvancementProvider/create (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/advancements/AdvancementProvider; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_246284_ (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/List;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/addBiomes (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/List;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_246578_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/fireCountAndBystander (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_247530_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lookAtThroughItem (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_247704_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/addMobsToKill (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_274337_ (Ljava/util/function/Consumer;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/createAdventuringTime (Ljava/util/function/Consumer;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284219_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/craftingANewLook (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284237_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/smithingWithStyle (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284250_ (I)[Ljava/lang/String; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$respectingTheRemnantsCriterions$5 (I)[Ljava/lang/String; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284287_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/respectingTheRemnantsCriterions (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284397_ (Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/item/Item;)V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$smithingWithStyle$4 (Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285711_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedBlockReadByComparator$0 (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285712_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedBlockReadByComparator$1 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285713_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedComparatorReadingBlock$2 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285714_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedComparatorReadingBlock$3 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285999_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/placedComparatorReadingBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_286005_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/placedBlockReadByComparator (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_245400_ (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/Map$Entry;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addCatVariants$3 (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/Map$Entry;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_245640_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addFish (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_246714_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addFishBuckets (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_246845_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addLeashedFrogVariants (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_247039_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addFood (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_247568_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addCatVariants (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266128_ (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addBreedable$2 (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266129_ (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addBreedable$1 (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266319_ (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addBreedable (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266572_ (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Consumer;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/createBreedAllAnimalsAdvancement (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Consumer;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_285715_ (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addLeashedFrogVariants$0 (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaNetherAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaStoryAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaStoryAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaStoryAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaStoryAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/ ()V net/minecraft/data/info/BiomeParametersDumpReport/ ()V +MD: net/minecraft/data/info/BiomeParametersDumpReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/info/BiomeParametersDumpReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BiomeParametersDumpReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_236178_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; net/minecraft/data/info/BiomeParametersDumpReport/createPath (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_236193_ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/info/BiomeParametersDumpReport/lambda$dumpValue$3 (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_252619_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BiomeParametersDumpReport/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_253112_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BiomeParametersDumpReport/dumpValue (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_274034_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/info/BiomeParametersDumpReport/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_274035_ (Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/world/level/biome/Climate$ParameterList;)V net/minecraft/data/info/BiomeParametersDumpReport/lambda$run$0 (Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/world/level/biome/Climate$ParameterList;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/BiomeParametersDumpReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/info/BlockListReport/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/info/BlockListReport/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/info/BlockListReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BlockListReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BlockListReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/BlockListReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/info/CommandsReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/info/CommandsReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/info/CommandsReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/CommandsReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/CommandsReport/m_255064_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/info/CommandsReport/lambda$run$0 (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/info/CommandsReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/CommandsReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/info/RegistryDumpReport/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/info/RegistryDumpReport/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/info/RegistryDumpReport/m_124058_ (Lnet/minecraft/core/Registry;)Lcom/google/gson/JsonElement; net/minecraft/data/info/RegistryDumpReport/dumpRegistry (Lnet/minecraft/core/Registry;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/info/RegistryDumpReport/m_211086_ (Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/info/RegistryDumpReport/lambda$run$0 (Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/info/RegistryDumpReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/RegistryDumpReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/RegistryDumpReport/m_257119_ (Lnet/minecraft/core/Registry;Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/info/RegistryDumpReport/lambda$dumpRegistry$1 (Lnet/minecraft/core/Registry;Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/info/RegistryDumpReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/RegistryDumpReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/loot/BlockLootSubProvider/ ()V net/minecraft/data/loot/BlockLootSubProvider/ ()V +MD: net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245079_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createMushroomBlockDrop (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/BlockLootSubProvider/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245142_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTableWithSilkTouch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245170_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createMangroveLeavesDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245178_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSinglePropConditionTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245238_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCropDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245335_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSilkTouchOnlyTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245349_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createGrassDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245514_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTableWithSilkTouch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245602_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createPotFlowerItemTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245644_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/dropWhenSilkTouch (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245658_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCaveVinesDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245660_ ()V net/minecraft/data/loot/BlockLootSubProvider/generate ()V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245661_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createMultifaceBlockDrops$1 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245671_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createRedstoneOreDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245693_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/addNetherVinesDropTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245724_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/dropSelf (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245765_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTable (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245854_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/otherWhenSilkTouch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245895_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCandleDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245929_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createShearsOnlyDrop (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246047_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createLeavesDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246087_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$dropPottedContents$4 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246108_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/data/loot/BlockLootSubProvider/applyExplosionDecay (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246109_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createOreDrop (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246125_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/loot/BlockLootSubProvider/dropOther (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246142_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createOakLeavesDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246160_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSilkTouchOrShearsDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246167_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCopperOreDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246180_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createNameableBlockEntityTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246218_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createLapisOreDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246224_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createDoublePlantWithSeedDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246235_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createMultifaceBlockDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246312_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createAttachedStemDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246386_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/noDrop ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246463_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createDoublePlantShearsDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246481_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V net/minecraft/data/loot/BlockLootSubProvider/add (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246535_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/dropPottedContents (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246838_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCandleCakeDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246855_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createCandleDrops$2 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246900_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSelfDropDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247033_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247103_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createStemDrops$0 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247184_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createShearsDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247233_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSlabItemTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247247_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createBeeHiveDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247273_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createBeeNestDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247334_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createShulkerBoxDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247398_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createDoorTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247458_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createBannerDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247502_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSilkTouchDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247577_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/BlockLootSubProvider/add (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247642_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createStemDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247733_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/data/loot/BlockLootSubProvider/applyExplosionCondition (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_271572_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createPetalsDrops$3 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_271693_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createPetalsDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/ ()V net/minecraft/data/loot/EntityLootSubProvider/ ()V +MD: net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/EntityLootSubProvider/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245309_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/EntityLootSubProvider/add (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245552_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/data/loot/EntityLootSubProvider/canHaveLootTable (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245873_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/loot/EntityLootSubProvider/killedByFrog ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_246752_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/EntityLootSubProvider/createSheepTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_246942_ ()V net/minecraft/data/loot/EntityLootSubProvider/generate ()V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_246961_ (Lnet/minecraft/world/entity/EntityType;)Ljava/util/Map; net/minecraft/data/loot/EntityLootSubProvider/lambda$add$2 (Lnet/minecraft/world/entity/EntityType;)Ljava/util/Map; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_247253_ (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/loot/EntityLootSubProvider/killedByFrogVariant (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_247265_ (Ljava/util/Set;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/BiConsumer;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/EntityLootSubProvider/lambda$generate$0 (Ljava/util/Set;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/BiConsumer;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_247520_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/EntityLootSubProvider/add (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_266130_ (Ljava/util/Set;Ljava/util/function/BiConsumer;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/loot/EntityLootSubProvider/lambda$generate$1 (Ljava/util/Set;Ljava/util/function/BiConsumer;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/loot/LootTableProvider/ ()V net/minecraft/data/loot/LootTableProvider/ ()V +MD: net/minecraft/data/loot/LootTableProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/Set;Ljava/util/List;)V net/minecraft/data/loot/LootTableProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/Set;Ljava/util/List;)V +MD: net/minecraft/data/loot/LootTableProvider/m_124445_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/loot/LootTableProvider/lambda$run$3 (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/loot/LootTableProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/loot/LootTableProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/loot/LootTableProvider/m_252621_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/loot/LootTableProvider/lambda$run$5 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/loot/LootTableProvider/m_278530_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable;)V net/minecraft/data/loot/LootTableProvider/lambda$run$2 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable;)V +MD: net/minecraft/data/loot/LootTableProvider/m_278531_ (Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/loot/LootTableProvider/lambda$run$4 (Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/loot/LootTableProvider/m_287804_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/LootTableProvider/lambda$run$0 (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/LootTableProvider/m_287805_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;)V net/minecraft/data/loot/LootTableProvider/lambda$run$1 (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;)V +MD: net/minecraft/data/loot/LootTableProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/loot/LootTableProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/loot/LootTableProvider$1/ (Lnet/minecraft/data/loot/LootTableProvider;Ljava/util/Map;)V net/minecraft/data/loot/LootTableProvider$1/ (Lnet/minecraft/data/loot/LootTableProvider;Ljava/util/Map;)V +MD: net/minecraft/data/loot/LootTableProvider$1/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/data/loot/LootTableProvider$1/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/ (Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)V net/minecraft/data/loot/LootTableProvider$SubProviderEntry/ (Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)V +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/equals (Ljava/lang/Object;)Z net/minecraft/data/loot/LootTableProvider$SubProviderEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_243941_ ()Ljava/util/function/Supplier; net/minecraft/data/loot/LootTableProvider$SubProviderEntry/provider ()Ljava/util/function/Supplier; +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_244144_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/data/loot/LootTableProvider$SubProviderEntry/paramSet ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/hashCode ()I net/minecraft/data/loot/LootTableProvider$SubProviderEntry/hashCode ()I +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/toString ()Ljava/lang/String; net/minecraft/data/loot/LootTableProvider$SubProviderEntry/toString ()Ljava/lang/String; +MD: net/minecraft/data/loot/LootTableSubProvider/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/LootTableSubProvider/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaArchaeologyLoot/ ()V net/minecraft/data/loot/packs/VanillaArchaeologyLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaArchaeologyLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaArchaeologyLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245043_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$204 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245044_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$218 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245061_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$116 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245067_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$92 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245082_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$36 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245089_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$209 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245128_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$21 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245134_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$41 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245144_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$149 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245174_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$117 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245175_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$225 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245176_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$208 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245191_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$34 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245218_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$146 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245224_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$12 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245228_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$106 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245244_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$214 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245267_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$135 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245305_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$2 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245312_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$132 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245352_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$193 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245368_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$123 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245370_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$212 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245374_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$69 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245410_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$57 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245434_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$187 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245435_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$7 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245440_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$91 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245460_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$228 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245461_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$38 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245467_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$105 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245500_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$26 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245504_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$103 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245518_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$10 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245519_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$33 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245557_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$8 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245560_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$120 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245566_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$114 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245567_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$28 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245576_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$127 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245600_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$124 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245628_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$223 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245649_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$49 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245659_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$191 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245660_ ()V net/minecraft/data/loot/packs/VanillaBlockLoot/generate ()V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245673_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$150 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245682_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$1 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245706_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$56 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245749_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$110 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245767_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$139 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245770_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$220 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245778_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$172 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245796_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$137 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245808_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$62 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245819_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$96 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245823_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$15 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245841_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$63 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245855_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$131 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245869_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$119 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245877_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$173 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245880_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$167 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245881_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$138 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245900_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$107 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245904_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$226 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245908_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$145 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245917_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$192 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245918_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$153 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245928_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$5 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245930_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$162 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245943_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$50 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245962_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245972_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$13 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245973_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$164 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245977_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$171 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245981_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$161 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245983_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$86 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246021_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$165 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246023_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$160 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246024_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$97 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246036_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$22 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246043_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$48 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246065_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$125 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246071_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$43 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246076_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$210 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246095_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$222 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246098_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$196 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246100_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$237 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246111_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$90 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246135_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$215 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246147_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$219 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246155_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$67 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246187_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$234 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246189_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$44 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246190_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$37 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246204_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$151 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246215_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$129 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246219_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$65 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246220_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$231 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246234_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$95 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246243_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$31 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246266_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$24 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246302_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$25 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246303_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$3 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246352_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$230 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246376_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$108 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246380_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$154 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246388_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$147 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246403_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$111 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246405_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$233 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246406_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$94 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246408_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$198 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246421_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$140 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246427_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$113 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246433_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$6 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246450_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$144 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246452_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$200 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246482_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$189 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246512_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$101 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246516_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$20 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246547_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$197 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246551_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$195 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246557_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$206 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246591_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$152 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246593_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$58 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246607_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$98 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246620_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$35 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246649_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$30 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246662_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$159 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246692_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$115 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246695_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$211 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246713_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$100 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246730_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$166 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246738_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$205 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246745_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$42 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246753_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$133 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246757_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$158 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246764_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$4 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246795_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$102 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246800_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$18 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246812_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$194 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246821_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$236 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246842_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$217 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246894_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$169 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246924_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$128 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246925_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$64 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246926_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$59 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246928_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$66 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246935_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$89 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246960_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$46 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246964_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$68 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246967_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$134 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246969_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$202 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246986_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$155 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246993_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$122 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247004_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$9 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247028_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$199 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247031_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$157 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247032_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$29 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247036_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$175 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247044_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$130 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247066_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$148 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247069_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$17 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247095_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$27 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247123_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$227 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247128_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$201 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247132_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$180 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247134_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$104 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247141_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$60 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247142_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$19 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247143_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$40 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247147_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$224 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247151_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$141 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247153_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$23 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247157_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$221 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247159_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$88 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247164_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$136 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247167_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$235 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247177_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$52 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247192_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$126 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247197_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$109 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247215_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$203 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247221_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$51 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247222_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$118 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247226_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$176 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247278_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$87 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247287_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$11 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247296_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$216 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247352_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$143 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247375_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$93 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247399_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$47 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247404_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$170 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247405_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$112 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247411_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$121 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247412_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$39 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247415_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$61 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247429_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$188 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247433_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$14 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247453_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$45 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247485_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$207 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247486_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$142 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247521_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$70 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247527_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$32 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247584_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$163 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247608_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$156 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247609_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$54 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247614_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$190 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247632_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$213 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247633_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$229 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247653_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$16 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247683_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$53 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247700_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$55 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247712_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$232 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247716_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$99 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247725_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$168 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_263148_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$174 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271577_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$78 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271578_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$79 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271579_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$82 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271580_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$80 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271581_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$74 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271582_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$81 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271584_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$75 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271585_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$76 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271586_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$77 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271587_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$83 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276710_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$73 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276711_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$186 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276712_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$72 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276714_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$84 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276715_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$71 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276716_ (Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$createPitcherCropLoot$238 (Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276717_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$85 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_277021_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/createPitcherCropLoot ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_277139_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/createDecoratedPotTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279869_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$182 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279870_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$177 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279871_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$185 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279872_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$184 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279873_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$179 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279874_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$183 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279875_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$181 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279876_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$178 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/ ()V net/minecraft/data/loot/packs/VanillaChestLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaChestLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266168_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionBridgeLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266297_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/jungleTempleLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266323_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionTreasureLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266336_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionOtherLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266364_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/strongholdCorridorLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266375_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/shipwreckSupplyLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266392_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/netherBridgeLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266422_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/desertPyramidLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266424_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/shipwreckTreasureLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266435_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/strongholdLibraryLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266444_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/pillagerOutpostLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266481_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/woodlandMansionLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266540_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/endCityTreasureLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266552_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionHoglinStableLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266573_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/shipwreckMapLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266580_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/ancientCityLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaEntityLoot/ ()V net/minecraft/data/loot/packs/VanillaEntityLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaEntityLoot/m_246942_ ()V net/minecraft/data/loot/packs/VanillaEntityLoot/generate ()V +MD: net/minecraft/data/loot/packs/VanillaEntityLoot/m_266591_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaEntityLoot/elderGuardianLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaFishingLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/m_266406_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaFishingLoot/fishingFishLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaGiftLoot/ ()V net/minecraft/data/loot/packs/VanillaGiftLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaGiftLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaGiftLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaLootTableProvider/ ()V net/minecraft/data/loot/packs/VanillaLootTableProvider/ ()V +MD: net/minecraft/data/loot/packs/VanillaLootTableProvider/m_247452_ (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/loot/LootTableProvider; net/minecraft/data/loot/packs/VanillaLootTableProvider/create (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/loot/LootTableProvider; +MD: net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/ ()V net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/metadata/PackMetadataGenerator/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/metadata/PackMetadataGenerator/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/metadata/PackMetadataGenerator/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_245452_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/data/metadata/PackMetadataGenerator/lambda$run$1 (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_247300_ (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/metadata/PackMetadataGenerator/add (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_247576_ (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lcom/google/gson/JsonElement; net/minecraft/data/metadata/PackMetadataGenerator/lambda$add$0 (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_252835_ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/metadata/PackMetadataGenerator/forFeaturePack (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_254904_ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/metadata/PackMetadataGenerator/forFeaturePack (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_6055_ ()Ljava/lang/String; net/minecraft/data/metadata/PackMetadataGenerator/getName ()Ljava/lang/String; +MD: net/minecraft/data/models/BlockModelGenerators/ ()V net/minecraft/data/models/BlockModelGenerators/ ()V +MD: net/minecraft/data/models/BlockModelGenerators/ (Ljava/util/function/Consumer;Ljava/util/function/BiConsumer;Ljava/util/function/Consumer;)V net/minecraft/data/models/BlockModelGenerators/ (Ljava/util/function/Consumer;Ljava/util/function/BiConsumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124484_ ()V net/minecraft/data/models/BlockModelGenerators/createComposter ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124485_ ()V net/minecraft/data/models/BlockModelGenerators/createDaylightDetector ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124486_ ()V net/minecraft/data/models/BlockModelGenerators/createFarmland ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124487_ ()V net/minecraft/data/models/BlockModelGenerators/createFire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124488_ ()V net/minecraft/data/models/BlockModelGenerators/createSoulFire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124489_ ()V net/minecraft/data/models/BlockModelGenerators/createFrostedIce ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124490_ ()V net/minecraft/data/models/BlockModelGenerators/createGrassBlocks ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124491_ ()V net/minecraft/data/models/BlockModelGenerators/createCocoa ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124493_ ()V net/minecraft/data/models/BlockModelGenerators/createHopper ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124494_ ()V net/minecraft/data/models/BlockModelGenerators/createIronBars ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124495_ ()V net/minecraft/data/models/BlockModelGenerators/createLever ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124496_ ()V net/minecraft/data/models/BlockModelGenerators/createLilyPad ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124497_ ()V net/minecraft/data/models/BlockModelGenerators/createNetherPortalBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124498_ ()V net/minecraft/data/models/BlockModelGenerators/createNetherrack ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124499_ ()V net/minecraft/data/models/BlockModelGenerators/createObserver ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124500_ ()V net/minecraft/data/models/BlockModelGenerators/createPistons ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124501_ ()V net/minecraft/data/models/BlockModelGenerators/createPistonHeads ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124502_ ()V net/minecraft/data/models/BlockModelGenerators/createScaffolding ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124503_ ()V net/minecraft/data/models/BlockModelGenerators/createRedstoneLamp ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124504_ ()V net/minecraft/data/models/BlockModelGenerators/createRedstoneTorch ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124505_ ()V net/minecraft/data/models/BlockModelGenerators/createRepeater ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124506_ ()V net/minecraft/data/models/BlockModelGenerators/createSeaPickle ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124507_ ()V net/minecraft/data/models/BlockModelGenerators/createSnowBlocks ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124508_ ()V net/minecraft/data/models/BlockModelGenerators/createStonecutter ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124509_ ()V net/minecraft/data/models/BlockModelGenerators/createStructureBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124510_ ()V net/minecraft/data/models/BlockModelGenerators/run ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124511_ (I)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createBambooModels (I)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_124513_ (ILjava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/createTurtleEggModel (ILjava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_124517_ (Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/BlockModelGenerators/createSimpleFlatItemModel (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124519_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/delegateItemModel (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124524_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/skipAutoItemBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124530_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/BlockModelGenerators/createAirLikeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124533_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNonTemplateModelBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124536_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCoral (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124545_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createPlant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124549_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiFunction;)V net/minecraft/data/models/BlockModelGenerators/createCraftingTableLike (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiFunction;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124553_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;[I)V net/minecraft/data/models/BlockModelGenerators/createCropBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;[I)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124557_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlockWithDefaultItem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124560_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlockWithDefaultItem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124564_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createPumpkinVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124567_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/BlockModelGenerators/createTrivialBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124575_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/data/models/BlockModelGenerators/createSimpleFlatItemModel (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124578_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;Ljava/util/function/Function;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/createSuffixedVariant (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;Ljava/util/function/Function;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_124583_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V net/minecraft/data/models/BlockModelGenerators/createBeeNest (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124586_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createAxisAlignedPillarBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124589_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createRotatedPillarWithHorizontalVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124599_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/BlockModelGenerators/createGrassLikeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124603_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createPistonVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124622_ (Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createBooleanModelDispatch (Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124626_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createEmptyOrFullDispatch (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124635_ (Lnet/minecraft/core/FrontAndTop;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/applyRotation (Lnet/minecraft/core/FrontAndTop;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_124676_ (Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/createTurtleEggModel (Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_124682_ (Ljava/util/List;Ljava/util/function/UnaryOperator;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/wrapModels (Ljava/util/List;Ljava/util/function/UnaryOperator;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_124685_ (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createColoredBlockWithRandomRotations (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124688_ (Lnet/minecraft/resources/ResourceLocation;)[Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/createRotatedVariants (Lnet/minecraft/resources/ResourceLocation;)[Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_124690_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators/blockEntityModels (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124713_ ([Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCampfires ([Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124718_ ()V net/minecraft/data/models/BlockModelGenerators/createSweetBerryBush ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124719_ ()V net/minecraft/data/models/BlockModelGenerators/createTripwire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124720_ ()V net/minecraft/data/models/BlockModelGenerators/createTripwireHook ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124721_ ()V net/minecraft/data/models/BlockModelGenerators/createTurtleEgg ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124723_ ()V net/minecraft/data/models/BlockModelGenerators/createMagmaBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124724_ ()V net/minecraft/data/models/BlockModelGenerators/createInfestedStone ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124725_ ()V net/minecraft/data/models/BlockModelGenerators/createRespawnAnchor ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124726_ ()V net/minecraft/data/models/BlockModelGenerators/createJigsaw ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124727_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createHorizontalFacingDispatch ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124728_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createSimpleFlatItemModel (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124730_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCoralFans (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124733_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createGrowingPlant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124737_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124740_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124744_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createHorizontallyRotatedBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124777_ (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createColoredBlockWithStateRotations (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124785_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createHorizontalFacingDispatchAlt ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124786_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createRotatedMirroredVariantBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124788_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createStems (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124791_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createDoublePlant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124794_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createTrivialBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124797_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/delegateItemModel (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124809_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createFenceGate (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124822_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createTorchHorizontalDispatch ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124823_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createRotatedVariantBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124825_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators/blockEntityModels (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124831_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/BlockModelGenerators/createRotatedVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124838_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createWall (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124850_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createFacingDispatch ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124851_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createTrivialCube (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124856_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createFurnace (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124859_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/BlockModelGenerators/createSimpleBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124862_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/BlockModelGenerators/createRotatedVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124866_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createStairs (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124875_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createRotatedPillar ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124876_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators/family (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators/m_124878_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createGlassBlocks (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124881_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createAxisAlignedPillarBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124884_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createButton (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124888_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createOrientableTrapdoor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124893_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$19 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_124895_ ()V net/minecraft/data/models/BlockModelGenerators/createSunflower ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124896_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createDoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124901_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/createAxisAlignedPillarBlockCustomModel (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124904_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createFence (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124908_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createTrapdoor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124915_ ()V net/minecraft/data/models/BlockModelGenerators/createTallSeagrass ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124916_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createOrientableTrapdoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124918_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createWeightedPressurePlate (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124921_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/createAirLikeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124924_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createRotatedPillarWithHorizontalVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124928_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createSlab (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124935_ ()V net/minecraft/data/models/BlockModelGenerators/createBamboo ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124936_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createTrapdoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124938_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/copyModel (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124941_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createPressurePlate (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124947_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createColumnWithFacing ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124948_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators/woodProvider (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators/m_124950_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNormalTorch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124953_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/createDoubleBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124959_ ()V net/minecraft/data/models/BlockModelGenerators/createBarrel ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124960_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNonTemplateModelBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124962_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createBedItem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124967_ ()V net/minecraft/data/models/BlockModelGenerators/createBell ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124968_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createPassiveRail (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124970_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNetherRoots (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124973_ ()V net/minecraft/data/models/BlockModelGenerators/createGrindstone ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124974_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createActiveRail (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124976_ ()V net/minecraft/data/models/BlockModelGenerators/createBookshelf ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124977_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCommandBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124979_ ()V net/minecraft/data/models/BlockModelGenerators/createRedstoneWire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124980_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createAnvil (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124982_ ()V net/minecraft/data/models/BlockModelGenerators/createComparator ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124983_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createMushroomBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124985_ ()V net/minecraft/data/models/BlockModelGenerators/createSmoothStoneSlab ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124986_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createDispenserBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124988_ ()V net/minecraft/data/models/BlockModelGenerators/createBrewingStand ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124989_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNyliumBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124991_ ()V net/minecraft/data/models/BlockModelGenerators/createCakeBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124992_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createRotatableColumn (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124994_ ()V net/minecraft/data/models/BlockModelGenerators/createCartographyTable ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124995_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createFloorFireModels (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_124997_ ()V net/minecraft/data/models/BlockModelGenerators/createSmithingTable ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124998_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createSideFireModels (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_125000_ ()V net/minecraft/data/models/BlockModelGenerators/createPumpkins ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_125001_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createTopFireModels (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_125004_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createLantern (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_125006_ ()V net/minecraft/data/models/BlockModelGenerators/createChorusFlower ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_125007_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNonTemplateHorizontalBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_125009_ ()V net/minecraft/data/models/BlockModelGenerators/createEndPortalFrame ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_125010_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createShulkerBox (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_125012_ ()V net/minecraft/data/models/BlockModelGenerators/createChorusPlant ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176085_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createMultiface (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176087_ ()V net/minecraft/data/models/BlockModelGenerators/createAmethystClusters ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176088_ ()V net/minecraft/data/models/BlockModelGenerators/createPointedDripstone ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176089_ ()V net/minecraft/data/models/BlockModelGenerators/createLightningRod ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176090_ ()V net/minecraft/data/models/BlockModelGenerators/createDirtPath ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176091_ ()V net/minecraft/data/models/BlockModelGenerators/createSculkSensor ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176092_ ()V net/minecraft/data/models/BlockModelGenerators/createCaveVines ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176095_ (Lnet/minecraft/world/level/block/Block;II)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/lambda$createCropBlock$14 (Lnet/minecraft/world/level/block/Block;II)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_176105_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createStems$7 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176109_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createMirroredCubeGenerator (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_176114_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createStructureBlock$36 (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176116_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/createPointedDripstoneVariant (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176123_ (Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createTripwireHook$38 (Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176126_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createEmptyOrFullDispatch$13 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176131_ (Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSweetBerryBush$37 (Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176133_ (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createRepeater$34 (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176137_ (Ljava/lang/String;I)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createBambooModels$11 (Ljava/lang/String;I)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176142_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$29 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176144_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$4 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176146_ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/BlockModelGenerators/lambda$createChorusFlower$17 (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/BlockModelGenerators/m_176149_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSnowBlocks$35 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176152_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createGrassBlocks$31 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176159_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;Lnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createActiveRail$9 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;Lnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176168_ ([ILit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createCropBlock$15 ([ILit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176176_ ()V net/minecraft/data/models/BlockModelGenerators/createInfestedDeepslate ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176177_ ()V net/minecraft/data/models/BlockModelGenerators/createPetrifiedOakSlab ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176179_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createMirroredColumnGenerator (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_176184_ (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/lambda$createTurtleEgg$39 (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_176187_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$28 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176189_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$3 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176191_ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/BlockModelGenerators/lambda$createCommandBlock$10 (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/BlockModelGenerators/m_176194_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$47 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176196_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createGrassBlocks$30 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176199_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$27 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176201_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$2 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176203_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$46 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176205_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createFurnace$16 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176208_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$26 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176210_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$1 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176212_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$45 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176214_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createBarrel$12 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176217_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createFullAndCarpetBlocks (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176220_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$25 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176222_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$0 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176224_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$44 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176226_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$24 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176228_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$43 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176230_ ()V net/minecraft/data/models/BlockModelGenerators/createBigDripLeafBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176231_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$23 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176233_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$42 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176235_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$22 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176237_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$wrapModels$18 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176239_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$21 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176241_ ()V net/minecraft/data/models/BlockModelGenerators/createSmallDripleaf ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176242_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$20 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176244_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCandleAndCandleCake (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176247_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createAzalea (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176249_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createPottedAzalea (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176251_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createAmethystCluster (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176253_ ()V net/minecraft/data/models/BlockModelGenerators/createCauldrons ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_194715_ ()V net/minecraft/data/models/BlockModelGenerators/createLightBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236274_ ()V net/minecraft/data/models/BlockModelGenerators/createMuddyMangroveRoots ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236275_ ()V net/minecraft/data/models/BlockModelGenerators/createMangrovePropagule ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236276_ ()V net/minecraft/data/models/BlockModelGenerators/createFrogspawnBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236277_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSculkCatalyst$50 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_236281_ (Lnet/minecraft/world/item/SpawnEggItem;)V net/minecraft/data/models/BlockModelGenerators/lambda$run$57 (Lnet/minecraft/world/item/SpawnEggItem;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236283_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createDoor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_236293_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;)V net/minecraft/data/models/BlockModelGenerators/lambda$createMultiface$49 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236296_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V net/minecraft/data/models/BlockModelGenerators/lambda$createMultiface$48 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236300_ (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createJigsaw$55 (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_236302_ (Lnet/minecraft/data/BlockFamily;)V net/minecraft/data/models/BlockModelGenerators/lambda$run$56 (Lnet/minecraft/data/BlockFamily;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236304_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/BlockModelGenerators/configureDoorHalf (Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/BlockModelGenerators/m_236311_ ([Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createRespawnAnchor$54 ([Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_236314_ ()V net/minecraft/data/models/BlockModelGenerators/createSculkShrieker ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236315_ ()V net/minecraft/data/models/BlockModelGenerators/createSculkCatalyst ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236316_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createNorthWestMirroredCubeGenerator (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_246674_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createHangingSign (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_247086_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createCustomFence (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_247160_ ()V net/minecraft/data/models/BlockModelGenerators/createChiseledBookshelf ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_257856_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createPillarBlockUVLocked (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_260774_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/BlockModelGenerators/lambda$addSlotStateAndRotationVariants$52 (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_260775_ (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/lambda$addBookSlotModel$53 (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_260948_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;Z)V net/minecraft/data/models/BlockModelGenerators/addBookSlotModel (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;Z)V +MD: net/minecraft/data/models/BlockModelGenerators/m_261107_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V net/minecraft/data/models/BlockModelGenerators/addSlotStateAndRotationVariants (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_262348_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Direction;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V net/minecraft/data/models/BlockModelGenerators/lambda$createChiseledBookshelf$51 (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Direction;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_271589_ ([ILnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createCrossBlock$6 ([ILnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_271994_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/world/level/block/state/properties/Property;[I)V net/minecraft/data/models/BlockModelGenerators/createCrossBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/world/level/block/state/properties/Property;[I)V +MD: net/minecraft/data/models/BlockModelGenerators/m_272099_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createFlowerBed (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_276719_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createBrushableBlock$5 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_276720_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createPitcherCrop$8 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_276722_ (Ljava/util/function/Function;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSnifferEgg$41 (Ljava/util/function/Function;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_276871_ ()V net/minecraft/data/models/BlockModelGenerators/createCalibratedSculkSensor ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_276953_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createBrushableBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_277101_ ()V net/minecraft/data/models/BlockModelGenerators/createPitcherPlant ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_277113_ ()V net/minecraft/data/models/BlockModelGenerators/createSnifferEgg ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_277126_ ()V net/minecraft/data/models/BlockModelGenerators/createPitcherCrop ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_278137_ (Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/lambda$createSnifferEgg$40 (Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_280054_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createGenericCube (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_283985_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createCalibratedSculkSensor$33 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_283986_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSculkSensor$32 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators$1/ ()V net/minecraft/data/models/BlockModelGenerators$1/ ()V +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/m_125022_ (Lnet/minecraft/data/models/model/ModelTemplate;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/createWithCustomBlockItemModel (Lnet/minecraft/data/models/model/ModelTemplate;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/m_125025_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/create ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/m_125027_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/createWithoutBlockItem ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125035_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/button (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125040_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125045_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/wall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125047_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125049_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125051_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/pressurePlate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125053_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/slab (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125055_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/stairs (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176256_ (Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/lambda$generateFor$1 (Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176259_ (Lnet/minecraft/data/BlockFamily;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/generateFor (Lnet/minecraft/data/BlockFamily;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176261_ (Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/getOrCreateModel (Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176264_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlockCopies ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176266_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/lambda$getOrCreateModel$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176269_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/sign (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176271_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlockVariant (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176273_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/door (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176275_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/trapdoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_245757_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/customFenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_246414_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/customFence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier/m_176277_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier/create (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/ (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;)V net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/ (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;)V +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/equals (Ljava/lang/Object;)Z net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260626_ ()Ljava/lang/String; net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/modelSuffix ()Ljava/lang/String; +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260721_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/template ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/hashCode ()I net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/hashCode ()I +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/toString ()Ljava/lang/String; net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/ ()V net/minecraft/data/models/BlockModelGenerators$TintState/ ()V +MD: net/minecraft/data/models/BlockModelGenerators$TintState/ (Ljava/lang/String;I)V net/minecraft/data/models/BlockModelGenerators$TintState/ (Ljava/lang/String;I)V +MD: net/minecraft/data/models/BlockModelGenerators$TintState/m_125064_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/BlockModelGenerators$TintState/getCross ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/m_125065_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/BlockModelGenerators$TintState/getCrossPot ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/m_176282_ ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; net/minecraft/data/models/BlockModelGenerators$TintState/$values ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/BlockModelGenerators$TintState; net/minecraft/data/models/BlockModelGenerators$TintState/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/BlockModelGenerators$TintState; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/values ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; net/minecraft/data/models/BlockModelGenerators$TintState/values ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators$WoodProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_125074_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/wood (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_125076_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/log (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_125078_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/logWithHorizontal (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_258006_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/logUVLocked (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/ItemModelGenerators/ ()V net/minecraft/data/models/ItemModelGenerators/ ()V +MD: net/minecraft/data/models/ItemModelGenerators/ (Ljava/util/function/BiConsumer;)V net/minecraft/data/models/ItemModelGenerators/ (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_125083_ ()V net/minecraft/data/models/ItemModelGenerators/run ()V +MD: net/minecraft/data/models/ItemModelGenerators/m_125084_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/ItemModelGenerators/generateFlatItem (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_125088_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/ItemModelGenerators/generateFlatItem (Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_125091_ (Lnet/minecraft/world/item/Item;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/ItemModelGenerators/generateFlatItem (Lnet/minecraft/world/item/Item;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_236321_ (Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/ItemModelGenerators/generateCompassItem (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_236323_ (Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/ItemModelGenerators/generateClockItem (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_266208_ (Lnet/minecraft/world/item/ArmorItem;)V net/minecraft/data/models/ItemModelGenerators/generateArmorTrims (Lnet/minecraft/world/item/ArmorItem;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_266316_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/ItemModelGenerators/getItemModelForTrimMaterial (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/ItemModelGenerators/m_266494_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/ItemModelGenerators/generateLayeredItem (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_266576_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;Lnet/minecraft/world/item/ArmorMaterial;)Lcom/google/gson/JsonObject; net/minecraft/data/models/ItemModelGenerators/generateBaseArmorTrimTemplate (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;Lnet/minecraft/world/item/ArmorMaterial;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/ItemModelGenerators/m_267544_ (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/ItemModelGenerators/lambda$generateArmorTrims$0 (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/ItemModelGenerators/m_267545_ (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/ItemModelGenerators/lambda$generateArmorTrims$1 (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/ItemModelGenerators/m_267826_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/ItemModelGenerators/generateLayeredItem (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/ (Ljava/lang/String;FLjava/util/Map;)V net/minecraft/data/models/ItemModelGenerators$TrimModelData/ (Ljava/lang/String;FLjava/util/Map;)V +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/equals (Ljava/lang/Object;)Z net/minecraft/data/models/ItemModelGenerators$TrimModelData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265849_ ()F net/minecraft/data/models/ItemModelGenerators$TrimModelData/itemModelIndex ()F +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265890_ ()Ljava/lang/String; net/minecraft/data/models/ItemModelGenerators$TrimModelData/name ()Ljava/lang/String; +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_267444_ ()Ljava/util/Map; net/minecraft/data/models/ItemModelGenerators$TrimModelData/overrideArmorMaterials ()Ljava/util/Map; +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/hashCode ()I net/minecraft/data/models/ItemModelGenerators$TrimModelData/hashCode ()I +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/m_267684_ (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; net/minecraft/data/models/ItemModelGenerators$TrimModelData/name (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/toString ()Ljava/lang/String; net/minecraft/data/models/ItemModelGenerators$TrimModelData/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/ModelProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/models/ModelProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/models/ModelProvider/m_125115_ (Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/data/models/ModelProvider/lambda$run$2 (Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/data/models/ModelProvider/m_125118_ (Ljava/util/Map;Lnet/minecraft/data/models/blockstates/BlockStateGenerator;)V net/minecraft/data/models/ModelProvider/lambda$run$0 (Ljava/util/Map;Lnet/minecraft/data/models/blockstates/BlockStateGenerator;)V +MD: net/minecraft/data/models/ModelProvider/m_125121_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V net/minecraft/data/models/ModelProvider/lambda$run$1 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V +MD: net/minecraft/data/models/ModelProvider/m_125125_ (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/ModelProvider/lambda$run$3 (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/ModelProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_244772_ (Lnet/minecraft/world/level/block/Block;)Ljava/nio/file/Path; net/minecraft/data/models/ModelProvider/lambda$run$4 (Lnet/minecraft/world/level/block/Block;)Ljava/nio/file/Path; +MD: net/minecraft/data/models/ModelProvider/m_252623_ (Ljava/util/function/Function;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/lambda$saveCollection$5 (Ljava/util/function/Function;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_252624_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/lambda$saveCollection$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_252989_ (Lnet/minecraft/data/CachedOutput;Ljava/util/Map;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/saveCollection (Lnet/minecraft/data/CachedOutput;Ljava/util/Map;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/models/ModelProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/BlockStateGenerator/m_6968_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/models/blockstates/BlockStateGenerator/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/models/blockstates/Condition/m_125135_ ()Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition/condition ()Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition/m_125137_ ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; net/minecraft/data/models/blockstates/Condition/or ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; +MD: net/minecraft/data/models/blockstates/Condition/m_176293_ ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; net/minecraft/data/models/blockstates/Condition/and ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; +MD: net/minecraft/data/models/blockstates/Condition/m_7619_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/Condition/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/ (Lnet/minecraft/data/models/blockstates/Condition$Operation;Ljava/util/List;)V net/minecraft/data/models/blockstates/Condition$CompositeCondition/ (Lnet/minecraft/data/models/blockstates/Condition$Operation;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/m_125150_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/Condition;)V net/minecraft/data/models/blockstates/Condition$CompositeCondition/lambda$validate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/Condition;)V +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/m_7619_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/Condition$CompositeCondition/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/Condition$Operation/ ()V net/minecraft/data/models/blockstates/Condition$Operation/ ()V +MD: net/minecraft/data/models/blockstates/Condition$Operation/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/models/blockstates/Condition$Operation/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/models/blockstates/Condition$Operation/m_176295_ ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; net/minecraft/data/models/blockstates/Condition$Operation/$values ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; +MD: net/minecraft/data/models/blockstates/Condition$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/Condition$Operation; net/minecraft/data/models/blockstates/Condition$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/Condition$Operation; +MD: net/minecraft/data/models/blockstates/Condition$Operation/values ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; net/minecraft/data/models/blockstates/Condition$Operation/values ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/ ()V net/minecraft/data/models/blockstates/Condition$TerminalCondition/ ()V +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125173_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/data/models/blockstates/Condition$TerminalCondition/lambda$validate$1 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125176_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/term (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125179_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/term (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125183_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V net/minecraft/data/models/blockstates/Condition$TerminalCondition/putValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125186_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/stream/Stream;)Ljava/lang/String; net/minecraft/data/models/blockstates/Condition$TerminalCondition/joinValues (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/stream/Stream;)Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125189_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V net/minecraft/data/models/blockstates/Condition$TerminalCondition/lambda$get$0 (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125194_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/data/models/blockstates/Condition$TerminalCondition/getTerm (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_176296_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/negatedTerm (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_176299_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/negatedTerm (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_7619_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/Condition$TerminalCondition/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/blockstates/MultiPartGenerator/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125204_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/multiPart (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125206_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/MultiPartGenerator$Entry;)V net/minecraft/data/models/blockstates/MultiPartGenerator/lambda$get$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/MultiPartGenerator$Entry;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125209_ (Lnet/minecraft/data/models/blockstates/Condition;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Condition;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125212_ (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125215_ (Lnet/minecraft/data/models/blockstates/Condition;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Condition;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125218_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125220_ (Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_6968_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/models/blockstates/MultiPartGenerator/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/ (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)V net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/ (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/m_5848_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/m_8000_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/decorate (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/ (Ljava/util/List;)V net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/ (Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/m_5848_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/m_8000_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/decorate (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/ (Lnet/minecraft/world/level/block/Block;Ljava/util/List;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/ (Lnet/minecraft/world/level/block/Block;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125254_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/multiVariant (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125256_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/multiVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125259_ (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/multiVariant (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125262_ (Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$with$0 (Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125271_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/with (Lnet/minecraft/data/models/blockstates/PropertyDispatch;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125273_ (Ljava/util/List;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$mergeVariants$6 (Ljava/util/List;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125277_ (Ljava/util/List;Ljava/util/List;)Ljava/util/List; net/minecraft/data/models/blockstates/MultiVariantGenerator/mergeVariants (Ljava/util/List;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125280_ (Ljava/util/Map;Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$4 (Ljava/util/Map;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125283_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$3 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125287_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$2 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_176303_ (Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$mergeVariants$5 (Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_176307_ (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$1 (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_6968_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/models/blockstates/MultiVariantGenerator/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/ ()V net/minecraft/data/models/blockstates/PropertyDispatch/ ()V +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125293_ ()Ljava/util/Map; net/minecraft/data/models/blockstates/PropertyDispatch/getEntries ()Ljava/util/Map; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125294_ (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; net/minecraft/data/models/blockstates/PropertyDispatch/property (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125296_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125299_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125303_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125308_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125314_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/data/models/blockstates/Selector;)Ljava/util/stream/Stream; net/minecraft/data/models/blockstates/PropertyDispatch/lambda$verifyComplete$0 (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/data/models/blockstates/Selector;)Ljava/util/stream/Stream; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125317_ (Lnet/minecraft/data/models/blockstates/Selector;)Z net/minecraft/data/models/blockstates/PropertyDispatch/lambda$verifyComplete$1 (Lnet/minecraft/data/models/blockstates/Selector;)Z +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125319_ (Lnet/minecraft/data/models/blockstates/Selector;Ljava/util/List;)V net/minecraft/data/models/blockstates/PropertyDispatch/putValue (Lnet/minecraft/data/models/blockstates/Selector;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125322_ ()V net/minecraft/data/models/blockstates/PropertyDispatch/verifyComplete ()V +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/ (Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C1/ (Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125329_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; net/minecraft/data/models/blockstates/PropertyDispatch$C1/select (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125332_ (Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; net/minecraft/data/models/blockstates/PropertyDispatch$C1/select (Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125335_ (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C1/generate (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125338_ (Ljava/util/function/Function;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C1/lambda$generate$0 (Ljava/util/function/Function;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_176310_ (Ljava/util/function/Function;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C1/lambda$generateList$1 (Ljava/util/function/Function;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_176313_ (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C1/generateList (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C1/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125350_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; net/minecraft/data/models/blockstates/PropertyDispatch$C2/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125354_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; net/minecraft/data/models/blockstates/PropertyDispatch$C2/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125362_ (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C2/generate (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125364_ (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generateList$3 (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125372_ (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C2/generateList (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125374_ (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generate$1 (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_176315_ (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generateList$2 (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_176319_ (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generate$0 (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C2/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125389_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C3/generate (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125391_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; net/minecraft/data/models/blockstates/PropertyDispatch$C3/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125396_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; net/minecraft/data/models/blockstates/PropertyDispatch$C3/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125402_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generate$2 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176323_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generateList$3 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176328_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generateList$4 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176332_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generateList$5 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176335_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generate$0 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176340_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generate$1 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176344_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C3/generateList (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C3/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_125429_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/blockstates/PropertyDispatch$C4/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_125435_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/blockstates/PropertyDispatch$C4/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176346_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$4 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176352_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$5 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176357_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$6 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176361_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C4/generate (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176363_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$7 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176366_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$0 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176372_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$1 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176377_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$2 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176381_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C4/generateList (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176383_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$3 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C4/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_125460_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; net/minecraft/data/models/blockstates/PropertyDispatch$C5/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_125467_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; net/minecraft/data/models/blockstates/PropertyDispatch$C5/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176386_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$5 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176393_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$6 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176399_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$7 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176404_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$8 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176408_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C5/generate (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176410_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$9 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176413_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$0 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176420_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$1 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176426_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$2 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176431_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$3 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176435_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C5/generateList (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176437_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$4 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C5/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction/m_176440_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction/apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction/m_176446_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction/apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction/m_125475_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction/apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Selector/ ()V net/minecraft/data/models/blockstates/Selector/ ()V +MD: net/minecraft/data/models/blockstates/Selector/ (Ljava/util/List;)V net/minecraft/data/models/blockstates/Selector/ (Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/Selector/equals (Ljava/lang/Object;)Z net/minecraft/data/models/blockstates/Selector/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/models/blockstates/Selector/hashCode ()I net/minecraft/data/models/blockstates/Selector/hashCode ()I +MD: net/minecraft/data/models/blockstates/Selector/m_125485_ ()Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/empty ()Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125486_ (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/extend (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125488_ (Lnet/minecraft/data/models/blockstates/Selector;)Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/extend (Lnet/minecraft/data/models/blockstates/Selector;)Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125490_ ([Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/of ([Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125492_ ()Ljava/lang/String; net/minecraft/data/models/blockstates/Selector/getKey ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Selector/m_125493_ (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Ljava/lang/String; net/minecraft/data/models/blockstates/Selector/lambda$static$0 (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Selector/toString ()Ljava/lang/String; net/minecraft/data/models/blockstates/Selector/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Variant/ ()V net/minecraft/data/models/blockstates/Variant/ ()V +MD: net/minecraft/data/models/blockstates/Variant/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/Variant/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Variant/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Variant/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/Variant/m_125501_ ()Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/blockstates/Variant/variant ()Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/blockstates/Variant/m_125502_ (Lcom/google/gson/JsonArray;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/blockstates/Variant/lambda$convertList$1 (Lcom/google/gson/JsonArray;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/blockstates/Variant/m_125505_ (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/blockstates/VariantProperty$Value;)V net/minecraft/data/models/blockstates/Variant/lambda$get$0 (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/blockstates/VariantProperty$Value;)V +MD: net/minecraft/data/models/blockstates/Variant/m_125508_ (Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/blockstates/Variant/merge (Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/blockstates/Variant/m_125511_ (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/blockstates/Variant/with (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/blockstates/Variant/m_125514_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Variant/convertList (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties/ ()V net/minecraft/data/models/blockstates/VariantProperties/ ()V +MD: net/minecraft/data/models/blockstates/VariantProperties/ ()V net/minecraft/data/models/blockstates/VariantProperties/ ()V +MD: net/minecraft/data/models/blockstates/VariantProperties/m_125524_ (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/VariantProperties/lambda$static$1 (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties/m_125526_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/VariantProperties/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties/m_125528_ (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/VariantProperties/lambda$static$0 (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/ ()V net/minecraft/data/models/blockstates/VariantProperties$Rotation/ ()V +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/ (Ljava/lang/String;II)V net/minecraft/data/models/blockstates/VariantProperties$Rotation/ (Ljava/lang/String;II)V +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/m_176452_ ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; net/minecraft/data/models/blockstates/VariantProperties$Rotation/$values ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; net/minecraft/data/models/blockstates/VariantProperties$Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/values ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; net/minecraft/data/models/blockstates/VariantProperties$Rotation/values ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +MD: net/minecraft/data/models/blockstates/VariantProperty/ (Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/data/models/blockstates/VariantProperty/ (Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/data/models/blockstates/VariantProperty/m_125553_ (Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/VariantProperty$Value; net/minecraft/data/models/blockstates/VariantProperty/withValue (Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/VariantProperty$Value; +MD: net/minecraft/data/models/blockstates/VariantProperty/toString ()Ljava/lang/String; net/minecraft/data/models/blockstates/VariantProperty/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/ (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)V net/minecraft/data/models/blockstates/VariantProperty$Value/ (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)V +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/m_125563_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/VariantProperty$Value/addToVariant (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/m_176453_ ()Lnet/minecraft/data/models/blockstates/VariantProperty; net/minecraft/data/models/blockstates/VariantProperty$Value/getKey ()Lnet/minecraft/data/models/blockstates/VariantProperty; +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/toString ()Ljava/lang/String; net/minecraft/data/models/blockstates/VariantProperty$Value/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/model/DelegatedModel/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/model/DelegatedModel/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/model/DelegatedModel/get ()Ljava/lang/Object; net/minecraft/data/models/model/DelegatedModel/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/model/DelegatedModel/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/model/DelegatedModel/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/model/ModelLocationUtils/ ()V net/minecraft/data/models/model/ModelLocationUtils/ ()V +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125571_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125573_ (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125576_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125578_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125581_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/decorateBlockModelLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125583_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/decorateItemModelLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_246144_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/ModelLocationUtils/lambda$getModelLocation$0 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_246878_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/ModelLocationUtils/lambda$getModelLocation$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/ModelTemplate/ (Ljava/util/Optional;Ljava/util/Optional;[Lnet/minecraft/data/models/model/TextureSlot;)V net/minecraft/data/models/model/ModelTemplate/ (Ljava/util/Optional;Ljava/util/Optional;[Lnet/minecraft/data/models/model/TextureSlot;)V +MD: net/minecraft/data/models/model/ModelTemplate/m_125592_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/create (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_125596_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/createWithSuffix (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_125608_ (Lnet/minecraft/data/models/model/TextureMapping;)Ljava/util/Map; net/minecraft/data/models/model/ModelTemplate/createMap (Lnet/minecraft/data/models/model/TextureMapping;)Ljava/util/Map; +MD: net/minecraft/data/models/model/ModelTemplate/m_125612_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_125616_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/createWithOverride (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_176455_ (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/model/ModelTemplate/lambda$createBaseTemplate$2 (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/model/ModelTemplate/m_176459_ (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/model/ModelTemplate/lambda$createBaseTemplate$1 (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/model/ModelTemplate/m_266131_ (Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonElement; net/minecraft/data/models/model/ModelTemplate/lambda$create$0 (Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/model/ModelTemplate/m_266532_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/model/ModelTemplate/createBaseTemplate (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/model/ModelTemplate/m_266561_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate$JsonFactory/m_266264_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/model/ModelTemplate$JsonFactory/create (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/model/ModelTemplates/ ()V net/minecraft/data/models/model/ModelTemplates/ ()V +MD: net/minecraft/data/models/model/ModelTemplates/ ()V net/minecraft/data/models/model/ModelTemplates/ ()V +MD: net/minecraft/data/models/model/ModelTemplates/m_125717_ (I)[Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/lambda$static$1 (I)[Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125719_ (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/create (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125723_ (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/create (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125726_ ([Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/create ([Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125728_ (I)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/lambda$static$0 (I)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125730_ (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/createItem (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/TextureMapping/ ()V net/minecraft/data/models/model/TextureMapping/ ()V +MD: net/minecraft/data/models/model/TextureMapping/m_125736_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/campfire (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125738_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layer0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125740_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getBlockTexture (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125742_ ()Ljava/util/stream/Stream; net/minecraft/data/models/model/TextureMapping/getForced ()Ljava/util/stream/Stream; +MD: net/minecraft/data/models/model/TextureMapping/m_125743_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/particleFromItem (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125745_ (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getItemTexture (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125748_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cube (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125750_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/attachedStem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125753_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getBlockTexture (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125756_ (Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/get (Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125758_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/put (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125761_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/defaultTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125763_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/column (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125766_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layer0 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125768_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/defaultTexture (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125770_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/pane (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125773_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/copyForced (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125776_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cube (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125778_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getItemTexture (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125780_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cross (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125782_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/craftingTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125785_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/copyAndUpdate (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125788_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cross (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125790_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/plant (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125792_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fletchingTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125795_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/singleSlot (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125798_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/plant (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125800_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/rail (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125802_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/rail (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125804_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/wool (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125806_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/stem (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125808_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/crop (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125810_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/pattern (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125812_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/particle (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125814_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fan (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125816_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/torch (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125818_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/column (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125820_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layer0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125822_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cubeTop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125824_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/logColumn (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125826_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cubeBottomTop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125828_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cubeBottomTopWithWall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125830_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/columnWithWall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125832_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/door (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125834_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/particle (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125836_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fire0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125838_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fire1 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125840_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/lantern (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125842_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/torch (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125844_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/commandBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125846_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/orientableCube (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125848_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/orientableCubeOnlyTop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125850_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/orientableCubeSameEnds (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125852_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/top (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176477_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/copySlot (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176480_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/putForced (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176483_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/door (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176486_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/wool (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176488_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cauldron (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_181476_ (Lnet/minecraft/world/level/block/Block;Z)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/candleCake (Lnet/minecraft/world/level/block/Block;Z)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_236350_ (Z)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/sculkShrieker (Z)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_245168_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/TextureMapping/lambda$getBlockTexture$0 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/TextureMapping/m_245971_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_246624_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/customParticle (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_247647_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/TextureMapping/lambda$getItemTexture$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/TextureMapping/m_266401_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layered (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_267703_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layered (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_272143_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/flowerbed (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_278163_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/pottedAzalea (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_278174_ (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/snifferEgg (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureSlot/ ()V net/minecraft/data/models/model/TextureSlot/ ()V +MD: net/minecraft/data/models/model/TextureSlot/ (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)V net/minecraft/data/models/model/TextureSlot/ (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)V +MD: net/minecraft/data/models/model/TextureSlot/m_125897_ ()Ljava/lang/String; net/minecraft/data/models/model/TextureSlot/getId ()Ljava/lang/String; +MD: net/minecraft/data/models/model/TextureSlot/m_125898_ (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureSlot; net/minecraft/data/models/model/TextureSlot/create (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureSlot; +MD: net/minecraft/data/models/model/TextureSlot/m_125900_ (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureSlot; net/minecraft/data/models/model/TextureSlot/create (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureSlot; +MD: net/minecraft/data/models/model/TextureSlot/m_125903_ ()Lnet/minecraft/data/models/model/TextureSlot; net/minecraft/data/models/model/TextureSlot/getParent ()Lnet/minecraft/data/models/model/TextureSlot; +MD: net/minecraft/data/models/model/TextureSlot/toString ()Ljava/lang/String; net/minecraft/data/models/model/TextureSlot/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/model/TexturedModel/ ()V net/minecraft/data/models/model/TexturedModel/ ()V +MD: net/minecraft/data/models/model/TexturedModel/ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/model/TexturedModel/ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/model/TexturedModel/m_125932_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/TexturedModel/getTemplate ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/TexturedModel/m_125933_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel/createWithSuffix (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel/m_125937_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel/create (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel/m_125940_ (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel/updateTextures (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel/m_125942_ (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/model/TexturedModel$Provider; net/minecraft/data/models/model/TexturedModel/createDefault (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/model/TexturedModel$Provider; +MD: net/minecraft/data/models/model/TexturedModel/m_125945_ (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel/lambda$createDefault$0 (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel/m_125949_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel/createAllSame (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel/m_125951_ ()Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TexturedModel/getMapping ()Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125952_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel$Provider/createWithSuffix (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125956_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel$Provider/create (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125959_ (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel$Provider; net/minecraft/data/models/model/TexturedModel$Provider/updateTexture (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel$Provider; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125961_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel$Provider/lambda$updateTexture$0 (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125964_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel$Provider/get (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/recipes/CraftingRecipeBuilder/ ()V net/minecraft/data/recipes/CraftingRecipeBuilder/ ()V +MD: net/minecraft/data/recipes/CraftingRecipeBuilder/m_245179_ (Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/data/recipes/CraftingRecipeBuilder/determineBookCategory (Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/data/recipes/CraftingRecipeBuilder$1/ ()V net/minecraft/data/recipes/CraftingRecipeBuilder$1/ ()V +MD: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/ (Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/ (Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/FinishedRecipe/m_125966_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/FinishedRecipe/serializeRecipe ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/FinishedRecipe/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/FinishedRecipe/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/FinishedRecipe/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/FinishedRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/FinishedRecipe/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/FinishedRecipe/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/FinishedRecipe/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/FinishedRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/FinishedRecipe/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/FinishedRecipe/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/RecipeBuilder/ ()V net/minecraft/data/recipes/RecipeBuilder/ ()V +MD: net/minecraft/data/recipes/RecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/RecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/RecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/RecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/RecipeBuilder/m_176493_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/RecipeBuilder/getDefaultRecipeId (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/RecipeBuilder/m_176498_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/RecipeBuilder/save (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/RecipeBuilder/m_176500_ (Ljava/util/function/Consumer;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeBuilder/save (Ljava/util/function/Consumer;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeCategory/ ()V net/minecraft/data/recipes/RecipeCategory/ ()V +MD: net/minecraft/data/recipes/RecipeCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/recipes/RecipeCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeCategory/m_245241_ ()[Lnet/minecraft/data/recipes/RecipeCategory; net/minecraft/data/recipes/RecipeCategory/$values ()[Lnet/minecraft/data/recipes/RecipeCategory; +MD: net/minecraft/data/recipes/RecipeCategory/m_247710_ ()Ljava/lang/String; net/minecraft/data/recipes/RecipeCategory/getFolderName ()Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeCategory; net/minecraft/data/recipes/RecipeCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeCategory; +MD: net/minecraft/data/recipes/RecipeCategory/values ()[Lnet/minecraft/data/recipes/RecipeCategory; net/minecraft/data/recipes/RecipeCategory/values ()[Lnet/minecraft/data/recipes/RecipeCategory; +MD: net/minecraft/data/recipes/RecipeProvider/ ()V net/minecraft/data/recipes/RecipeProvider/ ()V +MD: net/minecraft/data/recipes/RecipeProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/recipes/RecipeProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_125977_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/has (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_125979_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/insideOf (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_126002_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/woodFromLogs (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126006_ (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;I)V net/minecraft/data/recipes/RecipeProvider/cookRecipes (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126011_ ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/inventoryTrigger ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_126021_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/woodenBoat (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126073_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/bedFromPlanksAndWool (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126081_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/banner (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126085_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stainedGlassFromGlassAndDye (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126089_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stainedGlassPaneFromStainedGlass (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126093_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stainedGlassPaneFromGlassPaneAndDye (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126097_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/coloredTerracottaFromTerracottaAndDye (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126101_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/concretePowder (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176517_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getConversionRecipeName (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176520_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/has (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_176523_ (Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; net/minecraft/data/recipes/RecipeProvider/getBaseBlock (Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/recipes/RecipeProvider/m_176526_ (Lnet/minecraft/data/BlockFamily;Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/recipes/RecipeProvider/lambda$generateRecipes$8 (Lnet/minecraft/data/BlockFamily;Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176542_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/candle (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176551_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oneToOneConversionRecipe (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176556_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;I)V net/minecraft/data/recipes/RecipeProvider/oneToOneConversionRecipe (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176580_ (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V net/minecraft/data/recipes/RecipeProvider/generateRecipes (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176598_ (Lnet/minecraft/data/recipes/RecipeBuilder;Lnet/minecraft/data/BlockFamily$Variant;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/lambda$generateRecipes$6 (Lnet/minecraft/data/recipes/RecipeBuilder;Lnet/minecraft/data/BlockFamily$Variant;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176602_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getHasName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176610_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/RecipeProvider/waxRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176622_ (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V net/minecraft/data/recipes/RecipeProvider/lambda$generateForEnabledBlockFamilies$3 (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176632_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getItemName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176637_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$22 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176644_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getSimpleRecipeName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176656_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getSmeltingRecipeName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176658_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/buttonBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176668_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getBlastingRecipeName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176670_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/doorBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176673_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$19 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176676_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/lambda$generateRecipes$7 (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176678_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/fenceBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176684_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/fenceGateBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176687_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$17 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176690_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/pressurePlate (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176697_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$15 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176707_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$13 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176710_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/stairBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176713_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$12 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176716_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/carpet (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176720_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/trapdoorBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176726_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/signBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176732_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$9 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176739_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/smeltingResultFromBase (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_206406_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/has (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/RecipeProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/RecipeProvider/m_236371_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/chestBoat (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_244773_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$18 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244774_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$21 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244775_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/recipes/RecipeProvider/lambda$waxRecipes$5 (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_244776_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$23 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244777_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$11 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244779_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$14 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244780_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/data/BlockFamily;)Z net/minecraft/data/recipes/RecipeProvider/lambda$generateForEnabledBlockFamilies$2 (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/data/BlockFamily;)Z +MD: net/minecraft/data/recipes/RecipeProvider/m_244781_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$16 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244782_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$10 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244783_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$20 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_245200_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/RecipeProvider/buildRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245261_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipesRecipesWithCustomUnpacking (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245412_ (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oreBlasting (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245792_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/RecipeProvider/cutBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_245809_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oreCooking (Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245864_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/wallBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_245931_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/polished (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246075_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipesWithCustomPacking (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246222_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/chiseled (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246272_ (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oreSmelting (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246382_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/wall (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246451_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/RecipeProvider/chiseledBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_246630_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V net/minecraft/data/recipes/RecipeProvider/netheriteSmithing (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246658_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/slab (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246977_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/hangingSign (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247051_ (Ljava/util/function/Consumer;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/recipes/RecipeProvider/generateForEnabledBlockFamilies (Ljava/util/function/Consumer;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247059_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/cut (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247174_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/polishedBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_247239_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/mosaicBuilder (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247298_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/RecipeProvider/stonecutterResultFromBase (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247347_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/pressurePlateBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_247368_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipes (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247434_ (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V net/minecraft/data/recipes/RecipeProvider/simpleCookingRecipe (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247540_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/twoByTwoPacker (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247552_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/slabBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_247600_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stonecutterResultFromBase (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247655_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipes (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_252625_ (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/recipes/FinishedRecipe;)V net/minecraft/data/recipes/RecipeProvider/lambda$run$0 (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/recipes/FinishedRecipe;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_252626_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/RecipeProvider/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/RecipeProvider/m_253240_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement$Builder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/RecipeProvider/buildAdvancement (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement$Builder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/RecipeProvider/m_257424_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V net/minecraft/data/recipes/RecipeProvider/planksFromLogs (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_257929_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V net/minecraft/data/recipes/RecipeProvider/planksFromLog (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_257994_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/threeByThreePacker (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_258049_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/threeByThreePacker (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_266438_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/copySmithingTemplate (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_266564_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;)V net/minecraft/data/recipes/RecipeProvider/copySmithingTemplate (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_284421_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/RecipeProvider/trimSmithing (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_287806_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)Z net/minecraft/data/recipes/RecipeProvider/lambda$colorBlockWithDye$4 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/data/recipes/RecipeProvider/m_289596_ (Ljava/util/function/Consumer;Ljava/util/List;Ljava/util/List;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/colorBlockWithDye (Ljava/util/function/Consumer;Ljava/util/List;Ljava/util/List;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/ShapedRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126124_ (Ljava/lang/Character;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/define (Ljava/lang/Character;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126127_ (Ljava/lang/Character;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/define (Ljava/lang/Character;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126130_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/pattern (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapedRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126143_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapedRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/ShapedRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_206416_ (Ljava/lang/Character;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/define (Ljava/lang/Character;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_245327_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/shaped (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_246608_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/shaped (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_271710_ (Z)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/showNotification (Z)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Z)V net/minecraft/data/recipes/ShapedRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Z)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/ShapedRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/ShapelessRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapelessRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126184_ (Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126186_ (Lnet/minecraft/world/item/crafting/Ingredient;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/item/crafting/Ingredient;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126207_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapelessRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126209_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126211_ (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/ShapelessRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_206419_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_245498_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/shapeless (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_246517_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/shapeless (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;FILnet/minecraft/world/item/crafting/RecipeSerializer;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;FILnet/minecraft/world/item/crafting/RecipeSerializer;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126265_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_245681_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/blasting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246122_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/determineBlastingRecipeCategory (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246159_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/smoking (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246179_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/smelting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246784_ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/determineRecipeCategory (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_247020_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/campfireCooking (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_247292_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/determineSmeltingRecipeCategory (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_247607_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/generic (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;FILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;FILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/SingleItemRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SingleItemRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126329_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SingleItemRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/SingleItemRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_245264_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/stonecutting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_246944_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/stonecutting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;ILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;ILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266260_ (Ljava/util/function/Consumer;Ljava/lang/String;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/save (Ljava/util/function/Consumer;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266305_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266371_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266439_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; net/minecraft/data/recipes/SmithingTransformRecipeBuilder/unlocks (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266555_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; net/minecraft/data/recipes/SmithingTransformRecipeBuilder/smithing (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/equals (Ljava/lang/Object;)Z net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265855_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265903_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/addition ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265962_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/type ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265972_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/result ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266002_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/template ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266011_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266094_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266112_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/base ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/hashCode ()I net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/hashCode ()I +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/toString ()Ljava/lang/String; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266182_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; net/minecraft/data/recipes/SmithingTrimRecipeBuilder/smithingTrim (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266331_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; net/minecraft/data/recipes/SmithingTrimRecipeBuilder/unlocks (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266403_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266593_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/equals (Ljava/lang/Object;)Z net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265865_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/template ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265882_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265961_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265963_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266016_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/addition ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266032_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/base ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266055_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/type ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/hashCode ()I net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/hashCode ()I +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/toString ()Ljava/lang/String; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;)V net/minecraft/data/recipes/SpecialRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;)V +MD: net/minecraft/data/recipes/SpecialRecipeBuilder/m_126359_ (Ljava/util/function/Consumer;Ljava/lang/String;)V net/minecraft/data/recipes/SpecialRecipeBuilder/save (Ljava/util/function/Consumer;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/SpecialRecipeBuilder/m_245676_ (Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SpecialRecipeBuilder; net/minecraft/data/recipes/SpecialRecipeBuilder/special (Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SpecialRecipeBuilder; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/ (Lnet/minecraft/data/recipes/SpecialRecipeBuilder;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/lang/String;)V net/minecraft/data/recipes/SpecialRecipeBuilder$1/ (Lnet/minecraft/data/recipes/SpecialRecipeBuilder;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SpecialRecipeBuilder$1/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SpecialRecipeBuilder$1/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SpecialRecipeBuilder$1/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SpecialRecipeBuilder$1/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/packs/BundleRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/recipes/packs/BundleRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/recipes/packs/BundleRecipeProvider/m_245200_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/packs/BundleRecipeProvider/buildRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/ ()V net/minecraft/data/recipes/packs/VanillaRecipeProvider/ ()V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/recipes/packs/VanillaRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/packs/VanillaRecipeProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_245200_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/packs/VanillaRecipeProvider/buildRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_284142_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/packs/VanillaRecipeProvider/lambda$buildRecipes$0 (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_284166_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/packs/VanillaRecipeProvider/lambda$smithingTrims$1 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_284239_ ()Ljava/util/Map; net/minecraft/data/recipes/packs/VanillaRecipeProvider/smithingTrims ()Ljava/util/Map; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/ ()V net/minecraft/data/registries/RegistriesDatapackGenerator/ ()V +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/registries/RegistriesDatapackGenerator/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_254918_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/Optional; net/minecraft/data/registries/RegistriesDatapackGenerator/dumpRegistryCap (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/Optional; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_254950_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_254960_ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpValue$6 (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255112_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255115_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/HolderLookup$RegistryLookup;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpRegistryCap$5 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/HolderLookup$RegistryLookup;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255177_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpRegistryCap$4 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255283_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/dumpValue (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255291_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/stream/Stream; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$run$0 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/stream/Stream; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255356_ (Lnet/minecraft/data/PackOutput$PathProvider;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/Holder$Reference;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpRegistryCap$3 (Lnet/minecraft/data/PackOutput$PathProvider;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/Holder$Reference;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_6055_ ()Ljava/lang/String; net/minecraft/data/registries/RegistriesDatapackGenerator/getName ()Ljava/lang/String; +MD: net/minecraft/data/registries/VanillaRegistries/ ()V net/minecraft/data/registries/VanillaRegistries/ ()V +MD: net/minecraft/data/registries/VanillaRegistries/ ()V net/minecraft/data/registries/VanillaRegistries/ ()V +MD: net/minecraft/data/registries/VanillaRegistries/m_254911_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$0 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_254975_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z net/minecraft/data/registries/VanillaRegistries/validatePlacedFeature (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z +MD: net/minecraft/data/registries/VanillaRegistries/m_254994_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$3 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255044_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$2 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255148_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/registries/VanillaRegistries/validateThatAllBiomeFeaturesHaveBiomeFilter (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255281_ (Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$1 (Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255371_ ()Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/registries/VanillaRegistries/createLookup ()Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/registries/VanillaRegistries/m_271867_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderLookup;)V net/minecraft/data/registries/VanillaRegistries/validateThatAllBiomeFeaturesHaveBiomeFilter (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderLookup;)V +MD: net/minecraft/data/structures/NbtToSnbt/ ()V net/minecraft/data/structures/NbtToSnbt/ ()V +MD: net/minecraft/data/structures/NbtToSnbt/ (Lnet/minecraft/data/PackOutput;Ljava/util/Collection;)V net/minecraft/data/structures/NbtToSnbt/ (Lnet/minecraft/data/PackOutput;Ljava/util/Collection;)V +MD: net/minecraft/data/structures/NbtToSnbt/m_126429_ (Ljava/nio/file/Path;)Z net/minecraft/data/structures/NbtToSnbt/lambda$run$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/data/structures/NbtToSnbt/m_126435_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/data/structures/NbtToSnbt/getName (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/data/structures/NbtToSnbt/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_236377_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/structures/NbtToSnbt/writeSnbt (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/structures/NbtToSnbt/m_236381_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/data/structures/NbtToSnbt/convertStructure (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/data/structures/NbtToSnbt/m_252627_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252628_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$3 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252629_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/structures/NbtToSnbt/lambda$run$5 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/structures/NbtToSnbt/m_252630_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252631_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$4 (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252632_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/data/structures/NbtToSnbt/lambda$run$1 (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/data/structures/NbtToSnbt/m_6055_ ()Ljava/lang/String; net/minecraft/data/structures/NbtToSnbt/getName ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt/ ()V net/minecraft/data/structures/SnbtToNbt/ ()V +MD: net/minecraft/data/structures/SnbtToNbt/ (Lnet/minecraft/data/PackOutput;Ljava/lang/Iterable;)V net/minecraft/data/structures/SnbtToNbt/ (Lnet/minecraft/data/PackOutput;Ljava/lang/Iterable;)V +MD: net/minecraft/data/structures/SnbtToNbt/m_126460_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/SnbtToNbt/applyFilters (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/structures/SnbtToNbt/m_126463_ (Ljava/nio/file/Path;)Z net/minecraft/data/structures/SnbtToNbt/lambda$run$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/data/structures/SnbtToNbt/m_126465_ (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/data/structures/SnbtToNbt$TaskResult; net/minecraft/data/structures/SnbtToNbt/readStructure (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/data/structures/SnbtToNbt$TaskResult; +MD: net/minecraft/data/structures/SnbtToNbt/m_126468_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt/getName (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt/m_126475_ (Lnet/minecraft/data/structures/SnbtToNbt$Filter;)Lnet/minecraft/data/structures/SnbtToNbt; net/minecraft/data/structures/SnbtToNbt/addFilter (Lnet/minecraft/data/structures/SnbtToNbt$Filter;)Lnet/minecraft/data/structures/SnbtToNbt; +MD: net/minecraft/data/structures/SnbtToNbt/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_236393_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/structures/SnbtToNbt$TaskResult;Ljava/nio/file/Path;)V net/minecraft/data/structures/SnbtToNbt/storeStructureIfChanged (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/structures/SnbtToNbt$TaskResult;Ljava/nio/file/Path;)V +MD: net/minecraft/data/structures/SnbtToNbt/m_252633_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/lambda$run$2 (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_252634_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/lambda$run$3 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_252635_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/lambda$run$4 (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_252636_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V net/minecraft/data/structures/SnbtToNbt/lambda$run$1 (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V +MD: net/minecraft/data/structures/SnbtToNbt/m_252637_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/structures/SnbtToNbt/lambda$run$5 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/structures/SnbtToNbt/m_6055_ ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt/getName ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt$Filter/m_6392_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/SnbtToNbt$Filter/apply (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/structures/SnbtToNbt$StructureConversionException/ (Ljava/nio/file/Path;Ljava/lang/Throwable;)V net/minecraft/data/structures/SnbtToNbt$StructureConversionException/ (Ljava/nio/file/Path;Ljava/lang/Throwable;)V +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/ (Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V net/minecraft/data/structures/SnbtToNbt$TaskResult/ (Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/equals (Ljava/lang/Object;)Z net/minecraft/data/structures/SnbtToNbt$TaskResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126482_ ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt$TaskResult/name ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126483_ ()[B net/minecraft/data/structures/SnbtToNbt$TaskResult/payload ()[B +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126484_ ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt$TaskResult/snbtPayload ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126485_ ()Lcom/google/common/hash/HashCode; net/minecraft/data/structures/SnbtToNbt$TaskResult/hash ()Lcom/google/common/hash/HashCode; +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/hashCode ()I net/minecraft/data/structures/SnbtToNbt$TaskResult/hashCode ()I +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/toString ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt$TaskResult/toString ()Ljava/lang/String; +MD: net/minecraft/data/structures/StructureUpdater/ ()V net/minecraft/data/structures/StructureUpdater/ ()V +MD: net/minecraft/data/structures/StructureUpdater/ ()V net/minecraft/data/structures/StructureUpdater/ ()V +MD: net/minecraft/data/structures/StructureUpdater/m_176822_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/StructureUpdater/update (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/structures/StructureUpdater/m_6392_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/StructureUpdater/apply (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/tags/BannerPatternTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/BannerPatternTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/BannerPatternTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/BannerPatternTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/BiomeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/BiomeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/BiomeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/BiomeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/CatVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/CatVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/CatVariantTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/CatVariantTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/DamageTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/DamageTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/DamageTypeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/DamageTypeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/EntityTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/EntityTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/EntityTypeTagsProvider/m_255200_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/EntityTypeTagsProvider/lambda$new$0 (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/EntityTypeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/EntityTypeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/FluidTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/FluidTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/FluidTagsProvider/m_255019_ (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/FluidTagsProvider/lambda$new$0 (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/FluidTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/FluidTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/GameEventTagsProvider/ ()V net/minecraft/data/tags/GameEventTagsProvider/ ()V +MD: net/minecraft/data/tags/GameEventTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/GameEventTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/GameEventTagsProvider/m_255151_ (Lnet/minecraft/world/level/gameevent/GameEvent;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/GameEventTagsProvider/lambda$new$0 (Lnet/minecraft/world/level/gameevent/GameEvent;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/GameEventTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/GameEventTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/InstrumentTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/InstrumentTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/InstrumentTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/InstrumentTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/m_206424_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider/tag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/m_206424_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider/tag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/ (Lnet/minecraft/tags/TagBuilder;Ljava/util/function/Function;)V net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/ (Lnet/minecraft/tags/TagBuilder;Ljava/util/function/Function;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_206428_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/addTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_206428_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/addTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_255179_ ([Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/add ([Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_255245_ (Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/add (Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/ItemTagsProvider/m_206421_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V net/minecraft/data/tags/ItemTagsProvider/copy (Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/data/tags/ItemTagsProvider/m_255417_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/ItemTagsProvider/lambda$new$0 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274036_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; net/minecraft/data/tags/ItemTagsProvider/lambda$createContentsProvider$2 (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274037_ (Lnet/minecraft/data/tags/TagsProvider$TagLookup;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V net/minecraft/data/tags/ItemTagsProvider/lambda$createContentsProvider$3 (Lnet/minecraft/data/tags/TagsProvider$TagLookup;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/data/tags/ItemTagsProvider/m_274038_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/ItemTagsProvider/lambda$new$1 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274039_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/ItemTagsProvider/lambda$createContentsProvider$4 (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274574_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/ItemTagsProvider/createContentsProvider ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/PaintingVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/PaintingVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/PaintingVariantTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/PaintingVariantTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/PoiTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/PoiTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/PoiTypeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/PoiTypeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/StructureTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/StructureTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/StructureTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/StructureTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/TagsProvider/ ()V net/minecraft/data/tags/TagsProvider/ ()V +MD: net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/TagsProvider/m_206424_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider/tag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_236441_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/data/tags/TagsProvider/lambda$getOrCreateRawBuilder$8 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/data/tags/TagsProvider/m_236451_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/tags/TagBuilder; net/minecraft/data/tags/TagsProvider/getOrCreateRawBuilder (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/data/tags/TagsProvider/m_252638_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/lambda$run$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_254780_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/data/tags/TagsProvider/lambda$run$2 (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/data/tags/TagsProvider/m_254781_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/lambda$run$5 (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_274040_ (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/TagsProvider/lambda$createContentsProvider$11 (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/TagsProvider/m_274041_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/tags/TagEntry;)Z net/minecraft/data/tags/TagsProvider/lambda$run$4 (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/tags/TagEntry;)Z +MD: net/minecraft/data/tags/TagsProvider/m_274042_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/data/tags/TagsProvider/lambda$contentsGetter$9 (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/data/tags/TagsProvider/m_274043_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/tags/TagsProvider$1CombinedData;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/tags/TagsProvider/lambda$run$7 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/tags/TagsProvider$1CombinedData;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/tags/TagsProvider/m_274044_ (Lnet/minecraft/data/tags/TagsProvider$1CombinedData;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/data/tags/TagsProvider/lambda$run$3 (Lnet/minecraft/data/tags/TagsProvider$1CombinedData;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/data/tags/TagsProvider/m_274045_ (Ljava/lang/Void;)Lnet/minecraft/data/tags/TagsProvider$TagLookup; net/minecraft/data/tags/TagsProvider/lambda$contentsGetter$10 (Ljava/lang/Void;)Lnet/minecraft/data/tags/TagsProvider$TagLookup; +MD: net/minecraft/data/tags/TagsProvider/m_274046_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/data/tags/TagsProvider$1CombinedData; net/minecraft/data/tags/TagsProvider/lambda$run$1 (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/data/tags/TagsProvider$1CombinedData; +MD: net/minecraft/data/tags/TagsProvider/m_274426_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/contentsGetter ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_274574_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/createContentsProvider ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_275785_ (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/TagsProvider/lambda$run$0 (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/TagsProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/tags/TagsProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/tags/TagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/TagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)V net/minecraft/data/tags/TagsProvider$1CombinedData/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)V +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/equals (Ljava/lang/Object;)Z net/minecraft/data/tags/TagsProvider$1CombinedData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273819_ ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; net/minecraft/data/tags/TagsProvider$1CombinedData/parent ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273893_ ()Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/TagsProvider$1CombinedData/contents ()Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/hashCode ()I net/minecraft/data/tags/TagsProvider$1CombinedData/hashCode ()I +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/toString ()Ljava/lang/String; net/minecraft/data/tags/TagsProvider$1CombinedData/toString ()Ljava/lang/String; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/ (Lnet/minecraft/tags/TagBuilder;)V net/minecraft/data/tags/TagsProvider$TagAppender/ (Lnet/minecraft/tags/TagBuilder;)V +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_176839_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/addOptional (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_176841_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/addOptionalTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_206428_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/addTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_211101_ ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/add ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_255204_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/add (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagLookup/m_274455_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/data/tags/TagsProvider$TagLookup/contains (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/data/tags/TagsProvider$TagLookup/m_274467_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/data/tags/TagsProvider$TagLookup/lambda$empty$0 (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/data/tags/TagsProvider$TagLookup/m_274566_ ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; net/minecraft/data/tags/TagsProvider$TagLookup/empty ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/VanillaBlockTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/m_255382_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/VanillaBlockTagsProvider/lambda$new$0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/m_283987_ (Lnet/minecraft/world/level/block/Block;)Z net/minecraft/data/tags/VanillaBlockTagsProvider/lambda$addTags$1 (Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/VanillaBlockTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/VanillaItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/VanillaItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/VanillaItemTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/VanillaItemTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/WorldPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/WorldPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/WorldPresetTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/WorldPresetTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V +MD: net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V +MD: net/minecraft/data/worldgen/AncientCityStructurePieces/m_255174_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/AncientCityStructurePieces/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/AncientCityStructurePools/ ()V net/minecraft/data/worldgen/AncientCityStructurePools/ ()V +MD: net/minecraft/data/worldgen/AncientCityStructurePools/m_255273_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/AncientCityStructurePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionBridgePools/ ()V net/minecraft/data/worldgen/BastionBridgePools/ ()V +MD: net/minecraft/data/worldgen/BastionBridgePools/m_255231_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionBridgePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionHoglinStablePools/ ()V net/minecraft/data/worldgen/BastionHoglinStablePools/ ()V +MD: net/minecraft/data/worldgen/BastionHoglinStablePools/m_255342_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionHoglinStablePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionHousingUnitsPools/ ()V net/minecraft/data/worldgen/BastionHousingUnitsPools/ ()V +MD: net/minecraft/data/worldgen/BastionHousingUnitsPools/m_255349_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionHousingUnitsPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionPieces/ ()V net/minecraft/data/worldgen/BastionPieces/ ()V +MD: net/minecraft/data/worldgen/BastionPieces/ ()V net/minecraft/data/worldgen/BastionPieces/ ()V +MD: net/minecraft/data/worldgen/BastionPieces/m_255086_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionPieces/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionSharedPools/ ()V net/minecraft/data/worldgen/BastionSharedPools/ ()V +MD: net/minecraft/data/worldgen/BastionSharedPools/m_255140_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionSharedPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionTreasureRoomPools/ ()V net/minecraft/data/worldgen/BastionTreasureRoomPools/ ()V +MD: net/minecraft/data/worldgen/BastionTreasureRoomPools/m_255358_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionTreasureRoomPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/ ()V net/minecraft/data/worldgen/BiomeDefaultFeatures/ ()V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126680_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSavannaTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126682_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addShatteredSavannaTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126684_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMountainTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126688_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126692_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBadlandsTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126694_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSnowyTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126696_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126698_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSavannaGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126700_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addShatteredSavannaGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126702_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSavannaExtraGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126704_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBadlandGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126706_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addForestFlowers (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126708_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addForestGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126710_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSwampVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126712_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMushroomFieldVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126714_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addPlainVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126716_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDesertVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126718_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addGiantTaigaVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126720_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultFlowers (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126722_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addWarmFlowers (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126724_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126726_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addTaigaGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126728_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addPlainGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126730_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultMushrooms (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126734_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/farmAnimals (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126736_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;II)V net/minecraft/data/worldgen/BiomeDefaultFeatures/warmOceanSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;II)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126740_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;III)V net/minecraft/data/worldgen/BiomeDefaultFeatures/oceanSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;III)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126745_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126747_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBadlandExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126751_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDesertExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126753_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSwampExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126755_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDesertExtraDecoration (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126757_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addFossilDecoration (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126759_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addColdOceanExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126761_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultSeagrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126763_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLukeWarmKelp (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126765_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultSprings (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126767_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addIcebergs (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126769_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBlueIce (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126771_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSurfaceFreezing (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126773_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addNetherDefaultOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126775_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addAncientDebris (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126788_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/commonSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126792_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/plainsSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126796_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/snowySpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126800_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/desertSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126804_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/mooshroomSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126806_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultMonsterRoom (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126808_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/baseJungleSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126810_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultUndergroundVariety (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126812_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/endSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126814_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126816_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addExtraGold (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126818_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addExtraEmeralds (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126820_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addInfestedStone (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126822_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultSoftDisks (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126824_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSwampClayDisk (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126826_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMossyStoneBlock (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126828_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addFerns (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126834_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLightBambooVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126836_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBambooVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126838_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addTaigaTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126840_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addWaterTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126842_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBirchTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126844_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addOtherBirchTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126846_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addTallBirchTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176850_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLushCavesVegetationFeatures (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176852_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLushCavesSpecialOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176857_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultCrystalFormations (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176859_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/caveSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176863_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDripstone (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194716_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMountainForestTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194718_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMeadowVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194720_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultCarversAndLakes (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194722_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Z)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Z)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194725_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IIIZ)V net/minecraft/data/worldgen/BiomeDefaultFeatures/monsters (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IIIZ)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194731_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addFrozenSprings (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194733_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/dripstoneCavesSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194735_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addRareBerryBushes (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194737_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addCommonBerryBushes (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194739_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addGroveTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198927_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSparseJungleTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198929_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleMelons (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198931_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSparseJungleMelons (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198933_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleVines (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_236466_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMangroveSwampVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_236468_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSculk (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_236470_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMangroveSwampDisks (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_272148_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addCherryGroveVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BootstapContext/m_255042_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/data/worldgen/BootstapContext/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/data/worldgen/BootstapContext/m_255272_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/data/worldgen/BootstapContext/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/data/worldgen/BootstapContext/m_255420_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; net/minecraft/data/worldgen/BootstapContext/lookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/data/worldgen/Carvers/ ()V net/minecraft/data/worldgen/Carvers/ ()V +MD: net/minecraft/data/worldgen/Carvers/ ()V net/minecraft/data/worldgen/Carvers/ ()V +MD: net/minecraft/data/worldgen/Carvers/m_254873_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/Carvers/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/Carvers/m_254992_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/Carvers/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/DesertVillagePools/ ()V net/minecraft/data/worldgen/DesertVillagePools/ ()V +MD: net/minecraft/data/worldgen/DesertVillagePools/ ()V net/minecraft/data/worldgen/DesertVillagePools/ ()V +MD: net/minecraft/data/worldgen/DesertVillagePools/m_255365_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/DesertVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/DimensionTypes/ ()V net/minecraft/data/worldgen/DimensionTypes/ ()V +MD: net/minecraft/data/worldgen/DimensionTypes/m_236473_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/DimensionTypes/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/NoiseData/ ()V net/minecraft/data/worldgen/NoiseData/ ()V +MD: net/minecraft/data/worldgen/NoiseData/ ()V net/minecraft/data/worldgen/NoiseData/ ()V +MD: net/minecraft/data/worldgen/NoiseData/m_236475_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/NoiseData/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/NoiseData/m_236477_ (Lnet/minecraft/data/worldgen/BootstapContext;ILnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/data/worldgen/NoiseData/registerBiomeNoises (Lnet/minecraft/data/worldgen/BootstapContext;ILnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/data/worldgen/NoiseData/m_255316_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;ID[D)V net/minecraft/data/worldgen/NoiseData/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;ID[D)V +MD: net/minecraft/data/worldgen/PillagerOutpostPools/ ()V net/minecraft/data/worldgen/PillagerOutpostPools/ ()V +MD: net/minecraft/data/worldgen/PillagerOutpostPools/ ()V net/minecraft/data/worldgen/PillagerOutpostPools/ ()V +MD: net/minecraft/data/worldgen/PillagerOutpostPools/m_255390_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/PillagerOutpostPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/PlainVillagePools/ ()V net/minecraft/data/worldgen/PlainVillagePools/ ()V +MD: net/minecraft/data/worldgen/PlainVillagePools/ ()V net/minecraft/data/worldgen/PlainVillagePools/ ()V +MD: net/minecraft/data/worldgen/PlainVillagePools/m_255172_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/PlainVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/Pools/ ()V net/minecraft/data/worldgen/Pools/ ()V +MD: net/minecraft/data/worldgen/Pools/ ()V net/minecraft/data/worldgen/Pools/ ()V +MD: net/minecraft/data/worldgen/Pools/m_254871_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/Pools/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/Pools/m_255152_ (Lnet/minecraft/data/worldgen/BootstapContext;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)V net/minecraft/data/worldgen/Pools/register (Lnet/minecraft/data/worldgen/BootstapContext;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)V +MD: net/minecraft/data/worldgen/Pools/m_255181_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/Pools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/ProcessorLists/ ()V net/minecraft/data/worldgen/ProcessorLists/ ()V +MD: net/minecraft/data/worldgen/ProcessorLists/ ()V net/minecraft/data/worldgen/ProcessorLists/ ()V +MD: net/minecraft/data/worldgen/ProcessorLists/m_254888_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/ProcessorLists/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/ProcessorLists/m_254991_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Ljava/util/List;)V net/minecraft/data/worldgen/ProcessorLists/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Ljava/util/List;)V +MD: net/minecraft/data/worldgen/ProcessorLists/m_255337_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/ProcessorLists/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/ProcessorLists/m_280251_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor; net/minecraft/data/worldgen/ProcessorLists/trailsArchyLootProcessor (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor; +MD: net/minecraft/data/worldgen/SavannaVillagePools/ ()V net/minecraft/data/worldgen/SavannaVillagePools/ ()V +MD: net/minecraft/data/worldgen/SavannaVillagePools/ ()V net/minecraft/data/worldgen/SavannaVillagePools/ ()V +MD: net/minecraft/data/worldgen/SavannaVillagePools/m_254944_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/SavannaVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/SnowyVillagePools/ ()V net/minecraft/data/worldgen/SnowyVillagePools/ ()V +MD: net/minecraft/data/worldgen/SnowyVillagePools/ ()V net/minecraft/data/worldgen/SnowyVillagePools/ ()V +MD: net/minecraft/data/worldgen/SnowyVillagePools/m_255311_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/SnowyVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/StructureSets/m_255117_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/StructureSets/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/Structures/ ()V net/minecraft/data/worldgen/Structures/ ()V +MD: net/minecraft/data/worldgen/Structures/m_236550_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride; net/minecraft/data/worldgen/Structures/lambda$bootstrap$1 (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride; +MD: net/minecraft/data/worldgen/Structures/m_236554_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; net/minecraft/data/worldgen/Structures/lambda$bootstrap$0 (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/data/worldgen/Structures/m_255028_ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/data/worldgen/Structures/structure (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/data/worldgen/Structures/m_255131_ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/data/worldgen/Structures/structure (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/data/worldgen/Structures/m_255238_ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/data/worldgen/Structures/structure (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/data/worldgen/Structures/m_255324_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/Structures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/SurfaceRuleData/ ()V net/minecraft/data/worldgen/SurfaceRuleData/ ()V +MD: net/minecraft/data/worldgen/SurfaceRuleData/ ()V net/minecraft/data/worldgen/SurfaceRuleData/ ()V +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194807_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/overworld ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194808_ (D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/data/worldgen/SurfaceRuleData/surfaceNoiseAbove (D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194810_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/makeStateRule (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194812_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/nether ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194813_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/end ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_198378_ (I)[Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/lambda$overworldLike$0 (I)[Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_198380_ (ZZZ)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/overworldLike (ZZZ)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_238362_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/air ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/TaigaVillagePools/ ()V net/minecraft/data/worldgen/TaigaVillagePools/ ()V +MD: net/minecraft/data/worldgen/TaigaVillagePools/ ()V net/minecraft/data/worldgen/TaigaVillagePools/ ()V +MD: net/minecraft/data/worldgen/TaigaVillagePools/m_255354_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/TaigaVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/TerrainProvider/ ()V net/minecraft/data/worldgen/TerrainProvider/ ()V +MD: net/minecraft/data/worldgen/TerrainProvider/ ()V net/minecraft/data/worldgen/TerrainProvider/ ()V +MD: net/minecraft/data/worldgen/TerrainProvider/m_236566_ (F)F net/minecraft/data/worldgen/TerrainProvider/calculateMountainRidgeZeroContinentalnessPoint (F)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236568_ (FFF)F net/minecraft/data/worldgen/TerrainProvider/mountainContinentalness (FFF)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236572_ (FFFF)F net/minecraft/data/worldgen/TerrainProvider/calculateSlope (FFFF)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236577_ (Lnet/minecraft/util/ToFloatFunction;FFFFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/ridgeSpline (Lnet/minecraft/util/ToFloatFunction;FFFFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236586_ (Lnet/minecraft/util/ToFloatFunction;FLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildWeirdnessJaggednessSpline (Lnet/minecraft/util/ToFloatFunction;FLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236590_ (Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildMountainRidgeSplineWithPoints (Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236595_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFFFZZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildErosionOffsetSpline (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFFFZZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236607_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildRidgeJaggednessSpline (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236613_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildErosionJaggednessSpline (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236622_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/getErosionFactor (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236629_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/overworldFactor (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236635_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/overworldOffset (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236640_ (F)F net/minecraft/data/worldgen/TerrainProvider/lambda$static$2 (F)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236642_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/overworldJaggedness (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236648_ (F)F net/minecraft/data/worldgen/TerrainProvider/lambda$static$1 (F)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236650_ (F)F net/minecraft/data/worldgen/TerrainProvider/lambda$static$0 (F)F +MD: net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V +MD: net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V +MD: net/minecraft/data/worldgen/TrailRuinsStructurePools/m_276974_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/TrailRuinsStructurePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/VillagePools/ ()V net/minecraft/data/worldgen/VillagePools/ ()V +MD: net/minecraft/data/worldgen/VillagePools/m_254971_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/VillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/biome/BiomeData/ ()V net/minecraft/data/worldgen/biome/BiomeData/ ()V +MD: net/minecraft/data/worldgen/biome/BiomeData/m_272174_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/biome/BiomeData/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/biome/EndBiomes/ ()V net/minecraft/data/worldgen/biome/EndBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_194824_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/baseEndBiome (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255113_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/endBarrens (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255123_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/smallEndIslands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255137_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/endHighlands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255243_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/endMidlands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255372_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/theEnd (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/ ()V net/minecraft/data/worldgen/biome/NetherBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194831_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/netherWastes (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194832_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/soulSandValley (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194833_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/basaltDeltas (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194834_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/crimsonForest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194835_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/warpedForest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194843_ (F)I net/minecraft/data/worldgen/biome/OverworldBiomes/calculateSkyColor (F)I +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194869_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/biome/OverworldBiomes/globalOverworldGeneration (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194871_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IILnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/baseOcean (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IILnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194876_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/oldGrowthTaiga (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194878_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/savanna (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194881_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/plains (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194885_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/darkForest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194886_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/windsweptHills (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194888_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/beach (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194891_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/forest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194895_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/dripstoneCaves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194896_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/badlands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194899_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/coldOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194902_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/desert (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194905_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/lukeWarmOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194908_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/frozenOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194910_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/swamp (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194911_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/taiga (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194914_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/river (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194917_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/jaggedPeaks (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194918_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/frozenPeaks (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194920_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/snowySlopes (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194921_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/grove (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194922_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/lushCaves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_236670_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/mangroveSwamp (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_236671_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/deepDark (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_254954_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/sparseJungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_254955_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/warmOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_254986_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; net/minecraft/data/worldgen/biome/OverworldBiomes/baseOceanGeneration (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255074_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/jungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255251_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/theVoid (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255279_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/bambooJungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255280_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/mushroomFields (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255326_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/ocean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255416_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/stonyPeaks (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_264144_ (ZFFLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/biome (ZFFLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_271953_ (ZFFIILjava/lang/Integer;Ljava/lang/Integer;Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/biome (ZFFIILjava/lang/Integer;Ljava/lang/Integer;Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_272060_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/meadowOrCherryGrove (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_284525_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;FZZZLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/baseJungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;FZZZLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/features/AquaticFeatures/ ()V net/minecraft/data/worldgen/features/AquaticFeatures/ ()V +MD: net/minecraft/data/worldgen/features/AquaticFeatures/ ()V net/minecraft/data/worldgen/features/AquaticFeatures/ ()V +MD: net/minecraft/data/worldgen/features/AquaticFeatures/m_255426_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/AquaticFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/CaveFeatures/ ()V net/minecraft/data/worldgen/features/CaveFeatures/ ()V +MD: net/minecraft/data/worldgen/features/CaveFeatures/ ()V net/minecraft/data/worldgen/features/CaveFeatures/ ()V +MD: net/minecraft/data/worldgen/features/CaveFeatures/m_206466_ ()Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/features/CaveFeatures/makeSmallDripleaf ()Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/features/CaveFeatures/m_206467_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/features/CaveFeatures/makeDripleaf (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/features/CaveFeatures/m_255015_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/CaveFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/EndFeatures/ ()V net/minecraft/data/worldgen/features/EndFeatures/ ()V +MD: net/minecraft/data/worldgen/features/EndFeatures/ ()V net/minecraft/data/worldgen/features/EndFeatures/ ()V +MD: net/minecraft/data/worldgen/features/EndFeatures/m_255085_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/EndFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/ ()V net/minecraft/data/worldgen/features/FeatureUtils/ ()V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_195008_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchPredicate (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206470_ (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simpleRandomPatchConfiguration (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206473_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchConfiguration (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206476_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchConfiguration (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206480_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchConfiguration (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_254925_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/FeatureUtils/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_254977_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V net/minecraft/data/worldgen/features/FeatureUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_255061_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;)V net/minecraft/data/worldgen/features/FeatureUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_255087_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/features/FeatureUtils/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V +MD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V +MD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/m_254957_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/MiscOverworldFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/NetherFeatures/ ()V net/minecraft/data/worldgen/features/NetherFeatures/ ()V +MD: net/minecraft/data/worldgen/features/NetherFeatures/ ()V net/minecraft/data/worldgen/features/NetherFeatures/ ()V +MD: net/minecraft/data/worldgen/features/NetherFeatures/m_255076_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/NetherFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/OreFeatures/ ()V net/minecraft/data/worldgen/features/OreFeatures/ ()V +MD: net/minecraft/data/worldgen/features/OreFeatures/ ()V net/minecraft/data/worldgen/features/OreFeatures/ ()V +MD: net/minecraft/data/worldgen/features/OreFeatures/m_255127_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/OreFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/PileFeatures/ ()V net/minecraft/data/worldgen/features/PileFeatures/ ()V +MD: net/minecraft/data/worldgen/features/PileFeatures/ ()V net/minecraft/data/worldgen/features/PileFeatures/ ()V +MD: net/minecraft/data/worldgen/features/PileFeatures/m_255052_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/PileFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/TreeFeatures/ ()V net/minecraft/data/worldgen/features/TreeFeatures/ ()V +MD: net/minecraft/data/worldgen/features/TreeFeatures/ ()V net/minecraft/data/worldgen/features/TreeFeatures/ ()V +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195145_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createOak ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195146_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;IIII)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createStraightBlobTree (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;IIII)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195153_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createBirch ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195154_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createSuperBirch ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195155_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createJungleTree ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195156_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createFancyOak ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_255340_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/TreeFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_271891_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/cherry ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/VegetationFeatures/ ()V net/minecraft/data/worldgen/features/VegetationFeatures/ ()V +MD: net/minecraft/data/worldgen/features/VegetationFeatures/ ()V net/minecraft/data/worldgen/features/VegetationFeatures/ ()V +MD: net/minecraft/data/worldgen/features/VegetationFeatures/m_195202_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/VegetationFeatures/grassPatch (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/VegetationFeatures/m_255402_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/VegetationFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/m_195233_ (I)Ljava/util/List; net/minecraft/data/worldgen/placement/AquaticPlacements/seagrassPlacement (I)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/m_255366_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/AquaticPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/CavePlacements/ ()V net/minecraft/data/worldgen/placement/CavePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/CavePlacements/ ()V net/minecraft/data/worldgen/placement/CavePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/CavePlacements/m_254844_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/CavePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/EndPlacements/ ()V net/minecraft/data/worldgen/placement/EndPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/EndPlacements/ ()V net/minecraft/data/worldgen/placement/EndPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/EndPlacements/m_255215_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/EndPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/m_255422_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/MiscOverworldPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/NetherPlacements/ ()V net/minecraft/data/worldgen/placement/NetherPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/NetherPlacements/ ()V net/minecraft/data/worldgen/placement/NetherPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/NetherPlacements/m_255430_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/NetherPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/OrePlacements/ ()V net/minecraft/data/worldgen/placement/OrePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/OrePlacements/ ()V net/minecraft/data/worldgen/placement/OrePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_195343_ (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/OrePlacements/commonOrePlacement (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_195346_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/OrePlacements/orePlacement (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_195349_ (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/OrePlacements/rareOrePlacement (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_255119_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/OrePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/ ()V net/minecraft/data/worldgen/placement/PlacementUtils/ ()V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/ ()V net/minecraft/data/worldgen/placement/PlacementUtils/ ()V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_195364_ (IFI)Lnet/minecraft/world/level/levelgen/placement/PlacementModifier; net/minecraft/data/worldgen/placement/PlacementUtils/countExtra (IFI)Lnet/minecraft/world/level/levelgen/placement/PlacementModifier; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206493_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; net/minecraft/data/worldgen/placement/PlacementUtils/filteredByBlockSurvival (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206495_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/onlyWhenEmpty (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206498_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/filtered (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206502_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/inlinePlaced (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206506_ (Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/inlinePlaced (Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206517_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementFilter; net/minecraft/data/worldgen/placement/PlacementUtils/isEmpty ()Lnet/minecraft/world/level/levelgen/placement/PlacementFilter; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_254943_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/data/worldgen/placement/PlacementUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_255070_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/placement/PlacementUtils/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_255199_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/PlacementUtils/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_255206_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)V net/minecraft/data/worldgen/placement/PlacementUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)V +MD: net/minecraft/data/worldgen/placement/TreePlacements/ ()V net/minecraft/data/worldgen/placement/TreePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/TreePlacements/ ()V net/minecraft/data/worldgen/placement/TreePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/TreePlacements/m_254989_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/TreePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195474_ (I)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/worldSurfaceSquaredWithCount (I)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195476_ (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/getMushroomPlacement (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195479_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/treePlacement (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195481_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/treePlacement (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195484_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/data/worldgen/placement/VegetationPlacements/treePlacementBase (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_254976_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/VegetationPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/VillagePlacements/ ()V net/minecraft/data/worldgen/placement/VillagePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VillagePlacements/ ()V net/minecraft/data/worldgen/placement/VillagePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VillagePlacements/m_254998_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/VillagePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/gametest/framework/AfterBatch/m_177036_ ()Ljava/lang/String; net/minecraft/gametest/framework/AfterBatch/batch ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/BeforeBatch/m_177037_ ()Ljava/lang/String; net/minecraft/gametest/framework/BeforeBatch/batch ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/ExhaustedAttemptsException/ (IILnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ExhaustedAttemptsException/ (IILnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTest/m_177042_ ()I net/minecraft/gametest/framework/GameTest/timeoutTicks ()I +MD: net/minecraft/gametest/framework/GameTest/m_177043_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTest/batch ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTest/m_177044_ ()I net/minecraft/gametest/framework/GameTest/rotationSteps ()I +MD: net/minecraft/gametest/framework/GameTest/m_177045_ ()Z net/minecraft/gametest/framework/GameTest/required ()Z +MD: net/minecraft/gametest/framework/GameTest/m_177046_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTest/template ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTest/m_177047_ ()J net/minecraft/gametest/framework/GameTest/setupTicks ()J +MD: net/minecraft/gametest/framework/GameTest/m_177048_ ()I net/minecraft/gametest/framework/GameTest/attempts ()I +MD: net/minecraft/gametest/framework/GameTest/m_177049_ ()I net/minecraft/gametest/framework/GameTest/requiredSuccesses ()I +MD: net/minecraft/gametest/framework/GameTestAssertException/ (Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestAssertException/ (Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestAssertPosException/ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;J)V net/minecraft/gametest/framework/GameTestAssertPosException/ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/gametest/framework/GameTestAssertPosException/getMessage ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestAssertPosException/getMessage ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestAssertPosException/m_127496_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestAssertPosException/getMessageToShowAtBlock ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestAssertPosException/m_127497_ ()Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestAssertPosException/getAbsolutePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestAssertPosException/m_177055_ ()Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestAssertPosException/getRelativePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestBatch/ (Ljava/lang/String;Ljava/util/Collection;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/GameTestBatch/ (Ljava/lang/String;Ljava/util/Collection;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/GameTestBatch/m_127546_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestBatch/getName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestBatch/m_127547_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestBatch/runBeforeBatchFunction (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestBatch/m_127549_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestBatch/getTestFunctions ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestBatch/m_177063_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestBatch/runAfterBatchFunction (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/ ()V net/minecraft/gametest/framework/GameTestBatchRunner/ ()V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)V net/minecraft/gametest/framework/GameTestBatchRunner/ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_127569_ ()Ljava/util/List; net/minecraft/gametest/framework/GameTestBatchRunner/getTestInfos ()Ljava/util/List; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_127570_ (I)V net/minecraft/gametest/framework/GameTestBatchRunner/runBatch (I)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_127583_ ()V net/minecraft/gametest/framework/GameTestBatchRunner/start ()V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177065_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestBatch;)Lcom/mojang/datafixers/util/Pair; net/minecraft/gametest/framework/GameTestBatchRunner/lambda$new$1 (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestBatch;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177069_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/TestFunction;)Lnet/minecraft/gametest/framework/GameTestInfo; net/minecraft/gametest/framework/GameTestBatchRunner/lambda$new$0 (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/TestFunction;)Lnet/minecraft/gametest/framework/GameTestInfo; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177073_ (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; net/minecraft/gametest/framework/GameTestBatchRunner/lambda$new$2 (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177075_ (Ljava/util/Collection;)Ljava/util/Map; net/minecraft/gametest/framework/GameTestBatchRunner/createStructuresForBatch (Ljava/util/Collection;)Ljava/util/Map; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177077_ (Ljava/util/Map;Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner/lambda$runBatch$3 (Ljava/util/Map;Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/ (Lnet/minecraft/gametest/framework/GameTestBatchRunner;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/gametest/framework/GameTestBatch;I)V net/minecraft/gametest/framework/GameTestBatchRunner$1/ (Lnet/minecraft/gametest/framework/GameTestBatchRunner;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/gametest/framework/GameTestBatch;I)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner$1/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_177088_ ()V net/minecraft/gametest/framework/GameTestBatchRunner$1/testCompleted ()V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner$1/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner$1/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestEvent/ (Ljava/lang/Long;Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestEvent/ (Ljava/lang/Long;Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestEvent/m_177094_ (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; net/minecraft/gametest/framework/GameTestEvent/create (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; +MD: net/minecraft/gametest/framework/GameTestEvent/m_177097_ (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; net/minecraft/gametest/framework/GameTestEvent/create (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; +MD: net/minecraft/gametest/framework/GameTestHelper/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestHelper/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177100_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/gametest/framework/GameTestHelper/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177101_ (I)V net/minecraft/gametest/framework/GameTestHelper/setDayTime (I)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177103_ (III)V net/minecraft/gametest/framework/GameTestHelper/pressButton (III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177107_ (IIILnet/minecraft/world/level/block/Block;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (IIILnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177112_ (IIILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (IIILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177117_ (ILjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/succeedOnTickWhen (ILjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177120_ (JLnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertAtTickTimeContainerEmpty (JLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177123_ (JLnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertAtTickTimeContainerContains (JLnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177127_ (JLjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/runAtTickTime (JLjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177130_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$killAllEntitiesOfClass$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177132_ (Lnet/minecraft/world/entity/Entity;III)V net/minecraft/gametest/framework/GameTestHelper/assertEntityInstancePresent (Lnet/minecraft/world/entity/Entity;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177137_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInstancePresent$12 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177140_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityInstancePresent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177143_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestAssertPosException; net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInstancePresent$13 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestAssertPosException; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177147_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityProperty (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177152_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityProperty (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177156_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177158_ (Lnet/minecraft/world/entity/EntityType;DDD)V net/minecraft/gametest/framework/GameTestHelper/assertEntityTouching (Lnet/minecraft/world/entity/EntityType;DDD)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177163_ (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177168_ (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177173_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177176_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177179_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177183_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/gametest/framework/GameTestHelper/makeAboutToDrown (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177185_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestHelper/walkTo (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177189_ (Lnet/minecraft/world/item/Item;FFF)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/gametest/framework/GameTestHelper/spawnItem (Lnet/minecraft/world/item/Item;FFF)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177194_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V net/minecraft/gametest/framework/GameTestHelper/assertItemEntityPresent (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177198_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;DI)V net/minecraft/gametest/framework/GameTestHelper/assertItemEntityCountIs (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;DI)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177203_ (Lnet/minecraft/world/level/block/Block;III)V net/minecraft/gametest/framework/GameTestHelper/assertBlockPresent (Lnet/minecraft/world/level/block/Block;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177208_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockPresent (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177211_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$pressButton$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177213_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockPresent$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177224_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertSameBlockStates (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177227_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/gametest/framework/GameTestHelper/absoluteVec (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177229_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityNotTouching$15 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177232_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/gametest/framework/GameTestHelper/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177234_ (Lnet/minecraft/core/BlockPos;J)V net/minecraft/gametest/framework/GameTestHelper/pulseRedstone (Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177237_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityData (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177242_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertContainerContains (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177245_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177248_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockNotPresent$6 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177252_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177255_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockProperty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177259_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockProperty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177264_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$assertSameBlockStates$18 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177268_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertSameBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177271_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertBlock (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177275_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestHelper/assertBlock (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177279_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/succeedIf (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177281_ (Ljava/lang/Runnable;J)V net/minecraft/gametest/framework/GameTestHelper/lambda$onEachTick$26 (Ljava/lang/Runnable;J)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177284_ (Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/fail (Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177286_ (Ljava/lang/String;Lnet/minecraft/world/entity/Entity;)V net/minecraft/gametest/framework/GameTestHelper/fail (Ljava/lang/String;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177289_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/fail (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177292_ (Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/GameTestHelper/forEveryBlockInStructure (Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177294_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlock$9 (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177301_ ()V net/minecraft/gametest/framework/GameTestHelper/killAllEntities ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177302_ (III)V net/minecraft/gametest/framework/GameTestHelper/pullLever (III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177306_ (JLjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/runAfterDelay (JLjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177309_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotPresent (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177311_ (Lnet/minecraft/world/entity/EntityType;DDD)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotTouching (Lnet/minecraft/world/entity/EntityType;DDD)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177316_ (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177321_ (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177326_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177329_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177332_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)V net/minecraft/gametest/framework/GameTestHelper/lambda$walkTo$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177336_ (Lnet/minecraft/world/level/block/Block;III)V net/minecraft/gametest/framework/GameTestHelper/assertBlockNotPresent (Lnet/minecraft/world/level/block/Block;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177341_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockNotPresent (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177344_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityTouching$14 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177347_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/gametest/framework/GameTestHelper/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177349_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityData (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177354_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/lambda$assertAtTickTimeContainerContains$19 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177357_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockState (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177361_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhen (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177363_ (Ljava/lang/Runnable;J)V net/minecraft/gametest/framework/GameTestHelper/lambda$failIfEver$25 (Ljava/lang/Runnable;J)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177366_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockProperty$11 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177368_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/gametest/framework/GameTestHelper/makeMockPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177369_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177374_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177377_ (Lnet/minecraft/world/level/block/Block;III)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenBlockPresent (Lnet/minecraft/world/level/block/Block;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177382_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenBlockPresent (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177385_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/pressButton (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177387_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenEntityData$21 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177392_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/failIf (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177394_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlock$8 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177396_ ()V net/minecraft/gametest/framework/GameTestHelper/setNight ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177397_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177402_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177405_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenBlockPresent$7 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177408_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/useBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177410_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/failIfEver (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177412_ ()V net/minecraft/gametest/framework/GameTestHelper/succeed ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177413_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177418_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177421_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/pullLever (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177423_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/onEachTick (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177425_ ()Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestHelper/startSequence ()Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177426_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityNotPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177431_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityNotPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177434_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/destroyBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177436_ ()J net/minecraft/gametest/framework/GameTestHelper/getTick ()J +MD: net/minecraft/gametest/framework/GameTestHelper/m_177437_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenEntityNotPresent$23 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177440_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertContainerEmpty (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177442_ ()V net/minecraft/gametest/framework/GameTestHelper/ensureSingleFinalCheck ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177443_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenEntityPresent$22 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177446_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/randomTick (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177448_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/GameTestHelper/getBounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177449_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestHelper/absolutePos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177451_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/GameTestHelper/getRelativeBounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177452_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestHelper/relativePos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177454_ ()Ljava/lang/Exception; net/minecraft/gametest/framework/GameTestHelper/lambda$failIf$24 ()Ljava/lang/Exception; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177455_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$assertAtTickTimeContainerEmpty$20 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177457_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestHelper/lambda$pressButton$3 ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177458_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$pulseRedstone$4 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_236774_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/gametest/framework/GameTestHelper/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/gametest/framework/GameTestHelper/m_236778_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V net/minecraft/gametest/framework/GameTestHelper/assertItemEntityNotPresent (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_238399_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)Ljava/util/List; net/minecraft/gametest/framework/GameTestHelper/getEntities (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)Ljava/util/List; +MD: net/minecraft/gametest/framework/GameTestHelper/m_239371_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;ID)V net/minecraft/gametest/framework/GameTestHelper/assertEntitiesPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;ID)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246336_ (ZLjava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertTrue (ZLjava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246385_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246440_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/gametest/framework/GameTestHelper/useBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246554_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/gametest/framework/GameTestHelper/makeMockSurvivalPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/gametest/framework/GameTestHelper/m_246755_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/gametest/framework/GameTestHelper/spawnItem (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_247203_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/gametest/framework/GameTestHelper/relativeVec (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/gametest/framework/GameTestHelper/m_260894_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/gametest/framework/GameTestHelper/useBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_261323_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/gametest/framework/GameTestHelper/placeAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_263446_ (Ljava/lang/Object;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInventoryContains$16 (Ljava/lang/Object;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_263447_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInventoryContains$17 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_263450_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityIsHolding (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_263477_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityInventoryContains (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_276723_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockProperty$10 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_277053_ (ZLjava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertFalse (ZLjava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_286046_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/gametest/framework/GameTestHelper/withLowHealth (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_287220_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/gametest/framework/GameTestHelper/makeMockServerPlayerInLevel ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/gametest/framework/GameTestHelper/m_289214_ (Ljava/lang/Class;)V net/minecraft/gametest/framework/GameTestHelper/killAllEntitiesOfClass (Ljava/lang/Class;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_289616_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Ljava/util/function/IntPredicate;Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestHelper/assertRedstoneSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Ljava/util/function/IntPredicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestHelper$1/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V net/minecraft/gametest/framework/GameTestHelper$1/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/gametest/framework/GameTestHelper$1/m_5833_ ()Z net/minecraft/gametest/framework/GameTestHelper$1/isSpectator ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$1/m_7500_ ()Z net/minecraft/gametest/framework/GameTestHelper$1/isCreative ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$2/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V net/minecraft/gametest/framework/GameTestHelper$2/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/gametest/framework/GameTestHelper$2/m_5833_ ()Z net/minecraft/gametest/framework/GameTestHelper$2/isSpectator ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$2/m_7500_ ()Z net/minecraft/gametest/framework/GameTestHelper$2/isCreative ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$2/m_7578_ ()Z net/minecraft/gametest/framework/GameTestHelper$2/isLocalPlayer ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$3/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/gametest/framework/GameTestHelper$3/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/gametest/framework/GameTestHelper$3/m_5833_ ()Z net/minecraft/gametest/framework/GameTestHelper$3/isSpectator ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$3/m_7500_ ()Z net/minecraft/gametest/framework/GameTestHelper$3/isCreative ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/ (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestInfo/ (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127616_ ()V net/minecraft/gametest/framework/GameTestInfo/startExecution ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127617_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestInfo/setStructureBlockPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127619_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/gametest/framework/GameTestInfo/spawnStructure (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127622_ (Ljava/lang/Throwable;)V net/minecraft/gametest/framework/GameTestInfo/fail (Ljava/lang/Throwable;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127624_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/addListener (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127628_ ()V net/minecraft/gametest/framework/GameTestInfo/tick ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127629_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/lambda$spawnStructure$4 (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127633_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestInfo/getTestName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127636_ ()Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestInfo/getStructureBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127637_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/gametest/framework/GameTestInfo/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127638_ ()Z net/minecraft/gametest/framework/GameTestInfo/hasSucceeded ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127639_ ()Z net/minecraft/gametest/framework/GameTestInfo/hasFailed ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127640_ ()Z net/minecraft/gametest/framework/GameTestInfo/hasStarted ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127641_ ()Z net/minecraft/gametest/framework/GameTestInfo/isDone ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127642_ ()Ljava/lang/Throwable; net/minecraft/gametest/framework/GameTestInfo/getError ()Ljava/lang/Throwable; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127643_ ()Z net/minecraft/gametest/framework/GameTestInfo/isRequired ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127644_ ()Z net/minecraft/gametest/framework/GameTestInfo/isOptional ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127645_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestInfo/getStructureName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127646_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/gametest/framework/GameTestInfo/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127648_ ()Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/GameTestInfo/getTestFunction ()Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127649_ ()V net/minecraft/gametest/framework/GameTestInfo/startTest ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127650_ ()V net/minecraft/gametest/framework/GameTestInfo/finish ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177470_ ()V net/minecraft/gametest/framework/GameTestInfo/tickInternal ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177471_ ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/gametest/framework/GameTestInfo/getStructureBlockEntity ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177472_ (JLjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestInfo/setRunAtTickTime (JLjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177475_ (Lnet/minecraft/gametest/framework/GameTestSequence;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tickInternal$3 (Lnet/minecraft/gametest/framework/GameTestSequence;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177477_ (Lnet/minecraft/gametest/framework/GameTestSequence;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tickInternal$2 (Lnet/minecraft/gametest/framework/GameTestSequence;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177479_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tick$1 (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177481_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tick$0 (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177483_ ()Lnet/minecraft/core/Vec3i; net/minecraft/gametest/framework/GameTestInfo/getStructureSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177484_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/GameTestInfo/getStructureBounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177485_ ()J net/minecraft/gametest/framework/GameTestInfo/getRunTime ()J +MD: net/minecraft/gametest/framework/GameTestInfo/m_177486_ ()V net/minecraft/gametest/framework/GameTestInfo/succeed ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177487_ ()V net/minecraft/gametest/framework/GameTestInfo/clearStructure ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177488_ ()J net/minecraft/gametest/framework/GameTestInfo/getTick ()J +MD: net/minecraft/gametest/framework/GameTestInfo/m_177489_ ()Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestInfo/createSequence ()Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177490_ ()I net/minecraft/gametest/framework/GameTestInfo/getTimeoutTicks ()I +MD: net/minecraft/gametest/framework/GameTestInfo/m_177491_ ()Z net/minecraft/gametest/framework/GameTestInfo/isFlaky ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_177492_ ()I net/minecraft/gametest/framework/GameTestInfo/maxAttempts ()I +MD: net/minecraft/gametest/framework/GameTestInfo/m_177493_ ()I net/minecraft/gametest/framework/GameTestInfo/requiredSuccesses ()I +MD: net/minecraft/gametest/framework/GameTestInfo/toString ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestInfo/toString ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestListener/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestListener/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestListener/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestListener/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestListener/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestListener/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/ ()V net/minecraft/gametest/framework/GameTestRegistry/ ()V +MD: net/minecraft/gametest/framework/GameTestRegistry/ ()V net/minecraft/gametest/framework/GameTestRegistry/ ()V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127658_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getAllTestFunctions ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127659_ (Ljava/lang/String;)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getTestFunctionsForClassName (Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127661_ (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z net/minecraft/gametest/framework/GameTestRegistry/lambda$findTestFunction$1 (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127664_ (Lnet/minecraft/gametest/framework/TestFunction;)V net/minecraft/gametest/framework/GameTestRegistry/rememberFailedTest (Lnet/minecraft/gametest/framework/TestFunction;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127666_ (Lnet/minecraft/gametest/framework/TestFunction;Ljava/lang/String;)Z net/minecraft/gametest/framework/GameTestRegistry/isTestFunctionPartOfClass (Lnet/minecraft/gametest/framework/TestFunction;Ljava/lang/String;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127669_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getAllTestClassNames ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127670_ (Ljava/lang/String;)Z net/minecraft/gametest/framework/GameTestRegistry/isTestClass (Ljava/lang/String;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127672_ (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z net/minecraft/gametest/framework/GameTestRegistry/lambda$getTestFunctionsForClassName$0 (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127675_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getLastFailedTests ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127676_ (Ljava/lang/String;)Ljava/util/function/Consumer; net/minecraft/gametest/framework/GameTestRegistry/getBeforeBatchFunction (Ljava/lang/String;)Ljava/util/function/Consumer; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127678_ ()V net/minecraft/gametest/framework/GameTestRegistry/forgetFailedTests ()V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127679_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/gametest/framework/GameTestRegistry/findTestFunction (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127681_ (Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/GameTestRegistry/getTestFunction (Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177501_ (Ljava/lang/Class;)V net/minecraft/gametest/framework/GameTestRegistry/register (Ljava/lang/Class;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177503_ (Ljava/lang/reflect/Method;)V net/minecraft/gametest/framework/GameTestRegistry/register (Ljava/lang/reflect/Method;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177505_ (Ljava/lang/reflect/Method;Ljava/lang/Class;Ljava/util/function/Function;Ljava/util/Map;)V net/minecraft/gametest/framework/GameTestRegistry/registerBatchFunction (Ljava/lang/reflect/Method;Ljava/lang/Class;Ljava/util/function/Function;Ljava/util/Map;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177510_ (Ljava/lang/reflect/Method;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestRegistry/lambda$turnMethodIntoConsumer$2 (Ljava/lang/reflect/Method;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177513_ (Ljava/lang/reflect/Method;)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/useTestGeneratorMethod (Ljava/lang/reflect/Method;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177515_ (Ljava/lang/reflect/Method;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/GameTestRegistry/turnMethodIntoTestFunction (Ljava/lang/reflect/Method;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177517_ (Ljava/lang/String;)Ljava/util/function/Consumer; net/minecraft/gametest/framework/GameTestRegistry/getAfterBatchFunction (Ljava/lang/String;)Ljava/util/function/Consumer; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177519_ (Ljava/lang/reflect/Method;)Ljava/util/function/Consumer; net/minecraft/gametest/framework/GameTestRegistry/turnMethodIntoConsumer (Ljava/lang/reflect/Method;)Ljava/util/function/Consumer; +MD: net/minecraft/gametest/framework/GameTestRunner/ ()V net/minecraft/gametest/framework/GameTestRunner/ ()V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127685_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestRunner/clearMarkers (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127694_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;I)V net/minecraft/gametest/framework/GameTestRunner/clearAllTests (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;I)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127724_ (Ljava/util/Collection;)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRunner/groupTestsIntoBatches (Ljava/util/Collection;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRunner/m_127726_ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRunner/runTestBatches (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRunner/m_127742_ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;)V net/minecraft/gametest/framework/GameTestRunner/runTest (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127752_ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRunner/runTests (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRunner/m_177527_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestRunner/lambda$clearAllTests$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_177530_ (Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/function/Consumer;Ljava/util/function/Consumer;Ljava/util/List;)Lnet/minecraft/gametest/framework/GameTestBatch; net/minecraft/gametest/framework/GameTestRunner/lambda$groupTestsIntoBatches$0 (Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/function/Consumer;Ljava/util/function/Consumer;Ljava/util/List;)Lnet/minecraft/gametest/framework/GameTestBatch; +MD: net/minecraft/gametest/framework/GameTestRunner/m_177536_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/gametest/framework/GameTestRunner/lambda$groupTestsIntoBatches$1 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/gametest/framework/GameTestRunner/m_177538_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/gametest/framework/GameTestRunner/lambda$clearAllTests$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/gametest/framework/GameTestSequence/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestSequence/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_127777_ (J)V net/minecraft/gametest/framework/GameTestSequence/tickAndContinue (J)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_127779_ (J)V net/minecraft/gametest/framework/GameTestSequence/tickAndFailIfNotComplete (J)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_127781_ (J)V net/minecraft/gametest/framework/GameTestSequence/tick (J)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177543_ ()V net/minecraft/gametest/framework/GameTestSequence/thenSucceed ()V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177544_ (I)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenIdle (I)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177546_ (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenExecuteAfter (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177549_ (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenWaitUntil (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177552_ (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenWaitUntil (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177554_ (Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestSequence/thenFail (Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177556_ (Lnet/minecraft/gametest/framework/GameTestSequence$Condition;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenTrigger$5 (Lnet/minecraft/gametest/framework/GameTestSequence$Condition;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177558_ ()Lnet/minecraft/gametest/framework/GameTestSequence$Condition; net/minecraft/gametest/framework/GameTestSequence/thenTrigger ()Lnet/minecraft/gametest/framework/GameTestSequence$Condition; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177559_ (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenExecuteFor (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177562_ (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenExecute (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177564_ (Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenFail$4 (Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177566_ ()V net/minecraft/gametest/framework/GameTestSequence/lambda$thenIdle$0 ()V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177567_ (ILjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenExecuteFor$3 (ILjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177570_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/executeWithoutFail (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177572_ (ILjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenExecuteAfter$2 (ILjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177575_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenExecute$1 (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence$Condition/ (Lnet/minecraft/gametest/framework/GameTestSequence;)V net/minecraft/gametest/framework/GameTestSequence$Condition/ (Lnet/minecraft/gametest/framework/GameTestSequence;)V +MD: net/minecraft/gametest/framework/GameTestSequence$Condition/m_177582_ ()V net/minecraft/gametest/framework/GameTestSequence$Condition/assertTriggeredThisTick ()V +MD: net/minecraft/gametest/framework/GameTestSequence$Condition/m_177583_ (J)V net/minecraft/gametest/framework/GameTestSequence$Condition/trigger (J)V +MD: net/minecraft/gametest/framework/GameTestServer/ ()V net/minecraft/gametest/framework/GameTestServer/ ()V +MD: net/minecraft/gametest/framework/GameTestServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_130012_ ()V net/minecraft/gametest/framework/GameTestServer/waitUntilNextTick ()V +MD: net/minecraft/gametest/framework/GameTestServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/gametest/framework/GameTestServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/gametest/framework/GameTestServer/m_177614_ (Lnet/minecraft/world/level/GameRules;)V net/minecraft/gametest/framework/GameTestServer/lambda$static$0 (Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_177624_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestServer/startTests (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_177628_ ()Z net/minecraft/gametest/framework/GameTestServer/haveTestsStarted ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_206606_ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestServer; net/minecraft/gametest/framework/GameTestServer/create (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestServer; +MD: net/minecraft/gametest/framework/GameTestServer/m_206612_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestServer/lambda$tickServer$4 (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_206614_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestServer/lambda$tickServer$3 (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_244785_ (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/LevelSettings;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/gametest/framework/GameTestServer/lambda$create$2 (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/LevelSettings;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/gametest/framework/GameTestServer/m_257120_ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/gametest/framework/GameTestServer/lambda$create$1 (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/gametest/framework/GameTestServer/m_5705_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/gametest/framework/GameTestServer/tickServer (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_6102_ ()Z net/minecraft/gametest/framework/GameTestServer/shouldInformAdmins ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6982_ ()Z net/minecraft/gametest/framework/GameTestServer/isDedicatedServer ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6983_ ()Z net/minecraft/gametest/framework/GameTestServer/shouldRconBroadcast ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6988_ ()V net/minecraft/gametest/framework/GameTestServer/onServerExit ()V +MD: net/minecraft/gametest/framework/GameTestServer/m_6992_ ()Z net/minecraft/gametest/framework/GameTestServer/isPublished ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6993_ ()Z net/minecraft/gametest/framework/GameTestServer/isCommandBlockEnabled ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6994_ ()Z net/minecraft/gametest/framework/GameTestServer/isEpollEnabled ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_7022_ ()I net/minecraft/gametest/framework/GameTestServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/gametest/framework/GameTestServer/m_7032_ ()I net/minecraft/gametest/framework/GameTestServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/gametest/framework/GameTestServer/m_7034_ ()I net/minecraft/gametest/framework/GameTestServer/getFunctionCompilationLevel ()I +MD: net/minecraft/gametest/framework/GameTestServer/m_7035_ ()Z net/minecraft/gametest/framework/GameTestServer/isHardcore ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_7038_ ()Z net/minecraft/gametest/framework/GameTestServer/initServer ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_7268_ (Lnet/minecraft/CrashReport;)V net/minecraft/gametest/framework/GameTestServer/onServerCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/gametest/framework/GameTestServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/gametest/framework/GameTestServer$1/ (Lnet/minecraft/gametest/framework/GameTestServer;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V net/minecraft/gametest/framework/GameTestServer$1/ (Lnet/minecraft/gametest/framework/GameTestServer;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V +MD: net/minecraft/gametest/framework/GameTestTicker/ ()V net/minecraft/gametest/framework/GameTestTicker/ ()V +MD: net/minecraft/gametest/framework/GameTestTicker/ ()V net/minecraft/gametest/framework/GameTestTicker/ ()V +MD: net/minecraft/gametest/framework/GameTestTicker/m_127787_ ()V net/minecraft/gametest/framework/GameTestTicker/clear ()V +MD: net/minecraft/gametest/framework/GameTestTicker/m_127788_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestTicker/add (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestTicker/m_127790_ ()V net/minecraft/gametest/framework/GameTestTicker/tick ()V +MD: net/minecraft/gametest/framework/GameTestTimeoutException/ (Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestTimeoutException/ (Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GlobalTestReporter/ ()V net/minecraft/gametest/framework/GlobalTestReporter/ ()V +MD: net/minecraft/gametest/framework/GlobalTestReporter/ ()V net/minecraft/gametest/framework/GlobalTestReporter/ ()V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177652_ ()V net/minecraft/gametest/framework/GlobalTestReporter/finish ()V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177653_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GlobalTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177655_ (Lnet/minecraft/gametest/framework/TestReporter;)V net/minecraft/gametest/framework/GlobalTestReporter/replaceWith (Lnet/minecraft/gametest/framework/TestReporter;)V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177657_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GlobalTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/ (Ljava/io/File;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/ (Ljava/io/File;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_142411_ ()V net/minecraft/gametest/framework/JUnitLikeTestReporter/finish ()V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_177666_ (Ljava/io/File;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/save (Ljava/io/File;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_177670_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)Lorg/w3c/dom/Element; net/minecraft/gametest/framework/JUnitLikeTestReporter/createTestCase (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)Lorg/w3c/dom/Element; +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/LogTestReporter/ ()V net/minecraft/gametest/framework/LogTestReporter/ ()V +MD: net/minecraft/gametest/framework/LogTestReporter/ ()V net/minecraft/gametest/framework/LogTestReporter/ ()V +MD: net/minecraft/gametest/framework/LogTestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/LogTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/LogTestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/LogTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/ (Ljava/util/Collection;)V net/minecraft/gametest/framework/MultipleTestTracker/ (Ljava/util/Collection;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/ ()V net/minecraft/gametest/framework/MultipleTestTracker/ ()V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127803_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getFailedRequiredCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127804_ (Ljava/lang/StringBuffer;Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker/lambda$getProgressBar$1 (Ljava/lang/StringBuffer;Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127807_ (Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/MultipleTestTracker/addFailureListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127809_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker/addTestToTrack (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127811_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/MultipleTestTracker/addListener (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127813_ (Lnet/minecraft/gametest/framework/GameTestListener;Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker/lambda$addListener$0 (Lnet/minecraft/gametest/framework/GameTestListener;Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127816_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getFailedOptionalCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127817_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getDoneCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127818_ ()Z net/minecraft/gametest/framework/MultipleTestTracker/hasFailedRequired ()Z +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127819_ ()Z net/minecraft/gametest/framework/MultipleTestTracker/hasFailedOptional ()Z +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127820_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getTotalCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127821_ ()Z net/minecraft/gametest/framework/MultipleTestTracker/isDone ()Z +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127822_ ()Ljava/lang/String; net/minecraft/gametest/framework/MultipleTestTracker/getProgressBar ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_177682_ ()Ljava/util/Collection; net/minecraft/gametest/framework/MultipleTestTracker/getFailedRequired ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_177683_ ()Ljava/util/Collection; net/minecraft/gametest/framework/MultipleTestTracker/getFailedOptional ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/MultipleTestTracker/toString ()Ljava/lang/String; net/minecraft/gametest/framework/MultipleTestTracker/toString ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/ (Lnet/minecraft/gametest/framework/MultipleTestTracker;Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/MultipleTestTracker$1/ (Lnet/minecraft/gametest/framework/MultipleTestTracker;Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker$1/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker$1/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker$1/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/ReportGameListener/ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/gametest/framework/GameTestTicker;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/ReportGameListener/ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/gametest/framework/GameTestTicker;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ReportGameListener/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177695_ ()V net/minecraft/gametest/framework/ReportGameListener/rerunTest ()V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177696_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/showRedBox (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177700_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/ChatFormatting;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/say (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/ChatFormatting;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177704_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/gametest/framework/ReportGameListener/lambda$say$1 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/gametest/framework/ReportGameListener/m_177706_ (Ljava/lang/String;Lnet/minecraft/ChatFormatting;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/gametest/framework/ReportGameListener/lambda$say$2 (Ljava/lang/String;Lnet/minecraft/ChatFormatting;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177710_ (Ljava/lang/String;ZLjava/lang/String;)Lnet/minecraft/world/item/ItemStack; net/minecraft/gametest/framework/ReportGameListener/createBook (Ljava/lang/String;ZLjava/lang/String;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/gametest/framework/ReportGameListener/m_177714_ (Ljava/lang/StringBuffer;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/lambda$createBook$0 (Ljava/lang/StringBuffer;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177719_ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/world/level/block/Block;)V net/minecraft/gametest/framework/ReportGameListener/spawnBeacon (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177722_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/reportPassed (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177725_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V net/minecraft/gametest/framework/ReportGameListener/reportFailure (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177730_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/visualizePassedTest (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177733_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V net/minecraft/gametest/framework/ReportGameListener/visualizeFailedTest (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177738_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/spawnLectern (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ReportGameListener/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ReportGameListener/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/StructureUtils/ ()V net/minecraft/gametest/framework/StructureUtils/ ()V +MD: net/minecraft/gametest/framework/StructureUtils/ ()V net/minecraft/gametest/framework/StructureUtils/ ()V +MD: net/minecraft/gametest/framework/StructureUtils/m_127835_ (I)Lnet/minecraft/world/level/block/Rotation; net/minecraft/gametest/framework/StructureUtils/getRotationForRotationSteps (I)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/gametest/framework/StructureUtils/m_127841_ (ILnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/clearBlock (ILnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127847_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/StructureUtils/getStructureBounds (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/StructureUtils/m_127849_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ILnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/clearSpaceForStructure (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ILnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127853_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/gametest/framework/StructureUtils/findStructureBlockContainingPos (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/gametest/framework/StructureUtils/m_127857_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/forceLoadChunks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127867_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/gametest/framework/StructureUtils/doesStructureContain (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/gametest/framework/StructureUtils/m_127875_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/addCommandBlockAndButtonToStartTest (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127880_ (Ljava/lang/String;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/gametest/framework/StructureUtils/getStructureTemplate (Ljava/lang/String;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/gametest/framework/StructureUtils/m_127883_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;ILnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/gametest/framework/StructureUtils/spawnStructure (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;ILnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/gametest/framework/StructureUtils/m_127890_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/gametest/framework/StructureUtils/createStructureBlock (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/gametest/framework/StructureUtils/m_127902_ (Ljava/nio/file/Path;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/gametest/framework/StructureUtils/tryLoadStructure (Ljava/nio/file/Path;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/gametest/framework/StructureUtils/m_127904_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/gametest/framework/StructureUtils/getStructureBoundingBox (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/gametest/framework/StructureUtils/m_127906_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/StructureUtils/findNearestStructureBlock (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/StructureUtils/m_127910_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Collection; net/minecraft/gametest/framework/StructureUtils/findStructureBlocks (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/StructureUtils/m_177745_ (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/StructureUtils/lambda$clearSpaceForStructure$2 (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_177749_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/StructureUtils/lambda$clearSpaceForStructure$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/StructureUtils/m_177751_ (Lnet/minecraft/world/level/block/Rotation;)I net/minecraft/gametest/framework/StructureUtils/getRotationStepsForRotation (Lnet/minecraft/world/level/block/Rotation;)I +MD: net/minecraft/gametest/framework/StructureUtils/m_177753_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/gametest/framework/StructureUtils/lambda$findStructureBlockContainingPos$4 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/gametest/framework/StructureUtils/m_177757_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)I net/minecraft/gametest/framework/StructureUtils/lambda$findNearestStructureBlock$5 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/gametest/framework/StructureUtils/m_177760_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/gametest/framework/StructureUtils/getStructureBoundingBox (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/gametest/framework/StructureUtils/m_177764_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/createNewEmptyStructureBlock (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_177772_ (Ljava/nio/file/Path;)V net/minecraft/gametest/framework/StructureUtils/lambda$main$1 (Ljava/nio/file/Path;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_177774_ (Ljava/nio/file/Path;)Z net/minecraft/gametest/framework/StructureUtils/lambda$main$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/gametest/framework/StructureUtils/main ([Ljava/lang/String;)V net/minecraft/gametest/framework/StructureUtils/main ([Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/StructureUtils$1/ ()V net/minecraft/gametest/framework/StructureUtils$1/ ()V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/ ()V net/minecraft/gametest/framework/TeamcityTestReporter/ ()V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/ ()V net/minecraft/gametest/framework/TeamcityTestReporter/ ()V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TeamcityTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TeamcityTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestClassNameArgument/ ()V net/minecraft/gametest/framework/TestClassNameArgument/ ()V +MD: net/minecraft/gametest/framework/TestClassNameArgument/ ()V net/minecraft/gametest/framework/TestClassNameArgument/ ()V +MD: net/minecraft/gametest/framework/TestClassNameArgument/getExamples ()Ljava/util/Collection; net/minecraft/gametest/framework/TestClassNameArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/TestClassNameArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/gametest/framework/TestClassNameArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/gametest/framework/TestClassNameArgument/m_127917_ ()Lnet/minecraft/gametest/framework/TestClassNameArgument; net/minecraft/gametest/framework/TestClassNameArgument/testClassName ()Lnet/minecraft/gametest/framework/TestClassNameArgument; +MD: net/minecraft/gametest/framework/TestClassNameArgument/m_127920_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/gametest/framework/TestClassNameArgument/getTestClassName (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestCommand/ ()V net/minecraft/gametest/framework/TestCommand/ ()V +MD: net/minecraft/gametest/framework/TestCommand/m_127929_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V net/minecraft/gametest/framework/TestCommand/runTest (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127933_ (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;Lnet/minecraft/ChatFormatting;)V net/minecraft/gametest/framework/TestCommand/say (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;Lnet/minecraft/ChatFormatting;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127940_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/TestCommand/lambda$runAllNearbyTests$25 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127944_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/gametest/framework/TestCommand/lambda$say$28 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/gametest/framework/TestCommand/m_127946_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/gametest/framework/TestCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127948_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$23 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_127950_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/gametest/framework/TestCommand/runNearbyTest (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/gametest/framework/TestCommand/m_127952_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/gametest/framework/TestCommand/clearAllTests (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/gametest/framework/TestCommand/m_127955_ (Lnet/minecraft/commands/CommandSourceStack;II)I net/minecraft/gametest/framework/TestCommand/runAllTests (Lnet/minecraft/commands/CommandSourceStack;II)I +MD: net/minecraft/gametest/framework/TestCommand/m_127959_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/gametest/framework/TestCommand/showPos (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/gametest/framework/TestCommand/m_127962_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;II)I net/minecraft/gametest/framework/TestCommand/runAllTestsInClass (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;II)I +MD: net/minecraft/gametest/framework/TestCommand/m_127967_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;III)I net/minecraft/gametest/framework/TestCommand/createNewStructure (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;III)I +MD: net/minecraft/gametest/framework/TestCommand/m_127973_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;II)V net/minecraft/gametest/framework/TestCommand/runTests (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;II)V +MD: net/minecraft/gametest/framework/TestCommand/m_127978_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/gametest/framework/TestFunction;I)I net/minecraft/gametest/framework/TestCommand/runTest (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/gametest/framework/TestFunction;I)I +MD: net/minecraft/gametest/framework/TestCommand/m_127982_ (Lnet/minecraft/commands/CommandSourceStack;ZII)I net/minecraft/gametest/framework/TestCommand/runLastFailedTests (Lnet/minecraft/commands/CommandSourceStack;ZII)I +MD: net/minecraft/gametest/framework/TestCommand/m_127987_ (Lnet/minecraft/ChatFormatting;Ljava/lang/String;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/gametest/framework/TestCommand/lambda$say$29 (Lnet/minecraft/ChatFormatting;Ljava/lang/String;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127991_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand/lambda$runTests$26 (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127993_ (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/TestCommand/runTestPreparation (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127996_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V net/minecraft/gametest/framework/TestCommand/showTestSummaryIfAllDone (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127999_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128001_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/gametest/framework/TestCommand/runAllNearbyTests (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128003_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)V net/minecraft/gametest/framework/TestCommand/say (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/TestCommand/m_128006_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128008_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/gametest/framework/TestCommand/exportNearestTestStructure (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128010_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/gametest/framework/TestCommand/exportTestStructure (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128013_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128015_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/gametest/framework/TestCommand/importTestStructure (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128018_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128020_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128022_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128024_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128026_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128028_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128030_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128032_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128034_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128036_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128038_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128040_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128042_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128044_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128046_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128048_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128050_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128052_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128054_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128056_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_287807_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/gametest/framework/TestCommand/lambda$say$27 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/gametest/framework/TestCommand/m_287808_ (Ljava/lang/String;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/gametest/framework/TestCommand/lambda$showPos$24 (Ljava/lang/String;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZLjava/util/function/Consumer;)V net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZLjava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZIILjava/util/function/Consumer;)V net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZIILjava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IJZLjava/util/function/Consumer;)V net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IJZLjava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/TestFunction/m_128075_ ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/getTestName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunction/m_128076_ (Lnet/minecraft/gametest/framework/GameTestHelper;)V net/minecraft/gametest/framework/TestFunction/run (Lnet/minecraft/gametest/framework/GameTestHelper;)V +MD: net/minecraft/gametest/framework/TestFunction/m_128078_ ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/getStructureName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunction/m_128079_ ()I net/minecraft/gametest/framework/TestFunction/getMaxTicks ()I +MD: net/minecraft/gametest/framework/TestFunction/m_128080_ ()Z net/minecraft/gametest/framework/TestFunction/isRequired ()Z +MD: net/minecraft/gametest/framework/TestFunction/m_128081_ ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/getBatchName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunction/m_128082_ ()J net/minecraft/gametest/framework/TestFunction/getSetupTicks ()J +MD: net/minecraft/gametest/framework/TestFunction/m_128083_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/gametest/framework/TestFunction/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/gametest/framework/TestFunction/m_177828_ ()Z net/minecraft/gametest/framework/TestFunction/isFlaky ()Z +MD: net/minecraft/gametest/framework/TestFunction/m_177829_ ()I net/minecraft/gametest/framework/TestFunction/getMaxAttempts ()I +MD: net/minecraft/gametest/framework/TestFunction/m_177830_ ()I net/minecraft/gametest/framework/TestFunction/getRequiredSuccesses ()I +MD: net/minecraft/gametest/framework/TestFunction/toString ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/toString ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunctionArgument/ ()V net/minecraft/gametest/framework/TestFunctionArgument/ ()V +MD: net/minecraft/gametest/framework/TestFunctionArgument/ ()V net/minecraft/gametest/framework/TestFunctionArgument/ ()V +MD: net/minecraft/gametest/framework/TestFunctionArgument/getExamples ()Ljava/util/Collection; net/minecraft/gametest/framework/TestFunctionArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/TestFunctionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/gametest/framework/TestFunctionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/gametest/framework/TestFunctionArgument/m_128088_ ()Lnet/minecraft/gametest/framework/TestFunctionArgument; net/minecraft/gametest/framework/TestFunctionArgument/testFunctionArgument ()Lnet/minecraft/gametest/framework/TestFunctionArgument; +MD: net/minecraft/gametest/framework/TestFunctionArgument/m_128091_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/TestFunctionArgument/getTestFunction (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/TestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestReporter/m_142411_ ()V net/minecraft/gametest/framework/TestReporter/finish ()V +MD: net/minecraft/gametest/framework/TestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/locale/Language/ ()V net/minecraft/locale/Language/ ()V +MD: net/minecraft/locale/Language/ ()V net/minecraft/locale/Language/ ()V +MD: net/minecraft/locale/Language/m_118919_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/locale/Language/getOrDefault (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/locale/Language/m_128107_ ()Lnet/minecraft/locale/Language; net/minecraft/locale/Language/getInstance ()Lnet/minecraft/locale/Language; +MD: net/minecraft/locale/Language/m_128108_ (Ljava/io/InputStream;Ljava/util/function/BiConsumer;)V net/minecraft/locale/Language/loadFromJson (Ljava/io/InputStream;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/locale/Language/m_128112_ (Ljava/util/List;)Ljava/util/List; net/minecraft/locale/Language/getVisualOrder (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/locale/Language/m_128114_ (Lnet/minecraft/locale/Language;)V net/minecraft/locale/Language/inject (Lnet/minecraft/locale/Language;)V +MD: net/minecraft/locale/Language/m_128118_ ()Lnet/minecraft/locale/Language; net/minecraft/locale/Language/loadDefault ()Lnet/minecraft/locale/Language; +MD: net/minecraft/locale/Language/m_280428_ (Ljava/util/function/BiConsumer;Ljava/lang/String;)V net/minecraft/locale/Language/parseTranslations (Ljava/util/function/BiConsumer;Ljava/lang/String;)V +MD: net/minecraft/locale/Language/m_5536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/locale/Language/getVisualOrder (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/locale/Language/m_6627_ ()Z net/minecraft/locale/Language/isDefaultRightToLeft ()Z +MD: net/minecraft/locale/Language/m_6722_ (Ljava/lang/String;)Z net/minecraft/locale/Language/has (Ljava/lang/String;)Z +MD: net/minecraft/locale/Language/m_6834_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/locale/Language/getOrDefault (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/locale/Language$1/ (Ljava/util/Map;)V net/minecraft/locale/Language$1/ (Ljava/util/Map;)V +MD: net/minecraft/locale/Language$1/m_118919_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/locale/Language$1/getOrDefault (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/locale/Language$1/m_128130_ (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/locale/Language$1/lambda$getVisualOrder$1 (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/locale/Language$1/m_177833_ (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/locale/Language$1/lambda$getVisualOrder$0 (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/locale/Language$1/m_5536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/locale/Language$1/getVisualOrder (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/locale/Language$1/m_6627_ ()Z net/minecraft/locale/Language$1/isDefaultRightToLeft ()Z +MD: net/minecraft/locale/Language$1/m_6722_ (Ljava/lang/String;)Z net/minecraft/locale/Language$1/has (Ljava/lang/String;)Z +MD: net/minecraft/nbt/ByteArrayTag/ ()V net/minecraft/nbt/ByteArrayTag/ ()V +MD: net/minecraft/nbt/ByteArrayTag/ (Ljava/util/List;)V net/minecraft/nbt/ByteArrayTag/ (Ljava/util/List;)V +MD: net/minecraft/nbt/ByteArrayTag/ ([B)V net/minecraft/nbt/ByteArrayTag/ ([B)V +MD: net/minecraft/nbt/ByteArrayTag/add (ILjava/lang/Object;)V net/minecraft/nbt/ByteArrayTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/ByteArrayTag/clear ()V net/minecraft/nbt/ByteArrayTag/clear ()V +MD: net/minecraft/nbt/ByteArrayTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ByteArrayTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ByteArrayTag/get (I)Ljava/lang/Object; net/minecraft/nbt/ByteArrayTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ByteArrayTag/get (I)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteArrayTag/get (I)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteArrayTag/hashCode ()I net/minecraft/nbt/ByteArrayTag/hashCode ()I +MD: net/minecraft/nbt/ByteArrayTag/m_128206_ (Ljava/util/List;)[B net/minecraft/nbt/ByteArrayTag/toArray (Ljava/util/List;)[B +MD: net/minecraft/nbt/ByteArrayTag/m_128227_ ()[B net/minecraft/nbt/ByteArrayTag/getAsByteArray ()[B +MD: net/minecraft/nbt/ByteArrayTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ByteArrayTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ByteArrayTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteArrayTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteArrayTag/m_263179_ ()I net/minecraft/nbt/ByteArrayTag/sizeInBytes ()I +MD: net/minecraft/nbt/ByteArrayTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ByteArrayTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ByteArrayTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ByteArrayTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ByteArrayTag/m_7060_ ()B net/minecraft/nbt/ByteArrayTag/getId ()B +MD: net/minecraft/nbt/ByteArrayTag/m_7264_ ()B net/minecraft/nbt/ByteArrayTag/getElementType ()B +MD: net/minecraft/nbt/ByteArrayTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ByteArrayTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ByteArrayTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ByteArrayTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ByteArrayTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/ByteArrayTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/ByteTag;)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/ByteTag;)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/ByteArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag/size ()I net/minecraft/nbt/ByteArrayTag/size ()I +MD: net/minecraft/nbt/ByteArrayTag/toString ()Ljava/lang/String; net/minecraft/nbt/ByteArrayTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteArrayTag$1/ ()V net/minecraft/nbt/ByteArrayTag$1/ ()V +MD: net/minecraft/nbt/ByteArrayTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/ByteArrayTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/ByteArrayTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteArrayTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteArrayTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ByteArrayTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteArrayTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ByteArrayTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteArrayTag; net/minecraft/nbt/ByteArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteArrayTag; +MD: net/minecraft/nbt/ByteTag/ ()V net/minecraft/nbt/ByteTag/ ()V +MD: net/minecraft/nbt/ByteTag/ (B)V net/minecraft/nbt/ByteTag/ (B)V +MD: net/minecraft/nbt/ByteTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ByteTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ByteTag/hashCode ()I net/minecraft/nbt/ByteTag/hashCode ()I +MD: net/minecraft/nbt/ByteTag/m_128266_ (B)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag/valueOf (B)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag/m_128273_ (Z)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag/valueOf (Z)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ByteTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ByteTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteTag/m_263179_ ()I net/minecraft/nbt/ByteTag/sizeInBytes ()I +MD: net/minecraft/nbt/ByteTag/m_6426_ ()Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag/copy ()Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ByteTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ByteTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ByteTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ByteTag/m_7046_ ()J net/minecraft/nbt/ByteTag/getAsLong ()J +MD: net/minecraft/nbt/ByteTag/m_7047_ ()I net/minecraft/nbt/ByteTag/getAsInt ()I +MD: net/minecraft/nbt/ByteTag/m_7053_ ()S net/minecraft/nbt/ByteTag/getAsShort ()S +MD: net/minecraft/nbt/ByteTag/m_7057_ ()F net/minecraft/nbt/ByteTag/getAsFloat ()F +MD: net/minecraft/nbt/ByteTag/m_7060_ ()B net/minecraft/nbt/ByteTag/getId ()B +MD: net/minecraft/nbt/ByteTag/m_7061_ ()D net/minecraft/nbt/ByteTag/getAsDouble ()D +MD: net/minecraft/nbt/ByteTag/m_7063_ ()B net/minecraft/nbt/ByteTag/getAsByte ()B +MD: net/minecraft/nbt/ByteTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/ByteTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/ByteTag$1/ ()V net/minecraft/nbt/ByteTag$1/ ()V +MD: net/minecraft/nbt/ByteTag$1/m_196292_ ()I net/minecraft/nbt/ByteTag$1/size ()I +MD: net/minecraft/nbt/ByteTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ByteTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ByteTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteTag$1/m_7064_ ()Z net/minecraft/nbt/ByteTag$1/isValue ()Z +MD: net/minecraft/nbt/ByteTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteTag$Cache/ ()V net/minecraft/nbt/ByteTag$Cache/ ()V +MD: net/minecraft/nbt/ByteTag$Cache/ ()V net/minecraft/nbt/ByteTag$Cache/ ()V +MD: net/minecraft/nbt/CollectionTag/ ()V net/minecraft/nbt/CollectionTag/ ()V +MD: net/minecraft/nbt/CollectionTag/add (ILjava/lang/Object;)V net/minecraft/nbt/CollectionTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/CollectionTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/CollectionTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/CollectionTag/m_7264_ ()B net/minecraft/nbt/CollectionTag/getElementType ()B +MD: net/minecraft/nbt/CollectionTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/CollectionTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/CollectionTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/CollectionTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/CollectionTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/CollectionTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/CollectionTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CollectionTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CollectionTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CollectionTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CollectionTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/CollectionTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/CompoundTag/ ()V net/minecraft/nbt/CompoundTag/ ()V +MD: net/minecraft/nbt/CompoundTag/ (Ljava/util/Map;)V net/minecraft/nbt/CompoundTag/ (Ljava/util/Map;)V +MD: net/minecraft/nbt/CompoundTag/ ()V net/minecraft/nbt/CompoundTag/ ()V +MD: net/minecraft/nbt/CompoundTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/CompoundTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/CompoundTag/hashCode ()I net/minecraft/nbt/CompoundTag/hashCode ()I +MD: net/minecraft/nbt/CompoundTag/m_128342_ (Ljava/lang/String;)Ljava/util/UUID; net/minecraft/nbt/CompoundTag/getUUID (Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/nbt/CompoundTag/m_128344_ (Ljava/lang/String;B)V net/minecraft/nbt/CompoundTag/putByte (Ljava/lang/String;B)V +MD: net/minecraft/nbt/CompoundTag/m_128347_ (Ljava/lang/String;D)V net/minecraft/nbt/CompoundTag/putDouble (Ljava/lang/String;D)V +MD: net/minecraft/nbt/CompoundTag/m_128350_ (Ljava/lang/String;F)V net/minecraft/nbt/CompoundTag/putFloat (Ljava/lang/String;F)V +MD: net/minecraft/nbt/CompoundTag/m_128356_ (Ljava/lang/String;J)V net/minecraft/nbt/CompoundTag/putLong (Ljava/lang/String;J)V +MD: net/minecraft/nbt/CompoundTag/m_128359_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/nbt/CompoundTag/putString (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/nbt/CompoundTag/m_128362_ (Ljava/lang/String;Ljava/util/UUID;)V net/minecraft/nbt/CompoundTag/putUUID (Ljava/lang/String;Ljava/util/UUID;)V +MD: net/minecraft/nbt/CompoundTag/m_128365_ (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/put (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_128368_ (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V net/minecraft/nbt/CompoundTag/writeNamedTag (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/CompoundTag/m_128372_ (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/ClassCastException;)Lnet/minecraft/CrashReport; net/minecraft/nbt/CompoundTag/createReport (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/ClassCastException;)Lnet/minecraft/CrashReport; +MD: net/minecraft/nbt/CompoundTag/m_128376_ (Ljava/lang/String;S)V net/minecraft/nbt/CompoundTag/putShort (Ljava/lang/String;S)V +MD: net/minecraft/nbt/CompoundTag/m_128379_ (Ljava/lang/String;Z)V net/minecraft/nbt/CompoundTag/putBoolean (Ljava/lang/String;Z)V +MD: net/minecraft/nbt/CompoundTag/m_128382_ (Ljava/lang/String;[B)V net/minecraft/nbt/CompoundTag/putByteArray (Ljava/lang/String;[B)V +MD: net/minecraft/nbt/CompoundTag/m_128385_ (Ljava/lang/String;[I)V net/minecraft/nbt/CompoundTag/putIntArray (Ljava/lang/String;[I)V +MD: net/minecraft/nbt/CompoundTag/m_128388_ (Ljava/lang/String;[J)V net/minecraft/nbt/CompoundTag/putLongArray (Ljava/lang/String;[J)V +MD: net/minecraft/nbt/CompoundTag/m_128391_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag/merge (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag/m_128403_ (Ljava/lang/String;)Z net/minecraft/nbt/CompoundTag/hasUUID (Ljava/lang/String;)Z +MD: net/minecraft/nbt/CompoundTag/m_128405_ (Ljava/lang/String;I)V net/minecraft/nbt/CompoundTag/putInt (Ljava/lang/String;I)V +MD: net/minecraft/nbt/CompoundTag/m_128408_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/nbt/CompoundTag/putIntArray (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/nbt/CompoundTag/m_128411_ (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/serialization/Dynamic; net/minecraft/nbt/CompoundTag/lambda$static$2 (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/nbt/CompoundTag/m_128413_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/readNamedTagData (Lnet/minecraft/nbt/TagType;Ljava/lang/String;Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_128420_ (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)B net/minecraft/nbt/CompoundTag/readNamedTagType (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)B +MD: net/minecraft/nbt/CompoundTag/m_128423_ (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/get (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_128425_ (Ljava/lang/String;I)Z net/minecraft/nbt/CompoundTag/contains (Ljava/lang/String;I)Z +MD: net/minecraft/nbt/CompoundTag/m_128428_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/nbt/CompoundTag/putLongArray (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/nbt/CompoundTag/m_128431_ ()Ljava/util/Set; net/minecraft/nbt/CompoundTag/getAllKeys ()Ljava/util/Set; +MD: net/minecraft/nbt/CompoundTag/m_128432_ (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/readNamedTagName (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_128435_ (Ljava/lang/String;)B net/minecraft/nbt/CompoundTag/getTagType (Ljava/lang/String;)B +MD: net/minecraft/nbt/CompoundTag/m_128437_ (Ljava/lang/String;I)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/CompoundTag/getList (Ljava/lang/String;I)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/CompoundTag/m_128440_ ()I net/minecraft/nbt/CompoundTag/size ()I +MD: net/minecraft/nbt/CompoundTag/m_128441_ (Ljava/lang/String;)Z net/minecraft/nbt/CompoundTag/contains (Ljava/lang/String;)Z +MD: net/minecraft/nbt/CompoundTag/m_128445_ (Ljava/lang/String;)B net/minecraft/nbt/CompoundTag/getByte (Ljava/lang/String;)B +MD: net/minecraft/nbt/CompoundTag/m_128448_ (Ljava/lang/String;)S net/minecraft/nbt/CompoundTag/getShort (Ljava/lang/String;)S +MD: net/minecraft/nbt/CompoundTag/m_128450_ ()Ljava/util/Map; net/minecraft/nbt/CompoundTag/entries ()Ljava/util/Map; +MD: net/minecraft/nbt/CompoundTag/m_128451_ (Ljava/lang/String;)I net/minecraft/nbt/CompoundTag/getInt (Ljava/lang/String;)I +MD: net/minecraft/nbt/CompoundTag/m_128454_ (Ljava/lang/String;)J net/minecraft/nbt/CompoundTag/getLong (Ljava/lang/String;)J +MD: net/minecraft/nbt/CompoundTag/m_128456_ ()Z net/minecraft/nbt/CompoundTag/isEmpty ()Z +MD: net/minecraft/nbt/CompoundTag/m_128457_ (Ljava/lang/String;)F net/minecraft/nbt/CompoundTag/getFloat (Ljava/lang/String;)F +MD: net/minecraft/nbt/CompoundTag/m_128459_ (Ljava/lang/String;)D net/minecraft/nbt/CompoundTag/getDouble (Ljava/lang/String;)D +MD: net/minecraft/nbt/CompoundTag/m_128461_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/getString (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_128463_ (Ljava/lang/String;)[B net/minecraft/nbt/CompoundTag/getByteArray (Ljava/lang/String;)[B +MD: net/minecraft/nbt/CompoundTag/m_128465_ (Ljava/lang/String;)[I net/minecraft/nbt/CompoundTag/getIntArray (Ljava/lang/String;)[I +MD: net/minecraft/nbt/CompoundTag/m_128467_ (Ljava/lang/String;)[J net/minecraft/nbt/CompoundTag/getLongArray (Ljava/lang/String;)[J +MD: net/minecraft/nbt/CompoundTag/m_128469_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag/getCompound (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag/m_128471_ (Ljava/lang/String;)Z net/minecraft/nbt/CompoundTag/getBoolean (Ljava/lang/String;)Z +MD: net/minecraft/nbt/CompoundTag/m_128473_ (Ljava/lang/String;)V net/minecraft/nbt/CompoundTag/remove (Ljava/lang/String;)V +MD: net/minecraft/nbt/CompoundTag/m_128480_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/lambda$createReport$3 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/CompoundTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/CompoundTag/m_177853_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/nbt/CompoundTag/putByteArray (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/nbt/CompoundTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/CompoundTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/CompoundTag/m_263179_ ()I net/minecraft/nbt/CompoundTag/sizeInBytes ()I +MD: net/minecraft/nbt/CompoundTag/m_274047_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/lambda$static$0 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_274048_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/CompoundTag/lambda$static$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/CompoundTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_6426_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag/copy ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/CompoundTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/CompoundTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/CompoundTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/CompoundTag/m_7060_ ()B net/minecraft/nbt/CompoundTag/getId ()B +MD: net/minecraft/nbt/CompoundTag/toString ()Ljava/lang/String; net/minecraft/nbt/CompoundTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag$1/ ()V net/minecraft/nbt/CompoundTag$1/ ()V +MD: net/minecraft/nbt/CompoundTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/CompoundTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/CompoundTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/CompoundTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/CompoundTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/CompoundTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/CompoundTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag$2/ ()V net/minecraft/nbt/CompoundTag$2/ ()V +MD: net/minecraft/nbt/DoubleTag/ ()V net/minecraft/nbt/DoubleTag/ ()V +MD: net/minecraft/nbt/DoubleTag/ (D)V net/minecraft/nbt/DoubleTag/ (D)V +MD: net/minecraft/nbt/DoubleTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/DoubleTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/DoubleTag/hashCode ()I net/minecraft/nbt/DoubleTag/hashCode ()I +MD: net/minecraft/nbt/DoubleTag/m_128500_ (D)Lnet/minecraft/nbt/DoubleTag; net/minecraft/nbt/DoubleTag/valueOf (D)Lnet/minecraft/nbt/DoubleTag; +MD: net/minecraft/nbt/DoubleTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/DoubleTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/DoubleTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/DoubleTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/DoubleTag/m_263179_ ()I net/minecraft/nbt/DoubleTag/sizeInBytes ()I +MD: net/minecraft/nbt/DoubleTag/m_6426_ ()Lnet/minecraft/nbt/DoubleTag; net/minecraft/nbt/DoubleTag/copy ()Lnet/minecraft/nbt/DoubleTag; +MD: net/minecraft/nbt/DoubleTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/DoubleTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/DoubleTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/DoubleTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/DoubleTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/DoubleTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/DoubleTag/m_7046_ ()J net/minecraft/nbt/DoubleTag/getAsLong ()J +MD: net/minecraft/nbt/DoubleTag/m_7047_ ()I net/minecraft/nbt/DoubleTag/getAsInt ()I +MD: net/minecraft/nbt/DoubleTag/m_7053_ ()S net/minecraft/nbt/DoubleTag/getAsShort ()S +MD: net/minecraft/nbt/DoubleTag/m_7057_ ()F net/minecraft/nbt/DoubleTag/getAsFloat ()F +MD: net/minecraft/nbt/DoubleTag/m_7060_ ()B net/minecraft/nbt/DoubleTag/getId ()B +MD: net/minecraft/nbt/DoubleTag/m_7061_ ()D net/minecraft/nbt/DoubleTag/getAsDouble ()D +MD: net/minecraft/nbt/DoubleTag/m_7063_ ()B net/minecraft/nbt/DoubleTag/getAsByte ()B +MD: net/minecraft/nbt/DoubleTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/DoubleTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/DoubleTag$1/ ()V net/minecraft/nbt/DoubleTag$1/ ()V +MD: net/minecraft/nbt/DoubleTag$1/m_196292_ ()I net/minecraft/nbt/DoubleTag$1/size ()I +MD: net/minecraft/nbt/DoubleTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/DoubleTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/DoubleTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/DoubleTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/DoubleTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/DoubleTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/DoubleTag$1/m_7064_ ()Z net/minecraft/nbt/DoubleTag$1/isValue ()Z +MD: net/minecraft/nbt/DoubleTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/DoubleTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/DoubleTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/DoubleTag; net/minecraft/nbt/DoubleTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/DoubleTag; +MD: net/minecraft/nbt/EndTag/ ()V net/minecraft/nbt/EndTag/ ()V +MD: net/minecraft/nbt/EndTag/ ()V net/minecraft/nbt/EndTag/ ()V +MD: net/minecraft/nbt/EndTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/EndTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/EndTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/EndTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/EndTag/m_263179_ ()I net/minecraft/nbt/EndTag/sizeInBytes ()I +MD: net/minecraft/nbt/EndTag/m_6426_ ()Lnet/minecraft/nbt/EndTag; net/minecraft/nbt/EndTag/copy ()Lnet/minecraft/nbt/EndTag; +MD: net/minecraft/nbt/EndTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/EndTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/EndTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/EndTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/EndTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/EndTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/EndTag/m_7060_ ()B net/minecraft/nbt/EndTag/getId ()B +MD: net/minecraft/nbt/EndTag/toString ()Ljava/lang/String; net/minecraft/nbt/EndTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/EndTag$1/ ()V net/minecraft/nbt/EndTag$1/ ()V +MD: net/minecraft/nbt/EndTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/EndTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/EndTag$1/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/EndTag$1/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/EndTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/EndTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/EndTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/EndTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/EndTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/EndTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/EndTag$1/m_7064_ ()Z net/minecraft/nbt/EndTag$1/isValue ()Z +MD: net/minecraft/nbt/EndTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/EndTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/EndTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; net/minecraft/nbt/EndTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; +MD: net/minecraft/nbt/FloatTag/ ()V net/minecraft/nbt/FloatTag/ ()V +MD: net/minecraft/nbt/FloatTag/ (F)V net/minecraft/nbt/FloatTag/ (F)V +MD: net/minecraft/nbt/FloatTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/FloatTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/FloatTag/hashCode ()I net/minecraft/nbt/FloatTag/hashCode ()I +MD: net/minecraft/nbt/FloatTag/m_128566_ (F)Lnet/minecraft/nbt/FloatTag; net/minecraft/nbt/FloatTag/valueOf (F)Lnet/minecraft/nbt/FloatTag; +MD: net/minecraft/nbt/FloatTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/FloatTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/FloatTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/FloatTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/FloatTag/m_263179_ ()I net/minecraft/nbt/FloatTag/sizeInBytes ()I +MD: net/minecraft/nbt/FloatTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/FloatTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/FloatTag/m_6426_ ()Lnet/minecraft/nbt/FloatTag; net/minecraft/nbt/FloatTag/copy ()Lnet/minecraft/nbt/FloatTag; +MD: net/minecraft/nbt/FloatTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/FloatTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/FloatTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/FloatTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/FloatTag/m_7046_ ()J net/minecraft/nbt/FloatTag/getAsLong ()J +MD: net/minecraft/nbt/FloatTag/m_7047_ ()I net/minecraft/nbt/FloatTag/getAsInt ()I +MD: net/minecraft/nbt/FloatTag/m_7053_ ()S net/minecraft/nbt/FloatTag/getAsShort ()S +MD: net/minecraft/nbt/FloatTag/m_7057_ ()F net/minecraft/nbt/FloatTag/getAsFloat ()F +MD: net/minecraft/nbt/FloatTag/m_7060_ ()B net/minecraft/nbt/FloatTag/getId ()B +MD: net/minecraft/nbt/FloatTag/m_7061_ ()D net/minecraft/nbt/FloatTag/getAsDouble ()D +MD: net/minecraft/nbt/FloatTag/m_7063_ ()B net/minecraft/nbt/FloatTag/getAsByte ()B +MD: net/minecraft/nbt/FloatTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/FloatTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/FloatTag$1/ ()V net/minecraft/nbt/FloatTag$1/ ()V +MD: net/minecraft/nbt/FloatTag$1/m_196292_ ()I net/minecraft/nbt/FloatTag$1/size ()I +MD: net/minecraft/nbt/FloatTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/FloatTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/FloatTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/FloatTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/FloatTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/FloatTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/FloatTag$1/m_7064_ ()Z net/minecraft/nbt/FloatTag$1/isValue ()Z +MD: net/minecraft/nbt/FloatTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/FloatTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/FloatTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/FloatTag; net/minecraft/nbt/FloatTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/FloatTag; +MD: net/minecraft/nbt/IntArrayTag/ ()V net/minecraft/nbt/IntArrayTag/ ()V +MD: net/minecraft/nbt/IntArrayTag/ ([I)V net/minecraft/nbt/IntArrayTag/ ([I)V +MD: net/minecraft/nbt/IntArrayTag/ (Ljava/util/List;)V net/minecraft/nbt/IntArrayTag/ (Ljava/util/List;)V +MD: net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/IntArrayTag/add (ILjava/lang/Object;)V net/minecraft/nbt/IntArrayTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/IntArrayTag/clear ()V net/minecraft/nbt/IntArrayTag/clear ()V +MD: net/minecraft/nbt/IntArrayTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/IntArrayTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/IntArrayTag/get (I)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntArrayTag/get (I)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntArrayTag/get (I)Ljava/lang/Object; net/minecraft/nbt/IntArrayTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/IntArrayTag/hashCode ()I net/minecraft/nbt/IntArrayTag/hashCode ()I +MD: net/minecraft/nbt/IntArrayTag/m_128620_ (Ljava/util/List;)[I net/minecraft/nbt/IntArrayTag/toArray (Ljava/util/List;)[I +MD: net/minecraft/nbt/IntArrayTag/m_128648_ ()[I net/minecraft/nbt/IntArrayTag/getAsIntArray ()[I +MD: net/minecraft/nbt/IntArrayTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/IntArrayTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/IntArrayTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntArrayTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntArrayTag/m_263179_ ()I net/minecraft/nbt/IntArrayTag/sizeInBytes ()I +MD: net/minecraft/nbt/IntArrayTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag/m_6426_ ()Lnet/minecraft/nbt/IntArrayTag; net/minecraft/nbt/IntArrayTag/copy ()Lnet/minecraft/nbt/IntArrayTag; +MD: net/minecraft/nbt/IntArrayTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/IntArrayTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/IntArrayTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/IntArrayTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/IntArrayTag/m_7060_ ()B net/minecraft/nbt/IntArrayTag/getId ()B +MD: net/minecraft/nbt/IntArrayTag/m_7264_ ()B net/minecraft/nbt/IntArrayTag/getElementType ()B +MD: net/minecraft/nbt/IntArrayTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/IntArrayTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/IntArrayTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/IntArrayTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/IntArrayTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/IntArrayTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/IntArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/IntTag;)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/IntTag;)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntArrayTag/size ()I net/minecraft/nbt/IntArrayTag/size ()I +MD: net/minecraft/nbt/IntArrayTag/toString ()Ljava/lang/String; net/minecraft/nbt/IntArrayTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/IntArrayTag$1/ ()V net/minecraft/nbt/IntArrayTag$1/ ()V +MD: net/minecraft/nbt/IntArrayTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/IntArrayTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/IntArrayTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntArrayTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntArrayTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/IntArrayTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntArrayTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/IntArrayTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntArrayTag; net/minecraft/nbt/IntArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntArrayTag; +MD: net/minecraft/nbt/IntTag/ ()V net/minecraft/nbt/IntTag/ ()V +MD: net/minecraft/nbt/IntTag/ (I)V net/minecraft/nbt/IntTag/ (I)V +MD: net/minecraft/nbt/IntTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/IntTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/IntTag/hashCode ()I net/minecraft/nbt/IntTag/hashCode ()I +MD: net/minecraft/nbt/IntTag/m_128679_ (I)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntTag/valueOf (I)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/IntTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/IntTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntTag/m_263179_ ()I net/minecraft/nbt/IntTag/sizeInBytes ()I +MD: net/minecraft/nbt/IntTag/m_6426_ ()Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntTag/copy ()Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/IntTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/IntTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/IntTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/IntTag/m_7046_ ()J net/minecraft/nbt/IntTag/getAsLong ()J +MD: net/minecraft/nbt/IntTag/m_7047_ ()I net/minecraft/nbt/IntTag/getAsInt ()I +MD: net/minecraft/nbt/IntTag/m_7053_ ()S net/minecraft/nbt/IntTag/getAsShort ()S +MD: net/minecraft/nbt/IntTag/m_7057_ ()F net/minecraft/nbt/IntTag/getAsFloat ()F +MD: net/minecraft/nbt/IntTag/m_7060_ ()B net/minecraft/nbt/IntTag/getId ()B +MD: net/minecraft/nbt/IntTag/m_7061_ ()D net/minecraft/nbt/IntTag/getAsDouble ()D +MD: net/minecraft/nbt/IntTag/m_7063_ ()B net/minecraft/nbt/IntTag/getAsByte ()B +MD: net/minecraft/nbt/IntTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/IntTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/IntTag$1/ ()V net/minecraft/nbt/IntTag$1/ ()V +MD: net/minecraft/nbt/IntTag$1/m_196292_ ()I net/minecraft/nbt/IntTag$1/size ()I +MD: net/minecraft/nbt/IntTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/IntTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/IntTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntTag$1/m_7064_ ()Z net/minecraft/nbt/IntTag$1/isValue ()Z +MD: net/minecraft/nbt/IntTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntTag$Cache/ ()V net/minecraft/nbt/IntTag$Cache/ ()V +MD: net/minecraft/nbt/IntTag$Cache/ ()V net/minecraft/nbt/IntTag$Cache/ ()V +MD: net/minecraft/nbt/ListTag/ ()V net/minecraft/nbt/ListTag/ ()V +MD: net/minecraft/nbt/ListTag/ (Ljava/util/List;B)V net/minecraft/nbt/ListTag/ (Ljava/util/List;B)V +MD: net/minecraft/nbt/ListTag/ ()V net/minecraft/nbt/ListTag/ ()V +MD: net/minecraft/nbt/ListTag/add (ILjava/lang/Object;)V net/minecraft/nbt/ListTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/ListTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/ListTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/ListTag/clear ()V net/minecraft/nbt/ListTag/clear ()V +MD: net/minecraft/nbt/ListTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ListTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ListTag/get (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/get (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/get (I)Ljava/lang/Object; net/minecraft/nbt/ListTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ListTag/hashCode ()I net/minecraft/nbt/ListTag/hashCode ()I +MD: net/minecraft/nbt/ListTag/isEmpty ()Z net/minecraft/nbt/ListTag/isEmpty ()Z +MD: net/minecraft/nbt/ListTag/m_128728_ (I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/ListTag/getCompound (I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/ListTag/m_128738_ (Lnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ListTag/updateType (Lnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ListTag/m_128744_ (I)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/ListTag/getList (I)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/ListTag/m_128757_ (I)S net/minecraft/nbt/ListTag/getShort (I)S +MD: net/minecraft/nbt/ListTag/m_128763_ (I)I net/minecraft/nbt/ListTag/getInt (I)I +MD: net/minecraft/nbt/ListTag/m_128767_ (I)[I net/minecraft/nbt/ListTag/getIntArray (I)[I +MD: net/minecraft/nbt/ListTag/m_128769_ ()V net/minecraft/nbt/ListTag/updateTypeAfterRemove ()V +MD: net/minecraft/nbt/ListTag/m_128772_ (I)D net/minecraft/nbt/ListTag/getDouble (I)D +MD: net/minecraft/nbt/ListTag/m_128775_ (I)F net/minecraft/nbt/ListTag/getFloat (I)F +MD: net/minecraft/nbt/ListTag/m_128778_ (I)Ljava/lang/String; net/minecraft/nbt/ListTag/getString (I)Ljava/lang/String; +MD: net/minecraft/nbt/ListTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ListTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ListTag/m_177991_ (I)[J net/minecraft/nbt/ListTag/getLongArray (I)[J +MD: net/minecraft/nbt/ListTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ListTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ListTag/m_263179_ ()I net/minecraft/nbt/ListTag/sizeInBytes ()I +MD: net/minecraft/nbt/ListTag/m_6426_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/ListTag/copy ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/ListTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ListTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ListTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ListTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ListTag/m_7060_ ()B net/minecraft/nbt/ListTag/getId ()B +MD: net/minecraft/nbt/ListTag/m_7264_ ()B net/minecraft/nbt/ListTag/getElementType ()B +MD: net/minecraft/nbt/ListTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ListTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ListTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ListTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ListTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/ListTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ListTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/ListTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/ListTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/size ()I net/minecraft/nbt/ListTag/size ()I +MD: net/minecraft/nbt/ListTag/toString ()Ljava/lang/String; net/minecraft/nbt/ListTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/ListTag$1/ ()V net/minecraft/nbt/ListTag$1/ ()V +MD: net/minecraft/nbt/ListTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/ListTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/ListTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ListTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ListTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ListTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ListTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ListTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ListTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/ListTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/ListTag$2/ ()V net/minecraft/nbt/ListTag$2/ ()V +MD: net/minecraft/nbt/LongArrayTag/ ()V net/minecraft/nbt/LongArrayTag/ ()V +MD: net/minecraft/nbt/LongArrayTag/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V net/minecraft/nbt/LongArrayTag/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V +MD: net/minecraft/nbt/LongArrayTag/ ([J)V net/minecraft/nbt/LongArrayTag/ ([J)V +MD: net/minecraft/nbt/LongArrayTag/ (Ljava/util/List;)V net/minecraft/nbt/LongArrayTag/ (Ljava/util/List;)V +MD: net/minecraft/nbt/LongArrayTag/add (ILjava/lang/Object;)V net/minecraft/nbt/LongArrayTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/LongArrayTag/clear ()V net/minecraft/nbt/LongArrayTag/clear ()V +MD: net/minecraft/nbt/LongArrayTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/LongArrayTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/LongArrayTag/get (I)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongArrayTag/get (I)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongArrayTag/get (I)Ljava/lang/Object; net/minecraft/nbt/LongArrayTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/LongArrayTag/hashCode ()I net/minecraft/nbt/LongArrayTag/hashCode ()I +MD: net/minecraft/nbt/LongArrayTag/m_128823_ (Ljava/util/List;)[J net/minecraft/nbt/LongArrayTag/toArray (Ljava/util/List;)[J +MD: net/minecraft/nbt/LongArrayTag/m_128851_ ()[J net/minecraft/nbt/LongArrayTag/getAsLongArray ()[J +MD: net/minecraft/nbt/LongArrayTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/LongArrayTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/LongArrayTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongArrayTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongArrayTag/m_263179_ ()I net/minecraft/nbt/LongArrayTag/sizeInBytes ()I +MD: net/minecraft/nbt/LongArrayTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag/m_6426_ ()Lnet/minecraft/nbt/LongArrayTag; net/minecraft/nbt/LongArrayTag/copy ()Lnet/minecraft/nbt/LongArrayTag; +MD: net/minecraft/nbt/LongArrayTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/LongArrayTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/LongArrayTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/LongArrayTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/LongArrayTag/m_7060_ ()B net/minecraft/nbt/LongArrayTag/getId ()B +MD: net/minecraft/nbt/LongArrayTag/m_7264_ ()B net/minecraft/nbt/LongArrayTag/getElementType ()B +MD: net/minecraft/nbt/LongArrayTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/LongArrayTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/LongArrayTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/LongArrayTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongArrayTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/LongArrayTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/LongTag;)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/LongTag;)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/LongArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag/size ()I net/minecraft/nbt/LongArrayTag/size ()I +MD: net/minecraft/nbt/LongArrayTag/toString ()Ljava/lang/String; net/minecraft/nbt/LongArrayTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/LongArrayTag$1/ ()V net/minecraft/nbt/LongArrayTag$1/ ()V +MD: net/minecraft/nbt/LongArrayTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/LongArrayTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/LongArrayTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongArrayTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongArrayTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/LongArrayTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongArrayTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/LongArrayTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongArrayTag; net/minecraft/nbt/LongArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongArrayTag; +MD: net/minecraft/nbt/LongTag/ ()V net/minecraft/nbt/LongTag/ ()V +MD: net/minecraft/nbt/LongTag/ (J)V net/minecraft/nbt/LongTag/ (J)V +MD: net/minecraft/nbt/LongTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/LongTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/LongTag/hashCode ()I net/minecraft/nbt/LongTag/hashCode ()I +MD: net/minecraft/nbt/LongTag/m_128882_ (J)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongTag/valueOf (J)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/LongTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/LongTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongTag/m_263179_ ()I net/minecraft/nbt/LongTag/sizeInBytes ()I +MD: net/minecraft/nbt/LongTag/m_6426_ ()Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongTag/copy ()Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/LongTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/LongTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/LongTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/LongTag/m_7046_ ()J net/minecraft/nbt/LongTag/getAsLong ()J +MD: net/minecraft/nbt/LongTag/m_7047_ ()I net/minecraft/nbt/LongTag/getAsInt ()I +MD: net/minecraft/nbt/LongTag/m_7053_ ()S net/minecraft/nbt/LongTag/getAsShort ()S +MD: net/minecraft/nbt/LongTag/m_7057_ ()F net/minecraft/nbt/LongTag/getAsFloat ()F +MD: net/minecraft/nbt/LongTag/m_7060_ ()B net/minecraft/nbt/LongTag/getId ()B +MD: net/minecraft/nbt/LongTag/m_7061_ ()D net/minecraft/nbt/LongTag/getAsDouble ()D +MD: net/minecraft/nbt/LongTag/m_7063_ ()B net/minecraft/nbt/LongTag/getAsByte ()B +MD: net/minecraft/nbt/LongTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/LongTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/LongTag$1/ ()V net/minecraft/nbt/LongTag$1/ ()V +MD: net/minecraft/nbt/LongTag$1/m_196292_ ()I net/minecraft/nbt/LongTag$1/size ()I +MD: net/minecraft/nbt/LongTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/LongTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/LongTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongTag$1/m_7064_ ()Z net/minecraft/nbt/LongTag$1/isValue ()Z +MD: net/minecraft/nbt/LongTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongTag$Cache/ ()V net/minecraft/nbt/LongTag$Cache/ ()V +MD: net/minecraft/nbt/LongTag$Cache/ ()V net/minecraft/nbt/LongTag$Cache/ ()V +MD: net/minecraft/nbt/NbtAccounter/ ()V net/minecraft/nbt/NbtAccounter/ ()V +MD: net/minecraft/nbt/NbtAccounter/ (J)V net/minecraft/nbt/NbtAccounter/ (J)V +MD: net/minecraft/nbt/NbtAccounter/m_128926_ (J)V net/minecraft/nbt/NbtAccounter/accountBytes (J)V +MD: net/minecraft/nbt/NbtAccounter/m_263225_ ()J net/minecraft/nbt/NbtAccounter/getUsage ()J +MD: net/minecraft/nbt/NbtAccounter$1/ (J)V net/minecraft/nbt/NbtAccounter$1/ (J)V +MD: net/minecraft/nbt/NbtAccounter$1/m_128926_ (J)V net/minecraft/nbt/NbtAccounter$1/accountBytes (J)V +MD: net/minecraft/nbt/NbtIo/ ()V net/minecraft/nbt/NbtIo/ ()V +MD: net/minecraft/nbt/NbtIo/m_128928_ (Ljava/io/DataInput;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/read (Ljava/io/DataInput;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128930_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtIo/readUnnamedTag (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtIo/m_128934_ (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/read (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128937_ (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/readCompressed (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128939_ (Ljava/io/InputStream;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/readCompressed (Ljava/io/InputStream;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128941_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/DataOutput;)V net/minecraft/nbt/NbtIo/write (Lnet/minecraft/nbt/CompoundTag;Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/NbtIo/m_128944_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V net/minecraft/nbt/NbtIo/writeCompressed (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V +MD: net/minecraft/nbt/NbtIo/m_128947_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/OutputStream;)V net/minecraft/nbt/NbtIo/writeCompressed (Lnet/minecraft/nbt/CompoundTag;Ljava/io/OutputStream;)V +MD: net/minecraft/nbt/NbtIo/m_128950_ (Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V net/minecraft/nbt/NbtIo/writeUnnamedTag (Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/NbtIo/m_128953_ (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/read (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128955_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V net/minecraft/nbt/NbtIo/write (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V +MD: net/minecraft/nbt/NbtIo/m_197509_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/NbtIo/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/NbtIo/m_202487_ (Ljava/io/File;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/NbtIo/parseCompressed (Ljava/io/File;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/NbtIo/m_202490_ (Ljava/io/InputStream;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/NbtIo/parseCompressed (Ljava/io/InputStream;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/NbtIo/m_202493_ (Ljava/io/InputStream;)Ljava/io/DataInputStream; net/minecraft/nbt/NbtIo/createDecompressorStream (Ljava/io/InputStream;)Ljava/io/DataInputStream; +MD: net/minecraft/nbt/NbtIo$1/ ()V net/minecraft/nbt/NbtIo$1/ ()V +MD: net/minecraft/nbt/NbtOps/ ()V net/minecraft/nbt/NbtOps/ ()V +MD: net/minecraft/nbt/NbtOps/ ()V net/minecraft/nbt/NbtOps/ ()V +MD: net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createBoolean (Z)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createBoolean (Z)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createBoolean (Z)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createBoolean (Z)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createByte (B)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createByte (B)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createByte (B)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createByte (B)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createDouble (D)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createDouble (D)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createDouble (D)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createDouble (D)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createFloat (F)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createFloat (F)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createFloat (F)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createFloat (F)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createInt (I)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createInt (I)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createInt (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createInt (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createLong (J)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createLong (J)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createLong (J)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createLong (J)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createShort (S)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createShort (S)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createShort (S)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createShort (S)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/empty ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/empty ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/empty ()Ljava/lang/Object; net/minecraft/nbt/NbtOps/empty ()Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/getByteBuffer (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getByteBuffer (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getIntStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getIntStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getList (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getList (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getLongStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getLongStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMap (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMap (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapEntries (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapEntries (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapValues (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapValues (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getNumberValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getNumberValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStringValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStringValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_128986_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/nbt/NbtOps/lambda$remove$28 (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/nbt/NbtOps/m_128991_ (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/nbt/NbtOps/lambda$mergeToMap$13 (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/nbt/NbtOps/m_129016_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/nbt/NbtOps/lambda$createMap$21 (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/nbt/NbtOps/m_129019_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/nbt/NbtOps/lambda$getMapValues$15 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/nbt/NbtOps/m_129022_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/BiConsumer;)V net/minecraft/nbt/NbtOps/lambda$getMapEntries$18 (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/nbt/NbtOps/m_129025_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$remove$29 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_129056_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$mergeToMap$12 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_129065_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$mergeToMap$10 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_129157_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/lambda$getStream$23 (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/m_178003_ (Ljava/util/function/BiConsumer;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$getMapEntries$17 (Ljava/util/function/BiConsumer;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_244787_ (Ljava/util/List;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$5 (Ljava/util/List;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_244788_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/lambda$getStream$22 (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/m_244789_ (Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/NbtOps/lambda$getList$25 (Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/NbtOps/m_244790_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$2 (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_244791_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;)V net/minecraft/nbt/NbtOps/lambda$getList$26 (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;)V +MD: net/minecraft/nbt/NbtOps/m_246295_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/tryUnwrap (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/m_246675_ (Lnet/minecraft/nbt/Tag;)Ljava/util/Optional; net/minecraft/nbt/NbtOps/createCollector (Lnet/minecraft/nbt/Tag;)Ljava/util/Optional; +MD: net/minecraft/nbt/NbtOps/m_274049_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getList$27 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274050_ ()Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getStream$24 ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274051_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$11 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274052_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$9 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274053_ ()Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getStringValue$1 ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274054_ (Ljava/util/List;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$14 (Ljava/util/List;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274055_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$8 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274056_ (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$4 (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_274057_ (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$7 (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_274058_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getMap$20 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274059_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getMapEntries$19 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274060_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToList$3 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274061_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToList$6 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274062_ ()Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getNumberValue$0 ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274063_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getMapValues$16 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; net/minecraft/nbt/NbtOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/remove (Lnet/minecraft/nbt/Tag;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/remove (Lnet/minecraft/nbt/Tag;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/toString ()Ljava/lang/String; net/minecraft/nbt/NbtOps/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps$1/ (Lnet/minecraft/nbt/NbtOps;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/NbtOps$1/ (Lnet/minecraft/nbt/NbtOps;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/NbtOps$1/entries ()Ljava/util/stream/Stream; net/minecraft/nbt/NbtOps$1/entries ()Ljava/util/stream/Stream; +MD: net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$1/get (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/NbtOps$1/get (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$1/get (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$1/get (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$1/m_129170_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/nbt/NbtOps$1/lambda$entries$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/nbt/NbtOps$1/toString ()Ljava/lang/String; net/minecraft/nbt/NbtOps$1/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps$ByteListCollector/ ([B)V net/minecraft/nbt/NbtOps$ByteListCollector/ ([B)V +MD: net/minecraft/nbt/NbtOps$ByteListCollector/ (B)V net/minecraft/nbt/NbtOps$ByteListCollector/ (B)V +MD: net/minecraft/nbt/NbtOps$ByteListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$ByteListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$ByteListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ByteListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/longs/LongArrayList;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/longs/LongArrayList;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/bytes/ByteArrayList;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/bytes/ByteArrayList;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Ljava/util/Collection;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Ljava/util/Collection;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ ()V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ ()V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$HeterogenousListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$HeterogenousListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246400_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/nbt/NbtOps$HeterogenousListCollector/isWrapper (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246415_ (I)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/lambda$new$0 (I)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246462_ (J)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/lambda$new$2 (J)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_247310_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtOps$HeterogenousListCollector/wrapElement (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_247549_ (B)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/lambda$new$1 (B)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_247665_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$HeterogenousListCollector/wrapIfNeeded (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$HomogenousListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$HomogenousListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$InitialListCollector/ ()V net/minecraft/nbt/NbtOps$InitialListCollector/ ()V +MD: net/minecraft/nbt/NbtOps$InitialListCollector/ ()V net/minecraft/nbt/NbtOps$InitialListCollector/ ()V +MD: net/minecraft/nbt/NbtOps$InitialListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$InitialListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$InitialListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$InitialListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$IntListCollector/ (I)V net/minecraft/nbt/NbtOps$IntListCollector/ (I)V +MD: net/minecraft/nbt/NbtOps$IntListCollector/ ([I)V net/minecraft/nbt/NbtOps$IntListCollector/ ([I)V +MD: net/minecraft/nbt/NbtOps$IntListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$IntListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$IntListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$IntListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$ListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_246277_ (Ljava/lang/Iterable;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ListCollector/acceptAll (Ljava/lang/Iterable;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_246922_ (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ListCollector/acceptAll (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$LongListCollector/ (J)V net/minecraft/nbt/NbtOps$LongListCollector/ (J)V +MD: net/minecraft/nbt/NbtOps$LongListCollector/ ([J)V net/minecraft/nbt/NbtOps$LongListCollector/ ([J)V +MD: net/minecraft/nbt/NbtOps$LongListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$LongListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$LongListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$LongListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/ (Lnet/minecraft/nbt/NbtOps;)V net/minecraft/nbt/NbtOps$NbtRecordBuilder/ (Lnet/minecraft/nbt/NbtOps;)V +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Ljava/lang/Object; net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/m_274399_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps$NbtRecordBuilder/lambda$build$0 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/ ()V net/minecraft/nbt/NbtUtils/ ()V +MD: net/minecraft/nbt/NbtUtils/ ()V net/minecraft/nbt/NbtUtils/ ()V +MD: net/minecraft/nbt/NbtUtils/m_129202_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeBlockState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_129204_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/nbt/NbtUtils/setValueHelper (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/nbt/NbtUtils/m_129210_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/getName (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_129224_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeBlockPos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_129226_ (Ljava/util/UUID;)Lnet/minecraft/nbt/IntArrayTag; net/minecraft/nbt/NbtUtils/createUUID (Ljava/util/UUID;)Lnet/minecraft/nbt/IntArrayTag; +MD: net/minecraft/nbt/NbtUtils/m_129228_ (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/authlib/GameProfile; net/minecraft/nbt/NbtUtils/readGameProfile (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/nbt/NbtUtils/m_129230_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeGameProfile (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_129233_ (Lnet/minecraft/nbt/Tag;)Ljava/util/UUID; net/minecraft/nbt/NbtUtils/loadUUID (Lnet/minecraft/nbt/Tag;)Ljava/util/UUID; +MD: net/minecraft/nbt/NbtUtils/m_129235_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Z)Z net/minecraft/nbt/NbtUtils/compareNbt (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Z)Z +MD: net/minecraft/nbt/NbtUtils/m_129239_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; net/minecraft/nbt/NbtUtils/readBlockPos (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/nbt/NbtUtils/m_178019_ (ILjava/lang/StringBuilder;)Ljava/lang/StringBuilder; net/minecraft/nbt/NbtUtils/indent (ILjava/lang/StringBuilder;)Ljava/lang/StringBuilder; +MD: net/minecraft/nbt/NbtUtils/m_178022_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeFluidState (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178024_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/snbtToStructure (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178026_ (Ljava/lang/StringBuilder;Lnet/minecraft/nbt/Tag;IZ)Ljava/lang/StringBuilder; net/minecraft/nbt/NbtUtils/prettyPrint (Ljava/lang/StringBuilder;Lnet/minecraft/nbt/Tag;IZ)Ljava/lang/StringBuilder; +MD: net/minecraft/nbt/NbtUtils/m_178031_ (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/NbtUtils/lambda$unpackStructureTemplate$10 (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/NbtUtils/m_178034_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/lambda$packBlockState$11 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178037_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/nbt/NbtUtils/lambda$unpackBlockState$12 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtUtils/m_178041_ (Lnet/minecraft/nbt/ListTag;)D net/minecraft/nbt/NbtUtils/lambda$static$5 (Lnet/minecraft/nbt/ListTag;)D +MD: net/minecraft/nbt/NbtUtils/m_178043_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$9 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/NbtUtils/m_178046_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$6 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/NbtUtils/m_178050_ (Lnet/minecraft/nbt/Tag;Z)Ljava/lang/String; net/minecraft/nbt/NbtUtils/prettyPrint (Lnet/minecraft/nbt/Tag;Z)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178053_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/unpackBlockState (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178055_ (Lnet/minecraft/nbt/ListTag;)D net/minecraft/nbt/NbtUtils/lambda$static$4 (Lnet/minecraft/nbt/ListTag;)D +MD: net/minecraft/nbt/NbtUtils/m_178057_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/prettyPrint (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178059_ (Lnet/minecraft/nbt/ListTag;)D net/minecraft/nbt/NbtUtils/lambda$static$3 (Lnet/minecraft/nbt/ListTag;)D +MD: net/minecraft/nbt/NbtUtils/m_178061_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/nbt/NbtUtils/toPrettyComponent (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/nbt/NbtUtils/m_178063_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/structureToSnbt (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178065_ (Lnet/minecraft/nbt/ListTag;)I net/minecraft/nbt/NbtUtils/lambda$static$2 (Lnet/minecraft/nbt/ListTag;)I +MD: net/minecraft/nbt/NbtUtils/m_178067_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/packStructureTemplate (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178069_ (Lnet/minecraft/nbt/ListTag;)I net/minecraft/nbt/NbtUtils/lambda$static$1 (Lnet/minecraft/nbt/ListTag;)I +MD: net/minecraft/nbt/NbtUtils/m_178071_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/unpackStructureTemplate (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178073_ (Lnet/minecraft/nbt/ListTag;)I net/minecraft/nbt/NbtUtils/lambda$static$0 (Lnet/minecraft/nbt/ListTag;)I +MD: net/minecraft/nbt/NbtUtils/m_178075_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/packBlockState (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178077_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$8 (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/NbtUtils/m_178079_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$7 (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/NbtUtils/m_247651_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/nbt/NbtUtils/readBlockState (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/nbt/NbtUtils/m_264046_ (Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/addDataVersion (Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_264171_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/addCurrentDataVersion (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_264487_ (Lnet/minecraft/nbt/CompoundTag;I)I net/minecraft/nbt/NbtUtils/getDataVersion (Lnet/minecraft/nbt/CompoundTag;I)I +MD: net/minecraft/nbt/NumericTag/ ()V net/minecraft/nbt/NumericTag/ ()V +MD: net/minecraft/nbt/NumericTag/m_7046_ ()J net/minecraft/nbt/NumericTag/getAsLong ()J +MD: net/minecraft/nbt/NumericTag/m_7047_ ()I net/minecraft/nbt/NumericTag/getAsInt ()I +MD: net/minecraft/nbt/NumericTag/m_7053_ ()S net/minecraft/nbt/NumericTag/getAsShort ()S +MD: net/minecraft/nbt/NumericTag/m_7057_ ()F net/minecraft/nbt/NumericTag/getAsFloat ()F +MD: net/minecraft/nbt/NumericTag/m_7061_ ()D net/minecraft/nbt/NumericTag/getAsDouble ()D +MD: net/minecraft/nbt/NumericTag/m_7063_ ()B net/minecraft/nbt/NumericTag/getAsByte ()B +MD: net/minecraft/nbt/NumericTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/NumericTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/NumericTag/toString ()Ljava/lang/String; net/minecraft/nbt/NumericTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/ShortTag/ ()V net/minecraft/nbt/ShortTag/ ()V +MD: net/minecraft/nbt/ShortTag/ (S)V net/minecraft/nbt/ShortTag/ (S)V +MD: net/minecraft/nbt/ShortTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ShortTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ShortTag/hashCode ()I net/minecraft/nbt/ShortTag/hashCode ()I +MD: net/minecraft/nbt/ShortTag/m_129258_ (S)Lnet/minecraft/nbt/ShortTag; net/minecraft/nbt/ShortTag/valueOf (S)Lnet/minecraft/nbt/ShortTag; +MD: net/minecraft/nbt/ShortTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ShortTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ShortTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ShortTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ShortTag/m_263179_ ()I net/minecraft/nbt/ShortTag/sizeInBytes ()I +MD: net/minecraft/nbt/ShortTag/m_6426_ ()Lnet/minecraft/nbt/ShortTag; net/minecraft/nbt/ShortTag/copy ()Lnet/minecraft/nbt/ShortTag; +MD: net/minecraft/nbt/ShortTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ShortTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ShortTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ShortTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ShortTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ShortTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ShortTag/m_7046_ ()J net/minecraft/nbt/ShortTag/getAsLong ()J +MD: net/minecraft/nbt/ShortTag/m_7047_ ()I net/minecraft/nbt/ShortTag/getAsInt ()I +MD: net/minecraft/nbt/ShortTag/m_7053_ ()S net/minecraft/nbt/ShortTag/getAsShort ()S +MD: net/minecraft/nbt/ShortTag/m_7057_ ()F net/minecraft/nbt/ShortTag/getAsFloat ()F +MD: net/minecraft/nbt/ShortTag/m_7060_ ()B net/minecraft/nbt/ShortTag/getId ()B +MD: net/minecraft/nbt/ShortTag/m_7061_ ()D net/minecraft/nbt/ShortTag/getAsDouble ()D +MD: net/minecraft/nbt/ShortTag/m_7063_ ()B net/minecraft/nbt/ShortTag/getAsByte ()B +MD: net/minecraft/nbt/ShortTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/ShortTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/ShortTag$1/ ()V net/minecraft/nbt/ShortTag$1/ ()V +MD: net/minecraft/nbt/ShortTag$1/m_196292_ ()I net/minecraft/nbt/ShortTag$1/size ()I +MD: net/minecraft/nbt/ShortTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ShortTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ShortTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ShortTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ShortTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ShortTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ShortTag$1/m_7064_ ()Z net/minecraft/nbt/ShortTag$1/isValue ()Z +MD: net/minecraft/nbt/ShortTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ShortTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ShortTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ShortTag; net/minecraft/nbt/ShortTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ShortTag; +MD: net/minecraft/nbt/ShortTag$Cache/ ()V net/minecraft/nbt/ShortTag$Cache/ ()V +MD: net/minecraft/nbt/ShortTag$Cache/ ()V net/minecraft/nbt/ShortTag$Cache/ ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/ (Ljava/lang/String;ILjava/util/List;)V net/minecraft/nbt/SnbtPrinterTagVisitor/ (Ljava/lang/String;ILjava/util/List;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178110_ ()Ljava/lang/String; net/minecraft/nbt/SnbtPrinterTagVisitor/pathString ()Ljava/lang/String; +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178111_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/SnbtPrinterTagVisitor/handleEscapePretty (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178113_ (Ljava/util/HashMap;)V net/minecraft/nbt/SnbtPrinterTagVisitor/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178141_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/SnbtPrinterTagVisitor/visit (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178143_ ()V net/minecraft/nbt/SnbtPrinterTagVisitor/popPath ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178144_ (Ljava/lang/String;)V net/minecraft/nbt/SnbtPrinterTagVisitor/pushPath (Ljava/lang/String;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178146_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/nbt/SnbtPrinterTagVisitor/getKeys (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/nbt/StreamTagVisitor/m_196152_ ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196209_ (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196280_ ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196295_ (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196338_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor/visitElement (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196339_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitList (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196353_ (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196376_ ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196455_ (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196458_ (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196525_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196532_ (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196553_ (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/ ()V net/minecraft/nbt/StreamTagVisitor$EntryResult/ ()V +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/ (Ljava/lang/String;I)V net/minecraft/nbt/StreamTagVisitor$EntryResult/ (Ljava/lang/String;I)V +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/m_197547_ ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor$EntryResult/$values ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor$EntryResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor$EntryResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/ ()V net/minecraft/nbt/StreamTagVisitor$ValueResult/ ()V +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/ (Ljava/lang/String;I)V net/minecraft/nbt/StreamTagVisitor$ValueResult/ (Ljava/lang/String;I)V +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/m_197559_ ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor$ValueResult/$values ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor$ValueResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor$ValueResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StringTag/ ()V net/minecraft/nbt/StringTag/ ()V +MD: net/minecraft/nbt/StringTag/ (Ljava/lang/String;)V net/minecraft/nbt/StringTag/ (Ljava/lang/String;)V +MD: net/minecraft/nbt/StringTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/StringTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/StringTag/hashCode ()I net/minecraft/nbt/StringTag/hashCode ()I +MD: net/minecraft/nbt/StringTag/m_129297_ (Ljava/lang/String;)Lnet/minecraft/nbt/StringTag; net/minecraft/nbt/StringTag/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/nbt/StringTag/m_129303_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/StringTag/quoteAndEscape (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/StringTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/StringTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/StringTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StringTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StringTag/m_197563_ (Ljava/io/DataInput;)V net/minecraft/nbt/StringTag/skipString (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/StringTag/m_263179_ ()I net/minecraft/nbt/StringTag/sizeInBytes ()I +MD: net/minecraft/nbt/StringTag/m_6426_ ()Lnet/minecraft/nbt/StringTag; net/minecraft/nbt/StringTag/copy ()Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/nbt/StringTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/StringTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/StringTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/StringTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/StringTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/StringTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/StringTag/m_7060_ ()B net/minecraft/nbt/StringTag/getId ()B +MD: net/minecraft/nbt/StringTag/m_7916_ ()Ljava/lang/String; net/minecraft/nbt/StringTag/getAsString ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag/toString ()Ljava/lang/String; net/minecraft/nbt/StringTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag$1/ ()V net/minecraft/nbt/StringTag$1/ ()V +MD: net/minecraft/nbt/StringTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/StringTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/StringTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StringTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StringTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/StringTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/StringTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag$1/m_7064_ ()Z net/minecraft/nbt/StringTag$1/isValue ()Z +MD: net/minecraft/nbt/StringTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/StringTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/StringTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/StringTag; net/minecraft/nbt/StringTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/nbt/StringTagVisitor/ ()V net/minecraft/nbt/StringTagVisitor/ ()V +MD: net/minecraft/nbt/StringTagVisitor/ ()V net/minecraft/nbt/StringTagVisitor/ ()V +MD: net/minecraft/nbt/StringTagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/StringTagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/StringTagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/StringTagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/StringTagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/StringTagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/StringTagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/StringTagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/StringTagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/StringTagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/StringTagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/StringTagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/StringTagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/StringTagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_178159_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/StringTagVisitor/handleEscape (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/StringTagVisitor/m_178187_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/StringTagVisitor/visit (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/Tag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/Tag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/Tag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/Tag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/Tag/m_197573_ (Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/Tag/acceptAsRoot (Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/Tag/m_263179_ ()I net/minecraft/nbt/Tag/sizeInBytes ()I +MD: net/minecraft/nbt/Tag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/Tag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/Tag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/Tag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/Tag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/Tag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/Tag/m_7060_ ()B net/minecraft/nbt/Tag/getId ()B +MD: net/minecraft/nbt/Tag/m_7916_ ()Ljava/lang/String; net/minecraft/nbt/Tag/getAsString ()Ljava/lang/String; +MD: net/minecraft/nbt/Tag/toString ()Ljava/lang/String; net/minecraft/nbt/Tag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/TagParser/ ()V net/minecraft/nbt/TagParser/ ()V +MD: net/minecraft/nbt/TagParser/ (Lcom/mojang/brigadier/StringReader;)V net/minecraft/nbt/TagParser/ (Lcom/mojang/brigadier/StringReader;)V +MD: net/minecraft/nbt/TagParser/m_129351_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/TagParser/readSingleStruct ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/TagParser/m_129352_ (C)V net/minecraft/nbt/TagParser/expect (C)V +MD: net/minecraft/nbt/TagParser/m_129354_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/nbt/TagParser/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/nbt/TagParser/m_129356_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/nbt/TagParser/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/nbt/TagParser/m_129359_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/TagParser/parseTag (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/TagParser/m_129361_ (Lnet/minecraft/nbt/TagType;Lnet/minecraft/nbt/TagType;)Ljava/util/List; net/minecraft/nbt/TagParser/readArray (Lnet/minecraft/nbt/TagType;Lnet/minecraft/nbt/TagType;)Ljava/util/List; +MD: net/minecraft/nbt/TagParser/m_129364_ ()Ljava/lang/String; net/minecraft/nbt/TagParser/readKey ()Ljava/lang/String; +MD: net/minecraft/nbt/TagParser/m_129365_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/nbt/TagParser/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/nbt/TagParser/m_129368_ (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/type (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129370_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readTypedValue ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129371_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readValue ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129372_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readList ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129373_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/TagParser/readStruct ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/TagParser/m_129374_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readListTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129375_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readArrayTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129376_ ()Z net/minecraft/nbt/TagParser/hasElementSeparator ()Z +MD: net/minecraft/nbt/TagType/m_129377_ (I)Lnet/minecraft/nbt/TagType; net/minecraft/nbt/TagType/createInvalid (I)Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/TagType/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/TagType/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/TagType/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagType/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/TagType/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/TagType/m_197580_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/TagType/parseRoot (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/TagType/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/TagType/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/TagType/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType/m_7064_ ()Z net/minecraft/nbt/TagType/isValue ()Z +MD: net/minecraft/nbt/TagType/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagType/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagType$1/ (I)V net/minecraft/nbt/TagType$1/ (I)V +MD: net/minecraft/nbt/TagType$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/TagType$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/TagType$1/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType$1/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagType$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/TagType$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/TagType$1/m_197591_ ()Ljava/io/IOException; net/minecraft/nbt/TagType$1/createException ()Ljava/io/IOException; +MD: net/minecraft/nbt/TagType$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/TagType$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/TagType$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagType$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagType$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; net/minecraft/nbt/TagType$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; +MD: net/minecraft/nbt/TagType$2/ ()V net/minecraft/nbt/TagType$2/ ()V +MD: net/minecraft/nbt/TagType$StaticSize/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/TagType$StaticSize/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/TagType$StaticSize/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType$StaticSize/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagType$StaticSize/m_196292_ ()I net/minecraft/nbt/TagType$StaticSize/size ()I +MD: net/minecraft/nbt/TagType$VariableSize/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType$VariableSize/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagTypes/ ()V net/minecraft/nbt/TagTypes/ ()V +MD: net/minecraft/nbt/TagTypes/ ()V net/minecraft/nbt/TagTypes/ ()V +MD: net/minecraft/nbt/TagTypes/m_129397_ (I)Lnet/minecraft/nbt/TagType; net/minecraft/nbt/TagTypes/getType (I)Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/TagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/TagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/TagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/TagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/TagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/TagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/TagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/TagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/TagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/TagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/TagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/TagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/TagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/TagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/ ()V net/minecraft/nbt/TextComponentTagVisitor/ ()V +MD: net/minecraft/nbt/TextComponentTagVisitor/ (Ljava/lang/String;I)V net/minecraft/nbt/TextComponentTagVisitor/ (Ljava/lang/String;I)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_178253_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/nbt/TextComponentTagVisitor/handleEscapePretty (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/nbt/TextComponentTagVisitor/m_178281_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/nbt/TextComponentTagVisitor/visit (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/nbt/visitors/CollectFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V net/minecraft/nbt/visitors/CollectFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V +MD: net/minecraft/nbt/visitors/CollectFields/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectFields/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectFields/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectFields/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectFields/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_197615_ ()I net/minecraft/nbt/visitors/CollectFields/getMissingFieldCount ()I +MD: net/minecraft/nbt/visitors/CollectToTag/ ()V net/minecraft/nbt/visitors/CollectToTag/ ()V +MD: net/minecraft/nbt/visitors/CollectToTag/m_196152_ ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196209_ (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectToTag/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196280_ ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196295_ (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196338_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectToTag/visitElement (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196339_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitList (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196353_ (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196376_ ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectToTag/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196455_ (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196458_ (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196525_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196532_ (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196553_ (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_197679_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/lambda$visitRootEntry$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197682_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/appendEntry (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197701_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/lambda$enterContainerIfNeeded$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197704_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/lambda$visitRootEntry$2 (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197711_ (Lnet/minecraft/nbt/TagType;)V net/minecraft/nbt/visitors/CollectToTag/enterContainerIfNeeded (Lnet/minecraft/nbt/TagType;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197713_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/visitors/CollectToTag/getResult ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/visitors/CollectToTag/m_197714_ ()I net/minecraft/nbt/visitors/CollectToTag/depth ()I +MD: net/minecraft/nbt/visitors/FieldSelector/ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/ (Ljava/util/List;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Ljava/util/List;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/equals (Ljava/lang/Object;)Z net/minecraft/nbt/visitors/FieldSelector/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/visitors/FieldSelector/f_202497_ ()Ljava/util/List; net/minecraft/nbt/visitors/FieldSelector/path ()Ljava/util/List; +MD: net/minecraft/nbt/visitors/FieldSelector/f_202498_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/visitors/FieldSelector/type ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/visitors/FieldSelector/f_202499_ ()Ljava/lang/String; net/minecraft/nbt/visitors/FieldSelector/name ()Ljava/lang/String; +MD: net/minecraft/nbt/visitors/FieldSelector/hashCode ()I net/minecraft/nbt/visitors/FieldSelector/hashCode ()I +MD: net/minecraft/nbt/visitors/FieldSelector/toString ()Ljava/lang/String; net/minecraft/nbt/visitors/FieldSelector/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/visitors/FieldTree/ (ILjava/util/Map;Ljava/util/Map;)V net/minecraft/nbt/visitors/FieldTree/ (ILjava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/nbt/visitors/FieldTree/ (I)V net/minecraft/nbt/visitors/FieldTree/ (I)V +MD: net/minecraft/nbt/visitors/FieldTree/equals (Ljava/lang/Object;)Z net/minecraft/nbt/visitors/FieldTree/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/visitors/FieldTree/f_202523_ ()I net/minecraft/nbt/visitors/FieldTree/depth ()I +MD: net/minecraft/nbt/visitors/FieldTree/f_202524_ ()Ljava/util/Map; net/minecraft/nbt/visitors/FieldTree/selectedFields ()Ljava/util/Map; +MD: net/minecraft/nbt/visitors/FieldTree/f_202525_ ()Ljava/util/Map; net/minecraft/nbt/visitors/FieldTree/fieldsToRecurse ()Ljava/util/Map; +MD: net/minecraft/nbt/visitors/FieldTree/hashCode ()I net/minecraft/nbt/visitors/FieldTree/hashCode ()I +MD: net/minecraft/nbt/visitors/FieldTree/m_202532_ ()Lnet/minecraft/nbt/visitors/FieldTree; net/minecraft/nbt/visitors/FieldTree/createRoot ()Lnet/minecraft/nbt/visitors/FieldTree; +MD: net/minecraft/nbt/visitors/FieldTree/m_202533_ (Ljava/lang/String;)Lnet/minecraft/nbt/visitors/FieldTree; net/minecraft/nbt/visitors/FieldTree/lambda$addEntry$0 (Ljava/lang/String;)Lnet/minecraft/nbt/visitors/FieldTree; +MD: net/minecraft/nbt/visitors/FieldTree/m_202535_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Z net/minecraft/nbt/visitors/FieldTree/isSelected (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Z +MD: net/minecraft/nbt/visitors/FieldTree/m_202538_ (Lnet/minecraft/nbt/visitors/FieldSelector;)V net/minecraft/nbt/visitors/FieldTree/addEntry (Lnet/minecraft/nbt/visitors/FieldSelector;)V +MD: net/minecraft/nbt/visitors/FieldTree/toString ()Ljava/lang/String; net/minecraft/nbt/visitors/FieldTree/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/visitors/SkipAll/ ()V net/minecraft/nbt/visitors/SkipAll/ ()V +MD: net/minecraft/nbt/visitors/SkipAll/m_196152_ ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196209_ (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipAll/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196280_ ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196295_ (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196338_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipAll/visitElement (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196339_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitList (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196353_ (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196376_ ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipAll/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196455_ (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196458_ (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196525_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196532_ (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196553_ (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll$1/ ()V net/minecraft/nbt/visitors/SkipAll$1/ ()V +MD: net/minecraft/nbt/visitors/SkipFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V net/minecraft/nbt/visitors/SkipFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V +MD: net/minecraft/nbt/visitors/SkipFields/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipFields/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipFields/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipFields/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/network/CipherBase/ (Ljavax/crypto/Cipher;)V net/minecraft/network/CipherBase/ (Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/CipherBase/m_129404_ (Lio/netty/buffer/ByteBuf;)[B net/minecraft/network/CipherBase/bufToByte (Lio/netty/buffer/ByteBuf;)[B +MD: net/minecraft/network/CipherBase/m_129406_ (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CipherBase/encipher (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CipherBase/m_129409_ (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/CipherBase/decipher (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/CipherDecoder/ (Ljavax/crypto/Cipher;)V net/minecraft/network/CipherDecoder/ (Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V +MD: net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/CipherEncoder/ (Ljavax/crypto/Cipher;)V net/minecraft/network/CipherEncoder/ (Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CompressionDecoder/ (IZ)V net/minecraft/network/CompressionDecoder/ (IZ)V +MD: net/minecraft/network/CompressionDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/CompressionDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/CompressionDecoder/m_182677_ (IZ)V net/minecraft/network/CompressionDecoder/setThreshold (IZ)V +MD: net/minecraft/network/CompressionEncoder/ (I)V net/minecraft/network/CompressionEncoder/ (I)V +MD: net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CompressionEncoder/m_129449_ (I)V net/minecraft/network/CompressionEncoder/setThreshold (I)V +MD: net/minecraft/network/CompressionEncoder/m_178298_ ()I net/minecraft/network/CompressionEncoder/getThreshold ()I +MD: net/minecraft/network/Connection/ ()V net/minecraft/network/Connection/ ()V +MD: net/minecraft/network/Connection/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/Connection/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/Connection/channelActive (Lio/netty/channel/ChannelHandlerContext;)V net/minecraft/network/Connection/channelActive (Lio/netty/channel/ChannelHandlerContext;)V +MD: net/minecraft/network/Connection/channelInactive (Lio/netty/channel/ChannelHandlerContext;)V net/minecraft/network/Connection/channelInactive (Lio/netty/channel/ChannelHandlerContext;)V +MD: net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/network/Connection/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V net/minecraft/network/Connection/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V +MD: net/minecraft/network/Connection/m_129483_ ()V net/minecraft/network/Connection/tick ()V +MD: net/minecraft/network/Connection/m_129484_ (IZ)V net/minecraft/network/Connection/setupCompression (IZ)V +MD: net/minecraft/network/Connection/m_129493_ (Ljava/net/SocketAddress;)Lnet/minecraft/network/Connection; net/minecraft/network/Connection/connectToLocalServer (Ljava/net/SocketAddress;)Lnet/minecraft/network/Connection; +MD: net/minecraft/network/Connection/m_129495_ (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V net/minecraft/network/Connection/setEncryptionKey (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/Connection/m_129498_ (Lnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/Connection/setProtocol (Lnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/Connection/m_129505_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/Connection/setListener (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/Connection/m_129507_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/Connection/disconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/Connection/m_129512_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/network/Connection/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/network/Connection/m_129517_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;)V net/minecraft/network/Connection/genericsFtw (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/Connection/m_129520_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/network/Connection/sendPacket (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/network/Connection/m_129523_ ()Ljava/net/SocketAddress; net/minecraft/network/Connection/getRemoteAddress ()Ljava/net/SocketAddress; +MD: net/minecraft/network/Connection/m_129531_ ()Z net/minecraft/network/Connection/isMemoryConnection ()Z +MD: net/minecraft/network/Connection/m_129535_ ()Z net/minecraft/network/Connection/isEncrypted ()Z +MD: net/minecraft/network/Connection/m_129536_ ()Z net/minecraft/network/Connection/isConnected ()Z +MD: net/minecraft/network/Connection/m_129537_ ()Z net/minecraft/network/Connection/isConnecting ()Z +MD: net/minecraft/network/Connection/m_129538_ ()Lnet/minecraft/network/PacketListener; net/minecraft/network/Connection/getPacketListener ()Lnet/minecraft/network/PacketListener; +MD: net/minecraft/network/Connection/m_129539_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/Connection/getDisconnectedReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/Connection/m_129540_ ()V net/minecraft/network/Connection/setReadOnly ()V +MD: net/minecraft/network/Connection/m_129541_ ()V net/minecraft/network/Connection/handleDisconnection ()V +MD: net/minecraft/network/Connection/m_129542_ ()F net/minecraft/network/Connection/getAverageReceivedPackets ()F +MD: net/minecraft/network/Connection/m_129543_ ()F net/minecraft/network/Connection/getAverageSentPackets ()F +MD: net/minecraft/network/Connection/m_129544_ ()V net/minecraft/network/Connection/flushQueue ()V +MD: net/minecraft/network/Connection/m_178300_ (Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection; net/minecraft/network/Connection/connectToServer (Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection; +MD: net/minecraft/network/Connection/m_178313_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/Connection/getReceiving ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/Connection/m_178314_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/Connection/getSending ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/Connection/m_178315_ ()Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/Connection/getCurrentProtocol ()Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/Connection/m_202556_ (Lorg/slf4j/Marker;)V net/minecraft/network/Connection/lambda$static$2 (Lorg/slf4j/Marker;)V +MD: net/minecraft/network/Connection/m_202558_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/Connection/lambda$exceptionCaught$6 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/Connection/m_202561_ (Lorg/slf4j/Marker;)V net/minecraft/network/Connection/lambda$static$1 (Lorg/slf4j/Marker;)V +MD: net/minecraft/network/Connection/m_202568_ (Lorg/slf4j/Marker;)V net/minecraft/network/Connection/lambda$static$0 (Lorg/slf4j/Marker;)V +MD: net/minecraft/network/Connection/m_202570_ ()Lio/netty/channel/DefaultEventLoopGroup; net/minecraft/network/Connection/lambda$static$5 ()Lio/netty/channel/DefaultEventLoopGroup; +MD: net/minecraft/network/Connection/m_202571_ ()Lio/netty/channel/epoll/EpollEventLoopGroup; net/minecraft/network/Connection/lambda$static$4 ()Lio/netty/channel/epoll/EpollEventLoopGroup; +MD: net/minecraft/network/Connection/m_202572_ ()Lio/netty/channel/nio/NioEventLoopGroup; net/minecraft/network/Connection/lambda$static$3 ()Lio/netty/channel/nio/NioEventLoopGroup; +MD: net/minecraft/network/Connection/m_243034_ (Lnet/minecraft/network/PacketSendListener;Lio/netty/util/concurrent/Future;)V net/minecraft/network/Connection/lambda$doSendPacket$8 (Lnet/minecraft/network/PacketSendListener;Lio/netty/util/concurrent/Future;)V +MD: net/minecraft/network/Connection/m_243035_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/Connection/lambda$sendPacket$7 (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/Connection/m_243087_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/Connection/doSendPacket (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/Connection/m_243124_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/network/Connection/send (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/network/Connection/m_264299_ (Lio/netty/channel/ChannelPipeline;Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/Connection/configureSerialization (Lio/netty/channel/ChannelPipeline;Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/Connection/m_290025_ (Ljava/net/InetSocketAddress;ZLnet/minecraft/network/Connection;)Lio/netty/channel/ChannelFuture; net/minecraft/network/Connection/connect (Ljava/net/InetSocketAddress;ZLnet/minecraft/network/Connection;)Lio/netty/channel/ChannelFuture; +MD: net/minecraft/network/Connection/m_7073_ ()V net/minecraft/network/Connection/tickSecond ()V +MD: net/minecraft/network/Connection$1/ (Lnet/minecraft/network/Connection;)V net/minecraft/network/Connection$1/ (Lnet/minecraft/network/Connection;)V +MD: net/minecraft/network/Connection$1/initChannel (Lio/netty/channel/Channel;)V net/minecraft/network/Connection$1/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/network/Connection$2/ (Lnet/minecraft/network/Connection;)V net/minecraft/network/Connection$2/ (Lnet/minecraft/network/Connection;)V +MD: net/minecraft/network/Connection$2/initChannel (Lio/netty/channel/Channel;)V net/minecraft/network/Connection$2/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/network/Connection$PacketHolder/ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/network/Connection$PacketHolder/ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/network/ConnectionProtocol/ ()V net/minecraft/network/ConnectionProtocol/ ()V +MD: net/minecraft/network/ConnectionProtocol/ (Ljava/lang/String;IILnet/minecraft/network/ConnectionProtocol$ProtocolBuilder;)V net/minecraft/network/ConnectionProtocol/ (Ljava/lang/String;IILnet/minecraft/network/ConnectionProtocol$ProtocolBuilder;)V +MD: net/minecraft/network/ConnectionProtocol/m_129582_ ()I net/minecraft/network/ConnectionProtocol/getId ()I +MD: net/minecraft/network/ConnectionProtocol/m_129583_ (I)Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/getById (I)Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/m_129592_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/getProtocolForPacket (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/m_129600_ ()Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; net/minecraft/network/ConnectionProtocol/protocol ()Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; +MD: net/minecraft/network/ConnectionProtocol/m_178321_ (Lnet/minecraft/network/protocol/PacketFlow;ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/ConnectionProtocol/createPacket (Lnet/minecraft/network/protocol/PacketFlow;ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/ConnectionProtocol/m_178325_ ()[Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/$values ()[Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/m_195609_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Class;Ljava/lang/Integer;)V net/minecraft/network/ConnectionProtocol/lambda$getPacketsByIds$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Class;Ljava/lang/Integer;)V +MD: net/minecraft/network/ConnectionProtocol/m_195613_ (Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Class;)V net/minecraft/network/ConnectionProtocol/lambda$static$1 (Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Class;)V +MD: net/minecraft/network/ConnectionProtocol/m_195620_ (Lnet/minecraft/network/protocol/PacketFlow;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/network/ConnectionProtocol/getPacketsByIds (Lnet/minecraft/network/protocol/PacketFlow;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/network/ConnectionProtocol/m_263896_ (Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)V net/minecraft/network/ConnectionProtocol/lambda$static$2 (Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)V +MD: net/minecraft/network/ConnectionProtocol/m_264121_ (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/ConnectionProtocol/getBundlerInfo (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/ConnectionProtocol/m_264521_ (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/protocol/Packet;)I net/minecraft/network/ConnectionProtocol/getPacketId (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/protocol/Packet;)I +MD: net/minecraft/network/ConnectionProtocol/valueOf (Ljava/lang/String;)Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/valueOf (Ljava/lang/String;)Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/values ()[Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/values ()[Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/ ()V net/minecraft/network/ConnectionProtocol$PacketSet/ ()V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/ ()V net/minecraft/network/ConnectionProtocol$PacketSet/ ()V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_129612_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/network/ConnectionProtocol$PacketSet/lambda$new$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_178327_ (ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/ConnectionProtocol$PacketSet/createPacket (ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_178330_ (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; net/minecraft/network/ConnectionProtocol$PacketSet/addPacket (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_263897_ (Ljava/lang/Class;)Z net/minecraft/network/ConnectionProtocol$PacketSet/lambda$listAllPackets$2 (Ljava/lang/Class;)Z +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_263898_ (Lnet/minecraft/network/protocol/BundleDelimiterPacket;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/BundleDelimiterPacket; net/minecraft/network/ConnectionProtocol$PacketSet/lambda$withBundlePacket$1 (Lnet/minecraft/network/protocol/BundleDelimiterPacket;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/BundleDelimiterPacket; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264507_ ()Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/ConnectionProtocol$PacketSet/bundlerInfo ()Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264516_ (Ljava/lang/Class;)I net/minecraft/network/ConnectionProtocol$PacketSet/getId (Ljava/lang/Class;)I +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264538_ (Ljava/util/function/Consumer;)V net/minecraft/network/ConnectionProtocol$PacketSet/listAllPackets (Ljava/util/function/Consumer;)V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264543_ (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; net/minecraft/network/ConnectionProtocol$PacketSet/withBundlePacket (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; +MD: net/minecraft/network/ConnectionProtocol$ProtocolBuilder/ ()V net/minecraft/network/ConnectionProtocol$ProtocolBuilder/ ()V +MD: net/minecraft/network/ConnectionProtocol$ProtocolBuilder/m_129625_ (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; net/minecraft/network/ConnectionProtocol$ProtocolBuilder/addFlow (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; +MD: net/minecraft/network/FriendlyByteBuf/ ()V net/minecraft/network/FriendlyByteBuf/ ()V +MD: net/minecraft/network/FriendlyByteBuf/ (Lio/netty/buffer/ByteBuf;)V net/minecraft/network/FriendlyByteBuf/ (Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/FriendlyByteBuf/alloc ()Lio/netty/buffer/ByteBufAllocator; net/minecraft/network/FriendlyByteBuf/alloc ()Lio/netty/buffer/ByteBufAllocator; +MD: net/minecraft/network/FriendlyByteBuf/array ()[B net/minecraft/network/FriendlyByteBuf/array ()[B +MD: net/minecraft/network/FriendlyByteBuf/arrayOffset ()I net/minecraft/network/FriendlyByteBuf/arrayOffset ()I +MD: net/minecraft/network/FriendlyByteBuf/asReadOnly ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/asReadOnly ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/bytesBefore (B)I net/minecraft/network/FriendlyByteBuf/bytesBefore (B)I +MD: net/minecraft/network/FriendlyByteBuf/bytesBefore (IB)I net/minecraft/network/FriendlyByteBuf/bytesBefore (IB)I +MD: net/minecraft/network/FriendlyByteBuf/bytesBefore (IIB)I net/minecraft/network/FriendlyByteBuf/bytesBefore (IIB)I +MD: net/minecraft/network/FriendlyByteBuf/capacity ()I net/minecraft/network/FriendlyByteBuf/capacity ()I +MD: net/minecraft/network/FriendlyByteBuf/capacity (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/capacity (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/clear ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/clear ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/compareTo (Ljava/lang/Object;)I net/minecraft/network/FriendlyByteBuf/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/network/FriendlyByteBuf/compareTo (Lio/netty/buffer/ByteBuf;)I net/minecraft/network/FriendlyByteBuf/compareTo (Lio/netty/buffer/ByteBuf;)I +MD: net/minecraft/network/FriendlyByteBuf/copy (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/copy (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/copy ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/copy ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/discardReadBytes ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/discardReadBytes ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/discardSomeReadBytes ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/discardSomeReadBytes ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/duplicate ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/duplicate ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/ensureWritable (IZ)I net/minecraft/network/FriendlyByteBuf/ensureWritable (IZ)I +MD: net/minecraft/network/FriendlyByteBuf/ensureWritable (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/ensureWritable (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/equals (Ljava/lang/Object;)Z net/minecraft/network/FriendlyByteBuf/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/FriendlyByteBuf/forEachByte (IILio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByte (IILio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/forEachByte (Lio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByte (Lio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/forEachByteDesc (Lio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByteDesc (Lio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/forEachByteDesc (IILio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByteDesc (IILio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/getBoolean (I)Z net/minecraft/network/FriendlyByteBuf/getBoolean (I)Z +MD: net/minecraft/network/FriendlyByteBuf/getByte (I)B net/minecraft/network/FriendlyByteBuf/getByte (I)B +MD: net/minecraft/network/FriendlyByteBuf/getBytes (I[B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (I[B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (I[BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (I[BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/GatheringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/GatheringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/getChar (I)C net/minecraft/network/FriendlyByteBuf/getChar (I)C +MD: net/minecraft/network/FriendlyByteBuf/getCharSequence (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence; net/minecraft/network/FriendlyByteBuf/getCharSequence (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence; +MD: net/minecraft/network/FriendlyByteBuf/getDouble (I)D net/minecraft/network/FriendlyByteBuf/getDouble (I)D +MD: net/minecraft/network/FriendlyByteBuf/getFloat (I)F net/minecraft/network/FriendlyByteBuf/getFloat (I)F +MD: net/minecraft/network/FriendlyByteBuf/getInt (I)I net/minecraft/network/FriendlyByteBuf/getInt (I)I +MD: net/minecraft/network/FriendlyByteBuf/getIntLE (I)I net/minecraft/network/FriendlyByteBuf/getIntLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/getLong (I)J net/minecraft/network/FriendlyByteBuf/getLong (I)J +MD: net/minecraft/network/FriendlyByteBuf/getLongLE (I)J net/minecraft/network/FriendlyByteBuf/getLongLE (I)J +MD: net/minecraft/network/FriendlyByteBuf/getMedium (I)I net/minecraft/network/FriendlyByteBuf/getMedium (I)I +MD: net/minecraft/network/FriendlyByteBuf/getMediumLE (I)I net/minecraft/network/FriendlyByteBuf/getMediumLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/getShort (I)S net/minecraft/network/FriendlyByteBuf/getShort (I)S +MD: net/minecraft/network/FriendlyByteBuf/getShortLE (I)S net/minecraft/network/FriendlyByteBuf/getShortLE (I)S +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedByte (I)S net/minecraft/network/FriendlyByteBuf/getUnsignedByte (I)S +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedInt (I)J net/minecraft/network/FriendlyByteBuf/getUnsignedInt (I)J +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedIntLE (I)J net/minecraft/network/FriendlyByteBuf/getUnsignedIntLE (I)J +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedMedium (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedMedium (I)I +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedMediumLE (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedMediumLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedShort (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedShort (I)I +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedShortLE (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedShortLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/hasArray ()Z net/minecraft/network/FriendlyByteBuf/hasArray ()Z +MD: net/minecraft/network/FriendlyByteBuf/hasMemoryAddress ()Z net/minecraft/network/FriendlyByteBuf/hasMemoryAddress ()Z +MD: net/minecraft/network/FriendlyByteBuf/hashCode ()I net/minecraft/network/FriendlyByteBuf/hashCode ()I +MD: net/minecraft/network/FriendlyByteBuf/indexOf (IIB)I net/minecraft/network/FriendlyByteBuf/indexOf (IIB)I +MD: net/minecraft/network/FriendlyByteBuf/internalNioBuffer (II)Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/internalNioBuffer (II)Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/isDirect ()Z net/minecraft/network/FriendlyByteBuf/isDirect ()Z +MD: net/minecraft/network/FriendlyByteBuf/isReadOnly ()Z net/minecraft/network/FriendlyByteBuf/isReadOnly ()Z +MD: net/minecraft/network/FriendlyByteBuf/isReadable (I)Z net/minecraft/network/FriendlyByteBuf/isReadable (I)Z +MD: net/minecraft/network/FriendlyByteBuf/isReadable ()Z net/minecraft/network/FriendlyByteBuf/isReadable ()Z +MD: net/minecraft/network/FriendlyByteBuf/isWritable (I)Z net/minecraft/network/FriendlyByteBuf/isWritable (I)Z +MD: net/minecraft/network/FriendlyByteBuf/isWritable ()Z net/minecraft/network/FriendlyByteBuf/isWritable ()Z +MD: net/minecraft/network/FriendlyByteBuf/m_130052_ ()[B net/minecraft/network/FriendlyByteBuf/readByteArray ()[B +MD: net/minecraft/network/FriendlyByteBuf/m_130053_ (I)I net/minecraft/network/FriendlyByteBuf/getVarIntSize (I)I +MD: net/minecraft/network/FriendlyByteBuf/m_130055_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130062_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/network/FriendlyByteBuf/writeBlockHitResult (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/network/FriendlyByteBuf/m_130064_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeBlockPos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130066_ (Ljava/lang/Class;)Ljava/lang/Enum; net/minecraft/network/FriendlyByteBuf/readEnum (Ljava/lang/Class;)Ljava/lang/Enum; +MD: net/minecraft/network/FriendlyByteBuf/m_130068_ (Ljava/lang/Enum;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeEnum (Ljava/lang/Enum;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130070_ (Ljava/lang/String;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeUtf (Ljava/lang/String;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130072_ (Ljava/lang/String;I)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeUtf (Ljava/lang/String;I)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130075_ (Ljava/util/Date;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeDate (Ljava/util/Date;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130077_ (Ljava/util/UUID;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeUUID (Ljava/util/UUID;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130079_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeNbt (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130081_ (Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/FriendlyByteBuf/readNbt (Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/FriendlyByteBuf/m_130083_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeComponent (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130085_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeResourceLocation (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130087_ ([B)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeByteArray ([B)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130089_ ([I)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeVarIntArray ([I)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130091_ ([J)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeLongArray ([J)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130093_ ([JI)[J net/minecraft/network/FriendlyByteBuf/readLongArray ([JI)[J +MD: net/minecraft/network/FriendlyByteBuf/m_130100_ ()[I net/minecraft/network/FriendlyByteBuf/readVarIntArray ()[I +MD: net/minecraft/network/FriendlyByteBuf/m_130101_ (I)[B net/minecraft/network/FriendlyByteBuf/readByteArray (I)[B +MD: net/minecraft/network/FriendlyByteBuf/m_130103_ (J)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeVarLong (J)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130105_ ([J)[J net/minecraft/network/FriendlyByteBuf/readLongArray ([J)[J +MD: net/minecraft/network/FriendlyByteBuf/m_130116_ (I)[I net/minecraft/network/FriendlyByteBuf/readVarIntArray (I)[I +MD: net/minecraft/network/FriendlyByteBuf/m_130130_ (I)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeVarInt (I)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130135_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/FriendlyByteBuf/readBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/FriendlyByteBuf/m_130136_ (I)Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/readUtf (I)Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/m_130157_ ()Lnet/minecraft/core/SectionPos; net/minecraft/network/FriendlyByteBuf/readSectionPos ()Lnet/minecraft/core/SectionPos; +MD: net/minecraft/network/FriendlyByteBuf/m_130238_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/FriendlyByteBuf/readComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/FriendlyByteBuf/m_130242_ ()I net/minecraft/network/FriendlyByteBuf/readVarInt ()I +MD: net/minecraft/network/FriendlyByteBuf/m_130258_ ()J net/minecraft/network/FriendlyByteBuf/readVarLong ()J +MD: net/minecraft/network/FriendlyByteBuf/m_130259_ ()Ljava/util/UUID; net/minecraft/network/FriendlyByteBuf/readUUID ()Ljava/util/UUID; +MD: net/minecraft/network/FriendlyByteBuf/m_130260_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/FriendlyByteBuf/readNbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/FriendlyByteBuf/m_130261_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/FriendlyByteBuf/readAnySizeNbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/FriendlyByteBuf/m_130267_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/FriendlyByteBuf/readItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/FriendlyByteBuf/m_130277_ ()Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/readUtf ()Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/m_130281_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/FriendlyByteBuf/readResourceLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/FriendlyByteBuf/m_130282_ ()Ljava/util/Date; net/minecraft/network/FriendlyByteBuf/readDate ()Ljava/util/Date; +MD: net/minecraft/network/FriendlyByteBuf/m_130283_ ()Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/network/FriendlyByteBuf/readBlockHitResult ()Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/network/FriendlyByteBuf/m_178338_ ()Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/network/FriendlyByteBuf/readIntIdList ()Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/network/FriendlyByteBuf/m_178339_ (J)I net/minecraft/network/FriendlyByteBuf/getVarLongSize (J)I +MD: net/minecraft/network/FriendlyByteBuf/m_178341_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeChunkPos (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_178343_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeSectionPos (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_178345_ (Lit/unimi/dsi/fastutil/ints/IntList;)V net/minecraft/network/FriendlyByteBuf/writeIntIdList (Lit/unimi/dsi/fastutil/ints/IntList;)V +MD: net/minecraft/network/FriendlyByteBuf/m_178350_ (Ljava/util/BitSet;)V net/minecraft/network/FriendlyByteBuf/writeBitSet (Ljava/util/BitSet;)V +MD: net/minecraft/network/FriendlyByteBuf/m_178364_ (Ljava/util/function/Consumer;)V net/minecraft/network/FriendlyByteBuf/readWithCount (Ljava/util/function/Consumer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_178381_ ()[J net/minecraft/network/FriendlyByteBuf/readLongArray ()[J +MD: net/minecraft/network/FriendlyByteBuf/m_178382_ ()[B net/minecraft/network/FriendlyByteBuf/accessByteBufWithCorrectSize ()[B +MD: net/minecraft/network/FriendlyByteBuf/m_178383_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/network/FriendlyByteBuf/readChunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/network/FriendlyByteBuf/m_178384_ ()Ljava/util/BitSet; net/minecraft/network/FriendlyByteBuf/readBitSet ()Ljava/util/BitSet; +MD: net/minecraft/network/FriendlyByteBuf/m_182683_ (ILjava/util/function/IntFunction;I)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/lambda$limitValue$4 (ILjava/util/function/IntFunction;I)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_182695_ (Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction; net/minecraft/network/FriendlyByteBuf/limitValue (Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction; +MD: net/minecraft/network/FriendlyByteBuf/m_236801_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/FriendlyByteBuf/readResourceKey (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/FriendlyByteBuf/m_236803_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/network/FriendlyByteBuf/writeGameProfile (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236805_ (Lcom/mojang/authlib/properties/Property;)V net/minecraft/network/FriendlyByteBuf/writeProperty (Lcom/mojang/authlib/properties/Property;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236807_ (Lcom/mojang/authlib/properties/PropertyMap;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/FriendlyByteBuf/lambda$readGameProfileProperties$8 (Lcom/mojang/authlib/properties/PropertyMap;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236810_ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeEither (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236814_ (Lnet/minecraft/core/GlobalPos;)V net/minecraft/network/FriendlyByteBuf/writeGlobalPos (Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236816_ (Lnet/minecraft/core/IdMap;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readById (Lnet/minecraft/core/IdMap;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_236818_ (Lnet/minecraft/core/IdMap;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/writeId (Lnet/minecraft/core/IdMap;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236821_ (Ljava/lang/Object;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeNullable (Ljava/lang/Object;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236824_ (Ljava/security/PublicKey;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writePublicKey (Ljava/security/PublicKey;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_236826_ (Ljava/time/Instant;)V net/minecraft/network/FriendlyByteBuf/writeInstant (Ljava/time/Instant;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236828_ (Ljava/util/Collection;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeCollection (Ljava/util/Collection;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236831_ (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeMap (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236835_ (Ljava/util/Optional;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeOptional (Ljava/util/Optional;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236838_ (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Collection; net/minecraft/network/FriendlyByteBuf/readCollection (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Collection; +MD: net/minecraft/network/FriendlyByteBuf/m_236841_ (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; net/minecraft/network/FriendlyByteBuf/readMap (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; +MD: net/minecraft/network/FriendlyByteBuf/m_236845_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/List; net/minecraft/network/FriendlyByteBuf/readList (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/List; +MD: net/minecraft/network/FriendlyByteBuf/m_236847_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; net/minecraft/network/FriendlyByteBuf/readMap (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; +MD: net/minecraft/network/FriendlyByteBuf/m_236850_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/lambda$writeEither$7 (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236853_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/lambda$writeMap$5 (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236858_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/network/FriendlyByteBuf/writeResourceKey (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236860_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Optional; net/minecraft/network/FriendlyByteBuf/readOptional (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Optional; +MD: net/minecraft/network/FriendlyByteBuf/m_236862_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lcom/mojang/datafixers/util/Either; net/minecraft/network/FriendlyByteBuf/readEither (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/network/FriendlyByteBuf/m_236865_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/lambda$writeEither$6 (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236868_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readNullable (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_236870_ (I)I net/minecraft/network/FriendlyByteBuf/getMaxEncodedUtfLength (I)I +MD: net/minecraft/network/FriendlyByteBuf/m_236872_ ()Lnet/minecraft/core/GlobalPos; net/minecraft/network/FriendlyByteBuf/readGlobalPos ()Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/network/FriendlyByteBuf/m_236873_ ()Ljava/time/Instant; net/minecraft/network/FriendlyByteBuf/readInstant ()Ljava/time/Instant; +MD: net/minecraft/network/FriendlyByteBuf/m_236874_ ()Ljava/security/PublicKey; net/minecraft/network/FriendlyByteBuf/readPublicKey ()Ljava/security/PublicKey; +MD: net/minecraft/network/FriendlyByteBuf/m_236875_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/network/FriendlyByteBuf/readGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/network/FriendlyByteBuf/m_236876_ ()Lcom/mojang/authlib/properties/Property; net/minecraft/network/FriendlyByteBuf/readProperty ()Lcom/mojang/authlib/properties/Property; +MD: net/minecraft/network/FriendlyByteBuf/m_245616_ (Ljava/util/EnumSet;Ljava/lang/Class;)V net/minecraft/network/FriendlyByteBuf/writeEnumSet (Ljava/util/EnumSet;Ljava/lang/Class;)V +MD: net/minecraft/network/FriendlyByteBuf/m_246636_ (Lcom/mojang/authlib/properties/PropertyMap;)V net/minecraft/network/FriendlyByteBuf/writeGameProfileProperties (Lcom/mojang/authlib/properties/PropertyMap;)V +MD: net/minecraft/network/FriendlyByteBuf/m_246901_ (Ljava/util/BitSet;I)V net/minecraft/network/FriendlyByteBuf/writeFixedBitSet (Ljava/util/BitSet;I)V +MD: net/minecraft/network/FriendlyByteBuf/m_246981_ ()Lcom/mojang/authlib/properties/PropertyMap; net/minecraft/network/FriendlyByteBuf/readGameProfileProperties ()Lcom/mojang/authlib/properties/PropertyMap; +MD: net/minecraft/network/FriendlyByteBuf/m_247336_ (Ljava/lang/Class;)Ljava/util/EnumSet; net/minecraft/network/FriendlyByteBuf/readEnumSet (Ljava/lang/Class;)Ljava/util/EnumSet; +MD: net/minecraft/network/FriendlyByteBuf/m_247358_ (I)Ljava/util/BitSet; net/minecraft/network/FriendlyByteBuf/readFixedBitSet (I)Ljava/util/BitSet; +MD: net/minecraft/network/FriendlyByteBuf/m_260777_ (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; net/minecraft/network/FriendlyByteBuf/lambda$writeJsonWithCodec$3 (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_260778_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; net/minecraft/network/FriendlyByteBuf/lambda$readWithCodec$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_263187_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/core/Holder; net/minecraft/network/FriendlyByteBuf/readById (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/core/Holder; +MD: net/minecraft/network/FriendlyByteBuf/m_263218_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/core/Holder;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeId (Lnet/minecraft/core/IdMap;Lnet/minecraft/core/Holder;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_266332_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/writeWithCodec (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_266466_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readWithCodec (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_269101_ (Lorg/joml/Quaternionf;)V net/minecraft/network/FriendlyByteBuf/writeQuaternion (Lorg/joml/Quaternionf;)V +MD: net/minecraft/network/FriendlyByteBuf/m_269131_ ()Lorg/joml/Quaternionf; net/minecraft/network/FriendlyByteBuf/readQuaternion ()Lorg/joml/Quaternionf; +MD: net/minecraft/network/FriendlyByteBuf/m_269394_ ()Lorg/joml/Vector3f; net/minecraft/network/FriendlyByteBuf/readVector3f ()Lorg/joml/Vector3f; +MD: net/minecraft/network/FriendlyByteBuf/m_269582_ (Lorg/joml/Vector3f;)V net/minecraft/network/FriendlyByteBuf/writeVector3f (Lorg/joml/Vector3f;)V +MD: net/minecraft/network/FriendlyByteBuf/m_271590_ (Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; net/minecraft/network/FriendlyByteBuf/lambda$readJsonWithCodec$2 (Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_271591_ (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; net/minecraft/network/FriendlyByteBuf/lambda$writeWithCodec$1 (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_271872_ (Lcom/mojang/serialization/Codec;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readJsonWithCodec (Lcom/mojang/serialization/Codec;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_272073_ (Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/writeJsonWithCodec (Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/markReaderIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/markReaderIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/markWriterIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/markWriterIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/maxCapacity ()I net/minecraft/network/FriendlyByteBuf/maxCapacity ()I +MD: net/minecraft/network/FriendlyByteBuf/maxWritableBytes ()I net/minecraft/network/FriendlyByteBuf/maxWritableBytes ()I +MD: net/minecraft/network/FriendlyByteBuf/memoryAddress ()J net/minecraft/network/FriendlyByteBuf/memoryAddress ()J +MD: net/minecraft/network/FriendlyByteBuf/nioBuffer ()Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffer ()Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/nioBuffer (II)Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffer (II)Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/nioBufferCount ()I net/minecraft/network/FriendlyByteBuf/nioBufferCount ()I +MD: net/minecraft/network/FriendlyByteBuf/nioBuffers (II)[Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffers (II)[Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/nioBuffers ()[Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffers ()[Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/order ()Ljava/nio/ByteOrder; net/minecraft/network/FriendlyByteBuf/order ()Ljava/nio/ByteOrder; +MD: net/minecraft/network/FriendlyByteBuf/readBoolean ()Z net/minecraft/network/FriendlyByteBuf/readBoolean ()Z +MD: net/minecraft/network/FriendlyByteBuf/readByte ()B net/minecraft/network/FriendlyByteBuf/readByte ()B +MD: net/minecraft/network/FriendlyByteBuf/readBytes (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/GatheringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/GatheringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes ([B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes ([B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes ([BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes ([BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readChar ()C net/minecraft/network/FriendlyByteBuf/readChar ()C +MD: net/minecraft/network/FriendlyByteBuf/readCharSequence (ILjava/nio/charset/Charset;)Ljava/lang/CharSequence; net/minecraft/network/FriendlyByteBuf/readCharSequence (ILjava/nio/charset/Charset;)Ljava/lang/CharSequence; +MD: net/minecraft/network/FriendlyByteBuf/readDouble ()D net/minecraft/network/FriendlyByteBuf/readDouble ()D +MD: net/minecraft/network/FriendlyByteBuf/readFloat ()F net/minecraft/network/FriendlyByteBuf/readFloat ()F +MD: net/minecraft/network/FriendlyByteBuf/readInt ()I net/minecraft/network/FriendlyByteBuf/readInt ()I +MD: net/minecraft/network/FriendlyByteBuf/readIntLE ()I net/minecraft/network/FriendlyByteBuf/readIntLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readLong ()J net/minecraft/network/FriendlyByteBuf/readLong ()J +MD: net/minecraft/network/FriendlyByteBuf/readLongLE ()J net/minecraft/network/FriendlyByteBuf/readLongLE ()J +MD: net/minecraft/network/FriendlyByteBuf/readMedium ()I net/minecraft/network/FriendlyByteBuf/readMedium ()I +MD: net/minecraft/network/FriendlyByteBuf/readMediumLE ()I net/minecraft/network/FriendlyByteBuf/readMediumLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readRetainedSlice (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readRetainedSlice (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readShort ()S net/minecraft/network/FriendlyByteBuf/readShort ()S +MD: net/minecraft/network/FriendlyByteBuf/readShortLE ()S net/minecraft/network/FriendlyByteBuf/readShortLE ()S +MD: net/minecraft/network/FriendlyByteBuf/readSlice (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readSlice (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedByte ()S net/minecraft/network/FriendlyByteBuf/readUnsignedByte ()S +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedInt ()J net/minecraft/network/FriendlyByteBuf/readUnsignedInt ()J +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedIntLE ()J net/minecraft/network/FriendlyByteBuf/readUnsignedIntLE ()J +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedMedium ()I net/minecraft/network/FriendlyByteBuf/readUnsignedMedium ()I +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedMediumLE ()I net/minecraft/network/FriendlyByteBuf/readUnsignedMediumLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedShort ()I net/minecraft/network/FriendlyByteBuf/readUnsignedShort ()I +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedShortLE ()I net/minecraft/network/FriendlyByteBuf/readUnsignedShortLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readableBytes ()I net/minecraft/network/FriendlyByteBuf/readableBytes ()I +MD: net/minecraft/network/FriendlyByteBuf/readerIndex ()I net/minecraft/network/FriendlyByteBuf/readerIndex ()I +MD: net/minecraft/network/FriendlyByteBuf/readerIndex (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readerIndex (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/refCnt ()I net/minecraft/network/FriendlyByteBuf/refCnt ()I +MD: net/minecraft/network/FriendlyByteBuf/release (I)Z net/minecraft/network/FriendlyByteBuf/release (I)Z +MD: net/minecraft/network/FriendlyByteBuf/release ()Z net/minecraft/network/FriendlyByteBuf/release ()Z +MD: net/minecraft/network/FriendlyByteBuf/resetReaderIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/resetReaderIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/resetWriterIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/resetWriterIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/retainedDuplicate ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retainedDuplicate ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retainedSlice ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retainedSlice ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retainedSlice (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retainedSlice (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBoolean (IZ)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBoolean (IZ)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setByte (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setByte (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/io/InputStream;I)I net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/io/InputStream;I)I +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (I[BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (I[BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (I[B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (I[B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/setChar (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setChar (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setCharSequence (ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I net/minecraft/network/FriendlyByteBuf/setCharSequence (ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I +MD: net/minecraft/network/FriendlyByteBuf/setDouble (ID)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setDouble (ID)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setFloat (IF)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setFloat (IF)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setIndex (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setIndex (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setInt (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setInt (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setIntLE (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setIntLE (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setLong (IJ)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setLong (IJ)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setLongLE (IJ)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setLongLE (IJ)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setMedium (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setMedium (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setMediumLE (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setMediumLE (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setShort (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setShort (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setShortLE (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setShortLE (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setZero (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setZero (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/skipBytes (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/skipBytes (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/slice (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/slice (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/slice ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/slice ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/toString (IILjava/nio/charset/Charset;)Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/toString (IILjava/nio/charset/Charset;)Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/toString (Ljava/nio/charset/Charset;)Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/toString (Ljava/nio/charset/Charset;)Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/toString ()Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/toString ()Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/unwrap ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/unwrap ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writableBytes ()I net/minecraft/network/FriendlyByteBuf/writableBytes ()I +MD: net/minecraft/network/FriendlyByteBuf/writeBoolean (Z)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBoolean (Z)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeByte (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeByte (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/io/InputStream;I)I net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/io/InputStream;I)I +MD: net/minecraft/network/FriendlyByteBuf/writeBytes ([BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes ([BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/writeBytes ([B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes ([B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeChar (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeChar (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeCharSequence (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I net/minecraft/network/FriendlyByteBuf/writeCharSequence (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I +MD: net/minecraft/network/FriendlyByteBuf/writeDouble (D)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeDouble (D)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeFloat (F)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeFloat (F)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeInt (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeInt (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeIntLE (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeIntLE (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeLong (J)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeLong (J)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeLongLE (J)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeLongLE (J)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeMedium (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeMedium (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeMediumLE (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeMediumLE (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeShort (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeShort (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeShortLE (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeShortLE (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeZero (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeZero (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writerIndex ()I net/minecraft/network/FriendlyByteBuf/writerIndex ()I +MD: net/minecraft/network/FriendlyByteBuf/writerIndex (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writerIndex (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf$1/ ()V net/minecraft/network/FriendlyByteBuf$1/ ()V +MD: net/minecraft/network/FriendlyByteBuf$Reader/m_236877_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; net/minecraft/network/FriendlyByteBuf$Reader/lambda$asOptional$0 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; +MD: net/minecraft/network/FriendlyByteBuf$Reader/m_236879_ ()Lnet/minecraft/network/FriendlyByteBuf$Reader; net/minecraft/network/FriendlyByteBuf$Reader/asOptional ()Lnet/minecraft/network/FriendlyByteBuf$Reader; +MD: net/minecraft/network/FriendlyByteBuf$Writer/m_236880_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V net/minecraft/network/FriendlyByteBuf$Writer/lambda$asOptional$0 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V +MD: net/minecraft/network/FriendlyByteBuf$Writer/m_236883_ ()Lnet/minecraft/network/FriendlyByteBuf$Writer; net/minecraft/network/FriendlyByteBuf$Writer/asOptional ()Lnet/minecraft/network/FriendlyByteBuf$Writer; +MD: net/minecraft/network/PacketBundlePacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketBundlePacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V +MD: net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V +MD: net/minecraft/network/PacketBundleUnpacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketBundleUnpacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V +MD: net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V +MD: net/minecraft/network/PacketDecoder/ ()V net/minecraft/network/PacketDecoder/ ()V +MD: net/minecraft/network/PacketDecoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketDecoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/PacketDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/PacketEncoder/ ()V net/minecraft/network/PacketEncoder/ ()V +MD: net/minecraft/network/PacketEncoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketEncoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/PacketListener/m_201767_ ()Z net/minecraft/network/PacketListener/shouldPropagateHandlingExceptions ()Z +MD: net/minecraft/network/PacketListener/m_6198_ ()Z net/minecraft/network/PacketListener/isAcceptingMessages ()Z +MD: net/minecraft/network/PacketListener/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/PacketListener/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/PacketSendListener/m_243073_ (Ljava/util/function/Supplier;)Lnet/minecraft/network/PacketSendListener; net/minecraft/network/PacketSendListener/exceptionallySend (Ljava/util/function/Supplier;)Lnet/minecraft/network/PacketSendListener; +MD: net/minecraft/network/PacketSendListener/m_243092_ (Ljava/lang/Runnable;)Lnet/minecraft/network/PacketSendListener; net/minecraft/network/PacketSendListener/thenRun (Ljava/lang/Runnable;)Lnet/minecraft/network/PacketSendListener; +MD: net/minecraft/network/PacketSendListener/m_243096_ ()V net/minecraft/network/PacketSendListener/onSuccess ()V +MD: net/minecraft/network/PacketSendListener/m_243103_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/network/PacketSendListener/onFailure ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/PacketSendListener$1/ (Ljava/lang/Runnable;)V net/minecraft/network/PacketSendListener$1/ (Ljava/lang/Runnable;)V +MD: net/minecraft/network/PacketSendListener$1/m_243096_ ()V net/minecraft/network/PacketSendListener$1/onSuccess ()V +MD: net/minecraft/network/PacketSendListener$1/m_243103_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/network/PacketSendListener$1/onFailure ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/PacketSendListener$2/ (Ljava/util/function/Supplier;)V net/minecraft/network/PacketSendListener$2/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/network/PacketSendListener$2/m_243103_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/network/PacketSendListener$2/onFailure ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/RateKickingConnection/ ()V net/minecraft/network/RateKickingConnection/ ()V +MD: net/minecraft/network/RateKickingConnection/ (I)V net/minecraft/network/RateKickingConnection/ (I)V +MD: net/minecraft/network/RateKickingConnection/m_130559_ ()V net/minecraft/network/RateKickingConnection/lambda$tickSecond$0 ()V +MD: net/minecraft/network/RateKickingConnection/m_7073_ ()V net/minecraft/network/RateKickingConnection/tickSecond ()V +MD: net/minecraft/network/SkipPacketException/ (Ljava/lang/Throwable;)V net/minecraft/network/SkipPacketException/ (Ljava/lang/Throwable;)V +MD: net/minecraft/network/TickablePacketListener/m_9933_ ()V net/minecraft/network/TickablePacketListener/tick ()V +MD: net/minecraft/network/Varint21FrameDecoder/ ()V net/minecraft/network/Varint21FrameDecoder/ ()V +MD: net/minecraft/network/Varint21FrameDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/Varint21FrameDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/Varint21LengthFieldPrepender/ ()V net/minecraft/network/Varint21LengthFieldPrepender/ ()V +MD: net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/chat/ChatDecorator/ ()V net/minecraft/network/chat/ChatDecorator/ ()V +MD: net/minecraft/network/chat/ChatDecorator/m_236949_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; net/minecraft/network/chat/ChatDecorator/lambda$static$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/network/chat/ChatDecorator/m_236961_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; net/minecraft/network/chat/ChatDecorator/decorate (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/network/chat/ChatType/ ()V net/minecraft/network/chat/ChatType/ ()V +MD: net/minecraft/network/chat/ChatType/ (Lnet/minecraft/network/chat/ChatTypeDecoration;Lnet/minecraft/network/chat/ChatTypeDecoration;)V net/minecraft/network/chat/ChatType/ (Lnet/minecraft/network/chat/ChatTypeDecoration;Lnet/minecraft/network/chat/ChatTypeDecoration;)V +MD: net/minecraft/network/chat/ChatType/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatType/f_237011_ ()Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatType/chat ()Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatType/f_237013_ ()Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatType/narration ()Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatType/hashCode ()I net/minecraft/network/chat/ChatType/hashCode ()I +MD: net/minecraft/network/chat/ChatType/m_237021_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/network/chat/ChatType/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/network/chat/ChatType/m_237023_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/chat/ChatType/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/chat/ChatType/m_240391_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/ChatType/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/ChatType/m_240968_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/m_240980_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/m_240982_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/m_241073_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatType/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ChatType$Bound/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatType$Bound/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatType$Bound/f_240859_ ()Lnet/minecraft/network/chat/ChatType; net/minecraft/network/chat/ChatType$Bound/chatType ()Lnet/minecraft/network/chat/ChatType; +MD: net/minecraft/network/chat/ChatType$Bound/f_240886_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/name ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/f_240896_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/targetName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/hashCode ()I net/minecraft/network/chat/ChatType$Bound/hashCode ()I +MD: net/minecraft/network/chat/ChatType$Bound/m_240941_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/decorateNarration (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/m_240977_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/decorate (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/m_240987_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/network/chat/ChatType$BoundNetwork; net/minecraft/network/chat/ChatType$Bound/toNetwork (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/network/chat/ChatType$BoundNetwork; +MD: net/minecraft/network/chat/ChatType$Bound/m_241018_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType$Bound/withTargetName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType$Bound/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatType$Bound/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ChatType$BoundNetwork/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ChatType$BoundNetwork/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/ChatType$BoundNetwork/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/ChatType$BoundNetwork/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatType$BoundNetwork/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240862_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$BoundNetwork/name ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240865_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$BoundNetwork/targetName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240870_ ()I net/minecraft/network/chat/ChatType$BoundNetwork/chatType ()I +MD: net/minecraft/network/chat/ChatType$BoundNetwork/hashCode ()I net/minecraft/network/chat/ChatType$BoundNetwork/hashCode ()I +MD: net/minecraft/network/chat/ChatType$BoundNetwork/m_240969_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/ChatType$BoundNetwork/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/ChatType$BoundNetwork/m_242617_ (Lnet/minecraft/network/chat/ChatType;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType$BoundNetwork/lambda$resolve$0 (Lnet/minecraft/network/chat/ChatType;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/m_242652_ (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Optional; net/minecraft/network/chat/ChatType$BoundNetwork/resolve (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Optional; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatType$BoundNetwork/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration/ ()V net/minecraft/network/chat/ChatTypeDecoration/ ()V +MD: net/minecraft/network/chat/ChatTypeDecoration/ (Ljava/lang/String;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V net/minecraft/network/chat/ChatTypeDecoration/ (Ljava/lang/String;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/network/chat/ChatTypeDecoration/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatTypeDecoration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatTypeDecoration/f_238656_ ()Ljava/util/List; net/minecraft/network/chat/ChatTypeDecoration/parameters ()Ljava/util/List; +MD: net/minecraft/network/chat/ChatTypeDecoration/f_238694_ ()Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/ChatTypeDecoration/style ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/ChatTypeDecoration/f_238741_ ()Ljava/lang/String; net/minecraft/network/chat/ChatTypeDecoration/translationKey ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration/hashCode ()I net/minecraft/network/chat/ChatTypeDecoration/hashCode ()I +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239094_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/teamMessage (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239222_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/withSender (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239424_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/incomingDirectMessage (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239988_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/ChatTypeDecoration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_240709_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/outgoingDirectMessage (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_240955_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration/decorate (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_241038_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)[Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration/resolveParameters (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatTypeDecoration/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/ ()V net/minecraft/network/chat/ChatTypeDecoration$Parameter/ ()V +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector;)V net/minecraft/network/chat/ChatTypeDecoration$Parameter/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector;)V +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_238947_ ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; net/minecraft/network/chat/ChatTypeDecoration$Parameter/$values ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_239973_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/lambda$static$2 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_240927_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/lambda$static$1 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_240928_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/lambda$static$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_240974_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/select (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_7912_ ()Ljava/lang/String; net/minecraft/network/chat/ChatTypeDecoration$Parameter/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; net/minecraft/network/chat/ChatTypeDecoration$Parameter/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/values ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; net/minecraft/network/chat/ChatTypeDecoration$Parameter/values ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector/m_239619_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector/select (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ClickEvent/ (Lnet/minecraft/network/chat/ClickEvent$Action;Ljava/lang/String;)V net/minecraft/network/chat/ClickEvent/ (Lnet/minecraft/network/chat/ClickEvent$Action;Ljava/lang/String;)V +MD: net/minecraft/network/chat/ClickEvent/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ClickEvent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ClickEvent/hashCode ()I net/minecraft/network/chat/ClickEvent/hashCode ()I +MD: net/minecraft/network/chat/ClickEvent/m_130622_ ()Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent/getAction ()Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent/m_130623_ ()Ljava/lang/String; net/minecraft/network/chat/ClickEvent/getValue ()Ljava/lang/String; +MD: net/minecraft/network/chat/ClickEvent/toString ()Ljava/lang/String; net/minecraft/network/chat/ClickEvent/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ClickEvent$Action/ ()V net/minecraft/network/chat/ClickEvent$Action/ ()V +MD: net/minecraft/network/chat/ClickEvent$Action/ (Ljava/lang/String;ILjava/lang/String;Z)V net/minecraft/network/chat/ClickEvent$Action/ (Ljava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/network/chat/ClickEvent$Action/m_130644_ ()Z net/minecraft/network/chat/ClickEvent$Action/isAllowedFromServer ()Z +MD: net/minecraft/network/chat/ClickEvent$Action/m_130645_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/getByName (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/m_130647_ (Lnet/minecraft/network/chat/ClickEvent$Action;)Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/lambda$static$0 (Lnet/minecraft/network/chat/ClickEvent$Action;)Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/m_130649_ ()Ljava/lang/String; net/minecraft/network/chat/ClickEvent$Action/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/ClickEvent$Action/m_178387_ ()[Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/$values ()[Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/values ()[Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/values ()[Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/CommonComponents/ ()V net/minecraft/network/chat/CommonComponents/ ()V +MD: net/minecraft/network/chat/CommonComponents/ ()V net/minecraft/network/chat/CommonComponents/ ()V +MD: net/minecraft/network/chat/CommonComponents/m_130663_ (Lnet/minecraft/network/chat/Component;Z)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/optionStatus (Lnet/minecraft/network/chat/Component;Z)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_130666_ (Z)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/CommonComponents/optionStatus (Z)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/CommonComponents/m_178391_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/CommonComponents/joinLines (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/CommonComponents/m_178393_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/optionNameValue (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_178396_ ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/CommonComponents/joinLines ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/CommonComponents/m_239422_ (J)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/days (J)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_239877_ (J)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/minutes (J)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_240041_ (J)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/hours (J)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_264333_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/space ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_267603_ ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/joinForNarration ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/getString ()Ljava/lang/String; net/minecraft/network/chat/Component/getString ()Ljava/lang/String; +MD: net/minecraft/network/chat/Component/m_130668_ (I)Ljava/lang/String; net/minecraft/network/chat/Component/getString (I)Ljava/lang/String; +MD: net/minecraft/network/chat/Component/m_130670_ (ILjava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/Component/lambda$getString$0 (ILjava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_130674_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/Component/nullToEmpty (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/Component/m_178401_ (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/Component/lambda$toFlatList$1 (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_178405_ (Lnet/minecraft/network/chat/Style;)Ljava/util/List; net/minecraft/network/chat/Component/toFlatList (Lnet/minecraft/network/chat/Style;)Ljava/util/List; +MD: net/minecraft/network/chat/Component/m_214077_ ()Lnet/minecraft/network/chat/ComponentContents; net/minecraft/network/chat/Component/getContents ()Lnet/minecraft/network/chat/ComponentContents; +MD: net/minecraft/network/chat/Component/m_237099_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/score (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237102_ (Ljava/lang/String;Ljava/util/Optional;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/selector (Ljava/lang/String;Ljava/util/Optional;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237105_ (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/nbt (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237110_ (Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatable (Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237113_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/literal (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237115_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatable (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237117_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/keybind (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237119_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/empty ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_240407_ ()Ljava/util/List; net/minecraft/network/chat/Component/toFlatList ()Ljava/util/List; +MD: net/minecraft/network/chat/Component/m_240452_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/network/chat/Component/contains (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/network/chat/Component/m_264568_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatableWithFallback (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_264642_ (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatableWithFallback (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/Component/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_6879_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/plainCopy ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_6881_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/copy ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_7360_ ()Ljava/util/List; net/minecraft/network/chat/Component/getSiblings ()Ljava/util/List; +MD: net/minecraft/network/chat/Component/m_7383_ ()Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Component/getStyle ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Component/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Component/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_7532_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/network/chat/Component/getVisualOrderText ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/network/chat/Component$Serializer/ ()V net/minecraft/network/chat/Component$Serializer/ ()V +MD: net/minecraft/network/chat/Component$Serializer/ ()V net/minecraft/network/chat/Component$Serializer/ ()V +MD: net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/network/chat/Component$Serializer/m_130690_ ()Ljava/lang/reflect/Field; net/minecraft/network/chat/Component$Serializer/lambda$static$2 ()Ljava/lang/reflect/Field; +MD: net/minecraft/network/chat/Component$Serializer/m_130691_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130697_ (Lcom/google/gson/stream/JsonReader;)I net/minecraft/network/chat/Component$Serializer/getPos (Lcom/google/gson/stream/JsonReader;)I +MD: net/minecraft/network/chat/Component$Serializer/m_130699_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJson (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130701_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJson (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130703_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/network/chat/Component$Serializer/toJson (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/network/chat/Component$Serializer/m_130709_ (Lnet/minecraft/network/chat/Style;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/network/chat/Component$Serializer/serializeStyle (Lnet/minecraft/network/chat/Style;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/network/chat/Component$Serializer/m_130713_ ()Ljava/lang/reflect/Field; net/minecraft/network/chat/Component$Serializer/lambda$static$1 ()Ljava/lang/reflect/Field; +MD: net/minecraft/network/chat/Component$Serializer/m_130714_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJsonLenient (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130716_ (Lnet/minecraft/network/chat/Component;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Component$Serializer/toJsonTree (Lnet/minecraft/network/chat/Component;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/Component$Serializer/m_130718_ ()Lcom/google/gson/Gson; net/minecraft/network/chat/Component$Serializer/lambda$static$0 ()Lcom/google/gson/Gson; +MD: net/minecraft/network/chat/Component$Serializer/m_178407_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/Component$Serializer/lambda$serializeSeparator$3 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/Component$Serializer/m_178411_ (Lcom/google/gson/JsonSerializationContext;Lcom/google/gson/JsonObject;Ljava/util/Optional;)V net/minecraft/network/chat/Component$Serializer/serializeSeparator (Lcom/google/gson/JsonSerializationContext;Lcom/google/gson/JsonObject;Ljava/util/Optional;)V +MD: net/minecraft/network/chat/Component$Serializer/m_178415_ (Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Optional; net/minecraft/network/chat/Component$Serializer/parseSeparator (Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component$Serializer/m_237120_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/chat/Component$Serializer/unwrapTextArgument (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/chat/Component$Serializer/m_237122_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/network/chat/Component$Serializer/toStableJson (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/network/chat/Component$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Component$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/Component$Serializer/serialize (Lnet/minecraft/network/chat/Component;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Component$Serializer/serialize (Lnet/minecraft/network/chat/Component;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/ComponentContents/ ()V net/minecraft/network/chat/ComponentContents/ ()V +MD: net/minecraft/network/chat/ComponentContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/ComponentContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/ComponentContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/ComponentContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/ComponentContents$1/ ()V net/minecraft/network/chat/ComponentContents$1/ ()V +MD: net/minecraft/network/chat/ComponentContents$1/toString ()Ljava/lang/String; net/minecraft/network/chat/ComponentContents$1/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ComponentUtils/ ()V net/minecraft/network/chat/ComponentUtils/ ()V +MD: net/minecraft/network/chat/ComponentUtils/ ()V net/minecraft/network/chat/ComponentUtils/ ()V +MD: net/minecraft/network/chat/ComponentUtils/m_130727_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/getDisplayName (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130729_ (Lcom/mojang/brigadier/Message;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/fromMessage (Lcom/mojang/brigadier/Message;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130731_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/updateForEntity (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_130736_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Style;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/ComponentUtils/resolveStyle (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Style;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/ComponentUtils/m_130741_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/lambda$formatList$0 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130743_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130745_ (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatAndSortList (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130748_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/wrapInSquareBrackets (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_130750_ (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/mergeStyles (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_178424_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Optional;Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; net/minecraft/network/chat/ComponentUtils/updateForEntity (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Optional;Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; +MD: net/minecraft/network/chat/ComponentUtils/m_178429_ (Ljava/util/Collection;Ljava/util/Optional;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Ljava/util/Optional;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_178433_ (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_178436_ (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_178440_ (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_237134_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/network/chat/ComponentUtils/isTranslationResolvable (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/network/chat/ComponentUtils/m_257121_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/ComponentUtils/lambda$copyOnClickText$1 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/ComponentUtils/m_258024_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/copyOnClickText (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/FilterMask/ ()V net/minecraft/network/chat/FilterMask/ ()V +MD: net/minecraft/network/chat/FilterMask/ (I)V net/minecraft/network/chat/FilterMask/ (I)V +MD: net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;)V net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;)V +MD: net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;Lnet/minecraft/network/chat/FilterMask$Type;)V net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;Lnet/minecraft/network/chat/FilterMask$Type;)V +MD: net/minecraft/network/chat/FilterMask/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/FilterMask/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/FilterMask/hashCode ()I net/minecraft/network/chat/FilterMask/hashCode ()I +MD: net/minecraft/network/chat/FilterMask/m_243067_ ()Z net/minecraft/network/chat/FilterMask/isFullyFiltered ()Z +MD: net/minecraft/network/chat/FilterMask/m_243095_ ()Z net/minecraft/network/chat/FilterMask/isEmpty ()Z +MD: net/minecraft/network/chat/FilterMask/m_243104_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/FilterMask; net/minecraft/network/chat/FilterMask/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/network/chat/FilterMask/m_243105_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/FilterMask;)V net/minecraft/network/chat/FilterMask/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/FilterMask;)V +MD: net/minecraft/network/chat/FilterMask/m_243114_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/network/chat/FilterMask/apply (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/network/chat/FilterMask/m_243123_ (I)V net/minecraft/network/chat/FilterMask/setFiltered (I)V +MD: net/minecraft/network/chat/FilterMask/m_246134_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/FilterMask/applyWithFormatting (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/FilterMask/m_252818_ ()Ljava/util/BitSet; net/minecraft/network/chat/FilterMask/mask ()Ljava/util/BitSet; +MD: net/minecraft/network/chat/FilterMask/m_252945_ ()Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask/type ()Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FilterMask$1/ ()V net/minecraft/network/chat/FilterMask$1/ ()V +MD: net/minecraft/network/chat/FilterMask$Type/ ()V net/minecraft/network/chat/FilterMask$Type/ ()V +MD: net/minecraft/network/chat/FilterMask$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/network/chat/FilterMask$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/network/chat/FilterMask$Type/m_243133_ ()[Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask$Type/$values ()[Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FilterMask$Type/m_252790_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/lambda$static$0 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_252956_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/lambda$static$1 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_253044_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/lambda$static$2 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_253171_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_7912_ ()Ljava/lang/String; net/minecraft/network/chat/FilterMask$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/network/chat/FilterMask$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FilterMask$Type/values ()[Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask$Type/values ()[Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FormattedText/ ()V net/minecraft/network/chat/FormattedText/ ()V +MD: net/minecraft/network/chat/FormattedText/getString ()Ljava/lang/String; net/minecraft/network/chat/FormattedText/getString ()Ljava/lang/String; +MD: net/minecraft/network/chat/FormattedText/m_130762_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/of (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_130765_ (Ljava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText/lambda$getString$0 (Ljava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText/m_130768_ (Ljava/util/List;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/composite (Ljava/util/List;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_130773_ ([Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/composite ([Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_130775_ (Ljava/lang/String;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/of (Ljava/lang/String;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$1/ ()V net/minecraft/network/chat/FormattedText$1/ ()V +MD: net/minecraft/network/chat/FormattedText$1/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$1/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$1/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$1/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$2/ (Ljava/lang/String;)V net/minecraft/network/chat/FormattedText$2/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/FormattedText$2/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$2/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$2/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$2/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$3/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V net/minecraft/network/chat/FormattedText$3/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/network/chat/FormattedText$3/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$3/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$3/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$3/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$4/ (Ljava/util/List;)V net/minecraft/network/chat/FormattedText$4/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/FormattedText$4/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$4/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$4/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$4/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$ContentConsumer/m_130809_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$ContentConsumer/accept (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$StyledContentConsumer/m_7164_ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$StyledContentConsumer/accept (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/HoverEvent/ ()V net/minecraft/network/chat/HoverEvent/ ()V +MD: net/minecraft/network/chat/HoverEvent/ (Lnet/minecraft/network/chat/HoverEvent$Action;Ljava/lang/Object;)V net/minecraft/network/chat/HoverEvent/ (Lnet/minecraft/network/chat/HoverEvent$Action;Ljava/lang/Object;)V +MD: net/minecraft/network/chat/HoverEvent/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/HoverEvent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/HoverEvent/hashCode ()I net/minecraft/network/chat/HoverEvent/hashCode ()I +MD: net/minecraft/network/chat/HoverEvent/m_130820_ ()Lnet/minecraft/network/chat/HoverEvent$Action; net/minecraft/network/chat/HoverEvent/getAction ()Lnet/minecraft/network/chat/HoverEvent$Action; +MD: net/minecraft/network/chat/HoverEvent/m_130821_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/HoverEvent/deserialize (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/HoverEvent/m_130823_ (Lnet/minecraft/network/chat/HoverEvent$Action;)Ljava/lang/Object; net/minecraft/network/chat/HoverEvent/getValue (Lnet/minecraft/network/chat/HoverEvent$Action;)Ljava/lang/Object; +MD: net/minecraft/network/chat/HoverEvent/m_130825_ ()Lcom/google/gson/JsonObject; net/minecraft/network/chat/HoverEvent/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/network/chat/HoverEvent/toString ()Ljava/lang/String; net/minecraft/network/chat/HoverEvent/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/HoverEvent$Action/ ()V net/minecraft/network/chat/HoverEvent$Action/ ()V +MD: net/minecraft/network/chat/HoverEvent$Action/ (Ljava/lang/String;ZLjava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/network/chat/HoverEvent$Action/ (Ljava/lang/String;ZLjava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/network/chat/HoverEvent$Action/m_130847_ ()Z net/minecraft/network/chat/HoverEvent$Action/isAllowedFromServer ()Z +MD: net/minecraft/network/chat/HoverEvent$Action/m_130848_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/HoverEvent$Action/deserialize (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130850_ (Ljava/lang/Object;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/HoverEvent$Action/serializeArg (Ljava/lang/Object;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130852_ (Ljava/lang/String;)Lnet/minecraft/network/chat/HoverEvent$Action; net/minecraft/network/chat/HoverEvent$Action/getByName (Ljava/lang/String;)Lnet/minecraft/network/chat/HoverEvent$Action; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130854_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/HoverEvent$Action/deserializeFromLegacy (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130861_ ()Ljava/lang/String; net/minecraft/network/chat/HoverEvent$Action/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130864_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/chat/HoverEvent$Action/cast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/chat/HoverEvent$Action/m_178443_ (Lnet/minecraft/network/chat/HoverEvent$Action;)Lnet/minecraft/network/chat/HoverEvent$Action; net/minecraft/network/chat/HoverEvent$Action/lambda$static$0 (Lnet/minecraft/network/chat/HoverEvent$Action;)Lnet/minecraft/network/chat/HoverEvent$Action; +MD: net/minecraft/network/chat/HoverEvent$Action/toString ()Ljava/lang/String; net/minecraft/network/chat/HoverEvent$Action/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/ (Lnet/minecraft/world/entity/EntityType;Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/ (Lnet/minecraft/world/entity/EntityType;Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/hashCode ()I net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/hashCode ()I +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130879_ ()Lcom/google/gson/JsonElement; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/serialize ()Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130880_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/create (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130882_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/create (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130884_ ()Ljava/util/List; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/getTooltipLines ()Ljava/util/List; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/HoverEvent$ItemStackInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/hashCode ()I net/minecraft/network/chat/HoverEvent$ItemStackInfo/hashCode ()I +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130898_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/chat/HoverEvent$ItemStackInfo/getItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130905_ ()Lcom/google/gson/JsonElement; net/minecraft/network/chat/HoverEvent$ItemStackInfo/serialize ()Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130906_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; net/minecraft/network/chat/HoverEvent$ItemStackInfo/create (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130908_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; net/minecraft/network/chat/HoverEvent$ItemStackInfo/create (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; +MD: net/minecraft/network/chat/LastSeenMessages/ ()V net/minecraft/network/chat/LastSeenMessages/ ()V +MD: net/minecraft/network/chat/LastSeenMessages/ (Ljava/util/List;)V net/minecraft/network/chat/LastSeenMessages/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/LastSeenMessages/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessages/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessages/f_241630_ ()Ljava/util/List; net/minecraft/network/chat/LastSeenMessages/entries ()Ljava/util/List; +MD: net/minecraft/network/chat/LastSeenMessages/hashCode ()I net/minecraft/network/chat/LastSeenMessages/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessages/m_245933_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/LastSeenMessages/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/LastSeenMessages/m_247067_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/LastSeenMessages$Packed; net/minecraft/network/chat/LastSeenMessages/pack (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/LastSeenMessages$Packed; +MD: net/minecraft/network/chat/LastSeenMessages/m_252644_ (Lnet/minecraft/network/chat/MessageSignatureCache;Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/chat/LastSeenMessages/lambda$pack$0 (Lnet/minecraft/network/chat/MessageSignatureCache;Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/chat/LastSeenMessages/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessages/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessages$Packed/ ()V net/minecraft/network/chat/LastSeenMessages$Packed/ ()V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/ (Ljava/util/List;)V net/minecraft/network/chat/LastSeenMessages$Packed/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessages$Packed/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessages$Packed/f_244613_ ()Ljava/util/List; net/minecraft/network/chat/LastSeenMessages$Packed/entries ()Ljava/util/List; +MD: net/minecraft/network/chat/LastSeenMessages$Packed/hashCode ()I net/minecraft/network/chat/LastSeenMessages$Packed/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessages$Packed/m_245073_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; net/minecraft/network/chat/LastSeenMessages$Packed/unpack (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; +MD: net/minecraft/network/chat/LastSeenMessages$Packed/m_246304_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Packed/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessages$Packed/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessages$Update/ (ILjava/util/BitSet;)V net/minecraft/network/chat/LastSeenMessages$Update/ (ILjava/util/BitSet;)V +MD: net/minecraft/network/chat/LastSeenMessages$Update/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Update/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Update/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessages$Update/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessages$Update/f_243843_ ()I net/minecraft/network/chat/LastSeenMessages$Update/offset ()I +MD: net/minecraft/network/chat/LastSeenMessages$Update/f_244446_ ()Ljava/util/BitSet; net/minecraft/network/chat/LastSeenMessages$Update/acknowledged ()Ljava/util/BitSet; +MD: net/minecraft/network/chat/LastSeenMessages$Update/hashCode ()I net/minecraft/network/chat/LastSeenMessages$Update/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessages$Update/m_242008_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Update/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Update/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessages$Update/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessagesTracker/ (I)V net/minecraft/network/chat/LastSeenMessagesTracker/ (I)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_245220_ (Lnet/minecraft/network/chat/MessageSignature;Z)Z net/minecraft/network/chat/LastSeenMessagesTracker/addPending (Lnet/minecraft/network/chat/MessageSignature;Z)Z +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_245313_ ()I net/minecraft/network/chat/LastSeenMessagesTracker/getAndClearOffset ()I +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_245480_ ()I net/minecraft/network/chat/LastSeenMessagesTracker/offset ()I +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_246067_ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/LastSeenMessagesTracker/ignorePending (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_246442_ ()Lnet/minecraft/network/chat/LastSeenMessagesTracker$Update; net/minecraft/network/chat/LastSeenMessagesTracker/generateAndApplyUpdate ()Lnet/minecraft/network/chat/LastSeenMessagesTracker$Update; +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_247638_ (Lnet/minecraft/network/chat/LastSeenTrackedEntry;)V net/minecraft/network/chat/LastSeenMessagesTracker/addEntry (Lnet/minecraft/network/chat/LastSeenTrackedEntry;)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/ (Lnet/minecraft/network/chat/LastSeenMessages;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V net/minecraft/network/chat/LastSeenMessagesTracker$Update/ (Lnet/minecraft/network/chat/LastSeenMessages;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessagesTracker$Update/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_243872_ ()Lnet/minecraft/network/chat/LastSeenMessages; net/minecraft/network/chat/LastSeenMessagesTracker$Update/lastSeen ()Lnet/minecraft/network/chat/LastSeenMessages; +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_244473_ ()Lnet/minecraft/network/chat/LastSeenMessages$Update; net/minecraft/network/chat/LastSeenMessagesTracker$Update/update ()Lnet/minecraft/network/chat/LastSeenMessages$Update; +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/hashCode ()I net/minecraft/network/chat/LastSeenMessagesTracker$Update/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessagesTracker$Update/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessagesValidator/ (I)V net/minecraft/network/chat/LastSeenMessagesValidator/ (I)V +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_245398_ (I)Z net/minecraft/network/chat/LastSeenMessagesValidator/applyOffset (I)Z +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_245741_ ()I net/minecraft/network/chat/LastSeenMessagesValidator/trackedMessagesCount ()I +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_247119_ (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; net/minecraft/network/chat/LastSeenMessagesValidator/applyUpdate (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_247482_ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/LastSeenMessagesValidator/addPending (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/LastSeenTrackedEntry/ (Lnet/minecraft/network/chat/MessageSignature;Z)V net/minecraft/network/chat/LastSeenTrackedEntry/ (Lnet/minecraft/network/chat/MessageSignature;Z)V +MD: net/minecraft/network/chat/LastSeenTrackedEntry/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenTrackedEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243846_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/LastSeenTrackedEntry/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243942_ ()Z net/minecraft/network/chat/LastSeenTrackedEntry/pending ()Z +MD: net/minecraft/network/chat/LastSeenTrackedEntry/hashCode ()I net/minecraft/network/chat/LastSeenTrackedEntry/hashCode ()I +MD: net/minecraft/network/chat/LastSeenTrackedEntry/m_247448_ ()Lnet/minecraft/network/chat/LastSeenTrackedEntry; net/minecraft/network/chat/LastSeenTrackedEntry/acknowledge ()Lnet/minecraft/network/chat/LastSeenTrackedEntry; +MD: net/minecraft/network/chat/LastSeenTrackedEntry/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenTrackedEntry/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LocalChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/network/chat/LocalChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/network/chat/LocalChatSession/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LocalChatSession/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LocalChatSession/f_243926_ ()Lnet/minecraft/world/entity/player/ProfileKeyPair; net/minecraft/network/chat/LocalChatSession/keyPair ()Lnet/minecraft/world/entity/player/ProfileKeyPair; +MD: net/minecraft/network/chat/LocalChatSession/f_244284_ ()Ljava/util/UUID; net/minecraft/network/chat/LocalChatSession/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/LocalChatSession/hashCode ()I net/minecraft/network/chat/LocalChatSession/hashCode ()I +MD: net/minecraft/network/chat/LocalChatSession/m_245157_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Lnet/minecraft/network/chat/LocalChatSession; net/minecraft/network/chat/LocalChatSession/create (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Lnet/minecraft/network/chat/LocalChatSession; +MD: net/minecraft/network/chat/LocalChatSession/m_245584_ ()Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/network/chat/LocalChatSession/asRemote ()Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/network/chat/LocalChatSession/m_247507_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; net/minecraft/network/chat/LocalChatSession/createMessageEncoder (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; +MD: net/minecraft/network/chat/LocalChatSession/toString ()Ljava/lang/String; net/minecraft/network/chat/LocalChatSession/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/MessageSignature/ ()V net/minecraft/network/chat/MessageSignature/ ()V +MD: net/minecraft/network/chat/MessageSignature/ ([B)V net/minecraft/network/chat/MessageSignature/ ([B)V +MD: net/minecraft/network/chat/MessageSignature/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/MessageSignature/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/MessageSignature/f_240884_ ()[B net/minecraft/network/chat/MessageSignature/bytes ()[B +MD: net/minecraft/network/chat/MessageSignature/hashCode ()I net/minecraft/network/chat/MessageSignature/hashCode ()I +MD: net/minecraft/network/chat/MessageSignature/m_241929_ ()Ljava/nio/ByteBuffer; net/minecraft/network/chat/MessageSignature/asByteBuffer ()Ljava/nio/ByteBuffer; +MD: net/minecraft/network/chat/MessageSignature/m_245099_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/MessageSignature/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/MessageSignature/m_245457_ (Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/util/SignatureUpdater;)Z net/minecraft/network/chat/MessageSignature/verify (Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/util/SignatureUpdater;)Z +MD: net/minecraft/network/chat/MessageSignature/m_246050_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/MessageSignature/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/MessageSignature/m_252849_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/chat/MessageSignature/pack (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/chat/MessageSignature/toString ()Ljava/lang/String; net/minecraft/network/chat/MessageSignature/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/MessageSignature$Packed/ (I)V net/minecraft/network/chat/MessageSignature$Packed/ (I)V +MD: net/minecraft/network/chat/MessageSignature$Packed/ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/MessageSignature$Packed/ (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/MessageSignature$Packed/ (ILnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/MessageSignature$Packed/ (ILnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/MessageSignature$Packed/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/MessageSignature$Packed/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/MessageSignature$Packed/f_244020_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/MessageSignature$Packed/fullSignature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/MessageSignature$Packed/f_244111_ ()I net/minecraft/network/chat/MessageSignature$Packed/id ()I +MD: net/minecraft/network/chat/MessageSignature$Packed/hashCode ()I net/minecraft/network/chat/MessageSignature$Packed/hashCode ()I +MD: net/minecraft/network/chat/MessageSignature$Packed/m_246314_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature$Packed;)V net/minecraft/network/chat/MessageSignature$Packed/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature$Packed;)V +MD: net/minecraft/network/chat/MessageSignature$Packed/m_246521_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/chat/MessageSignature$Packed/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/chat/MessageSignature$Packed/m_253223_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; net/minecraft/network/chat/MessageSignature$Packed/unpack (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; +MD: net/minecraft/network/chat/MessageSignature$Packed/toString ()Ljava/lang/String; net/minecraft/network/chat/MessageSignature$Packed/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/MessageSignatureCache/ (I)V net/minecraft/network/chat/MessageSignatureCache/ (I)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_245729_ (Ljava/util/ArrayDeque;)V net/minecraft/network/chat/MessageSignatureCache/push (Ljava/util/ArrayDeque;)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_246417_ (Ljava/util/List;)V net/minecraft/network/chat/MessageSignatureCache/push (Ljava/util/List;)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_246587_ ()Lnet/minecraft/network/chat/MessageSignatureCache; net/minecraft/network/chat/MessageSignatureCache/createDefault ()Lnet/minecraft/network/chat/MessageSignatureCache; +MD: net/minecraft/network/chat/MessageSignatureCache/m_247208_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/network/chat/MessageSignatureCache/push (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_252764_ (Lnet/minecraft/network/chat/MessageSignature;)I net/minecraft/network/chat/MessageSignatureCache/pack (Lnet/minecraft/network/chat/MessageSignature;)I +MD: net/minecraft/network/chat/MessageSignatureCache/m_252914_ (I)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/MessageSignatureCache/unpack (I)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/MutableComponent/ (Lnet/minecraft/network/chat/ComponentContents;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V net/minecraft/network/chat/MutableComponent/ (Lnet/minecraft/network/chat/ComponentContents;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/network/chat/MutableComponent/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/MutableComponent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/MutableComponent/hashCode ()I net/minecraft/network/chat/MutableComponent/hashCode ()I +MD: net/minecraft/network/chat/MutableComponent/m_130938_ (Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle (Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130940_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130944_ ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130946_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/append (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130948_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_214077_ ()Lnet/minecraft/network/chat/ComponentContents; net/minecraft/network/chat/MutableComponent/getContents ()Lnet/minecraft/network/chat/ComponentContents; +MD: net/minecraft/network/chat/MutableComponent/m_237204_ (Lnet/minecraft/network/chat/ComponentContents;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/create (Lnet/minecraft/network/chat/ComponentContents;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_6270_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/setStyle (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_7220_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/append (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_7360_ ()Ljava/util/List; net/minecraft/network/chat/MutableComponent/getSiblings ()Ljava/util/List; +MD: net/minecraft/network/chat/MutableComponent/m_7383_ ()Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/MutableComponent/getStyle ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/MutableComponent/m_7532_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/network/chat/MutableComponent/getVisualOrderText ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/network/chat/MutableComponent/toString ()Ljava/lang/String; net/minecraft/network/chat/MutableComponent/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/OutgoingChatMessage/m_245730_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/OutgoingChatMessage/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/OutgoingChatMessage/m_246195_ (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/network/chat/OutgoingChatMessage/sendToPlayer (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/network/chat/OutgoingChatMessage/m_247282_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/network/chat/OutgoingChatMessage; net/minecraft/network/chat/OutgoingChatMessage/create (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/network/chat/OutgoingChatMessage; +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/OutgoingChatMessage$Disguised/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/OutgoingChatMessage$Disguised/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/hashCode ()I net/minecraft/network/chat/OutgoingChatMessage$Disguised/hashCode ()I +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/m_245730_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/OutgoingChatMessage$Disguised/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/m_246195_ (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/network/chat/OutgoingChatMessage$Disguised/sendToPlayer (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/toString ()Ljava/lang/String; net/minecraft/network/chat/OutgoingChatMessage$Disguised/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/network/chat/OutgoingChatMessage$Player/ (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/OutgoingChatMessage$Player/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/f_243697_ ()Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/OutgoingChatMessage$Player/message ()Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/hashCode ()I net/minecraft/network/chat/OutgoingChatMessage$Player/hashCode ()I +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/m_245730_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/OutgoingChatMessage$Player/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/m_246195_ (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/network/chat/OutgoingChatMessage$Player/sendToPlayer (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/toString ()Ljava/lang/String; net/minecraft/network/chat/OutgoingChatMessage$Player/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/PlayerChatMessage/ ()V net/minecraft/network/chat/PlayerChatMessage/ ()V +MD: net/minecraft/network/chat/PlayerChatMessage/ (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;)V net/minecraft/network/chat/PlayerChatMessage/ (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;)V +MD: net/minecraft/network/chat/PlayerChatMessage/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/PlayerChatMessage/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/f_237215_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/PlayerChatMessage/unsignedContent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/PlayerChatMessage/f_240885_ ()Lnet/minecraft/network/chat/SignedMessageBody; net/minecraft/network/chat/PlayerChatMessage/signedBody ()Lnet/minecraft/network/chat/SignedMessageBody; +MD: net/minecraft/network/chat/PlayerChatMessage/f_242992_ ()Lnet/minecraft/network/chat/FilterMask; net/minecraft/network/chat/PlayerChatMessage/filterMask ()Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/network/chat/PlayerChatMessage/f_243882_ ()Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/PlayerChatMessage/link ()Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/PlayerChatMessage/f_244279_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/PlayerChatMessage/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/PlayerChatMessage/hashCode ()I net/minecraft/network/chat/PlayerChatMessage/hashCode ()I +MD: net/minecraft/network/chat/PlayerChatMessage/m_239022_ ()Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/removeUnsignedContent ()Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_240414_ (Ljava/time/Instant;)Z net/minecraft/network/chat/PlayerChatMessage/hasExpiredClient (Ljava/time/Instant;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_240431_ (Ljava/time/Instant;)Z net/minecraft/network/chat/PlayerChatMessage/hasExpiredServer (Ljava/time/Instant;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_241064_ ()J net/minecraft/network/chat/PlayerChatMessage/salt ()J +MD: net/minecraft/network/chat/PlayerChatMessage/m_241109_ ()Ljava/time/Instant; net/minecraft/network/chat/PlayerChatMessage/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/chat/PlayerChatMessage/m_241121_ (Lnet/minecraft/util/SignatureValidator;)Z net/minecraft/network/chat/PlayerChatMessage/verify (Lnet/minecraft/util/SignatureValidator;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_241956_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/withUnsignedContent (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_243059_ ()Z net/minecraft/network/chat/PlayerChatMessage/isFullyFiltered ()Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_243072_ (Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/filter (Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_243088_ (Ljava/util/UUID;)Z net/minecraft/network/chat/PlayerChatMessage/hasSignatureFrom (Ljava/util/UUID;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_243098_ (Z)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/filter (Z)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245167_ ()Ljava/util/UUID; net/minecraft/network/chat/PlayerChatMessage/sender ()Ljava/util/UUID; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245272_ ()Z net/minecraft/network/chat/PlayerChatMessage/hasSignature ()Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_245322_ (Lnet/minecraft/util/SignatureUpdater$Output;Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;)V net/minecraft/network/chat/PlayerChatMessage/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;)V +MD: net/minecraft/network/chat/PlayerChatMessage/m_245339_ ()Z net/minecraft/network/chat/PlayerChatMessage/isSystem ()Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_245394_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/PlayerChatMessage/lambda$decoratedContent$5 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245692_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/PlayerChatMessage/decoratedContent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245728_ ()Ljava/lang/String; net/minecraft/network/chat/PlayerChatMessage/signedContent ()Ljava/lang/String; +MD: net/minecraft/network/chat/PlayerChatMessage/m_246814_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/PlayerChatMessage/lambda$verify$4 (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/PlayerChatMessage/m_247306_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/system (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_247615_ (Ljava/util/UUID;Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/unsigned (Ljava/util/UUID;Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252645_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; net/minecraft/network/chat/PlayerChatMessage/lambda$static$1 (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252646_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; net/minecraft/network/chat/PlayerChatMessage/lambda$static$0 (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252647_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/PlayerChatMessage/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252648_ (Lnet/minecraft/network/chat/SignedMessageLink;Ljava/util/Optional;Lnet/minecraft/network/chat/SignedMessageBody;Ljava/util/Optional;Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/lambda$static$2 (Lnet/minecraft/network/chat/SignedMessageLink;Ljava/util/Optional;Lnet/minecraft/network/chat/SignedMessageBody;Ljava/util/Optional;Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/toString ()Ljava/lang/String; net/minecraft/network/chat/PlayerChatMessage/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/RemoteChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey;)V net/minecraft/network/chat/RemoteChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey;)V +MD: net/minecraft/network/chat/RemoteChatSession/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/RemoteChatSession/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/RemoteChatSession/f_243855_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey; net/minecraft/network/chat/RemoteChatSession/profilePublicKey ()Lnet/minecraft/world/entity/player/ProfilePublicKey; +MD: net/minecraft/network/chat/RemoteChatSession/f_244448_ ()Ljava/util/UUID; net/minecraft/network/chat/RemoteChatSession/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/RemoteChatSession/hashCode ()I net/minecraft/network/chat/RemoteChatSession/hashCode ()I +MD: net/minecraft/network/chat/RemoteChatSession/m_245949_ ()Lnet/minecraft/network/chat/SignedMessageValidator; net/minecraft/network/chat/RemoteChatSession/createMessageValidator ()Lnet/minecraft/network/chat/SignedMessageValidator; +MD: net/minecraft/network/chat/RemoteChatSession/m_245959_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; net/minecraft/network/chat/RemoteChatSession/createMessageDecoder (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +MD: net/minecraft/network/chat/RemoteChatSession/m_245986_ ()Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/chat/RemoteChatSession/asData ()Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/chat/RemoteChatSession/m_280521_ ()Z net/minecraft/network/chat/RemoteChatSession/hasExpired ()Z +MD: net/minecraft/network/chat/RemoteChatSession/toString ()Ljava/lang/String; net/minecraft/network/chat/RemoteChatSession/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/RemoteChatSession$Data/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V net/minecraft/network/chat/RemoteChatSession$Data/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V +MD: net/minecraft/network/chat/RemoteChatSession$Data/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/RemoteChatSession$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/RemoteChatSession$Data/f_243937_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; net/minecraft/network/chat/RemoteChatSession$Data/profilePublicKey ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +MD: net/minecraft/network/chat/RemoteChatSession$Data/f_244232_ ()Ljava/util/UUID; net/minecraft/network/chat/RemoteChatSession$Data/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/RemoteChatSession$Data/hashCode ()I net/minecraft/network/chat/RemoteChatSession$Data/hashCode ()I +MD: net/minecraft/network/chat/RemoteChatSession$Data/m_246364_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/chat/RemoteChatSession$Data/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/chat/RemoteChatSession$Data/m_247588_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/util/SignatureValidator;Ljava/time/Duration;)Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/network/chat/RemoteChatSession$Data/validate (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/util/SignatureValidator;Ljava/time/Duration;)Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/network/chat/RemoteChatSession$Data/m_247658_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V net/minecraft/network/chat/RemoteChatSession$Data/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V +MD: net/minecraft/network/chat/RemoteChatSession$Data/toString ()Ljava/lang/String; net/minecraft/network/chat/RemoteChatSession$Data/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand/ (Ljava/util/List;)V net/minecraft/network/chat/SignableCommand/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/SignableCommand/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignableCommand/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignableCommand/f_244150_ ()Ljava/util/List; net/minecraft/network/chat/SignableCommand/arguments ()Ljava/util/List; +MD: net/minecraft/network/chat/SignableCommand/hashCode ()I net/minecraft/network/chat/SignableCommand/hashCode ()I +MD: net/minecraft/network/chat/SignableCommand/m_246497_ (Lcom/mojang/brigadier/ParseResults;)Lnet/minecraft/network/chat/SignableCommand; net/minecraft/network/chat/SignableCommand/of (Lcom/mojang/brigadier/ParseResults;)Lnet/minecraft/network/chat/SignableCommand; +MD: net/minecraft/network/chat/SignableCommand/m_246854_ (Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List; net/minecraft/network/chat/SignableCommand/collectArguments (Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List; +MD: net/minecraft/network/chat/SignableCommand/toString ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand$Argument/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;Ljava/lang/String;)V net/minecraft/network/chat/SignableCommand$Argument/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;Ljava/lang/String;)V +MD: net/minecraft/network/chat/SignableCommand$Argument/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignableCommand$Argument/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignableCommand$Argument/f_243965_ ()Lcom/mojang/brigadier/tree/ArgumentCommandNode; net/minecraft/network/chat/SignableCommand$Argument/node ()Lcom/mojang/brigadier/tree/ArgumentCommandNode; +MD: net/minecraft/network/chat/SignableCommand$Argument/f_244218_ ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand$Argument/value ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand$Argument/hashCode ()I net/minecraft/network/chat/SignableCommand$Argument/hashCode ()I +MD: net/minecraft/network/chat/SignableCommand$Argument/m_246038_ ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand$Argument/name ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand$Argument/toString ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand$Argument/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody/ ()V net/minecraft/network/chat/SignedMessageBody/ ()V +MD: net/minecraft/network/chat/SignedMessageBody/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages;)V net/minecraft/network/chat/SignedMessageBody/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages;)V +MD: net/minecraft/network/chat/SignedMessageBody/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignedMessageBody/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignedMessageBody/f_240856_ ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody/content ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody/f_240863_ ()Ljava/time/Instant; net/minecraft/network/chat/SignedMessageBody/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/chat/SignedMessageBody/f_240868_ ()Lnet/minecraft/network/chat/LastSeenMessages; net/minecraft/network/chat/SignedMessageBody/lastSeen ()Lnet/minecraft/network/chat/LastSeenMessages; +MD: net/minecraft/network/chat/SignedMessageBody/f_240873_ ()J net/minecraft/network/chat/SignedMessageBody/salt ()J +MD: net/minecraft/network/chat/SignedMessageBody/hashCode ()I net/minecraft/network/chat/SignedMessageBody/hashCode ()I +MD: net/minecraft/network/chat/SignedMessageBody/m_245051_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/SignedMessageBody/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/SignedMessageBody/m_247681_ (Ljava/lang/String;)Lnet/minecraft/network/chat/SignedMessageBody; net/minecraft/network/chat/SignedMessageBody/unsigned (Ljava/lang/String;)Lnet/minecraft/network/chat/SignedMessageBody; +MD: net/minecraft/network/chat/SignedMessageBody/m_252875_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/SignedMessageBody/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/SignedMessageBody/m_253217_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/SignedMessageBody$Packed; net/minecraft/network/chat/SignedMessageBody/pack (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/SignedMessageBody$Packed; +MD: net/minecraft/network/chat/SignedMessageBody/toString ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages$Packed;)V net/minecraft/network/chat/SignedMessageBody$Packed/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages$Packed;)V +MD: net/minecraft/network/chat/SignedMessageBody$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/SignedMessageBody$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/SignedMessageBody$Packed/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignedMessageBody$Packed/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243660_ ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody$Packed/content ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243790_ ()J net/minecraft/network/chat/SignedMessageBody$Packed/salt ()J +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244137_ ()Lnet/minecraft/network/chat/LastSeenMessages$Packed; net/minecraft/network/chat/SignedMessageBody$Packed/lastSeen ()Lnet/minecraft/network/chat/LastSeenMessages$Packed; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244314_ ()Ljava/time/Instant; net/minecraft/network/chat/SignedMessageBody$Packed/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/hashCode ()I net/minecraft/network/chat/SignedMessageBody$Packed/hashCode ()I +MD: net/minecraft/network/chat/SignedMessageBody$Packed/m_245470_ (Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/SignedMessageBody; net/minecraft/network/chat/SignedMessageBody$Packed/lambda$unpack$0 (Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/SignedMessageBody; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/m_247637_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/SignedMessageBody$Packed/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/SignedMessageBody$Packed/m_252762_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; net/minecraft/network/chat/SignedMessageBody$Packed/unpack (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/toString ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody$Packed/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageChain/ ()V net/minecraft/network/chat/SignedMessageChain/ ()V +MD: net/minecraft/network/chat/SignedMessageChain/ (Ljava/util/UUID;Ljava/util/UUID;)V net/minecraft/network/chat/SignedMessageChain/ (Ljava/util/UUID;Ljava/util/UUID;)V +MD: net/minecraft/network/chat/SignedMessageChain/m_244794_ (Lnet/minecraft/world/entity/player/ProfilePublicKey;Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain/lambda$decoder$2 (Lnet/minecraft/world/entity/player/ProfilePublicKey;Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain/m_244795_ (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/SignedMessageChain/lambda$encoder$0 (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/SignedMessageChain/m_244796_ (Lnet/minecraft/util/Signer;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/SignedMessageChain/lambda$encoder$1 (Lnet/minecraft/util/Signer;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/SignedMessageChain/m_246515_ ()Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageChain/advanceLink ()Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageChain/m_247027_ (Lnet/minecraft/util/Signer;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; net/minecraft/network/chat/SignedMessageChain/encoder (Lnet/minecraft/util/Signer;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; +MD: net/minecraft/network/chat/SignedMessageChain/m_247594_ (Lnet/minecraft/world/entity/player/ProfilePublicKey;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; net/minecraft/network/chat/SignedMessageChain/decoder (Lnet/minecraft/world/entity/player/ProfilePublicKey;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +MD: net/minecraft/network/chat/SignedMessageChain$DecodeException/ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/network/chat/SignedMessageChain$DecodeException/ (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/network/chat/SignedMessageChain$DecodeException/m_246459_ ()Z net/minecraft/network/chat/SignedMessageChain$DecodeException/shouldDisconnect ()Z +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/ ()V net/minecraft/network/chat/SignedMessageChain$Decoder/ ()V +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_240945_ (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain$Decoder/unpack (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_244797_ (Ljava/util/UUID;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain$Decoder/lambda$unsigned$1 (Ljava/util/UUID;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_246683_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; net/minecraft/network/chat/SignedMessageChain$Decoder/unsigned (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_252649_ (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain$Decoder/lambda$static$0 (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain$Encoder/ ()V net/minecraft/network/chat/SignedMessageChain$Encoder/ ()V +MD: net/minecraft/network/chat/SignedMessageChain$Encoder/m_240988_ (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/SignedMessageChain$Encoder/pack (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/SignedMessageChain$Encoder/m_245588_ (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/SignedMessageChain$Encoder/lambda$static$0 (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/SignedMessageLink/ ()V net/minecraft/network/chat/SignedMessageLink/ ()V +MD: net/minecraft/network/chat/SignedMessageLink/ (ILjava/util/UUID;Ljava/util/UUID;)V net/minecraft/network/chat/SignedMessageLink/ (ILjava/util/UUID;Ljava/util/UUID;)V +MD: net/minecraft/network/chat/SignedMessageLink/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignedMessageLink/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignedMessageLink/f_244066_ ()I net/minecraft/network/chat/SignedMessageLink/index ()I +MD: net/minecraft/network/chat/SignedMessageLink/f_244370_ ()Ljava/util/UUID; net/minecraft/network/chat/SignedMessageLink/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/SignedMessageLink/f_244443_ ()Ljava/util/UUID; net/minecraft/network/chat/SignedMessageLink/sender ()Ljava/util/UUID; +MD: net/minecraft/network/chat/SignedMessageLink/hashCode ()I net/minecraft/network/chat/SignedMessageLink/hashCode ()I +MD: net/minecraft/network/chat/SignedMessageLink/m_245110_ (Ljava/util/UUID;Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageLink/root (Ljava/util/UUID;Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageLink/m_245146_ ()Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageLink/advance ()Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageLink/m_245187_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageLink/unsigned (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageLink/m_246959_ (Lnet/minecraft/network/chat/SignedMessageLink;)Z net/minecraft/network/chat/SignedMessageLink/isDescendantOf (Lnet/minecraft/network/chat/SignedMessageLink;)Z +MD: net/minecraft/network/chat/SignedMessageLink/m_247193_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/SignedMessageLink/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/SignedMessageLink/m_253264_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/SignedMessageLink/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/SignedMessageLink/toString ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageLink/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageValidator/ ()V net/minecraft/network/chat/SignedMessageValidator/ ()V +MD: net/minecraft/network/chat/SignedMessageValidator/m_241126_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator/updateAndValidate (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator/m_245862_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator/lambda$static$0 (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator/m_247555_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator/lambda$static$1 (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/ (Lnet/minecraft/util/SignatureValidator;)V net/minecraft/network/chat/SignedMessageValidator$KeyBased/ (Lnet/minecraft/util/SignatureValidator;)V +MD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/m_241126_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator$KeyBased/updateAndValidate (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/m_247180_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator$KeyBased/validateChain (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/Style/ ()V net/minecraft/network/chat/Style/ ()V +MD: net/minecraft/network/chat/Style/ (Lnet/minecraft/network/chat/TextColor;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Lnet/minecraft/network/chat/ClickEvent;Lnet/minecraft/network/chat/HoverEvent;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/chat/Style/ (Lnet/minecraft/network/chat/TextColor;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Lnet/minecraft/network/chat/ClickEvent;Lnet/minecraft/network/chat/HoverEvent;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/chat/Style/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/Style/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/Style/hashCode ()I net/minecraft/network/chat/Style/hashCode ()I +MD: net/minecraft/network/chat/Style/m_131135_ ()Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/Style/getColor ()Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/Style/m_131136_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withBold (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131138_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withInsertion (Ljava/lang/String;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131140_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withColor (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131142_ (Lnet/minecraft/network/chat/ClickEvent;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withClickEvent (Lnet/minecraft/network/chat/ClickEvent;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131144_ (Lnet/minecraft/network/chat/HoverEvent;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withHoverEvent (Lnet/minecraft/network/chat/HoverEvent;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131146_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyTo (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131148_ (Lnet/minecraft/network/chat/TextColor;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withColor (Lnet/minecraft/network/chat/TextColor;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131150_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withFont (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131152_ ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyFormats ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131154_ ()Z net/minecraft/network/chat/Style/isBold ()Z +MD: net/minecraft/network/chat/Style/m_131155_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withItalic (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131157_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyFormat (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131161_ ()Z net/minecraft/network/chat/Style/isItalic ()Z +MD: net/minecraft/network/chat/Style/m_131162_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withUnderlined (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131164_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyLegacyFormat (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131168_ ()Z net/minecraft/network/chat/Style/isStrikethrough ()Z +MD: net/minecraft/network/chat/Style/m_131171_ ()Z net/minecraft/network/chat/Style/isUnderlined ()Z +MD: net/minecraft/network/chat/Style/m_131176_ ()Z net/minecraft/network/chat/Style/isObfuscated ()Z +MD: net/minecraft/network/chat/Style/m_131179_ ()Z net/minecraft/network/chat/Style/isEmpty ()Z +MD: net/minecraft/network/chat/Style/m_131182_ ()Lnet/minecraft/network/chat/ClickEvent; net/minecraft/network/chat/Style/getClickEvent ()Lnet/minecraft/network/chat/ClickEvent; +MD: net/minecraft/network/chat/Style/m_131186_ ()Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/Style/getHoverEvent ()Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/Style/m_131189_ ()Ljava/lang/String; net/minecraft/network/chat/Style/getInsertion ()Ljava/lang/String; +MD: net/minecraft/network/chat/Style/m_131192_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/chat/Style/getFont ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/chat/Style/m_178520_ (I)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withColor (I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_178522_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withStrikethrough (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_178524_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withObfuscated (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_237255_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/Style/lambda$static$8 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/Style/m_237257_ (Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/create (Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_237266_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$7 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237268_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$6 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237270_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$5 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237272_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$4 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237274_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$3 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237276_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$2 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237278_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$1 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237280_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/toString ()Ljava/lang/String; net/minecraft/network/chat/Style/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/Style$1/ ()V net/minecraft/network/chat/Style$1/ ()V +MD: net/minecraft/network/chat/Style$1Collector/ (Lnet/minecraft/network/chat/Style;Ljava/lang/StringBuilder;)V net/minecraft/network/chat/Style$1Collector/ (Lnet/minecraft/network/chat/Style;Ljava/lang/StringBuilder;)V +MD: net/minecraft/network/chat/Style$1Collector/m_237288_ ()V net/minecraft/network/chat/Style$1Collector/prependSeparator ()V +MD: net/minecraft/network/chat/Style$1Collector/m_237289_ (Ljava/lang/String;Ljava/lang/Boolean;)V net/minecraft/network/chat/Style$1Collector/addFlagString (Ljava/lang/String;Ljava/lang/Boolean;)V +MD: net/minecraft/network/chat/Style$1Collector/m_237292_ (Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/network/chat/Style$1Collector/addValueString (Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/network/chat/Style$Serializer/ ()V net/minecraft/network/chat/Style$Serializer/ ()V +MD: net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style$Serializer/m_131203_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/chat/Style$Serializer/getFont (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/chat/Style$Serializer/m_131205_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; net/minecraft/network/chat/Style$Serializer/getOptionalFlag (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; +MD: net/minecraft/network/chat/Style$Serializer/m_131212_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/Style$Serializer/getHoverEvent (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/Style$Serializer/m_131214_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/ClickEvent; net/minecraft/network/chat/Style$Serializer/getClickEvent (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/ClickEvent; +MD: net/minecraft/network/chat/Style$Serializer/m_131216_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/network/chat/Style$Serializer/getInsertion (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/network/chat/Style$Serializer/m_131222_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/Style$Serializer/getTextColor (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/Style$Serializer/serialize (Lnet/minecraft/network/chat/Style;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Style$Serializer/serialize (Lnet/minecraft/network/chat/Style;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/Style$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Style$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/SubStringSource/ (Ljava/lang/String;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)V net/minecraft/network/chat/SubStringSource/ (Ljava/lang/String;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)V +MD: net/minecraft/network/chat/SubStringSource/m_131235_ ()Ljava/lang/String; net/minecraft/network/chat/SubStringSource/getPlainText ()Ljava/lang/String; +MD: net/minecraft/network/chat/SubStringSource/m_131236_ (IIZ)Ljava/util/List; net/minecraft/network/chat/SubStringSource/substring (IIZ)Ljava/util/List; +MD: net/minecraft/network/chat/SubStringSource/m_131246_ (Ljava/lang/StringBuilder;Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/SubStringSource/lambda$create$3 (Ljava/lang/StringBuilder;Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/SubStringSource/m_131251_ (Lnet/minecraft/network/chat/FormattedText;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/SubStringSource; net/minecraft/network/chat/SubStringSource/create (Lnet/minecraft/network/chat/FormattedText;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/SubStringSource; +MD: net/minecraft/network/chat/SubStringSource/m_178526_ (I)I net/minecraft/network/chat/SubStringSource/lambda$create$0 (I)I +MD: net/minecraft/network/chat/SubStringSource/m_178528_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/network/chat/SubStringSource/lambda$create$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/network/chat/SubStringSource/m_178530_ (Ljava/lang/StringBuilder;Ljava/util/List;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/network/chat/SubStringSource/lambda$create$2 (Ljava/lang/StringBuilder;Ljava/util/List;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/network/chat/SubStringSource/m_178536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/SubStringSource; net/minecraft/network/chat/SubStringSource/create (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/SubStringSource; +MD: net/minecraft/network/chat/TextColor/ ()V net/minecraft/network/chat/TextColor/ ()V +MD: net/minecraft/network/chat/TextColor/ (I)V net/minecraft/network/chat/TextColor/ (I)V +MD: net/minecraft/network/chat/TextColor/ (ILjava/lang/String;)V net/minecraft/network/chat/TextColor/ (ILjava/lang/String;)V +MD: net/minecraft/network/chat/TextColor/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/TextColor/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/TextColor/hashCode ()I net/minecraft/network/chat/TextColor/hashCode ()I +MD: net/minecraft/network/chat/TextColor/m_131265_ ()I net/minecraft/network/chat/TextColor/getValue ()I +MD: net/minecraft/network/chat/TextColor/m_131266_ (I)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/fromRgb (I)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_131268_ (Ljava/lang/String;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/parseColor (Ljava/lang/String;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_131270_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/fromLegacyFormat (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_131274_ ()Ljava/lang/String; net/minecraft/network/chat/TextColor/serialize ()Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_131277_ ()Ljava/lang/String; net/minecraft/network/chat/TextColor/formatValue ()Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_237296_ (Lnet/minecraft/network/chat/TextColor;)Ljava/lang/String; net/minecraft/network/chat/TextColor/lambda$static$3 (Lnet/minecraft/network/chat/TextColor;)Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_237300_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/lambda$static$2 (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_274064_ ()Ljava/lang/String; net/minecraft/network/chat/TextColor/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_274065_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/network/chat/TextColor/lambda$static$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/network/chat/TextColor/toString ()Ljava/lang/String; net/minecraft/network/chat/TextColor/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V +MD: net/minecraft/network/chat/ThrowingComponent/m_237308_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ThrowingComponent/getComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/coordinates/Coordinates;)V net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/coordinates/Coordinates;)V +MD: net/minecraft/network/chat/contents/BlockDataSource/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/BlockDataSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/BlockDataSource/f_237309_ ()Ljava/lang/String; net/minecraft/network/chat/contents/BlockDataSource/posPattern ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/BlockDataSource/f_237310_ ()Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/network/chat/contents/BlockDataSource/compiledPos ()Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/network/chat/contents/BlockDataSource/hashCode ()I net/minecraft/network/chat/contents/BlockDataSource/hashCode ()I +MD: net/minecraft/network/chat/contents/BlockDataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/BlockDataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/BlockDataSource/m_237317_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/network/chat/contents/BlockDataSource/compilePos (Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/network/chat/contents/BlockDataSource/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/BlockDataSource/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/DataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/DataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/network/chat/contents/EntityDataSource/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/EntityDataSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/EntityDataSource/f_237327_ ()Ljava/lang/String; net/minecraft/network/chat/contents/EntityDataSource/selectorPattern ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/EntityDataSource/f_237328_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/EntityDataSource/compiledSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/EntityDataSource/hashCode ()I net/minecraft/network/chat/contents/EntityDataSource/hashCode ()I +MD: net/minecraft/network/chat/contents/EntityDataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/EntityDataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/EntityDataSource/m_237335_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/EntityDataSource/compileSelector (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/EntityDataSource/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/EntityDataSource/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/KeybindContents/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/KeybindContents/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/KeybindContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/KeybindContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/KeybindContents/hashCode ()I net/minecraft/network/chat/contents/KeybindContents/hashCode ()I +MD: net/minecraft/network/chat/contents/KeybindContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/KeybindContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/KeybindContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/KeybindContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/KeybindContents/m_237348_ ()Ljava/lang/String; net/minecraft/network/chat/contents/KeybindContents/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/KeybindContents/m_237354_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/contents/KeybindContents/getNestedComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/contents/KeybindContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/KeybindContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/KeybindResolver/ ()V net/minecraft/network/chat/contents/KeybindResolver/ ()V +MD: net/minecraft/network/chat/contents/KeybindResolver/ ()V net/minecraft/network/chat/contents/KeybindResolver/ ()V +MD: net/minecraft/network/chat/contents/KeybindResolver/m_237362_ (Ljava/lang/String;)Ljava/util/function/Supplier; net/minecraft/network/chat/contents/KeybindResolver/lambda$static$1 (Ljava/lang/String;)Ljava/util/function/Supplier; +MD: net/minecraft/network/chat/contents/KeybindResolver/m_237364_ (Ljava/util/function/Function;)V net/minecraft/network/chat/contents/KeybindResolver/setKeyResolver (Ljava/util/function/Function;)V +MD: net/minecraft/network/chat/contents/KeybindResolver/m_237366_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/contents/KeybindResolver/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/contents/LiteralContents/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/LiteralContents/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/LiteralContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/LiteralContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/LiteralContents/f_237368_ ()Ljava/lang/String; net/minecraft/network/chat/contents/LiteralContents/text ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/LiteralContents/hashCode ()I net/minecraft/network/chat/contents/LiteralContents/hashCode ()I +MD: net/minecraft/network/chat/contents/LiteralContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/LiteralContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/LiteralContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/LiteralContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/LiteralContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/LiteralContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/NbtContents/ ()V net/minecraft/network/chat/contents/NbtContents/ ()V +MD: net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V +MD: net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V +MD: net/minecraft/network/chat/contents/NbtContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/NbtContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/NbtContents/hashCode ()I net/minecraft/network/chat/contents/NbtContents/hashCode ()I +MD: net/minecraft/network/chat/contents/NbtContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237399_ ()Ljava/lang/String; net/minecraft/network/chat/contents/NbtContents/getNbtPath ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/NbtContents/m_237404_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/lang/String;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$1 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/NbtContents/m_237409_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/network/chat/contents/NbtContents/compileNbtPath (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/network/chat/contents/NbtContents/m_237411_ (Ljava/util/stream/Stream;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$5 (Ljava/util/stream/Stream;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237413_ (Ljava/util/stream/Stream;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$4 (Ljava/util/stream/Stream;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237416_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$0 (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/NbtContents/m_237418_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$2 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237422_ (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$3 (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237426_ ()Z net/minecraft/network/chat/contents/NbtContents/isInterpreting ()Z +MD: net/minecraft/network/chat/contents/NbtContents/m_237427_ ()Ljava/util/Optional; net/minecraft/network/chat/contents/NbtContents/getSeparator ()Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/NbtContents/m_237428_ ()Lnet/minecraft/network/chat/contents/DataSource; net/minecraft/network/chat/contents/NbtContents/getDataSource ()Lnet/minecraft/network/chat/contents/DataSource; +MD: net/minecraft/network/chat/contents/NbtContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/NbtContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/network/chat/contents/ScoreContents/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/ScoreContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/ScoreContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/ScoreContents/hashCode ()I net/minecraft/network/chat/contents/ScoreContents/hashCode ()I +MD: net/minecraft/network/chat/contents/ScoreContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/ScoreContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237440_ ()Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237441_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/findTargetName (Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237447_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/ScoreContents/parseSelector (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237449_ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/getScore (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237452_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/ScoreContents/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237453_ ()Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/getObjective ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/SelectorContents/ ()V net/minecraft/network/chat/contents/SelectorContents/ ()V +MD: net/minecraft/network/chat/contents/SelectorContents/ (Ljava/lang/String;Ljava/util/Optional;)V net/minecraft/network/chat/contents/SelectorContents/ (Ljava/lang/String;Ljava/util/Optional;)V +MD: net/minecraft/network/chat/contents/SelectorContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/SelectorContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/SelectorContents/hashCode ()I net/minecraft/network/chat/contents/SelectorContents/hashCode ()I +MD: net/minecraft/network/chat/contents/SelectorContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/SelectorContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/SelectorContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/SelectorContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/SelectorContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/SelectorContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237466_ ()Ljava/lang/String; net/minecraft/network/chat/contents/SelectorContents/getPattern ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237471_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/SelectorContents/parseSelector (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237478_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/SelectorContents/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237479_ ()Ljava/util/Optional; net/minecraft/network/chat/contents/SelectorContents/getSeparator ()Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/SelectorContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/SelectorContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/StorageDataSource/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/chat/contents/StorageDataSource/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/chat/contents/StorageDataSource/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/StorageDataSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/StorageDataSource/f_237484_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/chat/contents/StorageDataSource/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/chat/contents/StorageDataSource/hashCode ()I net/minecraft/network/chat/contents/StorageDataSource/hashCode ()I +MD: net/minecraft/network/chat/contents/StorageDataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/StorageDataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/StorageDataSource/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/StorageDataSource/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableContents/ ()V net/minecraft/network/chat/contents/TranslatableContents/ ()V +MD: net/minecraft/network/chat/contents/TranslatableContents/ (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/network/chat/contents/TranslatableContents/ (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/network/chat/contents/TranslatableContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/TranslatableContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/TranslatableContents/hashCode ()I net/minecraft/network/chat/contents/TranslatableContents/hashCode ()I +MD: net/minecraft/network/chat/contents/TranslatableContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/TranslatableContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/TranslatableContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/TranslatableContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237508_ ()Ljava/lang/String; net/minecraft/network/chat/contents/TranslatableContents/getKey ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237509_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/contents/TranslatableContents/getArgument (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237515_ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/network/chat/contents/TranslatableContents/decomposeTemplate (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237523_ ()[Ljava/lang/Object; net/minecraft/network/chat/contents/TranslatableContents/getArgs ()[Ljava/lang/Object; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237524_ ()V net/minecraft/network/chat/contents/TranslatableContents/decompose ()V +MD: net/minecraft/network/chat/contents/TranslatableContents/m_264577_ ()Ljava/lang/String; net/minecraft/network/chat/contents/TranslatableContents/getFallback ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/TranslatableContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/Throwable;)V net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/Throwable;)V +MD: net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;I)V net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;I)V +MD: net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/String;)V net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/BundleDelimiterPacket/ ()V net/minecraft/network/protocol/BundleDelimiterPacket/ ()V +MD: net/minecraft/network/protocol/BundleDelimiterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/BundleDelimiterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/BundleDelimiterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/BundleDelimiterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/BundlePacket/ (Ljava/lang/Iterable;)V net/minecraft/network/protocol/BundlePacket/ (Ljava/lang/Iterable;)V +MD: net/minecraft/network/protocol/BundlePacket/m_264216_ ()Ljava/lang/Iterable; net/minecraft/network/protocol/BundlePacket/subPackets ()Ljava/lang/Iterable; +MD: net/minecraft/network/protocol/BundlePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/BundlePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/BundlerInfo/ ()V net/minecraft/network/protocol/BundlerInfo/ ()V +MD: net/minecraft/network/protocol/BundlerInfo/m_264118_ (Ljava/lang/Class;Ljava/util/function/Function;Lnet/minecraft/network/protocol/BundleDelimiterPacket;)Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/protocol/BundlerInfo/createForPacket (Ljava/lang/Class;Ljava/util/function/Function;Lnet/minecraft/network/protocol/BundleDelimiterPacket;)Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/protocol/BundlerInfo/m_264150_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; net/minecraft/network/protocol/BundlerInfo/startPacketBundling (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +MD: net/minecraft/network/protocol/BundlerInfo/m_264360_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V net/minecraft/network/protocol/BundlerInfo/unbundlePacket (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/protocol/BundlerInfo$1/ ()V net/minecraft/network/protocol/BundlerInfo$1/ ()V +MD: net/minecraft/network/protocol/BundlerInfo$1/m_264150_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; net/minecraft/network/protocol/BundlerInfo$1/startPacketBundling (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +MD: net/minecraft/network/protocol/BundlerInfo$1/m_264360_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V net/minecraft/network/protocol/BundlerInfo$1/unbundlePacket (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/protocol/BundlerInfo$2/ (Ljava/lang/Class;Lnet/minecraft/network/protocol/BundleDelimiterPacket;Ljava/util/function/Function;)V net/minecraft/network/protocol/BundlerInfo$2/ (Ljava/lang/Class;Lnet/minecraft/network/protocol/BundleDelimiterPacket;Ljava/util/function/Function;)V +MD: net/minecraft/network/protocol/BundlerInfo$2/m_264150_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; net/minecraft/network/protocol/BundlerInfo$2/startPacketBundling (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +MD: net/minecraft/network/protocol/BundlerInfo$2/m_264360_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V net/minecraft/network/protocol/BundlerInfo$2/unbundlePacket (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/protocol/BundlerInfo$2$1/ (Lnet/minecraft/network/protocol/BundlerInfo$2;)V net/minecraft/network/protocol/BundlerInfo$2$1/ (Lnet/minecraft/network/protocol/BundlerInfo$2;)V +MD: net/minecraft/network/protocol/BundlerInfo$2$1/m_264116_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/protocol/BundlerInfo$2$1/addPacket (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/protocol/BundlerInfo$Bundler/m_264116_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/protocol/BundlerInfo$Bundler/addPacket (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/protocol/BundlerInfo$Provider/m_264121_ (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/protocol/BundlerInfo$Provider/getBundlerInfo (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/protocol/Packet/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/Packet/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/Packet/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/Packet/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/Packet/m_6588_ ()Z net/minecraft/network/protocol/Packet/isSkippable ()Z +MD: net/minecraft/network/protocol/PacketFlow/ ()V net/minecraft/network/protocol/PacketFlow/ ()V +MD: net/minecraft/network/protocol/PacketFlow/ (Ljava/lang/String;I)V net/minecraft/network/protocol/PacketFlow/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/PacketFlow/m_178539_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/getOpposite ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketFlow/m_178540_ ()[Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/$values ()[Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketFlow/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketFlow/values ()[Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/values ()[Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketUtils/ ()V net/minecraft/network/protocol/PacketUtils/ ()V +MD: net/minecraft/network/protocol/PacketUtils/ ()V net/minecraft/network/protocol/PacketUtils/ ()V +MD: net/minecraft/network/protocol/PacketUtils/m_131359_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/network/protocol/PacketUtils/ensureRunningOnSameThread (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/network/protocol/PacketUtils/m_131363_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/util/thread/BlockableEventLoop;)V net/minecraft/network/protocol/PacketUtils/ensureRunningOnSameThread (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/util/thread/BlockableEventLoop;)V +MD: net/minecraft/network/protocol/PacketUtils/m_263899_ (Lnet/minecraft/network/PacketListener;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/network/protocol/PacketUtils/lambda$ensureRunningOnSameThread$0 (Lnet/minecraft/network/PacketListener;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_141913_ (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setSubtitleText (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_141955_ (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePing (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142056_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderWarningDelay (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142058_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerCombatEnter (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142185_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setTitlesAnimation (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142234_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerCombatEnd (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142237_ (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleInitializeBorder (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142238_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142442_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setTitleText (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142456_ (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setActionBarText (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142612_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderCenter (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142686_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderLerpSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142696_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderWarningDistance (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142747_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerCombatKill (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142766_ (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTitlesClear (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_182047_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRemoveEntities (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_183388_ (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLevelChunkWithLight (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_183514_ (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLightUpdatePacket (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_183623_ (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetSimulationDistance (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213565_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerInfoRemove (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213629_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerChat (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213672_ (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleServerData (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213990_ (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSystemChat (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_214045_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerInfoUpdate (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_214108_ (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockChangedAck (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_240695_ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCustomChatCompletions (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_241037_ (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDeleteChat (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_241155_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleEnabledFeatures (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_264143_ (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleHurtAnimation (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_264308_ (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBundlePacket (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_269082_ (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDamageEvent (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_274374_ (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleChunksBiomes (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5498_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateAdvancementsPacket (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5547_ (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetHealth (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5556_ (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetDisplayObjective (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5582_ (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetPlayerTeamPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5587_ (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleResourcePack (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5599_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleEntityLinkPacket (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5612_ (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5682_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMovePlayer (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5729_ (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleForgetLevelChunk (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5735_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerSetSlot (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5767_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5771_ (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleChunkBlocksUpdate (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5859_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateTags (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5863_ (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSoundEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5943_ (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockDestruction (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5980_ (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleOpenScreen (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5998_ (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLogin (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6008_ (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDisconnect (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6148_ (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTagQueryPacket (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6176_ (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRotateMob (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6235_ (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTabListCustomisation (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6327_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateRecipes (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6403_ (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEntityPassengersPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6435_ (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTeleportEntity (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6447_ (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetCamera (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6455_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEntityData (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6476_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRemoveMobEffect (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6482_ (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddPlayer (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6503_ (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleOpenBook (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6571_ (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetSpawn (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6664_ (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6747_ (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetExperience (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6771_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddEntity (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6773_ (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockUpdate (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6837_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerContent (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6905_ (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleHorseScreenOpen (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7039_ (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDisguisedChat (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7183_ (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleStopSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7231_ (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleKeepAlive (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7244_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLookAt (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7257_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerSetData (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7271_ (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAwardStats (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7277_ (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEquipment (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7299_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetChunkCacheRadius (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7330_ (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMerchantOffers (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7339_ (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7345_ (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleExplosion (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7364_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockEvent (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7406_ (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleParticleEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7410_ (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7413_ (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCustomPayload (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7443_ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCommands (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7519_ (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetScore (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7545_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockEntityData (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7553_ (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSelectAdvancementsTab (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7589_ (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCommandSuggestions (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7616_ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleGameEvent (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7628_ (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7633_ (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMapItemData (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7685_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBossUpdate (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7701_ (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleItemCooldown (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7704_ (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLevelEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7708_ (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddExperienceOrb (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7710_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateAttributes (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7776_ (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerClose (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7791_ (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAnimate (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7865_ (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMoveEntity (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7885_ (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetTime (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7915_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateMobEffect (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7957_ (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddObjective (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7992_ (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRespawn (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8001_ (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTakeItemEntity (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8047_ (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleOpenSignEditor (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8048_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEntityMotion (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8065_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetChunkCacheCenter (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8068_ (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8076_ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddOrRemoveRecipes (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (ILjava/util/UUID;DDDFFLnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/phys/Vec3;D)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (ILjava/util/UUID;DDDFFLnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/phys/Vec3;D)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131496_ ()I net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131499_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getUUID ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131500_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131501_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131502_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131503_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getXa ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131504_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getYa ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131505_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getZa ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131508_ ()Lnet/minecraft/world/entity/EntityType; net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getType ()Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131509_ ()I net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getData ()I +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_237566_ ()F net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_237567_ ()F net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_237568_ ()F net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getYHeadRot ()F +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/world/entity/ExperienceOrb;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/world/entity/ExperienceOrb;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131524_ ()I net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131527_ ()D net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131528_ ()D net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131529_ ()D net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131530_ ()I net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getValue ()I +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131603_ ()I net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131606_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getPlayerId ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131607_ ()D net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131608_ ()D net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131609_ ()D net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131610_ ()B net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getyRot ()B +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131611_ ()B net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getxRot ()B +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_131624_ ()I net/minecraft/network/protocol/game/ClientboundAnimatePacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_131627_ ()I net/minecraft/network/protocol/game/ClientboundAnimatePacket/getAction ()I +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_131643_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/getStats ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_237569_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/Stat;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/writeStatCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_237572_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/StatType;)Lnet/minecraft/stats/Stat; net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/readStatCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/StatType;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_257122_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/Stat; net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (I)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/f_237578_ ()I net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/sequence ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_131685_ ()I net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_131688_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_131689_ ()I net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/getProgress ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_131704_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_131708_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/getTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_195640_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/create (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_195642_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/util/function/Function;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/create (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/util/function/Function;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_195645_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/getType ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131725_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131728_ ()I net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getB0 ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131729_ ()I net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getB1 ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131730_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_131746_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_131749_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/ ()V net/minecraft/network/protocol/game/ClientboundBossEventPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178639_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createAddPacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178641_ (Ljava/util/UUID;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createRemovePacket (Ljava/util/UUID;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178643_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/dispatch (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178645_ (ZZZ)I net/minecraft/network/protocol/game/ClientboundBossEventPacket/encodeProperties (ZZZ)I +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178649_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdateProgressPacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178651_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdateNamePacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178653_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdateStylePacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178655_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdatePropertiesPacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/ ()V net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/ ()V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/world/BossEvent;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/world/BossEvent;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142107_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/add (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142358_ (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateStyle (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142366_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateName (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142513_ (Ljava/util/UUID;ZZZ)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateProperties (Ljava/util/UUID;ZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142653_ (Ljava/util/UUID;F)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateProgress (Ljava/util/UUID;F)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142751_ (Ljava/util/UUID;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/remove (Ljava/util/UUID;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ ()V net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ ()V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ (Ljava/lang/String;ILjava/util/function/Function;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ (Ljava/lang/String;ILjava/util/function/Function;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/m_178717_ ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/$values ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/m_178718_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/lambda$static$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/values ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/values ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (F)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (F)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (ZZZ)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (ZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBundlePacket/ (Ljava/lang/Iterable;)V net/minecraft/network/protocol/game/ClientboundBundlePacket/ (Ljava/lang/Iterable;)V +MD: net/minecraft/network/protocol/game/ClientboundBundlePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBundlePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBundlePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBundlePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;Z)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;Z)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_131817_ ()Z net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/isLocked ()Z +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_131820_ ()Lnet/minecraft/world/Difficulty; net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/f_273816_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/chunkBiomeData ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_274331_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_274415_ (Ljava/util/List;)Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/forChunks (Ljava/util/List;)Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/ChunkPos;[B)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/ChunkPos;[B)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273848_ ()[B net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/buffer ()[B +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273927_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/pos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/hashCode ()I net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274304_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274308_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/extractChunkData (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274523_ ()Lio/netty/buffer/ByteBuf; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/getWriteBuffer ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274543_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/getReadBuffer ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274587_ (Lnet/minecraft/world/level/chunk/LevelChunk;)I net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/calculateChunkSize (Lnet/minecraft/world/level/chunk/LevelChunk;)I +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Z)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Z)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_178788_ ()Z net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/shouldResetTimes ()Z +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (ILcom/mojang/brigadier/suggestion/Suggestions;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (ILcom/mojang/brigadier/suggestion/Suggestions;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_131854_ ()I net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_131857_ ()Lcom/mojang/brigadier/suggestion/Suggestions; net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/getSuggestions ()Lcom/mojang/brigadier/suggestion/Suggestions; +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_178791_ (Lcom/mojang/brigadier/context/StringRange;Lnet/minecraft/network/FriendlyByteBuf;)Lcom/mojang/brigadier/suggestion/Suggestion; net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/lambda$new$0 (Lcom/mojang/brigadier/context/StringRange;Lnet/minecraft/network/FriendlyByteBuf;)Lcom/mojang/brigadier/suggestion/Suggestion; +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_237613_ (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/Message;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/Message;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_237616_ (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/suggestion/Suggestion;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/suggestion/Suggestion;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lcom/mojang/brigadier/tree/RootCommandNode;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lcom/mojang/brigadier/tree/RootCommandNode;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_131862_ (Lcom/mojang/brigadier/tree/RootCommandNode;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/network/protocol/game/ClientboundCommandsPacket/enumerateNodes (Lcom/mojang/brigadier/tree/RootCommandNode;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_131887_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; net/minecraft/network/protocol/game/ClientboundCommandsPacket/readNode (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237621_ (Lcom/mojang/brigadier/tree/CommandNode;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; net/minecraft/network/protocol/game/ClientboundCommandsPacket/createEntry (Lcom/mojang/brigadier/tree/CommandNode;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237624_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/tree/RootCommandNode; net/minecraft/network/protocol/game/ClientboundCommandsPacket/getRoot (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/tree/RootCommandNode; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237626_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Ljava/util/List; net/minecraft/network/protocol/game/ClientboundCommandsPacket/createEntries (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237628_ (Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/validateEntries (Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237630_ (Ljava/util/List;Ljava/util/function/BiPredicate;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/validateEntries (Ljava/util/List;Ljava/util/function/BiPredicate;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237633_ (Ljava/util/function/BiPredicate;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/IntSet;I)Z net/minecraft/network/protocol/game/ClientboundCommandsPacket/lambda$validateEntries$1 (Ljava/util/function/BiPredicate;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/IntSet;I)Z +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237638_ (Lnet/minecraft/network/FriendlyByteBuf;B)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub; net/minecraft/network/protocol/game/ClientboundCommandsPacket/read (Lnet/minecraft/network/FriendlyByteBuf;B)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237641_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Ljava/lang/String;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Ljava/lang/String;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_213891_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/build (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_214206_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_237653_ (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/getSuggestionId (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_237659_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/serializeCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_237662_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/serializeCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub;II[I)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub;II[I)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/m_237672_ (Lit/unimi/dsi/fastutil/ints/IntSet;)Z net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/canBuild (Lit/unimi/dsi/fastutil/ints/IntSet;)Z +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/m_237674_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/m_237676_ (Lit/unimi/dsi/fastutil/ints/IntSet;)Z net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/canResolve (Lit/unimi/dsi/fastutil/ints/IntSet;)Z +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/ (Ljava/lang/String;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/ (Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/m_213891_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/build (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/m_214206_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/ (Lnet/minecraft/commands/CommandBuildContext;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/ (Lnet/minecraft/commands/CommandBuildContext;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/m_237691_ (I)Lcom/mojang/brigadier/tree/CommandNode; net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/resolve (I)Lcom/mojang/brigadier/tree/CommandNode; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/m_237693_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/lambda$resolve$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/m_213891_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/build (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/m_214206_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (I)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_178821_ ()I net/minecraft/network/protocol/game/ClientboundContainerClosePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_131954_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_131957_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getItems ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_182708_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getCarriedItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_182709_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getStateId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (III)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_131972_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_131975_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_131976_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/getValue ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (IIILnet/minecraft/world/item/ItemStack;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (IIILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_131991_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_131994_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_131995_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_182716_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getStateId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/world/item/Item;I)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_132008_ ()Lnet/minecraft/world/item/Item; net/minecraft/network/protocol/game/ClientboundCooldownPacket/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_132011_ ()I net/minecraft/network/protocol/game/ClientboundCooldownPacket/getDuration ()I +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240661_ ()Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/action ()Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240663_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/entries ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ ()V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/m_240733_ ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ ()V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_132042_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/getIdentifier ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_132045_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (IIIILjava/util/Optional;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (IIIILjava/util/Optional;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundDamageEventPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268504_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/entityId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268559_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceCauseId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268584_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceTypeId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268649_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceDirectId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268712_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourcePosition ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269073_ (Lnet/minecraft/network/FriendlyByteBuf;I)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/writeOptionalEntityId (Lnet/minecraft/network/FriendlyByteBuf;I)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269135_ (Lnet/minecraft/network/FriendlyByteBuf;)I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/readOptionalEntityId (Lnet/minecraft/network/FriendlyByteBuf;)I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269243_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269256_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269591_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/getSource (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/chat/MessageSignature$Packed;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/chat/MessageSignature$Packed;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/f_240904_ ()Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/messageSignature ()Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_132085_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundDisconnectPacket/getReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244252_ ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/chatType ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244491_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_132094_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundEntityEventPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_132102_ ()B net/minecraft/network/protocol/game/ClientboundEntityEventPacket/getEventId ()B +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/ (DDDFLjava/util/List;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/ (DDDFLjava/util/List;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132127_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getKnockbackX ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132130_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getKnockbackY ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132131_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getKnockbackZ ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132132_ ()D net/minecraft/network/protocol/game/ClientboundExplodePacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132133_ ()D net/minecraft/network/protocol/game/ClientboundExplodePacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132134_ ()D net/minecraft/network/protocol/game/ClientboundExplodePacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132135_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getPower ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132136_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundExplodePacket/getToBlow ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_178846_ (IIILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundExplodePacket/lambda$new$0 (IIILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_178851_ (IIILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/lambda$write$1 (IIILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (II)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (II)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_132149_ ()I net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_132152_ ()I net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/ ()V net/minecraft/network/protocol/game/ClientboundGameEventPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type;F)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type;F)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_132178_ ()Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type; net/minecraft/network/protocol/game/ClientboundGameEventPacket/getEvent ()Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type; +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_132181_ ()F net/minecraft/network/protocol/game/ClientboundGameEventPacket/getParam ()F +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ ()V net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ ()V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ (I)V net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (III)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_132204_ ()I net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_132207_ ()I net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/getSize ()I +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_132208_ ()I net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (IF)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (IF)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263825_ ()I net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/id ()I +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263826_ ()F net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/yaw ()F +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178886_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewCenterX ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178887_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewCenterZ ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178888_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewSize ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178889_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getOldSize ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178890_ ()J net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getLerpTime ()J +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178891_ ()I net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewAbsoluteMaxSize ()I +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178892_ ()I net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getWarningTime ()I +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178893_ ()I net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getWarningBlocks ()I +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (J)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (J)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_132219_ ()J net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/getId ()J +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195656_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getReadBuffer ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195657_ (II)Ljava/util/function/Consumer; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getBlockEntitiesTagsConsumer (II)Ljava/util/function/Consumer; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195660_ (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/lambda$getBlockEntitiesTagsConsumer$1 (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195664_ (Lnet/minecraft/world/level/chunk/LevelChunk;)I net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/calculateChunkSize (Lnet/minecraft/world/level/chunk/LevelChunk;)I +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195666_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195668_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/extractChunkData (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195671_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195674_ (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;II)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getBlockEntitiesTags (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;II)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195678_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getHeightmaps ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195679_ ()Lio/netty/buffer/ByteBuf; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getWriteBuffer ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (IILnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (IILnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/m_195691_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/create (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/m_195693_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput/m_195695_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput/accept (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195717_ ()I net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195718_ ()I net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195719_ ()Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData; net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getChunkData ()Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195720_ ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getLightData ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (ILnet/minecraft/core/BlockPos;IZ)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (ILnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132274_ ()Z net/minecraft/network/protocol/game/ClientboundLevelEventPacket/isGlobalEvent ()Z +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132277_ ()I net/minecraft/network/protocol/game/ClientboundLevelEventPacket/getType ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132278_ ()I net/minecraft/network/protocol/game/ClientboundLevelEventPacket/getData ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132279_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundLevelEventPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDFFFFI)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDFFFFI)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132304_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/readParticle (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132311_ ()Z net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/isOverrideLimiter ()Z +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132314_ ()D net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132315_ ()D net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132316_ ()D net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132317_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getXDist ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132318_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getYDist ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132319_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getZDist ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132320_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getMaxSpeed ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132321_ ()I net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getCount ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132322_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_132349_ ()I net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_132352_ ()I net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_195722_ ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/getLightData ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195740_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getSkyYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195741_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;ILjava/util/BitSet;Ljava/util/BitSet;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/prepareSectionData (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;ILjava/util/BitSet;Ljava/util/BitSet;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195749_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195751_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getEmptySkyYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195752_ (Lnet/minecraft/network/FriendlyByteBuf;)[B net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)[B +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195754_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getSkyUpdates ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195755_ (Lnet/minecraft/network/FriendlyByteBuf;)[B net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)[B +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195757_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getBlockYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195758_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getEmptyBlockYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195759_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getBlockUpdates ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/ ()V net/minecraft/network/protocol/game/ClientboundLoginPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/ (IZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;Ljava/util/Set;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JIIIZZZZLjava/util/Optional;I)V net/minecraft/network/protocol/game/ClientboundLoginPacket/ (IZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;Ljava/util/Set;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JIIIZZZZLjava/util/Optional;I)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundLoginPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132360_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/playerId ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132361_ ()J net/minecraft/network/protocol/game/ClientboundLoginPacket/seed ()J +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132362_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/hardcore ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132363_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundLoginPacket/gameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132364_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundLoginPacket/previousGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132365_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundLoginPacket/levels ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132366_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/network/protocol/game/ClientboundLoginPacket/registryHolder ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132367_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundLoginPacket/dimensionType ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132368_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundLoginPacket/dimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132369_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/maxPlayers ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132370_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/chunkRadius ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132371_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/reducedDebugInfo ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132372_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/showDeathScreen ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132373_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/isDebug ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132374_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/isFlat ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_195761_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/simulationDistance ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_238174_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundLoginPacket/lastDeathLocation ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_286971_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/portalCooldown ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_257123_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundLoginPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundLoginPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (IBZLjava/util/Collection;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (IBZLjava/util/Collection;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_132437_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/applyToMap (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_132445_ ()I net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/getMapId ()I +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_178980_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration; net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration; +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_178982_ ()B net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/getScale ()B +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_178983_ ()Z net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/isLocked ()Z +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_237724_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/saveddata/maps/MapDecoration;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/saveddata/maps/MapDecoration;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_237727_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_237730_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132468_ ()I net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132471_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132472_ ()I net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getVillagerLevel ()I +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132473_ ()I net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getVillagerXp ()I +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132474_ ()Z net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/showProgress ()Z +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132475_ ()Z net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/canRestock ()Z +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/ (ISSSBBZZZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/ (ISSSBBZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132519_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132531_ ()B net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getyRot ()B +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132532_ ()B net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getxRot ()B +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132533_ ()Z net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasRotation ()Z +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132534_ ()Z net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasPosition ()Z +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132535_ ()Z net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/isOnGround ()Z +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_178997_ ()S net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getXa ()S +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_178998_ ()S net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getYa ()S +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_178999_ ()S net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getZa ()S +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/ (ISSSZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/ (ISSSZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/m_179000_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/ (ISSSBBZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/ (ISSSBBZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/m_179002_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/ (IBBZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/ (IBBZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/m_179004_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132591_ ()D net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132594_ ()D net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132595_ ()D net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132596_ ()F net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132597_ ()F net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_132608_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ClientboundOpenBookPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (ILnet/minecraft/world/inventory/MenuType;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (ILnet/minecraft/world/inventory/MenuType;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_132625_ ()I net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_132628_ ()Lnet/minecraft/world/inventory/MenuType; net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/getType ()Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_132629_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_132640_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_276774_ ()Z net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/isFrontText ()Z +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/ (I)V net/minecraft/network/protocol/game/ClientboundPingPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_179025_ ()I net/minecraft/network/protocol/game/ClientboundPingPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPingPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPingPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPingPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_132655_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/getRecipe ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_132658_ ()I net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132674_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/isInvulnerable ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132677_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/isFlying ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132678_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/canFly ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132679_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/canInstabuild ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132680_ ()F net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/getFlyingSpeed ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132681_ ()F net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/getWalkingSpeed ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Ljava/util/UUID;ILnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody$Packed;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Ljava/util/UUID;ILnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody$Packed;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_240897_ ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/chatType ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243686_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/unsignedContent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243744_ ()Lnet/minecraft/network/chat/FilterMask; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/filterMask ()Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243836_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243918_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/sender ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244090_ ()Lnet/minecraft/network/chat/SignedMessageBody$Packed; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/body ()Lnet/minecraft/network/chat/SignedMessageBody$Packed; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244283_ ()I net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/index ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (I)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/world/damagesource/CombatTracker;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/world/damagesource/CombatTracker;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ ()V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (ILnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_179078_ ()I net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/getPlayerId ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_179079_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/f_244383_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/profileIds ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Ljava/util/EnumSet;Ljava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Ljava/util/EnumSet;Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_245290_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/newEntries ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_245788_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_246059_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_246097_ ()Ljava/util/EnumSet; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/actions ()Ljava/util/EnumSet; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_246778_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/entries ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_247122_ (Ljava/util/Collection;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/createPlayerInitializing (Ljava/util/Collection;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ ()V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ (Ljava/lang/String;ILnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ (Ljava/lang/String;ILnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245215_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$0 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245523_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$6 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245620_ ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245650_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$4 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245686_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$11 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245774_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$8 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245963_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$9 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_246581_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_247090_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$7 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_247610_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$5 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_247692_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$10 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_252650_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$2 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_252651_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader/m_247322_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader/read (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer/m_247205_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Ljava/util/UUID;Lcom/mojang/authlib/GameProfile;ZILnet/minecraft/world/level/GameType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Ljava/util/UUID;Lcom/mojang/authlib/GameProfile;ZILnet/minecraft/world/level/GameType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243688_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243700_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/listed ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244142_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profileId ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244153_ ()Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/chatSession ()Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244162_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/gameMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244322_ ()I net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/latency ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244512_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/displayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/hashCode ()I net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/ (Ljava/util/UUID;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/ (Ljava/util/UUID;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/m_245615_ ()Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/build ()Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;DDD)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;DDD)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_132785_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/getPosition (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_132793_ ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/getFromAnchor ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (DDDFFLjava/util/Set;I)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (DDDFFLjava/util/Set;I)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132818_ ()D net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132821_ ()D net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132822_ ()D net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132823_ ()F net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132824_ ()F net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132825_ ()I net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132826_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getRelativeArguments ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Ljava/util/Collection;Ljava/util/Collection;Lnet/minecraft/stats/RecipeBookSettings;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Ljava/util/Collection;Ljava/util/Collection;Lnet/minecraft/stats/RecipeBookSettings;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132865_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundRecipePacket/getRecipes ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132868_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundRecipePacket/getHighlights ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132869_ ()Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/network/protocol/game/ClientboundRecipePacket/getBookSettings ()Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132870_ ()Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket/getState ()Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ ()V net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ ()V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/m_179163_ ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket$State/$values ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket$State/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/values ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket$State/values ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ ([I)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ ([I)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lit/unimi/dsi/fastutil/ints/IntList;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lit/unimi/dsi/fastutil/ints/IntList;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_182730_ ()Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/getEntityIds ()Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffect;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_132901_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_132909_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/getEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_132924_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundResourcePackPacket/getUrl ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_132927_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundResourcePackPacket/getHash ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_179188_ ()Z net/minecraft/network/protocol/game/ClientboundResourcePackPacket/isRequired ()Z +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_179189_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundResourcePackPacket/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;ZZBLjava/util/Optional;I)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;ZZBLjava/util/Optional;I)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132955_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getDimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132956_ ()J net/minecraft/network/protocol/game/ClientboundRespawnPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132957_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getPlayerGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132958_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getPreviousPlayerGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132959_ ()Z net/minecraft/network/protocol/game/ClientboundRespawnPacket/isDebug ()Z +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132960_ ()Z net/minecraft/network/protocol/game/ClientboundRespawnPacket/isFlat ()Z +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_237785_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getLastDeathLocation ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_237794_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getDimensionType ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_263558_ (B)Z net/minecraft/network/protocol/game/ClientboundRespawnPacket/shouldKeep (B)Z +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_287149_ ()I net/minecraft/network/protocol/game/ClientboundRespawnPacket/getPortalCooldown ()I +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_132969_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_132977_ ()B net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/getYHeadRot ()B +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/core/SectionPos;Lit/unimi/dsi/fastutil/shorts/ShortSet;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/core/SectionPos;Lit/unimi/dsi/fastutil/shorts/ShortSet;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_132992_ (Ljava/util/function/BiConsumer;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/runUpdates (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_133013_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/getTab ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Z)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Z)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_242957_ ()Z net/minecraft/network/protocol/game/ClientboundServerDataPacket/enforcesSecureChat ()Z +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_271805_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundServerDataPacket/getMotd ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_271815_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundServerDataPacket/getIconBytes ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_179210_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_179223_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/getNewCenterZ ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_179224_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/getNewCenterX ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_179238_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/getOldSize ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_179239_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/getNewSize ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_179240_ ()J net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/getLerpTime ()J +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_179252_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/getSize ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_179264_ ()I net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/getWarningDelay ()I +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_179276_ ()I net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/getWarningBlocks ()I +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_133059_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundSetCameraPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (I)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_133079_ ()I net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (II)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (II)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_133094_ ()I net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_133097_ ()I net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (I)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_133108_ ()I net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/getRadius ()I +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_133123_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_133126_ ()F net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/getAngle ()F +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (ILnet/minecraft/world/scores/Objective;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (ILnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_133139_ ()I net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_133142_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/getObjectiveName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (ILjava/util/List;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (ILjava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133143_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/id ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133144_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/packedItems ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_252763_ (Ljava/util/List;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/pack (Ljava/util/List;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_252908_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/unpack (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_133172_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/getSourceId ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_133175_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/getDestId ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (ILnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (ILnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133192_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133195_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getXa ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133196_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getYa ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133197_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getZa ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (ILjava/util/List;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (ILjava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_133210_ ()I net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/getEntity ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_133213_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/getSlots ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (FII)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (FII)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_133228_ ()F net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/getExperienceProgress ()F +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_133231_ ()I net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/getTotalExperience ()I +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_133232_ ()I net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/getExperienceLevel ()I +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (FIF)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (FIF)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_133247_ ()F net/minecraft/network/protocol/game/ClientboundSetHealthPacket/getHealth ()F +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_133250_ ()I net/minecraft/network/protocol/game/ClientboundSetHealthPacket/getFood ()I +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_133251_ ()F net/minecraft/network/protocol/game/ClientboundSetHealthPacket/getSaturation ()F +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/world/scores/Objective;I)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/world/scores/Objective;I)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133266_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getObjectiveName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133269_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133270_ ()I net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getMethod ()I +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133271_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getRenderType ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_133283_ ()[I net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/getPassengers ()[I +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_133286_ ()I net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/getVehicle ()I +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Ljava/lang/String;ILjava/util/Optional;Ljava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Ljava/lang/String;ILjava/util/Optional;Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_133311_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_133315_ ()Ljava/util/Collection; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179324_ (I)Z net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/shouldHavePlayerList (I)Z +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179326_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/createRemovePacket (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179328_ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/lang/String;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/createPlayerPacket (Lnet/minecraft/world/scores/PlayerTeam;Ljava/lang/String;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179332_ (Lnet/minecraft/world/scores/PlayerTeam;Z)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/createAddOrModifyPacket (Lnet/minecraft/world/scores/PlayerTeam;Z)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179335_ ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getPlayerAction ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179336_ (I)Z net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/shouldHaveParameters (I)Z +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179338_ ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getTeamAction ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179339_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getParameters ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179340_ ()Ljava/lang/IllegalStateException; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/lambda$write$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ ()V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/m_179348_ ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179363_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179364_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179366_ ()I net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getOptions ()I +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179367_ ()Lnet/minecraft/ChatFormatting; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179368_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getNametagVisibility ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179369_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getCollisionRule ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179370_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getPlayerPrefix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179371_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getPlayerSuffix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/server/ServerScoreboard$Method;Ljava/lang/String;Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/server/ServerScoreboard$Method;Ljava/lang/String;Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133339_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetScorePacket/getOwner ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133342_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetScorePacket/getObjectiveName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133343_ ()I net/minecraft/network/protocol/game/ClientboundSetScorePacket/getScore ()I +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133344_ ()Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/network/protocol/game/ClientboundSetScorePacket/getMethod ()Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (I)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/f_195796_ ()I net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/simulationDistance ()I +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_179385_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (JJZ)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (JJZ)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_133358_ ()J net/minecraft/network/protocol/game/ClientboundSetTimePacket/getGameTime ()J +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_133361_ ()J net/minecraft/network/protocol/game/ClientboundSetTimePacket/getDayTime ()J +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_179399_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (III)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_179415_ ()I net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/getFadeIn ()I +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_179416_ ()I net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/getStay ()I +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_179417_ ()I net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/getFadeOut ()I +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/entity/Entity;FFJ)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/entity/Entity;FFJ)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133429_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133430_ ()I net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133431_ ()F net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getVolume ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133432_ ()F net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getPitch ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_237837_ ()J net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_263456_ ()Lnet/minecraft/core/Holder; net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getSound ()Lnet/minecraft/core/Holder; +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_263464_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;DDDFFJ)V net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;DDDFFJ)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133458_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/network/protocol/game/ClientboundSoundPacket/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133459_ ()D net/minecraft/network/protocol/game/ClientboundSoundPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133460_ ()D net/minecraft/network/protocol/game/ClientboundSoundPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133461_ ()D net/minecraft/network/protocol/game/ClientboundSoundPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133462_ ()F net/minecraft/network/protocol/game/ClientboundSoundPacket/getVolume ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133463_ ()F net/minecraft/network/protocol/game/ClientboundSoundPacket/getPitch ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_237848_ ()J net/minecraft/network/protocol/game/ClientboundSoundPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_263212_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_263229_ ()Lnet/minecraft/core/Holder; net/minecraft/network/protocol/game/ClientboundSoundPacket/getSound ()Lnet/minecraft/core/Holder; +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_133476_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundStopSoundPacket/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_133479_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/network/protocol/game/ClientboundStopSoundPacket/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundSystemChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_237849_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSystemChatPacket/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_240374_ ()Z net/minecraft/network/protocol/game/ClientboundSystemChatPacket/overlay ()Z +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundSystemChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundSystemChatPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSystemChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_133489_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundTabListPacket/getHeader ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_133492_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundTabListPacket/getFooter ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (ILnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (ILnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_133506_ ()I net/minecraft/network/protocol/game/ClientboundTagQueryPacket/getTransactionId ()I +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_133509_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/protocol/game/ClientboundTagQueryPacket/getTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundTagQueryPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (III)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_133524_ ()I net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/getItemId ()I +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_133527_ ()I net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/getPlayerId ()I +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_133528_ ()I net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/getAmount ()I +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133545_ ()I net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133548_ ()D net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133549_ ()D net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133550_ ()D net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133551_ ()B net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getyRot ()B +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133552_ ()B net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getxRot ()B +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133553_ ()Z net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/isOnGround ()Z +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (ZLjava/util/Collection;Ljava/util/Set;Ljava/util/Map;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (ZLjava/util/Collection;Ljava/util/Set;Ljava/util/Map;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133570_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/getAdded ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133573_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/getRemoved ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133574_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/getProgress ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133575_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/shouldReset ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_179440_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Advancement$Builder;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Advancement$Builder;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_179443_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (ILjava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (ILjava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_133588_ ()I net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_133591_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/getValues ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_179448_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_179456_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_257124_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_257125_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;DLjava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;DLjava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/m_133601_ ()Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/getAttribute ()Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/m_133602_ ()D net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/getBase ()D +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/m_133603_ ()Ljava/util/Collection; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/getModifiers ()Ljava/util/Collection; +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Ljava/util/Set;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Ljava/util/Set;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/f_244610_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/features ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133622_ ()I net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133624_ ()B net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEffectAmplifier ()B +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133625_ ()I net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEffectDurationTicks ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133626_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/isEffectVisible ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133627_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/isEffectAmbient ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133628_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effectShowsIcon ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_237878_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_237879_ ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getFactorData ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_266132_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_266133_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Ljava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_133642_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/lambda$fromNetwork$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_133644_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/getRecipes ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_133647_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_179469_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Ljava/util/Map;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Ljava/util/Map;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_179479_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_179482_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/getTags ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_179483_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_206652_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_133668_ (Ljava/util/UUID;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getEntityName (Ljava/util/UUID;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_179486_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getEntityName (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_237880_ (Lnet/minecraft/util/RandomSource;[Ljava/lang/String;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getRandomString (Lnet/minecraft/util/RandomSource;[Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_237883_ (Ljava/util/UUID;)Lnet/minecraft/util/RandomSource; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getRandom (Ljava/util/UUID;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/network/protocol/game/DebugPackets/ ()V net/minecraft/network/protocol/game/DebugPackets/ ()V +MD: net/minecraft/network/protocol/game/DebugPackets/ ()V net/minecraft/network/protocol/game/DebugPackets/ ()V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133674_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/network/protocol/game/DebugPackets/sendGameTestClearPacket (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133676_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiPacketsForChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133679_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiAddedPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133682_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;II)V net/minecraft/network/protocol/game/DebugPackets/sendGameTestAddMarker (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;II)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133688_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Collection;)V net/minecraft/network/protocol/game/DebugPackets/sendRaids (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133691_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/DebugPackets/sendPacketToAllPlayers (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133695_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/network/protocol/game/DebugPackets/sendEntityBrain (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133697_ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/network/protocol/game/DebugPackets/sendBeeInfo (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133699_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/goal/GoalSelector;)V net/minecraft/network/protocol/game/DebugPackets/sendGoalSelector (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/goal/GoalSelector;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133703_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/pathfinder/Path;F)V net/minecraft/network/protocol/game/DebugPackets/sendPathFindingPacket (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/pathfinder/Path;F)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133708_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendNeighborsUpdatePacket (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133711_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/network/protocol/game/DebugPackets/sendStructurePacket (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133716_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiRemovedPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133719_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiTicketCountPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133722_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendVillageSectionsPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179489_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendPoiPacketsForChunk$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179492_ (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugPackets/getShortDescription (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugPackets/m_179495_ (Lnet/minecraft/world/entity/LivingEntity;J)Ljava/util/List; net/minecraft/network/protocol/game/DebugPackets/getMemoryDescriptions (Lnet/minecraft/world/entity/LivingEntity;J)Ljava/util/List; +MD: net/minecraft/network/protocol/game/DebugPackets/m_179498_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/DebugPackets/writeBrain (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179507_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/network/protocol/game/DebugPackets/sendGameEventListenerInfo (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179510_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V net/minecraft/network/protocol/game/DebugPackets/sendHiveInfo (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237885_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugPackets/lambda$sendPoiAddedPacket$2 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugPackets/m_237887_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/DebugPackets/sendGameEventInfo (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237891_ (Lnet/minecraft/core/Holder;)Z net/minecraft/network/protocol/game/DebugPackets/lambda$sendPoiPacketsForChunk$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/network/protocol/game/DebugPackets/m_237893_ (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/lang/Integer;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$9 (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/lang/Integer;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237898_ (Ljava/util/List;Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$10 (Ljava/util/List;Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237902_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendGoalSelector$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237905_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/raid/Raid;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendRaids$4 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/raid/Raid;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237908_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$7 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237911_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$6 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237914_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$8 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237917_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendBeeInfo$5 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_142110_ (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePong (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_214047_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChatCommand (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_241885_ (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChatAck (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_252797_ (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChatSessionUpdate (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5527_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSignUpdate (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5591_ (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleRenameItem (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5617_ (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleClientInformation (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5659_ (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5681_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerCommand (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5683_ (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleKeepAlive (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5712_ (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetBeaconPacket (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5760_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleUseItem (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5914_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleContainerClick (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5918_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerInput (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5938_ (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePaddleBoat (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5964_ (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCreativeModeSlot (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6272_ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleClientCommand (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6321_ (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSelectTrade (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6371_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleUseItemOn (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6449_ (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleJigsawGenerate (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6557_ (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleContainerButtonClick (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6629_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCommandMinecart (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6780_ (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleBlockEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6828_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6829_ (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleEditBook (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6936_ (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleTeleportToEntityPacket (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6946_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleInteract (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6947_ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSeenAdvancements (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7185_ (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleMovePlayer (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7191_ (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7192_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCommandBlock (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7376_ (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleAcceptTeleportPacket (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7388_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChat (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7411_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleRecipeBookSeenRecipePacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7423_ (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleCustomPayload (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7424_ (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetStructureBlock (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7477_ (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7502_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerAction (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7529_ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleResourcePackResponse (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7548_ (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7728_ (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleLockDifficulty (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7741_ (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleCustomCommandSuggestions (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7798_ (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7951_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleContainerClose (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7953_ (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleAnimate (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7965_ (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePickItem (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7982_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleRecipeBookChangeSettingsPacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_8019_ (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetJigsawBlock (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V +MD: net/minecraft/network/protocol/game/ServerPacketListener/m_201767_ ()Z net/minecraft/network/protocol/game/ServerPacketListener/shouldPropagateHandlingExceptions ()Z +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (I)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_133795_ ()I net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (ILnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_133810_ ()I net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/getTransactionId ()I +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_133813_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_133824_ ()Lnet/minecraft/world/Difficulty; net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (I)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatAckPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/f_244085_ ()I net/minecraft/network/protocol/game/ServerboundChatAckPacket/offset ()I +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatAckPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatAckPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/commands/arguments/ArgumentSignatures;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/commands/arguments/ArgumentSignatures;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatCommandPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237922_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/command ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237923_ ()Ljava/time/Instant; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237924_ ()Lnet/minecraft/commands/arguments/ArgumentSignatures; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/argumentSignatures ()Lnet/minecraft/commands/arguments/ArgumentSignatures; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_240858_ ()J net/minecraft/network/protocol/game/ServerboundChatCommandPacket/salt ()J +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_241638_ ()Lnet/minecraft/network/chat/LastSeenMessages$Update; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/lastSeenMessages ()Lnet/minecraft/network/chat/LastSeenMessages$Update; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatCommandPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V net/minecraft/network/protocol/game/ServerboundChatPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_133827_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatPacket/message ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_237950_ ()Ljava/time/Instant; net/minecraft/network/protocol/game/ServerboundChatPacket/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240898_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/protocol/game/ServerboundChatPacket/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240906_ ()J net/minecraft/network/protocol/game/ServerboundChatPacket/salt ()J +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_241662_ ()Lnet/minecraft/network/chat/LastSeenMessages$Update; net/minecraft/network/protocol/game/ServerboundChatPacket/lastSeenMessages ()Lnet/minecraft/network/chat/LastSeenMessages$Update; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/chat/RemoteChatSession$Data;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/chat/RemoteChatSession$Data;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/f_252446_ ()Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/chatSession ()Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_133850_ ()Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/m_179548_ ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Ljava/lang/String;ILnet/minecraft/world/entity/player/ChatVisiblity;ZILnet/minecraft/world/entity/HumanoidArm;ZZ)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Ljava/lang/String;ILnet/minecraft/world/entity/player/ChatVisiblity;ZILnet/minecraft/world/entity/HumanoidArm;ZZ)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133863_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/language ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133864_ ()I net/minecraft/network/protocol/game/ServerboundClientInformationPacket/viewDistance ()I +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133865_ ()Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatVisibility ()Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133866_ ()Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatColors ()Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133867_ ()I net/minecraft/network/protocol/game/ServerboundClientInformationPacket/modelCustomisation ()I +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133868_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/mainHand ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_179550_ ()Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/textFilteringEnabled ()Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_195812_ ()Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/allowsListing ()Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundClientInformationPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (ILjava/lang/String;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (ILjava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_133901_ ()I net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_133904_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/getCommand ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (II)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (II)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_133935_ ()I net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_133938_ ()I net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/getButtonId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (IIIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/item/ItemStack;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (IIIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/item/ItemStack;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133959_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133962_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getSlotNum ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133963_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getButtonNum ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133966_ ()Lnet/minecraft/world/inventory/ClickType; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getClickType ()Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_179579_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Integer; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Integer; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_179581_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getCarriedItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_179582_ ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getChangedSlots ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_182741_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getStateId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (I)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_179585_ ()I net/minecraft/network/protocol/game/ServerboundContainerClosePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ ()V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ ()V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_179589_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/getIdentifier ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_179590_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (ILjava/util/List;Ljava/util/Optional;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (ILjava/util/List;Ljava/util/Optional;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_134013_ ()I net/minecraft/network/protocol/game/ServerboundEditBookPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182752_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182755_ ()Ljava/util/List; net/minecraft/network/protocol/game/ServerboundEditBookPacket/getPages ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182756_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182758_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182761_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ServerboundEditBookPacket/getTitle ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182762_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (II)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (II)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_134026_ ()I net/minecraft/network/protocol/game/ServerboundEntityTagQuery/getTransactionId ()I +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_134029_ ()I net/minecraft/network/protocol/game/ServerboundEntityTagQuery/getEntityId ()I +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket/ ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/ (IZLnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/ (IZLnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_134061_ ()Z net/minecraft/network/protocol/game/ServerboundInteractPacket/isUsingSecondaryAction ()Z +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179603_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ServerboundInteractPacket/getTarget (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179605_ (Lnet/minecraft/world/entity/Entity;Z)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; net/minecraft/network/protocol/game/ServerboundInteractPacket/createAttackPacket (Lnet/minecraft/world/entity/Entity;Z)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179608_ (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; net/minecraft/network/protocol/game/ServerboundInteractPacket/createInteractionPacket (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179612_ (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; net/minecraft/network/protocol/game/ServerboundInteractPacket/createInteractionPacket (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179617_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket$1/ ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$1/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$1/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$1/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ (Ljava/lang/String;ILjava/util/function/Function;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ (Ljava/lang/String;ILjava/util/function/Function;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/m_179637_ ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/$values ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/m_179638_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/lambda$static$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/values ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/values ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/m_141994_ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/onAttack ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/m_142143_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/onInteraction (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/m_142299_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/onInteraction (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_134087_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_134090_ ()I net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/levels ()I +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_134091_ ()Z net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/keepJigsaws ()Z +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (J)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (J)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_134102_ ()J net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/getId ()J +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Z)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Z)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_134115_ ()Z net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/isLocked ()Z +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/ (DDDFFZZZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/ (DDDFFZZZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134129_ (D)D net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getX (D)D +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134131_ (F)F net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getYRot (F)F +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134139_ ()Z net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/isOnGround ()Z +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134140_ (D)D net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getY (D)D +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134142_ (F)F net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getXRot (F)F +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134146_ (D)D net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getZ (D)D +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_179683_ ()Z net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasPosition ()Z +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_179684_ ()Z net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasRotation ()Z +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/ (DDDZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/ (DDDZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/m_179685_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/ (DDDFFZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/ (DDDFFZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/m_179687_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/ (FFZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/ (FFZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/m_179689_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/ (Z)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/ (Z)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/m_179697_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134199_ ()D net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getX ()D +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134202_ ()D net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getY ()D +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134203_ ()D net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getZ ()D +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134204_ ()F net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134205_ ()F net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (ZZ)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (ZZ)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_134218_ ()Z net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/getLeft ()Z +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_134221_ ()Z net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/getRight ()Z +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (I)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_134232_ ()I net/minecraft/network/protocol/game/ServerboundPickItemPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_134249_ ()I net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_134252_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/getRecipe ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_134253_ ()Z net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/isShiftDown ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_134264_ ()Z net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/isFlying ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_134281_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_134284_ ()Lnet/minecraft/core/Direction; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_134285_ ()Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_237987_ ()I net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getSequence ()I +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/m_179712_ ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;I)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_134320_ ()Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_134321_ ()I net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/getData ()I +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_179715_ ()I net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/m_179716_ ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (FFZZ)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (FFZZ)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134355_ ()F net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/getXxa ()F +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134358_ ()F net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/getZza ()F +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134359_ ()Z net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isJumping ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134360_ ()Z net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isShiftKeyDown ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/ (I)V net/minecraft/network/protocol/game/ServerboundPongPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPongPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_179732_ ()I net/minecraft/network/protocol/game/ServerboundPongPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPongPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPongPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPongPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_134375_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/getBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_134378_ ()Z net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isOpen ()Z +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_134379_ ()Z net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isFiltering ()Z +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_134390_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/getRecipe ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_134403_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundRenameItemPacket/getName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_179741_ ()Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/m_179742_ ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134442_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/openedTab (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134444_ ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/closedScreen ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134447_ ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/getTab ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/m_179745_ ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (I)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_134469_ ()I net/minecraft/network/protocol/game/ServerboundSelectTradePacket/getItem ()I +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_237994_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/getPrimary ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_238000_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/getSecondary ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257126_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257127_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257128_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257129_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (I)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_134498_ ()I net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;ZZZ)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;ZZZ)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134521_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134524_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/getCommand ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134525_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/isTrackOutput ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134526_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/isConditional ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134527_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/isAutomatic ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134528_ ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/getMode ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (ILjava/lang/String;Z)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (ILjava/lang/String;Z)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_134537_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/getCommandBlock (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_134545_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/getCommand ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_134548_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/isTrackOutput ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_134561_ ()I net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/getSlotNum ()I +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_134564_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134585_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134588_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134589_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getTarget ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134590_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getPool ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134591_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getFinalState ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134592_ ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getJoint ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;Lnet/minecraft/world/level/block/state/properties/StructureMode;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Ljava/lang/String;ZZZFJ)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;Lnet/minecraft/world/level/block/state/properties/StructureMode;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Ljava/lang/String;ZZZFJ)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134629_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134632_ ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getUpdateType ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134633_ ()Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getMode ()Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134634_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134635_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getOffset ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134637_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134638_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134639_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getData ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134640_ ()Z net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/isIgnoreEntities ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134641_ ()Z net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/isShowAir ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134642_ ()Z net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/isShowBoundingBox ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134643_ ()F net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getIntegrity ()F +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134644_ ()J net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_179787_ ()Lnet/minecraft/core/Vec3i; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/core/BlockPos;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/core/BlockPos;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_134660_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_134663_ ()[Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/getLines ()[Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_276788_ ()Z net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/isFrontText ()Z +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_134674_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ServerboundSwingPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Ljava/util/UUID;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Ljava/util/UUID;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_134681_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/getEntity (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_134703_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_134706_ ()Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/getHitResult ()Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_238008_ ()I net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/getSequence ()I +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/world/InteractionHand;I)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/world/InteractionHand;I)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_134717_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ServerboundUseItemPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_238013_ ()I net/minecraft/network/protocol/game/ServerboundUseItemPacket/getSequence ()I +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/VecDeltaCodec/ ()V net/minecraft/network/protocol/game/VecDeltaCodec/ ()V +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238017_ (D)J net/minecraft/network/protocol/game/VecDeltaCodec/encode (D)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238019_ (J)D net/minecraft/network/protocol/game/VecDeltaCodec/decode (J)D +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238021_ (JJJ)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/VecDeltaCodec/decode (JJJ)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238025_ (Lnet/minecraft/world/phys/Vec3;)J net/minecraft/network/protocol/game/VecDeltaCodec/encodeX (Lnet/minecraft/world/phys/Vec3;)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238027_ (Lnet/minecraft/world/phys/Vec3;)J net/minecraft/network/protocol/game/VecDeltaCodec/encodeY (Lnet/minecraft/world/phys/Vec3;)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238029_ (Lnet/minecraft/world/phys/Vec3;)J net/minecraft/network/protocol/game/VecDeltaCodec/encodeZ (Lnet/minecraft/world/phys/Vec3;)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238031_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/VecDeltaCodec/delta (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238033_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/VecDeltaCodec/setBase (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Ljava/lang/String;ILnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Ljava/lang/String;ILnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_134735_ ()Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/protocol/handshake/ClientIntentionPacket/getIntention ()Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_134738_ ()I net/minecraft/network/protocol/handshake/ClientIntentionPacket/getProtocolVersion ()I +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_179802_ ()Ljava/lang/String; net/minecraft/network/protocol/handshake/ClientIntentionPacket/getHostName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_179803_ ()I net/minecraft/network/protocol/handshake/ClientIntentionPacket/getPort ()I +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_5797_ (Lnet/minecraft/network/protocol/handshake/ServerHandshakePacketListener;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/handle (Lnet/minecraft/network/protocol/handshake/ServerHandshakePacketListener;)V +MD: net/minecraft/network/protocol/handshake/ServerHandshakePacketListener/m_7322_ (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V net/minecraft/network/protocol/handshake/ServerHandshakePacketListener/handleIntention (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_5693_ (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleCompression (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_5800_ (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleDisconnect (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_7056_ (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleGameProfile (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_7254_ (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleCustomQuery (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_7318_ (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleHello (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (ILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (ILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_134755_ ()I net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/getTransactionId ()I +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_179811_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/getIdentifier ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_179812_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_134774_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/network/protocol/login/ClientboundGameProfilePacket/getGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Ljava/lang/String;[B[B)V net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Ljava/lang/String;[B[B)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_134791_ ()Ljava/lang/String; net/minecraft/network/protocol/login/ClientboundHelloPacket/getServerId ()Ljava/lang/String; +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_134794_ ()Ljava/security/PublicKey; net/minecraft/network/protocol/login/ClientboundHelloPacket/getPublicKey ()Ljava/security/PublicKey; +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_252784_ ()[B net/minecraft/network/protocol/login/ClientboundHelloPacket/getChallenge ()[B +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (I)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (I)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_134806_ ()I net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/getCompressionThreshold ()I +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_134819_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/getReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ServerLoginPacketListener/m_5990_ (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V net/minecraft/network/protocol/login/ServerLoginPacketListener/handleHello (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V +MD: net/minecraft/network/protocol/login/ServerLoginPacketListener/m_7223_ (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V net/minecraft/network/protocol/login/ServerLoginPacketListener/handleCustomQueryPacket (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V +MD: net/minecraft/network/protocol/login/ServerLoginPacketListener/m_8072_ (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V net/minecraft/network/protocol/login/ServerLoginPacketListener/handleKey (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (ILnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (ILnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_179824_ ()I net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/getTransactionId ()I +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_179825_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_238035_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_238038_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/handle (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Ljava/lang/String;Ljava/util/Optional;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Ljava/lang/String;Ljava/util/Optional;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/login/ServerboundHelloPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_238040_ ()Ljava/lang/String; net/minecraft/network/protocol/login/ServerboundHelloPacket/name ()Ljava/lang/String; +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_240375_ ()Ljava/util/Optional; net/minecraft/network/protocol/login/ServerboundHelloPacket/profileId ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/hashCode ()I net/minecraft/network/protocol/login/ServerboundHelloPacket/hashCode ()I +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/handle (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/login/ServerboundHelloPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_134859_ (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey; net/minecraft/network/protocol/login/ServerboundKeyPacket/getSecretKey (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey; +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_253194_ ([BLjava/security/PrivateKey;)Z net/minecraft/network/protocol/login/ServerboundKeyPacket/isChallengeValid ([BLjava/security/PrivateKey;)Z +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/handle (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V +MD: net/minecraft/network/protocol/status/ClientStatusPacketListener/m_6440_ (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V net/minecraft/network/protocol/status/ClientStatusPacketListener/handleStatusResponse (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V +MD: net/minecraft/network/protocol/status/ClientStatusPacketListener/m_7017_ (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V net/minecraft/network/protocol/status/ClientStatusPacketListener/handlePongResponse (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (J)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (J)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_179832_ ()J net/minecraft/network/protocol/status/ClientboundPongResponsePacket/getTime ()J +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_5797_ (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/handle (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/protocol/status/ServerStatus;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/protocol/status/ServerStatus;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/f_134886_ ()Lnet/minecraft/network/protocol/status/ServerStatus; net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/status ()Lnet/minecraft/network/protocol/status/ServerStatus; +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/hashCode ()I net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/hashCode ()I +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/m_5797_ (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/handle (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus/ ()V net/minecraft/network/protocol/status/ServerStatus/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Z)V net/minecraft/network/protocol/status/ServerStatus/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Z)V +MD: net/minecraft/network/protocol/status/ServerStatus/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus/f_134900_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/status/ServerStatus/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/status/ServerStatus/f_134901_ ()Ljava/util/Optional; net/minecraft/network/protocol/status/ServerStatus/players ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/status/ServerStatus/f_134902_ ()Ljava/util/Optional; net/minecraft/network/protocol/status/ServerStatus/version ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/status/ServerStatus/f_134903_ ()Ljava/util/Optional; net/minecraft/network/protocol/status/ServerStatus/favicon ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/status/ServerStatus/f_242955_ ()Z net/minecraft/network/protocol/status/ServerStatus/enforcesSecureChat ()Z +MD: net/minecraft/network/protocol/status/ServerStatus/hashCode ()I net/minecraft/network/protocol/status/ServerStatus/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus/m_271955_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/ ()V net/minecraft/network/protocol/status/ServerStatus$Favicon/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/ ([B)V net/minecraft/network/protocol/status/ServerStatus$Favicon/ ([B)V +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus$Favicon/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271462_ ()[B net/minecraft/network/protocol/status/ServerStatus$Favicon/iconBytes ()[B +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/hashCode ()I net/minecraft/network/protocol/status/ServerStatus$Favicon/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_271771_ (Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$3 (Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_274066_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$2 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_274067_ ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_274068_ ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$1 ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/ ()V net/minecraft/network/protocol/status/ServerStatus$Players/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus$Players/ (IILjava/util/List;)V net/minecraft/network/protocol/status/ServerStatus$Players/ (IILjava/util/List;)V +MD: net/minecraft/network/protocol/status/ServerStatus$Players/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus$Players/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus$Players/f_134919_ ()Ljava/util/List; net/minecraft/network/protocol/status/ServerStatus$Players/sample ()Ljava/util/List; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271178_ ()I net/minecraft/network/protocol/status/ServerStatus$Players/online ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271503_ ()I net/minecraft/network/protocol/status/ServerStatus$Players/max ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Players/hashCode ()I net/minecraft/network/protocol/status/ServerStatus$Players/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Players/m_271836_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus$Players/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/m_271848_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus$Players/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Players/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/ ()V net/minecraft/network/protocol/status/ServerStatus$Version/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus$Version/ (Ljava/lang/String;I)V net/minecraft/network/protocol/status/ServerStatus$Version/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/status/ServerStatus$Version/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus$Version/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134962_ ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Version/name ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134963_ ()I net/minecraft/network/protocol/status/ServerStatus$Version/protocol ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Version/hashCode ()I net/minecraft/network/protocol/status/ServerStatus$Version/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Version/m_271745_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus$Version/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/m_272202_ ()Lnet/minecraft/network/protocol/status/ServerStatus$Version; net/minecraft/network/protocol/status/ServerStatus$Version/current ()Lnet/minecraft/network/protocol/status/ServerStatus$Version; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Version/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatusPacketListener/m_6733_ (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V net/minecraft/network/protocol/status/ServerStatusPacketListener/handleStatusRequest (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V +MD: net/minecraft/network/protocol/status/ServerStatusPacketListener/m_7883_ (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V net/minecraft/network/protocol/status/ServerStatusPacketListener/handlePingRequest (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (J)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (J)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_134998_ ()J net/minecraft/network/protocol/status/ServerboundPingRequestPacket/getTime ()J +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_5797_ (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/handle (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ ()V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ ()V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/m_5797_ (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/handle (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V +MD: net/minecraft/network/syncher/EntityDataAccessor/ (ILnet/minecraft/network/syncher/EntityDataSerializer;)V net/minecraft/network/syncher/EntityDataAccessor/ (ILnet/minecraft/network/syncher/EntityDataSerializer;)V +MD: net/minecraft/network/syncher/EntityDataAccessor/equals (Ljava/lang/Object;)Z net/minecraft/network/syncher/EntityDataAccessor/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/syncher/EntityDataAccessor/hashCode ()I net/minecraft/network/syncher/EntityDataAccessor/hashCode ()I +MD: net/minecraft/network/syncher/EntityDataAccessor/m_135015_ ()I net/minecraft/network/syncher/EntityDataAccessor/getId ()I +MD: net/minecraft/network/syncher/EntityDataAccessor/m_135016_ ()Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataAccessor/getSerializer ()Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataAccessor/toString ()Ljava/lang/String; net/minecraft/network/syncher/EntityDataAccessor/toString ()Ljava/lang/String; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_135021_ (I)Lnet/minecraft/network/syncher/EntityDataAccessor; net/minecraft/network/syncher/EntityDataSerializer/createAccessor (I)Lnet/minecraft/network/syncher/EntityDataAccessor; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238081_ (Lnet/minecraft/core/IdMap;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/simpleId (Lnet/minecraft/core/IdMap;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238083_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer/lambda$simpleId$2 (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238086_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializer/lambda$simpleId$1 (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238090_ (Ljava/lang/Class;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/simpleEnum (Ljava/lang/Class;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238092_ (Ljava/lang/Class;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Enum; net/minecraft/network/syncher/EntityDataSerializer/lambda$simpleEnum$0 (Ljava/lang/Class;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Enum; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238095_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/simple (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238098_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/optional (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializer/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializer/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer$1/ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)V net/minecraft/network/syncher/EntityDataSerializer$1/ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)V +MD: net/minecraft/network/syncher/EntityDataSerializer$1/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer$1/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer$1/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializer$1/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializer$ForValueType/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer$ForValueType/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers/ ()V net/minecraft/network/syncher/EntityDataSerializers/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers/ ()V net/minecraft/network/syncher/EntityDataSerializers/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers/m_135048_ (I)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializers/getSerializer (I)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializers/m_135050_ (Lnet/minecraft/network/syncher/EntityDataSerializer;)V net/minecraft/network/syncher/EntityDataSerializers/registerSerializer (Lnet/minecraft/network/syncher/EntityDataSerializer;)V +MD: net/minecraft/network/syncher/EntityDataSerializers/m_135052_ (Lnet/minecraft/network/syncher/EntityDataSerializer;)I net/minecraft/network/syncher/EntityDataSerializers/getSerializedId (Lnet/minecraft/network/syncher/EntityDataSerializer;)I +MD: net/minecraft/network/syncher/EntityDataSerializers/m_238117_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Byte;)V net/minecraft/network/syncher/EntityDataSerializers/lambda$static$0 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Byte;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/ ()V net/minecraft/network/syncher/EntityDataSerializers$1/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/ItemStack; net/minecraft/network/syncher/EntityDataSerializers$1/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$1/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$1/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/network/syncher/EntityDataSerializers$1/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_7020_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/network/syncher/EntityDataSerializers$1/copy (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$1/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$2/ ()V net/minecraft/network/syncher/EntityDataSerializers$2/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; net/minecraft/network/syncher/EntityDataSerializers$2/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$2/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$2/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V net/minecraft/network/syncher/EntityDataSerializers$2/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$3/ ()V net/minecraft/network/syncher/EntityDataSerializers$3/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_238135_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/syncher/EntityDataSerializers$3/readParticle (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/syncher/EntityDataSerializers$3/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$3/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$3/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/network/syncher/EntityDataSerializers$3/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$4/ ()V net/minecraft/network/syncher/EntityDataSerializers$4/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/Rotations; net/minecraft/network/syncher/EntityDataSerializers$4/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/Rotations; +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$4/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$4/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/Rotations;)V net/minecraft/network/syncher/EntityDataSerializers$4/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/ ()V net/minecraft/network/syncher/EntityDataSerializers$5/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/syncher/EntityDataSerializers$5/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$5/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/syncher/EntityDataSerializers$5/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$5/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$5/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_7020_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/syncher/EntityDataSerializers$5/copy (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/syncher/EntityDataSerializers$6/ ()V net/minecraft/network/syncher/EntityDataSerializers$6/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/network/syncher/EntityDataSerializers$6/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$6/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$6/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/network/syncher/EntityDataSerializers$6/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$7/ ()V net/minecraft/network/syncher/EntityDataSerializers$7/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/OptionalInt; net/minecraft/network/syncher/EntityDataSerializers$7/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/OptionalInt; +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$7/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/OptionalInt;)V net/minecraft/network/syncher/EntityDataSerializers$7/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/OptionalInt;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$7/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/ ()V net/minecraft/network/syncher/SynchedEntityData/ ()V +MD: net/minecraft/network/syncher/SynchedEntityData/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/syncher/SynchedEntityData/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135352_ ()Z net/minecraft/network/syncher/SynchedEntityData/isDirty ()Z +MD: net/minecraft/network/syncher/SynchedEntityData/m_135353_ (Ljava/lang/Class;Lnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/EntityDataAccessor; net/minecraft/network/syncher/SynchedEntityData/defineId (Ljava/lang/Class;Lnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/EntityDataAccessor; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135356_ (Ljava/util/List;)V net/minecraft/network/syncher/SynchedEntityData/assignValues (Ljava/util/List;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135370_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)Ljava/lang/Object; net/minecraft/network/syncher/SynchedEntityData/get (Lnet/minecraft/network/syncher/EntityDataAccessor;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135372_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData/define (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135375_ (Lnet/minecraft/network/syncher/SynchedEntityData$DataItem;Lnet/minecraft/network/syncher/SynchedEntityData$DataValue;)V net/minecraft/network/syncher/SynchedEntityData/assignValue (Lnet/minecraft/network/syncher/SynchedEntityData$DataItem;Lnet/minecraft/network/syncher/SynchedEntityData$DataValue;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135378_ ()Ljava/util/List; net/minecraft/network/syncher/SynchedEntityData/packDirty ()Ljava/util/List; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135379_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)Lnet/minecraft/network/syncher/SynchedEntityData$DataItem; net/minecraft/network/syncher/SynchedEntityData/getItem (Lnet/minecraft/network/syncher/EntityDataAccessor;)Lnet/minecraft/network/syncher/SynchedEntityData$DataItem; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135381_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData/set (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135385_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData/createDataItem (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135388_ ()Z net/minecraft/network/syncher/SynchedEntityData/isEmpty ()Z +MD: net/minecraft/network/syncher/SynchedEntityData/m_252804_ ()Ljava/util/List; net/minecraft/network/syncher/SynchedEntityData/getNonDefaultValues ()Ljava/util/List; +MD: net/minecraft/network/syncher/SynchedEntityData/m_276349_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;Z)V net/minecraft/network/syncher/SynchedEntityData/set (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;Z)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_285897_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)Z net/minecraft/network/syncher/SynchedEntityData/hasItem (Lnet/minecraft/network/syncher/EntityDataAccessor;)Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData$DataItem/ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135396_ ()Lnet/minecraft/network/syncher/EntityDataAccessor; net/minecraft/network/syncher/SynchedEntityData$DataItem/getAccessor ()Lnet/minecraft/network/syncher/EntityDataAccessor; +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135397_ (Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData$DataItem/setValue (Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135401_ (Z)V net/minecraft/network/syncher/SynchedEntityData$DataItem/setDirty (Z)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135403_ ()Ljava/lang/Object; net/minecraft/network/syncher/SynchedEntityData$DataItem/getValue ()Ljava/lang/Object; +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135406_ ()Z net/minecraft/network/syncher/SynchedEntityData$DataItem/isDirty ()Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_252838_ ()Z net/minecraft/network/syncher/SynchedEntityData$DataItem/isSetToDefault ()Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_253123_ ()Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataItem/value ()Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/ (ILnet/minecraft/network/syncher/EntityDataSerializer;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData$DataValue/ (ILnet/minecraft/network/syncher/EntityDataSerializer;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/equals (Ljava/lang/Object;)Z net/minecraft/network/syncher/SynchedEntityData$DataValue/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252469_ ()I net/minecraft/network/syncher/SynchedEntityData$DataValue/id ()I +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252511_ ()Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/SynchedEntityData$DataValue/serializer ()Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252525_ ()Ljava/lang/Object; net/minecraft/network/syncher/SynchedEntityData$DataValue/value ()Ljava/lang/Object; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/hashCode ()I net/minecraft/network/syncher/SynchedEntityData$DataValue/hashCode ()I +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252847_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataValue/create (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252860_ (Lnet/minecraft/network/FriendlyByteBuf;I)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataValue/read (Lnet/minecraft/network/FriendlyByteBuf;I)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252897_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/syncher/SynchedEntityData$DataValue/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252951_ (Lnet/minecraft/network/FriendlyByteBuf;ILnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataValue/read (Lnet/minecraft/network/FriendlyByteBuf;ILnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/toString ()Ljava/lang/String; net/minecraft/network/syncher/SynchedEntityData$DataValue/toString ()Ljava/lang/String; +MD: net/minecraft/realms/DisconnectedRealmsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/DisconnectedRealmsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_120661_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/realms/DisconnectedRealmsScreen/lambda$init$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/realms/DisconnectedRealmsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_7379_ ()V net/minecraft/realms/DisconnectedRealmsScreen/onClose ()V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_7856_ ()V net/minecraft/realms/DisconnectedRealmsScreen/init ()V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/realms/DisconnectedRealmsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/realms/RealmsConnect/ ()V net/minecraft/realms/RealmsConnect/ ()V +MD: net/minecraft/realms/RealmsConnect/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/realms/RealmsConnect/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/realms/RealmsConnect/m_120694_ ()V net/minecraft/realms/RealmsConnect/abort ()V +MD: net/minecraft/realms/RealmsConnect/m_120704_ ()V net/minecraft/realms/RealmsConnect/tick ()V +MD: net/minecraft/realms/RealmsConnect/m_175031_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)V net/minecraft/realms/RealmsConnect/connect (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)V +MD: net/minecraft/realms/RealmsConnect$1/ (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;ILnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/dto/RealmsServer;)V net/minecraft/realms/RealmsConnect$1/ (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;ILnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: net/minecraft/realms/RealmsConnect$1/m_120725_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/RealmsConnect$1/lambda$run$0 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/RealmsConnect$1/m_120727_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/realms/DisconnectedRealmsScreen;)V net/minecraft/realms/RealmsConnect$1/lambda$run$1 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/realms/DisconnectedRealmsScreen;)V +MD: net/minecraft/realms/RealmsConnect$1/run ()V net/minecraft/realms/RealmsConnect$1/run ()V +MD: net/minecraft/realms/RealmsLabel/ (Lnet/minecraft/network/chat/Component;III)V net/minecraft/realms/RealmsLabel/ (Lnet/minecraft/network/chat/Component;III)V +MD: net/minecraft/realms/RealmsLabel/m_175034_ ()Lnet/minecraft/network/chat/Component; net/minecraft/realms/RealmsLabel/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/realms/RealmsLabel/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/realms/RealmsLabel/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/realms/RealmsObjectSelectionList/ (IIIII)V net/minecraft/realms/RealmsObjectSelectionList/ (IIIII)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_120767_ (I)V net/minecraft/realms/RealmsObjectSelectionList/setSelectedItem (I)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5747_ ()I net/minecraft/realms/RealmsObjectSelectionList/getRowLeft ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5756_ ()I net/minecraft/realms/RealmsObjectSelectionList/getScrollbarPosition ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5759_ ()I net/minecraft/realms/RealmsObjectSelectionList/getRowWidth ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5773_ ()I net/minecraft/realms/RealmsObjectSelectionList/getItemCount ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5775_ ()I net/minecraft/realms/RealmsObjectSelectionList/getMaxPosition ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5988_ (Ljava/util/Collection;)V net/minecraft/realms/RealmsObjectSelectionList/replaceEntries (Ljava/util/Collection;)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7085_ (Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;)I net/minecraft/realms/RealmsObjectSelectionList/addEntry (Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;)I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7085_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I net/minecraft/realms/RealmsObjectSelectionList/addEntry (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7109_ (I)V net/minecraft/realms/RealmsObjectSelectionList/selectItem (I)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7178_ ()V net/minecraft/realms/RealmsObjectSelectionList/clear ()V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7610_ (I)I net/minecraft/realms/RealmsObjectSelectionList/getRowTop (I)I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7980_ (IIDDII)V net/minecraft/realms/RealmsObjectSelectionList/itemClicked (IIDDII)V +MD: net/minecraft/realms/RealmsScreen/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/RealmsScreen/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/RealmsScreen/m_120774_ (I)I net/minecraft/realms/RealmsScreen/row (I)I +MD: net/minecraft/realms/RealmsScreen/m_175073_ (Lnet/minecraft/realms/RealmsLabel;)Lnet/minecraft/realms/RealmsLabel; net/minecraft/realms/RealmsScreen/addLabel (Lnet/minecraft/realms/RealmsLabel;)Lnet/minecraft/realms/RealmsLabel; +MD: net/minecraft/realms/RealmsScreen/m_175075_ ()Lnet/minecraft/network/chat/Component; net/minecraft/realms/RealmsScreen/createLabelNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/realms/RepeatedNarrator/ (Ljava/time/Duration;)V net/minecraft/realms/RepeatedNarrator/ (Ljava/time/Duration;)V +MD: net/minecraft/realms/RepeatedNarrator/m_175078_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/realms/RepeatedNarrator$Params;)Lnet/minecraft/realms/RepeatedNarrator$Params; net/minecraft/realms/RepeatedNarrator/lambda$narrate$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/realms/RepeatedNarrator$Params;)Lnet/minecraft/realms/RepeatedNarrator$Params; +MD: net/minecraft/realms/RepeatedNarrator/m_240428_ (Lnet/minecraft/client/GameNarrator;Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/RepeatedNarrator/narrate (Lnet/minecraft/client/GameNarrator;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/RepeatedNarrator$Params/ (Lnet/minecraft/network/chat/Component;Lcom/google/common/util/concurrent/RateLimiter;)V net/minecraft/realms/RepeatedNarrator$Params/ (Lnet/minecraft/network/chat/Component;Lcom/google/common/util/concurrent/RateLimiter;)V +MD: net/minecraft/recipebook/PlaceRecipe/m_135408_ (IIILnet/minecraft/world/item/crafting/Recipe;Ljava/util/Iterator;I)V net/minecraft/recipebook/PlaceRecipe/placeRecipe (IIILnet/minecraft/world/item/crafting/Recipe;Ljava/util/Iterator;I)V +MD: net/minecraft/recipebook/PlaceRecipe/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/recipebook/PlaceRecipe/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/ ()V net/minecraft/recipebook/ServerPlaceRecipe/ ()V +MD: net/minecraft/recipebook/ServerPlaceRecipe/ (Lnet/minecraft/world/inventory/RecipeBookMenu;)V net/minecraft/recipebook/ServerPlaceRecipe/ (Lnet/minecraft/world/inventory/RecipeBookMenu;)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135434_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/recipebook/ServerPlaceRecipe/recipeClicked (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135438_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/recipebook/ServerPlaceRecipe/moveItemToGrid (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135449_ (ZIZ)I net/minecraft/recipebook/ServerPlaceRecipe/getStackSize (ZIZ)I +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135453_ ()Z net/minecraft/recipebook/ServerPlaceRecipe/testClearGrid ()Z +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135454_ ()I net/minecraft/recipebook/ServerPlaceRecipe/getAmountOfFreeSlotsInInventory ()I +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_179844_ ()V net/minecraft/recipebook/ServerPlaceRecipe/clearGrid ()V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/recipebook/ServerPlaceRecipe/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_6024_ (Lnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/recipebook/ServerPlaceRecipe/handleRecipeClicked (Lnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/resources/DelegatingOps/ (Lcom/mojang/serialization/DynamicOps;)V net/minecraft/resources/DelegatingOps/ (Lcom/mojang/serialization/DynamicOps;)V +MD: net/minecraft/resources/DelegatingOps/compressMaps ()Z net/minecraft/resources/DelegatingOps/compressMaps ()Z +MD: net/minecraft/resources/DelegatingOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createBoolean (Z)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createBoolean (Z)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createByte (B)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createByte (B)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createDouble (D)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createDouble (D)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createFloat (F)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createFloat (F)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createInt (I)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createInt (I)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createLong (J)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createLong (J)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createShort (S)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createShort (S)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createString (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createString (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/empty ()Ljava/lang/Object; net/minecraft/resources/DelegatingOps/empty ()Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/getBooleanValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getBooleanValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/listBuilder ()Lcom/mojang/serialization/ListBuilder; net/minecraft/resources/DelegatingOps/listBuilder ()Lcom/mojang/serialization/ListBuilder; +MD: net/minecraft/resources/DelegatingOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; net/minecraft/resources/DelegatingOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/resources/FileToIdConverter/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/resources/FileToIdConverter/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/resources/FileToIdConverter/m_245273_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/FileToIdConverter/fileToId (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/FileToIdConverter/m_245698_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/FileToIdConverter/idToFile (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/FileToIdConverter/m_246145_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/resources/FileToIdConverter/lambda$listMatchingResources$0 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/resources/FileToIdConverter/m_246568_ (Ljava/lang/String;)Lnet/minecraft/resources/FileToIdConverter; net/minecraft/resources/FileToIdConverter/json (Ljava/lang/String;)Lnet/minecraft/resources/FileToIdConverter; +MD: net/minecraft/resources/FileToIdConverter/m_246659_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/resources/FileToIdConverter/lambda$listMatchingResourceStacks$1 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/resources/FileToIdConverter/m_246760_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/resources/FileToIdConverter/listMatchingResourceStacks (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/resources/FileToIdConverter/m_247457_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/resources/FileToIdConverter/listMatchingResources (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/resources/HolderSetCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V net/minecraft/resources/HolderSetCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V +MD: net/minecraft/resources/HolderSetCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/encode (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/encode (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206663_ (Lcom/mojang/datafixers/util/Either;)Ljava/util/List; net/minecraft/resources/HolderSetCodec/lambda$homogenousList$1 (Lcom/mojang/datafixers/util/Either;)Ljava/util/List; +MD: net/minecraft/resources/HolderSetCodec/m_206665_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/lambda$decodeWithoutRegistry$7 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206667_ (Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; net/minecraft/resources/HolderSetCodec/homogenousList (Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/HolderSetCodec/m_206670_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/decodeWithoutRegistry (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206677_ (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/core/HolderSet; net/minecraft/resources/HolderSetCodec/lambda$decode$3 (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/resources/HolderSetCodec/m_206680_ (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/HolderSetCodec/lambda$decode$4 (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/HolderSetCodec/m_206683_ (Ljava/util/List;)Lcom/mojang/datafixers/util/Either; net/minecraft/resources/HolderSetCodec/lambda$homogenousList$2 (Ljava/util/List;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/resources/HolderSetCodec/m_206685_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; net/minecraft/resources/HolderSetCodec/create (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/HolderSetCodec/m_206689_ (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/encodeWithoutRegistry (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206693_ (Ljava/util/List;)Ljava/util/List; net/minecraft/resources/HolderSetCodec/lambda$homogenousList$0 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/resources/HolderSetCodec/m_274069_ (Lnet/minecraft/core/HolderSet;)Ljava/lang/String; net/minecraft/resources/HolderSetCodec/lambda$encode$5 (Lnet/minecraft/core/HolderSet;)Ljava/lang/String; +MD: net/minecraft/resources/HolderSetCodec/m_274070_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/resources/HolderSetCodec/lambda$decodeWithoutRegistry$6 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryDataLoader/ ()V net/minecraft/resources/RegistryDataLoader/ ()V +MD: net/minecraft/resources/RegistryDataLoader/ ()V net/minecraft/resources/RegistryDataLoader/ ()V +MD: net/minecraft/resources/RegistryDataLoader/m_245166_ (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V net/minecraft/resources/RegistryDataLoader/lambda$logErrors$8 (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V +MD: net/minecraft/resources/RegistryDataLoader/m_245333_ (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/RegistryDataLoader/lambda$logErrors$5 (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/RegistryDataLoader/m_245344_ (Ljava/lang/String;)V net/minecraft/resources/RegistryDataLoader/lambda$loadRegistryContents$9 (Ljava/lang/String;)V +MD: net/minecraft/resources/RegistryDataLoader/m_245594_ (Ljava/util/Map;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryDataLoader/lambda$load$0 (Ljava/util/Map;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryDataLoader/m_245896_ (Ljava/util/Map;)V net/minecraft/resources/RegistryDataLoader/logErrors (Ljava/util/Map;)V +MD: net/minecraft/resources/RegistryDataLoader/m_246019_ (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V net/minecraft/resources/RegistryDataLoader/lambda$logErrors$7 (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V +MD: net/minecraft/resources/RegistryDataLoader/m_246181_ (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/RegistryDataLoader/lambda$logErrors$6 (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/RegistryDataLoader/m_246502_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/resources/RegistryDataLoader/registryDirPath (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryDataLoader/m_247207_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/resources/RegistryDataLoader/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/resources/RegistryDataLoader/m_254784_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/resources/RegistryDataLoader/lambda$createContext$3 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/resources/RegistryDataLoader/m_254785_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/resources/RegistryDataLoader/lambda$load$1 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/resources/RegistryDataLoader/m_255016_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; net/minecraft/resources/RegistryDataLoader/createInfoForContextRegistry (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; +MD: net/minecraft/resources/RegistryDataLoader/m_255048_ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Decoder;Ljava/util/Map;)V net/minecraft/resources/RegistryDataLoader/loadRegistryContents (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Decoder;Ljava/util/Map;)V +MD: net/minecraft/resources/RegistryDataLoader/m_255259_ (Lnet/minecraft/core/WritableRegistry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; net/minecraft/resources/RegistryDataLoader/createInfoForNewRegistry (Lnet/minecraft/core/WritableRegistry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; +MD: net/minecraft/resources/RegistryDataLoader/m_255261_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; net/minecraft/resources/RegistryDataLoader/createContext (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; +MD: net/minecraft/resources/RegistryDataLoader/m_257130_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/resources/RegistryDataLoader/lambda$createContext$4 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/resources/RegistryDataLoader/m_257131_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/resources/RegistryDataLoader/lambda$load$2 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/resources/RegistryDataLoader$1/ (Ljava/util/Map;)V net/minecraft/resources/RegistryDataLoader$1/ (Ljava/util/Map;)V +MD: net/minecraft/resources/RegistryDataLoader$1/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryDataLoader$1/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryDataLoader$Loader/m_245441_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryDataLoader$Loader/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V net/minecraft/resources/RegistryDataLoader$RegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/equals (Ljava/lang/Object;)Z net/minecraft/resources/RegistryDataLoader$RegistryData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_243794_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/RegistryDataLoader$RegistryData/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_244580_ ()Lcom/mojang/serialization/Codec; net/minecraft/resources/RegistryDataLoader$RegistryData/elementCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/hashCode ()I net/minecraft/resources/RegistryDataLoader$RegistryData/hashCode ()I +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/m_245364_ (Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryDataLoader$RegistryData/create (Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/m_254786_ (Lnet/minecraft/core/WritableRegistry;Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryDataLoader$RegistryData/lambda$create$0 (Lnet/minecraft/core/WritableRegistry;Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/toString ()Ljava/lang/String; net/minecraft/resources/RegistryDataLoader$RegistryData/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V net/minecraft/resources/RegistryFileCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V +MD: net/minecraft/resources/RegistryFileCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_135589_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/RegistryFileCodec; net/minecraft/resources/RegistryFileCodec/create (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/RegistryFileCodec; +MD: net/minecraft/resources/RegistryFileCodec/m_135592_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lnet/minecraft/resources/RegistryFileCodec; net/minecraft/resources/RegistryFileCodec/create (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lnet/minecraft/resources/RegistryFileCodec; +MD: net/minecraft/resources/RegistryFileCodec/m_206704_ (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFileCodec/lambda$decode$8 (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFileCodec/m_206707_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/lambda$encode$2 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_206711_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/lambda$encode$1 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_206719_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFileCodec/lambda$decode$5 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFileCodec/m_214211_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFileCodec/lambda$decode$9 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFileCodec/m_274071_ ()Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$decode$4 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/m_274072_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$decode$6 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/m_274073_ ()Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$decode$3 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/m_274074_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/lambda$decode$7 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_274075_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$encode$0 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/toString ()Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/resources/RegistryFixedCodec/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/resources/RegistryFixedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_206724_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$encode$1 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_206740_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/RegistryFixedCodec; net/minecraft/resources/RegistryFixedCodec/create (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/RegistryFixedCodec; +MD: net/minecraft/resources/RegistryFixedCodec/m_214216_ (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFixedCodec/lambda$decode$7 (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFixedCodec/m_254788_ (Ljava/util/Optional;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$decode$8 (Ljava/util/Optional;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_274076_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$decode$6 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_274077_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$decode$5 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274078_ ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$encode$4 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274079_ ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$decode$9 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274080_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$encode$0 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274081_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$encode$3 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_274082_ ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$encode$2 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/toString ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryOps/ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryOps/m_254790_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Ljava/util/Optional; net/minecraft/resources/RegistryOps/lambda$retrieveElement$6 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps/m_254793_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/resources/RegistryOps/lambda$retrieveElement$11 (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/resources/RegistryOps/m_254795_ (Ljava/lang/Object;)Lnet/minecraft/core/HolderGetter; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$5 (Ljava/lang/Object;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/resources/RegistryOps/m_254796_ (Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$0 (Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_254866_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/resources/RegistryOps/retrieveElement (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/resources/RegistryOps/m_255006_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps/getter (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps/m_255056_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps/owner (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps/m_255058_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/resources/RegistryOps; net/minecraft/resources/RegistryOps/create (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/resources/RegistryOps; +MD: net/minecraft/resources/RegistryOps/m_255060_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps; net/minecraft/resources/RegistryOps/create (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps; +MD: net/minecraft/resources/RegistryOps/m_255175_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/resources/RegistryOps/retrieveGetter (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/resources/RegistryOps/m_255214_ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; net/minecraft/resources/RegistryOps/memoizeLookup (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; +MD: net/minecraft/resources/RegistryOps/m_274083_ ()Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$3 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274084_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$1 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274085_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveElement$10 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_274086_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveElement$7 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274087_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$4 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_274088_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$2 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_274089_ ()Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveElement$9 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274090_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveElement$8 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps$1/ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryOps$1/ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryOps$1/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps$1/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps$2/ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/resources/RegistryOps$2/ (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/resources/RegistryOps$2/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps$2/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps$2/m_257132_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; net/minecraft/resources/RegistryOps$2/lambda$lookup$0 (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderGetter;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/resources/RegistryOps$RegistryInfo/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderGetter;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/resources/RegistryOps$RegistryInfo/equals (Ljava/lang/Object;)Z net/minecraft/resources/RegistryOps$RegistryInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254675_ ()Lnet/minecraft/core/HolderOwner; net/minecraft/resources/RegistryOps$RegistryInfo/owner ()Lnet/minecraft/core/HolderOwner; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254724_ ()Lnet/minecraft/core/HolderGetter; net/minecraft/resources/RegistryOps$RegistryInfo/getter ()Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254751_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/resources/RegistryOps$RegistryInfo/elementsLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/hashCode ()I net/minecraft/resources/RegistryOps$RegistryInfo/hashCode ()I +MD: net/minecraft/resources/RegistryOps$RegistryInfo/toString ()Ljava/lang/String; net/minecraft/resources/RegistryOps$RegistryInfo/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps$RegistryInfoLookup/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps$RegistryInfoLookup/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/ResourceKey/ ()V net/minecraft/resources/ResourceKey/ ()V +MD: net/minecraft/resources/ResourceKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/resources/ResourceKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/resources/ResourceKey/m_135782_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey/m_135783_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/resources/ResourceKey/isFor (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/resources/ResourceKey/m_135785_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/create (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_135788_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/createRegistryKey (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_135790_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_195966_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/resources/ResourceKey/codec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/ResourceKey/m_195975_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/ResourceKey/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/ResourceKey/m_195977_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/lambda$codec$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_211136_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey/registry ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey/m_257133_ (Lnet/minecraft/resources/ResourceKey$InternKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/lambda$create$1 (Lnet/minecraft/resources/ResourceKey$InternKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/toString ()Ljava/lang/String; net/minecraft/resources/ResourceKey/toString ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceKey$InternKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/resources/ResourceKey$InternKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/resources/ResourceKey$InternKey/equals (Ljava/lang/Object;)Z net/minecraft/resources/ResourceKey$InternKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/ResourceKey$InternKey/f_256880_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey$InternKey/registry ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey$InternKey/f_257046_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey$InternKey/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey$InternKey/hashCode ()I net/minecraft/resources/ResourceKey$InternKey/hashCode ()I +MD: net/minecraft/resources/ResourceKey$InternKey/toString ()Ljava/lang/String; net/minecraft/resources/ResourceKey$InternKey/toString ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/ ()V net/minecraft/resources/ResourceLocation/ ()V +MD: net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V +MD: net/minecraft/resources/ResourceLocation/ ([Ljava/lang/String;)V net/minecraft/resources/ResourceLocation/ ([Ljava/lang/String;)V +MD: net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;)V net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;)V +MD: net/minecraft/resources/ResourceLocation/compareTo (Lnet/minecraft/resources/ResourceLocation;)I net/minecraft/resources/ResourceLocation/compareTo (Lnet/minecraft/resources/ResourceLocation;)I +MD: net/minecraft/resources/ResourceLocation/compareTo (Ljava/lang/Object;)I net/minecraft/resources/ResourceLocation/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/resources/ResourceLocation/equals (Ljava/lang/Object;)Z net/minecraft/resources/ResourceLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/ResourceLocation/hashCode ()I net/minecraft/resources/ResourceLocation/hashCode ()I +MD: net/minecraft/resources/ResourceLocation/m_135815_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/getPath ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_135816_ (C)Z net/minecraft/resources/ResourceLocation/isAllowedInResourceLocation (C)Z +MD: net/minecraft/resources/ResourceLocation/m_135818_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/read (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_135820_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/tryParse (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_135822_ (Ljava/lang/String;C)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/of (Ljava/lang/String;C)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_135827_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/getNamespace ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_135828_ (C)Z net/minecraft/resources/ResourceLocation/validPathChar (C)Z +MD: net/minecraft/resources/ResourceLocation/m_135830_ (Ljava/lang/String;)Z net/minecraft/resources/ResourceLocation/isValidResourceLocation (Ljava/lang/String;)Z +MD: net/minecraft/resources/ResourceLocation/m_135832_ (Ljava/lang/String;C)[Ljava/lang/String; net/minecraft/resources/ResourceLocation/decompose (Ljava/lang/String;C)[Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_135835_ (C)Z net/minecraft/resources/ResourceLocation/validNamespaceChar (C)Z +MD: net/minecraft/resources/ResourceLocation/m_135837_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/ResourceLocation/read (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/ResourceLocation/m_135841_ (Ljava/lang/String;)Z net/minecraft/resources/ResourceLocation/isValidPath (Ljava/lang/String;)Z +MD: net/minecraft/resources/ResourceLocation/m_135843_ (Ljava/lang/String;)Z net/minecraft/resources/ResourceLocation/isValidNamespace (Ljava/lang/String;)Z +MD: net/minecraft/resources/ResourceLocation/m_179910_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toDebugFileName ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_214293_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/tryBuild (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_214296_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/toLanguageKey (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_214298_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toLanguageKey ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_214299_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toShortLanguageKey ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_245185_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/assertValidPath (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_245413_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/assertValidNamespace (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_246208_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withPrefix (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_247266_ (Ljava/util/function/UnaryOperator;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withPath (Ljava/util/function/UnaryOperator;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_247449_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withPath (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_266382_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withSuffix (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_269108_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/toLanguageKey (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_274447_ (Ljava/lang/String;Lnet/minecraft/ResourceLocationException;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/lambda$read$0 (Ljava/lang/String;Lnet/minecraft/ResourceLocationException;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/toString ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toString ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation$Serializer/ ()V net/minecraft/resources/ResourceLocation$Serializer/ ()V +MD: net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/resources/ResourceLocation$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/resources/ResourceLocation$Serializer/serialize (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/resources/ResourceLocation$Serializer/serialize (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/server/Bootstrap/ ()V net/minecraft/server/Bootstrap/ ()V +MD: net/minecraft/server/Bootstrap/ ()V net/minecraft/server/Bootstrap/ ()V +MD: net/minecraft/server/Bootstrap/m_135870_ ()V net/minecraft/server/Bootstrap/bootStrap ()V +MD: net/minecraft/server/Bootstrap/m_135871_ (Ljava/lang/Iterable;Ljava/util/function/Function;Ljava/util/Set;)V net/minecraft/server/Bootstrap/checkTranslations (Ljava/lang/Iterable;Ljava/util/function/Function;Ljava/util/Set;)V +MD: net/minecraft/server/Bootstrap/m_135875_ (Ljava/lang/String;)V net/minecraft/server/Bootstrap/realStdoutPrintln (Ljava/lang/String;)V +MD: net/minecraft/server/Bootstrap/m_135877_ (Ljava/util/Set;)V net/minecraft/server/Bootstrap/checkGameruleTranslations (Ljava/util/Set;)V +MD: net/minecraft/server/Bootstrap/m_135879_ (Ljava/util/function/Function;Lnet/minecraft/locale/Language;Ljava/util/Set;Ljava/lang/Object;)V net/minecraft/server/Bootstrap/lambda$checkTranslations$0 (Ljava/util/function/Function;Lnet/minecraft/locale/Language;Ljava/util/Set;Ljava/lang/Object;)V +MD: net/minecraft/server/Bootstrap/m_135884_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/server/Bootstrap/lambda$getMissingTranslations$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/server/Bootstrap/m_135886_ ()Ljava/util/Set; net/minecraft/server/Bootstrap/getMissingTranslations ()Ljava/util/Set; +MD: net/minecraft/server/Bootstrap/m_135889_ ()V net/minecraft/server/Bootstrap/validate ()V +MD: net/minecraft/server/Bootstrap/m_135890_ ()V net/minecraft/server/Bootstrap/wrapStreams ()V +MD: net/minecraft/server/Bootstrap/m_179912_ (Ljava/util/function/Supplier;)V net/minecraft/server/Bootstrap/checkBootstrapCalled (Ljava/util/function/Supplier;)V +MD: net/minecraft/server/Bootstrap/m_179914_ (Ljava/lang/String;)V net/minecraft/server/Bootstrap/lambda$validate$3 (Ljava/lang/String;)V +MD: net/minecraft/server/Bootstrap/m_179916_ (Ljava/util/function/Supplier;)Ljava/lang/RuntimeException; net/minecraft/server/Bootstrap/createBootstrapException (Ljava/util/function/Supplier;)Ljava/lang/RuntimeException; +MD: net/minecraft/server/Bootstrap/m_179918_ ()Ljava/lang/String; net/minecraft/server/Bootstrap/lambda$validate$2 ()Ljava/lang/String; +MD: net/minecraft/server/Bootstrap$1/ (Lnet/minecraft/locale/Language;Ljava/util/Set;)V net/minecraft/server/Bootstrap$1/ (Lnet/minecraft/locale/Language;Ljava/util/Set;)V +MD: net/minecraft/server/Bootstrap$1/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/server/Bootstrap$1/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/server/ChainedJsonException/getMessage ()Ljava/lang/String; net/minecraft/server/ChainedJsonException/getMessage ()Ljava/lang/String; +MD: net/minecraft/server/ChainedJsonException/m_135906_ (Ljava/lang/Exception;)Lnet/minecraft/server/ChainedJsonException; net/minecraft/server/ChainedJsonException/forException (Ljava/lang/Exception;)Lnet/minecraft/server/ChainedJsonException; +MD: net/minecraft/server/ChainedJsonException/m_135908_ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException/prependJsonKey (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException/m_135910_ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException/setFilenameAndFlush (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException$Entry/ ()V net/minecraft/server/ChainedJsonException$Entry/ ()V +MD: net/minecraft/server/ChainedJsonException$Entry/m_135918_ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException$Entry/addJsonKey (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException$Entry/m_135923_ ()Ljava/lang/String; net/minecraft/server/ChainedJsonException$Entry/getJsonKeys ()Ljava/lang/String; +MD: net/minecraft/server/ChainedJsonException$Entry/m_179919_ ()Ljava/lang/String; net/minecraft/server/ChainedJsonException$Entry/getFilename ()Ljava/lang/String; +MD: net/minecraft/server/ChainedJsonException$Entry/toString ()Ljava/lang/String; net/minecraft/server/ChainedJsonException$Entry/toString ()Ljava/lang/String; +MD: net/minecraft/server/ConsoleInput/ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/ConsoleInput/ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/DebugLoggedPrintStream/ ()V net/minecraft/server/DebugLoggedPrintStream/ ()V +MD: net/minecraft/server/DebugLoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V net/minecraft/server/DebugLoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V +MD: net/minecraft/server/DebugLoggedPrintStream/m_6812_ (Ljava/lang/String;)V net/minecraft/server/DebugLoggedPrintStream/logLine (Ljava/lang/String;)V +MD: net/minecraft/server/Eula/ ()V net/minecraft/server/Eula/ ()V +MD: net/minecraft/server/Eula/ (Ljava/nio/file/Path;)V net/minecraft/server/Eula/ (Ljava/nio/file/Path;)V +MD: net/minecraft/server/Eula/m_135944_ ()Z net/minecraft/server/Eula/hasAgreedToEULA ()Z +MD: net/minecraft/server/Eula/m_135945_ ()Z net/minecraft/server/Eula/readFile ()Z +MD: net/minecraft/server/Eula/m_135946_ ()V net/minecraft/server/Eula/saveDefaults ()V +MD: net/minecraft/server/LoggedPrintStream/ ()V net/minecraft/server/LoggedPrintStream/ ()V +MD: net/minecraft/server/LoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V net/minecraft/server/LoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V +MD: net/minecraft/server/LoggedPrintStream/m_6812_ (Ljava/lang/String;)V net/minecraft/server/LoggedPrintStream/logLine (Ljava/lang/String;)V +MD: net/minecraft/server/LoggedPrintStream/println (Ljava/lang/Object;)V net/minecraft/server/LoggedPrintStream/println (Ljava/lang/Object;)V +MD: net/minecraft/server/LoggedPrintStream/println (Ljava/lang/String;)V net/minecraft/server/LoggedPrintStream/println (Ljava/lang/String;)V +MD: net/minecraft/server/Main/ ()V net/minecraft/server/Main/ ()V +MD: net/minecraft/server/Main/ ()V net/minecraft/server/Main/ ()V +MD: net/minecraft/server/Main/m_195488_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lnet/minecraft/core/Registry;)V net/minecraft/server/Main/forceUpgrade (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/server/Main/m_206518_ ()Z net/minecraft/server/Main/lambda$main$2 ()Z +MD: net/minecraft/server/Main/m_236697_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lnet/minecraft/server/Services;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljava/lang/Thread;)Lnet/minecraft/server/dedicated/DedicatedServer; net/minecraft/server/Main/lambda$main$3 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lnet/minecraft/server/Services;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljava/lang/Thread;)Lnet/minecraft/server/dedicated/DedicatedServer; +MD: net/minecraft/server/Main/m_244799_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/server/Main/lambda$main$0 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/server/Main/m_244800_ (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/Main/lambda$main$1 (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/Main/m_245383_ (Lnet/minecraft/server/dedicated/DedicatedServerProperties;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$InitConfig; net/minecraft/server/Main/loadOrCreateConfig (Lnet/minecraft/server/dedicated/DedicatedServerProperties;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$InitConfig; +MD: net/minecraft/server/Main/m_269308_ (Ljava/nio/file/Path;)V net/minecraft/server/Main/writePidFile (Ljava/nio/file/Path;)V +MD: net/minecraft/server/Main/main ([Ljava/lang/String;)V net/minecraft/server/Main/main ([Ljava/lang/String;)V +MD: net/minecraft/server/Main$1/ (Ljava/lang/String;Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/Main$1/ (Ljava/lang/String;Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/Main$1/run ()V net/minecraft/server/Main$1/run ()V +MD: net/minecraft/server/MinecraftServer/ ()V net/minecraft/server/MinecraftServer/ ()V +MD: net/minecraft/server/MinecraftServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/net/Proxy;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V net/minecraft/server/MinecraftServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/net/Proxy;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V +MD: net/minecraft/server/MinecraftServer/close ()V net/minecraft/server/MinecraftServer/close ()V +MD: net/minecraft/server/MinecraftServer/getServerModName ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getServerModName ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_129782_ ()Z net/minecraft/server/MinecraftServer/isShutdown ()Z +MD: net/minecraft/server/MinecraftServer/m_129783_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/MinecraftServer/overworld ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/MinecraftServer/m_129784_ ()Ljava/util/Set; net/minecraft/server/MinecraftServer/levelKeys ()Ljava/util/Set; +MD: net/minecraft/server/MinecraftServer/m_129785_ ()Ljava/lang/Iterable; net/minecraft/server/MinecraftServer/getAllLevels ()Ljava/lang/Iterable; +MD: net/minecraft/server/MinecraftServer/m_129790_ ()Ljava/security/KeyPair; net/minecraft/server/MinecraftServer/getKeyPair ()Ljava/security/KeyPair; +MD: net/minecraft/server/MinecraftServer/m_129792_ ()Z net/minecraft/server/MinecraftServer/isSingleplayer ()Z +MD: net/minecraft/server/MinecraftServer/m_129793_ ()V net/minecraft/server/MinecraftServer/initializeKeyPair ()V +MD: net/minecraft/server/MinecraftServer/m_129794_ ()Z net/minecraft/server/MinecraftServer/isDemo ()Z +MD: net/minecraft/server/MinecraftServer/m_129797_ ()Z net/minecraft/server/MinecraftServer/usesAuthentication ()Z +MD: net/minecraft/server/MinecraftServer/m_129798_ ()Z net/minecraft/server/MinecraftServer/getPreventProxyConnections ()Z +MD: net/minecraft/server/MinecraftServer/m_129799_ ()Z net/minecraft/server/MinecraftServer/isPvpAllowed ()Z +MD: net/minecraft/server/MinecraftServer/m_129801_ (I)V net/minecraft/server/MinecraftServer/setPort (I)V +MD: net/minecraft/server/MinecraftServer/m_129803_ (Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/server/MinecraftServer/getSpawnRadius (Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/server/MinecraftServer/m_129815_ (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V net/minecraft/server/MinecraftServer/createLevels (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V +MD: net/minecraft/server/MinecraftServer/m_129817_ (Lnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/world/level/DataPackConfig; net/minecraft/server/MinecraftServer/getSelectedPacks (Lnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/world/level/DataPackConfig; +MD: net/minecraft/server/MinecraftServer/m_129823_ (Lnet/minecraft/server/players/PlayerList;)V net/minecraft/server/MinecraftServer/setPlayerList (Lnet/minecraft/server/players/PlayerList;)V +MD: net/minecraft/server/MinecraftServer/m_129827_ (Lnet/minecraft/world/Difficulty;Z)V net/minecraft/server/MinecraftServer/setDifficulty (Lnet/minecraft/world/Difficulty;Z)V +MD: net/minecraft/server/MinecraftServer/m_129841_ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V net/minecraft/server/MinecraftServer/readScoreboard (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V +MD: net/minecraft/server/MinecraftServer/m_129843_ (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; net/minecraft/server/MinecraftServer/getWorldPath (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; +MD: net/minecraft/server/MinecraftServer/m_129847_ (Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/server/MinecraftServer/setupDebugLevel (Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/server/MinecraftServer/m_129849_ (Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/MinecraftServer/kickUnlistedPlayers (Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/MinecraftServer/m_129859_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/saveDebugReport (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129861_ (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/MinecraftServer/reloadResources (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/MinecraftServer/m_129872_ (Ljava/util/function/Function;)Lnet/minecraft/server/MinecraftServer; net/minecraft/server/MinecraftServer/spin (Ljava/util/function/Function;)Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/MinecraftServer/m_129880_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/MinecraftServer/getLevel (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/MinecraftServer/m_129885_ (ZZZ)Z net/minecraft/server/MinecraftServer/saveAllChunks (ZZZ)Z +MD: net/minecraft/server/MinecraftServer/m_129889_ ()Lnet/minecraft/server/ServerAdvancementManager; net/minecraft/server/MinecraftServer/getAdvancements ()Lnet/minecraft/server/ServerAdvancementManager; +MD: net/minecraft/server/MinecraftServer/m_129890_ ()Lnet/minecraft/server/ServerFunctionManager; net/minecraft/server/MinecraftServer/getFunctions ()Lnet/minecraft/server/ServerFunctionManager; +MD: net/minecraft/server/MinecraftServer/m_129891_ ()Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/MinecraftServer/getPackRepository ()Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/MinecraftServer/m_129892_ ()Lnet/minecraft/commands/Commands; net/minecraft/server/MinecraftServer/getCommands ()Lnet/minecraft/commands/Commands; +MD: net/minecraft/server/MinecraftServer/m_129893_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/MinecraftServer/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/MinecraftServer/m_129894_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/server/MinecraftServer/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/server/MinecraftServer/m_129896_ ()Lnet/minecraft/server/ServerScoreboard; net/minecraft/server/MinecraftServer/getScoreboard ()Lnet/minecraft/server/ServerScoreboard; +MD: net/minecraft/server/MinecraftServer/m_129897_ ()Lnet/minecraft/world/level/storage/CommandStorage; net/minecraft/server/MinecraftServer/getCommandStorage ()Lnet/minecraft/world/level/storage/CommandStorage; +MD: net/minecraft/server/MinecraftServer/m_129900_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/server/MinecraftServer/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/server/MinecraftServer/m_129901_ ()Lnet/minecraft/server/bossevents/CustomBossEvents; net/minecraft/server/MinecraftServer/getCustomBossEvents ()Lnet/minecraft/server/bossevents/CustomBossEvents; +MD: net/minecraft/server/MinecraftServer/m_129902_ ()Z net/minecraft/server/MinecraftServer/isEnforceWhitelist ()Z +MD: net/minecraft/server/MinecraftServer/m_129903_ ()F net/minecraft/server/MinecraftServer/getAverageTickTime ()F +MD: net/minecraft/server/MinecraftServer/m_129904_ ()Lnet/minecraft/util/FrameTimer; net/minecraft/server/MinecraftServer/getFrameTimer ()Lnet/minecraft/util/FrameTimer; +MD: net/minecraft/server/MinecraftServer/m_129905_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/server/MinecraftServer/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/server/MinecraftServer/m_129910_ ()Lnet/minecraft/world/level/storage/WorldData; net/minecraft/server/MinecraftServer/getWorldData ()Lnet/minecraft/world/level/storage/WorldData; +MD: net/minecraft/server/MinecraftServer/m_129913_ (Ljava/lang/String;)V net/minecraft/server/MinecraftServer/setLocalIp (Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_129915_ ()Z net/minecraft/server/MinecraftServer/isFlightAllowed ()Z +MD: net/minecraft/server/MinecraftServer/m_129916_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getMotd ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_129918_ ()Z net/minecraft/server/MinecraftServer/isStopped ()Z +MD: net/minecraft/server/MinecraftServer/m_129919_ ()Lnet/minecraft/server/network/ServerConnectionListener; net/minecraft/server/MinecraftServer/getConnection ()Lnet/minecraft/server/network/ServerConnectionListener; +MD: net/minecraft/server/MinecraftServer/m_129920_ ()Z net/minecraft/server/MinecraftServer/isReady ()Z +MD: net/minecraft/server/MinecraftServer/m_129921_ ()I net/minecraft/server/MinecraftServer/getTickCount ()I +MD: net/minecraft/server/MinecraftServer/m_129924_ ()I net/minecraft/server/MinecraftServer/getPlayerIdleTimeout ()I +MD: net/minecraft/server/MinecraftServer/m_129925_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/server/MinecraftServer/getSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/server/MinecraftServer/m_129926_ ()Lcom/mojang/authlib/GameProfileRepository; net/minecraft/server/MinecraftServer/getProfileRepository ()Lcom/mojang/authlib/GameProfileRepository; +MD: net/minecraft/server/MinecraftServer/m_129927_ ()Lnet/minecraft/server/players/GameProfileCache; net/minecraft/server/MinecraftServer/getProfileCache ()Lnet/minecraft/server/players/GameProfileCache; +MD: net/minecraft/server/MinecraftServer/m_129928_ ()Lnet/minecraft/network/protocol/status/ServerStatus; net/minecraft/server/MinecraftServer/getStatus ()Lnet/minecraft/network/protocol/status/ServerStatus; +MD: net/minecraft/server/MinecraftServer/m_129929_ ()V net/minecraft/server/MinecraftServer/invalidateStatus ()V +MD: net/minecraft/server/MinecraftServer/m_129932_ ()J net/minecraft/server/MinecraftServer/getNextTickTime ()J +MD: net/minecraft/server/MinecraftServer/m_129933_ ()Lcom/mojang/datafixers/DataFixer; net/minecraft/server/MinecraftServer/getFixerUpper ()Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/server/MinecraftServer/m_129938_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/MinecraftServer/sendDifficultyUpdate (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/MinecraftServer/m_129940_ (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V net/minecraft/server/MinecraftServer/prepareLevels (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V +MD: net/minecraft/server/MinecraftServer/m_129944_ (Lcom/mojang/authlib/GameProfile;)I net/minecraft/server/MinecraftServer/getProfilePermissions (Lcom/mojang/authlib/GameProfile;)I +MD: net/minecraft/server/MinecraftServer/m_129946_ (Ljava/lang/Runnable;)V net/minecraft/server/MinecraftServer/addTickable (Ljava/lang/Runnable;)V +MD: net/minecraft/server/MinecraftServer/m_129948_ (Ljava/lang/String;)V net/minecraft/server/MinecraftServer/setId (Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_129950_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpMiscStats (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129958_ (Z)V net/minecraft/server/MinecraftServer/setDifficultyLocked (Z)V +MD: net/minecraft/server/MinecraftServer/m_129960_ ()Z net/minecraft/server/MinecraftServer/haveTime ()Z +MD: net/minecraft/server/MinecraftServer/m_129961_ ()Z net/minecraft/server/MinecraftServer/pollTaskInternal ()Z +MD: net/minecraft/server/MinecraftServer/m_129962_ ()V net/minecraft/server/MinecraftServer/updateMobSpawningFlags ()V +MD: net/minecraft/server/MinecraftServer/m_129971_ (Ljava/lang/String;)Ljava/io/File; net/minecraft/server/MinecraftServer/getFile (Ljava/lang/String;)Ljava/io/File; +MD: net/minecraft/server/MinecraftServer/m_129975_ (Z)V net/minecraft/server/MinecraftServer/setDemo (Z)V +MD: net/minecraft/server/MinecraftServer/m_129983_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpGameRules (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129985_ (Z)V net/minecraft/server/MinecraftServer/setUsesAuthentication (Z)V +MD: net/minecraft/server/MinecraftServer/m_129989_ (Ljava/lang/String;)V net/minecraft/server/MinecraftServer/setMotd (Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_129991_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpClasspath (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129993_ (Z)V net/minecraft/server/MinecraftServer/setPreventProxyConnections (Z)V +MD: net/minecraft/server/MinecraftServer/m_129995_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpThreads (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129997_ (Z)V net/minecraft/server/MinecraftServer/setPvpAllowed (Z)V +MD: net/minecraft/server/MinecraftServer/m_129999_ (Z)V net/minecraft/server/MinecraftServer/setFlightAllowed (Z)V +MD: net/minecraft/server/MinecraftServer/m_130004_ (Z)V net/minecraft/server/MinecraftServer/setEnforceWhitelist (Z)V +MD: net/minecraft/server/MinecraftServer/m_130006_ ()V net/minecraft/server/MinecraftServer/loadLevel ()V +MD: net/minecraft/server/MinecraftServer/m_130008_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/MinecraftServer/getDefaultGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/MinecraftServer/m_130009_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getLocalIp ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_130010_ ()Z net/minecraft/server/MinecraftServer/isRunning ()Z +MD: net/minecraft/server/MinecraftServer/m_130011_ ()V net/minecraft/server/MinecraftServer/runServer ()V +MD: net/minecraft/server/MinecraftServer/m_130012_ ()V net/minecraft/server/MinecraftServer/waitUntilNextTick ()V +MD: net/minecraft/server/MinecraftServer/m_142116_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpServerProperties (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_142205_ ()Z net/minecraft/server/MinecraftServer/isResourcePackRequired ()Z +MD: net/minecraft/server/MinecraftServer/m_142359_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/MinecraftServer/getForcedGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/MinecraftServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/server/MinecraftServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/server/MinecraftServer/m_177896_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/ServerLevelData;ZZ)V net/minecraft/server/MinecraftServer/setInitialSpawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/ServerLevelData;ZZ)V +MD: net/minecraft/server/MinecraftServer/m_177908_ (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/server/MinecraftServer/lambda$spin$3 (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/server/MinecraftServer/m_177923_ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/server/MinecraftServer/startRecordingMetrics (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/MinecraftServer/m_177927_ ()Z net/minecraft/server/MinecraftServer/isRecordingMetrics ()Z +MD: net/minecraft/server/MinecraftServer/m_177928_ ()V net/minecraft/server/MinecraftServer/stopRecordingMetrics ()V +MD: net/minecraft/server/MinecraftServer/m_177929_ ()V net/minecraft/server/MinecraftServer/finishRecordingMetrics ()V +MD: net/minecraft/server/MinecraftServer/m_177930_ ()Ljava/net/Proxy; net/minecraft/server/MinecraftServer/getProxy ()Ljava/net/Proxy; +MD: net/minecraft/server/MinecraftServer/m_177933_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/level/ServerPlayerGameMode; net/minecraft/server/MinecraftServer/createGameModeForPlayer (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/level/ServerPlayerGameMode; +MD: net/minecraft/server/MinecraftServer/m_177935_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/server/MinecraftServer/fillSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/server/MinecraftServer/m_177941_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/server/MinecraftServer/getResourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/server/MinecraftServer/m_177942_ ()Z net/minecraft/server/MinecraftServer/isTimeProfilerRunning ()Z +MD: net/minecraft/server/MinecraftServer/m_177943_ ()V net/minecraft/server/MinecraftServer/startTimeProfiler ()V +MD: net/minecraft/server/MinecraftServer/m_177944_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/server/MinecraftServer/stopTimeProfiler ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/server/MinecraftServer/m_177945_ ()V net/minecraft/server/MinecraftServer/startMetricsRecordingTick ()V +MD: net/minecraft/server/MinecraftServer/m_177946_ ()V net/minecraft/server/MinecraftServer/endMetricsRecordingTick ()V +MD: net/minecraft/server/MinecraftServer/m_177947_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$14 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_177953_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/lambda$new$1 (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_182649_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/getWorldScreenshotFile ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_183306_ ()Z net/minecraft/server/MinecraftServer/hidesOnlinePlayers ()Z +MD: net/minecraft/server/MinecraftServer/m_183471_ ()Lnet/minecraft/util/ModCheck; net/minecraft/server/MinecraftServer/getModdedStatus ()Lnet/minecraft/util/ModCheck; +MD: net/minecraft/server/MinecraftServer/m_195514_ (ZZZ)Z net/minecraft/server/MinecraftServer/saveEverything (ZZZ)Z +MD: net/minecraft/server/MinecraftServer/m_195518_ ()Z net/minecraft/server/MinecraftServer/isCurrentlySaving ()Z +MD: net/minecraft/server/MinecraftServer/m_195521_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpNativeModules (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_200002_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$15 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_201446_ (Ljava/lang/Runnable;)V net/minecraft/server/MinecraftServer/executeIfPossible (Ljava/lang/Runnable;)V +MD: net/minecraft/server/MinecraftServer/m_202471_ ()Z net/minecraft/server/MinecraftServer/lambda$stopServer$7 ()Z +MD: net/minecraft/server/MinecraftServer/m_202475_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$19 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_202478_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/server/MinecraftServer/lambda$stopServer$6 (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/server/MinecraftServer/m_202479_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/lambda$startMetricsRecordingTick$29 (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_206568_ (Ljava/lang/Throwable;)Lnet/minecraft/CrashReport; net/minecraft/server/MinecraftServer/constructOrExtractCrashReport (Ljava/lang/Throwable;)Lnet/minecraft/CrashReport; +MD: net/minecraft/server/MinecraftServer/m_206579_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/MinecraftServer/registryAccess ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/MinecraftServer/m_206580_ (Ljava/util/concurrent/atomic/AtomicReference;)V net/minecraft/server/MinecraftServer/lambda$spin$2 (Ljava/util/concurrent/atomic/AtomicReference;)V +MD: net/minecraft/server/MinecraftServer/m_212902_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)Lnet/minecraft/server/MinecraftServer$ReloadableResources; net/minecraft/server/MinecraftServer/lambda$reloadResources$23 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)Lnet/minecraft/server/MinecraftServer$ReloadableResources; +MD: net/minecraft/server/MinecraftServer/m_212905_ (Ljava/util/Collection;)Lcom/google/common/collect/ImmutableList; net/minecraft/server/MinecraftServer/lambda$reloadResources$21 (Ljava/util/Collection;)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/server/MinecraftServer/m_212909_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$dumpNativeModules$27 (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_212914_ (Ljava/util/Collection;Ljava/lang/String;)Z net/minecraft/server/MinecraftServer/lambda$getSelectedPacks$26 (Ljava/util/Collection;Ljava/lang/String;)Z +MD: net/minecraft/server/MinecraftServer/m_212917_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V net/minecraft/server/MinecraftServer/lambda$reloadResources$22 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V +MD: net/minecraft/server/MinecraftServer/m_212920_ (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/MinecraftServer/lambda$startRecordingMetrics$30 (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/MinecraftServer/m_212923_ (Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/MinecraftServer/lambda$new$0 (Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/MinecraftServer/m_212925_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$20 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_212926_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/lambda$startMetricsRecordingTick$28 (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/MinecraftServer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/MinecraftServer/m_213994_ ()I net/minecraft/server/MinecraftServer/getMaxChainedNeighborUpdates ()I +MD: net/minecraft/server/MinecraftServer/m_214005_ ()Z net/minecraft/server/MinecraftServer/enforceSecureProfile ()Z +MD: net/minecraft/server/MinecraftServer/m_214042_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/getServerResourcePack ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_236731_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/server/MinecraftServer/getSingleplayerProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/MinecraftServer/m_236737_ ()V net/minecraft/server/MinecraftServer/cancelRecordingMetrics ()V +MD: net/minecraft/server/MinecraftServer/m_236738_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/server/MinecraftServer/getStructureManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/server/MinecraftServer/m_236740_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/MinecraftServer/setSingleplayerProfile (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/MinecraftServer/m_236742_ ()Lnet/minecraft/network/chat/ChatDecorator; net/minecraft/server/MinecraftServer/getChatDecorator ()Lnet/minecraft/network/chat/ChatDecorator; +MD: net/minecraft/server/MinecraftServer/m_238924_ ()Z net/minecraft/server/MinecraftServer/lambda$waitUntilNextTick$8 ()Z +MD: net/minecraft/server/MinecraftServer/m_241158_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;Ljava/lang/String;)V net/minecraft/server/MinecraftServer/logChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_244801_ (Lnet/minecraft/server/packs/repository/Pack;)Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$16 (Lnet/minecraft/server/packs/repository/Pack;)Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_244802_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$17 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_244804_ (Ljava/util/Collection;Lnet/minecraft/server/MinecraftServer$ReloadableResources;)V net/minecraft/server/MinecraftServer/lambda$reloadResources$25 (Ljava/util/Collection;Lnet/minecraft/server/MinecraftServer$ReloadableResources;)V +MD: net/minecraft/server/MinecraftServer/m_244805_ (Lnet/minecraft/core/RegistryAccess$Frozen;Lcom/google/common/collect/ImmutableList;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/MinecraftServer/lambda$reloadResources$24 (Lnet/minecraft/core/RegistryAccess$Frozen;Lcom/google/common/collect/ImmutableList;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/MinecraftServer/m_244806_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$18 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_246048_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/DataPackConfig;ZLnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/server/MinecraftServer/configurePackRepository (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/DataPackConfig;ZLnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/server/MinecraftServer/m_247573_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/MinecraftServer/registries ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/MinecraftServer/m_257134_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/server/MinecraftServer/lambda$setInitialSpawn$4 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_263900_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/server/MinecraftServer/lambda$setInitialSpawn$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/server/MinecraftServer/m_271592_ (Ljava/nio/file/Path;)Z net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$10 (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/MinecraftServer/m_271593_ (Ljava/nio/file/Path;)Ljava/util/Optional; net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$12 (Ljava/nio/file/Path;)Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_271594_ (Ljava/nio/file/Path;)Z net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$9 (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/MinecraftServer/m_271595_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$11 ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_271961_ ()Lnet/minecraft/network/protocol/status/ServerStatus$Players; net/minecraft/server/MinecraftServer/buildPlayerStatus ()Lnet/minecraft/network/protocol/status/ServerStatus$Players; +MD: net/minecraft/server/MinecraftServer/m_271988_ ()Lnet/minecraft/network/protocol/status/ServerStatus; net/minecraft/server/MinecraftServer/buildServerStatus ()Lnet/minecraft/network/protocol/status/ServerStatus; +MD: net/minecraft/server/MinecraftServer/m_272273_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/loadStatusIcon ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_276346_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/MinecraftServer/synchronizeTime (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/MinecraftServer/m_276350_ ()V net/minecraft/server/MinecraftServer/forceTimeSynchronization ()V +MD: net/minecraft/server/MinecraftServer/m_278653_ ()Lnet/minecraft/world/level/storage/loot/LootDataManager; net/minecraft/server/MinecraftServer/getLootData ()Lnet/minecraft/world/level/storage/loot/LootDataManager; +MD: net/minecraft/server/MinecraftServer/m_284385_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/server/MinecraftServer/getProfileKeySignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/server/MinecraftServer/m_287809_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$tickChildren$13 (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_5660_ ()Z net/minecraft/server/MinecraftServer/scheduleExecutables ()Z +MD: net/minecraft/server/MinecraftServer/m_5703_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/MinecraftServer/tickChildren (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/MinecraftServer/m_5705_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/MinecraftServer/tickServer (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/MinecraftServer/m_6102_ ()Z net/minecraft/server/MinecraftServer/shouldInformAdmins ()Z +MD: net/minecraft/server/MinecraftServer/m_6237_ ()Ljava/io/File; net/minecraft/server/MinecraftServer/getServerDirectory ()Ljava/io/File; +MD: net/minecraft/server/MinecraftServer/m_6304_ ()Ljava/lang/Thread; net/minecraft/server/MinecraftServer/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/server/MinecraftServer/m_6328_ ()I net/minecraft/server/MinecraftServer/getCompressionThreshold ()I +MD: net/minecraft/server/MinecraftServer/m_6329_ ()I net/minecraft/server/MinecraftServer/getAbsoluteMaxWorldSize ()I +MD: net/minecraft/server/MinecraftServer/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/server/MinecraftServer/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/server/MinecraftServer/m_6362_ (Lnet/minecraft/server/TickTask;)Z net/minecraft/server/MinecraftServer/shouldRun (Lnet/minecraft/server/TickTask;)Z +MD: net/minecraft/server/MinecraftServer/m_6365_ ()Z net/minecraft/server/MinecraftServer/forceSynchronousWrites ()Z +MD: net/minecraft/server/MinecraftServer/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/server/MinecraftServer/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/server/MinecraftServer/m_6367_ (Lnet/minecraft/server/TickTask;)V net/minecraft/server/MinecraftServer/doRunTask (Lnet/minecraft/server/TickTask;)V +MD: net/minecraft/server/MinecraftServer/m_6370_ ()Z net/minecraft/server/MinecraftServer/hasGui ()Z +MD: net/minecraft/server/MinecraftServer/m_6373_ ()Z net/minecraft/server/MinecraftServer/repliesToStatus ()Z +MD: net/minecraft/server/MinecraftServer/m_6396_ ()I net/minecraft/server/MinecraftServer/getSpawnProtectionRadius ()I +MD: net/minecraft/server/MinecraftServer/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/server/MinecraftServer/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/server/MinecraftServer/m_6681_ (Ljava/lang/Runnable;)Lnet/minecraft/server/TickTask; net/minecraft/server/MinecraftServer/wrapRunnable (Ljava/lang/Runnable;)Lnet/minecraft/server/TickTask; +MD: net/minecraft/server/MinecraftServer/m_6846_ ()Lnet/minecraft/server/players/PlayerList; net/minecraft/server/MinecraftServer/getPlayerList ()Lnet/minecraft/server/players/PlayerList; +MD: net/minecraft/server/MinecraftServer/m_6982_ ()Z net/minecraft/server/MinecraftServer/isDedicatedServer ()Z +MD: net/minecraft/server/MinecraftServer/m_6983_ ()Z net/minecraft/server/MinecraftServer/shouldRconBroadcast ()Z +MD: net/minecraft/server/MinecraftServer/m_6988_ ()V net/minecraft/server/MinecraftServer/onServerExit ()V +MD: net/minecraft/server/MinecraftServer/m_6992_ ()Z net/minecraft/server/MinecraftServer/isPublished ()Z +MD: net/minecraft/server/MinecraftServer/m_6993_ ()Z net/minecraft/server/MinecraftServer/isCommandBlockEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_6994_ ()Z net/minecraft/server/MinecraftServer/isEpollEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_6997_ ()Z net/minecraft/server/MinecraftServer/areNpcsEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_6998_ ()Z net/minecraft/server/MinecraftServer/isSpawningAnimals ()Z +MD: net/minecraft/server/MinecraftServer/m_6999_ ()Z net/minecraft/server/MinecraftServer/acceptsSuccess ()Z +MD: net/minecraft/server/MinecraftServer/m_7004_ ()Z net/minecraft/server/MinecraftServer/isSpawningMonsters ()Z +MD: net/minecraft/server/MinecraftServer/m_7010_ ()I net/minecraft/server/MinecraftServer/getPort ()I +MD: net/minecraft/server/MinecraftServer/m_7022_ ()I net/minecraft/server/MinecraftServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/server/MinecraftServer/m_7028_ ()Z net/minecraft/server/MinecraftServer/acceptsFailure ()Z +MD: net/minecraft/server/MinecraftServer/m_7032_ ()I net/minecraft/server/MinecraftServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/server/MinecraftServer/m_7034_ ()I net/minecraft/server/MinecraftServer/getFunctionCompilationLevel ()I +MD: net/minecraft/server/MinecraftServer/m_7035_ ()Z net/minecraft/server/MinecraftServer/isHardcore ()Z +MD: net/minecraft/server/MinecraftServer/m_7038_ ()Z net/minecraft/server/MinecraftServer/initServer ()Z +MD: net/minecraft/server/MinecraftServer/m_7041_ ()V net/minecraft/server/MinecraftServer/stopServer ()V +MD: net/minecraft/server/MinecraftServer/m_7044_ ()V net/minecraft/server/MinecraftServer/forceDifficulty ()V +MD: net/minecraft/server/MinecraftServer/m_7079_ ()Z net/minecraft/server/MinecraftServer/isNetherEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_7186_ (I)I net/minecraft/server/MinecraftServer/getScaledTrackingDistance (I)I +MD: net/minecraft/server/MinecraftServer/m_7196_ (I)V net/minecraft/server/MinecraftServer/setPlayerIdleTimeout (I)V +MD: net/minecraft/server/MinecraftServer/m_7245_ ()Z net/minecraft/server/MinecraftServer/pollTask ()Z +MD: net/minecraft/server/MinecraftServer/m_7268_ (Lnet/minecraft/CrashReport;)V net/minecraft/server/MinecraftServer/onServerCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/server/MinecraftServer/m_7386_ (Lnet/minecraft/world/level/GameType;ZI)Z net/minecraft/server/MinecraftServer/publishServer (Lnet/minecraft/world/level/GameType;ZI)Z +MD: net/minecraft/server/MinecraftServer/m_7416_ ()I net/minecraft/server/MinecraftServer/getPlayerCount ()I +MD: net/minecraft/server/MinecraftServer/m_7418_ ()I net/minecraft/server/MinecraftServer/getMaxPlayers ()I +MD: net/minecraft/server/MinecraftServer/m_7570_ (Z)V net/minecraft/server/MinecraftServer/halt (Z)V +MD: net/minecraft/server/MinecraftServer/m_7630_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getServerVersion ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_7641_ ()[Ljava/lang/String; net/minecraft/server/MinecraftServer/getPlayerNames ()[Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_7762_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/server/MinecraftServer/isUnderSpawnProtection (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/server/MinecraftServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/MinecraftServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/MinecraftServer/m_7835_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/server/MinecraftServer/setDefaultGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/server/MinecraftServer/m_7950_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; net/minecraft/server/MinecraftServer/createTextFilterForPlayer (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/MinecraftServer$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;Lnet/minecraft/world/level/GameRules;)V net/minecraft/server/MinecraftServer$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/server/MinecraftServer$1/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/server/MinecraftServer$1/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/server/MinecraftServer$ReloadableResources/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)V net/minecraft/server/MinecraftServer$ReloadableResources/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)V +MD: net/minecraft/server/MinecraftServer$ReloadableResources/close ()V net/minecraft/server/MinecraftServer$ReloadableResources/close ()V +MD: net/minecraft/server/MinecraftServer$ReloadableResources/equals (Ljava/lang/Object;)Z net/minecraft/server/MinecraftServer$ReloadableResources/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206584_ ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; net/minecraft/server/MinecraftServer$ReloadableResources/resourceManager ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; +MD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206585_ ()Lnet/minecraft/server/ReloadableServerResources; net/minecraft/server/MinecraftServer$ReloadableResources/managers ()Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/server/MinecraftServer$ReloadableResources/hashCode ()I net/minecraft/server/MinecraftServer$ReloadableResources/hashCode ()I +MD: net/minecraft/server/MinecraftServer$ReloadableResources/toString ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ReloadableResources/toString ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V net/minecraft/server/MinecraftServer$ServerResourcePackInfo/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/equals (Ljava/lang/Object;)Z net/minecraft/server/MinecraftServer$ServerResourcePackInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236743_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/url ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236744_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hash ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236745_ ()Z net/minecraft/server/MinecraftServer$ServerResourcePackInfo/isRequired ()Z +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236746_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/prompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hashCode ()I net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hashCode ()I +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/toString ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/toString ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$TimeProfiler/ (JI)V net/minecraft/server/MinecraftServer$TimeProfiler/ (JI)V +MD: net/minecraft/server/MinecraftServer$TimeProfiler/m_177960_ (JI)Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/server/MinecraftServer$TimeProfiler/stop (JI)Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/ (Lnet/minecraft/server/MinecraftServer$TimeProfiler;JI)V net/minecraft/server/MinecraftServer$TimeProfiler$1/ (Lnet/minecraft/server/MinecraftServer$TimeProfiler;JI)V +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_142368_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer$TimeProfiler$1/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/server/MinecraftServer$TimeProfiler$1/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/server/MinecraftServer$TimeProfiler$1/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7229_ ()J net/minecraft/server/MinecraftServer$TimeProfiler$1/getStartTimeNano ()J +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7230_ ()I net/minecraft/server/MinecraftServer$TimeProfiler$1/getStartTimeTicks ()I +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7236_ ()J net/minecraft/server/MinecraftServer$TimeProfiler$1/getEndTimeNano ()J +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7317_ ()I net/minecraft/server/MinecraftServer$TimeProfiler$1/getEndTimeTicks ()I +MD: net/minecraft/server/PlayerAdvancements/ ()V net/minecraft/server/PlayerAdvancements/ ()V +MD: net/minecraft/server/PlayerAdvancements/ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/ServerAdvancementManager;Ljava/nio/file/Path;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/PlayerAdvancements/ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/ServerAdvancementManager;Ljava/nio/file/Path;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/PlayerAdvancements/m_135978_ ()V net/minecraft/server/PlayerAdvancements/stopListening ()V +MD: net/minecraft/server/PlayerAdvancements/m_135979_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/PlayerAdvancements/setPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/PlayerAdvancements/m_135981_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/reload (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_135983_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/setSelectedTab (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_135985_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/server/PlayerAdvancements/startProgress (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/server/PlayerAdvancements/m_135988_ (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/PlayerAdvancements/award (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/PlayerAdvancements/m_135991_ ()V net/minecraft/server/PlayerAdvancements/save ()V +MD: net/minecraft/server/PlayerAdvancements/m_135992_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/PlayerAdvancements/flushDirty (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/PlayerAdvancements/m_135994_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/registerListeners (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_135996_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/AdvancementProgress; net/minecraft/server/PlayerAdvancements/getOrStartProgress (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/AdvancementProgress; +MD: net/minecraft/server/PlayerAdvancements/m_135998_ (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/PlayerAdvancements/revoke (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/PlayerAdvancements/m_136002_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/checkForAutomaticTriggers (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_136004_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/registerListeners (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_136006_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/load (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_136008_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/unregisterListeners (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_264255_ (Lnet/minecraft/server/ServerAdvancementManager;Ljava/util/Map$Entry;)V net/minecraft/server/PlayerAdvancements/lambda$load$0 (Lnet/minecraft/server/ServerAdvancementManager;Ljava/util/Map$Entry;)V +MD: net/minecraft/server/PlayerAdvancements/m_264265_ (Lnet/minecraft/advancements/Advancement;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/server/PlayerAdvancements/updateTreeVisibility (Lnet/minecraft/advancements/Advancement;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/server/PlayerAdvancements/m_264320_ (Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/advancements/Advancement;Z)V net/minecraft/server/PlayerAdvancements/lambda$updateTreeVisibility$2 (Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/advancements/Advancement;Z)V +MD: net/minecraft/server/PlayerAdvancements/m_264423_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/markForVisibilityUpdate (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_264523_ (Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/PlayerAdvancements/lambda$updateTreeVisibility$1 (Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/PlayerAdvancements$1/ ()V net/minecraft/server/PlayerAdvancements$1/ ()V +MD: net/minecraft/server/RegistryLayer/ ()V net/minecraft/server/RegistryLayer/ ()V +MD: net/minecraft/server/RegistryLayer/ (Ljava/lang/String;I)V net/minecraft/server/RegistryLayer/ (Ljava/lang/String;I)V +MD: net/minecraft/server/RegistryLayer/m_245849_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/RegistryLayer/createRegistryAccess ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/RegistryLayer/m_247136_ ()[Lnet/minecraft/server/RegistryLayer; net/minecraft/server/RegistryLayer/$values ()[Lnet/minecraft/server/RegistryLayer; +MD: net/minecraft/server/RegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/server/RegistryLayer; net/minecraft/server/RegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/server/RegistryLayer; +MD: net/minecraft/server/RegistryLayer/values ()[Lnet/minecraft/server/RegistryLayer; net/minecraft/server/RegistryLayer/values ()[Lnet/minecraft/server/RegistryLayer; +MD: net/minecraft/server/ReloadableServerResources/ ()V net/minecraft/server/ReloadableServerResources/ ()V +MD: net/minecraft/server/ReloadableServerResources/ (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;I)V net/minecraft/server/ReloadableServerResources/ (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;I)V +MD: net/minecraft/server/ReloadableServerResources/m_206860_ ()Lnet/minecraft/server/ServerFunctionLibrary; net/minecraft/server/ReloadableServerResources/getFunctionLibrary ()Lnet/minecraft/server/ServerFunctionLibrary; +MD: net/minecraft/server/ReloadableServerResources/m_206868_ (Lnet/minecraft/core/RegistryAccess;)V net/minecraft/server/ReloadableServerResources/updateRegistryTags (Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/server/ReloadableServerResources/m_206870_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V net/minecraft/server/ReloadableServerResources/updateRegistryTags (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V +MD: net/minecraft/server/ReloadableServerResources/m_206887_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/server/ReloadableServerResources/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/server/ReloadableServerResources/m_206888_ ()Lnet/minecraft/commands/Commands; net/minecraft/server/ReloadableServerResources/getCommands ()Lnet/minecraft/commands/Commands; +MD: net/minecraft/server/ReloadableServerResources/m_206889_ ()Lnet/minecraft/server/ServerAdvancementManager; net/minecraft/server/ReloadableServerResources/getAdvancements ()Lnet/minecraft/server/ServerAdvancementManager; +MD: net/minecraft/server/ReloadableServerResources/m_206890_ ()Ljava/util/List; net/minecraft/server/ReloadableServerResources/listeners ()Ljava/util/List; +MD: net/minecraft/server/ReloadableServerResources/m_214301_ (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map$Entry;)Lnet/minecraft/tags/TagKey; net/minecraft/server/ReloadableServerResources/lambda$updateRegistryTags$3 (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map$Entry;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/server/ReloadableServerResources/m_214304_ (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;)Lnet/minecraft/server/ReloadableServerResources; net/minecraft/server/ReloadableServerResources/lambda$loadResources$1 (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;)Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/server/ReloadableServerResources/m_214311_ (Ljava/util/Map$Entry;)Ljava/util/List; net/minecraft/server/ReloadableServerResources/lambda$updateRegistryTags$4 (Ljava/util/Map$Entry;)Ljava/util/List; +MD: net/minecraft/server/ReloadableServerResources/m_214313_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V net/minecraft/server/ReloadableServerResources/lambda$updateRegistryTags$2 (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V +MD: net/minecraft/server/ReloadableServerResources/m_247740_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/ReloadableServerResources/loadResources (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/ReloadableServerResources/m_254799_ (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;Ljava/lang/Throwable;)V net/minecraft/server/ReloadableServerResources/lambda$loadResources$0 (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;Ljava/lang/Throwable;)V +MD: net/minecraft/server/ReloadableServerResources/m_278801_ ()Lnet/minecraft/world/level/storage/loot/LootDataManager; net/minecraft/server/ReloadableServerResources/getLootData ()Lnet/minecraft/world/level/storage/loot/LootDataManager; +MD: net/minecraft/server/RunningOnDifferentThreadException/ ()V net/minecraft/server/RunningOnDifferentThreadException/ ()V +MD: net/minecraft/server/RunningOnDifferentThreadException/ ()V net/minecraft/server/RunningOnDifferentThreadException/ ()V +MD: net/minecraft/server/RunningOnDifferentThreadException/fillInStackTrace ()Ljava/lang/Throwable; net/minecraft/server/RunningOnDifferentThreadException/fillInStackTrace ()Ljava/lang/Throwable; +MD: net/minecraft/server/ServerAdvancementManager/ ()V net/minecraft/server/ServerAdvancementManager/ ()V +MD: net/minecraft/server/ServerAdvancementManager/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;)V net/minecraft/server/ServerAdvancementManager/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;)V +MD: net/minecraft/server/ServerAdvancementManager/m_136028_ ()Ljava/util/Collection; net/minecraft/server/ServerAdvancementManager/getAllAdvancements ()Ljava/util/Collection; +MD: net/minecraft/server/ServerAdvancementManager/m_136041_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/server/ServerAdvancementManager/getAdvancement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/server/ServerAdvancementManager/m_278533_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V net/minecraft/server/ServerAdvancementManager/lambda$apply$0 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/server/ServerAdvancementManager/m_5787_ (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/server/ServerAdvancementManager/apply (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/server/ServerAdvancementManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/server/ServerAdvancementManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/server/ServerFunctionLibrary/ ()V net/minecraft/server/ServerFunctionLibrary/ ()V +MD: net/minecraft/server/ServerFunctionLibrary/ (ILcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/ServerFunctionLibrary/ (ILcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/ServerFunctionLibrary/m_136055_ ()Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/getFunctions ()Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_136089_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/ServerFunctionLibrary/getFunction (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/ServerFunctionLibrary/m_179939_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/ServerFunctionLibrary/lambda$reload$6 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/ServerFunctionLibrary/m_179943_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/server/ServerFunctionLibrary/lambda$reload$7 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/server/ServerFunctionLibrary/m_179947_ (Ljava/util/Map;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/lambda$reload$3 (Ljava/util/Map;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_179951_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/commands/CommandFunction;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/server/ServerFunctionLibrary/lambda$reload$5 (Lnet/minecraft/resources/ResourceLocation;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/commands/CommandFunction;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/server/ServerFunctionLibrary/m_179956_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_206891_ ()Ljava/lang/Iterable; net/minecraft/server/ServerFunctionLibrary/getAvailableTags ()Ljava/lang/Iterable; +MD: net/minecraft/server/ServerFunctionLibrary/m_214316_ (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/List; net/minecraft/server/ServerFunctionLibrary/readLines (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/List; +MD: net/minecraft/server/ServerFunctionLibrary/m_214320_ (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandFunction; net/minecraft/server/ServerFunctionLibrary/lambda$reload$2 (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandFunction; +MD: net/minecraft/server/ServerFunctionLibrary/m_214327_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/server/ServerFunctionLibrary/getTag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/server/ServerFunctionLibrary/m_244807_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/lambda$reload$1 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_244808_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/ServerFunctionLibrary/lambda$reload$4 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/ServerFunctionLibrary/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/ServerFunctionLibrary/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/ServerFunctionManager/ ()V net/minecraft/server/ServerFunctionManager/ ()V +MD: net/minecraft/server/ServerFunctionManager/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/ServerFunctionLibrary;)V net/minecraft/server/ServerFunctionManager/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/ServerFunctionLibrary;)V +MD: net/minecraft/server/ServerFunctionManager/m_136112_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/ServerFunctionManager/execute (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/ServerFunctionManager/m_136115_ (Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/ServerFunctionManager/executeTagFunctions (Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/ServerFunctionManager/m_136118_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/ServerFunctionManager/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/ServerFunctionManager/m_136120_ (Lnet/minecraft/server/ServerFunctionLibrary;)V net/minecraft/server/ServerFunctionManager/replaceLibrary (Lnet/minecraft/server/ServerFunctionLibrary;)V +MD: net/minecraft/server/ServerFunctionManager/m_136122_ ()I net/minecraft/server/ServerFunctionManager/getCommandLimit ()I +MD: net/minecraft/server/ServerFunctionManager/m_136125_ (Lnet/minecraft/server/ServerFunctionLibrary;)V net/minecraft/server/ServerFunctionManager/postReload (Lnet/minecraft/server/ServerFunctionLibrary;)V +MD: net/minecraft/server/ServerFunctionManager/m_136127_ ()Lcom/mojang/brigadier/CommandDispatcher; net/minecraft/server/ServerFunctionManager/getDispatcher ()Lcom/mojang/brigadier/CommandDispatcher; +MD: net/minecraft/server/ServerFunctionManager/m_136128_ ()V net/minecraft/server/ServerFunctionManager/tick ()V +MD: net/minecraft/server/ServerFunctionManager/m_136129_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/ServerFunctionManager/getGameLoopSender ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/ServerFunctionManager/m_136130_ ()Ljava/lang/Iterable; net/minecraft/server/ServerFunctionManager/getFunctionNames ()Ljava/lang/Iterable; +MD: net/minecraft/server/ServerFunctionManager/m_136131_ ()Ljava/lang/Iterable; net/minecraft/server/ServerFunctionManager/getTagNames ()Ljava/lang/Iterable; +MD: net/minecraft/server/ServerFunctionManager/m_179960_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)I net/minecraft/server/ServerFunctionManager/execute (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)I +MD: net/minecraft/server/ServerFunctionManager/m_214331_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/server/ServerFunctionManager/getTag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/server/ServerFunctionManager$ExecutionContext/ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_179972_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/ServerFunctionManager$ExecutionContext/delayFunctionCall (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_179975_ (Ljava/lang/String;)V net/minecraft/server/ServerFunctionManager$ExecutionContext/reportError (Ljava/lang/String;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_179977_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/ServerFunctionManager$ExecutionContext/runTopCommand (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_280539_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/ServerFunctionManager$ExecutionContext/wrapSender (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/ (Lnet/minecraft/server/ServerFunctionManager$ExecutionContext;Ljava/util/function/IntConsumer;)V net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/ (Lnet/minecraft/server/ServerFunctionManager$ExecutionContext;Ljava/util/function/IntConsumer;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/accept (I)V net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/accept (I)V +MD: net/minecraft/server/ServerFunctionManager$QueuedCommand/ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction$Entry;)V net/minecraft/server/ServerFunctionManager$QueuedCommand/ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction$Entry;)V +MD: net/minecraft/server/ServerFunctionManager$QueuedCommand/m_179985_ (Lnet/minecraft/server/ServerFunctionManager;Ljava/util/Deque;ILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/server/ServerFunctionManager$QueuedCommand/execute (Lnet/minecraft/server/ServerFunctionManager;Ljava/util/Deque;ILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/server/ServerFunctionManager$QueuedCommand/toString ()Ljava/lang/String; net/minecraft/server/ServerFunctionManager$QueuedCommand/toString ()Ljava/lang/String; +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142147_ (ILnet/minecraft/resources/ResourceLocation;I)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onCall (ILnet/minecraft/resources/ResourceLocation;I)V +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142255_ (ILjava/lang/String;)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onError (ILjava/lang/String;)V +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142256_ (ILjava/lang/String;)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onCommand (ILjava/lang/String;)V +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142279_ (ILjava/lang/String;I)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onReturn (ILjava/lang/String;I)V +MD: net/minecraft/server/ServerInterface/m_6866_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getServerIp ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_6995_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getServerName ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7123_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getLevelIdName ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7138_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getPluginNames ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7261_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/ServerInterface/runCommand (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7416_ ()I net/minecraft/server/ServerInterface/getPlayerCount ()I +MD: net/minecraft/server/ServerInterface/m_7418_ ()I net/minecraft/server/ServerInterface/getMaxPlayers ()I +MD: net/minecraft/server/ServerInterface/m_7448_ ()I net/minecraft/server/ServerInterface/getServerPort ()I +MD: net/minecraft/server/ServerInterface/m_7630_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getServerVersion ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7641_ ()[Ljava/lang/String; net/minecraft/server/ServerInterface/getPlayerNames ()[Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7913_ ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/ServerInterface/getProperties ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/ServerScoreboard/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/ServerScoreboard/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/ServerScoreboard/m_136207_ (Ljava/lang/Runnable;)V net/minecraft/server/ServerScoreboard/addDirtyListener (Ljava/lang/Runnable;)V +MD: net/minecraft/server/ServerScoreboard/m_136217_ ()V net/minecraft/server/ServerScoreboard/setDirty ()V +MD: net/minecraft/server/ServerScoreboard/m_136229_ (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; net/minecraft/server/ServerScoreboard/getStartTrackingPackets (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; +MD: net/minecraft/server/ServerScoreboard/m_136231_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/startTrackingObjective (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_136233_ (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; net/minecraft/server/ServerScoreboard/getStopTrackingPackets (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; +MD: net/minecraft/server/ServerScoreboard/m_136235_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/stopTrackingObjective (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_136237_ (Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/ServerScoreboard/getObjectiveDisplaySlotCount (Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/ServerScoreboard/m_180013_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; net/minecraft/server/ServerScoreboard/createData (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; +MD: net/minecraft/server/ServerScoreboard/m_180015_ ()Lnet/minecraft/world/scores/ScoreboardSaveData; net/minecraft/server/ServerScoreboard/createData ()Lnet/minecraft/world/scores/ScoreboardSaveData; +MD: net/minecraft/server/ServerScoreboard/m_5734_ (Lnet/minecraft/world/scores/Score;)V net/minecraft/server/ServerScoreboard/onScoreChanged (Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/server/ServerScoreboard/m_5973_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onPlayerScoreRemoved (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_6519_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/removePlayerFromTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard/m_6546_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z net/minecraft/server/ServerScoreboard/addPlayerToTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z +MD: net/minecraft/server/ServerScoreboard/m_7091_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onObjectiveChanged (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7092_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onObjectiveAdded (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7093_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onObjectiveRemoved (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7136_ (ILnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/setDisplayObjective (ILnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7182_ (Ljava/lang/String;)V net/minecraft/server/ServerScoreboard/onPlayerRemoved (Ljava/lang/String;)V +MD: net/minecraft/server/ServerScoreboard/m_7644_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/onTeamRemoved (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard/m_7645_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/onTeamChanged (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard/m_7650_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/onTeamAdded (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard$Method/ ()V net/minecraft/server/ServerScoreboard$Method/ ()V +MD: net/minecraft/server/ServerScoreboard$Method/ (Ljava/lang/String;I)V net/minecraft/server/ServerScoreboard$Method/ (Ljava/lang/String;I)V +MD: net/minecraft/server/ServerScoreboard$Method/m_180016_ ()[Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/server/ServerScoreboard$Method/$values ()[Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/server/ServerScoreboard$Method/valueOf (Ljava/lang/String;)Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/server/ServerScoreboard$Method/valueOf (Ljava/lang/String;)Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/server/ServerScoreboard$Method/values ()[Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/server/ServerScoreboard$Method/values ()[Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/server/Services/ (Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/players/GameProfileCache;)V net/minecraft/server/Services/ (Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/players/GameProfileCache;)V +MD: net/minecraft/server/Services/equals (Ljava/lang/Object;)Z net/minecraft/server/Services/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/Services/f_214333_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/server/Services/sessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/server/Services/f_214335_ ()Lcom/mojang/authlib/GameProfileRepository; net/minecraft/server/Services/profileRepository ()Lcom/mojang/authlib/GameProfileRepository; +MD: net/minecraft/server/Services/f_214336_ ()Lnet/minecraft/server/players/GameProfileCache; net/minecraft/server/Services/profileCache ()Lnet/minecraft/server/players/GameProfileCache; +MD: net/minecraft/server/Services/f_283795_ ()Lcom/mojang/authlib/yggdrasil/ServicesKeySet; net/minecraft/server/Services/servicesKeySet ()Lcom/mojang/authlib/yggdrasil/ServicesKeySet; +MD: net/minecraft/server/Services/hashCode ()I net/minecraft/server/Services/hashCode ()I +MD: net/minecraft/server/Services/m_214344_ (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lnet/minecraft/server/Services; net/minecraft/server/Services/create (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lnet/minecraft/server/Services; +MD: net/minecraft/server/Services/m_284133_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/server/Services/profileKeySignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/server/Services/toString ()Ljava/lang/String; net/minecraft/server/Services/toString ()Ljava/lang/String; +MD: net/minecraft/server/TickTask/ (ILjava/lang/Runnable;)V net/minecraft/server/TickTask/ (ILjava/lang/Runnable;)V +MD: net/minecraft/server/TickTask/m_136254_ ()I net/minecraft/server/TickTask/getTick ()I +MD: net/minecraft/server/TickTask/run ()V net/minecraft/server/TickTask/run ()V +MD: net/minecraft/server/WorldLoader/ ()V net/minecraft/server/WorldLoader/ ()V +MD: net/minecraft/server/WorldLoader/ ()V net/minecraft/server/WorldLoader/ ()V +MD: net/minecraft/server/WorldLoader/m_214362_ (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/WorldLoader/load (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/WorldLoader/m_214368_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V net/minecraft/server/WorldLoader/lambda$load$0 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V +MD: net/minecraft/server/WorldLoader/m_244809_ (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/server/WorldLoader$ResultFactory;Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/WorldLoader$DataLoadOutput;Lnet/minecraft/server/ReloadableServerResources;)Ljava/lang/Object; net/minecraft/server/WorldLoader/lambda$load$1 (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/server/WorldLoader$ResultFactory;Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/WorldLoader$DataLoadOutput;Lnet/minecraft/server/ReloadableServerResources;)Ljava/lang/Object; +MD: net/minecraft/server/WorldLoader/m_245736_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/WorldLoader/loadAndReplaceLayer (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/WorldLoader/m_246152_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader/loadLayer (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/core/RegistryAccess$Frozen;)V net/minecraft/server/WorldLoader$DataLoadContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/core/RegistryAccess$Frozen;)V +MD: net/minecraft/server/WorldLoader$DataLoadContext/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$DataLoadContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_243759_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader$DataLoadContext/datapackDimensions ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_244104_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader$DataLoadContext/datapackWorldgen ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_244127_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/server/WorldLoader$DataLoadContext/dataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_244187_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/server/WorldLoader$DataLoadContext/resources ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/server/WorldLoader$DataLoadContext/hashCode ()I net/minecraft/server/WorldLoader$DataLoadContext/hashCode ()I +MD: net/minecraft/server/WorldLoader$DataLoadContext/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$DataLoadContext/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$DataLoadOutput/ (Ljava/lang/Object;Lnet/minecraft/core/RegistryAccess$Frozen;)V net/minecraft/server/WorldLoader$DataLoadOutput/ (Ljava/lang/Object;Lnet/minecraft/core/RegistryAccess$Frozen;)V +MD: net/minecraft/server/WorldLoader$DataLoadOutput/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$DataLoadOutput/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244143_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader$DataLoadOutput/finalDimensions ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244458_ ()Ljava/lang/Object; net/minecraft/server/WorldLoader$DataLoadOutput/cookie ()Ljava/lang/Object; +MD: net/minecraft/server/WorldLoader$DataLoadOutput/hashCode ()I net/minecraft/server/WorldLoader$DataLoadOutput/hashCode ()I +MD: net/minecraft/server/WorldLoader$DataLoadOutput/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$DataLoadOutput/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$InitConfig/ (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/commands/Commands$CommandSelection;I)V net/minecraft/server/WorldLoader$InitConfig/ (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/commands/Commands$CommandSelection;I)V +MD: net/minecraft/server/WorldLoader$InitConfig/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$InitConfig/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$InitConfig/f_214378_ ()Lnet/minecraft/server/WorldLoader$PackConfig; net/minecraft/server/WorldLoader$InitConfig/packConfig ()Lnet/minecraft/server/WorldLoader$PackConfig; +MD: net/minecraft/server/WorldLoader$InitConfig/f_214379_ ()Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/server/WorldLoader$InitConfig/commandSelection ()Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/server/WorldLoader$InitConfig/f_214380_ ()I net/minecraft/server/WorldLoader$InitConfig/functionCompilationLevel ()I +MD: net/minecraft/server/WorldLoader$InitConfig/hashCode ()I net/minecraft/server/WorldLoader$InitConfig/hashCode ()I +MD: net/minecraft/server/WorldLoader$InitConfig/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$InitConfig/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$PackConfig/ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;ZZ)V net/minecraft/server/WorldLoader$PackConfig/ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;ZZ)V +MD: net/minecraft/server/WorldLoader$PackConfig/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$PackConfig/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$PackConfig/f_214392_ ()Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/WorldLoader$PackConfig/packRepository ()Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/WorldLoader$PackConfig/f_214394_ ()Z net/minecraft/server/WorldLoader$PackConfig/safeMode ()Z +MD: net/minecraft/server/WorldLoader$PackConfig/f_244133_ ()Z net/minecraft/server/WorldLoader$PackConfig/initMode ()Z +MD: net/minecraft/server/WorldLoader$PackConfig/f_244366_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/server/WorldLoader$PackConfig/initialDataConfig ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/server/WorldLoader$PackConfig/hashCode ()I net/minecraft/server/WorldLoader$PackConfig/hashCode ()I +MD: net/minecraft/server/WorldLoader$PackConfig/m_214399_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/server/WorldLoader$PackConfig/createResourceManager ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/server/WorldLoader$PackConfig/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$PackConfig/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$ResultFactory/m_214407_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/WorldLoader$ResultFactory/create (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/WorldLoader$WorldDataSupplier/m_214412_ (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/server/WorldLoader$WorldDataSupplier/get (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/server/WorldStem/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/server/WorldStem/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/server/WorldStem/close ()V net/minecraft/server/WorldStem/close ()V +MD: net/minecraft/server/WorldStem/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldStem/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldStem/f_206892_ ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; net/minecraft/server/WorldStem/resourceManager ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; +MD: net/minecraft/server/WorldStem/f_206893_ ()Lnet/minecraft/server/ReloadableServerResources; net/minecraft/server/WorldStem/dataPackResources ()Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/server/WorldStem/f_206895_ ()Lnet/minecraft/world/level/storage/WorldData; net/minecraft/server/WorldStem/worldData ()Lnet/minecraft/world/level/storage/WorldData; +MD: net/minecraft/server/WorldStem/f_244542_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/WorldStem/registries ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/WorldStem/hashCode ()I net/minecraft/server/WorldStem/hashCode ()I +MD: net/minecraft/server/WorldStem/toString ()Ljava/lang/String; net/minecraft/server/WorldStem/toString ()Ljava/lang/String; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/ ()V net/minecraft/server/advancements/AdvancementVisibilityEvaluator/ ()V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264099_ (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)V net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisibility (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264309_ (Lit/unimi/dsi/fastutil/Stack;)Z net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisiblityForUnfinishedNode (Lit/unimi/dsi/fastutil/Stack;)Z +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264339_ (Lnet/minecraft/advancements/Advancement;Z)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisibilityRule (Lnet/minecraft/advancements/Advancement;Z)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264402_ (Lnet/minecraft/advancements/Advancement;Lit/unimi/dsi/fastutil/Stack;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)Z net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisibility (Lnet/minecraft/advancements/Advancement;Lit/unimi/dsi/fastutil/Stack;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)Z +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output/m_264135_ (Lnet/minecraft/advancements/Advancement;Z)V net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output/accept (Lnet/minecraft/advancements/Advancement;Z)V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ ()V net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ ()V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ (Ljava/lang/String;I)V net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ (Ljava/lang/String;I)V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/m_264245_ ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/$values ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/valueOf (Ljava/lang/String;)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/valueOf (Ljava/lang/String;)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/values ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/values ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/bossevents/CustomBossEvent/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/bossevents/CustomBossEvent/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136263_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/bossevents/CustomBossEvent/getTextId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136264_ (I)V net/minecraft/server/bossevents/CustomBossEvent/setValue (I)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136268_ (Ljava/util/Collection;)Z net/minecraft/server/bossevents/CustomBossEvent/setPlayers (Ljava/util/Collection;)Z +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136270_ (Ljava/util/UUID;)V net/minecraft/server/bossevents/CustomBossEvent/addOfflinePlayer (Ljava/util/UUID;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136272_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/bossevents/CustomBossEvent/load (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136275_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/bossevents/CustomBossEvent/lambda$getDisplayName$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136278_ (I)V net/minecraft/server/bossevents/CustomBossEvent/setMax (I)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136282_ ()I net/minecraft/server/bossevents/CustomBossEvent/getValue ()I +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136283_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/onPlayerConnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136285_ ()I net/minecraft/server/bossevents/CustomBossEvent/getMax ()I +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136286_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/onPlayerDisconnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136288_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/bossevents/CustomBossEvent/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136289_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/bossevents/CustomBossEvent/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_6539_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/removePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_6543_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/addPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_7706_ ()V net/minecraft/server/bossevents/CustomBossEvent/removeAllPlayers ()V +MD: net/minecraft/server/bossevents/CustomBossEvents/ ()V net/minecraft/server/bossevents/CustomBossEvents/ ()V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136292_ ()Ljava/util/Collection; net/minecraft/server/bossevents/CustomBossEvents/getIds ()Ljava/util/Collection; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136293_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvents/onPlayerConnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136295_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/bossevents/CustomBossEvents/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136297_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/bossevents/CustomBossEvents/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136299_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/bossevents/CustomBossEvents/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136302_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)V net/minecraft/server/bossevents/CustomBossEvents/remove (Lnet/minecraft/server/bossevents/CustomBossEvent;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136304_ ()Ljava/util/Collection; net/minecraft/server/bossevents/CustomBossEvents/getEvents ()Ljava/util/Collection; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136305_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvents/onPlayerDisconnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136307_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/bossevents/CustomBossEvents/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/chase/ChaseClient/ ()V net/minecraft/server/chase/ChaseClient/ ()V +MD: net/minecraft/server/chase/ChaseClient/ (Ljava/lang/String;ILnet/minecraft/server/MinecraftServer;)V net/minecraft/server/chase/ChaseClient/ (Ljava/lang/String;ILnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/chase/ChaseClient/m_195993_ ()V net/minecraft/server/chase/ChaseClient/start ()V +MD: net/minecraft/server/chase/ChaseClient/m_195994_ (Ljava/lang/String;)V net/minecraft/server/chase/ChaseClient/handleMessage (Ljava/lang/String;)V +MD: net/minecraft/server/chase/ChaseClient/m_195996_ (Ljava/util/Scanner;)V net/minecraft/server/chase/ChaseClient/handleTeleport (Ljava/util/Scanner;)V +MD: net/minecraft/server/chase/ChaseClient/m_195998_ (Lnet/minecraft/server/chase/ChaseClient$TeleportTarget;)V net/minecraft/server/chase/ChaseClient/lambda$handleTeleport$0 (Lnet/minecraft/server/chase/ChaseClient$TeleportTarget;)V +MD: net/minecraft/server/chase/ChaseClient/m_196000_ ()V net/minecraft/server/chase/ChaseClient/stop ()V +MD: net/minecraft/server/chase/ChaseClient/m_196001_ (Ljava/lang/String;)V net/minecraft/server/chase/ChaseClient/executeCommand (Ljava/lang/String;)V +MD: net/minecraft/server/chase/ChaseClient/m_196003_ (Ljava/util/Scanner;)Ljava/util/Optional; net/minecraft/server/chase/ChaseClient/parseTarget (Ljava/util/Scanner;)Ljava/util/Optional; +MD: net/minecraft/server/chase/ChaseClient/m_196005_ ()V net/minecraft/server/chase/ChaseClient/run ()V +MD: net/minecraft/server/chase/ChaseClient/m_196006_ (Ljava/lang/String;)V net/minecraft/server/chase/ChaseClient/lambda$executeCommand$1 (Ljava/lang/String;)V +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;)V net/minecraft/server/chase/ChaseClient$TeleportTarget/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;)V +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/equals (Ljava/lang/Object;)Z net/minecraft/server/chase/ChaseClient$TeleportTarget/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196008_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/server/chase/ChaseClient$TeleportTarget/level ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196009_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/server/chase/ChaseClient$TeleportTarget/pos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196010_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/server/chase/ChaseClient$TeleportTarget/rot ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/hashCode ()I net/minecraft/server/chase/ChaseClient$TeleportTarget/hashCode ()I +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/toString ()Ljava/lang/String; net/minecraft/server/chase/ChaseClient$TeleportTarget/toString ()Ljava/lang/String; +MD: net/minecraft/server/chase/ChaseServer/ ()V net/minecraft/server/chase/ChaseServer/ ()V +MD: net/minecraft/server/chase/ChaseServer/ (Ljava/lang/String;ILnet/minecraft/server/players/PlayerList;I)V net/minecraft/server/chase/ChaseServer/ (Ljava/lang/String;ILnet/minecraft/server/players/PlayerList;I)V +MD: net/minecraft/server/chase/ChaseServer/m_196036_ ()V net/minecraft/server/chase/ChaseServer/start ()V +MD: net/minecraft/server/chase/ChaseServer/m_196037_ (Ljava/net/Socket;[B)V net/minecraft/server/chase/ChaseServer/lambda$runSender$0 (Ljava/net/Socket;[B)V +MD: net/minecraft/server/chase/ChaseServer/m_196040_ ()V net/minecraft/server/chase/ChaseServer/stop ()V +MD: net/minecraft/server/chase/ChaseServer/m_196041_ ()V net/minecraft/server/chase/ChaseServer/runSender ()V +MD: net/minecraft/server/chase/ChaseServer/m_196042_ ()V net/minecraft/server/chase/ChaseServer/runAcceptor ()V +MD: net/minecraft/server/chase/ChaseServer/m_196043_ ()Lnet/minecraft/server/chase/ChaseServer$PlayerPosition; net/minecraft/server/chase/ChaseServer/getPlayerPosition ()Lnet/minecraft/server/chase/ChaseServer$PlayerPosition; +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/ (Ljava/lang/String;DDDFF)V net/minecraft/server/chase/ChaseServer$PlayerPosition/ (Ljava/lang/String;DDDFF)V +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/equals (Ljava/lang/Object;)Z net/minecraft/server/chase/ChaseServer$PlayerPosition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196044_ ()Ljava/lang/String; net/minecraft/server/chase/ChaseServer$PlayerPosition/dimensionName ()Ljava/lang/String; +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196045_ ()D net/minecraft/server/chase/ChaseServer$PlayerPosition/x ()D +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196046_ ()D net/minecraft/server/chase/ChaseServer$PlayerPosition/y ()D +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196047_ ()D net/minecraft/server/chase/ChaseServer$PlayerPosition/z ()D +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196048_ ()F net/minecraft/server/chase/ChaseServer$PlayerPosition/yRot ()F +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196049_ ()F net/minecraft/server/chase/ChaseServer$PlayerPosition/xRot ()F +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/hashCode ()I net/minecraft/server/chase/ChaseServer$PlayerPosition/hashCode ()I +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/m_196065_ ()Ljava/lang/String; net/minecraft/server/chase/ChaseServer$PlayerPosition/format ()Ljava/lang/String; +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/toString ()Ljava/lang/String; net/minecraft/server/chase/ChaseServer$PlayerPosition/toString ()Ljava/lang/String; +MD: net/minecraft/server/commands/AdvancementCommands/ ()V net/minecraft/server/commands/AdvancementCommands/ ()V +MD: net/minecraft/server/commands/AdvancementCommands/ ()V net/minecraft/server/commands/AdvancementCommands/ ()V +MD: net/minecraft/server/commands/AdvancementCommands/m_136310_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/AdvancementCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/AdvancementCommands/m_136312_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136314_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/AdvancementCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/AdvancementCommands/m_136317_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/AdvancementCommands/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/AdvancementCommands/m_136319_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;)I net/minecraft/server/commands/AdvancementCommands/perform (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136324_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)I net/minecraft/server/commands/AdvancementCommands/performCriterion (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136330_ (Lnet/minecraft/advancements/Advancement;Ljava/util/List;)V net/minecraft/server/commands/AdvancementCommands/addChildren (Lnet/minecraft/advancements/Advancement;Ljava/util/List;)V +MD: net/minecraft/server/commands/AdvancementCommands/m_136333_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/server/commands/AdvancementCommands$Mode;)Ljava/util/List; net/minecraft/server/commands/AdvancementCommands/getAdvancements (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/server/commands/AdvancementCommands$Mode;)Ljava/util/List; +MD: net/minecraft/server/commands/AdvancementCommands/m_136336_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136338_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/AdvancementCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/AdvancementCommands/m_136341_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136343_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/AdvancementCommands/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/AdvancementCommands/m_136346_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136348_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136350_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136352_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136354_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136356_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136358_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136360_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136362_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_287811_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$17 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_287814_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$performCriterion$21 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_287815_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$19 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_289057_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$18 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_289058_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$performCriterion$20 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_289059_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$16 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands$Action/ ()V net/minecraft/server/commands/AdvancementCommands$Action/ ()V +MD: net/minecraft/server/commands/AdvancementCommands$Action/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/commands/AdvancementCommands$Action/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_136378_ ()Ljava/lang/String; net/minecraft/server/commands/AdvancementCommands$Action/getKey ()Ljava/lang/String; +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_136379_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Iterable;)I net/minecraft/server/commands/AdvancementCommands$Action/perform (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Iterable;)I +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_180018_ ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; net/minecraft/server/commands/AdvancementCommands$Action/$values ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_5753_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/commands/AdvancementCommands$Action/performCriterion (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_6070_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/commands/AdvancementCommands$Action/perform (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Action; net/minecraft/server/commands/AdvancementCommands$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Action; +MD: net/minecraft/server/commands/AdvancementCommands$Action/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; net/minecraft/server/commands/AdvancementCommands$Action/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; +MD: net/minecraft/server/commands/AdvancementCommands$Action$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/commands/AdvancementCommands$Action$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/commands/AdvancementCommands$Action$1/m_5753_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/commands/AdvancementCommands$Action$1/performCriterion (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action$1/m_6070_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/commands/AdvancementCommands$Action$1/perform (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/commands/AdvancementCommands$Action$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/commands/AdvancementCommands$Action$2/m_5753_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/commands/AdvancementCommands$Action$2/performCriterion (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action$2/m_6070_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/commands/AdvancementCommands$Action$2/perform (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Mode/ ()V net/minecraft/server/commands/AdvancementCommands$Mode/ ()V +MD: net/minecraft/server/commands/AdvancementCommands$Mode/ (Ljava/lang/String;IZZ)V net/minecraft/server/commands/AdvancementCommands$Mode/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/server/commands/AdvancementCommands$Mode/m_180019_ ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; net/minecraft/server/commands/AdvancementCommands$Mode/$values ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; +MD: net/minecraft/server/commands/AdvancementCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Mode; net/minecraft/server/commands/AdvancementCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Mode; +MD: net/minecraft/server/commands/AdvancementCommands$Mode/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; net/minecraft/server/commands/AdvancementCommands$Mode/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; +MD: net/minecraft/server/commands/AttributeCommand/ ()V net/minecraft/server/commands/AttributeCommand/ ()V +MD: net/minecraft/server/commands/AttributeCommand/ ()V net/minecraft/server/commands/AttributeCommand/ ()V +MD: net/minecraft/server/commands/AttributeCommand/m_136439_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/server/commands/AttributeCommand/getLivingEntity (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/server/commands/AttributeCommand/m_136458_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;)I net/minecraft/server/commands/AttributeCommand/removeModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;)I +MD: net/minecraft/server/commands/AttributeCommand/m_136463_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;D)I net/minecraft/server/commands/AttributeCommand/getAttributeModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_136469_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)I net/minecraft/server/commands/AttributeCommand/addModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)I +MD: net/minecraft/server/commands/AttributeCommand/m_136496_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_212440_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/AttributeCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/AttributeCommand/m_212442_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_212444_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_212447_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_244810_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244811_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244812_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244813_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244814_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244815_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244816_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244817_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244818_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244819_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244820_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_245112_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/server/commands/AttributeCommand/getEntityWithAttribute (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/server/commands/AttributeCommand/m_245136_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I net/minecraft/server/commands/AttributeCommand/setAttributeBase (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_245835_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/AttributeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/AttributeCommand/m_246137_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I net/minecraft/server/commands/AttributeCommand/getAttributeBase (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_246653_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/server/commands/AttributeCommand/getAttributeInstance (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/server/commands/AttributeCommand/m_247618_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/getAttributeDescription (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_247645_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I net/minecraft/server/commands/AttributeCommand/getAttributeValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_287816_ (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$removeModifier$21 (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287817_ (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$addModifier$20 (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287818_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$getAttributeValue$16 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287819_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$setAttributeBase$19 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287820_ (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$getAttributeModifier$18 (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287821_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$getAttributeBase$17 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanIpCommands/ ()V net/minecraft/server/commands/BanIpCommands/ ()V +MD: net/minecraft/server/commands/BanIpCommands/ ()V net/minecraft/server/commands/BanIpCommands/ ()V +MD: net/minecraft/server/commands/BanIpCommands/m_136527_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BanIpCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BanIpCommands/m_136529_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanIpCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanIpCommands/m_136531_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BanIpCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BanIpCommands/m_136533_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BanIpCommands/banIpOrName (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BanIpCommands/m_136537_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanIpCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanIpCommands/m_136539_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BanIpCommands/banIp (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BanIpCommands/m_287822_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanIpCommands/lambda$banIp$4 (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanIpCommands/m_287823_ (Ljava/lang/String;Lnet/minecraft/server/players/IpBanListEntry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanIpCommands/lambda$banIp$3 (Ljava/lang/String;Lnet/minecraft/server/players/IpBanListEntry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanListCommands/ ()V net/minecraft/server/commands/BanListCommands/ ()V +MD: net/minecraft/server/commands/BanListCommands/m_136543_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BanListCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BanListCommands/m_136545_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanListCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanListCommands/m_136547_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BanListCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BanListCommands/m_136549_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/BanListCommands/showList (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/BanListCommands/m_136552_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanListCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanListCommands/m_136554_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanListCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanListCommands/m_287824_ (Lnet/minecraft/server/players/BanListEntry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanListCommands/lambda$showList$6 (Lnet/minecraft/server/players/BanListEntry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanListCommands/m_287825_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanListCommands/lambda$showList$4 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanListCommands/m_287826_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanListCommands/lambda$showList$5 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanPlayerCommands/ ()V net/minecraft/server/commands/BanPlayerCommands/ ()V +MD: net/minecraft/server/commands/BanPlayerCommands/ ()V net/minecraft/server/commands/BanPlayerCommands/ ()V +MD: net/minecraft/server/commands/BanPlayerCommands/m_136558_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BanPlayerCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BanPlayerCommands/m_136560_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanPlayerCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanPlayerCommands/m_136562_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BanPlayerCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BanPlayerCommands/m_136564_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BanPlayerCommands/banPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BanPlayerCommands/m_136568_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanPlayerCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanPlayerCommands/m_287827_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/server/players/UserBanListEntry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanPlayerCommands/lambda$banPlayers$3 (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/server/players/UserBanListEntry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/ ()V net/minecraft/server/commands/BossBarCommands/ ()V +MD: net/minecraft/server/commands/BossBarCommands/ ()V net/minecraft/server/commands/BossBarCommands/ ()V +MD: net/minecraft/server/commands/BossBarCommands/m_136582_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BossBarCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BossBarCommands/m_136584_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/commands/BossBarCommands/getBossBar (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/commands/BossBarCommands/m_136586_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/BossBarCommands/lambda$static$2 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/BossBarCommands/m_136589_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/BossBarCommands/listBars (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136591_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BossBarCommands/createBar (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136595_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136598_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I net/minecraft/server/commands/BossBarCommands/setValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I +MD: net/minecraft/server/commands/BossBarCommands/m_136602_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarColor;)I net/minecraft/server/commands/BossBarCommands/setColor (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarColor;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136606_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarOverlay;)I net/minecraft/server/commands/BossBarCommands/setStyle (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarOverlay;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136610_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)I net/minecraft/server/commands/BossBarCommands/setPlayers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136614_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BossBarCommands/setName (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136618_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Z)I net/minecraft/server/commands/BossBarCommands/setVisible (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Z)I +MD: net/minecraft/server/commands/BossBarCommands/m_136622_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/BossBarCommands/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/BossBarCommands/m_136624_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$28 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136626_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BossBarCommands/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BossBarCommands/m_136628_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getMax (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136631_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I net/minecraft/server/commands/BossBarCommands/setMax (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I +MD: net/minecraft/server/commands/BossBarCommands/m_136635_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/BossBarCommands/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/BossBarCommands/m_136637_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$27 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136639_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getVisible (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136642_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$26 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136644_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getPlayers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136647_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$25 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136649_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/removeBar (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136652_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$24 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136654_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$23 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136656_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136658_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136660_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136662_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136664_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136666_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136668_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136670_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136672_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136674_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136676_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136678_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136680_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136682_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136684_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136686_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136688_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136690_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136692_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_287828_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$listBars$45 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287829_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getVisible$31 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287830_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setVisible$36 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287831_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setColor$39 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287832_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$createBar$46 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287833_ (Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setPlayers$43 (Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287834_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$removeBar$47 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287835_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$listBars$44 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287836_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setStyle$40 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287837_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setVisible$35 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287838_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getMax$30 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287839_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getPlayers$34 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287840_ (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setValue$37 (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287841_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getValue$29 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287842_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getVisible$32 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287843_ (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setMax$38 (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287844_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setName$41 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287845_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getPlayers$33 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287846_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setPlayers$42 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/ ()V net/minecraft/server/commands/ChaseCommand/ ()V +MD: net/minecraft/server/commands/ChaseCommand/ ()V net/minecraft/server/commands/ChaseCommand/ ()V +MD: net/minecraft/server/commands/ChaseCommand/m_196077_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ChaseCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ChaseCommand/m_196079_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196081_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ChaseCommand/stop (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196083_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I net/minecraft/server/commands/ChaseCommand/lead (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I +MD: net/minecraft/server/commands/ChaseCommand/m_196087_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196089_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ChaseCommand/alreadyRunning (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ChaseCommand/m_196091_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I net/minecraft/server/commands/ChaseCommand/follow (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I +MD: net/minecraft/server/commands/ChaseCommand/m_196095_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196097_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196099_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196101_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196103_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_287847_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$stop$8 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/m_287848_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$lead$9 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/m_287849_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$stop$7 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/m_287850_ (Ljava/lang/String;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$follow$10 (Ljava/lang/String;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/ ()V net/minecraft/server/commands/ClearInventoryCommands/ ()V +MD: net/minecraft/server/commands/ClearInventoryCommands/ ()V net/minecraft/server/commands/ClearInventoryCommands/ ()V +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136701_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136703_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ClearInventoryCommands/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136705_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/function/Predicate;I)I net/minecraft/server/commands/ClearInventoryCommands/clearInventory (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/function/Predicate;I)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136710_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ClearInventoryCommands/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136714_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136716_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ClearInventoryCommands/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136718_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136720_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_180026_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/ClearInventoryCommands/lambda$register$5 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/ClearInventoryCommands/m_180028_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/ClearInventoryCommands/lambda$register$3 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/ClearInventoryCommands/m_214420_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ClearInventoryCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ClearInventoryCommands/m_287852_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$10 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_287854_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$12 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_289060_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$9 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_289061_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$11 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/CloneCommands/ ()V net/minecraft/server/commands/CloneCommands/ ()V +MD: net/minecraft/server/commands/CloneCommands/ ()V net/minecraft/server/commands/CloneCommands/ ()V +MD: net/minecraft/server/commands/CloneCommands/m_136733_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/CloneCommands/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/CloneCommands/m_136742_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/CloneCommands/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/CloneCommands/m_180032_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$10 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_180038_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$14 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_180040_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$12 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_214423_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/CloneCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/CloneCommands/m_263901_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$19 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263902_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$8 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_263903_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$7 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_263904_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$13 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; +MD: net/minecraft/server/commands/CloneCommands/m_263905_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$17 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263906_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263907_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$16 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; +MD: net/minecraft/server/commands/CloneCommands/m_263908_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$18 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; +MD: net/minecraft/server/commands/CloneCommands/m_263909_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$wrapWithCloneMode$22 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263910_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$beginEndDestinationAndModeSuffix$5 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263911_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$15 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263912_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$beginEndDestinationAndModeSuffix$6 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263913_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263914_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$11 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263915_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$wrapWithCloneMode$21 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263916_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$9 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_263917_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$wrapWithCloneMode$20 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_264087_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Ljava/util/function/Predicate;Lnet/minecraft/server/commands/CloneCommands$Mode;)I net/minecraft/server/commands/CloneCommands/clone (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Ljava/util/function/Predicate;Lnet/minecraft/server/commands/CloneCommands$Mode;)I +MD: net/minecraft/server/commands/CloneCommands/m_264123_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/CloneCommands/wrapWithCloneMode (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/CloneCommands/m_264459_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/CloneCommands/destinationAndModeSuffix (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/CloneCommands/m_264501_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/CloneCommands/beginEndDestinationAndModeSuffix (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/CloneCommands/m_264576_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/getLoadedDimensionAndPosition (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_283988_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$static$1 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_287855_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/CloneCommands/lambda$clone$23 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/CloneCommands$CloneBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/CloneCommands$CommandFunction/m_264253_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/commands/CloneCommands$CommandFunction/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/commands/CloneCommands$DimensionAndPosition/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/equals (Ljava/lang/Object;)Z net/minecraft/server/commands/CloneCommands$DimensionAndPosition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263735_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands$DimensionAndPosition/dimension ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263824_ ()Lnet/minecraft/core/BlockPos; net/minecraft/server/commands/CloneCommands$DimensionAndPosition/position ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/hashCode ()I net/minecraft/server/commands/CloneCommands$DimensionAndPosition/hashCode ()I +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/toString ()Ljava/lang/String; net/minecraft/server/commands/CloneCommands$DimensionAndPosition/toString ()Ljava/lang/String; +MD: net/minecraft/server/commands/CloneCommands$Mode/ ()V net/minecraft/server/commands/CloneCommands$Mode/ ()V +MD: net/minecraft/server/commands/CloneCommands$Mode/ (Ljava/lang/String;IZ)V net/minecraft/server/commands/CloneCommands$Mode/ (Ljava/lang/String;IZ)V +MD: net/minecraft/server/commands/CloneCommands$Mode/m_136796_ ()Z net/minecraft/server/commands/CloneCommands$Mode/canOverlap ()Z +MD: net/minecraft/server/commands/CloneCommands$Mode/m_180042_ ()[Lnet/minecraft/server/commands/CloneCommands$Mode; net/minecraft/server/commands/CloneCommands$Mode/$values ()[Lnet/minecraft/server/commands/CloneCommands$Mode; +MD: net/minecraft/server/commands/CloneCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$Mode; net/minecraft/server/commands/CloneCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$Mode; +MD: net/minecraft/server/commands/CloneCommands$Mode/values ()[Lnet/minecraft/server/commands/CloneCommands$Mode; net/minecraft/server/commands/CloneCommands$Mode/values ()[Lnet/minecraft/server/commands/CloneCommands$Mode; +MD: net/minecraft/server/commands/DamageCommand/ ()V net/minecraft/server/commands/DamageCommand/ ()V +MD: net/minecraft/server/commands/DamageCommand/ ()V net/minecraft/server/commands/DamageCommand/ ()V +MD: net/minecraft/server/commands/DamageCommand/m_269006_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269051_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DamageCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DamageCommand/m_269127_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269241_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269331_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269337_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/DamageCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/DamageCommand/m_269485_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;FLnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/server/commands/DamageCommand/damage (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;FLnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/server/commands/DamageCommand/m_287856_ (FLnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DamageCommand/lambda$damage$6 (FLnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DamageCommand/m_287857_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/ ()V net/minecraft/server/commands/DataPackCommand/ ()V +MD: net/minecraft/server/commands/DataPackCommand/ ()V net/minecraft/server/commands/DataPackCommand/ ()V +MD: net/minecraft/server/commands/DataPackCommand/m_136806_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listEnabledPacks$30 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_136808_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DataPackCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DataPackCommand/m_136810_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136815_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Z)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/commands/DataPackCommand/getPack (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Z)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/commands/DataPackCommand/m_136823_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DataPackCommand/listPacks (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136825_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;)I net/minecraft/server/commands/DataPackCommand/disablePack (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136828_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;Lnet/minecraft/server/commands/DataPackCommand$Inserter;)I net/minecraft/server/commands/DataPackCommand/enablePack (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;Lnet/minecraft/server/commands/DataPackCommand$Inserter;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136832_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_136834_ (Ljava/util/Collection;Ljava/lang/String;)Z net/minecraft/server/commands/DataPackCommand/lambda$static$6 (Ljava/util/Collection;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_136843_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$27 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_136845_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136847_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/DataPackCommand/lambda$static$4 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/DataPackCommand/m_136854_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DataPackCommand/listAvailablePacks (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136856_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_136863_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136865_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DataPackCommand/listEnabledPacks (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136867_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_136869_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136871_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DataPackCommand/lambda$register$8 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_136873_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136875_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136877_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136879_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136881_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_180044_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180051_ (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$17 (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180054_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180058_ (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$10 (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180061_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/commands/DataPackCommand/lambda$register$9 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/commands/DataPackCommand/m_244821_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/DataPackCommand/lambda$static$7 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/DataPackCommand/m_244822_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z net/minecraft/server/commands/DataPackCommand/lambda$static$5 (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_244823_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_244824_ (Ljava/util/Collection;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$25 (Ljava/util/Collection;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_287858_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$28 (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287859_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$disablePack$24 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287860_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$26 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287861_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$enablePack$23 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287862_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listEnabledPacks$29 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287863_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listEnabledPacks$31 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand$Inserter/m_136883_ (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand$Inserter/apply (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DeOpCommands/ ()V net/minecraft/server/commands/DeOpCommands/ ()V +MD: net/minecraft/server/commands/DeOpCommands/ ()V net/minecraft/server/commands/DeOpCommands/ ()V +MD: net/minecraft/server/commands/DeOpCommands/m_136888_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DeOpCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DeOpCommands/m_136890_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DeOpCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DeOpCommands/m_136892_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/DeOpCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/DeOpCommands/m_136895_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DeOpCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DeOpCommands/m_136897_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/DeOpCommands/deopPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/DeOpCommands/m_287864_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DeOpCommands/lambda$deopPlayers$3 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/ ()V net/minecraft/server/commands/DebugCommand/ ()V +MD: net/minecraft/server/commands/DebugCommand/ ()V net/minecraft/server/commands/DebugCommand/ ()V +MD: net/minecraft/server/commands/DebugCommand/m_136905_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DebugCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DebugCommand/m_136907_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugCommand/m_136909_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DebugCommand/start (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DebugCommand/m_136915_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DebugCommand/stop (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DebugCommand/m_136917_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugCommand/m_180065_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/DebugCommand/traceFunction (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/DebugCommand/m_180068_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugCommand/m_180070_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugCommand/m_180072_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugCommand/m_287865_ (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$traceFunction$8 (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/m_287866_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$start$5 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/m_287867_ (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$traceFunction$7 (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/m_287868_ (DLnet/minecraft/util/profiling/ProfileResults;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$stop$6 (DLnet/minecraft/util/profiling/ProfileResults;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand$Tracer/ (Ljava/io/PrintWriter;)V net/minecraft/server/commands/DebugCommand$Tracer/ (Ljava/io/PrintWriter;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142147_ (ILnet/minecraft/resources/ResourceLocation;I)V net/minecraft/server/commands/DebugCommand$Tracer/onCall (ILnet/minecraft/resources/ResourceLocation;I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142255_ (ILjava/lang/String;)V net/minecraft/server/commands/DebugCommand$Tracer/onError (ILjava/lang/String;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142256_ (ILjava/lang/String;)V net/minecraft/server/commands/DebugCommand$Tracer/onCommand (ILjava/lang/String;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142279_ (ILjava/lang/String;I)V net/minecraft/server/commands/DebugCommand$Tracer/onReturn (ILjava/lang/String;I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142559_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/alwaysAccepts ()Z +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_180081_ (I)V net/minecraft/server/commands/DebugCommand$Tracer/indentAndSave (I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_180097_ (I)V net/minecraft/server/commands/DebugCommand$Tracer/printIndent (I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_180103_ ()V net/minecraft/server/commands/DebugCommand$Tracer/newLine ()V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/commands/DebugCommand$Tracer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_6102_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/shouldInformAdmins ()Z +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_6999_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/acceptsSuccess ()Z +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_7028_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/acceptsFailure ()Z +MD: net/minecraft/server/commands/DebugMobSpawningCommand/ ()V net/minecraft/server/commands/DebugMobSpawningCommand/ ()V +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180107_ (Lnet/minecraft/world/entity/MobCategory;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugMobSpawningCommand/lambda$register$1 (Lnet/minecraft/world/entity/MobCategory;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180110_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DebugMobSpawningCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180112_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugMobSpawningCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180114_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/DebugMobSpawningCommand/spawnMobs (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/DebugPathCommand/ ()V net/minecraft/server/commands/DebugPathCommand/ ()V +MD: net/minecraft/server/commands/DebugPathCommand/ ()V net/minecraft/server/commands/DebugPathCommand/ ()V +MD: net/minecraft/server/commands/DebugPathCommand/m_180123_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DebugPathCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DebugPathCommand/m_180125_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugPathCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugPathCommand/m_180127_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugPathCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugPathCommand/m_180129_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/DebugPathCommand/fillBlocks (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/DebugPathCommand/m_287869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugPathCommand/lambda$fillBlocks$2 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DefaultGameModeCommands/ ()V net/minecraft/server/commands/DefaultGameModeCommands/ ()V +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_136926_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DefaultGameModeCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_136928_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DefaultGameModeCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_136930_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameType;)I net/minecraft/server/commands/DefaultGameModeCommands/setMode (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameType;)I +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_257135_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DefaultGameModeCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_287870_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DefaultGameModeCommands/lambda$setMode$2 (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DifficultyCommand/ ()V net/minecraft/server/commands/DifficultyCommand/ ()V +MD: net/minecraft/server/commands/DifficultyCommand/ ()V net/minecraft/server/commands/DifficultyCommand/ ()V +MD: net/minecraft/server/commands/DifficultyCommand/m_136935_ (Lnet/minecraft/world/Difficulty;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DifficultyCommand/lambda$register$1 (Lnet/minecraft/world/Difficulty;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DifficultyCommand/m_136938_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DifficultyCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DifficultyCommand/m_136942_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DifficultyCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DifficultyCommand/m_136944_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/Difficulty;)I net/minecraft/server/commands/DifficultyCommand/setDifficulty (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/Difficulty;)I +MD: net/minecraft/server/commands/DifficultyCommand/m_136947_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DifficultyCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DifficultyCommand/m_287871_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DifficultyCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DifficultyCommand/m_287872_ (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DifficultyCommand/lambda$register$3 (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DifficultyCommand/m_287873_ (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DifficultyCommand/lambda$setDifficulty$5 (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/ ()V net/minecraft/server/commands/EffectCommands/ ()V +MD: net/minecraft/server/commands/EffectCommands/ ()V net/minecraft/server/commands/EffectCommands/ ()V +MD: net/minecraft/server/commands/EffectCommands/m_136953_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/EffectCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/EffectCommands/m_136957_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/EffectCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/EffectCommands/m_136959_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/EffectCommands/clearEffects (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/EffectCommands/m_136981_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_136983_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244826_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244827_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244828_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244829_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244830_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_246113_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;)I net/minecraft/server/commands/EffectCommands/clearEffect (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;)I +MD: net/minecraft/server/commands/EffectCommands/m_247240_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;Ljava/lang/Integer;IZ)I net/minecraft/server/commands/EffectCommands/giveEffect (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;Ljava/lang/Integer;IZ)I +MD: net/minecraft/server/commands/EffectCommands/m_267546_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_267547_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_267548_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_287874_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$giveEffect$12 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287875_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffects$14 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287876_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$giveEffect$11 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287877_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffect$15 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287878_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffects$13 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287879_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffect$16 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EmoteCommands/ ()V net/minecraft/server/commands/EmoteCommands/ ()V +MD: net/minecraft/server/commands/EmoteCommands/m_136985_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/EmoteCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/EmoteCommands/m_244831_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/EmoteCommands/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/EmoteCommands/m_244832_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EmoteCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EnchantCommand/ ()V net/minecraft/server/commands/EnchantCommand/ ()V +MD: net/minecraft/server/commands/EnchantCommand/ ()V net/minecraft/server/commands/EnchantCommand/ ()V +MD: net/minecraft/server/commands/EnchantCommand/m_137012_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/EnchantCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/EnchantCommand/m_137019_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_137021_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_137026_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_137028_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_244833_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EnchantCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EnchantCommand/m_244834_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EnchantCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EnchantCommand/m_245923_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/EnchantCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/EnchantCommand/m_246270_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;I)I net/minecraft/server/commands/EnchantCommand/enchant (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;I)I +MD: net/minecraft/server/commands/EnchantCommand/m_287880_ (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EnchantCommand/lambda$enchant$8 (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EnchantCommand/m_287881_ (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EnchantCommand/lambda$enchant$7 (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/ ()V net/minecraft/server/commands/ExecuteCommand/ ()V +MD: net/minecraft/server/commands/ExecuteCommand/ ()V net/minecraft/server/commands/ExecuteCommand/ ()V +MD: net/minecraft/server/commands/ExecuteCommand/m_137036_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Z)Ljava/util/OptionalInt; net/minecraft/server/commands/ExecuteCommand/checkRegions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Z)Ljava/util/OptionalInt; +MD: net/minecraft/server/commands/ExecuteCommand/m_137044_ (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;)Lcom/mojang/brigadier/ResultConsumer; net/minecraft/server/commands/ExecuteCommand/lambda$static$3 (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;)Lcom/mojang/brigadier/ResultConsumer; +MD: net/minecraft/server/commands/ExecuteCommand/m_137053_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$55 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137058_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Z net/minecraft/server/commands/ExecuteCommand/checkScore (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137064_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/function/BiPredicate;)Z net/minecraft/server/commands/ExecuteCommand/checkScore (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/function/BiPredicate;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137067_ (Lcom/mojang/brigadier/context/CommandContext;Z)I net/minecraft/server/commands/ExecuteCommand/checkIfRegions (Lcom/mojang/brigadier/context/CommandContext;Z)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137070_ (Lcom/mojang/brigadier/context/CommandContext;ZZ)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/expect (Lcom/mojang/brigadier/context/CommandContext;ZZ)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137074_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/addConditional (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137079_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZZ)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/addIfBlocksConditional (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZZ)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137088_ (Lcom/mojang/brigadier/tree/CommandNode;ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$58 (Lcom/mojang/brigadier/tree/CommandNode;ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137093_ (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;Z)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/wrapStores (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;Z)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137097_ (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$35 (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137102_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExecuteCommand/lambda$register$6 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137104_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Z net/minecraft/server/commands/ExecuteCommand/checkCustomPredicate (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137107_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Z)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/storeValue (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Z)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137112_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;ZZ)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/storeValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;ZZ)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137117_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Z)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/storeData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Z)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137126_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ExecuteCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ExecuteCommand/m_137128_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ExecuteCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ExecuteCommand/m_137131_ (Ljava/util/Collection;Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;ZLcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$storeValue$36 (Ljava/util/Collection;Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;ZLcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_137145_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I net/minecraft/server/commands/ExecuteCommand/checkMatchingData (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137163_ (ZLcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addIfBlocksConditional$68 (ZLcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137166_ (ZLnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;)Lcom/mojang/brigadier/Command; net/minecraft/server/commands/ExecuteCommand/createNumericConditionalHandler (ZLnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;)Lcom/mojang/brigadier/Command; +MD: net/minecraft/server/commands/ExecuteCommand/m_137177_ (ZZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addIfBlocksConditional$66 (ZZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137181_ (ZZLnet/minecraft/server/bossevents/CustomBossEvent;Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$storeValue$37 (ZZLnet/minecraft/server/bossevents/CustomBossEvent;Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_137188_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$54 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137193_ (Lcom/mojang/brigadier/context/CommandContext;Z)I net/minecraft/server/commands/ExecuteCommand/checkUnlessRegions (Lcom/mojang/brigadier/context/CommandContext;Z)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137196_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExecuteCommand/lambda$register$5 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137208_ (ZLcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addIfBlocksConditional$67 (ZLcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137211_ (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addConditional$63 (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137215_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$52 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137220_ (Lcom/mojang/brigadier/context/CommandContext;Z)Ljava/util/OptionalInt; net/minecraft/server/commands/ExecuteCommand/checkRegions (Lcom/mojang/brigadier/context/CommandContext;Z)Ljava/util/OptionalInt; +MD: net/minecraft/server/commands/ExecuteCommand/m_137230_ (ZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$53 (ZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137233_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$51 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137245_ (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$22 (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137248_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$49 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137257_ (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$21 (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137260_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$47 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137269_ (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$20 (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137272_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$45 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137274_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$43 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137276_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$39 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137278_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137280_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137282_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137284_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137286_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137288_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137290_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137292_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137294_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137298_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_180150_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$57 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_180153_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$34 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180157_ (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$static$2 (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_180163_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$33 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180166_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$50 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180172_ (ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$56 (ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_180176_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$32 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180180_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$31 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180183_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$48 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180186_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$30 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180190_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$29 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180193_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$46 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180196_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$28 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180200_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$27 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180203_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$44 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180206_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$26 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180210_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$25 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180213_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$24 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180217_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$23 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_214434_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ExecuteCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ExecuteCommand/m_214437_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;ZLnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/addConditionals (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;ZLnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_263149_ (Lnet/minecraft/server/commands/data/DataAccessor;ZLnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$storeData$38 (Lnet/minecraft/server/commands/data/DataAccessor;ZLnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_263918_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Ljava/util/List; net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToOneEntityRelation$72 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Ljava/util/List; +MD: net/minecraft/server/commands/ExecuteCommand/m_263919_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$80 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_263920_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/stream/Stream; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$83 (Lnet/minecraft/world/entity/Entity;)Ljava/util/stream/Stream; +MD: net/minecraft/server/commands/ExecuteCommand/m_263922_ (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToManyEntityRelation$75 (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_263924_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$77 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_263925_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToOneEntityRelation$71 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_263926_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToManyEntityRelation$74 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_263927_ (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToOneEntityRelation$73 (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_263930_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$42 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_264124_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/createRelationOperations (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_264155_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/commands/ExecuteCommand/isChunkLoaded (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_264350_ (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; net/minecraft/server/commands/ExecuteCommand/expandOneToManyEntityRelation (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; +MD: net/minecraft/server/commands/ExecuteCommand/m_264445_ (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; net/minecraft/server/commands/ExecuteCommand/expandOneToOneEntityRelation (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; +MD: net/minecraft/server/commands/ExecuteCommand/m_266134_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$82 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_268838_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$41 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_268839_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$76 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_268840_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_269381_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/spawnEntityAndRedirect (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_271596_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$79 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_271597_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$78 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_274091_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_274092_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$81 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_276724_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$40 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_278534_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ExecuteCommand/lambda$static$4 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ExecuteCommand/m_283989_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_287882_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$59 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287883_ (Ljava/util/OptionalInt;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$checkIfRegions$69 (Ljava/util/OptionalInt;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287884_ (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$60 (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_287885_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$checkUnlessRegions$70 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287886_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$61 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287887_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$addConditional$64 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287888_ (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$62 (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_287889_ (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addConditional$65 (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate/m_137300_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate/test (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand$CommandPredicate/m_137302_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand$CommandPredicate/test (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExperienceCommand/ ()V net/minecraft/server/commands/ExperienceCommand/ ()V +MD: net/minecraft/server/commands/ExperienceCommand/ ()V net/minecraft/server/commands/ExperienceCommand/ ()V +MD: net/minecraft/server/commands/ExperienceCommand/m_137306_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ExperienceCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ExperienceCommand/m_137308_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137310_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExperienceCommand/lambda$register$9 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExperienceCommand/m_137312_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/commands/ExperienceCommand$Type;)I net/minecraft/server/commands/ExperienceCommand/queryExperience (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/commands/ExperienceCommand$Type;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137316_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I net/minecraft/server/commands/ExperienceCommand/addExperience (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137321_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137323_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExperienceCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExperienceCommand/m_137325_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I net/minecraft/server/commands/ExperienceCommand/setExperience (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137330_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137332_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137334_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137336_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137338_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137340_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_287891_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$setExperience$14 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_287893_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$addExperience$12 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_289062_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$setExperience$13 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_289063_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;Lnet/minecraft/server/level/ServerPlayer;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$queryExperience$10 (Lnet/minecraft/server/commands/ExperienceCommand$Type;Lnet/minecraft/server/level/ServerPlayer;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_289064_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$addExperience$11 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand$Type/ ()V net/minecraft/server/commands/ExperienceCommand$Type/ ()V +MD: net/minecraft/server/commands/ExperienceCommand$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiConsumer;Ljava/util/function/BiPredicate;Ljava/util/function/ToIntFunction;)V net/minecraft/server/commands/ExperienceCommand$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiConsumer;Ljava/util/function/BiPredicate;Ljava/util/function/ToIntFunction;)V +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_137359_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$2 (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_180221_ ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; net/minecraft/server/commands/ExperienceCommand$Type/$values ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_287030_ (Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$3 (Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_289065_ (Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$1 (Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_289066_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$0 (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExperienceCommand$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/ExperienceCommand$Type; net/minecraft/server/commands/ExperienceCommand$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/ExperienceCommand$Type; +MD: net/minecraft/server/commands/ExperienceCommand$Type/values ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; net/minecraft/server/commands/ExperienceCommand$Type/values ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; +MD: net/minecraft/server/commands/FillBiomeCommand/ ()V net/minecraft/server/commands/FillBiomeCommand/ ()V +MD: net/minecraft/server/commands/FillBiomeCommand/ ()V net/minecraft/server/commands/FillBiomeCommand/ ()V +MD: net/minecraft/server/commands/FillBiomeCommand/m_260812_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/commands/FillBiomeCommand/quantize (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/commands/FillBiomeCommand/m_260845_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/FillBiomeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/FillBiomeCommand/m_261155_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/FillBiomeCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/FillBiomeCommand/m_261188_ (I)I net/minecraft/server/commands/FillBiomeCommand/quantize (I)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_261268_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/FillBiomeCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/FillBiomeCommand/m_262349_ (Lnet/minecraft/core/Holder;)Z net/minecraft/server/commands/FillBiomeCommand/lambda$register$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/server/commands/FillBiomeCommand/m_262350_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillBiomeCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_262351_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/function/Predicate;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/Holder;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/server/commands/FillBiomeCommand/lambda$makeResolver$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/function/Predicate;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/Holder;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/server/commands/FillBiomeCommand/m_262352_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillBiomeCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_262439_ (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Holder;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/server/commands/FillBiomeCommand/makeResolver (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Holder;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/server/commands/FillBiomeCommand/m_262457_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/Predicate;)I net/minecraft/server/commands/FillBiomeCommand/fill (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/Predicate;)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_287897_ (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FillBiomeCommand/lambda$fill$6 (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FillCommand/ ()V net/minecraft/server/commands/FillCommand/ ()V +MD: net/minecraft/server/commands/FillCommand/ ()V net/minecraft/server/commands/FillCommand/ ()V +MD: net/minecraft/server/commands/FillCommand/m_137381_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137383_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/FillCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/FillCommand/m_137385_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/FillCommand$Mode;Ljava/util/function/Predicate;)I net/minecraft/server/commands/FillCommand/fillBlocks (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/FillCommand$Mode;Ljava/util/function/Predicate;)I +MD: net/minecraft/server/commands/FillCommand/m_137391_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/FillCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/FillCommand/m_137394_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137396_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137398_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137400_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137402_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137404_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_180224_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/FillCommand/lambda$register$5 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/FillCommand/m_214442_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/FillCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/FillCommand/m_287898_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FillCommand/lambda$fillBlocks$10 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FillCommand$Mode/ ()V net/minecraft/server/commands/FillCommand$Mode/ ()V +MD: net/minecraft/server/commands/FillCommand$Mode/ (Ljava/lang/String;ILnet/minecraft/server/commands/SetBlockCommand$Filter;)V net/minecraft/server/commands/FillCommand$Mode/ (Ljava/lang/String;ILnet/minecraft/server/commands/SetBlockCommand$Filter;)V +MD: net/minecraft/server/commands/FillCommand$Mode/m_137417_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_137422_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_137427_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_137432_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_180226_ ()[Lnet/minecraft/server/commands/FillCommand$Mode; net/minecraft/server/commands/FillCommand$Mode/$values ()[Lnet/minecraft/server/commands/FillCommand$Mode; +MD: net/minecraft/server/commands/FillCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/FillCommand$Mode; net/minecraft/server/commands/FillCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/FillCommand$Mode; +MD: net/minecraft/server/commands/FillCommand$Mode/values ()[Lnet/minecraft/server/commands/FillCommand$Mode; net/minecraft/server/commands/FillCommand$Mode/values ()[Lnet/minecraft/server/commands/FillCommand$Mode; +MD: net/minecraft/server/commands/ForceLoadCommand/ ()V net/minecraft/server/commands/ForceLoadCommand/ ()V +MD: net/minecraft/server/commands/ForceLoadCommand/ ()V net/minecraft/server/commands/ForceLoadCommand/ ()V +MD: net/minecraft/server/commands/ForceLoadCommand/m_137673_ (Lnet/minecraft/server/level/ServerLevel;J)V net/minecraft/server/commands/ForceLoadCommand/lambda$removeAll$13 (Lnet/minecraft/server/level/ServerLevel;J)V +MD: net/minecraft/server/commands/ForceLoadCommand/m_137676_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ForceLoadCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ForceLoadCommand/m_137678_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137680_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ForceLoadCommand/listForceLoad (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137682_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;)I net/minecraft/server/commands/ForceLoadCommand/queryForceLoad (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137685_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/server/level/ColumnPos;Z)I net/minecraft/server/commands/ForceLoadCommand/changeForceLoad (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/server/level/ColumnPos;Z)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137690_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ForceLoadCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ForceLoadCommand/m_137693_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137695_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ForceLoadCommand/removeAll (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137697_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ForceLoadCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ForceLoadCommand/m_137700_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137702_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ForceLoadCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ForceLoadCommand/m_137704_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137706_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137708_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137710_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_287899_ (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$changeForceLoad$15 (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287900_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$queryForceLoad$10 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287901_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$listForceLoad$11 (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287902_ (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$changeForceLoad$16 (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287903_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$removeAll$14 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287904_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$listForceLoad$12 (ILnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/ ()V net/minecraft/server/commands/FunctionCommand/ ()V +MD: net/minecraft/server/commands/FunctionCommand/ ()V net/minecraft/server/commands/FunctionCommand/ ()V +MD: net/minecraft/server/commands/FunctionCommand/m_137714_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/FunctionCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/FunctionCommand/m_137716_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FunctionCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FunctionCommand/m_137718_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/FunctionCommand/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/FunctionCommand/m_137721_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/FunctionCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/FunctionCommand/m_137723_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/FunctionCommand/runFunction (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/FunctionCommand/m_279881_ (Lorg/apache/commons/lang3/mutable/MutableObject;I)V net/minecraft/server/commands/FunctionCommand/lambda$runFunction$3 (Lorg/apache/commons/lang3/mutable/MutableObject;I)V +MD: net/minecraft/server/commands/FunctionCommand/m_287905_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$4 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/m_287906_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$5 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/m_287907_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$7 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/m_287908_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$6 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameModeCommand/ ()V net/minecraft/server/commands/GameModeCommand/ ()V +MD: net/minecraft/server/commands/GameModeCommand/m_137729_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/GameModeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/GameModeCommand/m_137731_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/world/level/GameType;)I net/minecraft/server/commands/GameModeCommand/setMode (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/world/level/GameType;)I +MD: net/minecraft/server/commands/GameModeCommand/m_137735_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/GameModeCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/GameModeCommand/m_137737_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/GameType;)V net/minecraft/server/commands/GameModeCommand/logGamemodeChange (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/server/commands/GameModeCommand/m_257136_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameModeCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameModeCommand/m_257137_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameModeCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameModeCommand/m_287910_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameModeCommand/lambda$logGamemodeChange$3 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameModeCommand/m_289067_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameModeCommand/lambda$logGamemodeChange$4 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameRuleCommand/ ()V net/minecraft/server/commands/GameRuleCommand/ ()V +MD: net/minecraft/server/commands/GameRuleCommand/m_137744_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/GameRuleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/GameRuleCommand/m_137749_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/GameRuleCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/GameRuleCommand/m_137754_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/level/GameRules$Key;)I net/minecraft/server/commands/GameRuleCommand/setRule (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/level/GameRules$Key;)I +MD: net/minecraft/server/commands/GameRuleCommand/m_137757_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameRules$Key;)I net/minecraft/server/commands/GameRuleCommand/queryRule (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameRules$Key;)I +MD: net/minecraft/server/commands/GameRuleCommand/m_287911_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameRuleCommand/lambda$setRule$1 (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameRuleCommand/m_287912_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameRuleCommand/lambda$queryRule$2 (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameRuleCommand$1/ (Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)V net/minecraft/server/commands/GameRuleCommand$1/ (Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)V +MD: net/minecraft/server/commands/GameRuleCommand$1/m_137766_ (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameRuleCommand$1/lambda$visit$1 (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameRuleCommand$1/m_137769_ (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameRuleCommand$1/lambda$visit$0 (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameRuleCommand$1/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/server/commands/GameRuleCommand$1/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/server/commands/GiveCommand/ ()V net/minecraft/server/commands/GiveCommand/ ()V +MD: net/minecraft/server/commands/GiveCommand/m_137774_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GiveCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GiveCommand/m_137776_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/GiveCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/GiveCommand/m_137778_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/item/ItemInput;Ljava/util/Collection;I)I net/minecraft/server/commands/GiveCommand/giveItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/item/ItemInput;Ljava/util/Collection;I)I +MD: net/minecraft/server/commands/GiveCommand/m_137783_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GiveCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GiveCommand/m_214445_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/GiveCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/GiveCommand/m_287913_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GiveCommand/lambda$giveItem$4 (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GiveCommand/m_289068_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GiveCommand/lambda$giveItem$3 (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/HelpCommand/ ()V net/minecraft/server/commands/HelpCommand/ ()V +MD: net/minecraft/server/commands/HelpCommand/ ()V net/minecraft/server/commands/HelpCommand/ ()V +MD: net/minecraft/server/commands/HelpCommand/m_137787_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/HelpCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/HelpCommand/m_287915_ (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/HelpCommand/lambda$register$2 (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/HelpCommand/m_287916_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/HelpCommand/lambda$register$0 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/HelpCommand/m_287917_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/HelpCommand/lambda$register$3 (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/HelpCommand/m_287918_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/HelpCommand/lambda$register$1 (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/ ()V net/minecraft/server/commands/ItemCommands/ ()V +MD: net/minecraft/server/commands/ItemCommands/ ()V net/minecraft/server/commands/ItemCommands/ ()V +MD: net/minecraft/server/commands/ItemCommands/m_180245_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/ItemCommands/getEntityItem (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/ItemCommands/m_180250_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180255_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ItemCommands/lambda$register$7 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ItemCommands/m_180257_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;I)I net/minecraft/server/commands/ItemCommands/entityToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180263_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/entityToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180270_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;I)I net/minecraft/server/commands/ItemCommands/entityToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180276_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/entityToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180283_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/ItemCommands/applyModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/ItemCommands/m_180287_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/ItemCommands/getBlockItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/ItemCommands/m_180291_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/item/ItemStack;)I net/minecraft/server/commands/ItemCommands/setBlockItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/server/commands/ItemCommands/m_180296_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/modifyBlockItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180301_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;I)I net/minecraft/server/commands/ItemCommands/blockToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180307_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/blockToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180314_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;I)I net/minecraft/server/commands/ItemCommands/blockToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180320_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/blockToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180327_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/brigadier/exceptions/Dynamic3CommandExceptionType;)Lnet/minecraft/world/Container; net/minecraft/server/commands/ItemCommands/getContainer (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/brigadier/exceptions/Dynamic3CommandExceptionType;)Lnet/minecraft/world/Container; +MD: net/minecraft/server/commands/ItemCommands/m_180331_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/item/ItemStack;)I net/minecraft/server/commands/ItemCommands/setEntityItem (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/server/commands/ItemCommands/m_180336_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/modifyEntityItem (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180341_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$4 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180343_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$5 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180346_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180350_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180352_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180354_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180358_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180360_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180362_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180364_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180366_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180368_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180370_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180372_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180374_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180376_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180378_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180380_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180382_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_214448_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ItemCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ItemCommands/m_278537_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ItemCommands/lambda$static$6 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ItemCommands/m_287919_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$modifyBlockItem$22 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287920_ (Ljava/util/Map;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$modifyEntityItem$24 (Ljava/util/Map;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287921_ (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$setEntityItem$27 (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287922_ (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$modifyEntityItem$23 (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287923_ (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$setEntityItem$26 (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287924_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$setBlockItem$25 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/JfrCommand/ ()V net/minecraft/server/commands/JfrCommand/ ()V +MD: net/minecraft/server/commands/JfrCommand/ ()V net/minecraft/server/commands/JfrCommand/ ()V +MD: net/minecraft/server/commands/JfrCommand/m_183645_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/JfrCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/JfrCommand/m_183647_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/JfrCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/JfrCommand/m_183649_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/JfrCommand/startJfr (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/JfrCommand/m_183651_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/JfrCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/JfrCommand/m_183653_ (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/commands/JfrCommand/lambda$stopJfr$5 (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/commands/JfrCommand/m_183656_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/JfrCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/JfrCommand/m_183658_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/JfrCommand/stopJfr (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/JfrCommand/m_183660_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/JfrCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/JfrCommand/m_287925_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/JfrCommand/lambda$stopJfr$6 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/JfrCommand/m_287926_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/JfrCommand/lambda$startJfr$4 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/KickCommand/ ()V net/minecraft/server/commands/KickCommand/ ()V +MD: net/minecraft/server/commands/KickCommand/m_137795_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/KickCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/KickCommand/m_137797_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KickCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KickCommand/m_137799_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/KickCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/KickCommand/m_137801_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/KickCommand/kickPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/KickCommand/m_137805_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KickCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KickCommand/m_289069_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/KickCommand/lambda$kickPlayers$3 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/KillCommand/ ()V net/minecraft/server/commands/KillCommand/ ()V +MD: net/minecraft/server/commands/KillCommand/m_137807_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/KillCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/KillCommand/m_137809_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KillCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KillCommand/m_137811_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/KillCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/KillCommand/m_137813_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/KillCommand/kill (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/KillCommand/m_137816_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KillCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KillCommand/m_287928_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/KillCommand/lambda$kill$3 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/KillCommand/m_287929_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/KillCommand/lambda$kill$4 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ListPlayersCommand/ ()V net/minecraft/server/commands/ListPlayersCommand/ ()V +MD: net/minecraft/server/commands/ListPlayersCommand/m_137820_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ListPlayersCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ListPlayersCommand/m_137822_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ListPlayersCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137824_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ListPlayersCommand/listPlayers (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137826_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Function;)I net/minecraft/server/commands/ListPlayersCommand/format (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Function;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137829_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ListPlayersCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137831_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ListPlayersCommand/listPlayersWithUuids (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_287930_ (Ljava/util/List;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ListPlayersCommand/lambda$format$3 (Ljava/util/List;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ListPlayersCommand/m_289070_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ListPlayersCommand/lambda$listPlayersWithUuids$2 (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LocateCommand/ ()V net/minecraft/server/commands/LocateCommand/ ()V +MD: net/minecraft/server/commands/LocateCommand/ ()V net/minecraft/server/commands/LocateCommand/ ()V +MD: net/minecraft/server/commands/LocateCommand/m_137853_ (IIII)F net/minecraft/server/commands/LocateCommand/dist (IIII)F +MD: net/minecraft/server/commands/LocateCommand/m_201830_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_207533_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_214462_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$14 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_214469_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/LocateCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/LocateCommand/m_214471_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)I net/minecraft/server/commands/LocateCommand/locateStructure (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)I +MD: net/minecraft/server/commands/LocateCommand/m_214486_ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$16 (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/commands/LocateCommand/m_214490_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/server/commands/LocateCommand/lambda$getHolders$8 (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/server/commands/LocateCommand/m_214497_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$getElementName$11 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_214511_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_214513_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_244840_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/server/commands/LocateCommand/lambda$locateStructure$10 (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/server/commands/LocateCommand/m_244842_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/HolderSet$Named;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$13 (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/HolderSet$Named;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_244843_ (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$15 (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_244844_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$12 (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_245206_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I net/minecraft/server/commands/LocateCommand/locatePoi (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I +MD: net/minecraft/server/commands/LocateCommand/m_245526_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/server/commands/LocateCommand/getHolders (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/server/commands/LocateCommand/m_245548_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/getElementName (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_246116_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/LocateCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/LocateCommand/m_247543_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I net/minecraft/server/commands/LocateCommand/locateBiome (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I +MD: net/minecraft/server/commands/LocateCommand/m_257138_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/server/commands/LocateCommand/lambda$getHolders$9 (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/server/commands/LocateCommand/m_257139_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LocateCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LocateCommand/m_257140_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LocateCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LocateCommand/m_257141_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LocateCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LocateCommand/m_262810_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I net/minecraft/server/commands/LocateCommand/showLocateResult (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I +MD: net/minecraft/server/commands/LocateCommand/m_262830_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I net/minecraft/server/commands/LocateCommand/showLocateResult (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I +MD: net/minecraft/server/commands/LocateCommand/m_262858_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/lang/String;Ljava/time/Duration;)I net/minecraft/server/commands/LocateCommand/showLocateResult (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/lang/String;Ljava/time/Duration;)I +MD: net/minecraft/server/commands/LocateCommand/m_287932_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$17 (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/ ()V net/minecraft/server/commands/LootCommand/ ()V +MD: net/minecraft/server/commands/LootCommand/ ()V net/minecraft/server/commands/LootCommand/ ()V +MD: net/minecraft/server/commands/LootCommand/m_137881_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/commands/LootCommand/lambda$dropInWorld$22 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/commands/LootCommand/m_137885_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/LootCommand/distributeToContainer (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/LootCommand/m_137888_ (Lnet/minecraft/world/entity/Entity;Ljava/util/List;IILjava/util/List;)V net/minecraft/server/commands/LootCommand/setSlots (Lnet/minecraft/world/entity/Entity;Ljava/util/List;IILjava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137894_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/LootCommand/canMergeItems (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/LootCommand/m_137902_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$TailProvider;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/LootCommand/addTargets (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$TailProvider;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/LootCommand/m_137905_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropKillLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137912_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropBlockLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137917_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$21 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137926_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropFishingLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137932_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropChestLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137936_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/LootCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/LootCommand/m_137938_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/LootCommand/getSourceHandItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/LootCommand/m_137945_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec3;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/dropInWorld (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec3;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137950_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; net/minecraft/server/commands/LootCommand/getContainer (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; +MD: net/minecraft/server/commands/LootCommand/m_137953_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/blockReplace (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137960_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/blockDistribute (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137965_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/callback (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137968_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/commands/LootCommand/callback (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/commands/LootCommand/m_137972_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/lambda$dropKillLoot$28 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137976_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LootCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LootCommand/m_137978_ (Ljava/util/Collection;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/entityReplace (Ljava/util/Collection;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137984_ (Ljava/util/Collection;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/playerGive (Ljava/util/Collection;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137991_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$20 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137995_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/lambda$drop$29 (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137998_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LootCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LootCommand/m_138003_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$19 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138010_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$18 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138017_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$17 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138024_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$16 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138031_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$15 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_180392_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$13 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180395_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$12 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180398_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$11 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180401_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$10 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180404_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$9 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180407_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$8 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180410_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$7 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180413_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$6 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180416_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$5 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180419_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$4 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_214515_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/LootCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/LootCommand/m_214518_ (Lnet/minecraft/commands/CommandBuildContext;Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/LootCommand/lambda$register$14 (Lnet/minecraft/commands/CommandBuildContext;Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/LootCommand/m_278539_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/lambda$dropBlockLoot$27 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_278540_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/LootCommand/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/LootCommand/m_287198_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/drop (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_287933_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$23 (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/m_287934_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$24 (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/m_287935_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$25 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/m_287936_ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$26 (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand$Callback/m_138047_ (Ljava/util/List;)V net/minecraft/server/commands/LootCommand$Callback/accept (Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand$DropConsumer/m_138049_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand$DropConsumer/accept (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand$TailProvider/m_138053_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/LootCommand$TailProvider/construct (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/MsgCommand/ ()V net/minecraft/server/commands/MsgCommand/ ()V +MD: net/minecraft/server/commands/MsgCommand/m_138060_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/MsgCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/MsgCommand/m_244847_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/MsgCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/MsgCommand/m_244848_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/MsgCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/MsgCommand/m_246972_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/MsgCommand/sendMessage (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/OpCommand/ ()V net/minecraft/server/commands/OpCommand/ ()V +MD: net/minecraft/server/commands/OpCommand/ ()V net/minecraft/server/commands/OpCommand/ ()V +MD: net/minecraft/server/commands/OpCommand/m_138079_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/OpCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/OpCommand/m_138081_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/OpCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/OpCommand/m_138083_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/OpCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/OpCommand/m_138086_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/OpCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/OpCommand/m_138088_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/OpCommand/opPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/OpCommand/m_287939_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/OpCommand/lambda$opPlayers$5 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/OpCommand/m_289071_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; net/minecraft/server/commands/OpCommand/lambda$register$2 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; +MD: net/minecraft/server/commands/OpCommand/m_289072_ (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/commands/OpCommand/lambda$register$1 (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/commands/PardonCommand/ ()V net/minecraft/server/commands/PardonCommand/ ()V +MD: net/minecraft/server/commands/PardonCommand/ ()V net/minecraft/server/commands/PardonCommand/ ()V +MD: net/minecraft/server/commands/PardonCommand/m_138093_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PardonCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PardonCommand/m_138095_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PardonCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PardonCommand/m_138097_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/PardonCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/PardonCommand/m_138100_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PardonCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PardonCommand/m_138102_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/PardonCommand/pardonPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/PardonCommand/m_287940_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PardonCommand/lambda$pardonPlayers$3 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PardonIpCommand/ ()V net/minecraft/server/commands/PardonIpCommand/ ()V +MD: net/minecraft/server/commands/PardonIpCommand/ ()V net/minecraft/server/commands/PardonIpCommand/ ()V +MD: net/minecraft/server/commands/PardonIpCommand/m_138108_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PardonIpCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PardonIpCommand/m_138110_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PardonIpCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PardonIpCommand/m_138112_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/PardonIpCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/PardonIpCommand/m_138115_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PardonIpCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PardonIpCommand/m_138117_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/PardonIpCommand/unban (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/PardonIpCommand/m_287941_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PardonIpCommand/lambda$unban$3 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ParticleCommand/ ()V net/minecraft/server/commands/ParticleCommand/ ()V +MD: net/minecraft/server/commands/ParticleCommand/ ()V net/minecraft/server/commands/ParticleCommand/ ()V +MD: net/minecraft/server/commands/ParticleCommand/m_138122_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ParticleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ParticleCommand/m_138124_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138126_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ParticleCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ParticleCommand/m_138128_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FIZLjava/util/Collection;)I net/minecraft/server/commands/ParticleCommand/sendParticles (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FIZLjava/util/Collection;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138137_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138139_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138141_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138143_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138145_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138147_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_287942_ (Lnet/minecraft/core/particles/ParticleOptions;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ParticleCommand/lambda$sendParticles$8 (Lnet/minecraft/core/particles/ParticleOptions;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PerfCommand/ ()V net/minecraft/server/commands/PerfCommand/ ()V +MD: net/minecraft/server/commands/PerfCommand/ ()V net/minecraft/server/commands/PerfCommand/ ()V +MD: net/minecraft/server/commands/PerfCommand/m_180437_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PerfCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PerfCommand/m_180439_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PerfCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PerfCommand/m_180441_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/PerfCommand/startProfilingDedicatedServer (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/PerfCommand/m_180443_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/commands/PerfCommand/whenStopped (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/commands/PerfCommand/m_180446_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/nio/file/Path;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/commands/PerfCommand/saveResults (Lnet/minecraft/commands/CommandSourceStack;Ljava/nio/file/Path;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/commands/PerfCommand/m_180450_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/MinecraftServer;Ljava/nio/file/Path;)V net/minecraft/server/commands/PerfCommand/lambda$startProfilingDedicatedServer$4 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/MinecraftServer;Ljava/nio/file/Path;)V +MD: net/minecraft/server/commands/PerfCommand/m_180454_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PerfCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PerfCommand/m_180456_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/PerfCommand/stopProfilingDedicatedServer (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/PerfCommand/m_180458_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/commands/PerfCommand/lambda$startProfilingDedicatedServer$3 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/commands/PerfCommand/m_180461_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PerfCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PerfCommand/m_287943_ (DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PerfCommand/lambda$whenStopped$7 (DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PerfCommand/m_287944_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PerfCommand/lambda$saveResults$6 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PerfCommand/m_287945_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PerfCommand/lambda$startProfilingDedicatedServer$5 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/ ()V net/minecraft/server/commands/PlaceCommand/ ()V +MD: net/minecraft/server/commands/PlaceCommand/ ()V net/minecraft/server/commands/PlaceCommand/ ()V +MD: net/minecraft/server/commands/PlaceCommand/m_214540_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/commands/PlaceCommand/lambda$checkLoaded$21 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/commands/PlaceCommand/m_214543_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/commands/PlaceCommand/checkLoaded (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/commands/PlaceCommand/m_214547_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PlaceCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PlaceCommand/m_214549_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214551_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/PlaceCommand/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/PlaceCommand/m_214559_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PlaceCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PlaceCommand/m_214561_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;FI)I net/minecraft/server/commands/PlaceCommand/placeTemplate (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;FI)I +MD: net/minecraft/server/commands/PlaceCommand/m_214569_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/PlaceCommand/placeJigsaw (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214575_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/PlaceCommand/placeFeature (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214579_ (Lnet/minecraft/core/Holder;)Z net/minecraft/server/commands/PlaceCommand/lambda$placeStructure$17 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/server/commands/PlaceCommand/m_214581_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/PlaceCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/PlaceCommand/m_214585_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214587_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/PlaceCommand/placeStructure (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214591_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214593_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214595_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_244852_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_244856_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_244857_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274099_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274100_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274101_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274102_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_287947_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeTemplate$20 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_287948_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeFeature$15 (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_287949_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeJigsaw$16 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_287950_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeStructure$19 (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_289073_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/commands/PlaceCommand/lambda$placeStructure$18 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/commands/PlaySoundCommand/ ()V net/minecraft/server/commands/PlaySoundCommand/ ()V +MD: net/minecraft/server/commands/PlaySoundCommand/ ()V net/minecraft/server/commands/PlaySoundCommand/ ()V +MD: net/minecraft/server/commands/PlaySoundCommand/m_138151_ (Lnet/minecraft/sounds/SoundSource;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/server/commands/PlaySoundCommand/source (Lnet/minecraft/sounds/SoundSource;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/server/commands/PlaySoundCommand/m_138153_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$5 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138156_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PlaySoundCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PlaySoundCommand/m_138158_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PlaySoundCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PlaySoundCommand/m_138160_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/phys/Vec3;FFF)I net/minecraft/server/commands/PlaySoundCommand/playSound (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/phys/Vec3;FFF)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138169_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$4 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138172_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$3 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138175_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$2 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138178_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$1 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_287951_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaySoundCommand/lambda$playSound$7 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaySoundCommand/m_289074_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaySoundCommand/lambda$playSound$6 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PublishCommand/ ()V net/minecraft/server/commands/PublishCommand/ ()V +MD: net/minecraft/server/commands/PublishCommand/ ()V net/minecraft/server/commands/PublishCommand/ ()V +MD: net/minecraft/server/commands/PublishCommand/m_138184_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PublishCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PublishCommand/m_138188_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PublishCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PublishCommand/m_138193_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/PublishCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/PublishCommand/m_257142_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257143_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257144_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257145_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257556_ (I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/server/commands/PublishCommand/getSuccessMessage (I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/server/commands/PublishCommand/m_257944_ (Lnet/minecraft/commands/CommandSourceStack;IZLnet/minecraft/world/level/GameType;)I net/minecraft/server/commands/PublishCommand/publish (Lnet/minecraft/commands/CommandSourceStack;IZLnet/minecraft/world/level/GameType;)I +MD: net/minecraft/server/commands/PublishCommand/m_287953_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PublishCommand/lambda$publish$6 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/ ()V net/minecraft/server/commands/RaidCommand/ ()V +MD: net/minecraft/server/commands/RaidCommand/m_180466_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/server/commands/RaidCommand/getRaid (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/server/commands/RaidCommand/m_180468_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/RaidCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/RaidCommand/m_180470_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180472_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/glow (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180474_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/RaidCommand/setBadOmenLevel (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/RaidCommand/m_180477_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/RaidCommand/playSound (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/RaidCommand/m_180480_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180482_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/spawnLeader (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180484_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/RaidCommand/start (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/RaidCommand/m_180487_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180489_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/stop (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180491_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180493_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/check (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180495_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180497_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/RaidCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/RaidCommand/m_180499_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180501_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_287954_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$spawnLeader$9 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287955_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$stop$11 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287956_ (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$check$12 (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287957_ (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$check$13 (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287958_ (II)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$setBadOmenLevel$8 (II)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287959_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$start$10 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/ ()V net/minecraft/server/commands/RecipeCommand/ ()V +MD: net/minecraft/server/commands/RecipeCommand/ ()V net/minecraft/server/commands/RecipeCommand/ ()V +MD: net/minecraft/server/commands/RecipeCommand/m_138200_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/RecipeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/RecipeCommand/m_138202_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138204_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/RecipeCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/RecipeCommand/m_138206_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I net/minecraft/server/commands/RecipeCommand/giveRecipes (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138210_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138212_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I net/minecraft/server/commands/RecipeCommand/takeRecipes (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138216_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138218_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_287962_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$giveRecipes$6 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/m_287963_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$takeRecipes$8 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/m_289075_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$takeRecipes$7 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/m_289076_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$giveRecipes$5 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ReloadCommand/ ()V net/minecraft/server/commands/ReloadCommand/ ()V +MD: net/minecraft/server/commands/ReloadCommand/ ()V net/minecraft/server/commands/ReloadCommand/ ()V +MD: net/minecraft/server/commands/ReloadCommand/m_138222_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/storage/WorldData;Ljava/util/Collection;)Ljava/util/Collection; net/minecraft/server/commands/ReloadCommand/discoverNewPacks (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/storage/WorldData;Ljava/util/Collection;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ReloadCommand/m_138226_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ReloadCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ReloadCommand/m_138230_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ReloadCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ReloadCommand/m_138232_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/server/commands/ReloadCommand/lambda$reloadPacks$0 (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/server/commands/ReloadCommand/m_138235_ (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/commands/ReloadCommand/reloadPacks (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/commands/ReloadCommand/m_287964_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ReloadCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ReloadCommand/m_287965_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ReloadCommand/lambda$register$2 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ResetChunksCommand/ ()V net/minecraft/server/commands/ResetChunksCommand/ ()V +MD: net/minecraft/server/commands/ResetChunksCommand/ ()V net/minecraft/server/commands/ResetChunksCommand/ ()V +MD: net/minecraft/server/commands/ResetChunksCommand/m_183665_ ()Lcom/mojang/datafixers/util/Unit; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$4 ()Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/server/commands/ResetChunksCommand/m_183666_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ResetChunksCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ResetChunksCommand/m_183668_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ResetChunksCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_183670_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$6 (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/commands/ResetChunksCommand/m_183679_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Unit; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$7 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/server/commands/ResetChunksCommand/m_183682_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ResetChunksCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ResetChunksCommand/m_183684_ (Lnet/minecraft/commands/CommandSourceStack;IZ)I net/minecraft/server/commands/ResetChunksCommand/resetChunks (Lnet/minecraft/commands/CommandSourceStack;IZ)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_183688_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ResetChunksCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_183690_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ResetChunksCommand/m_183692_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ResetChunksCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_279885_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Ljava/util/List;Lcom/mojang/datafixers/util/Unit;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$8 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Ljava/util/List;Lcom/mojang/datafixers/util/Unit;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/commands/ResetChunksCommand/m_287966_ (IJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$9 (IJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ReturnCommand/ ()V net/minecraft/server/commands/ReturnCommand/ ()V +MD: net/minecraft/server/commands/ReturnCommand/m_280144_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/ReturnCommand/setReturn (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/ReturnCommand/m_280209_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ReturnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ReturnCommand/m_280303_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ReturnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ReturnCommand/m_280383_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ReturnCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RideCommand/ ()V net/minecraft/server/commands/RideCommand/ ()V +MD: net/minecraft/server/commands/RideCommand/ ()V net/minecraft/server/commands/RideCommand/ ()V +MD: net/minecraft/server/commands/RideCommand/m_264204_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/RideCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/RideCommand/m_264225_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)I net/minecraft/server/commands/RideCommand/dismount (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/server/commands/RideCommand/m_264235_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/RideCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/RideCommand/m_264241_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RideCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RideCommand/m_264259_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/commands/RideCommand/lambda$mount$6 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/commands/RideCommand/m_264291_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RideCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RideCommand/m_264485_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/RideCommand/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/RideCommand/m_264511_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/server/commands/RideCommand/mount (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/server/commands/RideCommand/m_264607_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/RideCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/RideCommand/m_264633_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/RideCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/RideCommand/m_287967_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RideCommand/lambda$dismount$8 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RideCommand/m_287968_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RideCommand/lambda$mount$7 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveAllCommand/ ()V net/minecraft/server/commands/SaveAllCommand/ ()V +MD: net/minecraft/server/commands/SaveAllCommand/ ()V net/minecraft/server/commands/SaveAllCommand/ ()V +MD: net/minecraft/server/commands/SaveAllCommand/m_138271_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SaveAllCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SaveAllCommand/m_138273_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveAllCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveAllCommand/m_138275_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SaveAllCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SaveAllCommand/m_138277_ (Lnet/minecraft/commands/CommandSourceStack;Z)I net/minecraft/server/commands/SaveAllCommand/saveAll (Lnet/minecraft/commands/CommandSourceStack;Z)I +MD: net/minecraft/server/commands/SaveAllCommand/m_138280_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveAllCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveAllCommand/m_287969_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveAllCommand/lambda$saveAll$3 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveAllCommand/m_287970_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveAllCommand/lambda$saveAll$4 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveOffCommand/ ()V net/minecraft/server/commands/SaveOffCommand/ ()V +MD: net/minecraft/server/commands/SaveOffCommand/ ()V net/minecraft/server/commands/SaveOffCommand/ ()V +MD: net/minecraft/server/commands/SaveOffCommand/m_138284_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SaveOffCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SaveOffCommand/m_138286_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveOffCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveOffCommand/m_138288_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SaveOffCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SaveOffCommand/m_287971_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveOffCommand/lambda$register$1 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveOnCommand/ ()V net/minecraft/server/commands/SaveOnCommand/ ()V +MD: net/minecraft/server/commands/SaveOnCommand/ ()V net/minecraft/server/commands/SaveOnCommand/ ()V +MD: net/minecraft/server/commands/SaveOnCommand/m_138292_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SaveOnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SaveOnCommand/m_138294_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveOnCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveOnCommand/m_138296_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SaveOnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SaveOnCommand/m_287972_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveOnCommand/lambda$register$1 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SayCommand/ ()V net/minecraft/server/commands/SayCommand/ ()V +MD: net/minecraft/server/commands/SayCommand/m_138409_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SayCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SayCommand/m_138413_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SayCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SayCommand/m_244858_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/SayCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/SayCommand/m_244859_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SayCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/ ()V net/minecraft/server/commands/ScheduleCommand/ ()V +MD: net/minecraft/server/commands/ScheduleCommand/ ()V net/minecraft/server/commands/ScheduleCommand/ ()V +MD: net/minecraft/server/commands/ScheduleCommand/m_138419_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ScheduleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ScheduleCommand/m_138421_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138423_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ScheduleCommand/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ScheduleCommand/m_138426_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ScheduleCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ScheduleCommand/m_138428_ (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/datafixers/util/Pair;IZ)I net/minecraft/server/commands/ScheduleCommand/schedule (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/datafixers/util/Pair;IZ)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138433_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/ScheduleCommand/remove (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138436_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ScheduleCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ScheduleCommand/m_138454_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138456_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138458_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_287973_ (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction;)V net/minecraft/server/commands/ScheduleCommand/lambda$schedule$8 (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/server/commands/ScheduleCommand/m_287974_ (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILjava/util/Collection;)V net/minecraft/server/commands/ScheduleCommand/lambda$schedule$10 (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILjava/util/Collection;)V +MD: net/minecraft/server/commands/ScheduleCommand/m_287975_ (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScheduleCommand/lambda$schedule$9 (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScheduleCommand/m_287976_ (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScheduleCommand/lambda$schedule$7 (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScheduleCommand/m_287977_ (ILjava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScheduleCommand/lambda$remove$11 (ILjava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/ ()V net/minecraft/server/commands/ScoreboardCommand/ ()V +MD: net/minecraft/server/commands/ScoreboardCommand/ ()V net/minecraft/server/commands/ScoreboardCommand/ ()V +MD: net/minecraft/server/commands/ScoreboardCommand/m_138467_ ()Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/server/commands/ScoreboardCommand/createRenderTypeModify ()Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138468_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ScoreboardCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ScoreboardCommand/m_138470_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138472_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ScoreboardCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138475_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ScoreboardCommand/listTrackedPlayers (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138477_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/ScoreboardCommand/clearDisplaySlot (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138480_ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/setDisplaySlot (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138484_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/removeObjective (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138487_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)I net/minecraft/server/commands/ScoreboardCommand/setRenderType (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138491_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/ScoreboardCommand/setDisplayName (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138495_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/ScoreboardCommand/listTrackedPlayerScores (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138498_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/getScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138502_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/ScoreboardCommand/addObjective (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138507_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/ScoreboardCommand/resetScores (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138510_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ScoreboardCommand/suggestTriggers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138514_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/enableTrigger (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138518_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I net/minecraft/server/commands/ScoreboardCommand/setScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138523_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/commands/arguments/OperationArgument$Operation;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/performOperation (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/commands/arguments/OperationArgument$Operation;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138530_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$createRenderTypeModify$20 (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138533_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ScoreboardCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138536_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138538_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ScoreboardCommand/listObjectives (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138540_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/resetScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138544_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I net/minecraft/server/commands/ScoreboardCommand/addScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138549_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138551_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ScoreboardCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ScoreboardCommand/m_138553_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I net/minecraft/server/commands/ScoreboardCommand/removeScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138558_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138560_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138562_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138564_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138566_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138568_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138570_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138572_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138574_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138576_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138578_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138580_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138582_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138584_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_287978_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$enableTrigger$24 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287979_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setRenderType$44 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287980_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayerScores$38 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287981_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setDisplayName$43 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287982_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$addScore$32 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287983_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$addScore$33 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287984_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$removeScore$35 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287985_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayers$36 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287986_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$clearDisplaySlot$41 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287987_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$enableTrigger$25 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287988_ (Ljava/lang/String;Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$getScore$21 (Ljava/lang/String;Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287989_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayers$37 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287990_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScore$29 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287991_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$removeScore$34 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287992_ (Ljava/lang/String;Ljava/util/Map;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayerScores$39 (Ljava/lang/String;Ljava/util/Map;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287993_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$performOperation$22 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287994_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setScore$31 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287995_ (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayerScores$40 (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287996_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScore$28 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287997_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScores$27 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287998_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$removeObjective$45 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287999_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$performOperation$23 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288000_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$addObjective$46 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288001_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listObjectives$48 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288002_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listObjectives$47 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288003_ (ILnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setDisplaySlot$42 (ILnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288004_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setScore$30 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288005_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScores$26 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SeedCommand/ ()V net/minecraft/server/commands/SeedCommand/ ()V +MD: net/minecraft/server/commands/SeedCommand/m_138589_ (Lcom/mojang/brigadier/CommandDispatcher;Z)V net/minecraft/server/commands/SeedCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Z)V +MD: net/minecraft/server/commands/SeedCommand/m_138594_ (ZLnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SeedCommand/lambda$register$0 (ZLnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SeedCommand/m_288006_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SeedCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SeedCommand/m_288007_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SeedCommand/lambda$register$1 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetBlockCommand/ ()V net/minecraft/server/commands/SetBlockCommand/ ()V +MD: net/minecraft/server/commands/SetBlockCommand/ ()V net/minecraft/server/commands/SetBlockCommand/ ()V +MD: net/minecraft/server/commands/SetBlockCommand/m_138603_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138605_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetBlockCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetBlockCommand/m_138607_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/SetBlockCommand$Mode;Ljava/util/function/Predicate;)I net/minecraft/server/commands/SetBlockCommand/setBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/SetBlockCommand$Mode;Ljava/util/function/Predicate;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138613_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138615_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138617_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_180516_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/SetBlockCommand/lambda$register$3 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/SetBlockCommand/m_214730_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/SetBlockCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/SetBlockCommand/m_288008_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetBlockCommand/lambda$setBlock$6 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetBlockCommand$Filter/m_138619_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/SetBlockCommand$Filter/filter (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/SetBlockCommand$Mode/ ()V net/minecraft/server/commands/SetBlockCommand$Mode/ ()V +MD: net/minecraft/server/commands/SetBlockCommand$Mode/ (Ljava/lang/String;I)V net/minecraft/server/commands/SetBlockCommand$Mode/ (Ljava/lang/String;I)V +MD: net/minecraft/server/commands/SetBlockCommand$Mode/m_180518_ ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; net/minecraft/server/commands/SetBlockCommand$Mode/$values ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; +MD: net/minecraft/server/commands/SetBlockCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/SetBlockCommand$Mode; net/minecraft/server/commands/SetBlockCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/SetBlockCommand$Mode; +MD: net/minecraft/server/commands/SetBlockCommand$Mode/values ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; net/minecraft/server/commands/SetBlockCommand$Mode/values ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/ ()V net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/ ()V +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138634_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138636_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138638_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138640_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/setIdleTimeout (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_288009_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/lambda$setIdleTimeout$2 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetSpawnCommand/ ()V net/minecraft/server/commands/SetSpawnCommand/ ()V +MD: net/minecraft/server/commands/SetSpawnCommand/m_138643_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SetSpawnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SetSpawnCommand/m_138645_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_138647_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetSpawnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetSpawnCommand/m_138649_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;F)I net/minecraft/server/commands/SetSpawnCommand/setSpawn (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;F)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_138654_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_274103_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_274104_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_288010_ (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetSpawnCommand/lambda$setSpawn$6 (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetSpawnCommand/m_288011_ (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetSpawnCommand/lambda$setSpawn$5 (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetWorldSpawnCommand/ ()V net/minecraft/server/commands/SetWorldSpawnCommand/ ()V +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138660_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SetWorldSpawnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138662_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138664_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138666_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;F)I net/minecraft/server/commands/SetWorldSpawnCommand/setSpawn (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;F)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138670_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_274105_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_288012_ (Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetWorldSpawnCommand/lambda$setSpawn$4 (Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266184_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266243_ (Ljava/util/HashMap;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266283_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266431_ (Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;Lnet/minecraft/world/item/armortrim/TrimMaterial;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$5 (Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;Lnet/minecraft/world/item/armortrim/TrimMaterial;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266467_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$6 (Lnet/minecraft/core/Registry;Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266547_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimMaterial;)Ljava/lang/Integer; net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$4 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimMaterial;)Ljava/lang/Integer; +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266582_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)Ljava/lang/Integer; net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$3 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)Ljava/lang/Integer; +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266585_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)I net/minecraft/server/commands/SpawnArmorTrimsCommand/spawnArmorTrims (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)I +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_276726_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_288013_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$7 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpectateCommand/ ()V net/minecraft/server/commands/SpectateCommand/ ()V +MD: net/minecraft/server/commands/SpectateCommand/ ()V net/minecraft/server/commands/SpectateCommand/ ()V +MD: net/minecraft/server/commands/SpectateCommand/m_138677_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SpectateCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SpectateCommand/m_138679_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpectateCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpectateCommand/m_138681_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SpectateCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SpectateCommand/m_138683_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/server/commands/SpectateCommand/spectate (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/server/commands/SpectateCommand/m_138687_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpectateCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpectateCommand/m_138689_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpectateCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpectateCommand/m_138691_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpectateCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpectateCommand/m_288014_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpectateCommand/lambda$spectate$5 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpectateCommand/m_288015_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpectateCommand/lambda$spectate$6 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpreadPlayersCommand/ ()V net/minecraft/server/commands/SpreadPlayersCommand/ ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand/ ()V net/minecraft/server/commands/SpreadPlayersCommand/ ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138696_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SpreadPlayersCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138702_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;FFIZLjava/util/Collection;)I net/minecraft/server/commands/SpreadPlayersCommand/spreadPlayers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;FFIZLjava/util/Collection;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138722_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpreadPlayersCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138727_ (Ljava/util/Collection;)I net/minecraft/server/commands/SpreadPlayersCommand/getNumberOfTeams (Ljava/util/Collection;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138729_ (Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;IZ)D net/minecraft/server/commands/SpreadPlayersCommand/setPlayerPositions (Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;IZ)D +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138744_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpreadPlayersCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_201849_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpreadPlayersCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_201851_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SpreadPlayersCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_201853_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpreadPlayersCommand/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_214733_ (Lnet/minecraft/util/RandomSource;IDDDD)[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position; net/minecraft/server/commands/SpreadPlayersCommand/createInitialPositions (Lnet/minecraft/util/RandomSource;IDDDD)[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_214740_ (Lnet/minecraft/world/phys/Vec2;DLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;DDDDI[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Z)V net/minecraft/server/commands/SpreadPlayersCommand/spreadPositions (Lnet/minecraft/world/phys/Vec2;DLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;DDDDI[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Z)V +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_288016_ (Z[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Lnet/minecraft/world/phys/Vec2;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpreadPlayersCommand/lambda$spreadPlayers$6 (Z[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Lnet/minecraft/world/phys/Vec2;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_288017_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpreadPlayersCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/ ()V net/minecraft/server/commands/SpreadPlayersCommand$Position/ ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138752_ ()V net/minecraft/server/commands/SpreadPlayersCommand$Position/normalize ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138753_ (DDDD)Z net/minecraft/server/commands/SpreadPlayersCommand$Position/clamp (DDDD)Z +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138758_ (Lnet/minecraft/world/level/BlockGetter;I)I net/minecraft/server/commands/SpreadPlayersCommand$Position/getSpawnY (Lnet/minecraft/world/level/BlockGetter;I)I +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138767_ (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)D net/minecraft/server/commands/SpreadPlayersCommand$Position/dist (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)D +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138773_ (Lnet/minecraft/world/level/BlockGetter;I)Z net/minecraft/server/commands/SpreadPlayersCommand$Position/isSafe (Lnet/minecraft/world/level/BlockGetter;I)Z +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138776_ (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)V net/minecraft/server/commands/SpreadPlayersCommand$Position/moveAway (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)V +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_180525_ ()D net/minecraft/server/commands/SpreadPlayersCommand$Position/getLength ()D +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_214752_ (Lnet/minecraft/util/RandomSource;DDDD)V net/minecraft/server/commands/SpreadPlayersCommand$Position/randomize (Lnet/minecraft/util/RandomSource;DDDD)V +MD: net/minecraft/server/commands/StopCommand/ ()V net/minecraft/server/commands/StopCommand/ ()V +MD: net/minecraft/server/commands/StopCommand/m_138785_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/StopCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/StopCommand/m_138789_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/StopCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/StopCommand/m_288018_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopCommand/lambda$register$1 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopCommand/m_288019_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/ ()V net/minecraft/server/commands/StopSoundCommand/ ()V +MD: net/minecraft/server/commands/StopSoundCommand/m_138791_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$3 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138794_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/StopSoundCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/StopSoundCommand/m_138796_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138798_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/StopSoundCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/StopSoundCommand/m_138800_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/resources/ResourceLocation;)I net/minecraft/server/commands/StopSoundCommand/stopSound (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/resources/ResourceLocation;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138805_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$2 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138808_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_288020_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$7 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopSoundCommand/m_288021_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$8 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopSoundCommand/m_288022_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$5 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopSoundCommand/m_288023_ (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$6 (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SummonCommand/ ()V net/minecraft/server/commands/SummonCommand/ ()V +MD: net/minecraft/server/commands/SummonCommand/ ()V net/minecraft/server/commands/SummonCommand/ ()V +MD: net/minecraft/server/commands/SummonCommand/m_138818_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SummonCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SummonCommand/m_138826_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/commands/SummonCommand/lambda$createEntity$4 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/commands/SummonCommand/m_244861_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SummonCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SummonCommand/m_244862_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SummonCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SummonCommand/m_244863_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SummonCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SummonCommand/m_245828_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)I net/minecraft/server/commands/SummonCommand/spawnEntity (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)I +MD: net/minecraft/server/commands/SummonCommand/m_246670_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/SummonCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/SummonCommand/m_269066_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)Lnet/minecraft/world/entity/Entity; net/minecraft/server/commands/SummonCommand/createEntity (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/commands/SummonCommand/m_288024_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SummonCommand/lambda$spawnEntity$5 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/ ()V net/minecraft/server/commands/TagCommand/ ()V +MD: net/minecraft/server/commands/TagCommand/ ()V net/minecraft/server/commands/TagCommand/ ()V +MD: net/minecraft/server/commands/TagCommand/m_138836_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TagCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TagCommand/m_138838_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TagCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TagCommand/m_138840_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/TagCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/TagCommand/m_138843_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TagCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TagCommand/m_138845_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TagCommand/listTags (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TagCommand/m_138848_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I net/minecraft/server/commands/TagCommand/addTag (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I +MD: net/minecraft/server/commands/TagCommand/m_138852_ (Ljava/util/Collection;)Ljava/util/Collection; net/minecraft/server/commands/TagCommand/getTags (Ljava/util/Collection;)Ljava/util/Collection; +MD: net/minecraft/server/commands/TagCommand/m_138854_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TagCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TagCommand/m_138856_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I net/minecraft/server/commands/TagCommand/removeTag (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I +MD: net/minecraft/server/commands/TagCommand/m_138860_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TagCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TagCommand/m_288025_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$addTag$5 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288026_ (Ljava/util/Collection;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$12 (Ljava/util/Collection;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288027_ (Lnet/minecraft/world/entity/Entity;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$10 (Lnet/minecraft/world/entity/Entity;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288028_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$addTag$6 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288029_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$11 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288030_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$removeTag$8 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288031_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$9 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288032_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$removeTag$7 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/ ()V net/minecraft/server/commands/TeamCommand/ ()V +MD: net/minecraft/server/commands/TeamCommand/ ()V net/minecraft/server/commands/TeamCommand/ ()V +MD: net/minecraft/server/commands/TeamCommand/m_138875_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138877_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TeamCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TeamCommand/m_138881_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/TeamCommand/listTeams (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/TeamCommand/m_138883_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I net/minecraft/server/commands/TeamCommand/emptyTeam (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I +MD: net/minecraft/server/commands/TeamCommand/m_138886_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)I net/minecraft/server/commands/TeamCommand/setCollision (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)I +MD: net/minecraft/server/commands/TeamCommand/m_138890_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I net/minecraft/server/commands/TeamCommand/setNametagVisibility (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I +MD: net/minecraft/server/commands/TeamCommand/m_138894_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)I net/minecraft/server/commands/TeamCommand/joinTeam (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TeamCommand/m_138898_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)I net/minecraft/server/commands/TeamCommand/setColor (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)I +MD: net/minecraft/server/commands/TeamCommand/m_138902_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/setDisplayName (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138906_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I net/minecraft/server/commands/TeamCommand/setFriendlySight (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I +MD: net/minecraft/server/commands/TeamCommand/m_138910_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/TeamCommand/createTeam (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/TeamCommand/m_138913_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/createTeam (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138917_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TeamCommand/leaveTeam (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TeamCommand/m_138922_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$27 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138926_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I net/minecraft/server/commands/TeamCommand/deleteTeam (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I +MD: net/minecraft/server/commands/TeamCommand/m_138929_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I net/minecraft/server/commands/TeamCommand/setDeathMessageVisibility (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I +MD: net/minecraft/server/commands/TeamCommand/m_138933_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/setPrefix (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138937_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I net/minecraft/server/commands/TeamCommand/setFriendlyFire (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I +MD: net/minecraft/server/commands/TeamCommand/m_138941_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$26 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138943_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I net/minecraft/server/commands/TeamCommand/listMembers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I +MD: net/minecraft/server/commands/TeamCommand/m_138946_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/setSuffix (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138950_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$25 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138952_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$24 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138954_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$23 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138956_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138958_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138960_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138962_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138964_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138966_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138968_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138970_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138972_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138974_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138976_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138978_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138980_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138982_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138984_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138986_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138988_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138990_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138992_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138994_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_183710_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_183712_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TeamCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TeamCommand/m_288033_ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listMembers$43 (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288034_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setNametagVisibility$32 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288035_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$createTeam$41 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288036_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listTeams$45 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288037_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setPrefix$46 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288038_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setCollision$34 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288039_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setDisplayName$37 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288040_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listMembers$42 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288041_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$deleteTeam$40 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288042_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$leaveTeam$28 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288043_ (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$joinTeam$31 (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288044_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setSuffix$47 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288045_ (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$emptyTeam$39 (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288046_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setColor$38 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288047_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$leaveTeam$29 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288048_ (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$joinTeam$30 (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288049_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listTeams$44 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288050_ (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setFriendlySight$35 (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288051_ (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setFriendlyFire$36 (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288052_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setDeathMessageVisibility$33 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamMsgCommand/ ()V net/minecraft/server/commands/TeamMsgCommand/ ()V +MD: net/minecraft/server/commands/TeamMsgCommand/ ()V net/minecraft/server/commands/TeamMsgCommand/ ()V +MD: net/minecraft/server/commands/TeamMsgCommand/m_138999_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TeamMsgCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TeamMsgCommand/m_244864_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/TeamMsgCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/TeamMsgCommand/m_244866_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamMsgCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamMsgCommand/m_246910_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/TeamMsgCommand/sendMessage (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/TeamMsgCommand/m_288053_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/commands/TeamMsgCommand/lambda$register$0 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/commands/TeleportCommand/ ()V net/minecraft/server/commands/TeleportCommand/ ()V +MD: net/minecraft/server/commands/TeleportCommand/ ()V net/minecraft/server/commands/TeleportCommand/ ()V +MD: net/minecraft/server/commands/TeleportCommand/m_139008_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TeleportCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TeleportCommand/m_139010_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139012_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TeleportCommand/lambda$register$9 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TeleportCommand/m_139014_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FFLnet/minecraft/server/commands/TeleportCommand$LookAt;)V net/minecraft/server/commands/TeleportCommand/performTeleport (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FFLnet/minecraft/server/commands/TeleportCommand$LookAt;)V +MD: net/minecraft/server/commands/TeleportCommand/m_139025_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/server/commands/TeleportCommand$LookAt;)I net/minecraft/server/commands/TeleportCommand/teleportToPos (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/server/commands/TeleportCommand$LookAt;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139032_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)I net/minecraft/server/commands/TeleportCommand/teleportToEntity (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139036_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139038_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TeleportCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TeleportCommand/m_139040_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139042_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139044_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139046_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139048_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139050_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_142775_ (D)Ljava/lang/String; net/minecraft/server/commands/TeleportCommand/formatDouble (D)Ljava/lang/String; +MD: net/minecraft/server/commands/TeleportCommand/m_288054_ (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToEntity$11 (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand/m_288055_ (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToEntity$10 (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand/m_288056_ (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToPos$13 (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand/m_288057_ (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToPos$12 (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V +MD: net/minecraft/server/commands/TeleportCommand$LookAt/m_139060_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/commands/TeleportCommand$LookAt/perform (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/commands/TellRawCommand/ ()V net/minecraft/server/commands/TellRawCommand/ ()V +MD: net/minecraft/server/commands/TellRawCommand/m_139063_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TellRawCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TellRawCommand/m_139067_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TellRawCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TellRawCommand/m_240394_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TellRawCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/ ()V net/minecraft/server/commands/TimeCommand/ ()V +MD: net/minecraft/server/commands/TimeCommand/m_139069_ (Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/server/commands/TimeCommand/getDayTime (Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/server/commands/TimeCommand/m_139071_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TimeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TimeCommand/m_139075_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TimeCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TimeCommand/m_139077_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/TimeCommand/setTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/TimeCommand/m_139082_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/TimeCommand/addTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/TimeCommand/m_139085_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139087_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/TimeCommand/queryTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/TimeCommand/m_139090_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139092_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139094_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139096_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139098_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139100_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_288058_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TimeCommand/lambda$queryTime$10 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TimeCommand/m_288059_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_288060_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TimeCommand/lambda$addTime$12 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TimeCommand/m_288061_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_288062_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TimeCommand/lambda$setTime$11 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/ ()V net/minecraft/server/commands/TitleCommand/ ()V +MD: net/minecraft/server/commands/TitleCommand/m_139102_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TitleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TitleCommand/m_139104_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139106_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TitleCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TitleCommand/m_139108_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TitleCommand/clearTitle (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TitleCommand/m_139111_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;III)I net/minecraft/server/commands/TitleCommand/setTimes (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;III)I +MD: net/minecraft/server/commands/TitleCommand/m_139122_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139124_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TitleCommand/resetTitle (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TitleCommand/m_139127_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139129_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139131_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139133_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_142780_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/util/function/Function;)I net/minecraft/server/commands/TitleCommand/showTitle (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/util/function/Function;)I +MD: net/minecraft/server/commands/TitleCommand/m_288063_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$setTimes$14 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_288068_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$resetTitle$10 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_288069_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$clearTitle$8 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_288070_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$showTitle$12 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289077_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$showTitle$11 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289078_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$clearTitle$7 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289079_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$setTimes$13 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289080_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$resetTitle$9 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TriggerCommand/ ()V net/minecraft/server/commands/TriggerCommand/ ()V +MD: net/minecraft/server/commands/TriggerCommand/ ()V net/minecraft/server/commands/TriggerCommand/ ()V +MD: net/minecraft/server/commands/TriggerCommand/m_139138_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; net/minecraft/server/commands/TriggerCommand/getScore (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; +MD: net/minecraft/server/commands/TriggerCommand/m_139141_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TriggerCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TriggerCommand/m_139143_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TriggerCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TriggerCommand/m_139145_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/TriggerCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/TriggerCommand/m_139148_ (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/TriggerCommand/suggestObjectives (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/TriggerCommand/m_139151_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;)I net/minecraft/server/commands/TriggerCommand/simpleTrigger (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;)I +MD: net/minecraft/server/commands/TriggerCommand/m_139154_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I net/minecraft/server/commands/TriggerCommand/addValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I +MD: net/minecraft/server/commands/TriggerCommand/m_139158_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TriggerCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TriggerCommand/m_139160_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I net/minecraft/server/commands/TriggerCommand/setValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I +MD: net/minecraft/server/commands/TriggerCommand/m_139164_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TriggerCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TriggerCommand/m_288071_ (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TriggerCommand/lambda$setValue$5 (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TriggerCommand/m_288072_ (Lnet/minecraft/world/scores/Score;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TriggerCommand/lambda$simpleTrigger$6 (Lnet/minecraft/world/scores/Score;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TriggerCommand/m_288073_ (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TriggerCommand/lambda$addValue$4 (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/ ()V net/minecraft/server/commands/WardenSpawnTrackerCommand/ ()V +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214773_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WardenSpawnTrackerCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214775_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214777_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214779_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/WardenSpawnTrackerCommand/resetTracker (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214782_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;I)I net/minecraft/server/commands/WardenSpawnTrackerCommand/setWarningLevel (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;I)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214786_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_244869_ (ILnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$setWarningLevel$3 (ILnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288074_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$setWarningLevel$5 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288075_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$setWarningLevel$4 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288076_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$resetTracker$6 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288077_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$resetTracker$7 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WeatherCommand/ ()V net/minecraft/server/commands/WeatherCommand/ ()V +MD: net/minecraft/server/commands/WeatherCommand/m_139166_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WeatherCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WeatherCommand/m_139170_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WeatherCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WeatherCommand/m_139172_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WeatherCommand/setClear (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WeatherCommand/m_139177_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WeatherCommand/setRain (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WeatherCommand/m_139182_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WeatherCommand/setThunder (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WeatherCommand/m_263940_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263941_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263942_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263943_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263944_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263945_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_264595_ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/util/valueproviders/IntProvider;)I net/minecraft/server/commands/WeatherCommand/getDuration (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/util/valueproviders/IntProvider;)I +MD: net/minecraft/server/commands/WeatherCommand/m_288078_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WeatherCommand/lambda$setClear$7 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WeatherCommand/m_288079_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WeatherCommand/lambda$setRain$8 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WeatherCommand/m_288080_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WeatherCommand/lambda$setThunder$9 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/ ()V net/minecraft/server/commands/WhitelistCommand/ ()V +MD: net/minecraft/server/commands/WhitelistCommand/ ()V net/minecraft/server/commands/WhitelistCommand/ ()V +MD: net/minecraft/server/commands/WhitelistCommand/m_139201_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WhitelistCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WhitelistCommand/m_139203_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139205_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/WhitelistCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/WhitelistCommand/m_139208_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/reload (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139210_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/WhitelistCommand/addPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139213_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139215_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/WhitelistCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/WhitelistCommand/m_139218_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/enableWhitelist (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139220_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/WhitelistCommand/removePlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139223_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139225_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/disableWhitelist (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139227_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139229_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/showList (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139231_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139233_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WhitelistCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WhitelistCommand/m_139235_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_288081_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$removePlayers$13 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288082_ ([Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$showList$17 ([Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288084_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$showList$16 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288085_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$addPlayers$12 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288086_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$reload$11 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288087_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$disableWhitelist$15 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288088_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$enableWhitelist$14 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_289081_ (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/commands/WhitelistCommand/lambda$register$4 (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/commands/WhitelistCommand/m_289082_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; net/minecraft/server/commands/WhitelistCommand/lambda$register$5 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; +MD: net/minecraft/server/commands/WorldBorderCommand/ ()V net/minecraft/server/commands/WorldBorderCommand/ ()V +MD: net/minecraft/server/commands/WorldBorderCommand/ ()V net/minecraft/server/commands/WorldBorderCommand/ ()V +MD: net/minecraft/server/commands/WorldBorderCommand/m_139246_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WorldBorderCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WorldBorderCommand/m_139248_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139250_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WorldBorderCommand/getSize (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139252_ (Lnet/minecraft/commands/CommandSourceStack;DJ)I net/minecraft/server/commands/WorldBorderCommand/setSize (Lnet/minecraft/commands/CommandSourceStack;DJ)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139256_ (Lnet/minecraft/commands/CommandSourceStack;F)I net/minecraft/server/commands/WorldBorderCommand/setDamageBuffer (Lnet/minecraft/commands/CommandSourceStack;F)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139259_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WorldBorderCommand/setWarningTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139262_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;)I net/minecraft/server/commands/WorldBorderCommand/setCenter (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139265_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139267_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WorldBorderCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WorldBorderCommand/m_139269_ (Lnet/minecraft/commands/CommandSourceStack;F)I net/minecraft/server/commands/WorldBorderCommand/setDamageAmount (Lnet/minecraft/commands/CommandSourceStack;F)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139272_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WorldBorderCommand/setWarningDistance (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139275_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139277_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139279_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139281_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139283_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139285_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_288090_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setCenter$16 (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288091_ (DJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setSize$18 (DJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288092_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setWarningDistance$14 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288093_ (D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$getSize$15 (D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288094_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setWarningTime$13 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288095_ (F)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setDamageBuffer$11 (F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288096_ (D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setSize$19 (D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288097_ (F)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setDamageAmount$12 (F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288098_ (DJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setSize$17 (DJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_289083_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_289084_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/BlockDataAccessor/ ()V net/minecraft/server/commands/data/BlockDataAccessor/ ()V +MD: net/minecraft/server/commands/data/BlockDataAccessor/ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/commands/data/BlockDataAccessor/ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_139304_ (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/BlockDataAccessor/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/BlockDataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/BlockDataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/BlockDataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/BlockDataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/BlockDataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/BlockDataAccessor$1/ (Ljava/lang/String;)V net/minecraft/server/commands/data/BlockDataAccessor$1/ (Ljava/lang/String;)V +MD: net/minecraft/server/commands/data/BlockDataAccessor$1/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/BlockDataAccessor$1/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/BlockDataAccessor$1/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/BlockDataAccessor$1/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/DataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/DataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/DataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/DataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/ ()V net/minecraft/server/commands/data/DataCommands/ ()V +MD: net/minecraft/server/commands/data/DataCommands/ ()V net/minecraft/server/commands/data/DataCommands/ ()V +MD: net/minecraft/server/commands/data/DataCommands/m_139365_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/data/DataCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/data/DataCommands/m_139367_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator;)V net/minecraft/server/commands/data/DataCommands/lambda$register$21 (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator;)V +MD: net/minecraft/server/commands/data/DataCommands/m_139375_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/manipulateData (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139380_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/data/DataCommands/lambda$register$7 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/data/DataCommands/m_139382_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;)I net/minecraft/server/commands/data/DataCommands/getData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139385_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I net/minecraft/server/commands/data/DataCommands/removeData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139389_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;D)I net/minecraft/server/commands/data/DataCommands/getNumeric (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;D)I +MD: net/minecraft/server/commands/data/DataCommands/m_139394_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)I net/minecraft/server/commands/data/DataCommands/mergeData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139398_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/data/DataCommands/getSingleTag (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/data/DataCommands/m_139403_ (Ljava/util/function/BiConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/decorateModification (Ljava/util/function/BiConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139409_ (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/DataCommands/lambda$static$6 (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/DataCommands/m_139411_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$register$15 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139443_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I net/minecraft/server/commands/data/DataCommands/getData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139449_ (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/DataCommands/lambda$static$5 (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/DataCommands/m_139451_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$register$13 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139467_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_139469_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$register$9 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139480_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_139490_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_142797_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$37 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_142800_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$36 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142804_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$25 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_142808_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$24 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_142818_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$14 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142831_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$12 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142839_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$11 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142847_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$10 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142855_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$8 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263154_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263155_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263156_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263157_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263448_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263948_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$26 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_263949_ (Ljava/util/function/BiConsumer;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$38 (Ljava/util/function/BiConsumer;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_263951_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$28 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_263953_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$22 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263955_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$35 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_263957_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$23 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263961_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_264092_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; net/minecraft/server/commands/data/DataCommands/getSingletonSource (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; +MD: net/minecraft/server/commands/data/DataCommands/m_264549_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; net/minecraft/server/commands/data/DataCommands/resolveSourcePath (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; +MD: net/minecraft/server/commands/data/DataCommands/m_264579_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/getAsText (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287040_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$30 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287041_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$34 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_287042_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$32 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287144_ (II)I net/minecraft/server/commands/data/DataCommands/getOffset (II)I +MD: net/minecraft/server/commands/data/DataCommands/m_287230_ (Ljava/lang/String;I)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/substring (Ljava/lang/String;I)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287271_ (Ljava/lang/String;II)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/substring (Ljava/lang/String;II)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_288099_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$27 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288100_ (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$manipulateData$39 (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288101_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$29 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288102_ (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$mergeData$44 (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288103_ (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$removeData$40 (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288104_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$4 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_288105_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$getData$41 (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288106_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$getData$43 (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288107_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$33 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288108_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$31 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288109_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$getNumeric$42 (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288215_ (Ljava/util/List;Lnet/minecraft/server/commands/data/DataCommands$StringProcessor;)Ljava/util/List; net/minecraft/server/commands/data/DataCommands/stringifyTagList (Ljava/util/List;Lnet/minecraft/server/commands/data/DataCommands$StringProcessor;)Ljava/util/List; +MD: net/minecraft/server/commands/data/DataCommands/m_288220_ (Ljava/lang/String;II)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/validatedSubstring (Ljava/lang/String;II)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands$DataManipulator/m_139495_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands$DataManipulator/modify (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator/m_139500_ (Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator/create (Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands$DataProvider/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/DataCommands$DataProvider/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/DataCommands$DataProvider/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands$DataProvider/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands$StringProcessor/m_288227_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands$StringProcessor/process (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/EntityDataAccessor/ ()V net/minecraft/server/commands/data/EntityDataAccessor/ ()V +MD: net/minecraft/server/commands/data/EntityDataAccessor/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/commands/data/EntityDataAccessor/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_139516_ (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/EntityDataAccessor/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/EntityDataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/EntityDataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/EntityDataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/EntityDataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/EntityDataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/EntityDataAccessor$1/ (Ljava/lang/String;)V net/minecraft/server/commands/data/EntityDataAccessor$1/ (Ljava/lang/String;)V +MD: net/minecraft/server/commands/data/EntityDataAccessor$1/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/EntityDataAccessor$1/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/EntityDataAccessor$1/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/EntityDataAccessor$1/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/StorageDataAccessor/ ()V net/minecraft/server/commands/data/StorageDataAccessor/ ()V +MD: net/minecraft/server/commands/data/StorageDataAccessor/ (Lnet/minecraft/world/level/storage/CommandStorage;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/commands/data/StorageDataAccessor/ (Lnet/minecraft/world/level/storage/CommandStorage;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_139546_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/data/StorageDataAccessor/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_139553_ (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/StorageDataAccessor/lambda$static$1 (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_139560_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/world/level/storage/CommandStorage; net/minecraft/server/commands/data/StorageDataAccessor/getGlobalTags (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/world/level/storage/CommandStorage; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/StorageDataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/StorageDataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/StorageDataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/StorageDataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/StorageDataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/StorageDataAccessor$1/ (Ljava/lang/String;)V net/minecraft/server/commands/data/StorageDataAccessor$1/ (Ljava/lang/String;)V +MD: net/minecraft/server/commands/data/StorageDataAccessor$1/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/StorageDataAccessor$1/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/StorageDataAccessor$1/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/StorageDataAccessor$1/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/dedicated/DedicatedPlayerList/ ()V net/minecraft/server/dedicated/DedicatedPlayerList/ ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/ (Lnet/minecraft/server/dedicated/DedicatedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V net/minecraft/server/dedicated/DedicatedPlayerList/ (Lnet/minecraft/server/dedicated/DedicatedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139577_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveOps ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139578_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadWhiteList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139579_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveWhiteList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139593_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveIpBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139594_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveUserBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139595_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadIpBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139596_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadUserBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139597_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadOps ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5749_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/dedicated/DedicatedPlayerList/op (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5750_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/dedicated/DedicatedPlayerList/deop (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5764_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/dedicated/DedicatedPlayerList/isWhiteListed (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5765_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/dedicated/DedicatedPlayerList/canBypassPlayerLimit (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_6628_ (Z)V net/minecraft/server/dedicated/DedicatedPlayerList/setUsingWhiteList (Z)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_7542_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/reloadWhiteList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_7873_ ()Lnet/minecraft/server/dedicated/DedicatedServer; net/minecraft/server/dedicated/DedicatedPlayerList/getServer ()Lnet/minecraft/server/dedicated/DedicatedServer; +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_7873_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/dedicated/DedicatedPlayerList/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/dedicated/DedicatedServer/ ()V net/minecraft/server/dedicated/DedicatedServer/ ()V +MD: net/minecraft/server/dedicated/DedicatedServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V net/minecraft/server/dedicated/DedicatedServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139645_ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/dedicated/DedicatedServer/handleConsoleInput (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139665_ ()V net/minecraft/server/dedicated/DedicatedServer/handleConsoleInputs ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139667_ ()V net/minecraft/server/dedicated/DedicatedServer/showGui ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139668_ ()Z net/minecraft/server/dedicated/DedicatedServer/convertOldUsers ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_139669_ ()J net/minecraft/server/dedicated/DedicatedServer/getMaxTickLength ()J +MD: net/minecraft/server/dedicated/DedicatedServer/m_139671_ ()V net/minecraft/server/dedicated/DedicatedServer/waitForRetry ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139688_ (Z)V net/minecraft/server/dedicated/DedicatedServer/storeUsingWhiteList (Z)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_142116_ (Ljava/nio/file/Path;)V net/minecraft/server/dedicated/DedicatedServer/dumpServerProperties (Ljava/nio/file/Path;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_142359_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/dedicated/DedicatedServer/getForcedGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/dedicated/DedicatedServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/server/dedicated/DedicatedServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/server/dedicated/DedicatedServer/m_142876_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/lambda$fillServerSystemReport$1 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_183306_ ()Z net/minecraft/server/dedicated/DedicatedServer/hidesOnlinePlayers ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_213994_ ()I net/minecraft/server/dedicated/DedicatedServer/getMaxChainedNeighborUpdates ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_214005_ ()Z net/minecraft/server/dedicated/DedicatedServer/enforceSecureProfile ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_214042_ ()Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServer/getServerResourcePack ()Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServer/m_276331_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/lambda$fillServerSystemReport$0 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_276334_ (Ljava/lang/String;)V net/minecraft/server/dedicated/DedicatedServer/lambda$runCommand$3 (Ljava/lang/String;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_278545_ (ZLnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServer/lambda$storeUsingWhiteList$4 (ZLnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServer/m_278546_ (ILnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServer/lambda$setPlayerIdleTimeout$2 (ILnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServer/m_5703_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/dedicated/DedicatedServer/tickChildren (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_6102_ ()Z net/minecraft/server/dedicated/DedicatedServer/shouldInformAdmins ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6328_ ()I net/minecraft/server/dedicated/DedicatedServer/getCompressionThreshold ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_6329_ ()I net/minecraft/server/dedicated/DedicatedServer/getAbsoluteMaxWorldSize ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_6365_ ()Z net/minecraft/server/dedicated/DedicatedServer/forceSynchronousWrites ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6370_ ()Z net/minecraft/server/dedicated/DedicatedServer/hasGui ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6373_ ()Z net/minecraft/server/dedicated/DedicatedServer/repliesToStatus ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6396_ ()I net/minecraft/server/dedicated/DedicatedServer/getSpawnProtectionRadius ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_6846_ ()Lnet/minecraft/server/players/PlayerList; net/minecraft/server/dedicated/DedicatedServer/getPlayerList ()Lnet/minecraft/server/players/PlayerList; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6846_ ()Lnet/minecraft/server/dedicated/DedicatedPlayerList; net/minecraft/server/dedicated/DedicatedServer/getPlayerList ()Lnet/minecraft/server/dedicated/DedicatedPlayerList; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6866_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getServerIp ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6982_ ()Z net/minecraft/server/dedicated/DedicatedServer/isDedicatedServer ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6983_ ()Z net/minecraft/server/dedicated/DedicatedServer/shouldRconBroadcast ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6988_ ()V net/minecraft/server/dedicated/DedicatedServer/onServerExit ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_6992_ ()Z net/minecraft/server/dedicated/DedicatedServer/isPublished ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6993_ ()Z net/minecraft/server/dedicated/DedicatedServer/isCommandBlockEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6994_ ()Z net/minecraft/server/dedicated/DedicatedServer/isEpollEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6995_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getServerName ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6997_ ()Z net/minecraft/server/dedicated/DedicatedServer/areNpcsEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6998_ ()Z net/minecraft/server/dedicated/DedicatedServer/isSpawningAnimals ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7004_ ()Z net/minecraft/server/dedicated/DedicatedServer/isSpawningMonsters ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7022_ ()I net/minecraft/server/dedicated/DedicatedServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7032_ ()I net/minecraft/server/dedicated/DedicatedServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7034_ ()I net/minecraft/server/dedicated/DedicatedServer/getFunctionCompilationLevel ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7035_ ()Z net/minecraft/server/dedicated/DedicatedServer/isHardcore ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7038_ ()Z net/minecraft/server/dedicated/DedicatedServer/initServer ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7041_ ()V net/minecraft/server/dedicated/DedicatedServer/stopServer ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_7044_ ()V net/minecraft/server/dedicated/DedicatedServer/forceDifficulty ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_7079_ ()Z net/minecraft/server/dedicated/DedicatedServer/isNetherEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7123_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getLevelIdName ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7138_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getPluginNames ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7186_ (I)I net/minecraft/server/dedicated/DedicatedServer/getScaledTrackingDistance (I)I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7196_ (I)V net/minecraft/server/dedicated/DedicatedServer/setPlayerIdleTimeout (I)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_7261_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/runCommand (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7448_ ()I net/minecraft/server/dedicated/DedicatedServer/getServerPort ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7762_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/server/dedicated/DedicatedServer/isUnderSpawnProtection (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/dedicated/DedicatedServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7913_ ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServer/getProperties ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7950_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; net/minecraft/server/dedicated/DedicatedServer/createTextFilterForPlayer (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/dedicated/DedicatedServer$1/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V net/minecraft/server/dedicated/DedicatedServer$1/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V +MD: net/minecraft/server/dedicated/DedicatedServer$1/run ()V net/minecraft/server/dedicated/DedicatedServer$1/run ()V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/ ()V net/minecraft/server/dedicated/DedicatedServerProperties/ ()V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/ (Ljava/util/Properties;)V net/minecraft/server/dedicated/DedicatedServerProperties/ (Ljava/util/Properties;)V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_139768_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$1 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_139770_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$0 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_180929_ (Ljava/nio/file/Path;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServerProperties/fromFile (Ljava/nio/file/Path;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_211540_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$3 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_211542_ (Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$2 (Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_214808_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServerProperties/getServerPackInfo (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_214814_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/dedicated/DedicatedServerProperties/parseResourcePackPrompt (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_244875_ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/server/dedicated/DedicatedServerProperties/lambda$getFeatures$4 (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_246391_ (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/dedicated/DedicatedServerProperties/getFeatures (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_246483_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/server/dedicated/DedicatedServerProperties/createDimensions (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_247013_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/DataPackConfig; net/minecraft/server/dedicated/DedicatedServerProperties/getDatapackConfig (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/DataPackConfig; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_6764_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServerProperties/reload (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_6764_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; net/minecraft/server/dedicated/DedicatedServerProperties/reload (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ ()V net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ ()V +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ (Lcom/google/gson/JsonObject;Ljava/lang/String;)V net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ (Lcom/google/gson/JsonObject;Ljava/lang/String;)V +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/equals (Ljava/lang/Object;)Z net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_243780_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/levelType ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_244404_ ()Lcom/google/gson/JsonObject; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/generatorSettings ()Lcom/google/gson/JsonObject; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/hashCode ()I net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/hashCode ()I +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_245481_ ()Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$3 ()Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_245759_ ()Ljava/lang/IllegalStateException; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_247373_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/create (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_247595_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$4 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_257147_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_257148_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$0 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/toString ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/toString ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServerSettings/ (Ljava/nio/file/Path;)V net/minecraft/server/dedicated/DedicatedServerSettings/ (Ljava/nio/file/Path;)V +MD: net/minecraft/server/dedicated/DedicatedServerSettings/m_139777_ ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServerSettings/getProperties ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServerSettings/m_139778_ (Ljava/util/function/UnaryOperator;)Lnet/minecraft/server/dedicated/DedicatedServerSettings; net/minecraft/server/dedicated/DedicatedServerSettings/update (Ljava/util/function/UnaryOperator;)Lnet/minecraft/server/dedicated/DedicatedServerSettings; +MD: net/minecraft/server/dedicated/DedicatedServerSettings/m_139780_ ()V net/minecraft/server/dedicated/DedicatedServerSettings/forceSave ()V +MD: net/minecraft/server/dedicated/ServerWatchdog/ ()V net/minecraft/server/dedicated/ServerWatchdog/ ()V +MD: net/minecraft/server/dedicated/ServerWatchdog/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/dedicated/ServerWatchdog/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/dedicated/ServerWatchdog/m_139787_ ()V net/minecraft/server/dedicated/ServerWatchdog/exit ()V +MD: net/minecraft/server/dedicated/ServerWatchdog/m_276335_ ()Ljava/lang/String; net/minecraft/server/dedicated/ServerWatchdog/lambda$run$2 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/ServerWatchdog/m_278547_ ()Ljava/lang/String; net/minecraft/server/dedicated/ServerWatchdog/lambda$run$0 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/ServerWatchdog/m_288110_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; net/minecraft/server/dedicated/ServerWatchdog/lambda$run$1 (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/ServerWatchdog/run ()V net/minecraft/server/dedicated/ServerWatchdog/run ()V +MD: net/minecraft/server/dedicated/ServerWatchdog$1/ (Lnet/minecraft/server/dedicated/ServerWatchdog;)V net/minecraft/server/dedicated/ServerWatchdog$1/ (Lnet/minecraft/server/dedicated/ServerWatchdog;)V +MD: net/minecraft/server/dedicated/ServerWatchdog$1/run ()V net/minecraft/server/dedicated/ServerWatchdog$1/run ()V +MD: net/minecraft/server/dedicated/Settings/ ()V net/minecraft/server/dedicated/Settings/ ()V +MD: net/minecraft/server/dedicated/Settings/ (Ljava/util/Properties;)V net/minecraft/server/dedicated/Settings/ (Ljava/util/Properties;)V +MD: net/minecraft/server/dedicated/Settings/m_139802_ ()Ljava/util/Properties; net/minecraft/server/dedicated/Settings/cloneProperties ()Ljava/util/Properties; +MD: net/minecraft/server/dedicated/Settings/m_139803_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/Settings/getLegacyString (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/Settings/m_139805_ (Ljava/lang/String;I)I net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;I)I +MD: net/minecraft/server/dedicated/Settings/m_139808_ (Ljava/lang/String;J)J net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;J)J +MD: net/minecraft/server/dedicated/Settings/m_139811_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/Settings/m_139814_ (Ljava/lang/String;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/getLegacy (Ljava/lang/String;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139817_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139821_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139826_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139832_ (Ljava/lang/String;Ljava/util/function/UnaryOperator;I)I net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/UnaryOperator;I)I +MD: net/minecraft/server/dedicated/Settings/m_139836_ (Ljava/lang/String;Z)Z net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Z)Z +MD: net/minecraft/server/dedicated/Settings/m_139839_ (Ljava/nio/file/Path;)Ljava/util/Properties; net/minecraft/server/dedicated/Settings/loadFromFile (Ljava/nio/file/Path;)Ljava/util/Properties; +MD: net/minecraft/server/dedicated/Settings/m_139841_ (Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/server/dedicated/Settings/wrapNumberDeserializer (Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/server/dedicated/Settings/m_139843_ (Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Number; net/minecraft/server/dedicated/Settings/lambda$wrapNumberDeserializer$0 (Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Number; +MD: net/minecraft/server/dedicated/Settings/m_139846_ (Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/lambda$get$2 (Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139850_ (Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/server/dedicated/Settings/dispatchNumberOrString (Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/server/dedicated/Settings/m_139853_ (Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/lambda$dispatchNumberOrString$1 (Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139859_ (Ljava/lang/String;)Ljava/lang/Boolean; net/minecraft/server/dedicated/Settings/getLegacyBoolean (Ljava/lang/String;)Ljava/lang/Boolean; +MD: net/minecraft/server/dedicated/Settings/m_139861_ (Ljava/lang/String;I)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;I)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139864_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139868_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139873_ (Ljava/lang/String;Z)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;Z)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139876_ (Ljava/nio/file/Path;)V net/minecraft/server/dedicated/Settings/store (Ljava/nio/file/Path;)V +MD: net/minecraft/server/dedicated/Settings/m_139878_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/Settings/getStringRaw (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/Settings/m_6764_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; net/minecraft/server/dedicated/Settings/reload (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; +MD: net/minecraft/server/dedicated/Settings$MutableValue/ (Lnet/minecraft/server/dedicated/Settings;Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;)V net/minecraft/server/dedicated/Settings$MutableValue/ (Lnet/minecraft/server/dedicated/Settings;Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;)V +MD: net/minecraft/server/dedicated/Settings$MutableValue/get ()Ljava/lang/Object; net/minecraft/server/dedicated/Settings$MutableValue/get ()Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings$MutableValue/m_139895_ (Lnet/minecraft/core/RegistryAccess;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings; net/minecraft/server/dedicated/Settings$MutableValue/update (Lnet/minecraft/core/RegistryAccess;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings; +MD: net/minecraft/server/gui/MinecraftServerGui/ ()V net/minecraft/server/gui/MinecraftServerGui/ ()V +MD: net/minecraft/server/gui/MinecraftServerGui/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/gui/MinecraftServerGui/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139908_ ()V net/minecraft/server/gui/MinecraftServerGui/start ()V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139909_ (Ljava/lang/Runnable;)V net/minecraft/server/gui/MinecraftServerGui/addFinalizer (Ljava/lang/Runnable;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139911_ (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V net/minecraft/server/gui/MinecraftServerGui/lambda$buildChatPanel$1 (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139914_ (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V net/minecraft/server/gui/MinecraftServerGui/print (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139921_ (Lnet/minecraft/server/dedicated/DedicatedServer;)Lnet/minecraft/server/gui/MinecraftServerGui; net/minecraft/server/gui/MinecraftServerGui/showFrameFor (Lnet/minecraft/server/dedicated/DedicatedServer;)Lnet/minecraft/server/gui/MinecraftServerGui; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139925_ ()V net/minecraft/server/gui/MinecraftServerGui/close ()V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139926_ (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V net/minecraft/server/gui/MinecraftServerGui/lambda$print$2 (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139932_ ()Ljavax/swing/JComponent; net/minecraft/server/gui/MinecraftServerGui/buildInfoPanel ()Ljavax/swing/JComponent; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139933_ ()Ljavax/swing/JComponent; net/minecraft/server/gui/MinecraftServerGui/buildPlayerPanel ()Ljavax/swing/JComponent; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139934_ ()Ljavax/swing/JComponent; net/minecraft/server/gui/MinecraftServerGui/buildChatPanel ()Ljavax/swing/JComponent; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139935_ ()V net/minecraft/server/gui/MinecraftServerGui/runFinalizers ()V +MD: net/minecraft/server/gui/MinecraftServerGui/m_276337_ (Ljavax/swing/JTextField;Ljava/awt/event/ActionEvent;)V net/minecraft/server/gui/MinecraftServerGui/lambda$buildChatPanel$0 (Ljavax/swing/JTextField;Ljava/awt/event/ActionEvent;)V +MD: net/minecraft/server/gui/MinecraftServerGui$1/ (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JFrame;Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/gui/MinecraftServerGui$1/ (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JFrame;Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/gui/MinecraftServerGui$1/windowClosing (Ljava/awt/event/WindowEvent;)V net/minecraft/server/gui/MinecraftServerGui$1/windowClosing (Ljava/awt/event/WindowEvent;)V +MD: net/minecraft/server/gui/MinecraftServerGui$2/ (Lnet/minecraft/server/gui/MinecraftServerGui;)V net/minecraft/server/gui/MinecraftServerGui$2/ (Lnet/minecraft/server/gui/MinecraftServerGui;)V +MD: net/minecraft/server/gui/MinecraftServerGui$2/focusGained (Ljava/awt/event/FocusEvent;)V net/minecraft/server/gui/MinecraftServerGui$2/focusGained (Ljava/awt/event/FocusEvent;)V +MD: net/minecraft/server/gui/PlayerListComponent/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/gui/PlayerListComponent/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/gui/PlayerListComponent/m_139954_ ()V net/minecraft/server/gui/PlayerListComponent/tick ()V +MD: net/minecraft/server/gui/StatsComponent/ ()V net/minecraft/server/gui/StatsComponent/ ()V +MD: net/minecraft/server/gui/StatsComponent/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/gui/StatsComponent/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/gui/StatsComponent/m_139964_ ()V net/minecraft/server/gui/StatsComponent/close ()V +MD: net/minecraft/server/gui/StatsComponent/m_139965_ (Ljava/awt/event/ActionEvent;)V net/minecraft/server/gui/StatsComponent/lambda$new$1 (Ljava/awt/event/ActionEvent;)V +MD: net/minecraft/server/gui/StatsComponent/m_139967_ (Ljava/text/DecimalFormat;)V net/minecraft/server/gui/StatsComponent/lambda$static$0 (Ljava/text/DecimalFormat;)V +MD: net/minecraft/server/gui/StatsComponent/m_139969_ ([J)D net/minecraft/server/gui/StatsComponent/getAverage ([J)D +MD: net/minecraft/server/gui/StatsComponent/m_139971_ ()V net/minecraft/server/gui/StatsComponent/tick ()V +MD: net/minecraft/server/gui/StatsComponent/paint (Ljava/awt/Graphics;)V net/minecraft/server/gui/StatsComponent/paint (Ljava/awt/Graphics;)V +MD: net/minecraft/server/level/BlockDestructionProgress/ (ILnet/minecraft/core/BlockPos;)V net/minecraft/server/level/BlockDestructionProgress/ (ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/BlockDestructionProgress/compareTo (Ljava/lang/Object;)I net/minecraft/server/level/BlockDestructionProgress/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/server/level/BlockDestructionProgress/compareTo (Lnet/minecraft/server/level/BlockDestructionProgress;)I net/minecraft/server/level/BlockDestructionProgress/compareTo (Lnet/minecraft/server/level/BlockDestructionProgress;)I +MD: net/minecraft/server/level/BlockDestructionProgress/equals (Ljava/lang/Object;)Z net/minecraft/server/level/BlockDestructionProgress/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/BlockDestructionProgress/hashCode ()I net/minecraft/server/level/BlockDestructionProgress/hashCode ()I +MD: net/minecraft/server/level/BlockDestructionProgress/m_139981_ (I)V net/minecraft/server/level/BlockDestructionProgress/setProgress (I)V +MD: net/minecraft/server/level/BlockDestructionProgress/m_139985_ ()Lnet/minecraft/core/BlockPos; net/minecraft/server/level/BlockDestructionProgress/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/BlockDestructionProgress/m_139986_ (I)V net/minecraft/server/level/BlockDestructionProgress/updateTick (I)V +MD: net/minecraft/server/level/BlockDestructionProgress/m_139988_ ()I net/minecraft/server/level/BlockDestructionProgress/getProgress ()I +MD: net/minecraft/server/level/BlockDestructionProgress/m_139991_ ()I net/minecraft/server/level/BlockDestructionProgress/getUpdatedRenderTick ()I +MD: net/minecraft/server/level/BlockDestructionProgress/m_142980_ ()I net/minecraft/server/level/BlockDestructionProgress/getId ()I +MD: net/minecraft/server/level/ChunkHolder/ ()V net/minecraft/server/level/ChunkHolder/ ()V +MD: net/minecraft/server/level/ChunkHolder/ (Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/server/level/ChunkHolder$LevelChangeListener;Lnet/minecraft/server/level/ChunkHolder$PlayerProvider;)V net/minecraft/server/level/ChunkHolder/ (Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/server/level/ChunkHolder$LevelChangeListener;Lnet/minecraft/server/level/ChunkHolder$PlayerProvider;)V +MD: net/minecraft/server/level/ChunkHolder/m_140026_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getTickingChunkFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140027_ (I)V net/minecraft/server/level/ChunkHolder/setTicketLevel (I)V +MD: net/minecraft/server/level/ChunkHolder/m_140036_ (Lnet/minecraft/world/level/LightLayer;I)V net/minecraft/server/level/ChunkHolder/sectionLightChanged (Lnet/minecraft/world/level/LightLayer;I)V +MD: net/minecraft/server/level/ChunkHolder/m_140047_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getFutureIfPresentUnchecked (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140049_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ChunkMap;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getOrScheduleFuture (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ChunkMap;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140052_ (Lnet/minecraft/world/level/chunk/ImposterProtoChunk;)V net/minecraft/server/level/ChunkHolder/replaceProtoChunk (Lnet/minecraft/world/level/chunk/ImposterProtoChunk;)V +MD: net/minecraft/server/level/ChunkHolder/m_140054_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkHolder/broadcastChanges (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkHolder/m_140056_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ChunkHolder/blockChanged (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ChunkHolder/m_140060_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkHolder/lambda$broadcast$1 (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkHolder/m_140073_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getEntityTickingChunkFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140080_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getFutureIfPresent (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140082_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getFullChunkFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140085_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkHolder/getTickingChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkHolder/m_140086_ (I)V net/minecraft/server/level/ChunkHolder/setQueueLevel (I)V +MD: net/minecraft/server/level/ChunkHolder/m_140088_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkHolder/getLastAvailableStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkHolder/m_140089_ ()Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/getLastAvailable ()Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_140090_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getChunkToSave ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140092_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/server/level/ChunkHolder/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/server/level/ChunkHolder/m_140093_ ()I net/minecraft/server/level/ChunkHolder/getTicketLevel ()I +MD: net/minecraft/server/level/ChunkHolder/m_140094_ ()I net/minecraft/server/level/ChunkHolder/getQueueLevel ()I +MD: net/minecraft/server/level/ChunkHolder/m_140095_ ()Z net/minecraft/server/level/ChunkHolder/wasAccessibleSinceLastSave ()Z +MD: net/minecraft/server/level/ChunkHolder/m_140096_ ()V net/minecraft/server/level/ChunkHolder/refreshAccessibility ()V +MD: net/minecraft/server/level/ChunkHolder/m_142998_ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkHolder/scheduleFullChunkPromotion (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkHolder/m_143003_ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/ChunkHolder/updateFutures (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/ChunkHolder/m_143017_ (Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V net/minecraft/server/level/ChunkHolder/updateChunkToSave (Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V +MD: net/minecraft/server/level/ChunkHolder/m_200405_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$updateChunkToSave$3 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200407_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$updateChunkToSave$4 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200410_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$updateChunkToSave$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200413_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Object;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$addSaveDependency$2 (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Object;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200416_ (Ljava/lang/String;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/level/ChunkHolder/addSaveDependency (Ljava/lang/String;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/level/ChunkHolder/m_200419_ (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/ChunkHolder/lambda$scheduleFullChunkPromotion$8 (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/ChunkHolder/m_200422_ (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkHolder/lambda$scheduleFullChunkPromotion$7 (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkHolder/m_202980_ ()Ljava/util/List; net/minecraft/server/level/ChunkHolder/getAllFutures ()Ljava/util/List; +MD: net/minecraft/server/level/ChunkHolder/m_212234_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkHolder/getFullChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkHolder/m_287043_ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkHolder/lambda$scheduleFullChunkPromotion$6 (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkHolder/m_287189_ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkHolder/demoteFullChunk (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkHolder/m_287213_ ()Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/ChunkHolder/getFullStatus ()Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/ChunkHolder/m_288111_ (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ChunkHolder/lambda$broadcastChanges$0 (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ChunkHolder/m_288202_ (Ljava/util/List;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkHolder/broadcast (Ljava/util/List;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkHolder/m_288223_ (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ChunkHolder/broadcastBlockEntity (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ChunkHolder/m_288224_ (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ChunkHolder/broadcastBlockEntityIfNeeded (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ChunkHolder$1/ (Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ChunkHolder$1/ (Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ChunkHolder$1/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkHolder$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/ ()V net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/ ()V +MD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/ ()V net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/ ()V +MD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/ (Ljava/lang/Thread;Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/ (Ljava/lang/Thread;Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V +MD: net/minecraft/server/level/ChunkHolder$LevelChangeListener/m_6250_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V net/minecraft/server/level/ChunkHolder$LevelChangeListener/onLevelChange (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V +MD: net/minecraft/server/level/ChunkHolder$PlayerProvider/m_183262_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; net/minecraft/server/level/ChunkHolder$PlayerProvider/getPlayers (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; +MD: net/minecraft/server/level/ChunkLevel/ ()V net/minecraft/server/level/ChunkLevel/ ()V +MD: net/minecraft/server/level/ChunkLevel/ ()V net/minecraft/server/level/ChunkLevel/ ()V +MD: net/minecraft/server/level/ChunkLevel/m_287141_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)I net/minecraft/server/level/ChunkLevel/byStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;)I +MD: net/minecraft/server/level/ChunkLevel/m_287154_ (Lnet/minecraft/server/level/FullChunkStatus;)I net/minecraft/server/level/ChunkLevel/byStatus (Lnet/minecraft/server/level/FullChunkStatus;)I +MD: net/minecraft/server/level/ChunkLevel/m_287155_ (I)Z net/minecraft/server/level/ChunkLevel/isEntityTicking (I)Z +MD: net/minecraft/server/level/ChunkLevel/m_287158_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkLevel/generationStatus (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkLevel/m_287217_ (I)Z net/minecraft/server/level/ChunkLevel/isLoaded (I)Z +MD: net/minecraft/server/level/ChunkLevel/m_287264_ (I)Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/ChunkLevel/fullStatus (I)Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/ChunkLevel/m_287283_ (I)Z net/minecraft/server/level/ChunkLevel/isBlockTicking (I)Z +MD: net/minecraft/server/level/ChunkLevel$1/ ()V net/minecraft/server/level/ChunkLevel$1/ ()V +MD: net/minecraft/server/level/ChunkMap/ ()V net/minecraft/server/level/ChunkMap/ ()V +MD: net/minecraft/server/level/ChunkMap/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/util/thread/BlockableEventLoop;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;IZ)V net/minecraft/server/level/ChunkMap/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/util/thread/BlockableEventLoop;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;IZ)V +MD: net/minecraft/server/level/ChunkMap/close ()V net/minecraft/server/level/ChunkMap/close ()V +MD: net/minecraft/server/level/ChunkMap/m_140166_ ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; net/minecraft/server/level/ChunkMap/getLightEngine ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; +MD: net/minecraft/server/level/ChunkMap/m_140167_ (I)V net/minecraft/server/level/ChunkMap/setViewDistance (I)V +MD: net/minecraft/server/level/ChunkMap/m_140174_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap/getUpdatingChunkIfPresent (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap/m_140176_ (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap/updateChunkScheduling (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap/m_140181_ (JLnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ChunkMap/scheduleUnload (JLnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ChunkMap/m_140184_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap/move (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap/m_140192_ (Lnet/minecraft/server/level/ServerPlayer;Z)V net/minecraft/server/level/ChunkMap/updatePlayerStatus (Lnet/minecraft/server/level/ServerPlayer;Z)V +MD: net/minecraft/server/level/ChunkMap/m_140199_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ChunkMap/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ChunkMap/m_140201_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap/broadcast (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkMap/m_140204_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/getChunkDebugData (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_140226_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/Entity;)D net/minecraft/server/level/ChunkMap/euclideanDistanceSquared (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/server/level/ChunkMap/m_140229_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;)B net/minecraft/server/level/ChunkMap/markPosition (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;)B +MD: net/minecraft/server/level/ChunkMap/m_140258_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/server/level/ChunkMap/save (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/server/level/ChunkMap/m_140262_ (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/getDependencyStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_140274_ (Ljava/io/Writer;)V net/minecraft/server/level/ChunkMap/dumpChunks (Ljava/io/Writer;)V +MD: net/minecraft/server/level/ChunkMap/m_140278_ (Ljava/util/concurrent/CompletableFuture;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/printFuture (Ljava/util/concurrent/CompletableFuture;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_140280_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/level/ChunkMap/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/level/ChunkMap/m_140292_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/schedule (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140318_ (Z)V net/minecraft/server/level/ChunkMap/saveAllChunks (Z)V +MD: net/minecraft/server/level/ChunkMap/m_140324_ ()Z net/minecraft/server/level/ChunkMap/promoteChunkMap ()Z +MD: net/minecraft/server/level/ChunkMap/m_140327_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap/getVisibleChunkIfPresent (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap/m_140329_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/ChunkMap/skipPlayer (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/ChunkMap/m_140331_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ChunkMap/removeEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ChunkMap/m_140333_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap/broadcastAndSend (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkMap/m_140353_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/level/ChunkMap/processUnloads (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/level/ChunkMap/m_140360_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/scheduleChunkGeneration (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140368_ ()I net/minecraft/server/level/ChunkMap/getTickingGenerated ()I +MD: net/minecraft/server/level/ChunkMap/m_140371_ (J)Ljava/util/function/IntSupplier; net/minecraft/server/level/ChunkMap/getChunkQueueLevel (J)Ljava/util/function/IntSupplier; +MD: net/minecraft/server/level/ChunkMap/m_140373_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/core/SectionPos; net/minecraft/server/level/ChunkMap/updatePlayerPos (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/server/level/ChunkMap/m_140375_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap/releaseLightTicket (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap/m_140383_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/protoChunkToFullChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140394_ ()I net/minecraft/server/level/ChunkMap/size ()I +MD: net/minecraft/server/level/ChunkMap/m_140416_ ()Ljava/lang/Iterable; net/minecraft/server/level/ChunkMap/getChunks ()Ljava/lang/Iterable; +MD: net/minecraft/server/level/ChunkMap/m_140417_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/scheduleChunkLoad (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140421_ ()V net/minecraft/server/level/ChunkMap/tick ()V +MD: net/minecraft/server/level/ChunkMap/m_140422_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap/markPositionReplaceable (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap/m_140424_ ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; net/minecraft/server/level/ChunkMap/getPoiManager ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +MD: net/minecraft/server/level/ChunkMap/m_140425_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ChunkMap/isExistingChunkFull (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ChunkMap/m_143053_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/prepareTickingChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_143064_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;)V net/minecraft/server/level/ChunkMap/postLoadProtoChunk (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap/m_143109_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/prepareAccessibleChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_143145_ ()Lnet/minecraft/server/level/DistanceManager; net/minecraft/server/level/ChunkMap/getDistanceManager ()Lnet/minecraft/server/level/DistanceManager; +MD: net/minecraft/server/level/ChunkMap/m_182285_ ()Ljava/lang/String; net/minecraft/server/level/ChunkMap/getStorageName ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_183262_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; net/minecraft/server/level/ChunkMap/getPlayers (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; +MD: net/minecraft/server/level/ChunkMap/m_183719_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/server/level/ChunkMap/generator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/server/level/ChunkMap/m_183726_ (IIILjava/util/List;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$getChunkRangeFuture$4 (IIILjava/util/List;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_183751_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ChunkMap/playerIsCloseEnoughForSpawning (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ChunkMap/m_183754_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;Lorg/apache/commons/lang3/mutable/MutableObject;ZZ)V net/minecraft/server/level/ChunkMap/updateChunkTracking (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;Lorg/apache/commons/lang3/mutable/MutableObject;ZZ)V +MD: net/minecraft/server/level/ChunkMap/m_183760_ (Lnet/minecraft/server/level/ServerPlayer;Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/playerLoadedChunk (Lnet/minecraft/server/level/ServerPlayer;Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_183803_ (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; net/minecraft/server/level/ChunkMap/lambda$debugReloadGenerator$0 (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/server/level/ChunkMap/m_183807_ (Lnet/minecraft/world/level/chunk/ChunkGenerator;)V net/minecraft/server/level/ChunkMap/lambda$debugReloadGenerator$1 (Lnet/minecraft/world/level/chunk/ChunkGenerator;)V +MD: net/minecraft/server/level/ChunkMap/m_183825_ ()V net/minecraft/server/level/ChunkMap/debugReloadGenerator ()V +MD: net/minecraft/server/level/ChunkMap/m_183828_ (IIIII)Z net/minecraft/server/level/ChunkMap/isChunkOnRangeBorder (IIIII)Z +MD: net/minecraft/server/level/ChunkMap/m_183872_ (J)I net/minecraft/server/level/ChunkMap/lambda$getChunkQueueLevel$2 (J)I +MD: net/minecraft/server/level/ChunkMap/m_183879_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ChunkMap/anyPlayerCloseEnoughForSpawning (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ChunkMap/m_183888_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; net/minecraft/server/level/ChunkMap/getPlayersCloseForSpawning (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; +MD: net/minecraft/server/level/ChunkMap/m_198874_ (Lnet/minecraft/server/level/ChunkHolder;)Z net/minecraft/server/level/ChunkMap/saveChunkIfNeeded (Lnet/minecraft/server/level/ChunkHolder;)Z +MD: net/minecraft/server/level/ChunkMap/m_200878_ (IIIII)Z net/minecraft/server/level/ChunkMap/isChunkInRange (IIIII)Z +MD: net/minecraft/server/level/ChunkMap/m_201907_ ()Z net/minecraft/server/level/ChunkMap/hasWork ()Z +MD: net/minecraft/server/level/ChunkMap/m_202994_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Void;Ljava/lang/Throwable;)V net/minecraft/server/level/ChunkMap/lambda$scheduleUnload$15 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Void;Ljava/lang/Throwable;)V +MD: net/minecraft/server/level/ChunkMap/m_202998_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ChunkMap/lambda$scheduleUnload$14 (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ChunkMap/m_203049_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$12 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ChunkMap/m_203077_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/lambda$prepareEntityTickingChunk$7 (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_203079_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$schedule$16 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_203085_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareAccessibleChunk$49 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_203087_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$11 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/server/level/ChunkMap/m_203091_ (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkMap/lambda$prepareEntityTickingChunk$8 (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkMap/m_203101_ (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$10 (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkMap/m_203109_ ()Z net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$13 ()Z +MD: net/minecraft/server/level/ChunkMap/m_203751_ (Ljava/lang/IllegalStateException;Ljava/lang/String;)Lnet/minecraft/ReportedException; net/minecraft/server/level/ChunkMap/debugFuturesAndCreateReportedException (Ljava/lang/IllegalStateException;Ljava/lang/String;)Lnet/minecraft/ReportedException; +MD: net/minecraft/server/level/ChunkMap/m_203754_ (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ChunkMap/lambda$debugFuturesAndCreateReportedException$6 (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ChunkMap/m_203757_ (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/server/level/ChunkMap/lambda$debugFuturesAndCreateReportedException$5 (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/server/level/ChunkMap/m_212877_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareEntityTickingChunk$9 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214849_ (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$printFuture$57 (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_214854_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$34 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkMap/m_214857_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$prepareAccessibleChunk$50 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214860_ (Lnet/minecraft/world/level/ChunkPos;ILorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap/lambda$setViewDistance$51 (Lnet/minecraft/world/level/ChunkPos;ILorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap/m_214865_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$28 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_214868_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$29 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/level/ChunkMap/m_214880_ (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$46 (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/ChunkMap/m_214886_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$20 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214892_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$getChunkRangeFuture$3 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214896_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$printFuture$56 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_214898_ (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$32 (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_214901_ (Ljava/lang/Throwable;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/handleChunkLoadFailure (Ljava/lang/Throwable;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214904_ (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkMap/lambda$prepareAccessibleChunk$48 (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkMap/m_214906_ (Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/server/level/ChunkMap/lambda$readChunk$58 (Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/server/level/ChunkMap/m_214908_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$44 (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap/m_214912_ (Lnet/minecraft/CrashReport;)V net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$26 (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/server/level/ChunkMap/m_214914_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/server/level/ChunkMap/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/server/level/ChunkMap/m_214915_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$37 (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_214917_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$24 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_214920_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$47 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214923_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$18 (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/server/level/ChunkMap/m_214926_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$17 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/server/level/ChunkMap/m_214929_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$42 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214931_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/Optional; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$52 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/Optional; +MD: net/minecraft/server/level/ChunkMap/m_214933_ (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$21 (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_214936_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$55 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; +MD: net/minecraft/server/level/ChunkMap/m_214938_ (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$38 (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkMap/m_214940_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/server/level/ChunkMap/isChunkDataValid (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/server/level/ChunkMap/m_214942_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$40 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214945_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$54 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; +MD: net/minecraft/server/level/ChunkMap/m_214947_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/level/ChunkMap/upgradeChunkTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/level/ChunkMap/m_214949_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$36 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214952_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$53 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; +MD: net/minecraft/server/level/ChunkMap/m_214956_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$23 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214959_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$41 (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_214961_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkMap/createEmptyChunk (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkMap/m_214963_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/readChunk (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_214965_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$releaseLightTicket$31 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_255435_ ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/server/level/ChunkMap/generatorState ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/server/level/ChunkMap/m_274108_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/List; net/minecraft/server/level/ChunkMap/lambda$resendBiomesForChunks$59 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/List; +MD: net/minecraft/server/level/ChunkMap/m_274109_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V net/minecraft/server/level/ChunkMap/lambda$resendBiomesForChunks$60 (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap/m_274524_ (Ljava/util/List;)V net/minecraft/server/level/ChunkMap/resendBiomesForChunks (Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap/m_279889_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$39 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_279890_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$25 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_279891_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$27 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_280208_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/prepareEntityTickingChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_280541_ (Lnet/minecraft/server/level/ChunkHolder;ILjava/util/function/IntFunction;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/getChunkRangeFuture (Lnet/minecraft/server/level/ChunkHolder;ILjava/util/function/IntFunction;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_287044_ (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$35 (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_287045_ (Lcom/mojang/datafixers/util/Either;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$43 (Lcom/mojang/datafixers/util/Either;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/server/level/ChunkMap/m_287046_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap/lambda$releaseLightTicket$30 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap/m_287047_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$45 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_287048_ (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$33 (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_287285_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkMap/onFullChunkStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkMap/m_288112_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$19 (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_289595_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$22 (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap$1/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap$1/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap$1/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkMap$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap$2/ (Lnet/minecraft/server/level/ChunkMap;IIIILcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/ChunkMap$2/ (Lnet/minecraft/server/level/ChunkMap;IIIILcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/ChunkMap$2/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkMap$2/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap$DistanceManager/ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/ChunkMap$DistanceManager/ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/ChunkMap$DistanceManager/m_7009_ (J)Z net/minecraft/server/level/ChunkMap$DistanceManager/isChunkToRemove (J)Z +MD: net/minecraft/server/level/ChunkMap$DistanceManager/m_7288_ (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap$DistanceManager/updateChunkScheduling (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap$DistanceManager/m_7316_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap$DistanceManager/getChunk (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/entity/Entity;IIZ)V net/minecraft/server/level/ChunkMap$TrackedEntity/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/entity/Entity;IIZ)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/equals (Ljava/lang/Object;)Z net/minecraft/server/level/ChunkMap$TrackedEntity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/hashCode ()I net/minecraft/server/level/ChunkMap$TrackedEntity/hashCode ()I +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140482_ ()V net/minecraft/server/level/ChunkMap$TrackedEntity/broadcastRemoved ()V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140483_ (I)I net/minecraft/server/level/ChunkMap$TrackedEntity/scaledRange (I)I +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140485_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap$TrackedEntity/removePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140487_ (Ljava/util/List;)V net/minecraft/server/level/ChunkMap$TrackedEntity/updatePlayers (Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140489_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap$TrackedEntity/broadcast (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140496_ ()I net/minecraft/server/level/ChunkMap$TrackedEntity/getEffectiveRange ()I +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140497_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap$TrackedEntity/updatePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140499_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap$TrackedEntity/broadcastAndSend (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/ ()V net/minecraft/server/level/ChunkTaskPriorityQueue/ ()V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/ (Ljava/lang/String;I)V net/minecraft/server/level/ChunkTaskPriorityQueue/ (Ljava/lang/String;I)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140518_ ()Ljava/util/stream/Stream; net/minecraft/server/level/ChunkTaskPriorityQueue/pop ()Ljava/util/stream/Stream; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140519_ (I)Lit/unimi/dsi/fastutil/longs/Long2ObjectLinkedOpenHashMap; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$new$0 (I)Lit/unimi/dsi/fastutil/longs/Long2ObjectLinkedOpenHashMap; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140521_ (ILnet/minecraft/world/level/ChunkPos;I)V net/minecraft/server/level/ChunkTaskPriorityQueue/resortChunkTasks (ILnet/minecraft/world/level/ChunkPos;I)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140525_ (J)Ljava/lang/Runnable; net/minecraft/server/level/ChunkTaskPriorityQueue/acquire (J)Ljava/lang/Runnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140527_ (JLjava/util/Optional;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$pop$6 (JLjava/util/Optional;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140530_ (JZ)V net/minecraft/server/level/ChunkTaskPriorityQueue/release (JZ)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140533_ (Ljava/util/Optional;)Z net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$release$3 (Ljava/util/Optional;)Z +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140535_ (Ljava/util/Optional;JI)V net/minecraft/server/level/ChunkTaskPriorityQueue/submit (Ljava/util/Optional;JI)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140539_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/server/level/ChunkTaskPriorityQueue/getAcquired ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140542_ (J)V net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$acquire$4 (J)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140544_ (J)Ljava/util/List; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$submit$2 (J)Ljava/util/List; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140546_ (J)Ljava/util/List; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$resortChunkTasks$1 (J)Ljava/util/List; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_143149_ (J)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$pop$5 (J)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_201908_ ()Z net/minecraft/server/level/ChunkTaskPriorityQueue/hasWork ()Z +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueue/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ ()V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ ()V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ (Ljava/util/List;Ljava/util/concurrent/Executor;I)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ (Ljava/util/List;Ljava/util/concurrent/Executor;I)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/close ()V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/close ()V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140558_ ()Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getDebugStatus ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140559_ (ILnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$new$0 (ILnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140567_ (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/ProcessorHandle; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getReleaseProcessor (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/ProcessorHandle; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140569_ (Lnet/minecraft/util/thread/ProcessorHandle;JLjava/lang/Runnable;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/release (Lnet/minecraft/util/thread/ProcessorHandle;JLjava/lang/Runnable;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140574_ (Lnet/minecraft/util/thread/ProcessorHandle;JZLjava/lang/Runnable;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$release$11 (Lnet/minecraft/util/thread/ProcessorHandle;JZLjava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140579_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getReleaseProcessor$8 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140589_ (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Function;JLjava/util/function/IntSupplier;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/submit (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Function;JLjava/util/function/IntSupplier;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140595_ (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/IntSupplier;JLjava/util/function/Function;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$submit$12 (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/IntSupplier;JLjava/util/function/Function;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140604_ (Lnet/minecraft/util/thread/ProcessorHandle;Z)Lnet/minecraft/util/thread/ProcessorHandle; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getProcessor (Lnet/minecraft/util/thread/ProcessorHandle;Z)Lnet/minecraft/util/thread/ProcessorHandle; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140607_ (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getProcessor$5 (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140624_ (Ljava/lang/Runnable;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Ljava/lang/Runnable;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140628_ (Ljava/lang/Runnable;JZ)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/release (Ljava/lang/Runnable;JZ)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140632_ (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)Ljava/lang/Runnable; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$message$2 (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)Ljava/lang/Runnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140637_ (Ljava/util/function/IntSupplier;Lnet/minecraft/world/level/ChunkPos;ILjava/util/function/IntConsumer;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$onLevelChange$10 (Ljava/util/function/IntSupplier;Lnet/minecraft/world/level/ChunkPos;ILjava/util/function/IntConsumer;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140642_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140645_ (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/pollTask (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140652_ (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getQueue (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143151_ (ILnet/minecraft/world/level/ChunkPos;ILnet/minecraft/server/level/ChunkTaskPriorityQueue;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$onLevelChange$9 (ILnet/minecraft/world/level/ChunkPos;ILnet/minecraft/server/level/ChunkTaskPriorityQueue;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143156_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/function/Function;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/function/Function;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143163_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getReleaseProcessor$6 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143166_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getProcessor$4 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143170_ (Lnet/minecraft/util/thread/ProcessorHandle;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$14 (Lnet/minecraft/util/thread/ProcessorHandle;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143173_ (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getProcessor$3 (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143179_ (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$13 (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143181_ (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143185_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getReleaseProcessor$7 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143188_ (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$message$1 (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_201909_ ()Z net/minecraft/server/level/ChunkTaskPriorityQueueSorter/hasWork ()Z +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212889_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$15 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212891_ (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;Ljava/lang/Void;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$16 (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;Ljava/lang/Void;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212895_ (Ljava/lang/Long;)Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getDebugStatus$18 (Ljava/lang/Long;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212897_ (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getDebugStatus$19 (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212899_ (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$17 (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_6250_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/onLevelChange (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/ (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/ (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/ (Ljava/lang/Runnable;JZ)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/ (Ljava/lang/Runnable;JZ)V +MD: net/minecraft/server/level/ChunkTracker/ (III)V net/minecraft/server/level/ChunkTracker/ (III)V +MD: net/minecraft/server/level/ChunkTracker/m_140715_ (JIZ)V net/minecraft/server/level/ChunkTracker/update (JIZ)V +MD: net/minecraft/server/level/ChunkTracker/m_6163_ (J)Z net/minecraft/server/level/ChunkTracker/isSource (J)Z +MD: net/minecraft/server/level/ChunkTracker/m_6357_ (JJI)I net/minecraft/server/level/ChunkTracker/getComputedLevel (JJI)I +MD: net/minecraft/server/level/ChunkTracker/m_6359_ (JJI)I net/minecraft/server/level/ChunkTracker/computeLevelFromNeighbor (JJI)I +MD: net/minecraft/server/level/ChunkTracker/m_7031_ (J)I net/minecraft/server/level/ChunkTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/ChunkTracker/m_7900_ (JIZ)V net/minecraft/server/level/ChunkTracker/checkNeighborsAfterUpdate (JIZ)V +MD: net/minecraft/server/level/ColumnPos/ (II)V net/minecraft/server/level/ColumnPos/ (II)V +MD: net/minecraft/server/level/ColumnPos/equals (Ljava/lang/Object;)Z net/minecraft/server/level/ColumnPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/ColumnPos/f_140723_ ()I net/minecraft/server/level/ColumnPos/x ()I +MD: net/minecraft/server/level/ColumnPos/f_140724_ ()I net/minecraft/server/level/ColumnPos/z ()I +MD: net/minecraft/server/level/ColumnPos/hashCode ()I net/minecraft/server/level/ColumnPos/hashCode ()I +MD: net/minecraft/server/level/ColumnPos/m_143196_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/server/level/ColumnPos/toChunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/server/level/ColumnPos/m_143197_ (II)J net/minecraft/server/level/ColumnPos/asLong (II)J +MD: net/minecraft/server/level/ColumnPos/m_143200_ ()J net/minecraft/server/level/ColumnPos/toLong ()J +MD: net/minecraft/server/level/ColumnPos/m_214969_ (J)I net/minecraft/server/level/ColumnPos/getX (J)I +MD: net/minecraft/server/level/ColumnPos/m_214971_ (J)I net/minecraft/server/level/ColumnPos/getZ (J)I +MD: net/minecraft/server/level/ColumnPos/toString ()Ljava/lang/String; net/minecraft/server/level/ColumnPos/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/DemoMode/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/DemoMode/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/DemoMode/m_140757_ ()V net/minecraft/server/level/DemoMode/outputDemoReminder ()V +MD: net/minecraft/server/level/DemoMode/m_214168_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V net/minecraft/server/level/DemoMode/handleBlockBreakAction (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V +MD: net/minecraft/server/level/DemoMode/m_6261_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/DemoMode/useItem (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/DemoMode/m_7179_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/DemoMode/useItemOn (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/DemoMode/m_7712_ ()V net/minecraft/server/level/DemoMode/tick ()V +MD: net/minecraft/server/level/DistanceManager/ ()V net/minecraft/server/level/DistanceManager/ ()V +MD: net/minecraft/server/level/DistanceManager/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/DistanceManager/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/DistanceManager/m_140776_ ()V net/minecraft/server/level/DistanceManager/purgeStaleTickets ()V +MD: net/minecraft/server/level/DistanceManager/m_140777_ (I)V net/minecraft/server/level/DistanceManager/updatePlayerTickets (I)V +MD: net/minecraft/server/level/DistanceManager/m_140784_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager/addTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager/m_140792_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/addTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140797_ (Lnet/minecraft/util/SortedArraySet;)I net/minecraft/server/level/DistanceManager/getTicketLevelAt (Lnet/minecraft/util/SortedArraySet;)I +MD: net/minecraft/server/level/DistanceManager/m_140799_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/DistanceManager/updateChunkForced (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/DistanceManager/m_140802_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/DistanceManager/addPlayer (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/DistanceManager/m_140805_ (Lnet/minecraft/server/level/ChunkMap;)Z net/minecraft/server/level/DistanceManager/runAllUpdates (Lnet/minecraft/server/level/ChunkMap;)Z +MD: net/minecraft/server/level/DistanceManager/m_140816_ ()I net/minecraft/server/level/DistanceManager/getNaturalSpawnChunkCount ()I +MD: net/minecraft/server/level/DistanceManager/m_140818_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager/removeTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager/m_140823_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/removeTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140828_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/DistanceManager/removePlayer (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/DistanceManager/m_140837_ ()Ljava/lang/String; net/minecraft/server/level/DistanceManager/getDebugStatus ()Ljava/lang/String; +MD: net/minecraft/server/level/DistanceManager/m_140838_ (J)Ljava/lang/String; net/minecraft/server/level/DistanceManager/getTicketDebugString (J)Ljava/lang/String; +MD: net/minecraft/server/level/DistanceManager/m_140840_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/addRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140847_ (J)Z net/minecraft/server/level/DistanceManager/hasPlayersNearby (J)Z +MD: net/minecraft/server/level/DistanceManager/m_140849_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/removeRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140857_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/DistanceManager/getTickets (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/DistanceManager/m_143207_ (Ljava/lang/String;)V net/minecraft/server/level/DistanceManager/dumpTickets (Ljava/lang/String;)V +MD: net/minecraft/server/level/DistanceManager/m_183903_ (JLcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$4 (JLcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/DistanceManager/m_183906_ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$0 (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/DistanceManager/m_183909_ (Lnet/minecraft/server/level/Ticket;)Z net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$1 (Lnet/minecraft/server/level/Ticket;)Z +MD: net/minecraft/server/level/DistanceManager/m_183911_ (I)V net/minecraft/server/level/DistanceManager/updateSimulationDistance (I)V +MD: net/minecraft/server/level/DistanceManager/m_183913_ (J)Z net/minecraft/server/level/DistanceManager/inEntityTickingRange (J)Z +MD: net/minecraft/server/level/DistanceManager/m_183915_ ()Lnet/minecraft/server/level/TickingTracker; net/minecraft/server/level/DistanceManager/tickingTracker ()Lnet/minecraft/server/level/TickingTracker; +MD: net/minecraft/server/level/DistanceManager/m_183916_ (J)Z net/minecraft/server/level/DistanceManager/inBlockTickingRange (J)Z +MD: net/minecraft/server/level/DistanceManager/m_183918_ ()I net/minecraft/server/level/DistanceManager/getPlayerTicketLevel ()I +MD: net/minecraft/server/level/DistanceManager/m_183919_ ()V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$2 ()V +MD: net/minecraft/server/level/DistanceManager/m_183920_ (J)Lit/unimi/dsi/fastutil/objects/ObjectSet; net/minecraft/server/level/DistanceManager/lambda$addPlayer$6 (J)Lit/unimi/dsi/fastutil/objects/ObjectSet; +MD: net/minecraft/server/level/DistanceManager/m_183922_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/DistanceManager/lambda$getTickets$5 (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/DistanceManager/m_183924_ (J)V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$3 (J)V +MD: net/minecraft/server/level/DistanceManager/m_201910_ ()V net/minecraft/server/level/DistanceManager/removeTicketsOnClosing ()V +MD: net/minecraft/server/level/DistanceManager/m_201911_ ()Z net/minecraft/server/level/DistanceManager/hasTickets ()Z +MD: net/minecraft/server/level/DistanceManager/m_7009_ (J)Z net/minecraft/server/level/DistanceManager/isChunkToRemove (J)Z +MD: net/minecraft/server/level/DistanceManager/m_7288_ (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/DistanceManager/updateChunkScheduling (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/DistanceManager/m_7316_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/DistanceManager/getChunk (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ ()V net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ ()V +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;)V net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;)V +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_140877_ (I)I net/minecraft/server/level/DistanceManager$ChunkTicketTracker/runDistanceUpdates (I)I +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_6172_ (J)I net/minecraft/server/level/DistanceManager$ChunkTicketTracker/getLevel (J)I +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_7031_ (J)I net/minecraft/server/level/DistanceManager$ChunkTicketTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_7351_ (JI)V net/minecraft/server/level/DistanceManager$ChunkTicketTracker/setLevel (JI)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_140902_ (J)Z net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/havePlayer (J)Z +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_143212_ (Ljava/lang/String;)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/dumpChunks (Ljava/lang/String;)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_6172_ (J)I net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/getLevel (J)I +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_6410_ ()V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/runAllUpdates ()V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_7031_ (J)I net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_7351_ (JI)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/setLevel (JI)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_8002_ (JII)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/onLevelChange (JII)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140912_ (I)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/updateViewDistance (I)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140918_ (JIZZ)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/onLevelChange (JIZZ)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140923_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$5 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140926_ (JI)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$runAllUpdates$7 (JI)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140932_ (I)Z net/minecraft/server/level/DistanceManager$PlayerTicketTracker/haveTicketFor (I)Z +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140934_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$2 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140938_ (I)I net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$3 (I)I +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140940_ (J)I net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$runAllUpdates$6 (J)I +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_143214_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$4 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_143217_ ()V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$0 ()V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_143218_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$1 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_6410_ ()V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/runAllUpdates ()V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_8002_ (JII)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/onLevelChange (JII)V +MD: net/minecraft/server/level/FullChunkStatus/ ()V net/minecraft/server/level/FullChunkStatus/ ()V +MD: net/minecraft/server/level/FullChunkStatus/ (Ljava/lang/String;I)V net/minecraft/server/level/FullChunkStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/server/level/FullChunkStatus/m_287205_ (Lnet/minecraft/server/level/FullChunkStatus;)Z net/minecraft/server/level/FullChunkStatus/isOrAfter (Lnet/minecraft/server/level/FullChunkStatus;)Z +MD: net/minecraft/server/level/FullChunkStatus/m_287208_ ()[Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/FullChunkStatus/$values ()[Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/FullChunkStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/FullChunkStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/FullChunkStatus/values ()[Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/FullChunkStatus/values ()[Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/PlayerMap/ ()V net/minecraft/server/level/PlayerMap/ ()V +MD: net/minecraft/server/level/PlayerMap/m_183926_ (J)Ljava/util/Set; net/minecraft/server/level/PlayerMap/getPlayers (J)Ljava/util/Set; +MD: net/minecraft/server/level/PlayerMap/m_8245_ (JJLnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/updatePlayer (JJLnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8249_ (JLnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/removePlayer (JLnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8252_ (JLnet/minecraft/server/level/ServerPlayer;Z)V net/minecraft/server/level/PlayerMap/addPlayer (JLnet/minecraft/server/level/ServerPlayer;Z)V +MD: net/minecraft/server/level/PlayerMap/m_8256_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/ignorePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8258_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/unIgnorePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8260_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/PlayerMap/ignoredOrUnknown (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/PlayerMap/m_8262_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/PlayerMap/ignored (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/PlayerRespawnLogic/ ()V net/minecraft/server/level/PlayerRespawnLogic/ ()V +MD: net/minecraft/server/level/PlayerRespawnLogic/m_183928_ (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/PlayerRespawnLogic/getOverworldRespawnPos (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/PlayerRespawnLogic/m_183932_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/PlayerRespawnLogic/getSpawnPosInChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/SectionTracker/ (III)V net/minecraft/server/level/SectionTracker/ (III)V +MD: net/minecraft/server/level/SectionTracker/m_6357_ (JJI)I net/minecraft/server/level/SectionTracker/getComputedLevel (JJI)I +MD: net/minecraft/server/level/SectionTracker/m_6359_ (JJI)I net/minecraft/server/level/SectionTracker/computeLevelFromNeighbor (JJI)I +MD: net/minecraft/server/level/SectionTracker/m_7409_ (J)I net/minecraft/server/level/SectionTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/SectionTracker/m_7900_ (JIZ)V net/minecraft/server/level/SectionTracker/checkNeighborsAfterUpdate (JIZ)V +MD: net/minecraft/server/level/SectionTracker/m_8288_ (JIZ)V net/minecraft/server/level/SectionTracker/update (JIZ)V +MD: net/minecraft/server/level/ServerBossEvent/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/server/level/ServerBossEvent/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/server/level/ServerBossEvent/m_142711_ (F)V net/minecraft/server/level/ServerBossEvent/setProgress (F)V +MD: net/minecraft/server/level/ServerBossEvent/m_143224_ (Ljava/util/function/Function;)V net/minecraft/server/level/ServerBossEvent/broadcast (Ljava/util/function/Function;)V +MD: net/minecraft/server/level/ServerBossEvent/m_5648_ (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/server/level/ServerBossEvent/setOverlay (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6451_ (Lnet/minecraft/world/BossEvent$BossBarColor;)V net/minecraft/server/level/ServerBossEvent/setColor (Lnet/minecraft/world/BossEvent$BossBarColor;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6456_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/level/ServerBossEvent/setName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6539_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerBossEvent/removePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6543_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerBossEvent/addPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerBossEvent/m_7003_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/server/level/ServerBossEvent/setDarkenScreen (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/server/level/ServerBossEvent/m_7005_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/server/level/ServerBossEvent/setPlayBossMusic (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/server/level/ServerBossEvent/m_7006_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/server/level/ServerBossEvent/setCreateWorldFog (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/server/level/ServerBossEvent/m_7706_ ()V net/minecraft/server/level/ServerBossEvent/removeAllPlayers ()V +MD: net/minecraft/server/level/ServerBossEvent/m_8321_ (Z)V net/minecraft/server/level/ServerBossEvent/setVisible (Z)V +MD: net/minecraft/server/level/ServerBossEvent/m_8323_ ()Z net/minecraft/server/level/ServerBossEvent/isVisible ()Z +MD: net/minecraft/server/level/ServerBossEvent/m_8324_ ()Ljava/util/Collection; net/minecraft/server/level/ServerBossEvent/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/server/level/ServerChunkCache/ ()V net/minecraft/server/level/ServerChunkCache/ ()V +MD: net/minecraft/server/level/ServerChunkCache/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/chunk/ChunkGenerator;IIZLnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;)V net/minecraft/server/level/ServerChunkCache/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/chunk/ChunkGenerator;IIZLnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;)V +MD: net/minecraft/server/level/ServerChunkCache/close ()V net/minecraft/server/level/ServerChunkCache/close ()V +MD: net/minecraft/server/level/ServerChunkCache/m_143239_ (J)Z net/minecraft/server/level/ServerChunkCache/isPositionTicking (J)Z +MD: net/minecraft/server/level/ServerChunkCache/m_184021_ (Lnet/minecraft/server/level/ServerChunkCache$ChunkAndHolder;)V net/minecraft/server/level/ServerChunkCache/lambda$tickChunks$5 (Lnet/minecraft/server/level/ServerChunkCache$ChunkAndHolder;)V +MD: net/minecraft/server/level/ServerChunkCache/m_184023_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/LightLayer;)V net/minecraft/server/level/ServerChunkCache/lambda$onLightUpdate$6 (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/LightLayer;)V +MD: net/minecraft/server/level/ServerChunkCache/m_184026_ (I)V net/minecraft/server/level/ServerChunkCache/setSimulationDistance (I)V +MD: net/minecraft/server/level/ServerChunkCache/m_196555_ ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; net/minecraft/server/level/ServerChunkCache/chunkScanner ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_201698_ (Ljava/util/function/BooleanSupplier;Z)V net/minecraft/server/level/ServerChunkCache/tick (Ljava/util/function/BooleanSupplier;Z)V +MD: net/minecraft/server/level/ServerChunkCache/m_201915_ ()V net/minecraft/server/level/ServerChunkCache/removeTicketsOnClosing ()V +MD: net/minecraft/server/level/ServerChunkCache/m_214994_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/server/level/ServerChunkCache/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/server/level/ServerChunkCache/m_255415_ ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/server/level/ServerChunkCache/getGeneratorState ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/server/level/ServerChunkCache/m_5563_ (II)Z net/minecraft/server/level/ServerChunkCache/hasChunk (II)Z +MD: net/minecraft/server/level/ServerChunkCache/m_6196_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/server/level/ServerChunkCache/getChunkForLighting (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/server/level/ServerChunkCache/m_6506_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V net/minecraft/server/level/ServerChunkCache/onLightUpdate (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/server/level/ServerChunkCache/m_6692_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ServerChunkCache/updateChunkForced (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ServerChunkCache/m_6707_ (ZZ)V net/minecraft/server/level/ServerChunkCache/setSpawnSettings (ZZ)V +MD: net/minecraft/server/level/ServerChunkCache/m_6754_ ()Ljava/lang/String; net/minecraft/server/level/ServerChunkCache/gatherStats ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerChunkCache/m_7131_ (II)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ServerChunkCache/getChunkNow (II)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ServerChunkCache/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_7653_ ()Lnet/minecraft/world/level/BlockGetter; net/minecraft/server/level/ServerChunkCache/getLevel ()Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/server/level/ServerChunkCache/m_7653_ ()Lnet/minecraft/world/level/Level; net/minecraft/server/level/ServerChunkCache/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/server/level/ServerChunkCache/m_7827_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/server/level/ServerChunkCache/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/server/level/ServerChunkCache/m_7827_ ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; net/minecraft/server/level/ServerChunkCache/getLightEngine ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; +MD: net/minecraft/server/level/ServerChunkCache/m_8354_ (I)V net/minecraft/server/level/ServerChunkCache/setViewDistance (I)V +MD: net/minecraft/server/level/ServerChunkCache/m_8364_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ServerChunkCache/getVisibleChunkIfPresent (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ServerChunkCache/m_8366_ (JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/ServerChunkCache/storeInCache (JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8370_ (JLjava/util/function/Consumer;)V net/minecraft/server/level/ServerChunkCache/getFullChunk (JLjava/util/function/Consumer;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8385_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerChunkCache/move (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8387_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/ServerChunkCache/addRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8394_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerChunkCache/broadcastAndSend (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8405_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/lambda$getChunk$1 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_8412_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/level/ServerChunkCache/lambda$getChunkFuture$4 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/level/ServerChunkCache/m_8416_ (Lnet/minecraft/server/level/ChunkHolder;I)Z net/minecraft/server/level/ServerChunkCache/chunkAbsent (Lnet/minecraft/server/level/ChunkHolder;I)Z +MD: net/minecraft/server/level/ServerChunkCache/m_8419_ (Z)V net/minecraft/server/level/ServerChunkCache/save (Z)V +MD: net/minecraft/server/level/ServerChunkCache/m_8421_ (ZLnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/lambda$getChunk$2 (ZLnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_8427_ ()I net/minecraft/server/level/ServerChunkCache/getTickingGenerated ()I +MD: net/minecraft/server/level/ServerChunkCache/m_8431_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ServerChunkCache/getChunkFuture (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ServerChunkCache/m_8438_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/ServerChunkCache/removeRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8443_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerChunkCache/removeEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8445_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerChunkCache/broadcast (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8448_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ServerChunkCache/getChunkDebugData (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerChunkCache/m_8450_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerChunkCache/blockChanged (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8456_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ServerChunkCache/getChunkFutureMainThread (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ServerChunkCache/m_8463_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerChunkCache/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8466_ ()Z net/minecraft/server/level/ServerChunkCache/pollTask ()Z +MD: net/minecraft/server/level/ServerChunkCache/m_8467_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ServerChunkCache/lambda$getChunkFuture$3 (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ServerChunkCache/m_8475_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/lambda$getChunk$0 (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_8480_ ()I net/minecraft/server/level/ServerChunkCache/getPendingTasksCount ()I +MD: net/minecraft/server/level/ServerChunkCache/m_8481_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/server/level/ServerChunkCache/getGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/server/level/ServerChunkCache/m_8482_ ()I net/minecraft/server/level/ServerChunkCache/getLoadedChunksCount ()I +MD: net/minecraft/server/level/ServerChunkCache/m_8483_ ()Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/server/level/ServerChunkCache/getDataStorage ()Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/server/level/ServerChunkCache/m_8484_ ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; net/minecraft/server/level/ServerChunkCache/getPoiManager ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +MD: net/minecraft/server/level/ServerChunkCache/m_8485_ ()Lnet/minecraft/world/level/NaturalSpawner$SpawnState; net/minecraft/server/level/ServerChunkCache/getLastSpawnState ()Lnet/minecraft/world/level/NaturalSpawner$SpawnState; +MD: net/minecraft/server/level/ServerChunkCache/m_8488_ ()V net/minecraft/server/level/ServerChunkCache/clearCache ()V +MD: net/minecraft/server/level/ServerChunkCache/m_8489_ ()Z net/minecraft/server/level/ServerChunkCache/runDistanceManagerUpdates ()Z +MD: net/minecraft/server/level/ServerChunkCache/m_8490_ ()V net/minecraft/server/level/ServerChunkCache/tickChunks ()V +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/equals (Ljava/lang/Object;)Z net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184028_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/chunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184029_ ()Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/holder ()Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/hashCode ()I net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/hashCode ()I +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/toString ()Ljava/lang/String; net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/ (Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/Level;)V net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/ (Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_5660_ ()Z net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/scheduleExecutables ()Z +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6304_ ()Ljava/lang/Thread; net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_7245_ ()Z net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/pollTask ()Z +MD: net/minecraft/server/level/ServerEntity/ ()V net/minecraft/server/level/ServerEntity/ ()V +MD: net/minecraft/server/level/ServerEntity/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;IZLjava/util/function/Consumer;)V net/minecraft/server/level/ServerEntity/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;IZLjava/util/function/Consumer;)V +MD: net/minecraft/server/level/ServerEntity/m_274361_ (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerEntity/lambda$removedPassengers$1 (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerEntity/m_277180_ (Ljava/util/List;Ljava/util/List;)Ljava/util/stream/Stream; net/minecraft/server/level/ServerEntity/removedPassengers (Ljava/util/List;Ljava/util/List;)Ljava/util/stream/Stream; +MD: net/minecraft/server/level/ServerEntity/m_289085_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerEntity/lambda$sendChanges$0 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerEntity/m_289200_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Consumer;)V net/minecraft/server/level/ServerEntity/sendPairingData (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/level/ServerEntity/m_8533_ ()V net/minecraft/server/level/ServerEntity/sendChanges ()V +MD: net/minecraft/server/level/ServerEntity/m_8534_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerEntity/removePairing (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerEntity/m_8538_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerEntity/broadcastAndSend (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerEntity/m_8541_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerEntity/addPairing (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerEntity/m_8543_ ()V net/minecraft/server/level/ServerEntity/sendDirtyEntityData ()V +MD: net/minecraft/server/level/ServerLevel/ ()V net/minecraft/server/level/ServerLevel/ ()V +MD: net/minecraft/server/level/ServerLevel/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;Lnet/minecraft/server/level/progress/ChunkProgressListener;ZJLjava/util/List;ZLnet/minecraft/world/RandomSequences;)V net/minecraft/server/level/ServerLevel/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;Lnet/minecraft/server/level/progress/ChunkProgressListener;ZJLjava/util/List;ZLnet/minecraft/world/RandomSequences;)V +MD: net/minecraft/server/level/ServerLevel/close ()V net/minecraft/server/level/ServerLevel/close ()V +MD: net/minecraft/server/level/ServerLevel/m_142325_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/server/level/ServerLevel/setMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/server/level/ServerLevel/m_142646_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/server/level/ServerLevel/getEntities ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/server/level/ServerLevel/m_143248_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/server/level/ServerLevel/findLightningRod (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/server/level/ServerLevel/m_143261_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/server/level/ServerLevel/removePlayerImmediately (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/server/level/ServerLevel/m_143280_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/ServerLevel/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_143288_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerLevel/findLightningTargetAround (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerLevel/m_143299_ (Ljava/io/Writer;)V net/minecraft/server/level/ServerLevel/dumpBlockEntityTickers (Ljava/io/Writer;)V +MD: net/minecraft/server/level/ServerLevel/m_143301_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/getTypeCount (Ljava/lang/Iterable;Ljava/util/function/Function;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_143311_ (Ljava/util/stream/Stream;)V net/minecraft/server/level/ServerLevel/addLegacyChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/server/level/ServerLevel/m_143315_ ()V net/minecraft/server/level/ServerLevel/announceSleepStatus ()V +MD: net/minecraft/server/level/ServerLevel/m_143317_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerLevel/getEntityOrPart (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerLevel/m_143319_ (J)Z net/minecraft/server/level/ServerLevel/areEntitiesLoaded (J)Z +MD: net/minecraft/server/level/ServerLevel/m_143327_ (Ljava/util/stream/Stream;)V net/minecraft/server/level/ServerLevel/addWorldGenChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/server/level/ServerLevel/m_143333_ ()Z net/minecraft/server/level/ServerLevel/canSleepThroughNights ()Z +MD: net/minecraft/server/level/ServerLevel/m_143334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/addDuringTeleport (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_143340_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isPositionEntityTicking (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_143342_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/shouldDiscardEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_143344_ ()I net/minecraft/server/level/ServerLevel/getLogicalHeight ()I +MD: net/minecraft/server/level/ServerLevel/m_183324_ ()Lnet/minecraft/world/ticks/LevelTicks; net/minecraft/server/level/ServerLevel/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTicks; +MD: net/minecraft/server/level/ServerLevel/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/ServerLevel/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/ServerLevel/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/ServerLevel/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/ServerLevel/m_183326_ ()Lnet/minecraft/world/ticks/LevelTicks; net/minecraft/server/level/ServerLevel/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTicks; +MD: net/minecraft/server/level/ServerLevel/m_183438_ (J)Z net/minecraft/server/level/ServerLevel/shouldTickBlocksAt (J)Z +MD: net/minecraft/server/level/ServerLevel/m_184052_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerLevel/lambda$findLightningRod$10 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerLevel/m_184054_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/lambda$findLightningRod$9 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_184063_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/lambda$tick$6 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_184076_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/server/level/ServerLevel/tickFluid (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/server/level/ServerLevel/m_184092_ (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/server/level/ServerLevel/lambda$new$0 (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/server/level/ServerLevel/m_184094_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; net/minecraft/server/level/ServerLevel/lambda$new$1 (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/server/level/ServerLevel/m_184096_ ()V net/minecraft/server/level/ServerLevel/advanceWeatherCycle ()V +MD: net/minecraft/server/level/ServerLevel/m_184097_ ()V net/minecraft/server/level/ServerLevel/resetWeatherCycle ()V +MD: net/minecraft/server/level/ServerLevel/m_184098_ ()Lnet/minecraft/world/entity/raid/Raids; net/minecraft/server/level/ServerLevel/lambda$new$2 ()Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/server/level/ServerLevel/m_184099_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/lambda$makeObsidianPlatform$23 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_184102_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ServerLevel/startTickingChunk (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ServerLevel/m_184110_ (J)Z net/minecraft/server/level/ServerLevel/isPositionTickingWithEntitiesLoaded (J)Z +MD: net/minecraft/server/level/ServerLevel/m_184112_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/server/level/ServerLevel/tickBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/server/level/ServerLevel/m_184115_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/lambda$wakeUpAllPlayers$7 (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_196557_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ServerLevel/onStructureStartsAvailable (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ServerLevel/m_201916_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ServerLevel/isNaturalSpawningAllowed (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_201918_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isNaturalSpawningAllowed (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/server/level/ServerLevel/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/server/level/ServerLevel/m_207559_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$15 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_207566_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/BlockEventData;)Z net/minecraft/server/level/ServerLevel/lambda$clearBlockEvents$19 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/BlockEventData;)Z +MD: net/minecraft/server/level/ServerLevel/m_207569_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$getTypeCount$21 (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_207576_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/lambda$makeObsidianPlatform$22 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_207579_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ServerLevel/lambda$onStructureStartsAvailable$24 (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ServerLevel/m_213890_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/server/level/ServerLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/server/level/ServerLevel/m_213960_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/server/level/ServerLevel/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/server/level/ServerLevel/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/server/level/ServerLevel/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/server/level/ServerLevel/m_215010_ ()Lnet/minecraft/world/level/StructureManager; net/minecraft/server/level/ServerLevel/structureManager ()Lnet/minecraft/world/level/StructureManager; +MD: net/minecraft/server/level/ServerLevel/m_215011_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerLevel/findNearestMapStructure (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerLevel/m_215055_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$18 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/server/level/ServerLevel/m_215058_ (Lnet/minecraft/core/Holder;)Z net/minecraft/server/level/ServerLevel/lambda$findLightningRod$8 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/server/level/ServerLevel/m_215069_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;III)Lcom/mojang/datafixers/util/Pair; net/minecraft/server/level/ServerLevel/findClosestBiome3d (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;III)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/server/level/ServerLevel/m_215076_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$17 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/server/level/ServerLevel/m_215079_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$16 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/server/level/ServerLevel/m_215082_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/server/level/ServerLevel/getStructureManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/server/level/ServerLevel/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/level/ServerLevel/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/level/ServerLevel/m_254877_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/server/level/ServerLevel/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/server/level/ServerLevel/m_257149_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$tickPassenger$13 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_257150_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$tickNonPassenger$12 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_257151_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$getWatchdogStats$20 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_260780_ (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/server/level/ServerLevel/lambda$getEntities$14 (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/server/level/ServerLevel/m_260813_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;)V net/minecraft/server/level/ServerLevel/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;)V +MD: net/minecraft/server/level/ServerLevel/m_261156_ (Ljava/util/function/Predicate;I)Ljava/util/List; net/minecraft/server/level/ServerLevel/getPlayers (Ljava/util/function/Predicate;I)Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_261178_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;I)V net/minecraft/server/level/ServerLevel/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;I)V +MD: net/minecraft/server/level/ServerLevel/m_262808_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/server/level/ServerLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/server/level/ServerLevel/m_269196_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/server/level/ServerLevel/broadcastDamageEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/server/level/ServerLevel/m_287051_ (J)Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/lambda$new$4 (J)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_287052_ (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/lambda$new$3 (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_287143_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; net/minecraft/server/level/ServerLevel/getRandomSequence (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/server/level/ServerLevel/m_287200_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V net/minecraft/server/level/ServerLevel/setDragonFight (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V +MD: net/minecraft/server/level/ServerLevel/m_288114_ (J)Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/lambda$new$5 (J)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_288231_ ()Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/getRandomSequences ()Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_289086_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/server/level/ServerLevel/lambda$findLightningTargetAround$11 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/server/level/ServerLevel/m_46464_ ()Ljava/lang/String; net/minecraft/server/level/ServerLevel/gatherChunkSourceStats ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_46586_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_46590_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/server/level/ServerLevel/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/server/level/ServerLevel/m_46672_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/server/level/ServerLevel/updateNeighborsAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/server/level/ServerLevel/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/ServerLevel/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/ServerLevel/m_6018_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/level/ServerLevel/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/level/ServerLevel/m_6188_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/server/level/ServerLevel/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/server/level/ServerLevel/m_6188_ ()Lnet/minecraft/server/ServerScoreboard; net/minecraft/server/level/ServerLevel/getScoreboard ()Lnet/minecraft/server/ServerScoreboard; +MD: net/minecraft/server/level/ServerLevel/m_6289_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/server/level/ServerLevel/blockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/server/level/ServerLevel/m_6559_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ServerLevel/onBlockStateChange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ServerLevel/m_6798_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/ServerLevel/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/ServerLevel/m_6801_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/ServerLevel/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/ServerLevel/m_6815_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerLevel/getEntity (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerLevel/m_6907_ ()Ljava/util/List; net/minecraft/server/level/ServerLevel/players ()Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_7260_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/server/level/ServerLevel/sendBlockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/server/level/ServerLevel/m_7328_ ()J net/minecraft/server/level/ServerLevel/getSeed ()J +MD: net/minecraft/server/level/ServerLevel/m_7354_ ()I net/minecraft/server/level/ServerLevel/getFreeMapId ()I +MD: net/minecraft/server/level/ServerLevel/m_7441_ ()Z net/minecraft/server/level/ServerLevel/noSave ()Z +MD: net/minecraft/server/level/ServerLevel/m_7465_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/server/level/ServerLevel/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/server/level/ServerLevel/m_7489_ (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/server/level/ServerLevel/getMapData (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/server/level/ServerLevel/m_7605_ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/server/level/ServerLevel/broadcastEntityEvent (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/server/level/ServerLevel/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/level/ServerLevel/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/level/ServerLevel/m_7696_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/server/level/ServerLevel/blockEvent (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/server/level/ServerLevel/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/server/level/ServerLevel/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/server/level/ServerLevel/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/server/level/ServerLevel/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/server/level/ServerLevel/m_7726_ ()Lnet/minecraft/server/level/ServerChunkCache; net/minecraft/server/level/ServerLevel/getChunkSource ()Lnet/minecraft/server/level/ServerChunkCache; +MD: net/minecraft/server/level/ServerLevel/m_7966_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/mayInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_7967_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/addFreshEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8583_ ()Ljava/lang/Iterable; net/minecraft/server/level/ServerLevel/getAllEntities ()Ljava/lang/Iterable; +MD: net/minecraft/server/level/ServerLevel/m_8584_ ()Z net/minecraft/server/level/ServerLevel/isFlat ()Z +MD: net/minecraft/server/level/ServerLevel/m_8586_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; net/minecraft/server/level/ServerLevel/getDragonFight ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; +MD: net/minecraft/server/level/ServerLevel/m_8590_ ()Ljava/lang/String; net/minecraft/server/level/ServerLevel/getWatchdogStats ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_8602_ (IIZ)Z net/minecraft/server/level/ServerLevel/setChunkForced (IIZ)Z +MD: net/minecraft/server/level/ServerLevel/m_8606_ (IIZZ)V net/minecraft/server/level/ServerLevel/setWeatherParameters (IIZZ)V +MD: net/minecraft/server/level/ServerLevel/m_8615_ (J)V net/minecraft/server/level/ServerLevel/setDayTime (J)V +MD: net/minecraft/server/level/ServerLevel/m_8617_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerLevel/makeObsidianPlatform (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerLevel/m_8622_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addDuringCommandTeleport (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8624_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/particles/ParticleOptions;ZDDDIDDDD)Z net/minecraft/server/level/ServerLevel/sendParticles (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/particles/ParticleOptions;ZDDDIDDDD)Z +MD: net/minecraft/server/level/ServerLevel/m_8636_ (Lnet/minecraft/server/level/ServerPlayer;ZDDDLnet/minecraft/network/protocol/Packet;)Z net/minecraft/server/level/ServerLevel/sendParticles (Lnet/minecraft/server/level/ServerPlayer;ZDDDLnet/minecraft/network/protocol/Packet;)Z +MD: net/minecraft/server/level/ServerLevel/m_8643_ (Lnet/minecraft/util/ProgressListener;ZZ)V net/minecraft/server/level/ServerLevel/save (Lnet/minecraft/util/ProgressListener;ZZ)V +MD: net/minecraft/server/level/ServerLevel/m_8647_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/tickNonPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_8662_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/tickPassenger (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_8670_ (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/ReputationEventHandler;)V net/minecraft/server/level/ServerLevel/onReputationEvent (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/ReputationEventHandler;)V +MD: net/minecraft/server/level/ServerLevel/m_8698_ (Lnet/minecraft/world/level/BlockEventData;)Z net/minecraft/server/level/ServerLevel/doBlockEvent (Lnet/minecraft/world/level/BlockEventData;)Z +MD: net/minecraft/server/level/ServerLevel/m_8712_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ServerLevel/unload (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ServerLevel/m_8714_ (Lnet/minecraft/world/level/chunk/LevelChunk;I)V net/minecraft/server/level/ServerLevel/tickChunk (Lnet/minecraft/world/level/chunk/LevelChunk;I)V +MD: net/minecraft/server/level/ServerLevel/m_8722_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/server/level/ServerLevel/clearBlockEvents (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/server/level/ServerLevel/m_8733_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/server/level/ServerLevel/setDefaultSpawnPos (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/server/level/ServerLevel/m_8736_ (Lnet/minecraft/core/BlockPos;I)Z net/minecraft/server/level/ServerLevel/isCloseToVillage (Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/server/level/ServerLevel/m_8762_ (Lnet/minecraft/core/SectionPos;)Z net/minecraft/server/level/ServerLevel/isVillage (Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_8767_ (Lnet/minecraft/core/particles/ParticleOptions;DDDIDDDD)I net/minecraft/server/level/ServerLevel/sendParticles (Lnet/minecraft/core/particles/ParticleOptions;DDDIDDDD)I +MD: net/minecraft/server/level/ServerLevel/m_8781_ (Ljava/io/Writer;Ljava/lang/Iterable;)V net/minecraft/server/level/ServerLevel/dumpEntities (Ljava/io/Writer;Ljava/lang/Iterable;)V +MD: net/minecraft/server/level/ServerLevel/m_8786_ (Ljava/nio/file/Path;)V net/minecraft/server/level/ServerLevel/saveDebugReport (Ljava/nio/file/Path;)V +MD: net/minecraft/server/level/ServerLevel/m_8791_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerLevel/getEntity (Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerLevel/m_8793_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/level/ServerLevel/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/level/ServerLevel/m_8795_ (Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/ServerLevel/getPlayers (Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_8799_ (ZZ)V net/minecraft/server/level/ServerLevel/tickCustomSpawners (ZZ)V +MD: net/minecraft/server/level/ServerLevel/m_8802_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isVillage (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_8804_ ()V net/minecraft/server/level/ServerLevel/wakeUpAllPlayers ()V +MD: net/minecraft/server/level/ServerLevel/m_8806_ ()V net/minecraft/server/level/ServerLevel/saveLevelData ()V +MD: net/minecraft/server/level/ServerLevel/m_8807_ ()V net/minecraft/server/level/ServerLevel/runBlockEvents ()V +MD: net/minecraft/server/level/ServerLevel/m_8809_ ()V net/minecraft/server/level/ServerLevel/tickTime ()V +MD: net/minecraft/server/level/ServerLevel/m_8817_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addDuringPortalTeleport (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8828_ (Lnet/minecraft/core/SectionPos;)I net/minecraft/server/level/ServerLevel/sectionsToVillage (Lnet/minecraft/core/SectionPos;)I +MD: net/minecraft/server/level/ServerLevel/m_8832_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/server/level/ServerLevel/getRaidAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/server/level/ServerLevel/m_8834_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addNewPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8843_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isRaided (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_8845_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addRespawnedPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8847_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/addWithUUID (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8853_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8857_ ()Ljava/util/List; net/minecraft/server/level/ServerLevel/getDragons ()Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_8860_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/tryAddFreshEntityWithPassengers (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8871_ ()Lnet/minecraft/world/level/portal/PortalForcer; net/minecraft/server/level/ServerLevel/getPortalForcer ()Lnet/minecraft/world/level/portal/PortalForcer; +MD: net/minecraft/server/level/ServerLevel/m_8872_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/addEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8874_ ()Z net/minecraft/server/level/ServerLevel/isHandlingTick ()Z +MD: net/minecraft/server/level/ServerLevel/m_8878_ ()V net/minecraft/server/level/ServerLevel/updateSleepingPlayerList ()V +MD: net/minecraft/server/level/ServerLevel/m_8886_ ()V net/minecraft/server/level/ServerLevel/resetEmptyTime ()V +MD: net/minecraft/server/level/ServerLevel/m_8890_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/level/ServerLevel/getRandomPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/level/ServerLevel/m_8895_ ()Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/server/level/ServerLevel/getDataStorage ()Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/server/level/ServerLevel/m_8902_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/server/level/ServerLevel/getForcedChunks ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/server/level/ServerLevel/m_8904_ ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; net/minecraft/server/level/ServerLevel/getPoiManager ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +MD: net/minecraft/server/level/ServerLevel/m_8905_ ()Lnet/minecraft/world/entity/raid/Raids; net/minecraft/server/level/ServerLevel/getRaids ()Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/server/level/ServerLevel/toString ()Ljava/lang/String; net/minecraft/server/level/ServerLevel/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141981_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingEnd (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141981_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141983_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingEnd (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141983_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141985_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingStart (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141985_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141986_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onDestroyed (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141986_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onDestroyed (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141987_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141987_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingStart (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141989_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onCreated (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141989_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onCreated (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_214006_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onSectionChange (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_214006_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onSectionChange (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/ ()V net/minecraft/server/level/ServerPlayer/ ()V +MD: net/minecraft/server/level/ServerPlayer/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/level/ServerPlayer/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/level/ServerPlayer/m_141973_ (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/onEffectUpdated (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_142098_ (DDD)V net/minecraft/server/level/ServerPlayer/dismountTo (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_142106_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer/updateUsingItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayer/m_142265_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerPlayer/mayInteract (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerPlayer/m_142540_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/onEffectAdded (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_143387_ ()Z net/minecraft/server/level/ServerPlayer/isTextFilteringEnabled ()Z +MD: net/minecraft/server/level/ServerPlayer/m_143399_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V net/minecraft/server/level/ServerPlayer/initMenu (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V +MD: net/minecraft/server/level/ServerPlayer/m_143403_ (Lnet/minecraft/world/level/GameType;)Z net/minecraft/server/level/ServerPlayer/setGameMode (Lnet/minecraft/world/level/GameType;)Z +MD: net/minecraft/server/level/ServerPlayer/m_143408_ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V net/minecraft/server/level/ServerPlayer/sendTexturePack (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/level/ServerPlayer/m_143413_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayer/readPlayerMode (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayer/m_143418_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/level/ServerPlayer/lambda$die$4 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/level/ServerPlayer/m_143421_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/ServerPlayer/shouldFilterMessageTo (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/ServerPlayer/m_143423_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayer/calculateGameModeForNewPlayer (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayer/m_143427_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/loadGameTypes (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_143429_ ()V net/minecraft/server/level/ServerPlayer/initInventoryMenu ()V +MD: net/minecraft/server/level/ServerPlayer/m_143430_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/storeGameTypes (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_143432_ ()Z net/minecraft/server/level/ServerPlayer/canChatInColor ()Z +MD: net/minecraft/server/level/ServerPlayer/m_182294_ (Z)Z net/minecraft/server/level/ServerPlayer/drop (Z)Z +MD: net/minecraft/server/level/ServerPlayer/m_183318_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; net/minecraft/server/level/ServerPlayer/getExitPortal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; +MD: net/minecraft/server/level/ServerPlayer/m_183634_ ()V net/minecraft/server/level/ServerPlayer/resetFallDistance ()V +MD: net/minecraft/server/level/ServerPlayer/m_184128_ ()Z net/minecraft/server/level/ServerPlayer/allowsListing ()Z +MD: net/minecraft/server/level/ServerPlayer/m_184135_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerPlayer/trackChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerPlayer/m_184139_ ()V net/minecraft/server/level/ServerPlayer/trackStartFallingPosition ()V +MD: net/minecraft/server/level/ServerPlayer/m_184140_ ()V net/minecraft/server/level/ServerPlayer/trackEnteredOrExitedLavaOnVehicle ()V +MD: net/minecraft/server/level/ServerPlayer/m_21053_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/server/level/ServerPlayer/onItemPickup (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/server/level/ServerPlayer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/level/ServerPlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/level/ServerPlayer/m_215109_ (Lnet/minecraft/network/protocol/status/ServerStatus;)V net/minecraft/server/level/ServerPlayer/sendServerStatus (Lnet/minecraft/network/protocol/status/ServerStatus;)V +MD: net/minecraft/server/level/ServerPlayer/m_240399_ (Z)Z net/minecraft/server/level/ServerPlayer/acceptsSystemMessages (Z)Z +MD: net/minecraft/server/level/ServerPlayer/m_240418_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/server/level/ServerPlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_240422_ ()Z net/minecraft/server/level/ServerPlayer/acceptsChatMessages ()Z +MD: net/minecraft/server/level/ServerPlayer/m_243040_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; net/minecraft/server/level/ServerPlayer/lambda$sendSystemMessage$11 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/server/level/ServerPlayer/m_244881_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/server/level/ServerPlayer/lambda$readAdditionalSaveData$0 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/server/level/ServerPlayer/m_244882_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/server/level/ServerPlayer/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/server/level/ServerPlayer/m_245069_ (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/level/ServerPlayer/sendChatMessage (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/level/ServerPlayer/m_245217_ ()Ljava/util/Optional; net/minecraft/server/level/ServerPlayer/getWardenSpawnTracker ()Ljava/util/Optional; +MD: net/minecraft/server/level/ServerPlayer/m_246404_ ()Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/server/level/ServerPlayer/getChatSession ()Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/server/level/ServerPlayer/m_246847_ (DDD)V net/minecraft/server/level/ServerPlayer/teleportRelative (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_252981_ (Lnet/minecraft/network/chat/RemoteChatSession;)V net/minecraft/server/level/ServerPlayer/setChatSession (Lnet/minecraft/network/chat/RemoteChatSession;)V +MD: net/minecraft/server/level/ServerPlayer/m_264318_ (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z net/minecraft/server/level/ServerPlayer/teleportTo (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z +MD: net/minecraft/server/level/ServerPlayer/m_269405_ (DD)V net/minecraft/server/level/ServerPlayer/indicateDamage (DD)V +MD: net/minecraft/server/level/ServerPlayer/m_280300_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/server/level/ServerPlayer/triggerRecipeCrafted (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/server/level/ServerPlayer/m_284127_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayer/setServerLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayer/m_284548_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/level/ServerPlayer/serverLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/level/ServerPlayer/m_287054_ (Lnet/minecraft/world/entity/player/Inventory;I)V net/minecraft/server/level/ServerPlayer/lambda$drop$12 (Lnet/minecraft/world/entity/player/Inventory;I)V +MD: net/minecraft/server/level/ServerPlayer/m_289087_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; net/minecraft/server/level/ServerPlayer/lambda$die$5 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/server/level/ServerPlayer/m_289599_ (DDDZ)V net/minecraft/server/level/ServerPlayer/doCheckFallDamage (DDDZ)V +MD: net/minecraft/server/level/ServerPlayer/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerPlayer/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerPlayer/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/server/level/ServerPlayer/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/server/level/ServerPlayer/m_5661_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/server/level/ServerPlayer/displayClientMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_5700_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/magicCrit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_5704_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/crit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_5706_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/attack (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_5802_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/startSleeping (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_5806_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/onChangedBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_5833_ ()Z net/minecraft/server/level/ServerPlayer/isSpectator ()Z +MD: net/minecraft/server/level/ServerPlayer/m_5893_ (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; net/minecraft/server/level/ServerPlayer/openMenu (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; +MD: net/minecraft/server/level/ServerPlayer/m_5993_ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/server/level/ServerPlayer/awardKillScore (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/server/level/ServerPlayer/m_6021_ (DDD)V net/minecraft/server/level/ServerPlayer/teleportTo (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_6027_ (DDD)V net/minecraft/server/level/ServerPlayer/moveTo (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_6145_ (ZZ)V net/minecraft/server/level/ServerPlayer/stopSleepInBed (ZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_6278_ (Lnet/minecraft/stats/Stat;I)V net/minecraft/server/level/ServerPlayer/awardStat (Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/server/level/ServerPlayer/m_6330_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/server/level/ServerPlayer/playNotifySound (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/server/level/ServerPlayer/m_6459_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/ServerPlayer/broadcastToPlayer (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/ServerPlayer/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/server/level/ServerPlayer/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/server/level/ServerPlayer/m_6658_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V net/minecraft/server/level/ServerPlayer/openHorseInventory (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V +MD: net/minecraft/server/level/ServerPlayer/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/server/level/ServerPlayer/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/server/level/ServerPlayer/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/server/level/ServerPlayer/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/server/level/ServerPlayer/m_6674_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/server/level/ServerPlayer/swing (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/server/level/ServerPlayer/m_6749_ (I)V net/minecraft/server/level/ServerPlayer/giveExperienceLevels (I)V +MD: net/minecraft/server/level/ServerPlayer/m_6756_ (I)V net/minecraft/server/level/ServerPlayer/giveExperiencePoints (I)V +MD: net/minecraft/server/level/ServerPlayer/m_6763_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ServerPlayer/onInsideBlock (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ServerPlayer/m_6885_ ()V net/minecraft/server/level/ServerPlayer/onUpdateAbilities ()V +MD: net/minecraft/server/level/ServerPlayer/m_6915_ ()V net/minecraft/server/level/ServerPlayer/closeContainer ()V +MD: net/minecraft/server/level/ServerPlayer/m_6986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/server/level/ServerPlayer/openItemGui (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/server/level/ServerPlayer/m_7099_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/server/level/ServerPlayer/canHarmPlayer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/server/level/ServerPlayer/m_7166_ (Lnet/minecraft/stats/Stat;)V net/minecraft/server/level/ServerPlayer/resetStat (Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/server/level/ServerPlayer/m_7197_ (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/server/level/ServerPlayer/drop (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/server/level/ServerPlayer/m_7279_ (Ljava/util/Collection;)I net/minecraft/server/level/ServerPlayer/resetRecipes (Ljava/util/Collection;)I +MD: net/minecraft/server/level/ServerPlayer/m_7281_ (Ljava/util/Collection;)I net/minecraft/server/level/ServerPlayer/awardRecipes (Ljava/util/Collection;)I +MD: net/minecraft/server/level/ServerPlayer/m_7285_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/server/level/ServerPlayer/onEffectRemoved (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/server/level/ServerPlayer/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_7408_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/server/level/ServerPlayer/onEnchantmentPerformed (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/server/level/ServerPlayer/m_7478_ ()Lnet/minecraft/world/item/ItemCooldowns; net/minecraft/server/level/ServerPlayer/createItemCooldowns ()Lnet/minecraft/world/item/ItemCooldowns; +MD: net/minecraft/server/level/ServerPlayer/m_7500_ ()Z net/minecraft/server/level/ServerPlayer/isCreative ()Z +MD: net/minecraft/server/level/ServerPlayer/m_7618_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/server/level/ServerPlayer/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/server/level/ServerPlayer/m_7662_ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V net/minecraft/server/level/ServerPlayer/sendMerchantOffers (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_7698_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/server/level/ServerPlayer/openCommandBlock (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/server/level/ServerPlayer/m_7720_ (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ServerPlayer/startSleepInBed (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ServerPlayer/m_7739_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/server/level/ServerPlayer/openTextEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_7902_ ([Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/level/ServerPlayer/awardRecipesByKey ([Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/level/ServerPlayer/m_7937_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/server/level/ServerPlayer/findDimensionEntryPoint (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/server/level/ServerPlayer/m_7938_ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/server/level/ServerPlayer/take (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/server/level/ServerPlayer/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/server/level/ServerPlayer/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/server/level/ServerPlayer/m_8021_ ()V net/minecraft/server/level/ServerPlayer/processPortalCooldown ()V +MD: net/minecraft/server/level/ServerPlayer/m_8034_ ()V net/minecraft/server/level/ServerPlayer/updateInvisibilityStatus ()V +MD: net/minecraft/server/level/ServerPlayer/m_8088_ ()I net/minecraft/server/level/ServerPlayer/getPermissionLevel ()I +MD: net/minecraft/server/level/ServerPlayer/m_8095_ ()V net/minecraft/server/level/ServerPlayer/completeUsingItem ()V +MD: net/minecraft/server/level/ServerPlayer/m_8098_ ()V net/minecraft/server/level/ServerPlayer/onLeaveCombat ()V +MD: net/minecraft/server/level/ServerPlayer/m_8108_ ()V net/minecraft/server/level/ServerPlayer/onEnterCombat ()V +MD: net/minecraft/server/level/ServerPlayer/m_8119_ ()V net/minecraft/server/level/ServerPlayer/tick ()V +MD: net/minecraft/server/level/ServerPlayer/m_8127_ ()V net/minecraft/server/level/ServerPlayer/stopRiding ()V +MD: net/minecraft/server/level/ServerPlayer/m_8951_ ()Lnet/minecraft/stats/ServerStatsCounter; net/minecraft/server/level/ServerPlayer/getStats ()Lnet/minecraft/stats/ServerStatsCounter; +MD: net/minecraft/server/level/ServerPlayer/m_8952_ ()Lnet/minecraft/stats/ServerRecipeBook; net/minecraft/server/level/ServerPlayer/getRecipeBook ()Lnet/minecraft/stats/ServerRecipeBook; +MD: net/minecraft/server/level/ServerPlayer/m_8954_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerPlayer/getCamera ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerPlayer/m_8956_ ()J net/minecraft/server/level/ServerPlayer/getLastActionTime ()J +MD: net/minecraft/server/level/ServerPlayer/m_8957_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/level/ServerPlayer/getTabListDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/level/ServerPlayer/m_8958_ ()Z net/minecraft/server/level/ServerPlayer/isChangingDimension ()Z +MD: net/minecraft/server/level/ServerPlayer/m_8959_ ()V net/minecraft/server/level/ServerPlayer/hasChangedDimension ()V +MD: net/minecraft/server/level/ServerPlayer/m_8960_ ()Lnet/minecraft/server/PlayerAdvancements; net/minecraft/server/level/ServerPlayer/getAdvancements ()Lnet/minecraft/server/PlayerAdvancements; +MD: net/minecraft/server/level/ServerPlayer/m_8961_ ()Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerPlayer/getRespawnPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerPlayer/m_8962_ ()F net/minecraft/server/level/ServerPlayer/getRespawnAngle ()F +MD: net/minecraft/server/level/ServerPlayer/m_8963_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/server/level/ServerPlayer/getRespawnDimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/server/level/ServerPlayer/m_8964_ ()Z net/minecraft/server/level/ServerPlayer/isRespawnForced ()Z +MD: net/minecraft/server/level/ServerPlayer/m_8965_ ()Lnet/minecraft/core/SectionPos; net/minecraft/server/level/ServerPlayer/getLastSectionPos ()Lnet/minecraft/core/SectionPos; +MD: net/minecraft/server/level/ServerPlayer/m_8967_ ()Lnet/minecraft/server/network/TextFilter; net/minecraft/server/level/ServerPlayer/getTextFilter ()Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/level/ServerPlayer/m_8980_ (FFZZ)V net/minecraft/server/level/ServerPlayer/setPlayerInput (FFZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_8985_ (I)V net/minecraft/server/level/ServerPlayer/setExperiencePoints (I)V +MD: net/minecraft/server/level/ServerPlayer/m_8994_ (ILnet/minecraft/world/scores/Score;)V net/minecraft/server/level/ServerPlayer/lambda$awardStat$10 (ILnet/minecraft/world/scores/Score;)V +MD: net/minecraft/server/level/ServerPlayer/m_8999_ (Lnet/minecraft/server/level/ServerLevel;DDDFF)V net/minecraft/server/level/ServerPlayer/teleportTo (Lnet/minecraft/server/level/ServerLevel;DDDFF)V +MD: net/minecraft/server/level/ServerPlayer/m_9006_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/createEndPlatform (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_9015_ (Lnet/minecraft/server/level/ServerPlayer;Z)V net/minecraft/server/level/ServerPlayer/restoreFrom (Lnet/minecraft/server/level/ServerPlayer;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_9028_ (Lnet/minecraft/util/Unit;)V net/minecraft/server/level/ServerPlayer/lambda$startSleepInBed$9 (Lnet/minecraft/util/Unit;)V +MD: net/minecraft/server/level/ServerPlayer/m_9056_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/server/level/ServerPlayer/lambda$tellNeutralMobsThatIDied$7 (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/server/level/ServerPlayer/m_9061_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/server/level/ServerPlayer/lambda$startSleepInBed$8 (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9088_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ServerPlayer/untrackChunk (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_9104_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;I)V net/minecraft/server/level/ServerPlayer/updateScoreForCriteria (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;I)V +MD: net/minecraft/server/level/ServerPlayer/m_9107_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V net/minecraft/server/level/ServerPlayer/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V +MD: net/minecraft/server/level/ServerPlayer/m_9116_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/server/level/ServerPlayer/bedInRange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9119_ (Lnet/minecraft/core/SectionPos;)V net/minecraft/server/level/ServerPlayer/setLastSectionPos (Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_9124_ (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V net/minecraft/server/level/ServerPlayer/handleTeamKill (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V +MD: net/minecraft/server/level/ServerPlayer/m_9132_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/server/level/ServerPlayer/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/server/level/ServerPlayer/m_9156_ (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V net/minecraft/server/level/ServerPlayer/updateOptions (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V +MD: net/minecraft/server/level/ServerPlayer/m_9158_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;FZZ)V net/minecraft/server/level/ServerPlayer/setRespawnPosition (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;FZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_9174_ (I)V net/minecraft/server/level/ServerPlayer/setExperienceLevels (I)V +MD: net/minecraft/server/level/ServerPlayer/m_9176_ (ILnet/minecraft/world/scores/Score;)V net/minecraft/server/level/ServerPlayer/lambda$updateScoreForCriteria$3 (ILnet/minecraft/world/scores/Score;)V +MD: net/minecraft/server/level/ServerPlayer/m_9187_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/server/level/ServerPlayer/lambda$tellNeutralMobsThatIDied$6 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9191_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/server/level/ServerPlayer/bedBlocked (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9201_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayer/fudgeSpawnLocation (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayer/m_9209_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayer/triggerDimensionChangeTriggers (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayer/m_9213_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/setCamera (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_9215_ ()V net/minecraft/server/level/ServerPlayer/tellNeutralMobsThatIDied ()V +MD: net/minecraft/server/level/ServerPlayer/m_9216_ ()Z net/minecraft/server/level/ServerPlayer/isPvpAllowed ()Z +MD: net/minecraft/server/level/ServerPlayer/m_9217_ ()V net/minecraft/server/level/ServerPlayer/nextContainerCounter ()V +MD: net/minecraft/server/level/ServerPlayer/m_9222_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerPlayer/isReachableBedBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9230_ ()V net/minecraft/server/level/ServerPlayer/doCloseContainer ()V +MD: net/minecraft/server/level/ServerPlayer/m_9231_ ()V net/minecraft/server/level/ServerPlayer/disconnect ()V +MD: net/minecraft/server/level/ServerPlayer/m_9232_ ()Z net/minecraft/server/level/ServerPlayer/hasDisconnected ()Z +MD: net/minecraft/server/level/ServerPlayer/m_9233_ ()V net/minecraft/server/level/ServerPlayer/resetSentInfo ()V +MD: net/minecraft/server/level/ServerPlayer/m_9237_ (I)I net/minecraft/server/level/ServerPlayer/getCoprime (I)I +MD: net/minecraft/server/level/ServerPlayer/m_9239_ ()Ljava/lang/String; net/minecraft/server/level/ServerPlayer/getIpAddress ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerPlayer/m_9240_ ()V net/minecraft/server/level/ServerPlayer/doTick ()V +MD: net/minecraft/server/level/ServerPlayer/m_9241_ ()Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/server/level/ServerPlayer/getChatVisibility ()Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/server/level/ServerPlayer/m_9243_ ()V net/minecraft/server/level/ServerPlayer/resetLastActionTime ()V +MD: net/minecraft/server/level/ServerPlayer$1/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerPlayer$1/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142074_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer$1/sendSlotChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142145_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/server/level/ServerPlayer$1/sendDataChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142529_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer$1/sendCarriedChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142589_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V net/minecraft/server/level/ServerPlayer$1/sendInitialData (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V +MD: net/minecraft/server/level/ServerPlayer$1/m_143454_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/server/level/ServerPlayer$1/broadcastDataValue (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/server/level/ServerPlayer$2/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerPlayer$2/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerPlayer$2/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/server/level/ServerPlayer$2/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/server/level/ServerPlayer$2/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer$2/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/ ()V net/minecraft/server/level/ServerPlayerGameMode/ ()V +MD: net/minecraft/server/level/ServerPlayerGameMode/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerPlayerGameMode/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_143473_ (Lnet/minecraft/world/level/GameType;)Z net/minecraft/server/level/ServerPlayerGameMode/changeGameModeForPlayer (Lnet/minecraft/world/level/GameType;)Z +MD: net/minecraft/server/level/ServerPlayerGameMode/m_214168_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V net/minecraft/server/level/ServerPlayerGameMode/handleBlockBreakAction (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_215116_ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;)V net/minecraft/server/level/ServerPlayerGameMode/destroyAndAck (Lnet/minecraft/core/BlockPos;ILjava/lang/String;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_215125_ (Lnet/minecraft/core/BlockPos;ZILjava/lang/String;)V net/minecraft/server/level/ServerPlayerGameMode/debugLogging (Lnet/minecraft/core/BlockPos;ZILjava/lang/String;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_6261_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/ServerPlayerGameMode/useItem (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_7179_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/ServerPlayerGameMode/useItemOn (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_7712_ ()V net/minecraft/server/level/ServerPlayerGameMode/tick ()V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9260_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayerGameMode/setLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9273_ (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V net/minecraft/server/level/ServerPlayerGameMode/setGameModeForPlayer (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9276_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)F net/minecraft/server/level/ServerPlayerGameMode/incrementDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)F +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9280_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerPlayerGameMode/destroyBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9290_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayerGameMode/getGameModeForPlayer ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9293_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayerGameMode/getPreviousGameModeForPlayer ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9294_ ()Z net/minecraft/server/level/ServerPlayerGameMode/isSurvival ()Z +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9295_ ()Z net/minecraft/server/level/ServerPlayerGameMode/isCreative ()Z +MD: net/minecraft/server/level/ThreadedLevelLightEngine/ ()V net/minecraft/server/level/ThreadedLevelLightEngine/ ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/server/level/ChunkMap;ZLnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ThreadedLevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/server/level/ChunkMap;ZLnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/close ()V net/minecraft/server/level/ThreadedLevelLightEngine/close ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215133_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$22 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215148_ (Lnet/minecraft/core/SectionPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$queueSectionData$14 (Lnet/minecraft/core/SectionPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215153_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$setLightEnabled$11 (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215156_ ()V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$tryScheduleUpdate$27 ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_279897_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$25 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_279898_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$26 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_283997_ (ZLnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$23 (ZLnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_283998_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$setLightEnabled$10 (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_283999_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateChunkStatus$4 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284000_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$queueSectionData$13 (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284001_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$propagateLightSources$8 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284002_ (Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$addTask$15 (Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284003_ (Lnet/minecraft/world/level/ChunkPos;ZLnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$21 (Lnet/minecraft/world/level/ChunkPos;ZLnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284126_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/server/level/ThreadedLevelLightEngine/queueSectionData (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284138_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ThreadedLevelLightEngine/initializeLight (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_288117_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$19 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_6462_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/retainData (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9312_ (IILnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/addTask (IILnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9317_ (IILjava/util/function/IntSupplier;Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/addTask (IILjava/util/function/IntSupplier;Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9323_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/runLightUpdates ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9330_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/updateChunkStatus (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9353_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ThreadedLevelLightEngine/lightChunk (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9361_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$20 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9366_ ()V net/minecraft/server/level/ThreadedLevelLightEngine/runUpdate ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9367_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$propagateLightSources$9 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9377_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$checkBlock$1 (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9379_ (Lnet/minecraft/core/SectionPos;Z)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateSectionStatus$7 (Lnet/minecraft/core/SectionPos;Z)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9383_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$retainData$18 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9388_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$checkBlock$0 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9390_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateSectionStatus$6 (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9394_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$retainData$16 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9395_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateChunkStatus$3 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9397_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$retainData$17 (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9400_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$queueSectionData$12 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9401_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$24 (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9404_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateSectionStatus$5 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9408_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateChunkStatus$2 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9409_ ()V net/minecraft/server/level/ThreadedLevelLightEngine/tryScheduleUpdate ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ ()V net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ (Ljava/lang/String;I)V net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ (Ljava/lang/String;I)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/m_143478_ ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/$values ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/values ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/values ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +MD: net/minecraft/server/level/Ticket/ (Lnet/minecraft/server/level/TicketType;ILjava/lang/Object;)V net/minecraft/server/level/Ticket/ (Lnet/minecraft/server/level/TicketType;ILjava/lang/Object;)V +MD: net/minecraft/server/level/Ticket/compareTo (Lnet/minecraft/server/level/Ticket;)I net/minecraft/server/level/Ticket/compareTo (Lnet/minecraft/server/level/Ticket;)I +MD: net/minecraft/server/level/Ticket/compareTo (Ljava/lang/Object;)I net/minecraft/server/level/Ticket/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/server/level/Ticket/equals (Ljava/lang/Object;)Z net/minecraft/server/level/Ticket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/Ticket/hashCode ()I net/minecraft/server/level/Ticket/hashCode ()I +MD: net/minecraft/server/level/Ticket/m_9428_ ()Lnet/minecraft/server/level/TicketType; net/minecraft/server/level/Ticket/getType ()Lnet/minecraft/server/level/TicketType; +MD: net/minecraft/server/level/Ticket/m_9429_ (J)V net/minecraft/server/level/Ticket/setCreatedTick (J)V +MD: net/minecraft/server/level/Ticket/m_9433_ ()I net/minecraft/server/level/Ticket/getTicketLevel ()I +MD: net/minecraft/server/level/Ticket/m_9434_ (J)Z net/minecraft/server/level/Ticket/timedOut (J)Z +MD: net/minecraft/server/level/Ticket/toString ()Ljava/lang/String; net/minecraft/server/level/Ticket/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/TicketType/ ()V net/minecraft/server/level/TicketType/ ()V +MD: net/minecraft/server/level/TicketType/ (Ljava/lang/String;Ljava/util/Comparator;J)V net/minecraft/server/level/TicketType/ (Ljava/lang/String;Ljava/util/Comparator;J)V +MD: net/minecraft/server/level/TicketType/m_9458_ ()Ljava/util/Comparator; net/minecraft/server/level/TicketType/getComparator ()Ljava/util/Comparator; +MD: net/minecraft/server/level/TicketType/m_9459_ (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I net/minecraft/server/level/TicketType/lambda$static$1 (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I +MD: net/minecraft/server/level/TicketType/m_9462_ (Ljava/lang/String;Ljava/util/Comparator;)Lnet/minecraft/server/level/TicketType; net/minecraft/server/level/TicketType/create (Ljava/lang/String;Ljava/util/Comparator;)Lnet/minecraft/server/level/TicketType; +MD: net/minecraft/server/level/TicketType/m_9465_ (Ljava/lang/String;Ljava/util/Comparator;I)Lnet/minecraft/server/level/TicketType; net/minecraft/server/level/TicketType/create (Ljava/lang/String;Ljava/util/Comparator;I)Lnet/minecraft/server/level/TicketType; +MD: net/minecraft/server/level/TicketType/m_9469_ ()J net/minecraft/server/level/TicketType/timeout ()J +MD: net/minecraft/server/level/TicketType/m_9470_ (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I net/minecraft/server/level/TicketType/lambda$static$0 (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I +MD: net/minecraft/server/level/TicketType/toString ()Ljava/lang/String; net/minecraft/server/level/TicketType/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/TickingTracker/ ()V net/minecraft/server/level/TickingTracker/ ()V +MD: net/minecraft/server/level/TickingTracker/m_184145_ ()V net/minecraft/server/level/TickingTracker/runAllUpdates ()V +MD: net/minecraft/server/level/TickingTracker/m_184146_ (I)V net/minecraft/server/level/TickingTracker/replacePlayerTicketsLevel (I)V +MD: net/minecraft/server/level/TickingTracker/m_184151_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/TickingTracker/addTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/TickingTracker/m_184154_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/TickingTracker/addTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/TickingTracker/m_184159_ (Lnet/minecraft/util/SortedArraySet;)I net/minecraft/server/level/TickingTracker/getTicketLevelAt (Lnet/minecraft/util/SortedArraySet;)I +MD: net/minecraft/server/level/TickingTracker/m_184161_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/server/level/TickingTracker/getLevel (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/server/level/TickingTracker/m_184165_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/TickingTracker/removeTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/TickingTracker/m_184168_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/TickingTracker/removeTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/TickingTracker/m_184175_ (J)Ljava/lang/String; net/minecraft/server/level/TickingTracker/getTicketDebugString (J)Ljava/lang/String; +MD: net/minecraft/server/level/TickingTracker/m_184177_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/TickingTracker/getTickets (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/TickingTracker/m_184179_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/TickingTracker/lambda$getTickets$0 (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/TickingTracker/m_6172_ (J)I net/minecraft/server/level/TickingTracker/getLevel (J)I +MD: net/minecraft/server/level/TickingTracker/m_7031_ (J)I net/minecraft/server/level/TickingTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/TickingTracker/m_7351_ (JI)V net/minecraft/server/level/TickingTracker/setLevel (JI)V +MD: net/minecraft/server/level/WorldGenRegion/ ()V net/minecraft/server/level/WorldGenRegion/ ()V +MD: net/minecraft/server/level/WorldGenRegion/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkStatus;I)V net/minecraft/server/level/WorldGenRegion/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkStatus;I)V +MD: net/minecraft/server/level/WorldGenRegion/m_141928_ ()I net/minecraft/server/level/WorldGenRegion/getHeight ()I +MD: net/minecraft/server/level/WorldGenRegion/m_141937_ ()I net/minecraft/server/level/WorldGenRegion/getMinBuildHeight ()I +MD: net/minecraft/server/level/WorldGenRegion/m_142425_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/WorldGenRegion/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/WorldGenRegion/m_142433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/server/level/WorldGenRegion/isFluidAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_143488_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/server/level/WorldGenRegion/getCenter ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/server/level/WorldGenRegion/m_143497_ (Ljava/util/function/Supplier;)V net/minecraft/server/level/WorldGenRegion/setCurrentlyGenerating (Ljava/util/function/Supplier;)V +MD: net/minecraft/server/level/WorldGenRegion/m_180807_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/WorldGenRegion/ensureCanWrite (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/WorldGenRegion/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/WorldGenRegion/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_183596_ ()J net/minecraft/server/level/WorldGenRegion/nextSubTickCount ()J +MD: net/minecraft/server/level/WorldGenRegion/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/server/level/WorldGenRegion/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/server/level/WorldGenRegion/m_213780_ ()Lnet/minecraft/util/RandomSource; net/minecraft/server/level/WorldGenRegion/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/server/level/WorldGenRegion/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/server/level/WorldGenRegion/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/server/level/WorldGenRegion/m_215159_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/server/level/WorldGenRegion/isOldChunkAround (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/server/level/WorldGenRegion/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/level/WorldGenRegion/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/level/WorldGenRegion/m_276730_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/server/level/WorldGenRegion/lambda$new$0 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_276731_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/server/level/WorldGenRegion/lambda$new$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/server/level/WorldGenRegion/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/server/level/WorldGenRegion/m_5594_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/server/level/WorldGenRegion/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/server/level/WorldGenRegion/m_5736_ ()I net/minecraft/server/level/WorldGenRegion/getSeaLevel ()I +MD: net/minecraft/server/level/WorldGenRegion/m_5776_ ()Z net/minecraft/server/level/WorldGenRegion/isClientSide ()Z +MD: net/minecraft/server/level/WorldGenRegion/m_5788_ (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; net/minecraft/server/level/WorldGenRegion/getNearestPlayer (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/server/level/WorldGenRegion/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/WorldGenRegion/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/WorldGenRegion/m_6018_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/level/WorldGenRegion/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/level/WorldGenRegion/m_6042_ ()Lnet/minecraft/world/level/dimension/DimensionType; net/minecraft/server/level/WorldGenRegion/dimensionType ()Lnet/minecraft/world/level/dimension/DimensionType; +MD: net/minecraft/server/level/WorldGenRegion/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/server/level/WorldGenRegion/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/server/level/WorldGenRegion/m_6249_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/WorldGenRegion/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/WorldGenRegion/m_6325_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/WorldGenRegion/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/server/level/WorldGenRegion/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/server/level/WorldGenRegion/m_6436_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; net/minecraft/server/level/WorldGenRegion/getCurrentDifficultyAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; +MD: net/minecraft/server/level/WorldGenRegion/m_6522_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/WorldGenRegion/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/server/level/WorldGenRegion/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/server/level/WorldGenRegion/m_6907_ ()Ljava/util/List; net/minecraft/server/level/WorldGenRegion/players ()Ljava/util/List; +MD: net/minecraft/server/level/WorldGenRegion/m_6924_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/server/level/WorldGenRegion/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/server/level/WorldGenRegion/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/server/level/WorldGenRegion/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7062_ ()Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/server/level/WorldGenRegion/getBiomeManager ()Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/server/level/WorldGenRegion/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/server/level/WorldGenRegion/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/server/level/WorldGenRegion/m_7232_ (II)Z net/minecraft/server/level/WorldGenRegion/hasChunk (II)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7328_ ()J net/minecraft/server/level/WorldGenRegion/getSeed ()J +MD: net/minecraft/server/level/WorldGenRegion/m_7433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/server/level/WorldGenRegion/isStateAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7445_ ()I net/minecraft/server/level/WorldGenRegion/getSkyDarken ()I +MD: net/minecraft/server/level/WorldGenRegion/m_7471_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/server/level/WorldGenRegion/removeBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/level/WorldGenRegion/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/level/WorldGenRegion/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/server/level/WorldGenRegion/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/server/level/WorldGenRegion/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/server/level/WorldGenRegion/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/server/level/WorldGenRegion/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/server/level/WorldGenRegion/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/server/level/WorldGenRegion/m_7740_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z net/minecraft/server/level/WorldGenRegion/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7967_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/WorldGenRegion/addFreshEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/server/level/WorldGenRegion/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/server/level/WorldGenRegion/m_9591_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/WorldGenRegion/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/WorldGenRegion/m_9598_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/server/level/WorldGenRegion/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/ChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/ChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/ChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/ChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/ChunkProgressListenerFactory/m_9620_ (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; net/minecraft/server/level/progress/ChunkProgressListenerFactory/create (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/ ()V net/minecraft/server/level/progress/LoggerChunkProgressListener/ ()V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/ (I)V net/minecraft/server/level/progress/LoggerChunkProgressListener/ (I)V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/LoggerChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/LoggerChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/LoggerChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_9636_ ()I net/minecraft/server/level/progress/LoggerChunkProgressListener/getProgress ()I +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/LoggerChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/ (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/ (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_143583_ (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)Lnet/minecraft/server/level/progress/ProcessorChunkProgressListener; net/minecraft/server/level/progress/ProcessorChunkProgressListener/createStarted (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)Lnet/minecraft/server/level/progress/ProcessorChunkProgressListener; +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/ProcessorChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_9648_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/lambda$updateSpawnPos$0 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_9650_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/lambda$onStatusChange$1 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/ProcessorChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/ (I)V net/minecraft/server/level/progress/StoringChunkProgressListener/ (I)V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/StoringChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/StoringChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/StoringChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/StoringChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9663_ (II)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/progress/StoringChunkProgressListener/getStatus (II)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9672_ ()I net/minecraft/server/level/progress/StoringChunkProgressListener/getFullDiameter ()I +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9673_ ()I net/minecraft/server/level/progress/StoringChunkProgressListener/getDiameter ()I +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9674_ ()I net/minecraft/server/level/progress/StoringChunkProgressListener/getProgress ()I +MD: net/minecraft/server/network/FilteredText/ ()V net/minecraft/server/network/FilteredText/ ()V +MD: net/minecraft/server/network/FilteredText/ (Ljava/lang/String;Lnet/minecraft/network/chat/FilterMask;)V net/minecraft/server/network/FilteredText/ (Ljava/lang/String;Lnet/minecraft/network/chat/FilterMask;)V +MD: net/minecraft/server/network/FilteredText/equals (Ljava/lang/Object;)Z net/minecraft/server/network/FilteredText/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/network/FilteredText/f_215168_ ()Ljava/lang/String; net/minecraft/server/network/FilteredText/raw ()Ljava/lang/String; +MD: net/minecraft/server/network/FilteredText/f_243010_ ()Lnet/minecraft/network/chat/FilterMask; net/minecraft/server/network/FilteredText/mask ()Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/server/network/FilteredText/hashCode ()I net/minecraft/server/network/FilteredText/hashCode ()I +MD: net/minecraft/server/network/FilteredText/m_215174_ ()Z net/minecraft/server/network/FilteredText/isFiltered ()Z +MD: net/minecraft/server/network/FilteredText/m_243054_ (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; net/minecraft/server/network/FilteredText/passThrough (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; +MD: net/minecraft/server/network/FilteredText/m_243090_ ()Ljava/lang/String; net/minecraft/server/network/FilteredText/filtered ()Ljava/lang/String; +MD: net/minecraft/server/network/FilteredText/m_243113_ ()Ljava/lang/String; net/minecraft/server/network/FilteredText/filteredOrEmpty ()Ljava/lang/String; +MD: net/minecraft/server/network/FilteredText/m_243131_ (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; net/minecraft/server/network/FilteredText/fullyFiltered (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; +MD: net/minecraft/server/network/FilteredText/toString ()Ljava/lang/String; net/minecraft/server/network/FilteredText/toString ()Ljava/lang/String; +MD: net/minecraft/server/network/LegacyQueryHandler/ ()V net/minecraft/server/network/LegacyQueryHandler/ ()V +MD: net/minecraft/server/network/LegacyQueryHandler/ (Lnet/minecraft/server/network/ServerConnectionListener;)V net/minecraft/server/network/LegacyQueryHandler/ (Lnet/minecraft/server/network/ServerConnectionListener;)V +MD: net/minecraft/server/network/LegacyQueryHandler/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/LegacyQueryHandler/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/LegacyQueryHandler/m_9680_ (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V net/minecraft/server/network/LegacyQueryHandler/sendFlushAndClose (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/server/network/LegacyQueryHandler/m_9683_ (Ljava/lang/String;)Lio/netty/buffer/ByteBuf; net/minecraft/server/network/LegacyQueryHandler/createReply (Ljava/lang/String;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/m_7322_ (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/handleIntention (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V +MD: net/minecraft/server/network/ServerConnectionListener/ ()V net/minecraft/server/network/ServerConnectionListener/ ()V +MD: net/minecraft/server/network/ServerConnectionListener/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/network/ServerConnectionListener/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/network/ServerConnectionListener/m_184193_ ()Ljava/util/List; net/minecraft/server/network/ServerConnectionListener/getConnections ()Ljava/util/List; +MD: net/minecraft/server/network/ServerConnectionListener/m_9708_ ()Ljava/net/SocketAddress; net/minecraft/server/network/ServerConnectionListener/startMemoryChannel ()Ljava/net/SocketAddress; +MD: net/minecraft/server/network/ServerConnectionListener/m_9711_ (Ljava/net/InetAddress;I)V net/minecraft/server/network/ServerConnectionListener/startTcpServerListener (Ljava/net/InetAddress;I)V +MD: net/minecraft/server/network/ServerConnectionListener/m_9714_ (Lnet/minecraft/network/Connection;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerConnectionListener/lambda$tick$2 (Lnet/minecraft/network/Connection;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerConnectionListener/m_9718_ ()V net/minecraft/server/network/ServerConnectionListener/stop ()V +MD: net/minecraft/server/network/ServerConnectionListener/m_9721_ ()V net/minecraft/server/network/ServerConnectionListener/tick ()V +MD: net/minecraft/server/network/ServerConnectionListener/m_9722_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/network/ServerConnectionListener/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/network/ServerConnectionListener/m_9723_ ()Lio/netty/channel/epoll/EpollEventLoopGroup; net/minecraft/server/network/ServerConnectionListener/lambda$static$1 ()Lio/netty/channel/epoll/EpollEventLoopGroup; +MD: net/minecraft/server/network/ServerConnectionListener/m_9724_ ()Lio/netty/channel/nio/NioEventLoopGroup; net/minecraft/server/network/ServerConnectionListener/lambda$static$0 ()Lio/netty/channel/nio/NioEventLoopGroup; +MD: net/minecraft/server/network/ServerConnectionListener$1/ (Lnet/minecraft/server/network/ServerConnectionListener;)V net/minecraft/server/network/ServerConnectionListener$1/ (Lnet/minecraft/server/network/ServerConnectionListener;)V +MD: net/minecraft/server/network/ServerConnectionListener$1/initChannel (Lio/netty/channel/Channel;)V net/minecraft/server/network/ServerConnectionListener$1/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/server/network/ServerConnectionListener$2/ (Lnet/minecraft/server/network/ServerConnectionListener;)V net/minecraft/server/network/ServerConnectionListener$2/ (Lnet/minecraft/server/network/ServerConnectionListener;)V +MD: net/minecraft/server/network/ServerConnectionListener$2/initChannel (Lio/netty/channel/Channel;)V net/minecraft/server/network/ServerConnectionListener$2/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ ()V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ ()V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ (II)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ (II)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/m_143595_ (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/delayDownstream (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/m_143598_ (Lio/netty/util/Timeout;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/onTimeout (Lio/netty/util/Timeout;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/ (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/ (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/network/ServerGamePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_142110_ (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePong (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_142253_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/network/ServerGamePacketListenerImpl/getPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143609_ (D)D net/minecraft/server/network/ServerGamePacketListenerImpl/clampHorizontal (D)D +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143625_ (ILjava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleEditBook$4 (ILjava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143634_ (Ljava/util/List;Ljava/util/function/UnaryOperator;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/network/ServerGamePacketListenerImpl/updateBookPages (Ljava/util/List;Ljava/util/function/UnaryOperator;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143653_ (D)D net/minecraft/server/network/ServerGamePacketListenerImpl/clampVertical (D)D +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143658_ (Lnet/minecraft/network/protocol/Packet;)Ljava/lang/String; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$send$7 (Lnet/minecraft/network/protocol/Packet;)Ljava/lang/String; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143663_ (DDDFF)Z net/minecraft/server/network/ServerGamePacketListenerImpl/containsInvalidValues (DDDFF)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_184201_ (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;Lcom/mojang/brigadier/suggestion/Suggestions;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleCustomCommandSuggestions$2 (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;Lcom/mojang/brigadier/suggestion/Suggestions;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_214047_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChatCommand (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215201_ (I)V net/minecraft/server/network/ServerGamePacketListenerImpl/ackBlockChangesUpTo (I)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215203_ (ILjava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleEditBook$3 (ILjava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215208_ (Lnet/minecraft/server/network/FilteredText;Ljava/util/List;I)V net/minecraft/server/network/ServerGamePacketListenerImpl/signBook (Lnet/minecraft/server/network/FilteredText;Ljava/util/List;I)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215214_ (Ljava/lang/String;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/isChatMessageIllegal (Ljava/lang/String;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215236_ (Ljava/time/Instant;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/updateChatOrder (Ljava/time/Instant;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215243_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleSignUpdate$14 (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215251_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/detectRateSpam ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_238207_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$signBook$5 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_241885_ (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChatAck (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_241992_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/network/ServerGamePacketListenerImpl/addPendingMessage (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_242538_ (Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$performChatCommand$12 (Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_242658_ (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; net/minecraft/server/network/ServerGamePacketListenerImpl/parseCommand (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243045_ (Ljava/util/function/UnaryOperator;Lnet/minecraft/server/network/FilteredText;)Lnet/minecraft/nbt/StringTag; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$updateBookPages$6 (Ljava/util/function/UnaryOperator;Lnet/minecraft/server/network/FilteredText;)Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243065_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/filterTextPacket (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243080_ (Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/filterTextPacket (Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243086_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/network/ServerGamePacketListenerImpl/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243119_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/server/network/ServerGamePacketListenerImpl/send (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243132_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/filterTextPacket (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244884_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChat$9 (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244885_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Ljava/util/Optional;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChatCommand$11 (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Ljava/util/Optional;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244886_ (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChat$8 (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244887_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Ljava/util/Optional;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChat$10 (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Ljava/util/Optional;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_245431_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/network/ServerGamePacketListenerImpl/sendPlayerChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_245578_ (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; net/minecraft/server/network/ServerGamePacketListenerImpl/unpackAndApplyLastSeen (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_245903_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/network/ServerGamePacketListenerImpl/sendDisguisedChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_246206_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/network/chat/LastSeenMessages;)Ljava/util/Map; net/minecraft/server/network/ServerGamePacketListenerImpl/collectSignedArguments (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/network/chat/LastSeenMessages;)Ljava/util/Map; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_246889_ (Lnet/minecraft/network/chat/SignedMessageChain$DecodeException;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleMessageDecodeFailure (Lnet/minecraft/network/chat/SignedMessageChain$DecodeException;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_246958_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/LastSeenMessages;)V net/minecraft/server/network/ServerGamePacketListenerImpl/performChatCommand (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/LastSeenMessages;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_247189_ (Ljava/lang/String;Ljava/time/Instant;Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; net/minecraft/server/network/ServerGamePacketListenerImpl/tryHandleChat (Ljava/lang/String;Ljava/time/Instant;Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_247340_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/server/network/ServerGamePacketListenerImpl/getSignedMessage (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_252662_ (Lnet/minecraft/network/chat/RemoteChatSession;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$resetPlayerChatState$15 (Lnet/minecraft/network/chat/RemoteChatSession;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_252797_ (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChatSessionUpdate (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_253005_ (Lnet/minecraft/network/chat/RemoteChatSession;)V net/minecraft/server/network/ServerGamePacketListenerImpl/resetPlayerChatState (Lnet/minecraft/network/chat/RemoteChatSession;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_263968_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$filterTextPacket$1 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_264262_ ()Ljava/net/SocketAddress; net/minecraft/server/network/ServerGamePacketListenerImpl/getRemoteAddress ()Ljava/net/SocketAddress; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_287055_ (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handlePlaceRecipe$13 (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_288208_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/phys/AABB;DDD)Z net/minecraft/server/network/ServerGamePacketListenerImpl/isPlayerCollidingWithAnythingNew (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/phys/AABB;DDD)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5527_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSignUpdate (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5591_ (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleRenameItem (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5617_ (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleClientInformation (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5659_ (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5681_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerCommand (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5683_ (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleKeepAlive (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5712_ (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetBeaconPacket (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5760_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleUseItem (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5914_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleContainerClick (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5918_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerInput (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5938_ (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePaddleBoat (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5964_ (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCreativeModeSlot (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerGamePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6272_ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleClientCommand (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6321_ (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSelectTrade (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6371_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleUseItemOn (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6449_ (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleJigsawGenerate (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6557_ (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleContainerButtonClick (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6629_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCommandMinecart (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6780_ (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleBlockEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6828_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6829_ (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleEditBook (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6936_ (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleTeleportToEntityPacket (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6946_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleInteract (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6947_ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSeenAdvancements (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerGamePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7185_ (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleMovePlayer (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7191_ (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7192_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCommandBlock (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7376_ (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleAcceptTeleportPacket (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7388_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChat (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7411_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleRecipeBookSeenRecipePacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7423_ (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleCustomPayload (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7424_ (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetStructureBlock (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7477_ (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7502_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerAction (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7529_ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleResourcePackResponse (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7548_ (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7728_ (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleLockDifficulty (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7741_ (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleCustomCommandSuggestions (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7798_ (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7951_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleContainerClose (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7953_ (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleAnimate (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7965_ (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePickItem (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7982_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleRecipeBookChangeSettingsPacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_8019_ (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetJigsawBlock (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9774_ (DDDFF)V net/minecraft/server/network/ServerGamePacketListenerImpl/teleport (DDDFF)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9780_ (DDDFFLjava/util/Set;)V net/minecraft/server/network/ServerGamePacketListenerImpl/teleport (DDDFFLjava/util/Set;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9790_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/wasBlockPlacementAttempt (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9793_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/noBlocksAround (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9812_ (Ljava/util/List;I)V net/minecraft/server/network/ServerGamePacketListenerImpl/updateBookContents (Ljava/util/List;I)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9826_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$disconnect$0 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9829_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/network/ServerGamePacketListenerImpl/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9922_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/updateSignText (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9933_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/tick ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9942_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerGamePacketListenerImpl/disconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9953_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/resetPosition ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9956_ ()Z net/minecraft/server/network/ServerGamePacketListenerImpl/isSingleplayerOwner ()Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerGamePacketListenerImpl;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerGamePacketListenerImpl;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_141994_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl$1/onAttack ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_142143_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/onInteraction (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_142299_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/onInteraction (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_143678_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/performInteraction (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_143684_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/network/ServerGamePacketListenerImpl$1/lambda$onInteraction$0 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/ ()V net/minecraft/server/network/ServerGamePacketListenerImpl$2/ ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction/m_143694_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction/run (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/ ()V net/minecraft/server/network/ServerHandshakePacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/ServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerHandshakePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerHandshakePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/m_7322_ (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V net/minecraft/server/network/ServerHandshakePacketListenerImpl/handleIntention (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/ ()V net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/ ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10038_ (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/network/ServerLoginPacketListenerImpl/createFakeProfile (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10040_ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/lambda$handleAcceptedLogin$0 ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10053_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/disconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10055_ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleAcceptedLogin ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10056_ ()Ljava/lang/String; net/minecraft/server/network/ServerLoginPacketListenerImpl/getUserName ()Ljava/lang/String; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_143699_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/placeNewPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_203790_ (I)Z net/minecraft/server/network/ServerLoginPacketListenerImpl/lambda$isValidUsername$1 (I)Z +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_203792_ (Ljava/lang/String;)Z net/minecraft/server/network/ServerLoginPacketListenerImpl/isValidUsername (Ljava/lang/String;)Z +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_5990_ (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleHello (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerLoginPacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_7223_ (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleCustomQueryPacket (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_8072_ (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleKey (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_9933_ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/tick ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerLoginPacketListenerImpl;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/server/network/ServerLoginPacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerLoginPacketListenerImpl;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/m_10064_ ()Ljava/net/InetAddress; net/minecraft/server/network/ServerLoginPacketListenerImpl$1/getAddress ()Ljava/net/InetAddress; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/run ()V net/minecraft/server/network/ServerLoginPacketListenerImpl$1/run ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ (Ljava/lang/String;I)V net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ (Ljava/lang/String;I)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/m_143701_ ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; net/minecraft/server/network/ServerLoginPacketListenerImpl$State/$values ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/valueOf (Ljava/lang/String;)Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; net/minecraft/server/network/ServerLoginPacketListenerImpl$State/valueOf (Ljava/lang/String;)Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/values ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; net/minecraft/server/network/ServerLoginPacketListenerImpl$State/values ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +MD: net/minecraft/server/network/ServerPlayerConnection/m_142253_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/network/ServerPlayerConnection/getPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/network/ServerPlayerConnection/m_9829_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/network/ServerPlayerConnection/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/ ()V net/minecraft/server/network/ServerStatusPacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/ (Lnet/minecraft/network/protocol/status/ServerStatus;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/ (Lnet/minecraft/network/protocol/status/ServerStatus;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerStatusPacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_6733_ (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/handleStatusRequest (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_7883_ (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/handlePingRequest (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V +MD: net/minecraft/server/network/TextFilter/ ()V net/minecraft/server/network/TextFilter/ ()V +MD: net/minecraft/server/network/TextFilter/m_5925_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter/processMessageBundle (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter/m_6770_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter/processStreamMessage (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter/m_7670_ ()V net/minecraft/server/network/TextFilter/leave ()V +MD: net/minecraft/server/network/TextFilter/m_7674_ ()V net/minecraft/server/network/TextFilter/join ()V +MD: net/minecraft/server/network/TextFilter$1/ ()V net/minecraft/server/network/TextFilter$1/ ()V +MD: net/minecraft/server/network/TextFilter$1/m_5925_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter$1/processMessageBundle (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter$1/m_6770_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter$1/processStreamMessage (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter$1/m_7670_ ()V net/minecraft/server/network/TextFilter$1/leave ()V +MD: net/minecraft/server/network/TextFilter$1/m_7674_ ()V net/minecraft/server/network/TextFilter$1/join ()V +MD: net/minecraft/server/network/TextFilterClient/ ()V net/minecraft/server/network/TextFilterClient/ ()V +MD: net/minecraft/server/network/TextFilterClient/ (Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$MessageEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;I)V net/minecraft/server/network/TextFilterClient/ (Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$MessageEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;I)V +MD: net/minecraft/server/network/TextFilterClient/close ()V net/minecraft/server/network/TextFilterClient/close ()V +MD: net/minecraft/server/network/TextFilterClient/m_10127_ (Lcom/google/gson/JsonObject;Ljava/net/URL;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/processRequestResponse (Lcom/google/gson/JsonObject;Ljava/net/URL;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_10134_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/network/TextFilter; net/minecraft/server/network/TextFilterClient/createContext (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/network/TextFilterClient/m_10136_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient/requestMessageProcessing (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient/m_10145_ (Ljava/io/InputStream;)V net/minecraft/server/network/TextFilterClient/drainStream (Ljava/io/InputStream;)V +MD: net/minecraft/server/network/TextFilterClient/m_10147_ (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/server/network/TextFilterClient/lambda$static$0 (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/server/network/TextFilterClient/m_10151_ (Lcom/google/gson/JsonObject;Ljava/net/URL;)V net/minecraft/server/network/TextFilterClient/processRequest (Lcom/google/gson/JsonObject;Ljava/net/URL;)V +MD: net/minecraft/server/network/TextFilterClient/m_10156_ (Lcom/google/gson/JsonObject;Ljava/net/URL;)Ljava/net/HttpURLConnection; net/minecraft/server/network/TextFilterClient/makeRequest (Lcom/google/gson/JsonObject;Ljava/net/URL;)Ljava/net/HttpURLConnection; +MD: net/minecraft/server/network/TextFilterClient/m_143736_ (Ljava/lang/String;)Lnet/minecraft/server/network/TextFilterClient; net/minecraft/server/network/TextFilterClient/createFromConfig (Ljava/lang/String;)Lnet/minecraft/server/network/TextFilterClient; +MD: net/minecraft/server/network/TextFilterClient/m_212245_ (Ljava/net/URI;Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/net/URL; net/minecraft/server/network/TextFilterClient/getEndpoint (Ljava/net/URI;Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/net/URL; +MD: net/minecraft/server/network/TextFilterClient/m_215290_ (Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Lcom/mojang/authlib/GameProfile;Ljava/net/URL;)V net/minecraft/server/network/TextFilterClient/lambda$processJoinOrLeave$4 (Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Lcom/mojang/authlib/GameProfile;Ljava/net/URL;)V +MD: net/minecraft/server/network/TextFilterClient/m_215294_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/network/TextFilterClient/getEndpointFromConfig (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/network/TextFilterClient/m_215302_ (Lcom/mojang/authlib/GameProfile;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/util/concurrent/Executor;)V net/minecraft/server/network/TextFilterClient/processJoinOrLeave (Lcom/mojang/authlib/GameProfile;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/network/TextFilterClient/m_215307_ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/lambda$createFromConfig$1 (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_238210_ (ILjava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/lambda$createFromConfig$2 (ILjava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_238216_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/lambda$createFromConfig$3 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_243047_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/server/network/FilteredText; net/minecraft/server/network/TextFilterClient/lambda$requestMessageProcessing$5 (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/server/network/FilteredText; +MD: net/minecraft/server/network/TextFilterClient/m_243083_ (Ljava/lang/String;Lcom/google/gson/JsonArray;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/network/chat/FilterMask; net/minecraft/server/network/TextFilterClient/parseMask (Ljava/lang/String;Lcom/google/gson/JsonArray;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/ ()V net/minecraft/server/network/TextFilterClient$IgnoreStrategy/ ()V +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_10165_ (Ljava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/lambda$static$1 (Ljava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_10168_ (Ljava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/lambda$static$0 (Ljava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_10171_ (Ljava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/shouldIgnore (Ljava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_143738_ (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; net/minecraft/server/network/TextFilterClient$IgnoreStrategy/ignoreOverThreshold (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_143740_ (ILjava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/lambda$ignoreOverThreshold$2 (ILjava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_143744_ (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; net/minecraft/server/network/TextFilterClient$IgnoreStrategy/select (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; +MD: net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder/m_215317_ (Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder/encode (Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient$MessageEncoder/m_215319_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient$MessageEncoder/encode (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/ (Lnet/minecraft/server/network/TextFilterClient;Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/network/TextFilterClient$PlayerContext/ (Lnet/minecraft/server/network/TextFilterClient;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_10194_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient$PlayerContext/lambda$processMessageBundle$0 (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_143746_ (Ljava/lang/Throwable;)Ljava/util/List; net/minecraft/server/network/TextFilterClient$PlayerContext/lambda$processMessageBundle$1 (Ljava/lang/Throwable;)Ljava/util/List; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_5925_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient$PlayerContext/processMessageBundle (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_6770_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient$PlayerContext/processStreamMessage (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_7670_ ()V net/minecraft/server/network/TextFilterClient$PlayerContext/leave ()V +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_7674_ ()V net/minecraft/server/network/TextFilterClient$PlayerContext/join ()V +MD: net/minecraft/server/network/TextFilterClient$RequestFailedException/ (Ljava/lang/String;)V net/minecraft/server/network/TextFilterClient$RequestFailedException/ (Ljava/lang/String;)V +MD: net/minecraft/server/packs/AbstractPackResources/ ()V net/minecraft/server/packs/AbstractPackResources/ ()V +MD: net/minecraft/server/packs/AbstractPackResources/ (Ljava/lang/String;Z)V net/minecraft/server/packs/AbstractPackResources/ (Ljava/lang/String;Z)V +MD: net/minecraft/server/packs/AbstractPackResources/m_10214_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/io/InputStream;)Ljava/lang/Object; net/minecraft/server/packs/AbstractPackResources/getMetadataFromStream (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/io/InputStream;)Ljava/lang/Object; +MD: net/minecraft/server/packs/AbstractPackResources/m_246538_ ()Z net/minecraft/server/packs/AbstractPackResources/isBuiltin ()Z +MD: net/minecraft/server/packs/AbstractPackResources/m_5542_ ()Ljava/lang/String; net/minecraft/server/packs/AbstractPackResources/packId ()Ljava/lang/String; +MD: net/minecraft/server/packs/AbstractPackResources/m_5550_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/AbstractPackResources/getMetadataSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/BuiltInMetadata/ ()V net/minecraft/server/packs/BuiltInMetadata/ ()V +MD: net/minecraft/server/packs/BuiltInMetadata/ (Ljava/util/Map;)V net/minecraft/server/packs/BuiltInMetadata/ (Ljava/util/Map;)V +MD: net/minecraft/server/packs/BuiltInMetadata/m_245257_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; net/minecraft/server/packs/BuiltInMetadata/of (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; +MD: net/minecraft/server/packs/BuiltInMetadata/m_245920_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/BuiltInMetadata/get (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/BuiltInMetadata/m_246355_ ()Lnet/minecraft/server/packs/BuiltInMetadata; net/minecraft/server/packs/BuiltInMetadata/of ()Lnet/minecraft/server/packs/BuiltInMetadata; +MD: net/minecraft/server/packs/BuiltInMetadata/m_246652_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; net/minecraft/server/packs/BuiltInMetadata/of (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/ ()V net/minecraft/server/packs/FeatureFlagsMetadataSection/ ()V +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/server/packs/FeatureFlagsMetadataSection/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/FeatureFlagsMetadataSection/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244197_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/FeatureFlagsMetadataSection/flags ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/hashCode ()I net/minecraft/server/packs/FeatureFlagsMetadataSection/hashCode ()I +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/m_246586_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/server/packs/FeatureFlagsMetadataSection/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/toString ()Ljava/lang/String; net/minecraft/server/packs/FeatureFlagsMetadataSection/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/FilePackResources/ ()V net/minecraft/server/packs/FilePackResources/ ()V +MD: net/minecraft/server/packs/FilePackResources/ (Ljava/lang/String;Ljava/io/File;Z)V net/minecraft/server/packs/FilePackResources/ (Ljava/lang/String;Ljava/io/File;Z)V +MD: net/minecraft/server/packs/FilePackResources/close ()V net/minecraft/server/packs/FilePackResources/close ()V +MD: net/minecraft/server/packs/FilePackResources/finalize ()V net/minecraft/server/packs/FilePackResources/finalize ()V +MD: net/minecraft/server/packs/FilePackResources/m_10247_ ()Ljava/util/zip/ZipFile; net/minecraft/server/packs/FilePackResources/getOrCreateZipFile ()Ljava/util/zip/ZipFile; +MD: net/minecraft/server/packs/FilePackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/FilePackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/FilePackResources/m_245721_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/server/packs/FilePackResources/getPathFromLocation (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/server/packs/FilePackResources/m_247280_ (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/FilePackResources/getResource (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/FilePackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/FilePackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/FilePackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/FilePackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/FilePackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/FilePackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/PackResources/close ()V net/minecraft/server/packs/PackResources/close ()V +MD: net/minecraft/server/packs/PackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PackResources/m_246538_ ()Z net/minecraft/server/packs/PackResources/isBuiltin ()Z +MD: net/minecraft/server/packs/PackResources/m_5542_ ()Ljava/lang/String; net/minecraft/server/packs/PackResources/packId ()Ljava/lang/String; +MD: net/minecraft/server/packs/PackResources/m_5550_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/PackResources/getMetadataSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/PackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/PackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/PackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/PackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/PackType/ ()V net/minecraft/server/packs/PackType/ ()V +MD: net/minecraft/server/packs/PackType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/packs/PackType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/packs/PackType/m_10305_ ()Ljava/lang/String; net/minecraft/server/packs/PackType/getDirectory ()Ljava/lang/String; +MD: net/minecraft/server/packs/PackType/m_143758_ ()[Lnet/minecraft/server/packs/PackType; net/minecraft/server/packs/PackType/$values ()[Lnet/minecraft/server/packs/PackType; +MD: net/minecraft/server/packs/PackType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/PackType; net/minecraft/server/packs/PackType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/PackType; +MD: net/minecraft/server/packs/PackType/values ()[Lnet/minecraft/server/packs/PackType; net/minecraft/server/packs/PackType/values ()[Lnet/minecraft/server/packs/PackType; +MD: net/minecraft/server/packs/PathPackResources/ ()V net/minecraft/server/packs/PathPackResources/ ()V +MD: net/minecraft/server/packs/PathPackResources/ (Ljava/lang/String;Ljava/nio/file/Path;Z)V net/minecraft/server/packs/PathPackResources/ (Ljava/lang/String;Ljava/nio/file/Path;Z)V +MD: net/minecraft/server/packs/PathPackResources/close ()V net/minecraft/server/packs/PathPackResources/close ()V +MD: net/minecraft/server/packs/PathPackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_245378_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/util/List;)V net/minecraft/server/packs/PathPackResources/lambda$listResources$2 (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/util/List;)V +MD: net/minecraft/server/packs/PathPackResources/m_245898_ (Ljava/nio/file/Path;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/lambda$getResource$0 (Ljava/nio/file/Path;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_246537_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/lambda$getResource$1 (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_246877_ (Ljava/nio/file/Path;)Z net/minecraft/server/packs/PathPackResources/validatePath (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/PathPackResources/m_246914_ (Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/PathPackResources/listPath (Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/PathPackResources/m_246950_ (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/server/packs/PathPackResources/lambda$listResources$3 (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/server/packs/PathPackResources/m_246992_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/returnFileIfExists (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_247113_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/getResource (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_247260_ (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z net/minecraft/server/packs/PathPackResources/lambda$listPath$4 (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z +MD: net/minecraft/server/packs/PathPackResources/m_247327_ (Ljava/nio/file/Path;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/nio/file/Path;)V net/minecraft/server/packs/PathPackResources/lambda$listPath$5 (Ljava/nio/file/Path;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/PathPackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/PathPackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/PathPackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/PathPackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/VanillaPackResources/ ()V net/minecraft/server/packs/VanillaPackResources/ ()V +MD: net/minecraft/server/packs/VanillaPackResources/ (Lnet/minecraft/server/packs/BuiltInMetadata;Ljava/util/Set;Ljava/util/List;Ljava/util/Map;)V net/minecraft/server/packs/VanillaPackResources/ (Lnet/minecraft/server/packs/BuiltInMetadata;Ljava/util/Set;Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/server/packs/VanillaPackResources/close ()V net/minecraft/server/packs/VanillaPackResources/close ()V +MD: net/minecraft/server/packs/VanillaPackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_215363_ ()Lnet/minecraft/server/packs/resources/ResourceProvider; net/minecraft/server/packs/VanillaPackResources/asProvider ()Lnet/minecraft/server/packs/resources/ResourceProvider; +MD: net/minecraft/server/packs/VanillaPackResources/m_244888_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; net/minecraft/server/packs/VanillaPackResources/lambda$asProvider$6 (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; +MD: net/minecraft/server/packs/VanillaPackResources/m_244889_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/lambda$getResource$4 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_244890_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/util/List;)V net/minecraft/server/packs/VanillaPackResources/lambda$listResources$2 (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244891_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/lambda$getResource$5 (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_244892_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/server/packs/VanillaPackResources/lambda$listRawPaths$1 (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244893_ (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/server/packs/VanillaPackResources/lambda$listResources$3 (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244894_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/function/Consumer;Ljava/util/List;)V net/minecraft/server/packs/VanillaPackResources/lambda$listRawPaths$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/function/Consumer;Ljava/util/List;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244895_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/VanillaPackResources/lambda$asProvider$7 (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/VanillaPackResources/m_245163_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V net/minecraft/server/packs/VanillaPackResources/listRawPaths (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_246310_ (Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;)V net/minecraft/server/packs/VanillaPackResources/getResources (Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_246538_ ()Z net/minecraft/server/packs/VanillaPackResources/isBuiltin ()Z +MD: net/minecraft/server/packs/VanillaPackResources/m_5542_ ()Ljava/lang/String; net/minecraft/server/packs/VanillaPackResources/packId ()Ljava/lang/String; +MD: net/minecraft/server/packs/VanillaPackResources/m_5550_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/VanillaPackResources/getMetadataSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/VanillaPackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/VanillaPackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/VanillaPackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/VanillaPackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245153_ (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$pushJarResources$3 (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245371_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/exposeNamespace ([Ljava/lang/String;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245487_ (Ljava/nio/file/Path;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/pushRootPath (Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245630_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushUniversalPath (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245772_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/server/packs/VanillaPackResourcesBuilder/build ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245913_ (Lnet/minecraft/server/packs/BuiltInMetadata;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/setMetadata (Lnet/minecraft/server/packs/BuiltInMetadata;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246045_ (Ljava/net/URI;)Ljava/nio/file/Path; net/minecraft/server/packs/VanillaPackResourcesBuilder/safeGetPath (Ljava/net/URI;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246191_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$pushPathForType$2 (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246275_ (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushAssetPath (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246356_ (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/pushPathForType (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246373_ ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushJarResources ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246513_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/Class;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushClasspathResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/Class;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246520_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$static$1 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246678_ ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/applyDevelopmentConfig ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_247040_ (Ljava/nio/file/Path;)Z net/minecraft/server/packs/VanillaPackResourcesBuilder/validateDirPath (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_247168_ (Lnet/minecraft/server/packs/VanillaPackResourcesBuilder;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$static$0 (Lnet/minecraft/server/packs/VanillaPackResourcesBuilder;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_247634_ (Ljava/util/Collection;)Ljava/util/List; net/minecraft/server/packs/VanillaPackResourcesBuilder/copyAndReverse (Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/creationTime ()Ljava/nio/file/attribute/FileTime; net/minecraft/server/packs/linkfs/DummyFileAttributes/creationTime ()Ljava/nio/file/attribute/FileTime; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/fileKey ()Ljava/lang/Object; net/minecraft/server/packs/linkfs/DummyFileAttributes/fileKey ()Ljava/lang/Object; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/isOther ()Z net/minecraft/server/packs/linkfs/DummyFileAttributes/isOther ()Z +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/isSymbolicLink ()Z net/minecraft/server/packs/linkfs/DummyFileAttributes/isSymbolicLink ()Z +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/lastAccessTime ()Ljava/nio/file/attribute/FileTime; net/minecraft/server/packs/linkfs/DummyFileAttributes/lastAccessTime ()Ljava/nio/file/attribute/FileTime; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/lastModifiedTime ()Ljava/nio/file/attribute/FileTime; net/minecraft/server/packs/linkfs/DummyFileAttributes/lastModifiedTime ()Ljava/nio/file/attribute/FileTime; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/size ()J net/minecraft/server/packs/linkfs/DummyFileAttributes/size ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/ (Ljava/lang/String;)V net/minecraft/server/packs/linkfs/LinkFSFileStore/ (Ljava/lang/String;)V +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getAttribute (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/server/packs/linkfs/LinkFSFileStore/getAttribute (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getFileStoreAttributeView (Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView; net/minecraft/server/packs/linkfs/LinkFSFileStore/getFileStoreAttributeView (Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView; +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getTotalSpace ()J net/minecraft/server/packs/linkfs/LinkFSFileStore/getTotalSpace ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getUnallocatedSpace ()J net/minecraft/server/packs/linkfs/LinkFSFileStore/getUnallocatedSpace ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getUsableSpace ()J net/minecraft/server/packs/linkfs/LinkFSFileStore/getUsableSpace ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/isReadOnly ()Z net/minecraft/server/packs/linkfs/LinkFSFileStore/isReadOnly ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/name ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSFileStore/name ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/Class;)Z net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/Class;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/String;)Z net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/type ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSFileStore/type ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/ ()V net/minecraft/server/packs/linkfs/LinkFSPath/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSPath/ (Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Lnet/minecraft/server/packs/linkfs/PathContents;)V net/minecraft/server/packs/linkfs/LinkFSPath/ (Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Lnet/minecraft/server/packs/linkfs/PathContents;)V +MD: net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/lang/Object;)I net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/nio/file/Path;)I net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/nio/file/Path;)I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/endsWith (Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSPath/endsWith (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/LinkFSPath/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem; net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getNameCount ()I net/minecraft/server/packs/linkfs/LinkFSPath/getNameCount ()I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/hashCode ()I net/minecraft/server/packs/linkfs/LinkFSPath/hashCode ()I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/isAbsolute ()Z net/minecraft/server/packs/linkfs/LinkFSPath/isAbsolute ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245177_ ()Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents; net/minecraft/server/packs/linkfs/LinkFSPath/getDirectoryContents ()Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245307_ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/createRelativePath (Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245626_ ()Z net/minecraft/server/packs/linkfs/LinkFSPath/exists ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245789_ (Lnet/minecraft/server/packs/linkfs/PathContents;)Z net/minecraft/server/packs/linkfs/LinkFSPath/isRelativeOrMissing (Lnet/minecraft/server/packs/linkfs/PathContents;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245921_ ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSPath/pathToString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246014_ (Ljava/util/List;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/util/List;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246027_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/toLinkPath (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246070_ ()Ljava/util/List; net/minecraft/server/packs/linkfs/LinkFSPath/pathToRoot ()Ljava/util/List; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246308_ ()Ljava/nio/file/attribute/BasicFileAttributes; net/minecraft/server/packs/linkfs/LinkFSPath/getBasicAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246418_ ()Z net/minecraft/server/packs/linkfs/LinkFSPath/hasRealContents ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246530_ ()Ljava/nio/file/attribute/BasicFileAttributeView; net/minecraft/server/packs/linkfs/LinkFSPath/getBasicAttributeView ()Ljava/nio/file/attribute/BasicFileAttributeView; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_247488_ ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getTargetPath ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_247714_ (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/resolveName (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/register (Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey; net/minecraft/server/packs/linkfs/LinkFSPath/register (Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/startsWith (Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSPath/startsWith (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toFile ()Ljava/io/File; net/minecraft/server/packs/linkfs/LinkFSPath/toFile ()Ljava/io/File; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSPath/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toUri ()Ljava/net/URI; net/minecraft/server/packs/linkfs/LinkFSPath/toUri ()Ljava/net/URI; +MD: net/minecraft/server/packs/linkfs/LinkFSPath$1/ ()V net/minecraft/server/packs/linkfs/LinkFSPath$1/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSPath$1/isDirectory ()Z net/minecraft/server/packs/linkfs/LinkFSPath$1/isDirectory ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$1/isRegularFile ()Z net/minecraft/server/packs/linkfs/LinkFSPath$1/isRegularFile ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$2/ ()V net/minecraft/server/packs/linkfs/LinkFSPath$2/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSPath$2/isDirectory ()Z net/minecraft/server/packs/linkfs/LinkFSPath$2/isDirectory ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$2/isRegularFile ()Z net/minecraft/server/packs/linkfs/LinkFSPath$2/isRegularFile ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)V net/minecraft/server/packs/linkfs/LinkFSPath$3/ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)V +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/name ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSPath$3/name ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/readAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; net/minecraft/server/packs/linkfs/LinkFSPath$3/readAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/setTimes (Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V net/minecraft/server/packs/linkfs/LinkFSPath$3/setTimes (Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/ ()V net/minecraft/server/packs/linkfs/LinkFSProvider/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/checkAccess (Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V net/minecraft/server/packs/linkfs/LinkFSProvider/checkAccess (Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/copy (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V net/minecraft/server/packs/linkfs/LinkFSProvider/copy (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/createDirectory (Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V net/minecraft/server/packs/linkfs/LinkFSProvider/createDirectory (Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/delete (Ljava/nio/file/Path;)V net/minecraft/server/packs/linkfs/LinkFSProvider/delete (Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getFileAttributeView (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView; net/minecraft/server/packs/linkfs/LinkFSProvider/getFileAttributeView (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getFileStore (Ljava/nio/file/Path;)Ljava/nio/file/FileStore; net/minecraft/server/packs/linkfs/LinkFSProvider/getFileStore (Ljava/nio/file/Path;)Ljava/nio/file/FileStore; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getFileSystem (Ljava/net/URI;)Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFSProvider/getFileSystem (Ljava/net/URI;)Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getPath (Ljava/net/URI;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSProvider/getPath (Ljava/net/URI;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getScheme ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSProvider/getScheme ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/isHidden (Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSProvider/isHidden (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/isSameFile (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSProvider/isSameFile (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/m_245446_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSProvider/toLinkPath (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/move (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V net/minecraft/server/packs/linkfs/LinkFSProvider/move (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/newByteChannel (Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel; net/minecraft/server/packs/linkfs/LinkFSProvider/newByteChannel (Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/newDirectoryStream (Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream; net/minecraft/server/packs/linkfs/LinkFSProvider/newDirectoryStream (Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/newFileSystem (Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFSProvider/newFileSystem (Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes; net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map; net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/setAttribute (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V net/minecraft/server/packs/linkfs/LinkFSProvider/setAttribute (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/ (Lnet/minecraft/server/packs/linkfs/LinkFSProvider;Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents;Ljava/nio/file/DirectoryStream$Filter;)V net/minecraft/server/packs/linkfs/LinkFSProvider$1/ (Lnet/minecraft/server/packs/linkfs/LinkFSProvider;Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents;Ljava/nio/file/DirectoryStream$Filter;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/close ()V net/minecraft/server/packs/linkfs/LinkFSProvider$1/close ()V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/iterator ()Ljava/util/Iterator; net/minecraft/server/packs/linkfs/LinkFSProvider$1/iterator ()Ljava/util/Iterator; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/m_246573_ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSProvider$1/lambda$iterator$1 (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/m_247708_ (Ljava/nio/file/DirectoryStream$Filter;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Z net/minecraft/server/packs/linkfs/LinkFSProvider$1/lambda$iterator$0 (Ljava/nio/file/DirectoryStream$Filter;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$2/ ()V net/minecraft/server/packs/linkfs/LinkFSProvider$2/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/ ()V net/minecraft/server/packs/linkfs/LinkFileSystem/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/ (Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V net/minecraft/server/packs/linkfs/LinkFileSystem/ (Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/close ()V net/minecraft/server/packs/linkfs/LinkFileSystem/close ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getFileStores ()Ljava/lang/Iterable; net/minecraft/server/packs/linkfs/LinkFileSystem/getFileStores ()Ljava/lang/Iterable; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getPath (Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFileSystem/getPath (Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getPathMatcher (Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/server/packs/linkfs/LinkFileSystem/getPathMatcher (Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getRootDirectories ()Ljava/lang/Iterable; net/minecraft/server/packs/linkfs/LinkFileSystem/getRootDirectories ()Ljava/lang/Iterable; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getSeparator ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFileSystem/getSeparator ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getUserPrincipalLookupService ()Ljava/nio/file/attribute/UserPrincipalLookupService; net/minecraft/server/packs/linkfs/LinkFileSystem/getUserPrincipalLookupService ()Ljava/nio/file/attribute/UserPrincipalLookupService; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/isOpen ()Z net/minecraft/server/packs/linkfs/LinkFileSystem/isOpen ()Z +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/isReadOnly ()Z net/minecraft/server/packs/linkfs/LinkFileSystem/isReadOnly ()Z +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_245209_ ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; net/minecraft/server/packs/linkfs/LinkFileSystem/builder ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_246062_ (Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFileSystem/buildPath (Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_246321_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V net/minecraft/server/packs/linkfs/LinkFileSystem/lambda$buildPath$1 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_246857_ ()Ljava/nio/file/FileStore; net/minecraft/server/packs/linkfs/LinkFileSystem/store ()Ljava/nio/file/FileStore; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_247062_ ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFileSystem/rootPath ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_247248_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Ljava/nio/file/Path;)V net/minecraft/server/packs/linkfs/LinkFileSystem/lambda$buildPath$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/newWatchService ()Ljava/nio/file/WatchService; net/minecraft/server/packs/linkfs/LinkFileSystem/newWatchService ()Ljava/nio/file/WatchService; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/provider ()Ljava/nio/file/spi/FileSystemProvider; net/minecraft/server/packs/linkfs/LinkFileSystem/provider ()Ljava/nio/file/spi/FileSystemProvider; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/supportedFileAttributeViews ()Ljava/util/Set; net/minecraft/server/packs/linkfs/LinkFileSystem/supportedFileAttributeViews ()Ljava/util/Set; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/ ()V net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_245751_ (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/lambda$put$0 (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_246585_ (Ljava/util/List;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/put (Ljava/util/List;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_246881_ (Ljava/util/List;Ljava/lang/String;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/put (Ljava/util/List;Ljava/lang/String;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_247661_ (Ljava/lang/String;)Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/build (Ljava/lang/String;)Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ (Ljava/util/Map;Ljava/util/Map;)V net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ (Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ ()V net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244268_ ()Ljava/util/Map; net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/children ()Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244526_ ()Ljava/util/Map; net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/files ()Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/hashCode ()I net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/hashCode ()I +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents/ ()V net/minecraft/server/packs/linkfs/PathContents/ ()V +MD: net/minecraft/server/packs/linkfs/PathContents$1/ ()V net/minecraft/server/packs/linkfs/PathContents$1/ ()V +MD: net/minecraft/server/packs/linkfs/PathContents$1/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents$2/ ()V net/minecraft/server/packs/linkfs/PathContents$2/ ()V +MD: net/minecraft/server/packs/linkfs/PathContents$2/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$2/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/ (Ljava/util/Map;)V net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/ (Ljava/util/Map;)V +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/f_243989_ ()Ljava/util/Map; net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/children ()Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/hashCode ()I net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/hashCode ()I +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/ (Ljava/nio/file/Path;)V net/minecraft/server/packs/linkfs/PathContents$FileContents/ (Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/PathContents$FileContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/f_244421_ ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/PathContents$FileContents/contents ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/hashCode ()I net/minecraft/server/packs/linkfs/PathContents$FileContents/hashCode ()I +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$FileContents/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/metadata/MetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/server/packs/metadata/MetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/server/packs/metadata/MetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/server/packs/metadata/MetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/server/packs/metadata/MetadataSectionType/m_245060_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/server/packs/metadata/MetadataSectionType; net/minecraft/server/packs/metadata/MetadataSectionType/fromCodec (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/server/packs/metadata/MetadataSectionType; +MD: net/minecraft/server/packs/metadata/MetadataSectionType/m_245162_ (Ljava/lang/Object;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/MetadataSectionType/toJson (Ljava/lang/Object;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)V net/minecraft/server/packs/metadata/MetadataSectionType$1/ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_245162_ (Ljava/lang/Object;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/MetadataSectionType$1/toJson (Ljava/lang/Object;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_246962_ (Ljava/lang/String;)V net/minecraft/server/packs/metadata/MetadataSectionType$1/lambda$fromJson$0 (Ljava/lang/String;)V +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_247635_ (Ljava/lang/String;)V net/minecraft/server/packs/metadata/MetadataSectionType$1/lambda$toJson$1 (Ljava/lang/String;)V +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/server/packs/metadata/MetadataSectionType$1/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_7991_ ()Ljava/lang/String; net/minecraft/server/packs/metadata/MetadataSectionType$1/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/ ()V net/minecraft/server/packs/metadata/pack/PackMetadataSection/ ()V +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/ (Lnet/minecraft/network/chat/Component;I)V net/minecraft/server/packs/metadata/pack/PackMetadataSection/ (Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/m_10373_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/metadata/pack/PackMetadataSection/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/m_10374_ ()I net/minecraft/server/packs/metadata/pack/PackMetadataSection/getPackFormat ()I +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/ ()V net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/ ()V +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_245162_ (Ljava/lang/Object;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/toJson (Ljava/lang/Object;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_245162_ (Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/toJson (Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/ ()V net/minecraft/server/packs/repository/BuiltInPackSource/ ()V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/VanillaPackResources;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/packs/repository/BuiltInPackSource/ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/VanillaPackResources;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245111_ (Ljava/nio/file/Path;Ljava/util/function/BiConsumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/discoverPacksInPath (Ljava/nio/file/Path;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245188_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/listBundledPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245328_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/BuiltInPackSource/getPackTitle (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245382_ (Ljava/util/function/BiConsumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/populatePackList (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245806_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/BuiltInPackSource/createVanillaPack (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246068_ (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V net/minecraft/server/packs/repository/BuiltInPackSource/lambda$discoverPacksInPath$3 (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246091_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/BuiltInPackSource/createBuiltinPack (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246851_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/server/packs/repository/BuiltInPackSource/getVanillaPack ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246863_ (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/server/packs/repository/BuiltInPackSource/lambda$listBundledPacks$0 (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_247024_ (Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/BuiltInPackSource/lambda$discoverPacksInPath$2 (Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_247362_ (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;)V net/minecraft/server/packs/repository/BuiltInPackSource/lambda$populatePackList$1 (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_247484_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/server/packs/repository/BuiltInPackSource/pathToId (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/ ()V net/minecraft/server/packs/repository/FolderRepositorySource/ ()V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/ (Ljava/nio/file/Path;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/PackSource;)V net/minecraft/server/packs/repository/FolderRepositorySource/ (Ljava/nio/file/Path;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/PackSource;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_244897_ (Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V net/minecraft/server/packs/repository/FolderRepositorySource/lambda$loadPacks$0 (Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_246927_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/server/packs/repository/FolderRepositorySource/nameFromPath (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_247293_ (Ljava/nio/file/Path;ZLjava/util/function/BiConsumer;)V net/minecraft/server/packs/repository/FolderRepositorySource/discoverPacks (Ljava/nio/file/Path;ZLjava/util/function/BiConsumer;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_254800_ (Ljava/nio/file/Path;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/FolderRepositorySource/lambda$detectPackResources$1 (Ljava/nio/file/Path;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_254801_ (Ljava/io/File;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/FolderRepositorySource/lambda$detectPackResources$2 (Ljava/io/File;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_254985_ (Ljava/nio/file/Path;Z)Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier; net/minecraft/server/packs/repository/FolderRepositorySource/detectPackResources (Ljava/nio/file/Path;Z)Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/FolderRepositorySource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/Pack/ ()V net/minecraft/server/packs/repository/Pack/ ()V +MD: net/minecraft/server/packs/repository/Pack/ (Ljava/lang/String;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/repository/PackCompatibility;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)V net/minecraft/server/packs/repository/Pack/ (Ljava/lang/String;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/repository/PackCompatibility;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)V +MD: net/minecraft/server/packs/repository/Pack/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/repository/Pack/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/repository/Pack/hashCode ()I net/minecraft/server/packs/repository/Pack/hashCode ()I +MD: net/minecraft/server/packs/repository/Pack/m_10429_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack/m_10437_ (Z)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack/getChatLink (Z)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack/m_10439_ (ZLnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/packs/repository/Pack/lambda$getChatLink$0 (ZLnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/packs/repository/Pack/m_10442_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack/m_10443_ ()Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/Pack/getCompatibility ()Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/Pack/m_10445_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/Pack/open ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/Pack/m_10446_ ()Ljava/lang/String; net/minecraft/server/packs/repository/Pack/getId ()Ljava/lang/String; +MD: net/minecraft/server/packs/repository/Pack/m_10449_ ()Z net/minecraft/server/packs/repository/Pack/isRequired ()Z +MD: net/minecraft/server/packs/repository/Pack/m_10450_ ()Z net/minecraft/server/packs/repository/Pack/isFixedPosition ()Z +MD: net/minecraft/server/packs/repository/Pack/m_10451_ ()Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack/getDefaultPosition ()Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack/m_10453_ ()Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/server/packs/repository/Pack/getPackSource ()Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/server/packs/repository/Pack/m_245429_ (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;Lnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/Pack/readMetaAndCreate (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;Lnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/Pack/m_245512_ (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/Pack/create (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/Pack/m_245532_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/repository/Pack/getRequestedFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/repository/Pack/m_246334_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)Lnet/minecraft/server/packs/repository/Pack$Info; net/minecraft/server/packs/repository/Pack/readPackInfo (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)Lnet/minecraft/server/packs/repository/Pack$Info; +MD: net/minecraft/server/packs/repository/Pack$Info/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/server/packs/repository/Pack$Info/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/server/packs/repository/Pack$Info/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/repository/Pack$Info/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/repository/Pack$Info/f_244041_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/repository/Pack$Info/requestedFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/repository/Pack$Info/f_244194_ ()I net/minecraft/server/packs/repository/Pack$Info/format ()I +MD: net/minecraft/server/packs/repository/Pack$Info/f_244592_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack$Info/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack$Info/hashCode ()I net/minecraft/server/packs/repository/Pack$Info/hashCode ()I +MD: net/minecraft/server/packs/repository/Pack$Info/m_246438_ (Lnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/Pack$Info/compatibility (Lnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/Pack$Info/toString ()Ljava/lang/String; net/minecraft/server/packs/repository/Pack$Info/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/repository/Pack$Position/ ()V net/minecraft/server/packs/repository/Pack$Position/ ()V +MD: net/minecraft/server/packs/repository/Pack$Position/ (Ljava/lang/String;I)V net/minecraft/server/packs/repository/Pack$Position/ (Ljava/lang/String;I)V +MD: net/minecraft/server/packs/repository/Pack$Position/m_10469_ ()Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/opposite ()Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$Position/m_10470_ (Ljava/util/List;Ljava/lang/Object;Ljava/util/function/Function;Z)I net/minecraft/server/packs/repository/Pack$Position/insert (Ljava/util/List;Ljava/lang/Object;Ljava/util/function/Function;Z)I +MD: net/minecraft/server/packs/repository/Pack$Position/m_143881_ ()[Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/$values ()[Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$Position/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$Position/values ()[Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/values ()[Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$ResourcesSupplier/m_247679_ (Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/Pack$ResourcesSupplier/open (Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/PackCompatibility/ ()V net/minecraft/server/packs/repository/PackCompatibility/ ()V +MD: net/minecraft/server/packs/repository/PackCompatibility/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/packs/repository/PackCompatibility/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/packs/repository/PackCompatibility/m_10489_ ()Z net/minecraft/server/packs/repository/PackCompatibility/isCompatible ()Z +MD: net/minecraft/server/packs/repository/PackCompatibility/m_10492_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackCompatibility/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackCompatibility/m_10493_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackCompatibility/getConfirmation ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackCompatibility/m_143882_ (ILnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/forFormat (ILnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackCompatibility/m_143888_ ()[Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/$values ()[Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackCompatibility/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackCompatibility/values ()[Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/values ()[Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackRepository/ ([Lnet/minecraft/server/packs/repository/RepositorySource;)V net/minecraft/server/packs/repository/PackRepository/ ([Lnet/minecraft/server/packs/repository/RepositorySource;)V +MD: net/minecraft/server/packs/repository/PackRepository/m_10506_ ()V net/minecraft/server/packs/repository/PackRepository/reload ()V +MD: net/minecraft/server/packs/repository/PackRepository/m_10507_ (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/PackRepository/getPack (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/PackRepository/m_10509_ (Ljava/util/Collection;)V net/minecraft/server/packs/repository/PackRepository/setSelected (Ljava/util/Collection;)V +MD: net/minecraft/server/packs/repository/PackRepository/m_10514_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getAvailableIds ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10515_ (Ljava/lang/String;)Z net/minecraft/server/packs/repository/PackRepository/isAvailable (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/repository/PackRepository/m_10517_ (Ljava/util/Collection;)Ljava/util/List; net/minecraft/server/packs/repository/PackRepository/rebuildSelected (Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/server/packs/repository/PackRepository/m_10519_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getAvailablePacks ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10520_ (Ljava/util/Collection;)Ljava/util/stream/Stream; net/minecraft/server/packs/repository/PackRepository/getAvailablePacks (Ljava/util/Collection;)Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/repository/PackRepository/m_10523_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getSelectedIds ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10524_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getSelectedPacks ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10525_ ()Ljava/util/List; net/minecraft/server/packs/repository/PackRepository/openAllSelected ()Ljava/util/List; +MD: net/minecraft/server/packs/repository/PackRepository/m_10526_ ()Ljava/util/Map; net/minecraft/server/packs/repository/PackRepository/discoverAvailable ()Ljava/util/Map; +MD: net/minecraft/server/packs/repository/PackRepository/m_143901_ (Ljava/util/Map;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/packs/repository/PackRepository/lambda$discoverAvailable$0 (Ljava/util/Map;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/packs/repository/PackRepository/m_245805_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/repository/PackRepository/getRequestedFeatureFlags ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/repository/PackRepository/m_275853_ (Ljava/lang/String;)Z net/minecraft/server/packs/repository/PackRepository/removePack (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/repository/PackRepository/m_275855_ (Ljava/lang/String;)Z net/minecraft/server/packs/repository/PackRepository/addPack (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/repository/PackSource/ ()V net/minecraft/server/packs/repository/PackSource/ ()V +MD: net/minecraft/server/packs/repository/PackSource/m_10533_ (Ljava/lang/String;)Ljava/util/function/UnaryOperator; net/minecraft/server/packs/repository/PackSource/decorateWithSource (Ljava/lang/String;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/server/packs/repository/PackSource/m_10537_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackSource/lambda$decorateWithSource$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackSource/m_10540_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackSource/decorate (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackSource/m_245251_ ()Z net/minecraft/server/packs/repository/PackSource/shouldAddAutomatically ()Z +MD: net/minecraft/server/packs/repository/PackSource/m_247176_ (Ljava/util/function/UnaryOperator;Z)Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/server/packs/repository/PackSource/create (Ljava/util/function/UnaryOperator;Z)Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/server/packs/repository/PackSource$1/ (Ljava/util/function/UnaryOperator;Z)V net/minecraft/server/packs/repository/PackSource$1/ (Ljava/util/function/UnaryOperator;Z)V +MD: net/minecraft/server/packs/repository/PackSource$1/m_10540_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackSource$1/decorate (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackSource$1/m_245251_ ()Z net/minecraft/server/packs/repository/PackSource$1/shouldAddAutomatically ()Z +MD: net/minecraft/server/packs/repository/RepositorySource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/RepositorySource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/ServerPacksSource/ ()V net/minecraft/server/packs/repository/ServerPacksSource/ ()V +MD: net/minecraft/server/packs/repository/ServerPacksSource/ ()V net/minecraft/server/packs/repository/ServerPacksSource/ ()V +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_244899_ (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/ServerPacksSource/lambda$createVanillaPack$0 (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_245328_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/ServerPacksSource/getPackTitle (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_245786_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/packs/repository/ServerPacksSource/createPackRepository (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_245806_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/ServerPacksSource/createVanillaPack (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_246091_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/ServerPacksSource/createBuiltinPack (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_246173_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/server/packs/repository/ServerPacksSource/createVanillaPackSource ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_247728_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/packs/repository/ServerPacksSource/createPackRepository (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/packs/resources/CloseableResourceManager/close ()V net/minecraft/server/packs/resources/CloseableResourceManager/close ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/ ()V net/minecraft/server/packs/resources/FallbackResourceManager/ ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;)V net/minecraft/server/packs/resources/FallbackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_10624_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager/getMetadataLocation (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/FallbackResourceManager/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/FallbackResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/FallbackResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/FallbackResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215368_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager/createStackMetadataFinder (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215377_ (Lnet/minecraft/server/packs/PackResources;)V net/minecraft/server/packs/resources/FallbackResourceManager/push (Lnet/minecraft/server/packs/PackResources;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215382_ (Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager/push (Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215385_ (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listPacks$7 (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215387_ (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/Map;)V net/minecraft/server/packs/resources/FallbackResourceManager/listPackResources (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215392_ (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/util/Map;)V net/minecraft/server/packs/resources/FallbackResourceManager/applyPackFiltersToExistingResources (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215395_ (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager/pushInternal (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215399_ (Ljava/lang/String;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager/pushFilterOnly (Ljava/lang/String;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244900_ (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;ILjava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listResources$2 (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;ILjava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244901_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex;)V net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listResources$3 (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244902_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$convertToMetadata$5 (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244903_ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$getResourceStack$1 (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244904_ (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listPackResources$6 (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244905_ (Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;)Ljava/io/InputStream; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$wrapForDebug$0 (Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244906_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$createStackMetadataFinder$4 (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_245103_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/server/packs/resources/FallbackResourceManager/isMetadata (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_245722_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager/convertToMetadata (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246164_ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; net/minecraft/server/packs/resources/FallbackResourceManager/createResource (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246183_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/parseMetadata (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246569_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager/getResourceLocationFromMetadata (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246574_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager/wrapForDebug (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/FallbackResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/FallbackResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;I)V net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;I)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_243853_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packResources ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244005_ ()Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/resource ()Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244110_ ()I net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packIndex ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;)V net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_215420_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metadataLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_243777_ ()Ljava/util/Map; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metaSources ()Ljava/util/Map; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244329_ ()Ljava/util/List; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileSources ()Ljava/util/List; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244439_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/ (Ljava/io/InputStream;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/ (Ljava/io/InputStream;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/close ()V net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/close ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/finalize ()V net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/finalize ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/m_245902_ (Ljava/lang/Exception;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/lambda$new$0 (Ljava/lang/Exception;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/ (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/ (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215432_ ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/name ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215433_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/resources ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215434_ ()Ljava/util/function/Predicate; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/filter ()Ljava/util/function/Predicate; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/m_215440_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/isFiltered (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/m_215442_ (Ljava/util/Collection;)V net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/filterAll (Ljava/util/Collection;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244214_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/source ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244331_ ()Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/resource ()Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/IoSupplier/m_246383_ (Ljava/nio/file/Path;)Ljava/io/InputStream; net/minecraft/server/packs/resources/IoSupplier/lambda$create$0 (Ljava/nio/file/Path;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/IoSupplier/m_246697_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/IoSupplier/create (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/IoSupplier/m_247178_ (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/IoSupplier/create (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/IoSupplier/m_247182_ (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Ljava/io/InputStream; net/minecraft/server/packs/resources/IoSupplier/lambda$create$1 (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/IoSupplier/m_247737_ ()Ljava/lang/Object; net/minecraft/server/packs/resources/IoSupplier/get ()Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/ ()V net/minecraft/server/packs/resources/MultiPackResourceManager/ ()V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/util/List;)V net/minecraft/server/packs/resources/MultiPackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/util/List;)V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/close ()V net/minecraft/server/packs/resources/MultiPackResourceManager/close ()V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/MultiPackResourceManager/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/MultiPackResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/MultiPackResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/MultiPackResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_215467_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/ResourceFilterSection; net/minecraft/server/packs/resources/MultiPackResourceManager/getPackFilterSection (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/ResourceFilterSection; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_215469_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources;)Ljava/util/stream/Stream; net/minecraft/server/packs/resources/MultiPackResourceManager/lambda$new$0 (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources;)Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_215472_ (Lnet/minecraft/server/packs/resources/ResourceFilterSection;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/server/packs/resources/MultiPackResourceManager/lambda$new$1 (Lnet/minecraft/server/packs/resources/ResourceFilterSection;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_247202_ (Ljava/lang/String;)V net/minecraft/server/packs/resources/MultiPackResourceManager/checkTrailingDirectoryPath (Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/MultiPackResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/MultiPackResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/PreparableReloadListener/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/PreparableReloadListener/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/PreparableReloadListener/m_7812_ ()Ljava/lang/String; net/minecraft/server/packs/resources/PreparableReloadListener/getName ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier/m_6769_ (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier/wait (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/ ()V net/minecraft/server/packs/resources/ProfiledReloadInstance/ ()V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_10666_ (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$7 (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143907_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener;Lnet/minecraft/util/profiling/ActiveProfiler;Lnet/minecraft/util/profiling/ActiveProfiler;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Void;)Lnet/minecraft/server/packs/resources/ProfiledReloadInstance$State; net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$6 (Lnet/minecraft/server/packs/resources/PreparableReloadListener;Lnet/minecraft/util/profiling/ActiveProfiler;Lnet/minecraft/util/profiling/ActiveProfiler;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Void;)Lnet/minecraft/server/packs/resources/ProfiledReloadInstance$State; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143914_ (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$4 (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143917_ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$5 (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143921_ (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$2 (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143924_ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$3 (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143928_ ()I net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$1 ()I +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143929_ ()I net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$0 ()I +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_215483_ (Ljava/util/List;)Ljava/util/List; net/minecraft/server/packs/resources/ProfiledReloadInstance/finish (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/ (Ljava/lang/String;Lnet/minecraft/util/profiling/ProfileResults;Lnet/minecraft/util/profiling/ProfileResults;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;)V net/minecraft/server/packs/resources/ProfiledReloadInstance$State/ (Ljava/lang/String;Lnet/minecraft/util/profiling/ProfileResults;Lnet/minecraft/util/profiling/ProfileResults;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;)V +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7237_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/ReloadInstance/done ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7746_ ()Z net/minecraft/server/packs/resources/ReloadInstance/isDone ()Z +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7748_ ()V net/minecraft/server/packs/resources/ReloadInstance/checkExceptions ()V +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7750_ ()F net/minecraft/server/packs/resources/ReloadInstance/getActualProgress ()F +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/ ()V net/minecraft/server/packs/resources/ReloadableResourceManager/ ()V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/ (Lnet/minecraft/server/packs/PackType;)V net/minecraft/server/packs/resources/ReloadableResourceManager/ (Lnet/minecraft/server/packs/PackType;)V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/close ()V net/minecraft/server/packs/resources/ReloadableResourceManager/close ()V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_142463_ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lnet/minecraft/server/packs/resources/ReloadInstance; net/minecraft/server/packs/resources/ReloadableResourceManager/createReload (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lnet/minecraft/server/packs/resources/ReloadInstance; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_203825_ (Ljava/util/List;)Ljava/lang/Object; net/minecraft/server/packs/resources/ReloadableResourceManager/lambda$createReload$0 (Ljava/util/List;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ReloadableResourceManager/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/ReloadableResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ReloadableResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ReloadableResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/ReloadableResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_7217_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V net/minecraft/server/packs/resources/ReloadableResourceManager/registerReloadListener (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/ReloadableResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/Resource/m_215506_ ()Ljava/lang/String; net/minecraft/server/packs/resources/Resource/sourcePackId ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/Resource/m_215507_ ()Ljava/io/InputStream; net/minecraft/server/packs/resources/Resource/open ()Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/Resource/m_215508_ ()Ljava/io/BufferedReader; net/minecraft/server/packs/resources/Resource/openAsReader ()Ljava/io/BufferedReader; +MD: net/minecraft/server/packs/resources/Resource/m_215509_ ()Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/Resource/metadata ()Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/Resource/m_247137_ ()Z net/minecraft/server/packs/resources/Resource/isBuiltin ()Z +MD: net/minecraft/server/packs/resources/Resource/m_247173_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/Resource/source ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/ResourceFilterSection/ ()V net/minecraft/server/packs/resources/ResourceFilterSection/ ()V +MD: net/minecraft/server/packs/resources/ResourceFilterSection/ (Ljava/util/List;)V net/minecraft/server/packs/resources/ResourceFilterSection/ (Ljava/util/List;)V +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_215519_ (Lnet/minecraft/server/packs/resources/ResourceFilterSection;)Ljava/util/List; net/minecraft/server/packs/resources/ResourceFilterSection/lambda$static$0 (Lnet/minecraft/server/packs/resources/ResourceFilterSection;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_215523_ (Ljava/lang/String;)Z net/minecraft/server/packs/resources/ResourceFilterSection/isNamespaceFiltered (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_215528_ (Ljava/lang/String;)Z net/minecraft/server/packs/resources/ResourceFilterSection/isPathFiltered (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_260781_ (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z net/minecraft/server/packs/resources/ResourceFilterSection/lambda$isPathFiltered$3 (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_260782_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/server/packs/resources/ResourceFilterSection/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_260783_ (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z net/minecraft/server/packs/resources/ResourceFilterSection/lambda$isNamespaceFiltered$2 (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z +MD: net/minecraft/server/packs/resources/ResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/ResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/ResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/ResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/ResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/ ()V net/minecraft/server/packs/resources/ResourceManager$Empty/ ()V +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/ (Ljava/lang/String;I)V net/minecraft/server/packs/resources/ResourceManager$Empty/ (Ljava/lang/String;I)V +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_143934_ ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; net/minecraft/server/packs/resources/ResourceManager$Empty/$values ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceManager$Empty/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/ResourceManager$Empty/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager$Empty/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager$Empty/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/ResourceManager$Empty/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/ResourceManager$Empty/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/ResourceManager$Empty; net/minecraft/server/packs/resources/ResourceManager$Empty/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/values ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; net/minecraft/server/packs/resources/ResourceManager$Empty/values ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +MD: net/minecraft/server/packs/resources/ResourceManagerReloadListener/m_10759_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/server/packs/resources/ResourceManagerReloadListener/lambda$reload$0 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/server/packs/resources/ResourceManagerReloadListener/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/ResourceManagerReloadListener/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ResourceManagerReloadListener/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/server/packs/resources/ResourceManagerReloadListener/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/server/packs/resources/ResourceMetadata/ ()V net/minecraft/server/packs/resources/ResourceMetadata/ ()V +MD: net/minecraft/server/packs/resources/ResourceMetadata/m_214059_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceMetadata/getSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceMetadata/m_215580_ (Ljava/io/InputStream;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/ResourceMetadata/fromJsonStream (Ljava/io/InputStream;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/ResourceMetadata/m_247596_ ()Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/ResourceMetadata/lambda$static$0 ()Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/ResourceMetadata$1/ ()V net/minecraft/server/packs/resources/ResourceMetadata$1/ ()V +MD: net/minecraft/server/packs/resources/ResourceMetadata$1/m_214059_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceMetadata$1/getSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceMetadata$2/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/packs/resources/ResourceMetadata$2/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/packs/resources/ResourceMetadata$2/m_214059_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceMetadata$2/getSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceProvider/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215590_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/FileNotFoundException; net/minecraft/server/packs/resources/ResourceProvider/lambda$getResourceOrThrow$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/FileNotFoundException; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215593_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/Resource; net/minecraft/server/packs/resources/ResourceProvider/getResourceOrThrow (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/Resource; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215595_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; net/minecraft/server/packs/resources/ResourceProvider/open (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215597_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/BufferedReader; net/minecraft/server/packs/resources/ResourceProvider/openAsReader (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/BufferedReader; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_244907_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceProvider/lambda$fromMap$1 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_247621_ (Ljava/util/Map;)Lnet/minecraft/server/packs/resources/ResourceProvider; net/minecraft/server/packs/resources/ResourceProvider/fromMap (Ljava/util/Map;)Lnet/minecraft/server/packs/resources/ResourceProvider; +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ ()V net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ ()V +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ (Lcom/google/gson/Gson;Ljava/lang/String;)V net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ (Lcom/google/gson/Gson;Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/m_278771_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/google/gson/Gson;Ljava/util/Map;)V net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/scanDirectory (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/google/gson/Gson;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/ ()V net/minecraft/server/packs/resources/SimplePreparableReloadListener/ ()V +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_10786_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimplePreparableReloadListener/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_10789_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/lang/Object;)V net/minecraft/server/packs/resources/SimplePreparableReloadListener/lambda$reload$1 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/lang/Object;)V +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimplePreparableReloadListener/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/server/packs/resources/SimplePreparableReloadListener/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimplePreparableReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Lnet/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/packs/resources/SimpleReloadInstance/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Lnet/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10815_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/server/packs/resources/SimpleReloadInstance; net/minecraft/server/packs/resources/SimpleReloadInstance/of (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/server/packs/resources/SimpleReloadInstance; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10827_ (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$of$0 (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10834_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$4 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10840_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$2 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_143940_ (Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$3 (Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_143942_ (Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$1 (Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_203834_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lnet/minecraft/server/packs/resources/ReloadInstance; net/minecraft/server/packs/resources/SimpleReloadInstance/create (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lnet/minecraft/server/packs/resources/ReloadInstance; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_7237_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance/done ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_7750_ ()F net/minecraft/server/packs/resources/SimpleReloadInstance/getActualProgress ()F +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/ (Lnet/minecraft/server/packs/resources/SimpleReloadInstance;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/packs/resources/SimpleReloadInstance$1/ (Lnet/minecraft/server/packs/resources/SimpleReloadInstance;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/m_10855_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V net/minecraft/server/packs/resources/SimpleReloadInstance$1/lambda$wait$0 (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/m_10859_ (Ljava/lang/Object;Lnet/minecraft/util/Unit;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimpleReloadInstance$1/lambda$wait$1 (Ljava/lang/Object;Lnet/minecraft/util/Unit;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/m_6769_ (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance$1/wait (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory/m_10863_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory/create (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/players/BanListEntry/ ()V net/minecraft/server/players/BanListEntry/ ()V +MD: net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +MD: net/minecraft/server/players/BanListEntry/m_10960_ ()Ljava/lang/String; net/minecraft/server/players/BanListEntry/getSource ()Ljava/lang/String; +MD: net/minecraft/server/players/BanListEntry/m_10961_ ()Ljava/util/Date; net/minecraft/server/players/BanListEntry/getExpires ()Ljava/util/Date; +MD: net/minecraft/server/players/BanListEntry/m_10962_ ()Ljava/lang/String; net/minecraft/server/players/BanListEntry/getReason ()Ljava/lang/String; +MD: net/minecraft/server/players/BanListEntry/m_143954_ ()Ljava/util/Date; net/minecraft/server/players/BanListEntry/getCreated ()Ljava/util/Date; +MD: net/minecraft/server/players/BanListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/BanListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/BanListEntry/m_7524_ ()Z net/minecraft/server/players/BanListEntry/hasExpired ()Z +MD: net/minecraft/server/players/BanListEntry/m_8003_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/players/BanListEntry/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/GameProfileCache/ ()V net/minecraft/server/players/GameProfileCache/ ()V +MD: net/minecraft/server/players/GameProfileCache/ (Lcom/mojang/authlib/GameProfileRepository;Ljava/io/File;)V net/minecraft/server/players/GameProfileCache/ (Lcom/mojang/authlib/GameProfileRepository;Ljava/io/File;)V +MD: net/minecraft/server/players/GameProfileCache/m_10976_ ()Ljava/util/List; net/minecraft/server/players/GameProfileCache/load ()Ljava/util/List; +MD: net/minecraft/server/players/GameProfileCache/m_10977_ (I)Ljava/util/stream/Stream; net/minecraft/server/players/GameProfileCache/getTopMRUProfiles (I)Ljava/util/stream/Stream; +MD: net/minecraft/server/players/GameProfileCache/m_10979_ (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V net/minecraft/server/players/GameProfileCache/safeAdd (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V +MD: net/minecraft/server/players/GameProfileCache/m_10981_ (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;Ljava/text/DateFormat;)Lcom/google/gson/JsonElement; net/minecraft/server/players/GameProfileCache/writeGameProfile (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;Ljava/text/DateFormat;)Lcom/google/gson/JsonElement; +MD: net/minecraft/server/players/GameProfileCache/m_10988_ (Lcom/google/gson/JsonElement;Ljava/text/DateFormat;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/readGameProfile (Lcom/google/gson/JsonElement;Ljava/text/DateFormat;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_10991_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/GameProfileCache/add (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/GameProfileCache/m_10993_ (Lcom/mojang/authlib/GameProfileRepository;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/lookupGameProfile (Lcom/mojang/authlib/GameProfileRepository;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_10996_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/get (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_11002_ (Ljava/util/UUID;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/get (Ljava/util/UUID;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_11004_ (Z)V net/minecraft/server/players/GameProfileCache/setUsesAuthentication (Z)V +MD: net/minecraft/server/players/GameProfileCache/m_11006_ ()V net/minecraft/server/players/GameProfileCache/save ()V +MD: net/minecraft/server/players/GameProfileCache/m_11007_ ()Z net/minecraft/server/players/GameProfileCache/usesAuthentication ()Z +MD: net/minecraft/server/players/GameProfileCache/m_11008_ ()J net/minecraft/server/players/GameProfileCache/getNextOperation ()J +MD: net/minecraft/server/players/GameProfileCache/m_11009_ ()Ljava/text/DateFormat; net/minecraft/server/players/GameProfileCache/createDateFormat ()Ljava/text/DateFormat; +MD: net/minecraft/server/players/GameProfileCache/m_143959_ (Lcom/google/gson/JsonArray;Ljava/text/DateFormat;Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V net/minecraft/server/players/GameProfileCache/lambda$save$5 (Lcom/google/gson/JsonArray;Ljava/text/DateFormat;Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V +MD: net/minecraft/server/players/GameProfileCache/m_143963_ (Ljava/lang/String;Ljava/util/Optional;Ljava/lang/Throwable;)V net/minecraft/server/players/GameProfileCache/lambda$getAsync$2 (Ljava/lang/String;Ljava/util/Optional;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/GameProfileCache/m_143967_ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/server/players/GameProfileCache/getAsync (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/players/GameProfileCache/m_143970_ (Ljava/text/DateFormat;Ljava/util/List;Lcom/google/gson/JsonElement;)V net/minecraft/server/players/GameProfileCache/lambda$load$4 (Ljava/text/DateFormat;Ljava/util/List;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/server/players/GameProfileCache/m_143974_ (Ljava/util/concurrent/Executor;)V net/minecraft/server/players/GameProfileCache/setExecutor (Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/players/GameProfileCache/m_143976_ (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V net/minecraft/server/players/GameProfileCache/lambda$getAsync$3 (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/GameProfileCache/m_143982_ (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V net/minecraft/server/players/GameProfileCache/lambda$getAsync$0 (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/GameProfileCache/m_182318_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/lambda$getAsync$1 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_196559_ ()V net/minecraft/server/players/GameProfileCache/clearExecutor ()V +MD: net/minecraft/server/players/GameProfileCache$1/ (Ljava/util/concurrent/atomic/AtomicReference;)V net/minecraft/server/players/GameProfileCache$1/ (Ljava/util/concurrent/atomic/AtomicReference;)V +MD: net/minecraft/server/players/GameProfileCache$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/GameProfileCache$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/GameProfileCache$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/GameProfileCache$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V net/minecraft/server/players/GameProfileCache$GameProfileInfo/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11028_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/GameProfileCache$GameProfileInfo/getProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11029_ (J)V net/minecraft/server/players/GameProfileCache$GameProfileInfo/setLastAccess (J)V +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11033_ ()Ljava/util/Date; net/minecraft/server/players/GameProfileCache$GameProfileInfo/getExpirationDate ()Ljava/util/Date; +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11034_ ()J net/minecraft/server/players/GameProfileCache$GameProfileInfo/getLastAccess ()J +MD: net/minecraft/server/players/IpBanList/ (Ljava/io/File;)V net/minecraft/server/players/IpBanList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/IpBanList/m_11039_ (Ljava/lang/String;)Z net/minecraft/server/players/IpBanList/isBanned (Ljava/lang/String;)Z +MD: net/minecraft/server/players/IpBanList/m_11041_ (Ljava/net/SocketAddress;)Z net/minecraft/server/players/IpBanList/isBanned (Ljava/net/SocketAddress;)Z +MD: net/minecraft/server/players/IpBanList/m_11043_ (Ljava/net/SocketAddress;)Lnet/minecraft/server/players/IpBanListEntry; net/minecraft/server/players/IpBanList/get (Ljava/net/SocketAddress;)Lnet/minecraft/server/players/IpBanListEntry; +MD: net/minecraft/server/players/IpBanList/m_11045_ (Ljava/net/SocketAddress;)Ljava/lang/String; net/minecraft/server/players/IpBanList/getIpFromAddress (Ljava/net/SocketAddress;)Ljava/lang/String; +MD: net/minecraft/server/players/IpBanList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/IpBanList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +MD: net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;)V net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;)V +MD: net/minecraft/server/players/IpBanListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/IpBanListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/IpBanListEntry/m_11059_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/server/players/IpBanListEntry/createIpInfo (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/server/players/IpBanListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/IpBanListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/IpBanListEntry/m_8003_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/players/IpBanListEntry/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/OldUsersConverter/ ()V net/minecraft/server/players/OldUsersConverter/ ()V +MD: net/minecraft/server/players/OldUsersConverter/ ()V net/minecraft/server/players/OldUsersConverter/ ()V +MD: net/minecraft/server/players/OldUsersConverter/m_11069_ (I)[Ljava/lang/String; net/minecraft/server/players/OldUsersConverter/lambda$lookupPlayers$1 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/OldUsersConverter/m_11073_ (Ljava/io/File;Ljava/util/Map;)Ljava/util/List; net/minecraft/server/players/OldUsersConverter/readOldListFormat (Ljava/io/File;Ljava/util/Map;)Ljava/util/List; +MD: net/minecraft/server/players/OldUsersConverter/m_11076_ (Ljava/lang/String;)Z net/minecraft/server/players/OldUsersConverter/lambda$lookupPlayers$0 (Ljava/lang/String;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11081_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertUserBanlist (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11083_ (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Ljava/util/UUID; net/minecraft/server/players/OldUsersConverter/convertMobOwnerIfNecessary (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/server/players/OldUsersConverter/m_11086_ (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V net/minecraft/server/players/OldUsersConverter/lookupPlayers (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V +MD: net/minecraft/server/players/OldUsersConverter/m_11090_ (Lnet/minecraft/server/dedicated/DedicatedServer;)Z net/minecraft/server/players/OldUsersConverter/convertPlayers (Lnet/minecraft/server/dedicated/DedicatedServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11092_ ()Z net/minecraft/server/players/OldUsersConverter/areOldUserlistsRemoved ()Z +MD: net/minecraft/server/players/OldUsersConverter/m_11093_ (Ljava/io/File;)V net/minecraft/server/players/OldUsersConverter/ensureDirectoryExists (Ljava/io/File;)V +MD: net/minecraft/server/players/OldUsersConverter/m_11095_ (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; net/minecraft/server/players/OldUsersConverter/parseDate (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; +MD: net/minecraft/server/players/OldUsersConverter/m_11098_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertIpBanlist (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11100_ (Ljava/io/File;)V net/minecraft/server/players/OldUsersConverter/renameOldFile (Ljava/io/File;)V +MD: net/minecraft/server/players/OldUsersConverter/m_11102_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertOpsList (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11104_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertWhiteList (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11106_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/serverReadyAfterUserconversion (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11108_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/areOldPlayersConverted (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11110_ (Lnet/minecraft/server/MinecraftServer;)Ljava/io/File; net/minecraft/server/players/OldUsersConverter/getWorldPlayersDirectory (Lnet/minecraft/server/MinecraftServer;)Ljava/io/File; +MD: net/minecraft/server/players/OldUsersConverter$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lnet/minecraft/server/players/UserBanList;)V net/minecraft/server/players/OldUsersConverter$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lnet/minecraft/server/players/UserBanList;)V +MD: net/minecraft/server/players/OldUsersConverter$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$2/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/ServerOpList;)V net/minecraft/server/players/OldUsersConverter$2/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/ServerOpList;)V +MD: net/minecraft/server/players/OldUsersConverter$2/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$2/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$2/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$2/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$3/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/UserWhiteList;)V net/minecraft/server/players/OldUsersConverter$3/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/UserWhiteList;)V +MD: net/minecraft/server/players/OldUsersConverter$3/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$3/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$3/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$3/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$4/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V net/minecraft/server/players/OldUsersConverter$4/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V +MD: net/minecraft/server/players/OldUsersConverter$4/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$4/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$4/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$4/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$5/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V net/minecraft/server/players/OldUsersConverter$5/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V +MD: net/minecraft/server/players/OldUsersConverter$5/m_11165_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/OldUsersConverter$5/getFileNameForProfile (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/OldUsersConverter$5/m_11167_ (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/server/players/OldUsersConverter$5/movePlayerFile (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/server/players/OldUsersConverter$5/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$5/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$5/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$5/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;)V net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;)V +MD: net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/PlayerList/ ()V net/minecraft/server/players/PlayerList/ ()V +MD: net/minecraft/server/players/PlayerList/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V net/minecraft/server/players/PlayerList/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V +MD: net/minecraft/server/players/PlayerList/m_11217_ (I)V net/minecraft/server/players/PlayerList/setViewDistance (I)V +MD: net/minecraft/server/players/PlayerList/m_11224_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/players/PlayerList/load (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/players/PlayerList/m_11226_ (Lnet/minecraft/server/level/ServerPlayer;I)V net/minecraft/server/players/PlayerList/sendPlayerPermissionLevel (Lnet/minecraft/server/level/ServerPlayer;I)V +MD: net/minecraft/server/players/PlayerList/m_11229_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/players/PlayerList/sendLevelInfo (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/players/PlayerList/m_11236_ (Lnet/minecraft/server/level/ServerPlayer;Z)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/respawn (Lnet/minecraft/server/level/ServerPlayer;Z)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_11239_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/stats/ServerStatsCounter; net/minecraft/server/players/PlayerList/getPlayerStats (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/stats/ServerStatsCounter; +MD: net/minecraft/server/players/PlayerList/m_11241_ (Lnet/minecraft/world/entity/player/Player;DDDDLnet/minecraft/resources/ResourceKey;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/players/PlayerList/broadcast (Lnet/minecraft/world/entity/player/Player;DDDDLnet/minecraft/resources/ResourceKey;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/players/PlayerList/m_11255_ (Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/getPlayerByName (Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_11259_ (Ljava/util/UUID;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/getPlayer (Ljava/util/UUID;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_11261_ (Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/placeNewPlayer (Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11268_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/players/PlayerList/broadcastAll (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/players/PlayerList/m_11270_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/server/players/PlayerList/broadcastAll (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/server/players/PlayerList/m_11273_ (Lnet/minecraft/server/ServerScoreboard;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/updateEntireScoreboard (Lnet/minecraft/server/ServerScoreboard;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11282_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/server/players/PlayerList/getPlayersWithAddress (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/server/players/PlayerList/m_11284_ (Z)V net/minecraft/server/players/PlayerList/setAllowCheatsForAllPlayers (Z)V +MD: net/minecraft/server/players/PlayerList/m_11286_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/remove (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11288_ ()V net/minecraft/server/players/PlayerList/tick ()V +MD: net/minecraft/server/players/PlayerList/m_11289_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/sendPlayerPermissionLevel (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11291_ ()[Ljava/lang/String; net/minecraft/server/players/PlayerList/getPlayerNamesArray ()[Ljava/lang/String; +MD: net/minecraft/server/players/PlayerList/m_11292_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/sendAllPlayerInfo (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11295_ ()Lnet/minecraft/server/players/UserBanList; net/minecraft/server/players/PlayerList/getBans ()Lnet/minecraft/server/players/UserBanList; +MD: net/minecraft/server/players/PlayerList/m_11296_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/PlayerAdvancements; net/minecraft/server/players/PlayerList/getPlayerAdvancements (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/PlayerAdvancements; +MD: net/minecraft/server/players/PlayerList/m_11299_ ()Lnet/minecraft/server/players/IpBanList; net/minecraft/server/players/PlayerList/getIpBans ()Lnet/minecraft/server/players/IpBanList; +MD: net/minecraft/server/players/PlayerList/m_11302_ ()V net/minecraft/server/players/PlayerList/saveAll ()V +MD: net/minecraft/server/players/PlayerList/m_11303_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/PlayerList/isOp (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/PlayerList/m_11305_ ()Lnet/minecraft/server/players/UserWhiteList; net/minecraft/server/players/PlayerList/getWhiteList ()Lnet/minecraft/server/players/UserWhiteList; +MD: net/minecraft/server/players/PlayerList/m_11306_ ()[Ljava/lang/String; net/minecraft/server/players/PlayerList/getWhiteListNames ()[Ljava/lang/String; +MD: net/minecraft/server/players/PlayerList/m_11307_ ()Lnet/minecraft/server/players/ServerOpList; net/minecraft/server/players/PlayerList/getOps ()Lnet/minecraft/server/players/ServerOpList; +MD: net/minecraft/server/players/PlayerList/m_11308_ ()[Ljava/lang/String; net/minecraft/server/players/PlayerList/getOpNames ()[Ljava/lang/String; +MD: net/minecraft/server/players/PlayerList/m_11309_ ()I net/minecraft/server/players/PlayerList/getPlayerCount ()I +MD: net/minecraft/server/players/PlayerList/m_11310_ ()I net/minecraft/server/players/PlayerList/getMaxPlayers ()I +MD: net/minecraft/server/players/PlayerList/m_11311_ ()Z net/minecraft/server/players/PlayerList/isUsingWhitelist ()Z +MD: net/minecraft/server/players/PlayerList/m_11312_ ()I net/minecraft/server/players/PlayerList/getViewDistance ()I +MD: net/minecraft/server/players/PlayerList/m_11313_ ()V net/minecraft/server/players/PlayerList/removeAll ()V +MD: net/minecraft/server/players/PlayerList/m_11314_ ()Ljava/util/List; net/minecraft/server/players/PlayerList/getPlayers ()Ljava/util/List; +MD: net/minecraft/server/players/PlayerList/m_11315_ ()V net/minecraft/server/players/PlayerList/reloadResources ()V +MD: net/minecraft/server/players/PlayerList/m_11316_ ()Z net/minecraft/server/players/PlayerList/isAllowCheatsForAllPlayers ()Z +MD: net/minecraft/server/players/PlayerList/m_184209_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/players/PlayerList/addWorldborderListener (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/players/PlayerList/m_184211_ (I)V net/minecraft/server/players/PlayerList/setSimulationDistance (I)V +MD: net/minecraft/server/players/PlayerList/m_184213_ ()I net/minecraft/server/players/PlayerList/getSimulationDistance ()I +MD: net/minecraft/server/players/PlayerList/m_215601_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/players/PlayerList/lambda$placeNewPlayer$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/players/PlayerList/m_215604_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/MinecraftServer$ServerResourcePackInfo;)V net/minecraft/server/players/PlayerList/lambda$placeNewPlayer$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/MinecraftServer$ServerResourcePackInfo;)V +MD: net/minecraft/server/players/PlayerList/m_215619_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/players/PlayerList/lambda$remove$2 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/players/PlayerList/m_215621_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/players/PlayerList/broadcastSystemToTeam (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/players/PlayerList/m_215624_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/getPlayerForLogin (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_215637_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; net/minecraft/server/players/PlayerList/lambda$broadcastSystemMessage$3 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/PlayerList/m_215649_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/players/PlayerList/broadcastSystemToAllExceptTeam (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/players/PlayerList/m_240416_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/server/players/PlayerList/broadcastSystemMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/server/players/PlayerList/m_240502_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;Z)V net/minecraft/server/players/PlayerList/broadcastSystemMessage (Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;Z)V +MD: net/minecraft/server/players/PlayerList/m_243049_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/players/PlayerList/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/players/PlayerList/m_243063_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/players/PlayerList/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/players/PlayerList/m_245148_ (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/players/PlayerList/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/players/PlayerList/m_247528_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/server/players/PlayerList/verifyChatTrusted (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/server/players/PlayerList/m_5749_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/PlayerList/op (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/PlayerList/m_5750_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/PlayerList/deop (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/PlayerList/m_5764_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/PlayerList/isWhiteListed (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/PlayerList/m_5765_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/PlayerList/canBypassPlayerLimit (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/PlayerList/m_6418_ (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/players/PlayerList/canPlayerLogin (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/PlayerList/m_6628_ (Z)V net/minecraft/server/players/PlayerList/setUsingWhiteList (Z)V +MD: net/minecraft/server/players/PlayerList/m_6765_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/save (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_6960_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/players/PlayerList/getSingleplayerData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/players/PlayerList/m_7542_ ()V net/minecraft/server/players/PlayerList/reloadWhiteList ()V +MD: net/minecraft/server/players/PlayerList/m_7873_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/players/PlayerList/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/players/PlayerList$1/ (Lnet/minecraft/server/players/PlayerList;)V net/minecraft/server/players/PlayerList$1/ (Lnet/minecraft/server/players/PlayerList;)V +MD: net/minecraft/server/players/PlayerList$1/m_5903_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/server/players/PlayerList$1/onBorderSetWarningBlocks (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/server/players/PlayerList$1/m_5904_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/server/players/PlayerList$1/onBorderSetWarningTime (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/server/players/PlayerList$1/m_6312_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/server/players/PlayerList$1/onBorderSizeSet (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/server/players/PlayerList$1/m_6313_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/server/players/PlayerList$1/onBorderSetDamageSafeZOne (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/server/players/PlayerList$1/m_6315_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/server/players/PlayerList$1/onBorderSetDamagePerBlock (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/server/players/PlayerList$1/m_6689_ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/server/players/PlayerList$1/onBorderSizeLerping (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/server/players/PlayerList$1/m_7721_ (Lnet/minecraft/world/level/border/WorldBorder;DD)V net/minecraft/server/players/PlayerList$1/onBorderCenterSet (Lnet/minecraft/world/level/border/WorldBorder;DD)V +MD: net/minecraft/server/players/ServerOpList/ (Ljava/io/File;)V net/minecraft/server/players/ServerOpList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/ServerOpList/m_11351_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/ServerOpList/canBypassPlayerLimit (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/ServerOpList/m_143996_ (I)[Ljava/lang/String; net/minecraft/server/players/ServerOpList/lambda$getUserList$0 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/ServerOpList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/ServerOpList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_5981_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/ServerOpList/getKeyForUser (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/ServerOpList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/ServerOpListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/ServerOpListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/ServerOpListEntry/ (Lcom/mojang/authlib/GameProfile;IZ)V net/minecraft/server/players/ServerOpListEntry/ (Lcom/mojang/authlib/GameProfile;IZ)V +MD: net/minecraft/server/players/ServerOpListEntry/m_11363_ ()I net/minecraft/server/players/ServerOpListEntry/getLevel ()I +MD: net/minecraft/server/players/ServerOpListEntry/m_11366_ ()Z net/minecraft/server/players/ServerOpListEntry/getBypassesPlayerLimit ()Z +MD: net/minecraft/server/players/ServerOpListEntry/m_11367_ (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/ServerOpListEntry/createGameProfile (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/ServerOpListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/ServerOpListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/SleepStatus/ ()V net/minecraft/server/players/SleepStatus/ ()V +MD: net/minecraft/server/players/SleepStatus/m_144001_ ()V net/minecraft/server/players/SleepStatus/removeAllSleepers ()V +MD: net/minecraft/server/players/SleepStatus/m_144002_ (I)Z net/minecraft/server/players/SleepStatus/areEnoughSleeping (I)Z +MD: net/minecraft/server/players/SleepStatus/m_144004_ (ILjava/util/List;)Z net/minecraft/server/players/SleepStatus/areEnoughDeepSleeping (ILjava/util/List;)Z +MD: net/minecraft/server/players/SleepStatus/m_144007_ (Ljava/util/List;)Z net/minecraft/server/players/SleepStatus/update (Ljava/util/List;)Z +MD: net/minecraft/server/players/SleepStatus/m_144009_ ()I net/minecraft/server/players/SleepStatus/amountSleeping ()I +MD: net/minecraft/server/players/SleepStatus/m_144010_ (I)I net/minecraft/server/players/SleepStatus/sleepersNeeded (I)I +MD: net/minecraft/server/players/StoredUserEntry/ (Ljava/lang/Object;)V net/minecraft/server/players/StoredUserEntry/ (Ljava/lang/Object;)V +MD: net/minecraft/server/players/StoredUserEntry/m_11373_ ()Ljava/lang/Object; net/minecraft/server/players/StoredUserEntry/getUser ()Ljava/lang/Object; +MD: net/minecraft/server/players/StoredUserEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/StoredUserEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/StoredUserEntry/m_7524_ ()Z net/minecraft/server/players/StoredUserEntry/hasExpired ()Z +MD: net/minecraft/server/players/StoredUserList/ ()V net/minecraft/server/players/StoredUserList/ ()V +MD: net/minecraft/server/players/StoredUserList/ (Ljava/io/File;)V net/minecraft/server/players/StoredUserList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/StoredUserList/m_11381_ (Lnet/minecraft/server/players/StoredUserEntry;)V net/minecraft/server/players/StoredUserList/add (Lnet/minecraft/server/players/StoredUserEntry;)V +MD: net/minecraft/server/players/StoredUserList/m_11385_ ()Ljava/io/File; net/minecraft/server/players/StoredUserList/getFile ()Ljava/io/File; +MD: net/minecraft/server/players/StoredUserList/m_11386_ (Lnet/minecraft/server/players/StoredUserEntry;)V net/minecraft/server/players/StoredUserList/remove (Lnet/minecraft/server/players/StoredUserEntry;)V +MD: net/minecraft/server/players/StoredUserList/m_11388_ (Ljava/lang/Object;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/StoredUserList/get (Ljava/lang/Object;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/StoredUserList/m_11390_ ()Z net/minecraft/server/players/StoredUserList/isEmpty ()Z +MD: net/minecraft/server/players/StoredUserList/m_11391_ (Lnet/minecraft/server/players/StoredUserEntry;)Lcom/google/gson/JsonObject; net/minecraft/server/players/StoredUserList/lambda$save$0 (Lnet/minecraft/server/players/StoredUserEntry;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/players/StoredUserList/m_11393_ (Ljava/lang/Object;)V net/minecraft/server/players/StoredUserList/remove (Ljava/lang/Object;)V +MD: net/minecraft/server/players/StoredUserList/m_11395_ ()Ljava/util/Collection; net/minecraft/server/players/StoredUserList/getEntries ()Ljava/util/Collection; +MD: net/minecraft/server/players/StoredUserList/m_11396_ (Ljava/lang/Object;)Z net/minecraft/server/players/StoredUserList/contains (Ljava/lang/Object;)Z +MD: net/minecraft/server/players/StoredUserList/m_11398_ ()V net/minecraft/server/players/StoredUserList/save ()V +MD: net/minecraft/server/players/StoredUserList/m_11399_ ()V net/minecraft/server/players/StoredUserList/load ()V +MD: net/minecraft/server/players/StoredUserList/m_11400_ ()V net/minecraft/server/players/StoredUserList/removeExpired ()V +MD: net/minecraft/server/players/StoredUserList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/StoredUserList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/StoredUserList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/StoredUserList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/StoredUserList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/StoredUserList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/UserBanList/ (Ljava/io/File;)V net/minecraft/server/players/UserBanList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/UserBanList/m_11406_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/UserBanList/isBanned (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/UserBanList/m_144012_ (I)[Ljava/lang/String; net/minecraft/server/players/UserBanList/lambda$getUserList$0 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/UserBanList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/UserBanList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_5981_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/UserBanList/getKeyForUser (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/UserBanList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +MD: net/minecraft/server/players/UserBanListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserBanListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/UserBanListEntry/m_11445_ (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/UserBanListEntry/createGameProfile (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/UserBanListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserBanListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/UserBanListEntry/m_8003_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/players/UserBanListEntry/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/UserWhiteList/ (Ljava/io/File;)V net/minecraft/server/players/UserWhiteList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/UserWhiteList/m_11453_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/UserWhiteList/isWhiteListed (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/UserWhiteList/m_144014_ (I)[Ljava/lang/String; net/minecraft/server/players/UserWhiteList/lambda$getUserList$0 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/UserWhiteList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/UserWhiteList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_5981_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/UserWhiteList/getKeyForUser (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/UserWhiteList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/UserWhiteListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserWhiteListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/UserWhiteListEntry/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/UserWhiteListEntry/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/UserWhiteListEntry/m_11465_ (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/UserWhiteListEntry/createGameProfile (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/UserWhiteListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserWhiteListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/ (I)V net/minecraft/server/rcon/NetworkDataOutputStream/ (I)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11471_ ()[B net/minecraft/server/rcon/NetworkDataOutputStream/toByteArray ()[B +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11472_ (I)V net/minecraft/server/rcon/NetworkDataOutputStream/write (I)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11474_ (Ljava/lang/String;)V net/minecraft/server/rcon/NetworkDataOutputStream/writeString (Ljava/lang/String;)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11476_ (S)V net/minecraft/server/rcon/NetworkDataOutputStream/writeShort (S)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11478_ ([B)V net/minecraft/server/rcon/NetworkDataOutputStream/writeBytes ([B)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11480_ ()V net/minecraft/server/rcon/NetworkDataOutputStream/reset ()V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_144016_ (F)V net/minecraft/server/rcon/NetworkDataOutputStream/writeFloat (F)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_144018_ (I)V net/minecraft/server/rcon/NetworkDataOutputStream/writeInt (I)V +MD: net/minecraft/server/rcon/PktUtils/ ()V net/minecraft/server/rcon/PktUtils/ ()V +MD: net/minecraft/server/rcon/PktUtils/ ()V net/minecraft/server/rcon/PktUtils/ ()V +MD: net/minecraft/server/rcon/PktUtils/m_11483_ (B)Ljava/lang/String; net/minecraft/server/rcon/PktUtils/toHexString (B)Ljava/lang/String; +MD: net/minecraft/server/rcon/PktUtils/m_11485_ ([BI)I net/minecraft/server/rcon/PktUtils/intFromByteArray ([BI)I +MD: net/minecraft/server/rcon/PktUtils/m_11488_ ([BII)Ljava/lang/String; net/minecraft/server/rcon/PktUtils/stringFromByteArray ([BII)Ljava/lang/String; +MD: net/minecraft/server/rcon/PktUtils/m_11492_ ([BII)I net/minecraft/server/rcon/PktUtils/intFromByteArray ([BII)I +MD: net/minecraft/server/rcon/PktUtils/m_11496_ ([BII)I net/minecraft/server/rcon/PktUtils/intFromNetworkByteArray ([BII)I +MD: net/minecraft/server/rcon/RconConsoleSource/ ()V net/minecraft/server/rcon/RconConsoleSource/ ()V +MD: net/minecraft/server/rcon/RconConsoleSource/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/rcon/RconConsoleSource/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/rcon/RconConsoleSource/m_11512_ ()V net/minecraft/server/rcon/RconConsoleSource/prepareForCommand ()V +MD: net/minecraft/server/rcon/RconConsoleSource/m_11513_ ()Ljava/lang/String; net/minecraft/server/rcon/RconConsoleSource/getCommandResponse ()Ljava/lang/String; +MD: net/minecraft/server/rcon/RconConsoleSource/m_11514_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/rcon/RconConsoleSource/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/rcon/RconConsoleSource/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/rcon/RconConsoleSource/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/rcon/RconConsoleSource/m_6102_ ()Z net/minecraft/server/rcon/RconConsoleSource/shouldInformAdmins ()Z +MD: net/minecraft/server/rcon/RconConsoleSource/m_6999_ ()Z net/minecraft/server/rcon/RconConsoleSource/acceptsSuccess ()Z +MD: net/minecraft/server/rcon/RconConsoleSource/m_7028_ ()Z net/minecraft/server/rcon/RconConsoleSource/acceptsFailure ()Z +MD: net/minecraft/server/rcon/thread/GenericThread/ ()V net/minecraft/server/rcon/thread/GenericThread/ ()V +MD: net/minecraft/server/rcon/thread/GenericThread/ (Ljava/lang/String;)V net/minecraft/server/rcon/thread/GenericThread/ (Ljava/lang/String;)V +MD: net/minecraft/server/rcon/thread/GenericThread/m_11523_ ()Z net/minecraft/server/rcon/thread/GenericThread/isRunning ()Z +MD: net/minecraft/server/rcon/thread/GenericThread/m_7528_ ()Z net/minecraft/server/rcon/thread/GenericThread/start ()Z +MD: net/minecraft/server/rcon/thread/GenericThread/m_7530_ ()V net/minecraft/server/rcon/thread/GenericThread/stop ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/ ()V net/minecraft/server/rcon/thread/QueryThreadGs4/ ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/ (Lnet/minecraft/server/ServerInterface;I)V net/minecraft/server/rcon/thread/QueryThreadGs4/ (Lnet/minecraft/server/ServerInterface;I)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11544_ (JLnet/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge;)Z net/minecraft/server/rcon/thread/QueryThreadGs4/lambda$pruneChallenges$0 (JLnet/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge;)Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11547_ (Ljava/lang/Exception;)V net/minecraft/server/rcon/thread/QueryThreadGs4/recoverSocketError (Ljava/lang/Exception;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11549_ (Ljava/net/DatagramPacket;)Z net/minecraft/server/rcon/thread/QueryThreadGs4/processPacket (Ljava/net/DatagramPacket;)Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11551_ (Ljava/net/SocketAddress;)[B net/minecraft/server/rcon/thread/QueryThreadGs4/getIdentBytes (Ljava/net/SocketAddress;)[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11553_ (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/QueryThreadGs4; net/minecraft/server/rcon/thread/QueryThreadGs4/create (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/QueryThreadGs4; +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11555_ ([BLjava/net/DatagramPacket;)V net/minecraft/server/rcon/thread/QueryThreadGs4/sendTo ([BLjava/net/DatagramPacket;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11558_ (Ljava/net/DatagramPacket;)[B net/minecraft/server/rcon/thread/QueryThreadGs4/buildRuleResponse (Ljava/net/DatagramPacket;)[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11560_ (Ljava/net/DatagramPacket;)Ljava/lang/Boolean; net/minecraft/server/rcon/thread/QueryThreadGs4/validChallenge (Ljava/net/DatagramPacket;)Ljava/lang/Boolean; +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11562_ ()V net/minecraft/server/rcon/thread/QueryThreadGs4/pruneChallenges ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11563_ (Ljava/net/DatagramPacket;)V net/minecraft/server/rcon/thread/QueryThreadGs4/sendChallenge (Ljava/net/DatagramPacket;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11565_ ()Z net/minecraft/server/rcon/thread/QueryThreadGs4/initSocket ()Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_7528_ ()Z net/minecraft/server/rcon/thread/QueryThreadGs4/start ()Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/run ()V net/minecraft/server/rcon/thread/QueryThreadGs4/run ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/ (Ljava/net/DatagramPacket;)V net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/ (Ljava/net/DatagramPacket;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11574_ ()I net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getChallenge ()I +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11575_ (J)Ljava/lang/Boolean; net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/before (J)Ljava/lang/Boolean; +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11577_ ()[B net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getChallengeBytes ()[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11578_ ()[B net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getIdentBytes ()[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_144028_ ()Ljava/lang/String; net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getIdent ()Ljava/lang/String; +MD: net/minecraft/server/rcon/thread/RconClient/ ()V net/minecraft/server/rcon/thread/RconClient/ ()V +MD: net/minecraft/server/rcon/thread/RconClient/ (Lnet/minecraft/server/ServerInterface;Ljava/lang/String;Ljava/net/Socket;)V net/minecraft/server/rcon/thread/RconClient/ (Lnet/minecraft/server/ServerInterface;Ljava/lang/String;Ljava/net/Socket;)V +MD: net/minecraft/server/rcon/thread/RconClient/m_11590_ (IILjava/lang/String;)V net/minecraft/server/rcon/thread/RconClient/send (IILjava/lang/String;)V +MD: net/minecraft/server/rcon/thread/RconClient/m_11594_ (ILjava/lang/String;)V net/minecraft/server/rcon/thread/RconClient/sendCmdResponse (ILjava/lang/String;)V +MD: net/minecraft/server/rcon/thread/RconClient/m_11598_ ()V net/minecraft/server/rcon/thread/RconClient/sendAuthFailure ()V +MD: net/minecraft/server/rcon/thread/RconClient/m_11599_ ()V net/minecraft/server/rcon/thread/RconClient/closeSocket ()V +MD: net/minecraft/server/rcon/thread/RconClient/m_7530_ ()V net/minecraft/server/rcon/thread/RconClient/stop ()V +MD: net/minecraft/server/rcon/thread/RconClient/run ()V net/minecraft/server/rcon/thread/RconClient/run ()V +MD: net/minecraft/server/rcon/thread/RconThread/ ()V net/minecraft/server/rcon/thread/RconThread/ ()V +MD: net/minecraft/server/rcon/thread/RconThread/ (Lnet/minecraft/server/ServerInterface;Ljava/net/ServerSocket;Ljava/lang/String;)V net/minecraft/server/rcon/thread/RconThread/ (Lnet/minecraft/server/ServerInterface;Ljava/net/ServerSocket;Ljava/lang/String;)V +MD: net/minecraft/server/rcon/thread/RconThread/m_11611_ (Lnet/minecraft/server/rcon/thread/RconClient;)Z net/minecraft/server/rcon/thread/RconThread/lambda$clearClients$0 (Lnet/minecraft/server/rcon/thread/RconClient;)Z +MD: net/minecraft/server/rcon/thread/RconThread/m_11613_ (Ljava/net/ServerSocket;)V net/minecraft/server/rcon/thread/RconThread/closeSocket (Ljava/net/ServerSocket;)V +MD: net/minecraft/server/rcon/thread/RconThread/m_11615_ (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/RconThread; net/minecraft/server/rcon/thread/RconThread/create (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/RconThread; +MD: net/minecraft/server/rcon/thread/RconThread/m_11618_ ()V net/minecraft/server/rcon/thread/RconThread/clearClients ()V +MD: net/minecraft/server/rcon/thread/RconThread/m_7530_ ()V net/minecraft/server/rcon/thread/RconThread/stop ()V +MD: net/minecraft/server/rcon/thread/RconThread/run ()V net/minecraft/server/rcon/thread/RconThread/run ()V +MD: net/minecraft/sounds/Music/ ()V net/minecraft/sounds/Music/ ()V +MD: net/minecraft/sounds/Music/ (Lnet/minecraft/core/Holder;IIZ)V net/minecraft/sounds/Music/ (Lnet/minecraft/core/Holder;IIZ)V +MD: net/minecraft/sounds/Music/m_11636_ ()I net/minecraft/sounds/Music/getMinDelay ()I +MD: net/minecraft/sounds/Music/m_11639_ ()I net/minecraft/sounds/Music/getMaxDelay ()I +MD: net/minecraft/sounds/Music/m_11642_ ()Z net/minecraft/sounds/Music/replaceCurrentMusic ()Z +MD: net/minecraft/sounds/Music/m_144034_ (Lnet/minecraft/sounds/Music;)Ljava/lang/Boolean; net/minecraft/sounds/Music/lambda$static$3 (Lnet/minecraft/sounds/Music;)Ljava/lang/Boolean; +MD: net/minecraft/sounds/Music/m_144036_ (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; net/minecraft/sounds/Music/lambda$static$2 (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; +MD: net/minecraft/sounds/Music/m_144038_ (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; net/minecraft/sounds/Music/lambda$static$1 (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; +MD: net/minecraft/sounds/Music/m_263158_ (Lnet/minecraft/sounds/Music;)Lnet/minecraft/core/Holder; net/minecraft/sounds/Music/lambda$static$0 (Lnet/minecraft/sounds/Music;)Lnet/minecraft/core/Holder; +MD: net/minecraft/sounds/Music/m_263159_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/sounds/Music/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/sounds/Music/m_263193_ ()Lnet/minecraft/core/Holder; net/minecraft/sounds/Music/getEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/sounds/Musics/ ()V net/minecraft/sounds/Musics/ ()V +MD: net/minecraft/sounds/Musics/ ()V net/minecraft/sounds/Musics/ ()V +MD: net/minecraft/sounds/Musics/m_263184_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/sounds/Music; net/minecraft/sounds/Musics/createGameMusic (Lnet/minecraft/core/Holder;)Lnet/minecraft/sounds/Music; +MD: net/minecraft/sounds/SoundEvent/ ()V net/minecraft/sounds/SoundEvent/ ()V +MD: net/minecraft/sounds/SoundEvent/ (Lnet/minecraft/resources/ResourceLocation;FZ)V net/minecraft/sounds/SoundEvent/ (Lnet/minecraft/resources/ResourceLocation;FZ)V +MD: net/minecraft/sounds/SoundEvent/m_11660_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/sounds/SoundEvent/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/sounds/SoundEvent/m_215668_ (F)F net/minecraft/sounds/SoundEvent/getRange (F)F +MD: net/minecraft/sounds/SoundEvent/m_262824_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/createVariableRangeEvent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_262856_ (Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/createFixedRangeEvent (Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263192_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/lambda$create$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263201_ ()Ljava/util/Optional; net/minecraft/sounds/SoundEvent/fixedRange ()Ljava/util/Optional; +MD: net/minecraft/sounds/SoundEvent/m_263213_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Float;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/lambda$create$1 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Float;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263214_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/readFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263227_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/create (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263231_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/sounds/SoundEvent/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/sounds/SoundEvent/m_263241_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/sounds/SoundEvent/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/sounds/SoundEvents/ ()V net/minecraft/sounds/SoundEvents/ ()V +MD: net/minecraft/sounds/SoundEvents/ ()V net/minecraft/sounds/SoundEvents/ ()V +MD: net/minecraft/sounds/SoundEvents/m_12656_ (Ljava/lang/String;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvents/register (Ljava/lang/String;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvents/m_215782_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/sounds/SoundEvents/registerGoatHornSoundVariants ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/sounds/SoundEvents/m_263160_ (I)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/lambda$registerGoatHornSoundVariants$0 (I)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundEvents/m_263178_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/registerForHolder (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundEvents/m_263198_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/core/Holder; net/minecraft/sounds/SoundEvents/register (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/core/Holder; +MD: net/minecraft/sounds/SoundEvents/m_263204_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvents/register (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvents/m_263223_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/registerForHolder (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundEvents/m_263226_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvents/register (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvents/m_263237_ (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/registerForHolder (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundSource/ ()V net/minecraft/sounds/SoundSource/ ()V +MD: net/minecraft/sounds/SoundSource/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/sounds/SoundSource/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/sounds/SoundSource/m_12676_ ()Ljava/lang/String; net/minecraft/sounds/SoundSource/getName ()Ljava/lang/String; +MD: net/minecraft/sounds/SoundSource/m_144247_ ()[Lnet/minecraft/sounds/SoundSource; net/minecraft/sounds/SoundSource/$values ()[Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/sounds/SoundSource/valueOf (Ljava/lang/String;)Lnet/minecraft/sounds/SoundSource; net/minecraft/sounds/SoundSource/valueOf (Ljava/lang/String;)Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/sounds/SoundSource/values ()[Lnet/minecraft/sounds/SoundSource; net/minecraft/sounds/SoundSource/values ()[Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/stats/RecipeBook/ ()V net/minecraft/stats/RecipeBook/ ()V +MD: net/minecraft/stats/RecipeBook/m_12684_ ()Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBook/getBookSettings ()Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBook/m_12685_ (Lnet/minecraft/stats/RecipeBook;)V net/minecraft/stats/RecipeBook/copyOverData (Lnet/minecraft/stats/RecipeBook;)V +MD: net/minecraft/stats/RecipeBook/m_12687_ (Lnet/minecraft/stats/RecipeBookSettings;)V net/minecraft/stats/RecipeBook/setBookSettings (Lnet/minecraft/stats/RecipeBookSettings;)V +MD: net/minecraft/stats/RecipeBook/m_12689_ (Lnet/minecraft/world/inventory/RecipeBookMenu;)Z net/minecraft/stats/RecipeBook/isFiltering (Lnet/minecraft/world/inventory/RecipeBookMenu;)Z +MD: net/minecraft/stats/RecipeBook/m_12691_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBook/isOpen (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBook/m_12693_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBook/setOpen (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBook/m_12696_ (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V net/minecraft/stats/RecipeBook/setBookSetting (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V +MD: net/minecraft/stats/RecipeBook/m_12700_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/add (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBook/m_12702_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/stats/RecipeBook/add (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/stats/RecipeBook/m_12704_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBook/isFiltering (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBook/m_12706_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBook/setFiltering (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBook/m_12709_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/stats/RecipeBook/contains (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/stats/RecipeBook/m_12711_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/stats/RecipeBook/contains (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/stats/RecipeBook/m_12713_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/remove (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBook/m_12715_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/stats/RecipeBook/remove (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/stats/RecipeBook/m_12717_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/stats/RecipeBook/willHighlight (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/stats/RecipeBook/m_12719_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/stats/RecipeBook/addHighlight (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/stats/RecipeBook/m_12721_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/removeHighlight (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBook/m_12723_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/addHighlight (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBookSettings/ ()V net/minecraft/stats/RecipeBookSettings/ ()V +MD: net/minecraft/stats/RecipeBookSettings/ (Ljava/util/Map;)V net/minecraft/stats/RecipeBookSettings/ (Ljava/util/Map;)V +MD: net/minecraft/stats/RecipeBookSettings/ ()V net/minecraft/stats/RecipeBookSettings/ ()V +MD: net/minecraft/stats/RecipeBookSettings/equals (Ljava/lang/Object;)Z net/minecraft/stats/RecipeBookSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/stats/RecipeBookSettings/hashCode ()I net/minecraft/stats/RecipeBookSettings/hashCode ()I +MD: net/minecraft/stats/RecipeBookSettings/m_12731_ ()Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBookSettings/copy ()Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBookSettings/m_12732_ (Lnet/minecraft/stats/RecipeBookSettings;)V net/minecraft/stats/RecipeBookSettings/replaceFrom (Lnet/minecraft/stats/RecipeBookSettings;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12734_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBookSettings/isOpen (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBookSettings/m_12736_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBookSettings/setOpen (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBookSettings/m_12739_ (Ljava/util/EnumMap;)V net/minecraft/stats/RecipeBookSettings/lambda$new$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12741_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBookSettings/read (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBookSettings/m_12743_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/stats/RecipeBookSettings/lambda$write$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12747_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Map;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/stats/RecipeBookSettings/lambda$read$1 (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Map;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12752_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBookSettings/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBookSettings/m_12754_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBookSettings/isFiltering (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBookSettings/m_12756_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBookSettings/setFiltering (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBookSettings/m_12759_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/stats/RecipeBookSettings/write (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12761_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/stats/RecipeBookSettings/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/ (ZZ)V net/minecraft/stats/RecipeBookSettings$TypeSettings/ (ZZ)V +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/equals (Ljava/lang/Object;)Z net/minecraft/stats/RecipeBookSettings$TypeSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/hashCode ()I net/minecraft/stats/RecipeBookSettings$TypeSettings/hashCode ()I +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/m_12771_ ()Lnet/minecraft/stats/RecipeBookSettings$TypeSettings; net/minecraft/stats/RecipeBookSettings$TypeSettings/copy ()Lnet/minecraft/stats/RecipeBookSettings$TypeSettings; +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/toString ()Ljava/lang/String; net/minecraft/stats/RecipeBookSettings$TypeSettings/toString ()Ljava/lang/String; +MD: net/minecraft/stats/ServerRecipeBook/ ()V net/minecraft/stats/ServerRecipeBook/ ()V +MD: net/minecraft/stats/ServerRecipeBook/ ()V net/minecraft/stats/ServerRecipeBook/ ()V +MD: net/minecraft/stats/ServerRecipeBook/m_12789_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/stats/ServerRecipeBook/sendInitialRecipeBook (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12791_ (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/stats/ServerRecipeBook/addRecipes (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/stats/ServerRecipeBook/m_12794_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/crafting/RecipeManager;)V net/minecraft/stats/ServerRecipeBook/fromNbt (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/crafting/RecipeManager;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12797_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeManager;)V net/minecraft/stats/ServerRecipeBook/loadRecipes (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeManager;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12801_ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V net/minecraft/stats/ServerRecipeBook/sendRecipes (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12805_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/stats/ServerRecipeBook/toNbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/stats/ServerRecipeBook/m_12806_ (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/stats/ServerRecipeBook/removeRecipes (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/stats/ServerStatsCounter/ ()V net/minecraft/stats/ServerStatsCounter/ ()V +MD: net/minecraft/stats/ServerStatsCounter/ (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V net/minecraft/stats/ServerStatsCounter/ (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12818_ ()V net/minecraft/stats/ServerStatsCounter/save ()V +MD: net/minecraft/stats/ServerStatsCounter/m_12819_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/stats/ServerStatsCounter/sendStats (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12821_ (Lnet/minecraft/stats/StatType;)Lcom/google/gson/JsonObject; net/minecraft/stats/ServerStatsCounter/lambda$toJson$4 (Lnet/minecraft/stats/StatType;)Lcom/google/gson/JsonObject; +MD: net/minecraft/stats/ServerStatsCounter/m_12823_ (Lnet/minecraft/stats/StatType;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/stats/ServerStatsCounter/getStat (Lnet/minecraft/stats/StatType;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/stats/ServerStatsCounter/m_12830_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/stats/ServerStatsCounter/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/stats/ServerStatsCounter/m_12832_ (Lcom/mojang/datafixers/DataFixer;Ljava/lang/String;)V net/minecraft/stats/ServerStatsCounter/parseLocal (Lcom/mojang/datafixers/DataFixer;Ljava/lang/String;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12835_ (Ljava/lang/String;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$3 (Ljava/lang/String;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12841_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/StatType;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$2 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/StatType;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12845_ ()Ljava/lang/String; net/minecraft/stats/ServerStatsCounter/toJson ()Ljava/lang/String; +MD: net/minecraft/stats/ServerStatsCounter/m_12846_ (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/stats/ServerStatsCounter/getKey (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/stats/ServerStatsCounter/m_12850_ ()V net/minecraft/stats/ServerStatsCounter/markAllDirty ()V +MD: net/minecraft/stats/ServerStatsCounter/m_12851_ ()Ljava/util/Set; net/minecraft/stats/ServerStatsCounter/getDirty ()Ljava/util/Set; +MD: net/minecraft/stats/ServerStatsCounter/m_144249_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/Stat;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/stats/ServerStatsCounter/m_144253_ (Ljava/lang/String;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$1 (Ljava/lang/String;)V +MD: net/minecraft/stats/ServerStatsCounter/m_6085_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V net/minecraft/stats/ServerStatsCounter/setValue (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/stats/Stat/ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)V net/minecraft/stats/Stat/ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)V +MD: net/minecraft/stats/Stat/equals (Ljava/lang/Object;)Z net/minecraft/stats/Stat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/stats/Stat/hashCode ()I net/minecraft/stats/Stat/hashCode ()I +MD: net/minecraft/stats/Stat/m_12859_ ()Lnet/minecraft/stats/StatType; net/minecraft/stats/Stat/getType ()Lnet/minecraft/stats/StatType; +MD: net/minecraft/stats/Stat/m_12860_ (I)Ljava/lang/String; net/minecraft/stats/Stat/format (I)Ljava/lang/String; +MD: net/minecraft/stats/Stat/m_12862_ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/stats/Stat/buildName (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/stats/Stat/m_12865_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/stats/Stat/locationToKey (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/stats/Stat/m_12867_ ()Ljava/lang/Object; net/minecraft/stats/Stat/getValue ()Ljava/lang/Object; +MD: net/minecraft/stats/Stat/toString ()Ljava/lang/String; net/minecraft/stats/Stat/toString ()Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/ ()V net/minecraft/stats/StatFormatter/ ()V +MD: net/minecraft/stats/StatFormatter/m_12878_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/lambda$static$3 (I)Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/m_12880_ (Ljava/text/DecimalFormat;)V net/minecraft/stats/StatFormatter/lambda$static$0 (Ljava/text/DecimalFormat;)V +MD: net/minecraft/stats/StatFormatter/m_12882_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/lambda$static$2 (I)Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/m_12884_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/lambda$static$1 (I)Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/m_12886_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/format (I)Ljava/lang/String; +MD: net/minecraft/stats/StatType/ (Lnet/minecraft/core/Registry;)V net/minecraft/stats/StatType/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/stats/StatType/iterator ()Ljava/util/Iterator; net/minecraft/stats/StatType/iterator ()Ljava/util/Iterator; +MD: net/minecraft/stats/StatType/m_12893_ ()Lnet/minecraft/core/Registry; net/minecraft/stats/StatType/getRegistry ()Lnet/minecraft/core/Registry; +MD: net/minecraft/stats/StatType/m_12894_ (Lnet/minecraft/stats/StatFormatter;Ljava/lang/Object;)Lnet/minecraft/stats/Stat; net/minecraft/stats/StatType/lambda$get$0 (Lnet/minecraft/stats/StatFormatter;Ljava/lang/Object;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/stats/StatType/m_12897_ (Ljava/lang/Object;)Z net/minecraft/stats/StatType/contains (Ljava/lang/Object;)Z +MD: net/minecraft/stats/StatType/m_12899_ (Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/stats/Stat; net/minecraft/stats/StatType/get (Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/stats/StatType/m_12902_ (Ljava/lang/Object;)Lnet/minecraft/stats/Stat; net/minecraft/stats/StatType/get (Ljava/lang/Object;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/stats/StatType/m_12904_ ()Ljava/lang/String; net/minecraft/stats/StatType/getTranslationKey ()Ljava/lang/String; +MD: net/minecraft/stats/StatType/m_12905_ ()Lnet/minecraft/network/chat/Component; net/minecraft/stats/StatType/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/stats/Stats/ ()V net/minecraft/stats/Stats/ ()V +MD: net/minecraft/stats/Stats/ ()V net/minecraft/stats/Stats/ ()V +MD: net/minecraft/stats/Stats/m_13007_ (Ljava/lang/String;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/stats/Stats/makeCustomStat (Ljava/lang/String;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/stats/Stats/m_13010_ (Ljava/lang/String;Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; net/minecraft/stats/Stats/makeRegistryStatType (Ljava/lang/String;Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; +MD: net/minecraft/stats/StatsCounter/ ()V net/minecraft/stats/StatsCounter/ ()V +MD: net/minecraft/stats/StatsCounter/m_13015_ (Lnet/minecraft/stats/Stat;)I net/minecraft/stats/StatsCounter/getValue (Lnet/minecraft/stats/Stat;)I +MD: net/minecraft/stats/StatsCounter/m_13017_ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)I net/minecraft/stats/StatsCounter/getValue (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)I +MD: net/minecraft/stats/StatsCounter/m_13023_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V net/minecraft/stats/StatsCounter/increment (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/stats/StatsCounter/m_6085_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V net/minecraft/stats/StatsCounter/setValue (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/tags/BannerPatternTags/ ()V net/minecraft/tags/BannerPatternTags/ ()V +MD: net/minecraft/tags/BannerPatternTags/ ()V net/minecraft/tags/BannerPatternTags/ ()V +MD: net/minecraft/tags/BannerPatternTags/m_215797_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/BannerPatternTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/BiomeTags/ ()V net/minecraft/tags/BiomeTags/ ()V +MD: net/minecraft/tags/BiomeTags/ ()V net/minecraft/tags/BiomeTags/ ()V +MD: net/minecraft/tags/BiomeTags/m_207630_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/BiomeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/BlockTags/ ()V net/minecraft/tags/BlockTags/ ()V +MD: net/minecraft/tags/BlockTags/ ()V net/minecraft/tags/BlockTags/ ()V +MD: net/minecraft/tags/BlockTags/m_203846_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/BlockTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/CatVariantTags/ ()V net/minecraft/tags/CatVariantTags/ ()V +MD: net/minecraft/tags/CatVariantTags/ ()V net/minecraft/tags/CatVariantTags/ ()V +MD: net/minecraft/tags/CatVariantTags/m_215845_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/CatVariantTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/DamageTypeTags/ ()V net/minecraft/tags/DamageTypeTags/ ()V +MD: net/minecraft/tags/DamageTypeTags/m_269529_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/DamageTypeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/EntityTypeTags/ ()V net/minecraft/tags/EntityTypeTags/ ()V +MD: net/minecraft/tags/EntityTypeTags/ ()V net/minecraft/tags/EntityTypeTags/ ()V +MD: net/minecraft/tags/EntityTypeTags/m_203848_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/EntityTypeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V +MD: net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V +MD: net/minecraft/tags/FlatLevelGeneratorPresetTags/m_215851_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/FlatLevelGeneratorPresetTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/FluidTags/ ()V net/minecraft/tags/FluidTags/ ()V +MD: net/minecraft/tags/FluidTags/ ()V net/minecraft/tags/FluidTags/ ()V +MD: net/minecraft/tags/FluidTags/m_203850_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/FluidTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/GameEventTags/ ()V net/minecraft/tags/GameEventTags/ ()V +MD: net/minecraft/tags/GameEventTags/ ()V net/minecraft/tags/GameEventTags/ ()V +MD: net/minecraft/tags/GameEventTags/m_203852_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/GameEventTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/InstrumentTags/ ()V net/minecraft/tags/InstrumentTags/ ()V +MD: net/minecraft/tags/InstrumentTags/m_215860_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/InstrumentTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/ItemTags/ ()V net/minecraft/tags/ItemTags/ ()V +MD: net/minecraft/tags/ItemTags/ ()V net/minecraft/tags/ItemTags/ ()V +MD: net/minecraft/tags/ItemTags/m_203854_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/ItemTags/bind (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/PaintingVariantTags/ ()V net/minecraft/tags/PaintingVariantTags/ ()V +MD: net/minecraft/tags/PaintingVariantTags/ ()V net/minecraft/tags/PaintingVariantTags/ ()V +MD: net/minecraft/tags/PaintingVariantTags/m_215873_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/PaintingVariantTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/PoiTypeTags/ ()V net/minecraft/tags/PoiTypeTags/ ()V +MD: net/minecraft/tags/PoiTypeTags/ ()V net/minecraft/tags/PoiTypeTags/ ()V +MD: net/minecraft/tags/PoiTypeTags/m_215880_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/PoiTypeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/StructureTags/ ()V net/minecraft/tags/StructureTags/ ()V +MD: net/minecraft/tags/StructureTags/m_215895_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/StructureTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagBuilder/ ()V net/minecraft/tags/TagBuilder/ ()V +MD: net/minecraft/tags/TagBuilder/m_215899_ ()Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/create ()Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215900_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addElement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215902_ (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/add (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215904_ ()Ljava/util/List; net/minecraft/tags/TagBuilder/build ()Ljava/util/List; +MD: net/minecraft/tags/TagBuilder/m_215905_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addOptionalElement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215907_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215909_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addOptionalTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagEntry/ ()V net/minecraft/tags/TagEntry/ ()V +MD: net/minecraft/tags/TagEntry/ (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;Z)V net/minecraft/tags/TagEntry/ (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;Z)V +MD: net/minecraft/tags/TagEntry/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V net/minecraft/tags/TagEntry/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: net/minecraft/tags/TagEntry/m_215924_ ()Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; net/minecraft/tags/TagEntry/elementOrTag ()Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +MD: net/minecraft/tags/TagEntry/m_215925_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/element (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215927_ (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/function/Consumer;)Z net/minecraft/tags/TagEntry/build (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/function/Consumer;)Z +MD: net/minecraft/tags/TagEntry/m_215930_ (Lnet/minecraft/tags/TagEntry;)Lcom/mojang/datafixers/util/Either; net/minecraft/tags/TagEntry/lambda$static$5 (Lnet/minecraft/tags/TagEntry;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/tags/TagEntry/m_215932_ (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/lambda$static$2 (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215934_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/lambda$static$4 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215936_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/tags/TagEntry/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/tags/TagEntry/m_215938_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagEntry/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagEntry/m_215940_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;)Z net/minecraft/tags/TagEntry/verifyIfPresent (Ljava/util/function/Predicate;Ljava/util/function/Predicate;)Z +MD: net/minecraft/tags/TagEntry/m_215943_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/optionalElement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215945_ (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/lambda$static$3 (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215947_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagEntry/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagEntry/m_215949_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/tag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215951_ (Lnet/minecraft/tags/TagEntry;)Ljava/lang/Boolean; net/minecraft/tags/TagEntry/lambda$static$0 (Lnet/minecraft/tags/TagEntry;)Ljava/lang/Boolean; +MD: net/minecraft/tags/TagEntry/m_215953_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/optionalTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/toString ()Ljava/lang/String; net/minecraft/tags/TagEntry/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagEntry$Lookup/m_213619_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/tags/TagEntry$Lookup/element (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/tags/TagEntry$Lookup/m_214048_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/tags/TagEntry$Lookup/tag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/tags/TagFile/ ()V net/minecraft/tags/TagFile/ ()V +MD: net/minecraft/tags/TagFile/ (Ljava/util/List;Z)V net/minecraft/tags/TagFile/ (Ljava/util/List;Z)V +MD: net/minecraft/tags/TagFile/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagFile/f_215959_ ()Ljava/util/List; net/minecraft/tags/TagFile/entries ()Ljava/util/List; +MD: net/minecraft/tags/TagFile/f_215960_ ()Z net/minecraft/tags/TagFile/replace ()Z +MD: net/minecraft/tags/TagFile/hashCode ()I net/minecraft/tags/TagFile/hashCode ()I +MD: net/minecraft/tags/TagFile/m_215966_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/tags/TagFile/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/tags/TagFile/toString ()Ljava/lang/String; net/minecraft/tags/TagFile/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagKey/ ()V net/minecraft/tags/TagKey/ ()V +MD: net/minecraft/tags/TagKey/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/tags/TagKey/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/tags/TagKey/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagKey/f_203867_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/tags/TagKey/registry ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/tags/TagKey/f_203868_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/tags/TagKey/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/tags/TagKey/hashCode ()I net/minecraft/tags/TagKey/hashCode ()I +MD: net/minecraft/tags/TagKey/m_203875_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/tags/TagKey/lambda$hashedCodec$4 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/tags/TagKey/m_203877_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/tags/TagKey/codec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/tags/TagKey/m_203882_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/TagKey/create (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagKey/m_203886_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/tags/TagKey/hashedCodec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/tags/TagKey/m_203888_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/TagKey/lambda$hashedCodec$1 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagKey/m_203891_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/TagKey/lambda$codec$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagKey/m_207645_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/tags/TagKey/isFor (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/tags/TagKey/m_207647_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/tags/TagKey/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/tags/TagKey/m_274114_ ()Ljava/lang/String; net/minecraft/tags/TagKey/lambda$hashedCodec$2 ()Ljava/lang/String; +MD: net/minecraft/tags/TagKey/m_274115_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/tags/TagKey/lambda$hashedCodec$3 (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/tags/TagKey/toString ()Ljava/lang/String; net/minecraft/tags/TagKey/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagLoader/ ()V net/minecraft/tags/TagLoader/ ()V +MD: net/minecraft/tags/TagLoader/ (Ljava/util/function/Function;Ljava/lang/String;)V net/minecraft/tags/TagLoader/ (Ljava/util/function/Function;Ljava/lang/String;)V +MD: net/minecraft/tags/TagLoader/m_144495_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/tags/TagLoader/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/tags/TagLoader/m_203898_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/tags/TagLoader/build (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/tags/TagLoader/m_203900_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/tags/TagLoader/loadAndBuild (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/tags/TagLoader/m_215973_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/tags/TagLoader/lambda$load$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/tags/TagLoader/m_215975_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V net/minecraft/tags/TagLoader/lambda$build$3 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V +MD: net/minecraft/tags/TagLoader/m_215978_ (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/List;)Lcom/mojang/datafixers/util/Either; net/minecraft/tags/TagLoader/build (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/List;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/tags/TagLoader/m_215994_ (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/tags/TagEntry;)V net/minecraft/tags/TagLoader/lambda$load$1 (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/tags/TagEntry;)V +MD: net/minecraft/tags/TagLoader/m_215998_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V net/minecraft/tags/TagLoader/lambda$build$4 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V +MD: net/minecraft/tags/TagLoader/m_284005_ (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/tags/TagLoader$SortingEntry;)V net/minecraft/tags/TagLoader/lambda$build$5 (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/tags/TagLoader$SortingEntry;)V +MD: net/minecraft/tags/TagLoader/m_284006_ (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/tags/TagLoader/lambda$build$2 (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/tags/TagLoader$1/ (Lnet/minecraft/tags/TagLoader;Ljava/util/Map;)V net/minecraft/tags/TagLoader$1/ (Lnet/minecraft/tags/TagLoader;Ljava/util/Map;)V +MD: net/minecraft/tags/TagLoader$1/m_213619_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/tags/TagLoader$1/element (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/tags/TagLoader$1/m_214048_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/tags/TagLoader$1/tag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/tags/TagLoader$EntryWithSource/ (Lnet/minecraft/tags/TagEntry;Ljava/lang/String;)V net/minecraft/tags/TagLoader$EntryWithSource/ (Lnet/minecraft/tags/TagEntry;Ljava/lang/String;)V +MD: net/minecraft/tags/TagLoader$EntryWithSource/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagLoader$EntryWithSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagLoader$EntryWithSource/f_216042_ ()Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagLoader$EntryWithSource/entry ()Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagLoader$EntryWithSource/f_216043_ ()Ljava/lang/String; net/minecraft/tags/TagLoader$EntryWithSource/source ()Ljava/lang/String; +MD: net/minecraft/tags/TagLoader$EntryWithSource/hashCode ()I net/minecraft/tags/TagLoader$EntryWithSource/hashCode ()I +MD: net/minecraft/tags/TagLoader$EntryWithSource/toString ()Ljava/lang/String; net/minecraft/tags/TagLoader$EntryWithSource/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagLoader$SortingEntry/ (Ljava/util/List;)V net/minecraft/tags/TagLoader$SortingEntry/ (Ljava/util/List;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagLoader$SortingEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagLoader$SortingEntry/f_283922_ ()Ljava/util/List; net/minecraft/tags/TagLoader$SortingEntry/entries ()Ljava/util/List; +MD: net/minecraft/tags/TagLoader$SortingEntry/hashCode ()I net/minecraft/tags/TagLoader$SortingEntry/hashCode ()I +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284213_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagLoader$SortingEntry/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284267_ (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V net/minecraft/tags/TagLoader$SortingEntry/lambda$visitOptionalDependencies$1 (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284342_ (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V net/minecraft/tags/TagLoader$SortingEntry/lambda$visitRequiredDependencies$0 (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284346_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagLoader$SortingEntry/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/toString ()Ljava/lang/String; net/minecraft/tags/TagLoader$SortingEntry/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagManager/ ()V net/minecraft/tags/TagManager/ ()V +MD: net/minecraft/tags/TagManager/ (Lnet/minecraft/core/RegistryAccess;)V net/minecraft/tags/TagManager/ (Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/tags/TagManager/m_203904_ ()Ljava/util/List; net/minecraft/tags/TagManager/getResult ()Ljava/util/List; +MD: net/minecraft/tags/TagManager/m_203905_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/lambda$reload$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager/m_203907_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/createLoader (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager/m_203915_ (Ljava/util/List;Ljava/lang/Void;)V net/minecraft/tags/TagManager/lambda$reload$2 (Ljava/util/List;Ljava/lang/Void;)V +MD: net/minecraft/tags/TagManager/m_203918_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/tags/TagManager/getTagDir (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/tags/TagManager/m_203920_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagLoader;Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/tags/TagManager$LoadResult; net/minecraft/tags/TagManager/lambda$createLoader$4 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagLoader;Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/tags/TagManager$LoadResult; +MD: net/minecraft/tags/TagManager/m_203924_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager/m_257152_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/tags/TagManager/lambda$createLoader$3 (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/tags/TagManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager$LoadResult/ (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map;)V net/minecraft/tags/TagManager$LoadResult/ (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map;)V +MD: net/minecraft/tags/TagManager$LoadResult/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagManager$LoadResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagManager$LoadResult/f_203928_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/tags/TagManager$LoadResult/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/tags/TagManager$LoadResult/f_203929_ ()Ljava/util/Map; net/minecraft/tags/TagManager$LoadResult/tags ()Ljava/util/Map; +MD: net/minecraft/tags/TagManager$LoadResult/hashCode ()I net/minecraft/tags/TagManager$LoadResult/hashCode ()I +MD: net/minecraft/tags/TagManager$LoadResult/toString ()Ljava/lang/String; net/minecraft/tags/TagManager$LoadResult/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagNetworkSerialization/ ()V net/minecraft/tags/TagNetworkSerialization/ ()V +MD: net/minecraft/tags/TagNetworkSerialization/m_203940_ (Lcom/mojang/datafixers/util/Pair;)Z net/minecraft/tags/TagNetworkSerialization/lambda$serializeTagsToNetwork$1 (Lcom/mojang/datafixers/util/Pair;)Z +MD: net/minecraft/tags/TagNetworkSerialization/m_203942_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; net/minecraft/tags/TagNetworkSerialization/serializeToNetwork (Lnet/minecraft/core/Registry;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; +MD: net/minecraft/tags/TagNetworkSerialization/m_203944_ (Lnet/minecraft/core/Registry;Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/tags/TagNetworkSerialization/lambda$serializeToNetwork$2 (Lnet/minecraft/core/Registry;Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/tags/TagNetworkSerialization/m_203948_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/tags/TagNetworkSerialization/lambda$serializeTagsToNetwork$0 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/tags/TagNetworkSerialization/m_203952_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;)V net/minecraft/tags/TagNetworkSerialization/deserializeTagsFromNetwork (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;)V +MD: net/minecraft/tags/TagNetworkSerialization/m_244908_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/ints/IntList;)V net/minecraft/tags/TagNetworkSerialization/lambda$deserializeTagsFromNetwork$3 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/ints/IntList;)V +MD: net/minecraft/tags/TagNetworkSerialization/m_245799_ (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/Map; net/minecraft/tags/TagNetworkSerialization/serializeTagsToNetwork (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/Map; +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/ (Ljava/util/Map;)V net/minecraft/tags/TagNetworkSerialization$NetworkPayload/ (Ljava/util/Map;)V +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/m_203966_ ()Z net/minecraft/tags/TagNetworkSerialization$NetworkPayload/isEmpty ()Z +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/m_203967_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/tags/TagNetworkSerialization$NetworkPayload/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/m_203969_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; net/minecraft/tags/TagNetworkSerialization$NetworkPayload/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; +MD: net/minecraft/tags/TagNetworkSerialization$TagOutput/m_203971_ (Lnet/minecraft/tags/TagKey;Ljava/util/List;)V net/minecraft/tags/TagNetworkSerialization$TagOutput/accept (Lnet/minecraft/tags/TagKey;Ljava/util/List;)V +MD: net/minecraft/tags/WorldPresetTags/ ()V net/minecraft/tags/WorldPresetTags/ ()V +MD: net/minecraft/tags/WorldPresetTags/ ()V net/minecraft/tags/WorldPresetTags/ ()V +MD: net/minecraft/tags/WorldPresetTags/m_216057_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/WorldPresetTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/util/AbortableIterationConsumer/m_260908_ (Ljava/util/function/Consumer;)Lnet/minecraft/util/AbortableIterationConsumer; net/minecraft/util/AbortableIterationConsumer/forConsumer (Ljava/util/function/Consumer;)Lnet/minecraft/util/AbortableIterationConsumer; +MD: net/minecraft/util/AbortableIterationConsumer/m_260972_ (Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer/accept (Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer/m_261257_ (Ljava/util/function/Consumer;Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer/lambda$forConsumer$0 (Ljava/util/function/Consumer;Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/ ()V net/minecraft/util/AbortableIterationConsumer$Continuation/ ()V +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/ (Ljava/lang/String;I)V net/minecraft/util/AbortableIterationConsumer$Continuation/ (Ljava/lang/String;I)V +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/m_261079_ ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer$Continuation/$values ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/m_261146_ ()Z net/minecraft/util/AbortableIterationConsumer$Continuation/shouldAbort ()Z +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/valueOf (Ljava/lang/String;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer$Continuation/valueOf (Ljava/lang/String;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/values ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer$Continuation/values ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/BitStorage/m_13513_ ()[J net/minecraft/util/BitStorage/getRaw ()[J +MD: net/minecraft/util/BitStorage/m_13514_ (I)I net/minecraft/util/BitStorage/get (I)I +MD: net/minecraft/util/BitStorage/m_13516_ (II)I net/minecraft/util/BitStorage/getAndSet (II)I +MD: net/minecraft/util/BitStorage/m_13519_ (Ljava/util/function/IntConsumer;)V net/minecraft/util/BitStorage/getAll (Ljava/util/function/IntConsumer;)V +MD: net/minecraft/util/BitStorage/m_13521_ ()I net/minecraft/util/BitStorage/getSize ()I +MD: net/minecraft/util/BitStorage/m_13524_ (II)V net/minecraft/util/BitStorage/set (II)V +MD: net/minecraft/util/BitStorage/m_144604_ ()I net/minecraft/util/BitStorage/getBits ()I +MD: net/minecraft/util/BitStorage/m_197970_ ([I)V net/minecraft/util/BitStorage/unpack ([I)V +MD: net/minecraft/util/BitStorage/m_199833_ ()Lnet/minecraft/util/BitStorage; net/minecraft/util/BitStorage/copy ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/util/Brightness/ ()V net/minecraft/util/Brightness/ ()V +MD: net/minecraft/util/Brightness/ (II)V net/minecraft/util/Brightness/ (II)V +MD: net/minecraft/util/Brightness/equals (Ljava/lang/Object;)Z net/minecraft/util/Brightness/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/Brightness/f_268416_ ()I net/minecraft/util/Brightness/block ()I +MD: net/minecraft/util/Brightness/f_268420_ ()I net/minecraft/util/Brightness/sky ()I +MD: net/minecraft/util/Brightness/hashCode ()I net/minecraft/util/Brightness/hashCode ()I +MD: net/minecraft/util/Brightness/m_269373_ (I)Lnet/minecraft/util/Brightness; net/minecraft/util/Brightness/unpack (I)Lnet/minecraft/util/Brightness; +MD: net/minecraft/util/Brightness/m_269377_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/Brightness/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/Brightness/m_269595_ ()I net/minecraft/util/Brightness/pack ()I +MD: net/minecraft/util/Brightness/toString ()Ljava/lang/String; net/minecraft/util/Brightness/toString ()Ljava/lang/String; +MD: net/minecraft/util/ByIdMap/ ()V net/minecraft/util/ByIdMap/ ()V +MD: net/minecraft/util/ByIdMap/m_262788_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)Ljava/util/function/IntFunction; net/minecraft/util/ByIdMap/createMap (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)Ljava/util/function/IntFunction; +MD: net/minecraft/util/ByIdMap/m_262799_ ([Ljava/lang/Object;II)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$continuous$2 ([Ljava/lang/Object;II)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262806_ (Ljava/util/function/IntFunction;Ljava/lang/Object;I)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$sparse$0 (Ljava/util/function/IntFunction;Ljava/lang/Object;I)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262816_ (I[Ljava/lang/Object;Ljava/lang/Object;I)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$continuous$1 (I[Ljava/lang/Object;Ljava/lang/Object;I)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262839_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy;)Ljava/util/function/IntFunction; net/minecraft/util/ByIdMap/continuous (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy;)Ljava/util/function/IntFunction; +MD: net/minecraft/util/ByIdMap/m_262845_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/function/IntFunction; net/minecraft/util/ByIdMap/sparse (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/function/IntFunction; +MD: net/minecraft/util/ByIdMap/m_262853_ ([Ljava/lang/Object;II)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$continuous$3 ([Ljava/lang/Object;II)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262859_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)[Ljava/lang/Object; net/minecraft/util/ByIdMap/createSortedArray (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)[Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap$1/ ()V net/minecraft/util/ByIdMap$1/ ()V +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ ()V net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ ()V +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ (Ljava/lang/String;I)V net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ (Ljava/lang/String;I)V +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/m_262833_ ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; net/minecraft/util/ByIdMap$OutOfBoundsStrategy/$values ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; net/minecraft/util/ByIdMap$OutOfBoundsStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/values ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; net/minecraft/util/ByIdMap$OutOfBoundsStrategy/values ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +MD: net/minecraft/util/ClassInstanceMultiMap/ (Ljava/lang/Class;)V net/minecraft/util/ClassInstanceMultiMap/ (Ljava/lang/Class;)V +MD: net/minecraft/util/ClassInstanceMultiMap/add (Ljava/lang/Object;)Z net/minecraft/util/ClassInstanceMultiMap/add (Ljava/lang/Object;)Z +MD: net/minecraft/util/ClassInstanceMultiMap/contains (Ljava/lang/Object;)Z net/minecraft/util/ClassInstanceMultiMap/contains (Ljava/lang/Object;)Z +MD: net/minecraft/util/ClassInstanceMultiMap/iterator ()Ljava/util/Iterator; net/minecraft/util/ClassInstanceMultiMap/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/ClassInstanceMultiMap/m_13532_ ()Ljava/util/List; net/minecraft/util/ClassInstanceMultiMap/getAllInstances ()Ljava/util/List; +MD: net/minecraft/util/ClassInstanceMultiMap/m_13533_ (Ljava/lang/Class;)Ljava/util/Collection; net/minecraft/util/ClassInstanceMultiMap/find (Ljava/lang/Class;)Ljava/util/Collection; +MD: net/minecraft/util/ClassInstanceMultiMap/m_13537_ (Ljava/lang/Class;)Ljava/util/List; net/minecraft/util/ClassInstanceMultiMap/lambda$find$0 (Ljava/lang/Class;)Ljava/util/List; +MD: net/minecraft/util/ClassInstanceMultiMap/remove (Ljava/lang/Object;)Z net/minecraft/util/ClassInstanceMultiMap/remove (Ljava/lang/Object;)Z +MD: net/minecraft/util/ClassInstanceMultiMap/size ()I net/minecraft/util/ClassInstanceMultiMap/size ()I +MD: net/minecraft/util/CommonColors/ ()V net/minecraft/util/CommonColors/ ()V +MD: net/minecraft/util/CommonLinks/ ()V net/minecraft/util/CommonLinks/ ()V +MD: net/minecraft/util/CommonLinks/m_276215_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/CommonLinks/extendRealms (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/CommonLinks/m_276218_ (Ljava/lang/String;Ljava/lang/String;Z)Ljava/lang/String; net/minecraft/util/CommonLinks/extendRealms (Ljava/lang/String;Ljava/lang/String;Z)Ljava/lang/String; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ()V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ()V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ (I)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ (I)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ([Ljava/lang/Object;[I[Ljava/lang/Object;II)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ([Ljava/lang/Object;[I[Ljava/lang/Object;II)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/iterator ()Ljava/util/Iterator; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13554_ ()V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/clear ()V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13559_ (Ljava/lang/Object;I)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/addMapping (Ljava/lang/Object;I)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13562_ ()I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/size ()I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13563_ (Ljava/lang/Object;I)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/indexOf (Ljava/lang/Object;I)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13566_ ()I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/nextId ()I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13567_ (I)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/getValue (I)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13569_ (Ljava/lang/Object;)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/add (Ljava/lang/Object;)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13571_ (I)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/grow (I)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13573_ (Ljava/lang/Object;)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/hash (Ljava/lang/Object;)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13575_ (I)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/findEmpty (I)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_144607_ (I)Z net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/contains (I)Z +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_144609_ (Ljava/lang/Object;)Z net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/contains (Ljava/lang/Object;)Z +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_184237_ (I)Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/create (I)Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_199846_ ()Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/copy ()Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_7447_ (Ljava/lang/Object;)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/getId (Ljava/lang/Object;)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_7942_ (I)Ljava/lang/Object; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/byId (I)Ljava/lang/Object; +MD: net/minecraft/util/Crypt/ ()V net/minecraft/util/Crypt/ ()V +MD: net/minecraft/util/Crypt/ ()V net/minecraft/util/Crypt/ ()V +MD: net/minecraft/util/Crypt/m_13578_ ()Ljavax/crypto/SecretKey; net/minecraft/util/Crypt/generateSecretKey ()Ljavax/crypto/SecretKey; +MD: net/minecraft/util/Crypt/m_13579_ (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher; net/minecraft/util/Crypt/setupCipher (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher; +MD: net/minecraft/util/Crypt/m_13583_ (ILjava/security/Key;)Ljavax/crypto/Cipher; net/minecraft/util/Crypt/getCipher (ILjava/security/Key;)Ljavax/crypto/Cipher; +MD: net/minecraft/util/Crypt/m_13586_ (ILjava/security/Key;[B)[B net/minecraft/util/Crypt/cipherData (ILjava/security/Key;[B)[B +MD: net/minecraft/util/Crypt/m_13590_ (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B net/minecraft/util/Crypt/digestData (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B +MD: net/minecraft/util/Crypt/m_13594_ (Ljava/security/Key;[B)[B net/minecraft/util/Crypt/encryptUsingKey (Ljava/security/Key;[B)[B +MD: net/minecraft/util/Crypt/m_13597_ (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey; net/minecraft/util/Crypt/decryptByteToSecretKey (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey; +MD: net/minecraft/util/Crypt/m_13600_ ([B)Ljava/security/PublicKey; net/minecraft/util/Crypt/byteToPublicKey ([B)Ljava/security/PublicKey; +MD: net/minecraft/util/Crypt/m_13602_ ([[B)[B net/minecraft/util/Crypt/digestData ([[B)[B +MD: net/minecraft/util/Crypt/m_13604_ ()Ljava/security/KeyPair; net/minecraft/util/Crypt/generateKeyPair ()Ljava/security/KeyPair; +MD: net/minecraft/util/Crypt/m_13605_ (Ljava/security/Key;[B)[B net/minecraft/util/Crypt/decryptUsingKey (Ljava/security/Key;[B)[B +MD: net/minecraft/util/Crypt/m_216069_ (Ljava/lang/String;)Ljava/security/PrivateKey; net/minecraft/util/Crypt/stringToPemRsaPrivateKey (Ljava/lang/String;)Ljava/security/PrivateKey; +MD: net/minecraft/util/Crypt/m_216071_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/Crypt$ByteArrayToKeyFunction;)Ljava/security/Key; net/minecraft/util/Crypt/rsaStringToKey (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/Crypt$ByteArrayToKeyFunction;)Ljava/security/Key; +MD: net/minecraft/util/Crypt/m_216076_ (Ljava/security/PrivateKey;)Ljava/lang/String; net/minecraft/util/Crypt/pemRsaPrivateKeyToString (Ljava/security/PrivateKey;)Ljava/lang/String; +MD: net/minecraft/util/Crypt/m_216078_ (Ljava/security/PublicKey;)Ljava/lang/String; net/minecraft/util/Crypt/rsaPublicKeyToString (Ljava/security/PublicKey;)Ljava/lang/String; +MD: net/minecraft/util/Crypt/m_216080_ (Ljava/lang/String;)Ljava/security/PublicKey; net/minecraft/util/Crypt/stringToRsaPublicKey (Ljava/lang/String;)Ljava/security/PublicKey; +MD: net/minecraft/util/Crypt/m_216082_ ([B)Ljava/security/PrivateKey; net/minecraft/util/Crypt/byteToPrivateKey ([B)Ljava/security/PrivateKey; +MD: net/minecraft/util/Crypt/m_274116_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/Crypt/lambda$static$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/Crypt/m_274117_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/Crypt/lambda$static$0 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/Crypt$ByteArrayToKeyFunction/m_216088_ ([B)Ljava/security/Key; net/minecraft/util/Crypt$ByteArrayToKeyFunction/apply ([B)Ljava/security/Key; +MD: net/minecraft/util/Crypt$SaltSignaturePair/ ()V net/minecraft/util/Crypt$SaltSignaturePair/ ()V +MD: net/minecraft/util/Crypt$SaltSignaturePair/ (J[B)V net/minecraft/util/Crypt$SaltSignaturePair/ (J[B)V +MD: net/minecraft/util/Crypt$SaltSignaturePair/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/util/Crypt$SaltSignaturePair/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/util/Crypt$SaltSignaturePair/equals (Ljava/lang/Object;)Z net/minecraft/util/Crypt$SaltSignaturePair/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/Crypt$SaltSignaturePair/f_216091_ ()J net/minecraft/util/Crypt$SaltSignaturePair/salt ()J +MD: net/minecraft/util/Crypt$SaltSignaturePair/f_216092_ ()[B net/minecraft/util/Crypt$SaltSignaturePair/signature ()[B +MD: net/minecraft/util/Crypt$SaltSignaturePair/hashCode ()I net/minecraft/util/Crypt$SaltSignaturePair/hashCode ()I +MD: net/minecraft/util/Crypt$SaltSignaturePair/m_216099_ ()Z net/minecraft/util/Crypt$SaltSignaturePair/isValid ()Z +MD: net/minecraft/util/Crypt$SaltSignaturePair/m_216100_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/util/Crypt$SaltSignaturePair;)V net/minecraft/util/Crypt$SaltSignaturePair/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/util/Crypt$SaltSignaturePair;)V +MD: net/minecraft/util/Crypt$SaltSignaturePair/m_216103_ ()[B net/minecraft/util/Crypt$SaltSignaturePair/saltAsBytes ()[B +MD: net/minecraft/util/Crypt$SaltSignaturePair/toString ()Ljava/lang/String; net/minecraft/util/Crypt$SaltSignaturePair/toString ()Ljava/lang/String; +MD: net/minecraft/util/Crypt$SaltSupplier/ ()V net/minecraft/util/Crypt$SaltSupplier/ ()V +MD: net/minecraft/util/Crypt$SaltSupplier/ ()V net/minecraft/util/Crypt$SaltSupplier/ ()V +MD: net/minecraft/util/Crypt$SaltSupplier/m_216113_ ()J net/minecraft/util/Crypt$SaltSupplier/getLong ()J +MD: net/minecraft/util/CryptException/ (Ljava/lang/Throwable;)V net/minecraft/util/CryptException/ (Ljava/lang/Throwable;)V +MD: net/minecraft/util/CsvOutput/ (Ljava/io/Writer;Ljava/util/List;)V net/minecraft/util/CsvOutput/ (Ljava/io/Writer;Ljava/util/List;)V +MD: net/minecraft/util/CsvOutput/m_13619_ ()Lnet/minecraft/util/CsvOutput$Builder; net/minecraft/util/CsvOutput/builder ()Lnet/minecraft/util/CsvOutput$Builder; +MD: net/minecraft/util/CsvOutput/m_13620_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/CsvOutput/getStringValue (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/CsvOutput/m_13622_ (Ljava/util/stream/Stream;)V net/minecraft/util/CsvOutput/writeLine (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/CsvOutput/m_13624_ ([Ljava/lang/Object;)V net/minecraft/util/CsvOutput/writeRow ([Ljava/lang/Object;)V +MD: net/minecraft/util/CsvOutput$Builder/ ()V net/minecraft/util/CsvOutput$Builder/ ()V +MD: net/minecraft/util/CsvOutput$Builder/m_13628_ (Ljava/io/Writer;)Lnet/minecraft/util/CsvOutput; net/minecraft/util/CsvOutput$Builder/build (Ljava/io/Writer;)Lnet/minecraft/util/CsvOutput; +MD: net/minecraft/util/CsvOutput$Builder/m_13630_ (Ljava/lang/String;)Lnet/minecraft/util/CsvOutput$Builder; net/minecraft/util/CsvOutput$Builder/addColumn (Ljava/lang/String;)Lnet/minecraft/util/CsvOutput$Builder; +MD: net/minecraft/util/CubicSampler/ ()V net/minecraft/util/CubicSampler/ ()V +MD: net/minecraft/util/CubicSampler/ ()V net/minecraft/util/CubicSampler/ ()V +MD: net/minecraft/util/CubicSampler/m_130038_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/CubicSampler$Vec3Fetcher;)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/CubicSampler/gaussianSampleVec3 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/CubicSampler$Vec3Fetcher;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/CubicSampler$Vec3Fetcher/m_130041_ (III)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/CubicSampler$Vec3Fetcher/fetch (III)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/CubicSpline/m_183628_ ()Ljava/lang/String; net/minecraft/util/CubicSpline/parityString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline/m_184239_ (F)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline/constant (F)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline/m_184241_ (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$1Point; net/minecraft/util/CubicSpline/lambda$codec$0 (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$1Point; +MD: net/minecraft/util/CubicSpline/m_184245_ (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/lang/Record; net/minecraft/util/CubicSpline/lambda$codec$6 (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/lang/Record; +MD: net/minecraft/util/CubicSpline/m_184247_ (Lnet/minecraft/util/CubicSpline$Multipoint;I)Lnet/minecraft/util/CubicSpline$1Point; net/minecraft/util/CubicSpline/lambda$codec$2 (Lnet/minecraft/util/CubicSpline$Multipoint;I)Lnet/minecraft/util/CubicSpline$1Point; +MD: net/minecraft/util/CubicSpline/m_184250_ (Lnet/minecraft/util/CubicSpline;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/CubicSpline/lambda$codec$8 (Lnet/minecraft/util/CubicSpline;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/CubicSpline/m_184252_ (Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline/builder (Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline/m_184254_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline/builder (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline/m_184257_ (Lnet/minecraft/util/ToFloatFunction;Ljava/util/List;)Lnet/minecraft/util/CubicSpline$Multipoint; net/minecraft/util/CubicSpline/lambda$codec$4 (Lnet/minecraft/util/ToFloatFunction;Ljava/util/List;)Lnet/minecraft/util/CubicSpline$Multipoint; +MD: net/minecraft/util/CubicSpline/m_184260_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline/lambda$codec$7 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline/m_184262_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/CubicSpline/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/CubicSpline/m_184264_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/CubicSpline/lambda$codec$5 (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/CubicSpline/m_184268_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/CubicSpline/lambda$codec$1 (Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/CubicSpline/m_184271_ (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/util/List; net/minecraft/util/CubicSpline/lambda$codec$3 (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/util/List; +MD: net/minecraft/util/CubicSpline/m_211396_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline/mapAll (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$1Point/ (FLnet/minecraft/util/CubicSpline;F)V net/minecraft/util/CubicSpline$1Point/ (FLnet/minecraft/util/CubicSpline;F)V +MD: net/minecraft/util/CubicSpline$1Point/equals (Ljava/lang/Object;)Z net/minecraft/util/CubicSpline$1Point/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/CubicSpline$1Point/f_184273_ ()F net/minecraft/util/CubicSpline$1Point/location ()F +MD: net/minecraft/util/CubicSpline$1Point/f_184274_ ()Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$1Point/value ()Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$1Point/f_184275_ ()F net/minecraft/util/CubicSpline$1Point/derivative ()F +MD: net/minecraft/util/CubicSpline$1Point/hashCode ()I net/minecraft/util/CubicSpline$1Point/hashCode ()I +MD: net/minecraft/util/CubicSpline$1Point/toString ()Ljava/lang/String; net/minecraft/util/CubicSpline$1Point/toString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)V net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)V +MD: net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;)V net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;)V +MD: net/minecraft/util/CubicSpline$Builder/m_184297_ ()Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Builder/build ()Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Builder/m_184298_ (FFF)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FFF)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Builder/m_184302_ (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Builder/m_216114_ (FF)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FF)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Builder/m_216117_ (FLnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FLnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Constant/ (F)V net/minecraft/util/CubicSpline$Constant/ (F)V +MD: net/minecraft/util/CubicSpline$Constant/equals (Ljava/lang/Object;)Z net/minecraft/util/CubicSpline$Constant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/CubicSpline$Constant/f_184308_ ()F net/minecraft/util/CubicSpline$Constant/value ()F +MD: net/minecraft/util/CubicSpline$Constant/hashCode ()I net/minecraft/util/CubicSpline$Constant/hashCode ()I +MD: net/minecraft/util/CubicSpline$Constant/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/CubicSpline$Constant/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/CubicSpline$Constant/m_183628_ ()Ljava/lang/String; net/minecraft/util/CubicSpline$Constant/parityString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Constant/m_211396_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Constant/mapAll (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Constant/m_213849_ ()F net/minecraft/util/CubicSpline$Constant/maxValue ()F +MD: net/minecraft/util/CubicSpline$Constant/m_213850_ ()F net/minecraft/util/CubicSpline$Constant/minValue ()F +MD: net/minecraft/util/CubicSpline$Constant/toString ()Ljava/lang/String; net/minecraft/util/CubicSpline$Constant/toString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$CoordinateVisitor/m_216122_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/CubicSpline$CoordinateVisitor/visit (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/CubicSpline$Multipoint/ (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[FFF)V net/minecraft/util/CubicSpline$Multipoint/ (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[FFF)V +MD: net/minecraft/util/CubicSpline$Multipoint/equals (Ljava/lang/Object;)Z net/minecraft/util/CubicSpline$Multipoint/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/CubicSpline$Multipoint/f_184319_ ()Lnet/minecraft/util/ToFloatFunction; net/minecraft/util/CubicSpline$Multipoint/coordinate ()Lnet/minecraft/util/ToFloatFunction; +MD: net/minecraft/util/CubicSpline$Multipoint/f_184320_ ()[F net/minecraft/util/CubicSpline$Multipoint/locations ()[F +MD: net/minecraft/util/CubicSpline$Multipoint/f_184321_ ()Ljava/util/List; net/minecraft/util/CubicSpline$Multipoint/values ()Ljava/util/List; +MD: net/minecraft/util/CubicSpline$Multipoint/f_184322_ ()[F net/minecraft/util/CubicSpline$Multipoint/derivatives ()[F +MD: net/minecraft/util/CubicSpline$Multipoint/hashCode ()I net/minecraft/util/CubicSpline$Multipoint/hashCode ()I +MD: net/minecraft/util/CubicSpline$Multipoint/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/CubicSpline$Multipoint/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/CubicSpline$Multipoint/m_183628_ ()Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/parityString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Multipoint/m_184329_ (D)Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/lambda$toString$2 (D)Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Multipoint/m_184334_ ([F)Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/toString ([F)Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Multipoint/m_184336_ ([FI)D net/minecraft/util/CubicSpline$Multipoint/lambda$toString$1 ([FI)D +MD: net/minecraft/util/CubicSpline$Multipoint/m_211396_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Multipoint/mapAll (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Multipoint/m_211586_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Multipoint/lambda$mapAll$3 (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Multipoint/m_213849_ ()F net/minecraft/util/CubicSpline$Multipoint/maxValue ()F +MD: net/minecraft/util/CubicSpline$Multipoint/m_213850_ ()F net/minecraft/util/CubicSpline$Multipoint/minValue ()F +MD: net/minecraft/util/CubicSpline$Multipoint/m_216133_ (F[FF[FI)F net/minecraft/util/CubicSpline$Multipoint/linearExtend (F[FF[FI)F +MD: net/minecraft/util/CubicSpline$Multipoint/m_216139_ (F[FI)Z net/minecraft/util/CubicSpline$Multipoint/lambda$findIntervalStart$0 (F[FI)Z +MD: net/minecraft/util/CubicSpline$Multipoint/m_216143_ (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[F)Lnet/minecraft/util/CubicSpline$Multipoint; net/minecraft/util/CubicSpline$Multipoint/create (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[F)Lnet/minecraft/util/CubicSpline$Multipoint; +MD: net/minecraft/util/CubicSpline$Multipoint/m_216148_ ([FF)I net/minecraft/util/CubicSpline$Multipoint/findIntervalStart ([FF)I +MD: net/minecraft/util/CubicSpline$Multipoint/m_216151_ ([FLjava/util/List;[F)V net/minecraft/util/CubicSpline$Multipoint/validateSizes ([FLjava/util/List;[F)V +MD: net/minecraft/util/CubicSpline$Multipoint/toString ()Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/toString ()Ljava/lang/String; +MD: net/minecraft/util/DebugBuffer/ (I)V net/minecraft/util/DebugBuffer/ (I)V +MD: net/minecraft/util/DebugBuffer/m_144624_ ()Ljava/util/List; net/minecraft/util/DebugBuffer/dump ()Ljava/util/List; +MD: net/minecraft/util/DebugBuffer/m_144625_ (Ljava/lang/Object;)V net/minecraft/util/DebugBuffer/push (Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/ ()V net/minecraft/util/DependencySorter/ ()V +MD: net/minecraft/util/DependencySorter/m_284129_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/util/DependencySorter/lambda$isCyclic$1 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/util/DependencySorter/m_284158_ (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$6 (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284160_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$5 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V +MD: net/minecraft/util/DependencySorter/m_284174_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$4 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284176_ (Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)Lnet/minecraft/util/DependencySorter; net/minecraft/util/DependencySorter/addEntry (Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)Lnet/minecraft/util/DependencySorter; +MD: net/minecraft/util/DependencySorter/m_284232_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/addDependencyIfNotCyclic (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284372_ (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/lang/Object;Ljava/util/function/BiConsumer;)V net/minecraft/util/DependencySorter/visitDependenciesAndElement (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/lang/Object;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/util/DependencySorter/m_284430_ (Ljava/util/function/BiConsumer;)V net/minecraft/util/DependencySorter/orderByDependencies (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/util/DependencySorter/m_284431_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$2 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284473_ (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$visitDependenciesAndElement$0 (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284553_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/util/DependencySorter/isCyclic (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/util/DependencySorter/m_284554_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$3 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V +MD: net/minecraft/util/DependencySorter$Entry/m_284213_ (Ljava/util/function/Consumer;)V net/minecraft/util/DependencySorter$Entry/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/DependencySorter$Entry/m_284346_ (Ljava/util/function/Consumer;)V net/minecraft/util/DependencySorter$Entry/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/DirectoryLock/ ()V net/minecraft/util/DirectoryLock/ ()V +MD: net/minecraft/util/DirectoryLock/ (Ljava/nio/channels/FileChannel;Ljava/nio/channels/FileLock;)V net/minecraft/util/DirectoryLock/ (Ljava/nio/channels/FileChannel;Ljava/nio/channels/FileLock;)V +MD: net/minecraft/util/DirectoryLock/close ()V net/minecraft/util/DirectoryLock/close ()V +MD: net/minecraft/util/DirectoryLock/m_13639_ ()Z net/minecraft/util/DirectoryLock/isValid ()Z +MD: net/minecraft/util/DirectoryLock/m_13640_ (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock; net/minecraft/util/DirectoryLock/create (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock; +MD: net/minecraft/util/DirectoryLock/m_13642_ (Ljava/nio/file/Path;)Z net/minecraft/util/DirectoryLock/isLocked (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/DirectoryLock$LockException/ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/util/DirectoryLock$LockException/ (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/util/DirectoryLock$LockException/m_13648_ (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock$LockException; net/minecraft/util/DirectoryLock$LockException/alreadyLocked (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock$LockException; +MD: net/minecraft/util/ExceptionCollector/ ()V net/minecraft/util/ExceptionCollector/ ()V +MD: net/minecraft/util/ExceptionCollector/m_13652_ ()V net/minecraft/util/ExceptionCollector/throwIfPresent ()V +MD: net/minecraft/util/ExceptionCollector/m_13653_ (Ljava/lang/Throwable;)V net/minecraft/util/ExceptionCollector/add (Ljava/lang/Throwable;)V +MD: net/minecraft/util/ExtraCodecs/ ()V net/minecraft/util/ExtraCodecs/ ()V +MD: net/minecraft/util/ExtraCodecs/ ()V net/minecraft/util/ExtraCodecs/ ()V +MD: net/minecraft/util/ExtraCodecs/m_144633_ (IILjava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/intRangeWithMessage (IILjava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_144637_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/nonEmptyList (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_144639_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/xor (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184350_ (FFLjava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/floatRangeMinExclusiveWithMessage (FFLjava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184354_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Object; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$29 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Object; +MD: net/minecraft/util/ExtraCodecs/m_184356_ (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$24 (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_184361_ (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/intervalCodec (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184368_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/overrideLifecycle (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184372_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$46 (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_184374_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$36 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_184381_ (Ljava/lang/Object;)Lcom/mojang/serialization/Codec$ResultFunction; net/minecraft/util/ExtraCodecs/orElsePartial (Ljava/lang/Object;)Lcom/mojang/serialization/Codec$ResultFunction; +MD: net/minecraft/util/ExtraCodecs/m_184387_ (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$31 (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184390_ (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$25 (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184393_ (Ljava/util/function/BiFunction;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$30 (Ljava/util/function/BiFunction;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184396_ (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$22 (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184399_ (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$43 (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184402_ (Ljava/util/function/Function;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$40 (Ljava/util/function/Function;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184405_ (Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/stringResolverCodec (Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184408_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$32 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/ExtraCodecs/m_184412_ (Ljava/util/function/IntFunction;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$35 (Ljava/util/function/IntFunction;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184415_ (Ljava/util/function/Supplier;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/lazyInitializedCodec (Ljava/util/function/Supplier;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184421_ (Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;I)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/idResolverCodec (Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;I)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184425_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/orCompressed (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184428_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$33 (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_184443_ (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$21 (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184446_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$26 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs/m_184454_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$28 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/ExtraCodecs/m_184456_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$23 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_184460_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$27 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/ExtraCodecs/m_203976_ (Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; net/minecraft/util/ExtraCodecs/retrieveContext (Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/util/ExtraCodecs/m_203978_ (Ljava/util/function/Function;Ljava/util/Collection;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$ensureHomogenous$57 (Ljava/util/function/Function;Ljava/util/Collection;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_203982_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/nonEmptyHolderSet (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_203984_ (Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/util/ExtraCodecs/ensureHomogenous (Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/util/ExtraCodecs/m_216164_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; net/minecraft/util/ExtraCodecs/lambda$static$65 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +MD: net/minecraft/util/ExtraCodecs/m_216166_ (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; net/minecraft/util/ExtraCodecs/asOptionalLong (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/util/ExtraCodecs/m_216168_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$66 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_216170_ (Ljava/time/format/DateTimeFormatter;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/instantCodec (Ljava/time/format/DateTimeFormatter;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_216175_ (Ljava/util/Optional;)Ljava/util/OptionalLong; net/minecraft/util/ExtraCodecs/lambda$static$67 (Ljava/util/Optional;)Ljava/util/OptionalLong; +MD: net/minecraft/util/ExtraCodecs/m_216177_ (Ljava/util/OptionalLong;)Ljava/util/Optional; net/minecraft/util/ExtraCodecs/lambda$static$68 (Ljava/util/OptionalLong;)Ljava/util/Optional; +MD: net/minecraft/util/ExtraCodecs/m_216179_ ([B)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$63 ([B)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_216181_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; net/minecraft/util/ExtraCodecs/lambda$static$64 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +MD: net/minecraft/util/ExtraCodecs/m_216185_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/catchDecoderException (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_252663_ (Ljava/util/List;)Lorg/joml/Vector3f; net/minecraft/util/ExtraCodecs/lambda$static$6 (Ljava/util/List;)Lorg/joml/Vector3f; +MD: net/minecraft/util/ExtraCodecs/m_252664_ (Lcom/mojang/authlib/properties/Property;)Ljava/util/Optional; net/minecraft/util/ExtraCodecs/lambda$static$71 (Lcom/mojang/authlib/properties/Property;)Ljava/util/Optional; +MD: net/minecraft/util/ExtraCodecs/m_252665_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$static$73 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_252666_ (Ljava/util/Optional;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$80 (Ljava/util/Optional;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_252667_ (Ljava/util/BitSet;)Ljava/util/stream/LongStream; net/minecraft/util/ExtraCodecs/lambda$static$70 (Ljava/util/BitSet;)Ljava/util/stream/LongStream; +MD: net/minecraft/util/ExtraCodecs/m_252668_ (Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;)Lcom/mojang/authlib/properties/Property; net/minecraft/util/ExtraCodecs/lambda$static$72 (Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;)Lcom/mojang/authlib/properties/Property; +MD: net/minecraft/util/ExtraCodecs/m_252669_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$static$83 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_252671_ (Lcom/mojang/authlib/properties/PropertyMap;Ljava/lang/String;Ljava/util/List;)V net/minecraft/util/ExtraCodecs/lambda$static$74 (Lcom/mojang/authlib/properties/PropertyMap;Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/util/ExtraCodecs/m_252672_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$7 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_252674_ (Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/ExtraCodecs/lambda$static$78 (Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/ExtraCodecs/m_252675_ (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/Map;)V net/minecraft/util/ExtraCodecs/lambda$static$75 (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/Map;)V +MD: net/minecraft/util/ExtraCodecs/m_252676_ (Lcom/mojang/serialization/Dynamic;)Lcom/google/gson/JsonElement; net/minecraft/util/ExtraCodecs/lambda$static$0 (Lcom/mojang/serialization/Dynamic;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/ExtraCodecs/m_252677_ (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/List;)V net/minecraft/util/ExtraCodecs/lambda$static$76 (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/List;)V +MD: net/minecraft/util/ExtraCodecs/m_252678_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V net/minecraft/util/ExtraCodecs/lambda$static$81 (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V +MD: net/minecraft/util/ExtraCodecs/m_252679_ (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/ExtraCodecs/lambda$static$1 (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/ExtraCodecs/m_252680_ (Ljava/util/stream/LongStream;)Ljava/util/BitSet; net/minecraft/util/ExtraCodecs/lambda$static$69 (Ljava/util/stream/LongStream;)Ljava/util/BitSet; +MD: net/minecraft/util/ExtraCodecs/m_252681_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/authlib/properties/PropertyMap; net/minecraft/util/ExtraCodecs/lambda$static$77 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/authlib/properties/PropertyMap; +MD: net/minecraft/util/ExtraCodecs/m_252683_ (Ljava/util/Optional;)Ljava/util/UUID; net/minecraft/util/ExtraCodecs/lambda$static$79 (Ljava/util/Optional;)Ljava/util/UUID; +MD: net/minecraft/util/ExtraCodecs/m_252684_ (Lcom/mojang/authlib/GameProfile;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile; net/minecraft/util/ExtraCodecs/lambda$static$82 (Lcom/mojang/authlib/GameProfile;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/util/ExtraCodecs/m_252819_ (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/mapGameProfileToIdName (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_252898_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/mapIdNameToGameProfile (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_264337_ (II)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/sizeLimitedString (II)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_264370_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/validate (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_268850_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$10 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_268851_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$static$14 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_268852_ (Lorg/joml/Matrix4f;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$static$20 (Lorg/joml/Matrix4f;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_268853_ (Lorg/joml/AxisAngle4f;)Ljava/lang/Float; net/minecraft/util/ExtraCodecs/lambda$static$12 (Lorg/joml/AxisAngle4f;)Ljava/lang/Float; +MD: net/minecraft/util/ExtraCodecs/m_268854_ (Ljava/util/List;)Lorg/joml/Matrix4f; net/minecraft/util/ExtraCodecs/lambda$static$18 (Ljava/util/List;)Lorg/joml/Matrix4f; +MD: net/minecraft/util/ExtraCodecs/m_268855_ (Lorg/joml/AxisAngle4f;)Lorg/joml/Vector3f; net/minecraft/util/ExtraCodecs/lambda$static$13 (Lorg/joml/AxisAngle4f;)Lorg/joml/Vector3f; +MD: net/minecraft/util/ExtraCodecs/m_268856_ (Lcom/mojang/datafixers/util/Either;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$17 (Lcom/mojang/datafixers/util/Either;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268857_ (Lorg/joml/Quaternionf;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$static$11 (Lorg/joml/Quaternionf;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_268858_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$15 (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268859_ (IILjava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$intRange$48 (IILjava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_268860_ (Ljava/util/List;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$9 (Ljava/util/List;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268861_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$16 (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268862_ (Lorg/joml/Vector3f;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$static$8 (Lorg/joml/Vector3f;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_268863_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$19 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_269197_ (II)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/intRange (II)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_274118_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$84 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274119_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$47 (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274120_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$nonEmptyList$52 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274121_ (Ljava/util/function/ToIntFunction;ILjava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$37 (Ljava/util/function/ToIntFunction;ILjava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274122_ (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$34 (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274123_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$62 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274124_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$nonEmptyList$53 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274125_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$nonEmptyHolderSet$54 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274126_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$ensureHomogenous$56 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274127_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$59 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274128_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$85 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274129_ (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$3 (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274130_ (Lnet/minecraft/core/HolderSet;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$nonEmptyHolderSet$55 (Lnet/minecraft/core/HolderSet;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274131_ (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$2 (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274132_ (FFLjava/util/function/Function;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$floatRangeMinExclusiveWithMessage$50 (FFLjava/util/function/Function;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274133_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$38 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274134_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$61 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274135_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$39 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274136_ (Ljava/lang/String;Ljava/util/regex/PatternSyntaxException;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$58 (Ljava/lang/String;Ljava/util/regex/PatternSyntaxException;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274137_ (Ljava/lang/String;III)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$sizeLimitedString$88 (Ljava/lang/String;III)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274138_ (Ljava/util/function/Function;Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$intRangeWithMessage$44 (Ljava/util/function/Function;Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274139_ (Ljava/lang/Float;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$51 (Ljava/lang/Float;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274140_ (IILjava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$sizeLimitedString$90 (IILjava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274141_ (Ljava/time/format/DateTimeFormatter;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$instantCodec$60 (Ljava/time/format/DateTimeFormatter;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274142_ (Ljava/util/function/Function;Ljava/lang/Float;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$floatRangeMinExclusiveWithMessage$49 (Ljava/util/function/Function;Ljava/lang/Float;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274143_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$86 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274144_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$42 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274145_ (IILjava/util/function/Function;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intRangeWithMessage$45 (IILjava/util/function/Function;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274146_ (Ljava/lang/String;III)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$sizeLimitedString$89 (Ljava/lang/String;III)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_276732_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$4 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_276733_ (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$5 (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_284007_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$41 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_284008_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$87 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_285994_ (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; net/minecraft/util/ExtraCodecs/validate (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/util/ExtraCodecs$1/ (Ljava/lang/Object;)V net/minecraft/util/ExtraCodecs$1/ (Ljava/lang/Object;)V +MD: net/minecraft/util/ExtraCodecs$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$1/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$1/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$1/m_274425_ (Lorg/apache/commons/lang3/mutable/MutableObject;)Ljava/lang/String; net/minecraft/util/ExtraCodecs$1/lambda$apply$0 (Lorg/apache/commons/lang3/mutable/MutableObject;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$1/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$1/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/ (Ljava/util/function/Function;)V net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/ (Ljava/util/function/Function;)V +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$2/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$2/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$2/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$2/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$2/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$2/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$2/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$2/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/util/ExtraCodecs$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/util/ExtraCodecs$3/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$3/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$3/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$3/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$3/m_184492_ (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$3/lambda$apply$0 (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$3/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$3/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$4/ (Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$4/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$4/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$4/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$4/m_274404_ (Ljava/lang/Object;Ljava/lang/Exception;)Ljava/lang/String; net/minecraft/util/ExtraCodecs$4/lambda$decode$0 (Ljava/lang/Object;Ljava/lang/Exception;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$EitherCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$EitherCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$EitherCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$EitherCodec/hashCode ()I net/minecraft/util/ExtraCodecs$EitherCodec/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184514_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$decode$1 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184516_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$decode$2 (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184519_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$encode$4 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184523_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$decode$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184525_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$encode$3 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$EitherCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/ (Ljava/util/function/Supplier;)V net/minecraft/util/ExtraCodecs$LazyInitializedCodec/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$LazyInitializedCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/f_184540_ ()Ljava/util/function/Supplier; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/delegate ()Ljava/util/function/Supplier; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/hashCode ()I net/minecraft/util/ExtraCodecs$LazyInitializedCodec/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/ (Lnet/minecraft/resources/ResourceLocation;Z)V net/minecraft/util/ExtraCodecs$TagOrElementLocation/ (Lnet/minecraft/resources/ResourceLocation;Z)V +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$TagOrElementLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216195_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/util/ExtraCodecs$TagOrElementLocation/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216196_ ()Z net/minecraft/util/ExtraCodecs$TagOrElementLocation/tag ()Z +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/hashCode ()I net/minecraft/util/ExtraCodecs$TagOrElementLocation/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/m_216202_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$TagOrElementLocation/decoratedId ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$TagOrElementLocation/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$XorCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$XorCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$XorCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$XorCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$XorCodec/hashCode ()I net/minecraft/util/ExtraCodecs$XorCodec/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144666_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$XorCodec/lambda$decode$1 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144668_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/lambda$encode$4 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144672_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$XorCodec/lambda$decode$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144674_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/lambda$encode$3 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_274147_ (Ljava/util/Optional;Ljava/util/Optional;)Ljava/lang/String; net/minecraft/util/ExtraCodecs$XorCodec/lambda$decode$2 (Ljava/util/Optional;Ljava/util/Optional;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$XorCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$XorCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;I)V net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;I)V +MD: net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;)V net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;)V +MD: net/minecraft/util/FastBufferedInputStream/available ()I net/minecraft/util/FastBufferedInputStream/available ()I +MD: net/minecraft/util/FastBufferedInputStream/close ()V net/minecraft/util/FastBufferedInputStream/close ()V +MD: net/minecraft/util/FastBufferedInputStream/m_196570_ ()I net/minecraft/util/FastBufferedInputStream/bytesInBuffer ()I +MD: net/minecraft/util/FastBufferedInputStream/m_196572_ ()V net/minecraft/util/FastBufferedInputStream/fill ()V +MD: net/minecraft/util/FastBufferedInputStream/read ([BII)I net/minecraft/util/FastBufferedInputStream/read ([BII)I +MD: net/minecraft/util/FastBufferedInputStream/read ()I net/minecraft/util/FastBufferedInputStream/read ()I +MD: net/minecraft/util/FastBufferedInputStream/skip (J)J net/minecraft/util/FastBufferedInputStream/skip (J)J +MD: net/minecraft/util/FastColor/ ()V net/minecraft/util/FastColor/ ()V +MD: net/minecraft/util/FastColor$ABGR32/ ()V net/minecraft/util/FastColor$ABGR32/ ()V +MD: net/minecraft/util/FastColor$ABGR32/m_266247_ (I)I net/minecraft/util/FastColor$ABGR32/blue (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266248_ (IIII)I net/minecraft/util/FastColor$ABGR32/color (IIII)I +MD: net/minecraft/util/FastColor$ABGR32/m_266313_ (I)I net/minecraft/util/FastColor$ABGR32/red (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266446_ (I)I net/minecraft/util/FastColor$ABGR32/green (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266498_ (II)I net/minecraft/util/FastColor$ABGR32/color (II)I +MD: net/minecraft/util/FastColor$ABGR32/m_266503_ (I)I net/minecraft/util/FastColor$ABGR32/alpha (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266533_ (I)I net/minecraft/util/FastColor$ABGR32/transparent (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_267818_ (I)I net/minecraft/util/FastColor$ABGR32/opaque (I)I +MD: net/minecraft/util/FastColor$ARGB32/ ()V net/minecraft/util/FastColor$ARGB32/ ()V +MD: net/minecraft/util/FastColor$ARGB32/m_13655_ (I)I net/minecraft/util/FastColor$ARGB32/alpha (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_13657_ (II)I net/minecraft/util/FastColor$ARGB32/multiply (II)I +MD: net/minecraft/util/FastColor$ARGB32/m_13660_ (IIII)I net/minecraft/util/FastColor$ARGB32/color (IIII)I +MD: net/minecraft/util/FastColor$ARGB32/m_13665_ (I)I net/minecraft/util/FastColor$ARGB32/red (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_13667_ (I)I net/minecraft/util/FastColor$ARGB32/green (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_13669_ (I)I net/minecraft/util/FastColor$ARGB32/blue (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_269105_ (FII)I net/minecraft/util/FastColor$ARGB32/lerp (FII)I +MD: net/minecraft/util/FileZipper/ ()V net/minecraft/util/FileZipper/ ()V +MD: net/minecraft/util/FileZipper/ (Ljava/nio/file/Path;)V net/minecraft/util/FileZipper/ (Ljava/nio/file/Path;)V +MD: net/minecraft/util/FileZipper/close ()V net/minecraft/util/FileZipper/close ()V +MD: net/minecraft/util/FileZipper/m_144698_ (Ljava/nio/file/Path;)V net/minecraft/util/FileZipper/add (Ljava/nio/file/Path;)V +MD: net/minecraft/util/FileZipper/m_144700_ (Ljava/nio/file/Path;Ljava/io/File;)V net/minecraft/util/FileZipper/add (Ljava/nio/file/Path;Ljava/io/File;)V +MD: net/minecraft/util/FileZipper/m_144703_ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/util/FileZipper/add (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/util/FileZipper/m_144706_ (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z net/minecraft/util/FileZipper/lambda$add$0 (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z +MD: net/minecraft/util/FormattedCharSequence/ ()V net/minecraft/util/FormattedCharSequence/ ()V +MD: net/minecraft/util/FormattedCharSequence/m_13693_ (ILnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/codepoint (ILnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13696_ (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13699_ (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$fromPair$7 (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13703_ (Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$static$0 (Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13705_ (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSink; net/minecraft/util/FormattedCharSequence/decorateOutput (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSink; +MD: net/minecraft/util/FormattedCharSequence/m_13708_ (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/FormattedCharSequence/lambda$decorateOutput$6 (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/FormattedCharSequence/m_13714_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/forward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13717_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$backward$5 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13722_ (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13724_ (Ljava/util/List;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$fromList$8 (Ljava/util/List;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13727_ (Lnet/minecraft/network/chat/Style;ILnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$codepoint$1 (Lnet/minecraft/network/chat/Style;ILnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13731_ (Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/accept (Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13733_ (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/fromPair (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13736_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$forward$2 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13740_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/backward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13744_ (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/fromList (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144710_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144711_ (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144713_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$backward$4 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_144717_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/forward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144721_ ([Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite ([Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144723_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/backward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144726_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$forward$3 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSink/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/FormattedCharSink/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/FrameTimer/ ()V net/minecraft/util/FrameTimer/ ()V +MD: net/minecraft/util/FrameTimer/m_13754_ ()I net/minecraft/util/FrameTimer/getLogStart ()I +MD: net/minecraft/util/FrameTimer/m_13755_ (J)V net/minecraft/util/FrameTimer/logFrameDuration (J)V +MD: net/minecraft/util/FrameTimer/m_13757_ (JII)I net/minecraft/util/FrameTimer/scaleSampleTo (JII)I +MD: net/minecraft/util/FrameTimer/m_13761_ ()I net/minecraft/util/FrameTimer/getLogEnd ()I +MD: net/minecraft/util/FrameTimer/m_13762_ (I)I net/minecraft/util/FrameTimer/wrapIndex (I)I +MD: net/minecraft/util/FrameTimer/m_13764_ ()[J net/minecraft/util/FrameTimer/getLog ()[J +MD: net/minecraft/util/FrameTimer/m_144732_ (I)J net/minecraft/util/FrameTimer/getAverageDuration (I)J +MD: net/minecraft/util/FrameTimer/m_144734_ (II)I net/minecraft/util/FrameTimer/scaleAverageDurationTo (II)I +MD: net/minecraft/util/FutureChain/ ()V net/minecraft/util/FutureChain/ ()V +MD: net/minecraft/util/FutureChain/ (Ljava/util/concurrent/Executor;)V net/minecraft/util/FutureChain/ (Ljava/util/concurrent/Executor;)V +MD: net/minecraft/util/FutureChain/close ()V net/minecraft/util/FutureChain/close ()V +MD: net/minecraft/util/FutureChain/m_241849_ (Lnet/minecraft/util/TaskChainer$DelayedTask;)V net/minecraft/util/FutureChain/append (Lnet/minecraft/util/TaskChainer$DelayedTask;)V +MD: net/minecraft/util/FutureChain/m_241881_ (Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/util/FutureChain/lambda$append$2 (Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/util/FutureChain/m_244909_ (Lnet/minecraft/util/TaskChainer$DelayedTask;Ljava/lang/Object;)Ljava/util/concurrent/CompletionStage; net/minecraft/util/FutureChain/lambda$append$1 (Lnet/minecraft/util/TaskChainer$DelayedTask;Ljava/lang/Object;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/util/FutureChain/m_244910_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/util/FutureChain/lambda$new$0 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/util/Graph/ ()V net/minecraft/util/Graph/ ()V +MD: net/minecraft/util/Graph/m_184556_ (Ljava/util/Map;Ljava/util/Set;Ljava/util/Set;Ljava/util/function/Consumer;Ljava/lang/Object;)Z net/minecraft/util/Graph/depthFirstSearch (Ljava/util/Map;Ljava/util/Set;Ljava/util/Set;Ljava/util/function/Consumer;Ljava/lang/Object;)Z +MD: net/minecraft/util/GsonHelper/ ()V net/minecraft/util/GsonHelper/ ()V +MD: net/minecraft/util/GsonHelper/ ()V net/minecraft/util/GsonHelper/ ()V +MD: net/minecraft/util/GsonHelper/m_13767_ (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13771_ (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13776_ (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13780_ (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13785_ (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13789_ (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13794_ (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13798_ (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13803_ (Lcom/google/gson/JsonElement;)Z net/minecraft/util/GsonHelper/isStringValue (Lcom/google/gson/JsonElement;)Z +MD: net/minecraft/util/GsonHelper/m_13805_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/GsonHelper/convertToString (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13808_ (Lcom/google/gson/JsonElement;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/convertToObject (Lcom/google/gson/JsonElement;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13813_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isStringValue (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13816_ (Lcom/google/gson/JsonObject;Ljava/lang/String;B)B net/minecraft/util/GsonHelper/getAsByte (Lcom/google/gson/JsonObject;Ljava/lang/String;B)B +MD: net/minecraft/util/GsonHelper/m_13820_ (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F net/minecraft/util/GsonHelper/getAsFloat (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F +MD: net/minecraft/util/GsonHelper/m_13824_ (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I net/minecraft/util/GsonHelper/getAsInt (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I +MD: net/minecraft/util/GsonHelper/m_13828_ (Lcom/google/gson/JsonObject;Ljava/lang/String;J)J net/minecraft/util/GsonHelper/getAsLong (Lcom/google/gson/JsonObject;Ljava/lang/String;J)J +MD: net/minecraft/util/GsonHelper/m_13832_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/getAsJsonArray (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_13836_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/getAsObject (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13841_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/getAsJsonObject (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13845_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Object;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/getAsObject (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Object;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13851_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/GsonHelper/getAsString (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13855_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z net/minecraft/util/GsonHelper/getAsBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z +MD: net/minecraft/util/GsonHelper/m_13859_ (Ljava/io/Reader;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/io/Reader;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13861_ (Ljava/io/Reader;Z)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/io/Reader;Z)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13864_ (Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13866_ (Ljava/lang/String;Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/util/GsonHelper/lambda$convertToItem$0 (Ljava/lang/String;Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/util/GsonHelper/m_13869_ (Ljava/lang/String;Z)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/lang/String;Z)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13872_ (Lcom/google/gson/JsonElement;)Z net/minecraft/util/GsonHelper/isNumberValue (Lcom/google/gson/JsonElement;)Z +MD: net/minecraft/util/GsonHelper/m_13874_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lnet/minecraft/world/item/Item; net/minecraft/util/GsonHelper/convertToItem (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/util/GsonHelper/m_13877_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/convertToBoolean (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13880_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isBooleanValue (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13883_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/util/GsonHelper/getType (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13885_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isArrayNode (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13888_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)F net/minecraft/util/GsonHelper/convertToFloat (Lcom/google/gson/JsonElement;Ljava/lang/String;)F +MD: net/minecraft/util/GsonHelper/m_13891_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)J net/minecraft/util/GsonHelper/convertToLong (Lcom/google/gson/JsonElement;Ljava/lang/String;)J +MD: net/minecraft/util/GsonHelper/m_13894_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isValidPrimitive (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13897_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)I net/minecraft/util/GsonHelper/convertToInt (Lcom/google/gson/JsonElement;Ljava/lang/String;)I +MD: net/minecraft/util/GsonHelper/m_13900_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isValidNode (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13903_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)B net/minecraft/util/GsonHelper/convertToByte (Lcom/google/gson/JsonElement;Ljava/lang/String;)B +MD: net/minecraft/util/GsonHelper/m_13906_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/GsonHelper/getAsString (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13909_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lnet/minecraft/world/item/Item; net/minecraft/util/GsonHelper/getAsItem (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/util/GsonHelper/m_13912_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/getAsBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13915_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)F net/minecraft/util/GsonHelper/getAsFloat (Lcom/google/gson/JsonObject;Ljava/lang/String;)F +MD: net/minecraft/util/GsonHelper/m_13918_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/convertToJsonObject (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13921_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)J net/minecraft/util/GsonHelper/getAsLong (Lcom/google/gson/JsonObject;Ljava/lang/String;)J +MD: net/minecraft/util/GsonHelper/m_13924_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/convertToJsonArray (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_13927_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)I net/minecraft/util/GsonHelper/getAsInt (Lcom/google/gson/JsonObject;Ljava/lang/String;)I +MD: net/minecraft/util/GsonHelper/m_13930_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/getAsJsonObject (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13933_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/getAsJsonArray (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_144738_ (Lcom/google/gson/JsonObject;Ljava/lang/String;C)C net/minecraft/util/GsonHelper/getAsCharacter (Lcom/google/gson/JsonObject;Ljava/lang/String;C)C +MD: net/minecraft/util/GsonHelper/m_144742_ (Lcom/google/gson/JsonObject;Ljava/lang/String;D)D net/minecraft/util/GsonHelper/getAsDouble (Lcom/google/gson/JsonObject;Ljava/lang/String;D)D +MD: net/minecraft/util/GsonHelper/m_144746_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/util/GsonHelper/getAsItem (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/util/GsonHelper/m_144750_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal; net/minecraft/util/GsonHelper/getAsBigDecimal (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal; +MD: net/minecraft/util/GsonHelper/m_144754_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger; net/minecraft/util/GsonHelper/getAsBigInteger (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger; +MD: net/minecraft/util/GsonHelper/m_144758_ (Lcom/google/gson/JsonObject;Ljava/lang/String;S)S net/minecraft/util/GsonHelper/getAsShort (Lcom/google/gson/JsonObject;Ljava/lang/String;S)S +MD: net/minecraft/util/GsonHelper/m_144762_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isNumberValue (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_144765_ (Ljava/io/Reader;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/parseArray (Ljava/io/Reader;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_144767_ (Lcom/google/gson/JsonElement;)Z net/minecraft/util/GsonHelper/isBooleanValue (Lcom/google/gson/JsonElement;)Z +MD: net/minecraft/util/GsonHelper/m_144769_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)D net/minecraft/util/GsonHelper/convertToDouble (Lcom/google/gson/JsonElement;Ljava/lang/String;)D +MD: net/minecraft/util/GsonHelper/m_144772_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isObjectNode (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_144775_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)C net/minecraft/util/GsonHelper/convertToCharacter (Lcom/google/gson/JsonElement;Ljava/lang/String;)C +MD: net/minecraft/util/GsonHelper/m_144778_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigDecimal; net/minecraft/util/GsonHelper/convertToBigDecimal (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigDecimal; +MD: net/minecraft/util/GsonHelper/m_144781_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigInteger; net/minecraft/util/GsonHelper/convertToBigInteger (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigInteger; +MD: net/minecraft/util/GsonHelper/m_144784_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)D net/minecraft/util/GsonHelper/getAsDouble (Lcom/google/gson/JsonObject;Ljava/lang/String;)D +MD: net/minecraft/util/GsonHelper/m_144787_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)S net/minecraft/util/GsonHelper/convertToShort (Lcom/google/gson/JsonElement;Ljava/lang/String;)S +MD: net/minecraft/util/GsonHelper/m_144790_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)B net/minecraft/util/GsonHelper/getAsByte (Lcom/google/gson/JsonObject;Ljava/lang/String;)B +MD: net/minecraft/util/GsonHelper/m_144793_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)C net/minecraft/util/GsonHelper/getAsCharacter (Lcom/google/gson/JsonObject;Ljava/lang/String;)C +MD: net/minecraft/util/GsonHelper/m_144796_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigDecimal; net/minecraft/util/GsonHelper/getAsBigDecimal (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigDecimal; +MD: net/minecraft/util/GsonHelper/m_144799_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigInteger; net/minecraft/util/GsonHelper/getAsBigInteger (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigInteger; +MD: net/minecraft/util/GsonHelper/m_144802_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)S net/minecraft/util/GsonHelper/getAsShort (Lcom/google/gson/JsonObject;Ljava/lang/String;)S +MD: net/minecraft/util/GsonHelper/m_216207_ (Lcom/google/gson/stream/JsonWriter;Lcom/google/gson/JsonElement;Ljava/util/Comparator;)V net/minecraft/util/GsonHelper/writeValue (Lcom/google/gson/stream/JsonWriter;Lcom/google/gson/JsonElement;Ljava/util/Comparator;)V +MD: net/minecraft/util/GsonHelper/m_216211_ (Ljava/util/Collection;Ljava/util/Comparator;)Ljava/util/Collection; net/minecraft/util/GsonHelper/sortByKeyIfNeeded (Ljava/util/Collection;Ljava/util/Comparator;)Ljava/util/Collection; +MD: net/minecraft/util/GsonHelper/m_216214_ (Ljava/lang/String;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/parseArray (Ljava/lang/String;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_216216_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/util/GsonHelper/toStableString (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_263457_ (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_263467_ (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_263475_ (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_289747_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonElement; net/minecraft/util/GsonHelper/getNonNull (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/HttpUtil/ ()V net/minecraft/util/HttpUtil/ ()V +MD: net/minecraft/util/HttpUtil/ ()V net/minecraft/util/HttpUtil/ ()V +MD: net/minecraft/util/HttpUtil/m_13939_ ()I net/minecraft/util/HttpUtil/getAvailablePort ()I +MD: net/minecraft/util/HttpUtil/m_216218_ (Lnet/minecraft/util/ProgressListener;Ljava/net/URL;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)Ljava/lang/Object; net/minecraft/util/HttpUtil/lambda$downloadTo$0 (Lnet/minecraft/util/ProgressListener;Ljava/net/URL;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)Ljava/lang/Object; +MD: net/minecraft/util/HttpUtil/m_216225_ (Ljava/io/File;Ljava/net/URL;Ljava/util/Map;ILnet/minecraft/util/ProgressListener;Ljava/net/Proxy;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/HttpUtil/downloadTo (Ljava/io/File;Ljava/net/URL;Ljava/util/Map;ILnet/minecraft/util/ProgressListener;Ljava/net/Proxy;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/HttpUtil/m_257796_ (I)Z net/minecraft/util/HttpUtil/isPortAvailable (I)Z +MD: net/minecraft/util/InclusiveRange/ ()V net/minecraft/util/InclusiveRange/ ()V +MD: net/minecraft/util/InclusiveRange/ (Ljava/lang/Comparable;Ljava/lang/Comparable;)V net/minecraft/util/InclusiveRange/ (Ljava/lang/Comparable;Ljava/lang/Comparable;)V +MD: net/minecraft/util/InclusiveRange/equals (Ljava/lang/Object;)Z net/minecraft/util/InclusiveRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/InclusiveRange/f_184563_ ()Ljava/lang/Comparable; net/minecraft/util/InclusiveRange/minInclusive ()Ljava/lang/Comparable; +MD: net/minecraft/util/InclusiveRange/f_184564_ ()Ljava/lang/Comparable; net/minecraft/util/InclusiveRange/maxInclusive ()Ljava/lang/Comparable; +MD: net/minecraft/util/InclusiveRange/hashCode ()I net/minecraft/util/InclusiveRange/hashCode ()I +MD: net/minecraft/util/InclusiveRange/m_184570_ (Lnet/minecraft/util/InclusiveRange;)Z net/minecraft/util/InclusiveRange/contains (Lnet/minecraft/util/InclusiveRange;)Z +MD: net/minecraft/util/InclusiveRange/m_184572_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/InclusiveRange/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/InclusiveRange/m_184574_ (Lcom/mojang/serialization/Codec;Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/Codec; net/minecraft/util/InclusiveRange/codec (Lcom/mojang/serialization/Codec;Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/InclusiveRange/m_184578_ (Ljava/lang/Comparable;)Z net/minecraft/util/InclusiveRange/isValueInRange (Ljava/lang/Comparable;)Z +MD: net/minecraft/util/InclusiveRange/m_184580_ (Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/DataResult; net/minecraft/util/InclusiveRange/create (Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/InclusiveRange/m_274148_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; net/minecraft/util/InclusiveRange/lambda$codec$2 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/InclusiveRange/m_274149_ (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; net/minecraft/util/InclusiveRange/lambda$codec$1 (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; +MD: net/minecraft/util/InclusiveRange/m_274150_ ()Ljava/lang/String; net/minecraft/util/InclusiveRange/lambda$create$3 ()Ljava/lang/String; +MD: net/minecraft/util/InclusiveRange/m_274151_ (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; net/minecraft/util/InclusiveRange/lambda$codec$0 (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; +MD: net/minecraft/util/InclusiveRange/toString ()Ljava/lang/String; net/minecraft/util/InclusiveRange/toString ()Ljava/lang/String; +MD: net/minecraft/util/KeyDispatchDataCodec/ (Lcom/mojang/serialization/Codec;)V net/minecraft/util/KeyDispatchDataCodec/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/KeyDispatchDataCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/KeyDispatchDataCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/KeyDispatchDataCodec/f_216232_ ()Lcom/mojang/serialization/Codec; net/minecraft/util/KeyDispatchDataCodec/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/KeyDispatchDataCodec/hashCode ()I net/minecraft/util/KeyDispatchDataCodec/hashCode ()I +MD: net/minecraft/util/KeyDispatchDataCodec/m_216236_ (Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/util/KeyDispatchDataCodec/of (Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/util/KeyDispatchDataCodec/m_216238_ (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/util/KeyDispatchDataCodec/of (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/util/KeyDispatchDataCodec/toString ()Ljava/lang/String; net/minecraft/util/KeyDispatchDataCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/LazyLoadedValue/ (Ljava/util/function/Supplier;)V net/minecraft/util/LazyLoadedValue/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/LazyLoadedValue/m_13971_ ()Ljava/lang/Object; net/minecraft/util/LazyLoadedValue/get ()Ljava/lang/Object; +MD: net/minecraft/util/LinearCongruentialGenerator/ ()V net/minecraft/util/LinearCongruentialGenerator/ ()V +MD: net/minecraft/util/LinearCongruentialGenerator/m_13972_ (JJ)J net/minecraft/util/LinearCongruentialGenerator/next (JJ)J +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory/ ()V net/minecraft/util/LowerCaseEnumTypeAdapterFactory/ ()V +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory/create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; net/minecraft/util/LowerCaseEnumTypeAdapterFactory/create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory/m_13979_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/LowerCaseEnumTypeAdapterFactory/toLowercase (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/ (Lnet/minecraft/util/LowerCaseEnumTypeAdapterFactory;Ljava/util/Map;)V net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/ (Lnet/minecraft/util/LowerCaseEnumTypeAdapterFactory;Ljava/util/Map;)V +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V +MD: net/minecraft/util/MemoryReserve/ ()V net/minecraft/util/MemoryReserve/ ()V +MD: net/minecraft/util/MemoryReserve/ ()V net/minecraft/util/MemoryReserve/ ()V +MD: net/minecraft/util/MemoryReserve/m_182327_ ()V net/minecraft/util/MemoryReserve/allocate ()V +MD: net/minecraft/util/MemoryReserve/m_182328_ ()V net/minecraft/util/MemoryReserve/release ()V +MD: net/minecraft/util/ModCheck/ (Lnet/minecraft/util/ModCheck$Confidence;Ljava/lang/String;)V net/minecraft/util/ModCheck/ (Lnet/minecraft/util/ModCheck$Confidence;Ljava/lang/String;)V +MD: net/minecraft/util/ModCheck/equals (Ljava/lang/Object;)Z net/minecraft/util/ModCheck/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ModCheck/f_184592_ ()Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck/confidence ()Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/ModCheck/f_184593_ ()Ljava/lang/String; net/minecraft/util/ModCheck/description ()Ljava/lang/String; +MD: net/minecraft/util/ModCheck/hashCode ()I net/minecraft/util/ModCheck/hashCode ()I +MD: net/minecraft/util/ModCheck/m_184597_ ()Z net/minecraft/util/ModCheck/shouldReportAsModified ()Z +MD: net/minecraft/util/ModCheck/m_184598_ (Lnet/minecraft/util/ModCheck;)Lnet/minecraft/util/ModCheck; net/minecraft/util/ModCheck/merge (Lnet/minecraft/util/ModCheck;)Lnet/minecraft/util/ModCheck; +MD: net/minecraft/util/ModCheck/m_184600_ (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/util/ModCheck; net/minecraft/util/ModCheck/identify (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/util/ModCheck; +MD: net/minecraft/util/ModCheck/m_184605_ ()Ljava/lang/String; net/minecraft/util/ModCheck/fullDescription ()Ljava/lang/String; +MD: net/minecraft/util/ModCheck/toString ()Ljava/lang/String; net/minecraft/util/ModCheck/toString ()Ljava/lang/String; +MD: net/minecraft/util/ModCheck$Confidence/ ()V net/minecraft/util/ModCheck$Confidence/ ()V +MD: net/minecraft/util/ModCheck$Confidence/ (Ljava/lang/String;ILjava/lang/String;Z)V net/minecraft/util/ModCheck$Confidence/ (Ljava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/util/ModCheck$Confidence/m_184624_ ()[Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck$Confidence/$values ()[Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/ModCheck$Confidence/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck$Confidence/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/ModCheck$Confidence/values ()[Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck$Confidence/values ()[Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/Mth/ ()V net/minecraft/util/Mth/ ()V +MD: net/minecraft/util/Mth/ ()V net/minecraft/util/Mth/ ()V +MD: net/minecraft/util/Mth/m_14002_ ()Ljava/util/UUID; net/minecraft/util/Mth/createInsecureUUID ()Ljava/util/UUID; +MD: net/minecraft/util/Mth/m_14005_ (DD)D net/minecraft/util/Mth/absMax (DD)D +MD: net/minecraft/util/Mth/m_14008_ (DDD)D net/minecraft/util/Mth/clamp (DDD)D +MD: net/minecraft/util/Mth/m_14012_ (DDDDDD)D net/minecraft/util/Mth/lerp2 (DDDDDD)D +MD: net/minecraft/util/Mth/m_14019_ (DDDDDDDDDDD)D net/minecraft/util/Mth/lerp3 (DDDDDDDDDDD)D +MD: net/minecraft/util/Mth/m_14031_ (F)F net/minecraft/util/Mth/sin (F)F +MD: net/minecraft/util/Mth/m_14033_ (FF)Z net/minecraft/util/Mth/equal (FF)Z +MD: net/minecraft/util/Mth/m_14036_ (FFF)F net/minecraft/util/Mth/clamp (FFF)F +MD: net/minecraft/util/Mth/m_14040_ (I)I net/minecraft/util/Mth/abs (I)I +MD: net/minecraft/util/Mth/m_14042_ (II)I net/minecraft/util/Mth/floorDiv (II)I +MD: net/minecraft/util/Mth/m_14045_ (III)I net/minecraft/util/Mth/clamp (III)I +MD: net/minecraft/util/Mth/m_14049_ (IILjava/util/function/IntPredicate;)I net/minecraft/util/Mth/binarySearch (IILjava/util/function/IntPredicate;)I +MD: net/minecraft/util/Mth/m_14057_ (Lnet/minecraft/core/Vec3i;)J net/minecraft/util/Mth/getSeed (Lnet/minecraft/core/Vec3i;)J +MD: net/minecraft/util/Mth/m_14059_ (Ljava/lang/String;I)I net/minecraft/util/Mth/getInt (Ljava/lang/String;I)I +MD: net/minecraft/util/Mth/m_14076_ ([F)V net/minecraft/util/Mth/lambda$static$0 ([F)V +MD: net/minecraft/util/Mth/m_14082_ (DD)Z net/minecraft/util/Mth/equal (DD)Z +MD: net/minecraft/util/Mth/m_14085_ (DDD)D net/minecraft/util/Mth/clampedLerp (DDD)D +MD: net/minecraft/util/Mth/m_14089_ (F)F net/minecraft/util/Mth/cos (F)F +MD: net/minecraft/util/Mth/m_14091_ (FF)F net/minecraft/util/Mth/positiveModulo (FF)F +MD: net/minecraft/util/Mth/m_14094_ (FFF)F net/minecraft/util/Mth/rotateIfNecessary (FFF)F +MD: net/minecraft/util/Mth/m_14098_ (I)I net/minecraft/util/Mth/wrapDegrees (I)I +MD: net/minecraft/util/Mth/m_14100_ (II)I net/minecraft/util/Mth/positiveModulo (II)I +MD: net/minecraft/util/Mth/m_14107_ (D)I net/minecraft/util/Mth/floor (D)I +MD: net/minecraft/util/Mth/m_14109_ (DD)D net/minecraft/util/Mth/positiveModulo (DD)D +MD: net/minecraft/util/Mth/m_14112_ (DDD)D net/minecraft/util/Mth/inverseLerp (DDD)D +MD: net/minecraft/util/Mth/m_14116_ (F)F net/minecraft/util/Mth/sqrt (F)F +MD: net/minecraft/util/Mth/m_14118_ (FF)F net/minecraft/util/Mth/degreesDifference (FF)F +MD: net/minecraft/util/Mth/m_14121_ (FFF)F net/minecraft/util/Mth/approach (FFF)F +MD: net/minecraft/util/Mth/m_14125_ (I)I net/minecraft/util/Mth/smallestEncompassingPowerOfTwo (I)I +MD: net/minecraft/util/Mth/m_14130_ (III)J net/minecraft/util/Mth/getSeed (III)J +MD: net/minecraft/util/Mth/m_14134_ (D)J net/minecraft/util/Mth/lfloor (D)J +MD: net/minecraft/util/Mth/m_14136_ (DD)D net/minecraft/util/Mth/atan2 (DD)D +MD: net/minecraft/util/Mth/m_14139_ (DDD)D net/minecraft/util/Mth/lerp (DDD)D +MD: net/minecraft/util/Mth/m_14143_ (F)I net/minecraft/util/Mth/floor (F)I +MD: net/minecraft/util/Mth/m_14145_ (FF)F net/minecraft/util/Mth/degreesDifferenceAbs (FF)F +MD: net/minecraft/util/Mth/m_14148_ (FFF)F net/minecraft/util/Mth/approachDegrees (FFF)F +MD: net/minecraft/util/Mth/m_14152_ (I)Z net/minecraft/util/Mth/isPowerOfTwo (I)Z +MD: net/minecraft/util/Mth/m_14154_ (F)F net/minecraft/util/Mth/abs (F)F +MD: net/minecraft/util/Mth/m_14156_ (FF)F net/minecraft/util/Mth/triangleWave (FF)F +MD: net/minecraft/util/Mth/m_14159_ (FFF)I net/minecraft/util/Mth/color (FFF)I +MD: net/minecraft/util/Mth/m_14163_ (I)I net/minecraft/util/Mth/ceillog2 (I)I +MD: net/minecraft/util/Mth/m_14165_ (D)I net/minecraft/util/Mth/ceil (D)I +MD: net/minecraft/util/Mth/m_14167_ (F)I net/minecraft/util/Mth/ceil (F)I +MD: net/minecraft/util/Mth/m_14169_ (FFF)I net/minecraft/util/Mth/hsvToRgb (FFF)I +MD: net/minecraft/util/Mth/m_14173_ (I)I net/minecraft/util/Mth/log2 (I)I +MD: net/minecraft/util/Mth/m_14175_ (D)D net/minecraft/util/Mth/wrapDegrees (D)D +MD: net/minecraft/util/Mth/m_14177_ (F)F net/minecraft/util/Mth/wrapDegrees (F)F +MD: net/minecraft/util/Mth/m_14179_ (FFF)F net/minecraft/util/Mth/lerp (FFF)F +MD: net/minecraft/util/Mth/m_14183_ (I)I net/minecraft/util/Mth/murmurHash3Mixer (I)I +MD: net/minecraft/util/Mth/m_14185_ (D)D net/minecraft/util/Mth/frac (D)D +MD: net/minecraft/util/Mth/m_14187_ (F)F net/minecraft/util/Mth/frac (F)F +MD: net/minecraft/util/Mth/m_14189_ (FFF)F net/minecraft/util/Mth/rotLerp (FFF)F +MD: net/minecraft/util/Mth/m_14193_ (D)D net/minecraft/util/Mth/fastInvSqrt (D)D +MD: net/minecraft/util/Mth/m_14197_ (D)D net/minecraft/util/Mth/smoothstep (D)D +MD: net/minecraft/util/Mth/m_14199_ (F)F net/minecraft/util/Mth/fastInvCubeRoot (F)F +MD: net/minecraft/util/Mth/m_14205_ (D)I net/minecraft/util/Mth/sign (D)I +MD: net/minecraft/util/Mth/m_14207_ (F)F net/minecraft/util/Mth/square (F)F +MD: net/minecraft/util/Mth/m_144851_ (DDDDD)D net/minecraft/util/Mth/clampedMap (DDDDD)D +MD: net/minecraft/util/Mth/m_144888_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/util/Mth/rayIntersectsAABB (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/util/Mth/m_144914_ (DDDDD)D net/minecraft/util/Mth/map (DDDDD)D +MD: net/minecraft/util/Mth/m_144920_ (FFF)F net/minecraft/util/Mth/clampedLerp (FFF)F +MD: net/minecraft/util/Mth/m_144941_ (II)I net/minecraft/util/Mth/roundToward (II)I +MD: net/minecraft/util/Mth/m_144944_ (I)I net/minecraft/util/Mth/square (I)I +MD: net/minecraft/util/Mth/m_144946_ (D)D net/minecraft/util/Mth/smoothstepDerivative (D)D +MD: net/minecraft/util/Mth/m_144952_ (D)D net/minecraft/util/Mth/square (D)D +MD: net/minecraft/util/Mth/m_144954_ (D)D net/minecraft/util/Mth/wobble (D)D +MD: net/minecraft/util/Mth/m_184628_ (DI)I net/minecraft/util/Mth/quantize (DI)I +MD: net/minecraft/util/Mth/m_184631_ (FFFFF)F net/minecraft/util/Mth/clampedMap (FFFFF)F +MD: net/minecraft/util/Mth/m_184637_ (FFFFF)F net/minecraft/util/Mth/map (FFFFF)F +MD: net/minecraft/util/Mth/m_184643_ (J)J net/minecraft/util/Mth/square (J)J +MD: net/minecraft/util/Mth/m_184645_ (DD)D net/minecraft/util/Mth/length (DD)D +MD: net/minecraft/util/Mth/m_184648_ (DDD)D net/minecraft/util/Mth/length (DDD)D +MD: net/minecraft/util/Mth/m_184652_ (II)I net/minecraft/util/Mth/positiveCeilDiv (II)I +MD: net/minecraft/util/Mth/m_184655_ (FFF)F net/minecraft/util/Mth/inverseLerp (FFF)F +MD: net/minecraft/util/Mth/m_211589_ (DD)D net/minecraft/util/Mth/lengthSquared (DD)D +MD: net/minecraft/util/Mth/m_211592_ (DDD)D net/minecraft/util/Mth/lengthSquared (DDD)D +MD: net/minecraft/util/Mth/m_216244_ (FFFFF)F net/minecraft/util/Mth/catmullrom (FFFFF)F +MD: net/minecraft/util/Mth/m_216250_ (IIII)Ljava/util/stream/IntStream; net/minecraft/util/Mth/outFromOrigin (IIII)Ljava/util/stream/IntStream; +MD: net/minecraft/util/Mth/m_216255_ (IIIII)I net/minecraft/util/Mth/lambda$outFromOrigin$2 (IIIII)I +MD: net/minecraft/util/Mth/m_216261_ (Lnet/minecraft/util/RandomSource;)Ljava/util/UUID; net/minecraft/util/Mth/createInsecureUUID (Lnet/minecraft/util/RandomSource;)Ljava/util/UUID; +MD: net/minecraft/util/Mth/m_216263_ (Lnet/minecraft/util/RandomSource;DD)D net/minecraft/util/Mth/nextDouble (Lnet/minecraft/util/RandomSource;DD)D +MD: net/minecraft/util/Mth/m_216267_ (Lnet/minecraft/util/RandomSource;FF)F net/minecraft/util/Mth/nextFloat (Lnet/minecraft/util/RandomSource;FF)F +MD: net/minecraft/util/Mth/m_216271_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/util/Mth/nextInt (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/util/Mth/m_216278_ (IIII)Z net/minecraft/util/Mth/lambda$outFromOrigin$1 (IIII)Z +MD: net/minecraft/util/Mth/m_216283_ (Lnet/minecraft/util/RandomSource;FF)F net/minecraft/util/Mth/randomBetween (Lnet/minecraft/util/RandomSource;FF)F +MD: net/minecraft/util/Mth/m_216287_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/util/Mth/randomBetweenInclusive (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/util/Mth/m_216291_ (Lnet/minecraft/util/RandomSource;FF)F net/minecraft/util/Mth/normal (Lnet/minecraft/util/RandomSource;FF)F +MD: net/minecraft/util/Mth/m_216295_ (III)Ljava/util/stream/IntStream; net/minecraft/util/Mth/outFromOrigin (III)Ljava/util/stream/IntStream; +MD: net/minecraft/util/Mth/m_264536_ (F)F net/minecraft/util/Mth/invSqrt (F)F +MD: net/minecraft/util/Mth/m_264555_ (D)D net/minecraft/util/Mth/invSqrt (D)D +MD: net/minecraft/util/Mth/m_264612_ (II)Z net/minecraft/util/Mth/isMultipleOf (II)Z +MD: net/minecraft/util/Mth/m_269140_ (FII)I net/minecraft/util/Mth/lerpInt (FII)I +MD: net/minecraft/util/NativeModuleLister/ ()V net/minecraft/util/NativeModuleLister/ ()V +MD: net/minecraft/util/NativeModuleLister/ ()V net/minecraft/util/NativeModuleLister/ ()V +MD: net/minecraft/util/NativeModuleLister/m_184666_ ()Ljava/util/List; net/minecraft/util/NativeModuleLister/listModules ()Ljava/util/List; +MD: net/minecraft/util/NativeModuleLister/m_184667_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; net/minecraft/util/NativeModuleLister/lambda$addCrashSection$1 (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184669_ (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Lcom/sun/jna/Pointer; net/minecraft/util/NativeModuleLister/queryVersionValue (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Lcom/sun/jna/Pointer; +MD: net/minecraft/util/NativeModuleLister/m_184673_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/NativeModuleLister/tryGetVersion (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/NativeModuleLister/m_184675_ (Ljava/lang/String;II)Ljava/lang/String; net/minecraft/util/NativeModuleLister/langTableKey (Ljava/lang/String;II)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184679_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/util/NativeModuleLister/addCrashSection (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/util/NativeModuleLister/m_184681_ ([I)Ljava/util/OptionalInt; net/minecraft/util/NativeModuleLister/findLangAndCodepage ([I)Ljava/util/OptionalInt; +MD: net/minecraft/util/NativeModuleLister/m_184683_ ()Ljava/lang/String; net/minecraft/util/NativeModuleLister/lambda$addCrashSection$2 ()Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184684_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; net/minecraft/util/NativeModuleLister/lambda$addCrashSection$0 (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184686_ (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Ljava/lang/String; net/minecraft/util/NativeModuleLister/queryVersionString (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/ (Ljava/lang/String;Ljava/util/Optional;)V net/minecraft/util/NativeModuleLister$NativeModuleInfo/ (Ljava/lang/String;Ljava/util/Optional;)V +MD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/m_184695_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleVersion;)Ljava/lang/String; net/minecraft/util/NativeModuleLister$NativeModuleInfo/lambda$toString$0 (Lnet/minecraft/util/NativeModuleLister$NativeModuleVersion;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/toString ()Ljava/lang/String; net/minecraft/util/NativeModuleLister$NativeModuleInfo/toString ()Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/util/NativeModuleLister$NativeModuleVersion/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/toString ()Ljava/lang/String; net/minecraft/util/NativeModuleLister$NativeModuleVersion/toString ()Ljava/lang/String; +MD: net/minecraft/util/OptionEnum/m_216301_ ()Lnet/minecraft/network/chat/Component; net/minecraft/util/OptionEnum/getCaption ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/util/OptionEnum/m_35965_ ()I net/minecraft/util/OptionEnum/getId ()I +MD: net/minecraft/util/OptionEnum/m_35968_ ()Ljava/lang/String; net/minecraft/util/OptionEnum/getKey ()Ljava/lang/String; +MD: net/minecraft/util/ParticleUtils/ ()V net/minecraft/util/ParticleUtils/ ()V +MD: net/minecraft/util/ParticleUtils/m_144967_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;DLnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/UniformInt;)V net/minecraft/util/ParticleUtils/spawnParticlesAlongAxis (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;DLnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/UniformInt;)V +MD: net/minecraft/util/ParticleUtils/m_216302_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/ParticleUtils/getRandomSpeedRanges (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/ParticleUtils/m_216304_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/ParticleUtils/lambda$spawnParticlesOnBlockFaces$0 (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/ParticleUtils/m_216306_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;D)V net/minecraft/util/ParticleUtils/spawnParticleOnFace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;D)V +MD: net/minecraft/util/ParticleUtils/m_216313_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/util/ParticleUtils/spawnParticlesOnBlockFaces (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/util/ParticleUtils/m_216318_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;D)V net/minecraft/util/ParticleUtils/spawnParticlesOnBlockFace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;D)V +MD: net/minecraft/util/ParticleUtils/m_272037_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/util/ParticleUtils/spawnParticleBelow (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/util/ProgressListener/m_6307_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/util/ProgressListener/progressStage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/util/ProgressListener/m_6308_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/util/ProgressListener/progressStart (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/util/ProgressListener/m_6309_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/util/ProgressListener/progressStartNoAbort (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/util/ProgressListener/m_6952_ (I)V net/minecraft/util/ProgressListener/progressStagePercentage (I)V +MD: net/minecraft/util/ProgressListener/m_7730_ ()V net/minecraft/util/ProgressListener/stop ()V +MD: net/minecraft/util/RandomSource/m_188499_ ()Z net/minecraft/util/RandomSource/nextBoolean ()Z +MD: net/minecraft/util/RandomSource/m_188500_ ()D net/minecraft/util/RandomSource/nextDouble ()D +MD: net/minecraft/util/RandomSource/m_188501_ ()F net/minecraft/util/RandomSource/nextFloat ()F +MD: net/minecraft/util/RandomSource/m_188502_ ()I net/minecraft/util/RandomSource/nextInt ()I +MD: net/minecraft/util/RandomSource/m_188503_ (I)I net/minecraft/util/RandomSource/nextInt (I)I +MD: net/minecraft/util/RandomSource/m_188505_ ()J net/minecraft/util/RandomSource/nextLong ()J +MD: net/minecraft/util/RandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/util/RandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/util/RandomSource/m_188583_ ()D net/minecraft/util/RandomSource/nextGaussian ()D +MD: net/minecraft/util/RandomSource/m_188584_ (J)V net/minecraft/util/RandomSource/setSeed (J)V +MD: net/minecraft/util/RandomSource/m_190110_ (I)V net/minecraft/util/RandomSource/consumeCount (I)V +MD: net/minecraft/util/RandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216327_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/create ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216328_ (DD)D net/minecraft/util/RandomSource/triangle (DD)D +MD: net/minecraft/util/RandomSource/m_216332_ (II)I net/minecraft/util/RandomSource/nextIntBetweenInclusive (II)I +MD: net/minecraft/util/RandomSource/m_216335_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/create (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216337_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/createThreadSafe ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216339_ (II)I net/minecraft/util/RandomSource/nextInt (II)I +MD: net/minecraft/util/RandomSource/m_216343_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/createNewThreadLocalInstance ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/ResourceLocationPattern/ ()V net/minecraft/util/ResourceLocationPattern/ ()V +MD: net/minecraft/util/ResourceLocationPattern/ (Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/util/ResourceLocationPattern/ (Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/util/ResourceLocationPattern/m_260867_ (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; net/minecraft/util/ResourceLocationPattern/lambda$static$0 (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; +MD: net/minecraft/util/ResourceLocationPattern/m_261035_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/util/ResourceLocationPattern/lambda$new$5 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/util/ResourceLocationPattern/m_261037_ (Ljava/lang/String;)Z net/minecraft/util/ResourceLocationPattern/lambda$new$4 (Ljava/lang/String;)Z +MD: net/minecraft/util/ResourceLocationPattern/m_261081_ ()Ljava/util/function/Predicate; net/minecraft/util/ResourceLocationPattern/pathPredicate ()Ljava/util/function/Predicate; +MD: net/minecraft/util/ResourceLocationPattern/m_261148_ (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; net/minecraft/util/ResourceLocationPattern/lambda$static$1 (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; +MD: net/minecraft/util/ResourceLocationPattern/m_261163_ (Ljava/lang/String;)Z net/minecraft/util/ResourceLocationPattern/lambda$new$3 (Ljava/lang/String;)Z +MD: net/minecraft/util/ResourceLocationPattern/m_261176_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ResourceLocationPattern/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ResourceLocationPattern/m_261275_ ()Ljava/util/function/Predicate; net/minecraft/util/ResourceLocationPattern/locationPredicate ()Ljava/util/function/Predicate; +MD: net/minecraft/util/ResourceLocationPattern/m_261304_ ()Ljava/util/function/Predicate; net/minecraft/util/ResourceLocationPattern/namespacePredicate ()Ljava/util/function/Predicate; +MD: net/minecraft/util/SegmentedAnglePrecision/ (I)V net/minecraft/util/SegmentedAnglePrecision/ (I)V +MD: net/minecraft/util/SegmentedAnglePrecision/m_264060_ (Lnet/minecraft/core/Direction;)I net/minecraft/util/SegmentedAnglePrecision/fromDirection (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264138_ (I)F net/minecraft/util/SegmentedAnglePrecision/toDegrees (I)F +MD: net/minecraft/util/SegmentedAnglePrecision/m_264207_ (II)Z net/minecraft/util/SegmentedAnglePrecision/isSameAxis (II)Z +MD: net/minecraft/util/SegmentedAnglePrecision/m_264289_ (I)F net/minecraft/util/SegmentedAnglePrecision/toDegreesWithTurns (I)F +MD: net/minecraft/util/SegmentedAnglePrecision/m_264384_ (I)I net/minecraft/util/SegmentedAnglePrecision/normalize (I)I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264419_ (F)I net/minecraft/util/SegmentedAnglePrecision/fromDegrees (F)I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264451_ ()I net/minecraft/util/SegmentedAnglePrecision/getMask ()I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264592_ (F)I net/minecraft/util/SegmentedAnglePrecision/fromDegreesWithTurns (F)I +MD: net/minecraft/util/SignatureUpdater/m_216344_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/util/SignatureUpdater/update (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/util/SignatureUpdater$Output/m_216346_ ([B)V net/minecraft/util/SignatureUpdater$Output/update ([B)V +MD: net/minecraft/util/SignatureValidator/ ()V net/minecraft/util/SignatureValidator/ ()V +MD: net/minecraft/util/SignatureValidator/m_216351_ (Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/lambda$static$0 (Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_216354_ (Lnet/minecraft/util/SignatureUpdater;[BLjava/security/Signature;)Z net/minecraft/util/SignatureValidator/verifySignature (Lnet/minecraft/util/SignatureUpdater;[BLjava/security/Signature;)Z +MD: net/minecraft/util/SignatureValidator/m_216360_ (Lnet/minecraft/util/SignatureUpdater;[BLcom/mojang/authlib/yggdrasil/ServicesKeyInfo;)Z net/minecraft/util/SignatureValidator/lambda$from$3 (Lnet/minecraft/util/SignatureUpdater;[BLcom/mojang/authlib/yggdrasil/ServicesKeyInfo;)Z +MD: net/minecraft/util/SignatureValidator/m_216364_ (Ljava/lang/String;Ljava/security/PublicKey;Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/lambda$from$2 (Ljava/lang/String;Ljava/security/PublicKey;Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_216369_ (Ljava/security/PublicKey;Ljava/lang/String;)Lnet/minecraft/util/SignatureValidator; net/minecraft/util/SignatureValidator/from (Ljava/security/PublicKey;Ljava/lang/String;)Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/util/SignatureValidator/m_216372_ ([BLnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/util/SignatureValidator/lambda$validate$1 ([BLnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/util/SignatureValidator/m_216375_ ([B[B)Z net/minecraft/util/SignatureValidator/validate ([B[B)Z +MD: net/minecraft/util/SignatureValidator/m_216378_ (Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/validate (Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_284009_ (Ljava/util/Collection;Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/lambda$from$4 (Ljava/util/Collection;Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_284488_ (Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/yggdrasil/ServicesKeyType;)Lnet/minecraft/util/SignatureValidator; net/minecraft/util/SignatureValidator/from (Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/yggdrasil/ServicesKeyType;)Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/util/Signer/ ()V net/minecraft/util/Signer/ ()V +MD: net/minecraft/util/Signer/m_216383_ (Ljava/lang/String;Ljava/security/PrivateKey;Lnet/minecraft/util/SignatureUpdater;)[B net/minecraft/util/Signer/lambda$from$1 (Ljava/lang/String;Ljava/security/PrivateKey;Lnet/minecraft/util/SignatureUpdater;)[B +MD: net/minecraft/util/Signer/m_216387_ (Ljava/security/PrivateKey;Ljava/lang/String;)Lnet/minecraft/util/Signer; net/minecraft/util/Signer/from (Ljava/security/PrivateKey;Ljava/lang/String;)Lnet/minecraft/util/Signer; +MD: net/minecraft/util/Signer/m_216390_ ([B)[B net/minecraft/util/Signer/sign ([B)[B +MD: net/minecraft/util/Signer/m_216392_ ([BLnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/util/Signer/lambda$sign$0 ([BLnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/util/Signer/m_216395_ (Lnet/minecraft/util/SignatureUpdater;)[B net/minecraft/util/Signer/sign (Lnet/minecraft/util/SignatureUpdater;)[B +MD: net/minecraft/util/SimpleBitStorage/ ()V net/minecraft/util/SimpleBitStorage/ ()V +MD: net/minecraft/util/SimpleBitStorage/ (II[J)V net/minecraft/util/SimpleBitStorage/ (II[J)V +MD: net/minecraft/util/SimpleBitStorage/ (II[I)V net/minecraft/util/SimpleBitStorage/ (II[I)V +MD: net/minecraft/util/SimpleBitStorage/ (II)V net/minecraft/util/SimpleBitStorage/ (II)V +MD: net/minecraft/util/SimpleBitStorage/m_13513_ ()[J net/minecraft/util/SimpleBitStorage/getRaw ()[J +MD: net/minecraft/util/SimpleBitStorage/m_13514_ (I)I net/minecraft/util/SimpleBitStorage/get (I)I +MD: net/minecraft/util/SimpleBitStorage/m_13516_ (II)I net/minecraft/util/SimpleBitStorage/getAndSet (II)I +MD: net/minecraft/util/SimpleBitStorage/m_13519_ (Ljava/util/function/IntConsumer;)V net/minecraft/util/SimpleBitStorage/getAll (Ljava/util/function/IntConsumer;)V +MD: net/minecraft/util/SimpleBitStorage/m_13521_ ()I net/minecraft/util/SimpleBitStorage/getSize ()I +MD: net/minecraft/util/SimpleBitStorage/m_13524_ (II)V net/minecraft/util/SimpleBitStorage/set (II)V +MD: net/minecraft/util/SimpleBitStorage/m_144604_ ()I net/minecraft/util/SimpleBitStorage/getBits ()I +MD: net/minecraft/util/SimpleBitStorage/m_184739_ (I)I net/minecraft/util/SimpleBitStorage/cellIndex (I)I +MD: net/minecraft/util/SimpleBitStorage/m_197970_ ([I)V net/minecraft/util/SimpleBitStorage/unpack ([I)V +MD: net/minecraft/util/SimpleBitStorage/m_199833_ ()Lnet/minecraft/util/BitStorage; net/minecraft/util/SimpleBitStorage/copy ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/util/SimpleBitStorage$InitializationException/ (Ljava/lang/String;)V net/minecraft/util/SimpleBitStorage$InitializationException/ (Ljava/lang/String;)V +MD: net/minecraft/util/SingleKeyCache/ (Ljava/util/function/Function;)V net/minecraft/util/SingleKeyCache/ (Ljava/util/function/Function;)V +MD: net/minecraft/util/SingleKeyCache/m_269185_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/SingleKeyCache/getValue (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/SmoothDouble/ ()V net/minecraft/util/SmoothDouble/ ()V +MD: net/minecraft/util/SmoothDouble/m_14236_ ()V net/minecraft/util/SmoothDouble/reset ()V +MD: net/minecraft/util/SmoothDouble/m_14237_ (DD)D net/minecraft/util/SmoothDouble/getNewDeltaValue (DD)D +MD: net/minecraft/util/SortedArraySet/ (ILjava/util/Comparator;)V net/minecraft/util/SortedArraySet/ (ILjava/util/Comparator;)V +MD: net/minecraft/util/SortedArraySet/add (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/add (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/clear ()V net/minecraft/util/SortedArraySet/clear ()V +MD: net/minecraft/util/SortedArraySet/contains (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/contains (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/equals (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/iterator ()Ljava/util/Iterator; net/minecraft/util/SortedArraySet/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/SortedArraySet/m_14246_ (I)Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create (I)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_14253_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/SortedArraySet/addOrGet (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_14255_ (Ljava/lang/Object;I)V net/minecraft/util/SortedArraySet/addInternal (Ljava/lang/Object;I)V +MD: net/minecraft/util/SortedArraySet/m_14258_ ([Ljava/lang/Object;)[Ljava/lang/Object; net/minecraft/util/SortedArraySet/castRawArray ([Ljava/lang/Object;)[Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_14262_ ()Ljava/lang/Object; net/minecraft/util/SortedArraySet/first ()Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_14263_ (I)I net/minecraft/util/SortedArraySet/getInsertionPosition (I)I +MD: net/minecraft/util/SortedArraySet/m_14267_ (I)V net/minecraft/util/SortedArraySet/grow (I)V +MD: net/minecraft/util/SortedArraySet/m_14269_ (Ljava/lang/Object;)I net/minecraft/util/SortedArraySet/findIndex (Ljava/lang/Object;)I +MD: net/minecraft/util/SortedArraySet/m_14274_ (I)V net/minecraft/util/SortedArraySet/removeInternal (I)V +MD: net/minecraft/util/SortedArraySet/m_14276_ (I)Ljava/lang/Object; net/minecraft/util/SortedArraySet/getInternal (I)Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_144975_ ()Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create ()Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_144976_ (Ljava/util/Comparator;)Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create (Ljava/util/Comparator;)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_144978_ (Ljava/util/Comparator;I)Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create (Ljava/util/Comparator;I)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_144981_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/SortedArraySet/get (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_144983_ ()Ljava/lang/Object; net/minecraft/util/SortedArraySet/last ()Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/remove (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/remove (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/size ()I net/minecraft/util/SortedArraySet/size ()I +MD: net/minecraft/util/SortedArraySet/toArray ([Ljava/lang/Object;)[Ljava/lang/Object; net/minecraft/util/SortedArraySet/toArray ([Ljava/lang/Object;)[Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/toArray ()[Ljava/lang/Object; net/minecraft/util/SortedArraySet/toArray ()[Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet$ArrayIterator/ (Lnet/minecraft/util/SortedArraySet;)V net/minecraft/util/SortedArraySet$ArrayIterator/ (Lnet/minecraft/util/SortedArraySet;)V +MD: net/minecraft/util/SortedArraySet$ArrayIterator/hasNext ()Z net/minecraft/util/SortedArraySet$ArrayIterator/hasNext ()Z +MD: net/minecraft/util/SortedArraySet$ArrayIterator/next ()Ljava/lang/Object; net/minecraft/util/SortedArraySet$ArrayIterator/next ()Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet$ArrayIterator/remove ()V net/minecraft/util/SortedArraySet$ArrayIterator/remove ()V +MD: net/minecraft/util/SpawnUtil/ ()V net/minecraft/util/SpawnUtil/ ()V +MD: net/minecraft/util/SpawnUtil/m_216398_ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/SpawnUtil$Strategy;)Z net/minecraft/util/SpawnUtil/moveToPossibleSpawnPosition (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/SpawnUtil$Strategy;)Z +MD: net/minecraft/util/SpawnUtil/m_216403_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;IIILnet/minecraft/util/SpawnUtil$Strategy;)Ljava/util/Optional; net/minecraft/util/SpawnUtil/trySpawnMob (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;IIILnet/minecraft/util/SpawnUtil$Strategy;)Ljava/util/Optional; +MD: net/minecraft/util/SpawnUtil$Strategy/ ()V net/minecraft/util/SpawnUtil$Strategy/ ()V +MD: net/minecraft/util/SpawnUtil$Strategy/m_216415_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/util/SpawnUtil$Strategy/lambda$static$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/util/SpawnUtil$Strategy/m_216427_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/util/SpawnUtil$Strategy/canSpawnOn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/util/SpawnUtil$Strategy/m_289712_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/util/SpawnUtil$Strategy/lambda$static$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/util/StringDecomposer/ ()V net/minecraft/util/StringDecomposer/ ()V +MD: net/minecraft/util/StringDecomposer/ ()V net/minecraft/util/StringDecomposer/ ()V +MD: net/minecraft/util/StringDecomposer/m_14300_ (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/StringDecomposer/lambda$iterateFormatted$0 (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/StringDecomposer/m_14304_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringDecomposer/filterBrokenSurrogates (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/StringDecomposer/m_14306_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14311_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14317_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterate (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14321_ (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/StringDecomposer/lambda$getPlainText$2 (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/StringDecomposer/m_14326_ (Lnet/minecraft/network/chat/FormattedText;)Ljava/lang/String; net/minecraft/util/StringDecomposer/getPlainText (Lnet/minecraft/network/chat/FormattedText;)Ljava/lang/String; +MD: net/minecraft/util/StringDecomposer/m_14328_ (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14332_ (Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;IC)Z net/minecraft/util/StringDecomposer/feedChar (Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;IC)Z +MD: net/minecraft/util/StringDecomposer/m_14337_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateBackwards (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14341_ (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/StringDecomposer/lambda$filterBrokenSurrogates$1 (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/StringDecomposer/m_14346_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringRepresentable/m_14357_ ([Lnet/minecraft/util/StringRepresentable;)Lcom/mojang/serialization/Keyable; net/minecraft/util/StringRepresentable/keys ([Lnet/minecraft/util/StringRepresentable;)Lcom/mojang/serialization/Keyable; +MD: net/minecraft/util/StringRepresentable/m_216434_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringRepresentable/lambda$fromEnum$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable/m_216436_ (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$3 (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable/m_216439_ (Ljava/util/function/Supplier;)Lnet/minecraft/util/StringRepresentable$EnumCodec; net/minecraft/util/StringRepresentable/fromEnum (Ljava/util/function/Supplier;)Lnet/minecraft/util/StringRepresentable$EnumCodec; +MD: net/minecraft/util/StringRepresentable/m_274152_ (Ljava/lang/Enum;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$2 (Ljava/lang/Enum;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable/m_274153_ (Ljava/util/function/Function;Ljava/lang/Enum;)Ljava/lang/String; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$1 (Ljava/util/function/Function;Ljava/lang/Enum;)Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable/m_274154_ ([Ljava/lang/Enum;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$4 ([Ljava/lang/Enum;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable/m_274478_ (Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/util/StringRepresentable$EnumCodec; net/minecraft/util/StringRepresentable/fromEnumWithMapping (Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/util/StringRepresentable$EnumCodec; +MD: net/minecraft/util/StringRepresentable/m_7912_ ()Ljava/lang/String; net/minecraft/util/StringRepresentable/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable$1/ ([Lnet/minecraft/util/StringRepresentable;)V net/minecraft/util/StringRepresentable$1/ ([Lnet/minecraft/util/StringRepresentable;)V +MD: net/minecraft/util/StringRepresentable$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/util/StringRepresentable$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/util/StringRepresentable$EnumCodec/ ([Ljava/lang/Enum;Ljava/util/function/Function;)V net/minecraft/util/StringRepresentable$EnumCodec/ ([Ljava/lang/Enum;Ljava/util/function/Function;)V +MD: net/minecraft/util/StringRepresentable$EnumCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/StringRepresentable$EnumCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Enum;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Enum;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216453_ (Ljava/lang/Object;)I net/minecraft/util/StringRepresentable$EnumCodec/lambda$new$1 (Ljava/lang/Object;)I +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216455_ (Ljava/lang/String;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable$EnumCodec/byName (Ljava/lang/String;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216457_ ([Ljava/lang/Enum;I)Ljava/lang/Enum; net/minecraft/util/StringRepresentable$EnumCodec/lambda$new$2 ([Ljava/lang/Enum;I)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216460_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/StringRepresentable$EnumCodec/lambda$new$0 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_262792_ (Ljava/lang/String;Ljava/lang/Enum;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable$EnumCodec/byName (Ljava/lang/String;Ljava/lang/Enum;)Ljava/lang/Enum; +MD: net/minecraft/util/StringUtil/ ()V net/minecraft/util/StringUtil/ ()V +MD: net/minecraft/util/StringUtil/ ()V net/minecraft/util/StringUtil/ ()V +MD: net/minecraft/util/StringUtil/m_14404_ (I)Ljava/lang/String; net/minecraft/util/StringUtil/formatTickDuration (I)Ljava/lang/String; +MD: net/minecraft/util/StringUtil/m_14406_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringUtil/stripColor (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/StringUtil/m_14408_ (Ljava/lang/String;)Z net/minecraft/util/StringUtil/isNullOrEmpty (Ljava/lang/String;)Z +MD: net/minecraft/util/StringUtil/m_144998_ (Ljava/lang/String;IZ)Ljava/lang/String; net/minecraft/util/StringUtil/truncateStringIfNecessary (Ljava/lang/String;IZ)Ljava/lang/String; +MD: net/minecraft/util/StringUtil/m_145002_ (Ljava/lang/String;)I net/minecraft/util/StringUtil/lineCount (Ljava/lang/String;)I +MD: net/minecraft/util/StringUtil/m_145004_ (Ljava/lang/String;)Z net/minecraft/util/StringUtil/endsWithNewLine (Ljava/lang/String;)Z +MD: net/minecraft/util/StringUtil/m_216469_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringUtil/trimChatMessage (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/TaskChainer/ ()V net/minecraft/util/TaskChainer/ ()V +MD: net/minecraft/util/TaskChainer/m_241791_ (Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/util/TaskChainer/lambda$immediate$0 (Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/util/TaskChainer/m_241849_ (Lnet/minecraft/util/TaskChainer$DelayedTask;)V net/minecraft/util/TaskChainer/append (Lnet/minecraft/util/TaskChainer$DelayedTask;)V +MD: net/minecraft/util/TaskChainer/m_244911_ (Ljava/util/concurrent/Executor;Lnet/minecraft/util/TaskChainer$DelayedTask;)V net/minecraft/util/TaskChainer/lambda$immediate$1 (Ljava/util/concurrent/Executor;Lnet/minecraft/util/TaskChainer$DelayedTask;)V +MD: net/minecraft/util/TaskChainer/m_247687_ (Ljava/util/concurrent/Executor;)Lnet/minecraft/util/TaskChainer; net/minecraft/util/TaskChainer/immediate (Ljava/util/concurrent/Executor;)Lnet/minecraft/util/TaskChainer; +MD: net/minecraft/util/TaskChainer$DelayedTask/m_245608_ (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/TaskChainer$DelayedTask/submit (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/ThreadingDetector/ ()V net/minecraft/util/ThreadingDetector/ ()V +MD: net/minecraft/util/ThreadingDetector/ (Ljava/lang/String;)V net/minecraft/util/ThreadingDetector/ (Ljava/lang/String;)V +MD: net/minecraft/util/ThreadingDetector/m_199416_ ()V net/minecraft/util/ThreadingDetector/checkAndLock ()V +MD: net/minecraft/util/ThreadingDetector/m_199417_ (Ljava/lang/String;Ljava/lang/Thread;)Lnet/minecraft/ReportedException; net/minecraft/util/ThreadingDetector/makeThreadingException (Ljava/lang/String;Ljava/lang/Thread;)Lnet/minecraft/ReportedException; +MD: net/minecraft/util/ThreadingDetector/m_199420_ (Ljava/lang/Thread;)Ljava/lang/String; net/minecraft/util/ThreadingDetector/stackTrace (Ljava/lang/Thread;)Ljava/lang/String; +MD: net/minecraft/util/ThreadingDetector/m_199422_ ()V net/minecraft/util/ThreadingDetector/checkAndUnlock ()V +MD: net/minecraft/util/TimeSource/m_239336_ (Ljava/util/concurrent/TimeUnit;)J net/minecraft/util/TimeSource/get (Ljava/util/concurrent/TimeUnit;)J +MD: net/minecraft/util/TimeSource$NanoTimeSource/m_239336_ (Ljava/util/concurrent/TimeUnit;)J net/minecraft/util/TimeSource$NanoTimeSource/get (Ljava/util/concurrent/TimeUnit;)J +MD: net/minecraft/util/TimeUtil/ ()V net/minecraft/util/TimeUtil/ ()V +MD: net/minecraft/util/TimeUtil/ ()V net/minecraft/util/TimeUtil/ ()V +MD: net/minecraft/util/TimeUtil/m_145020_ (II)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/util/TimeUtil/rangeOfSeconds (II)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/util/ToFloatFunction/ ()V net/minecraft/util/ToFloatFunction/ ()V +MD: net/minecraft/util/ToFloatFunction/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/ToFloatFunction/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/ToFloatFunction/m_213849_ ()F net/minecraft/util/ToFloatFunction/maxValue ()F +MD: net/minecraft/util/ToFloatFunction/m_213850_ ()F net/minecraft/util/ToFloatFunction/minValue ()F +MD: net/minecraft/util/ToFloatFunction/m_216473_ (F)F net/minecraft/util/ToFloatFunction/lambda$static$0 (F)F +MD: net/minecraft/util/ToFloatFunction/m_216475_ (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)Lnet/minecraft/util/ToFloatFunction; net/minecraft/util/ToFloatFunction/createUnlimited (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)Lnet/minecraft/util/ToFloatFunction; +MD: net/minecraft/util/ToFloatFunction/m_216477_ (Ljava/util/function/Function;)Lnet/minecraft/util/ToFloatFunction; net/minecraft/util/ToFloatFunction/comap (Ljava/util/function/Function;)Lnet/minecraft/util/ToFloatFunction; +MD: net/minecraft/util/ToFloatFunction$1/ (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)V net/minecraft/util/ToFloatFunction$1/ (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)V +MD: net/minecraft/util/ToFloatFunction$1/m_183321_ (Ljava/lang/Float;)F net/minecraft/util/ToFloatFunction$1/apply (Ljava/lang/Float;)F +MD: net/minecraft/util/ToFloatFunction$1/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/ToFloatFunction$1/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/ToFloatFunction$1/m_213849_ ()F net/minecraft/util/ToFloatFunction$1/maxValue ()F +MD: net/minecraft/util/ToFloatFunction$1/m_213850_ ()F net/minecraft/util/ToFloatFunction$1/minValue ()F +MD: net/minecraft/util/ToFloatFunction$2/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Ljava/util/function/Function;)V net/minecraft/util/ToFloatFunction$2/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Ljava/util/function/Function;)V +MD: net/minecraft/util/ToFloatFunction$2/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/ToFloatFunction$2/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/ToFloatFunction$2/m_213849_ ()F net/minecraft/util/ToFloatFunction$2/maxValue ()F +MD: net/minecraft/util/ToFloatFunction$2/m_213850_ ()F net/minecraft/util/ToFloatFunction$2/minValue ()F +MD: net/minecraft/util/Tuple/ (Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/Tuple/ (Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/Tuple/m_14418_ ()Ljava/lang/Object; net/minecraft/util/Tuple/getA ()Ljava/lang/Object; +MD: net/minecraft/util/Tuple/m_14419_ ()Ljava/lang/Object; net/minecraft/util/Tuple/getB ()Ljava/lang/Object; +MD: net/minecraft/util/Tuple/m_145023_ (Ljava/lang/Object;)V net/minecraft/util/Tuple/setA (Ljava/lang/Object;)V +MD: net/minecraft/util/Tuple/m_145025_ (Ljava/lang/Object;)V net/minecraft/util/Tuple/setB (Ljava/lang/Object;)V +MD: net/minecraft/util/Unit/ ()V net/minecraft/util/Unit/ ()V +MD: net/minecraft/util/Unit/ (Ljava/lang/String;I)V net/minecraft/util/Unit/ (Ljava/lang/String;I)V +MD: net/minecraft/util/Unit/m_145027_ ()[Lnet/minecraft/util/Unit; net/minecraft/util/Unit/$values ()[Lnet/minecraft/util/Unit; +MD: net/minecraft/util/Unit/valueOf (Ljava/lang/String;)Lnet/minecraft/util/Unit; net/minecraft/util/Unit/valueOf (Ljava/lang/String;)Lnet/minecraft/util/Unit; +MD: net/minecraft/util/Unit/values ()[Lnet/minecraft/util/Unit; net/minecraft/util/Unit/values ()[Lnet/minecraft/util/Unit; +MD: net/minecraft/util/ZeroBitStorage/ ()V net/minecraft/util/ZeroBitStorage/ ()V +MD: net/minecraft/util/ZeroBitStorage/ (I)V net/minecraft/util/ZeroBitStorage/ (I)V +MD: net/minecraft/util/ZeroBitStorage/m_13513_ ()[J net/minecraft/util/ZeroBitStorage/getRaw ()[J +MD: net/minecraft/util/ZeroBitStorage/m_13514_ (I)I net/minecraft/util/ZeroBitStorage/get (I)I +MD: net/minecraft/util/ZeroBitStorage/m_13516_ (II)I net/minecraft/util/ZeroBitStorage/getAndSet (II)I +MD: net/minecraft/util/ZeroBitStorage/m_13519_ (Ljava/util/function/IntConsumer;)V net/minecraft/util/ZeroBitStorage/getAll (Ljava/util/function/IntConsumer;)V +MD: net/minecraft/util/ZeroBitStorage/m_13521_ ()I net/minecraft/util/ZeroBitStorage/getSize ()I +MD: net/minecraft/util/ZeroBitStorage/m_13524_ (II)V net/minecraft/util/ZeroBitStorage/set (II)V +MD: net/minecraft/util/ZeroBitStorage/m_144604_ ()I net/minecraft/util/ZeroBitStorage/getBits ()I +MD: net/minecraft/util/ZeroBitStorage/m_197970_ ([I)V net/minecraft/util/ZeroBitStorage/unpack ([I)V +MD: net/minecraft/util/ZeroBitStorage/m_199833_ ()Lnet/minecraft/util/BitStorage; net/minecraft/util/ZeroBitStorage/copy ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/util/datafix/DataFixTypes/ ()V net/minecraft/util/datafix/DataFixTypes/ ()V +MD: net/minecraft/util/datafix/DataFixTypes/ (Ljava/lang/String;ILcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/DataFixTypes/ (Ljava/lang/String;ILcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/DataFixTypes/m_145042_ ()[Lnet/minecraft/util/datafix/DataFixTypes; net/minecraft/util/datafix/DataFixTypes/$values ()[Lnet/minecraft/util/datafix/DataFixTypes; +MD: net/minecraft/util/datafix/DataFixTypes/m_264080_ (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/DataFixTypes/update (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/DataFixTypes/m_264140_ (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/DataFixTypes/updateToCurrentVersion (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/DataFixTypes/m_264218_ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/util/datafix/DataFixTypes/updateToCurrentVersion (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/util/datafix/DataFixTypes/m_264226_ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;II)Lnet/minecraft/nbt/CompoundTag; net/minecraft/util/datafix/DataFixTypes/update (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;II)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/util/datafix/DataFixTypes/m_264580_ ()I net/minecraft/util/datafix/DataFixTypes/currentVersion ()I +MD: net/minecraft/util/datafix/DataFixTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/DataFixTypes; net/minecraft/util/datafix/DataFixTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/DataFixTypes; +MD: net/minecraft/util/datafix/DataFixTypes/values ()[Lnet/minecraft/util/datafix/DataFixTypes; net/minecraft/util/datafix/DataFixTypes/values ()[Lnet/minecraft/util/datafix/DataFixTypes; +MD: net/minecraft/util/datafix/DataFixers/ ()V net/minecraft/util/datafix/DataFixers/ ()V +MD: net/minecraft/util/datafix/DataFixers/ ()V net/minecraft/util/datafix/DataFixers/ ()V +MD: net/minecraft/util/datafix/DataFixers/m_14512_ ()Lcom/mojang/datafixers/DataFixer; net/minecraft/util/datafix/DataFixers/getDataFixer ()Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/util/datafix/DataFixers/m_14513_ (Lcom/mojang/datafixers/DataFixerBuilder;)V net/minecraft/util/datafix/DataFixers/addFixers (Lcom/mojang/datafixers/DataFixerBuilder;)V +MD: net/minecraft/util/datafix/DataFixers/m_14515_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$2 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_14517_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/function/UnaryOperator; net/minecraft/util/datafix/DataFixers/createRenamer (Ljava/lang/String;Ljava/lang/String;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/util/datafix/DataFixers/m_14524_ (Ljava/util/Map;)Ljava/util/function/UnaryOperator; net/minecraft/util/datafix/DataFixers/createRenamer (Ljava/util/Map;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/util/datafix/DataFixers/m_14530_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_14532_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216515_ (Lcom/google/common/collect/ImmutableMap;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$4 (Lcom/google/common/collect/ImmutableMap;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216518_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/DataFixers/lambda$addFixers$5 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/DataFixers/m_216520_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$createRenamer$9 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216524_ (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$createRenamer$8 (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216527_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/DataFixers/lambda$addFixers$3 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/DataFixers/m_216529_ (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$6 (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_274588_ (Ljava/util/Set;)Lcom/mojang/datafixers/DataFixer; net/minecraft/util/datafix/DataFixers/createFixerUpper (Ljava/util/Set;)Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/util/datafix/DataFixers/m_279902_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$7 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers$1/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V net/minecraft/util/datafix/DataFixers$1/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/DataFixers$1/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/DataFixers$1/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/DataFixers$2/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V net/minecraft/util/datafix/DataFixers$2/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/DataFixers$2/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/DataFixers$2/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/PackedBitStorage/ (II)V net/minecraft/util/datafix/PackedBitStorage/ (II)V +MD: net/minecraft/util/datafix/PackedBitStorage/ (II[J)V net/minecraft/util/datafix/PackedBitStorage/ (II[J)V +MD: net/minecraft/util/datafix/PackedBitStorage/m_14561_ ()[J net/minecraft/util/datafix/PackedBitStorage/getRaw ()[J +MD: net/minecraft/util/datafix/PackedBitStorage/m_14562_ (I)I net/minecraft/util/datafix/PackedBitStorage/get (I)I +MD: net/minecraft/util/datafix/PackedBitStorage/m_14564_ (II)V net/minecraft/util/datafix/PackedBitStorage/set (II)V +MD: net/minecraft/util/datafix/PackedBitStorage/m_14567_ ()I net/minecraft/util/datafix/PackedBitStorage/getBits ()I +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145047_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/updateProjectiles (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145049_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/updateEntity (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145053_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/updatePickup (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145055_ (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/lambda$updateEntity$0 (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_213759_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/processRecords (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216538_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$cap$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216540_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/cap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216542_ (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$processSectionRecords$4 (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216545_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216548_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216550_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/processSection (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216552_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/processSectionRecords (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216554_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$cap$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/fixes/AbstractUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14574_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractUUIDFix/updateNamedChoice (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14578_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDFromML (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14580_ (Lcom/mojang/serialization/Dynamic;JJ)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDTag (Lcom/mojang/serialization/Dynamic;JJ)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14584_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$createUUIDFromString$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14587_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDFromString (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14590_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/replaceUUIDString (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14594_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$replaceUUIDMLTag$2 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14599_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$replaceUUIDLeastMost$3 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14605_ (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$updateNamedChoice$0 (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14608_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/replaceUUIDMLTag (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14612_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$replaceUUIDString$1 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14617_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/replaceUUIDLeastMost (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14621_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDFromLongs (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Z)V net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Z)V +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/m_184814_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/m_184816_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/m_184818_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/fixes/AddNewChoices/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/fixes/AddNewChoices/m_14634_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/AddNewChoices/lambda$cap$1 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/m_14637_ (Ljava/lang/String;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AddNewChoices/cap (Ljava/lang/String;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/m_241757_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AddNewChoices/lambda$cap$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AddNewChoices/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AdvancementsFix/ ()V net/minecraft/util/datafix/fixes/AdvancementsFix/ ()V +MD: net/minecraft/util/datafix/fixes/AdvancementsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/AdvancementsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/AdvancementsFix/m_14647_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/AdvancementsFix/lambda$new$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/AdvancementsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_145062_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_145064_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_145067_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_14656_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AttributesRename/ ()V net/minecraft/util/datafix/fixes/AttributesRename/ ()V +MD: net/minecraft/util/datafix/fixes/AttributesRename/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/AttributesRename/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145071_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$7 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145073_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$3 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145075_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$8 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145077_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145079_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145081_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14672_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AttributesRename/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14675_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AttributesRename/fixItemStackTag (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14677_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/fixName (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14679_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixName$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14683_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AttributesRename/fixEntity (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14685_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$9 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14693_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AttributesRename/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BedItemColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BedItemColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BedItemColorFix/m_14722_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BedItemColorFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BedItemColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BedItemColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BiomeFix/ ()V net/minecraft/util/datafix/fixes/BiomeFix/ ()V +MD: net/minecraft/util/datafix/fixes/BiomeFix/ ()V net/minecraft/util/datafix/fixes/BiomeFix/ ()V +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BitStorageAlignFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145098_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$8 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145101_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$9 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145104_ (Lcom/mojang/serialization/Dynamic;ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$7 (Lcom/mojang/serialization/Dynamic;ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145108_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$3 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145111_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145114_ (Ljava/util/List;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$6 (Ljava/util/List;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145116_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145121_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14737_ (II[J)[J net/minecraft/util/datafix/fixes/BitStorageAlignFix/addPadding (II[J)[J +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14744_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14750_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/updateSections (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14755_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$10 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14762_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/updateHeightmaps (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14764_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14776_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/updateBitStorage (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BitStorageAlignFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/ ()V net/minecraft/util/datafix/fixes/BlendingDataFix/ ()V +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BlendingDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_216562_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_216566_ (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataFix/updateBlendingData (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_240249_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlendingDataFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_240278_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataFix/updateChunkTag (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlendingDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/m_240253_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/m_240285_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/m_240317_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/updateChunkTag (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_145124_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$3 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_145126_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_145128_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_14797_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_14801_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_14807_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/m_14812_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/lambda$fix$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/m_14815_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/lambda$fix$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/m_145130_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/m_14819_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/ ()V net/minecraft/util/datafix/fixes/BlockEntityIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_145134_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_145136_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$makeRule$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_14834_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$makeRule$3 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_14838_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/m_14844_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/lambda$fix$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/m_14852_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/BlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/m_276995_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/m_277018_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/m_277183_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/m_14859_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_276764_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_276919_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/getEmptyTextList (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_277057_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/getTextList (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_277204_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/getEmptyComponent ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ ()V net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ ()V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/m_14868_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/m_14870_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/updateLine (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/ ()V net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/ ()V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14884_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14886_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/lambda$updateSkull$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14889_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/updateSkull (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14891_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/updateConduit (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14893_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/lambda$updateSkull$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_145138_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$1 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_145140_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_145142_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_14903_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$3 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_145144_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_145146_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_14912_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_14914_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/BlockRenameFix/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_14922_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_7384_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFix/fixBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/BlockRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFix$1/m_7384_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFix$1/fixBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145152_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/DSL$TypeReference;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/DSL$TypeReference;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145156_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145158_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145160_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145163_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145167_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/m_7384_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/fixBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockStateData/ ()V net/minecraft/util/datafix/fixes/BlockStateData/ ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/ ()V net/minecraft/util/datafix/fixes/BlockStateData/ ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145179_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap0 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145180_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap1 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145181_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap2 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145182_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap3 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145183_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap4 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145184_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap5 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145185_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap6 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145186_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap7 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145187_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap8 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145188_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap9 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145189_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap10 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145190_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap11 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145191_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap12 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145192_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap13 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145193_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap14 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145194_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap15 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14939_ ()V net/minecraft/util/datafix/fixes/BlockStateData/finalizeMaps ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14940_ (I)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockStateData/upgradeBlock (I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14942_ (ILjava/lang/String;[Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockStateData/register (ILjava/lang/String;[Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14946_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockStateData/upgradeBlockStateTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14948_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/util/datafix/fixes/BlockStateData/lambda$static$1 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14950_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockStateData/upgradeBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14952_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockStateData/getTag (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14954_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/util/datafix/fixes/BlockStateData/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14956_ (Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockStateData/parse (Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/m_15003_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/CatTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/CatTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/CatTypeFix/m_15011_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CatTypeFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CatTypeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/CatTypeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/CauldronRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/m_145198_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/CauldronRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/m_145200_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CauldronRenameFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/CauldronRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V +MD: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184827_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$3 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184833_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/templates/List$ListType;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/cap (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/templates/List$ListType;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184836_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184840_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_274155_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$5 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_274156_ (Lcom/mojang/serialization/Dynamic;IIIIJ)Ljava/util/Map; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$2 (Lcom/mojang/serialization/Dynamic;IIIIJ)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_274157_ (Ljava/util/List;Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$4 (Ljava/util/List;Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/m_145203_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkBiomeFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/m_145205_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkBiomeFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/m_15016_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkBiomeFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/m_216573_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/m_216576_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/m_216578_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284405_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284407_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284479_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284526_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ ()V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184864_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$7 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184865_ (I)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ceillog2 (I)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184874_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$11 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184880_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$10 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184885_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/updateHeightmaps (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184887_ (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/updateCarvingMasks (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184891_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makePalettedContainer (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184894_ (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeBiomeContainer (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184900_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/addPaddingEntries (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184903_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Set;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/predictChunkStatusBeforeSurface (Lcom/mojang/serialization/Dynamic;Ljava/util/Set;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184906_ (Lcom/mojang/serialization/Dynamic;ZILorg/apache/commons/lang3/mutable/MutableBoolean;)[Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/getBiomeContainers (Lcom/mojang/serialization/Dynamic;ZILorg/apache/commons/lang3/mutable/MutableBoolean;)[Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184911_ (Lcom/mojang/serialization/Dynamic;ZZZLjava/util/function/Supplier;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/updateChunkTag (Lcom/mojang/serialization/Dynamic;ZZZLjava/util/function/Supplier;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184917_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$predictChunkStatusBeforeSurface$12 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184920_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/IntSet;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$6 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/IntSet;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184928_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$8 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184937_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$4 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184941_ (ZLjava/util/Set;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$9 (ZLjava/util/Set;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184948_ ([II)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/getOldBiome ([II)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184951_ ([III)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$14 ([III)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184955_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184956_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/getFixedHeightmap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184958_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeOptimizedPalettedContainer (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184961_ ([II)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$16 ([II)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184964_ ([III)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$13 ([III)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184968_ ()Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$0 ()Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184969_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makePalettedContainer (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184971_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184974_ ([II)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$15 ([II)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184979_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$5 (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184981_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196583_ (IILcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$updateCarvingMasks$21 (IILcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196588_ (J)J net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getFixedHeightmap$23 (J)J +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196590_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/shiftUpgradeData (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196592_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/util/List;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/padPaletteEntries (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/util/List;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196596_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeBiomeContainer$24 (Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196599_ (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$18 (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196603_ (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$17 (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196608_ (Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$19 (Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196611_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$updateHeightmaps$22 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196613_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$20 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/m_145207_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/m_145209_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/m_15027_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15061_ (Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;Lcom/mojang/serialization/Dynamic;)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/idFor (Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;Lcom/mojang/serialization/Dynamic;)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15064_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/getName (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15066_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/getProperty (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15069_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$4 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15071_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$6 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15073_ (Ljava/util/Map;ILjava/lang/String;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/addBeds (Ljava/util/Map;ILjava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15077_ (Ljava/util/Map;ILjava/lang/String;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/mapSkull (Ljava/util/Map;ILjava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15082_ (Ljava/util/Map;Ljava/lang/String;I)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/mapDoor (Ljava/util/Map;Ljava/lang/String;I)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15086_ (ZZZZ)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/getSideMask (ZZZZ)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15092_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15094_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$5 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15096_ (Ljava/util/Map;ILjava/lang/String;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/addBanners (Ljava/util/Map;ILjava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15101_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$3 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15104_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$2 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15107_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15110_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ([B)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ([B)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/m_15133_ (I)Z net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/isFirst (I)Z +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/m_15135_ (III)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/get (III)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/m_15139_ (I)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/getPosition (I)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ (Ljava/lang/String;ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection;Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ (Ljava/lang/String;ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection;Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/m_145222_ ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/$values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/m_15156_ ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/getAxisDirection ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/m_15157_ ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/getAxis ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ (Ljava/lang/String;I)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ (Ljava/lang/String;I)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/m_145223_ ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/$values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ (Ljava/lang/String;II)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ (Ljava/lang/String;II)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/m_145224_ ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/$values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/m_15181_ ()I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/getStep ()I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/ (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15196_ ()Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/write ()Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15197_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/getBlock (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15199_ (II)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/addFix (II)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15202_ (ILcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/setBlock (ILcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15207_ (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/lambda$upgrade$1 (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15209_ (I)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/upgrade (I)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15213_ (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/lambda$upgrade$0 (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/ (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_145225_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$2 (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_145227_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$0 (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15223_ ()Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/write ()Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15224_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/getBlock (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15226_ (ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction;)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/relative (ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction;)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15229_ (ILcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/setBlock (ILcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15234_ (Ljava/util/stream/Stream;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$3 (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15236_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/getBlockEntity (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15240_ (Ljava/util/stream/Stream;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$1 (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15242_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/removeBlockEntity (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15244_ (I)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/getSection (I)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ ()V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_184989_ (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$9 (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_184992_ (I)Z net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeTickList$14 (I)Z +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_184994_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$12 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185003_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$11 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185011_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$7 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185019_ (Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$6 (Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185026_ (Lcom/mojang/datafixers/Typed;)Ljava/util/List; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185028_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185031_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/getBlock (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185033_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$10 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185036_ (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;BIILjava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/makeTickList (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;BIILjava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185044_ (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIIILjava/util/function/Function;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/createTick (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIIILjava/util/function/Function;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185052_ (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIILjava/util/function/Function;I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeTickList$15 (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIILjava/util/function/Function;I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185060_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;ILcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$5 (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;ILcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185065_ (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$8 (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185068_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/getLiquid (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185070_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185073_ (Lcom/mojang/serialization/Dynamic;)I net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeTickList$13 (Lcom/mojang/serialization/Dynamic;)I +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185075_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/List; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185077_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/ (Ljava/util/List;[J)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/ (Ljava/util/List;[J)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185089_ ()Ljava/util/List; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/palette ()Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185090_ (III)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/get (III)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185094_ ()[J net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/data ()[J +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185095_ (III)I net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/getIndex (III)I +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkRenamesFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185106_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/appendChunkName (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185108_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/mergeRemainders (Lcom/mojang/datafixers/Typed;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185111_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/renameField (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185115_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/renameFieldHelper (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185127_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199423_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199428_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199430_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$mergeRemainders$4 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199434_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$mergeRemainders$5 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199437_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$renameField$3 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkRenamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/m_145229_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/m_15249_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/ ()V net/minecraft/util/datafix/fixes/ChunkStatusFix2/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkStatusFix2/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/m_145231_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix2/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/m_15260_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix2/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkStatusFix2/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ ()V net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_15280_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274158_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/lambda$fixChildren$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274159_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/lambda$fixChildren$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274160_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274348_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/fixChildren (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_15290_ (III)S net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/packOffsetCoordinates (III)S +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199849_ (I)Lit/unimi/dsi/fastutil/shorts/ShortArrayList; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$3 (I)Lit/unimi/dsi/fastutil/shorts/ShortArrayList; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199855_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/fixChunkData (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199857_ (Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$5 (Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199860_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackBiomes$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199863_ (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/shorts/ShortList;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$6 (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/shorts/ShortList;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199866_ (Lcom/mojang/serialization/Dynamic;Ljava/nio/ByteBuffer;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackBiomes$1 (Lcom/mojang/serialization/Dynamic;Ljava/nio/ByteBuffer;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199869_ (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$7 (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199872_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$4 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199879_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/repackBiomes (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199881_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/repackTicks (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199885_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/m_15319_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/CriteriaRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216589_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216591_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216593_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/fixAdvancements (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216595_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$1 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216598_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216600_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216602_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/CriteriaRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/ ()V net/minecraft/util/datafix/fixes/EffectDurationFix/ ()V +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EffectDurationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267624_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267632_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/updateEntity (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267642_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267655_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267663_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267672_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$fixEffect$3 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267829_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/fixEffect (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EffectDurationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/m_15328_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/ ()V net/minecraft/util/datafix/fixes/EntityBlockStateFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145261_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$7 (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145263_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$8 (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145265_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Unit;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$9 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Unit;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145268_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateBlockToBlockState$11 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145270_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145272_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$6 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15335_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/updateFallingBlock (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15337_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/updateBlockToBlockState (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15342_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/updateEntity (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15346_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15353_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$10 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15359_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateBlockToBlockState$12 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15365_ (Ljava/lang/String;)I net/minecraft/util/datafix/fixes/EntityBlockStateFix/getBlockId (Ljava/lang/String;)I +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15367_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15369_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$5 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15378_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15380_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityBlockStateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_276801_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/renameField (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_276826_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/lambda$renameField$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_276988_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityCatSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityCatSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityCatSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityCatSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ ()V net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityCodSalmonFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/m_145274_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/m_15400_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/m_15407_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/fixTagCustomName (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_145278_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/lambda$cap$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_145279_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/lambda$cap$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_15420_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/lambda$cap$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_15426_ (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/cap (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/m_238369_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/ ()V net/minecraft/util/datafix/fixes/EntityHealthFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityHealthFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/m_15436_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityHealthFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/m_15438_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityHealthFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityHealthFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityHorseSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityHorseSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityHorseSplitFix/m_15449_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityHorseSplitFix/lambda$fix$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityHorseSplitFix/m_6911_ (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityHorseSplitFix/fix (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/ ()V net/minecraft/util/datafix/fixes/EntityIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_145281_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityIdFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_145283_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityIdFix/lambda$makeRule$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_15460_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityIdFix/lambda$makeRule$3 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_15464_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/EntityIdFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/EntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/m_15470_ (B)B net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/direction2dTo3d (B)B +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/m_15474_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ ()V net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_145285_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_145286_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$2 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_145291_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_15482_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_216609_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_216611_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/renameField (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_216615_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/lambda$renameField$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ ()V net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145295_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145297_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145299_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145301_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_15501_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$5 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_15509_ (Lcom/mojang/serialization/Dynamic;ZZ)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/doFix (Lcom/mojang/serialization/Dynamic;ZZ)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_15513_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ ()V net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/m_15529_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/m_15531_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15559_ (JJ)[I net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/createUUIDArray (JJ)[I +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15562_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateProjectiles (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15564_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateEntity (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15568_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateOwnerArrow (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15570_ (Lcom/mojang/serialization/Dynamic;JJ)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/setUUID (Lcom/mojang/serialization/Dynamic;JJ)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15574_ (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/lambda$updateEntity$0 (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15577_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateOwnerLlamaSpit (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15579_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateItemPotion (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15581_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateOwnerThrowable (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ ()V net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ ()V net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ ()V net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_145303_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_145305_ (Ljava/lang/Float;)Z net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$isZeroList$2 (Ljava/lang/Float;)Z +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_15603_ (ILjava/util/List;)Ljava/lang/Boolean; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$isZeroList$3 (ILjava/util/List;)Ljava/lang/Boolean; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_15606_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_15610_ (Lcom/mojang/serialization/OptionalDynamic;I)Z net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/isZeroList (Lcom/mojang/serialization/OptionalDynamic;I)Z +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_15621_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityRenameFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_15630_ (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityRenameFix/getEntity (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_241758_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_6911_ (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityRenameFix/fix (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145312_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145313_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$5 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145321_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$2 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145327_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$3 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145328_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145329_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_15641_ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/cap (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_15647_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$6 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityShulkerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityShulkerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityShulkerColorFix/m_15677_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityShulkerColorFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityShulkerColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityShulkerColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/m_15683_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/m_15685_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Double; net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Double; +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityStringUuidFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/m_145330_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityStringUuidFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/m_15696_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityStringUuidFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityStringUuidFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ ()V net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityTheRenameningFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityTippedArrowFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityTippedArrowFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityTippedArrowFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityTippedArrowFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/ ()V net/minecraft/util/datafix/fixes/EntityUUIDFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145333_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$11 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145336_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$12 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145338_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$10 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145340_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145342_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145344_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145346_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145348_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15724_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15726_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateProjectile$14 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15729_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateLivingEntity (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15731_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$13 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15734_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateEntityUUID (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15739_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updatePiglin (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15741_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$8 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15744_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateEvokerFangs (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15746_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$7 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15749_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateZombieVillager (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15751_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateAreaEffectCloud (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15753_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateShulkerBullet (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15755_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateItem (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15757_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateFox (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15759_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateHurtBy (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15761_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateAnimalOwner (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15763_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateAnimal (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15766_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateMob (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15768_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateProjectile (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15774_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateMob$9 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15780_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/IntFunction;)V net/minecraft/util/datafix/fixes/EntityVariantFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/IntFunction;)V +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216631_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$fix$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216633_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/Number;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$fix$3 (Lcom/mojang/serialization/Dynamic;Ljava/lang/Number;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216636_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/updateAndRename (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216641_ (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$updateAndRename$2 (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216647_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$updateAndRename$1 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216653_ (Ljava/util/function/Function;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$updateAndRename$0 (Ljava/util/function/Function;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216657_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$fix$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityVariantFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityWolfColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/m_15793_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityWolfColorFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/m_15795_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityWolfColorFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityWolfColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityZombieSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityZombieSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityZombieSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityZombieSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ ()V net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/m_15808_ (I)I net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/getVillagerProfession (I)I +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/m_15812_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ ()V net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Set;)V net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Set;)V +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_276796_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_276829_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$fixTag$3 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_276899_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$fixTag$1 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_277022_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$fixTag$2 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_277036_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/FilteredBooksFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/FilteredBooksFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/FilteredBooksFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FilteredBooksFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FilteredBooksFix/m_216663_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/FilteredBooksFix/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/FilteredSignsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/FilteredSignsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/FilteredSignsFix/m_216669_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FilteredSignsFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FilteredSignsFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FilteredSignsFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ForcePoiRebuild/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_145351_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$cap$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_145353_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_145355_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$cap$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_15825_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ForcePoiRebuild/cap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_15827_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_15831_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$cap$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ForcePoiRebuild/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/FurnaceRecipeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145357_ (Ljava/util/List;ILcom/mojang/datafixers/util/Pair;)V net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$updateFurnaceContents$4 (Ljava/util/List;ILcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145361_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$2 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145365_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145369_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$0 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15839_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15849_ (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/cap (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15851_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/updateFurnaceContents (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15855_ (Lcom/mojang/datafixers/types/Type;Ljava/util/List;ILcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$updateFurnaceContents$5 (Lcom/mojang/datafixers/types/Type;Ljava/util/List;ILcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/ ()V net/minecraft/util/datafix/fixes/GoatHornIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/GoatHornIdFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GoatHornIdFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/m_216677_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/GoatHornIdFix/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/GossipUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_145373_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$1 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_145375_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_145377_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_15882_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/GossipUUIDFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/HeightmapRenamingFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/m_145379_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/m_15893_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/m_15898_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_145381_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$removeIglooPieces$2 (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15904_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15906_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$removeIglooPieces$3 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15908_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/removeIglooPieces (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15910_ (Ljava/util/stream/Stream;)Ljava/lang/Boolean; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$fixTag$1 (Ljava/util/stream/Stream;)Ljava/lang/Boolean; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15912_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/isIglooPiece (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_274161_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemBannerColorFix/m_15920_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemBannerColorFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemBannerColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemBannerColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/m_145383_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/m_15929_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/m_15934_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/ ()V net/minecraft/util/datafix/fixes/ItemIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_145385_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$3 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_145387_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_145389_ (Ljava/lang/Integer;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$1 (Ljava/lang/Integer;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_15942_ (I)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemIdFix/getItem (I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_15944_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_15952_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/ItemIdFix/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemLoreFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145391_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145393_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145395_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145397_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15960_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15965_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$fixLoreList$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15967_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemLoreFix/fixLoreEntry (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15969_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemLoreFix/fixLoreList (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemLoreFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/ ()V net/minecraft/util/datafix/fixes/ItemPotionFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/m_15992_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemPotionFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/m_15996_ ([Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ItemPotionFix/lambda$static$0 ([Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/util/Set;)V net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/util/Set;)V +MD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/m_242604_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ItemRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_145401_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_16003_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/ItemRenameFix/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_16009_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ItemRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_7348_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemRenameFix/fixItem (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/ItemRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/ItemRenameFix$1/m_7348_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemRenameFix$1/fixItem (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ ()V net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/m_16025_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ ()V net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145403_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$5 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145404_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145407_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$4 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145412_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145415_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_16037_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$6 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_16053_ ([Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$static$0 ([Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ ()V net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145418_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145420_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$6 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145422_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145424_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16067_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16072_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16074_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16078_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$7 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16080_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$4 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackMapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemStackMapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemStackMapIdFix/m_16090_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackMapIdFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackMapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackMapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ ()V net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;)V net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/m_16100_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/m_260784_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V net/minecraft/util/datafix/fixes/ItemStackTagFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackTagFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/m_216685_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackTagFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/m_216689_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackTagFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ ()V net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16116_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16120_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/lambda$static$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16122_ (Ljava/lang/String;I)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/updateItem (Ljava/lang/String;I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16125_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ItemStackUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145426_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145430_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145434_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Boolean; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Boolean; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145436_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$updateAttributeModifiers$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16130_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16143_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$updateAttributeModifiers$5 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16146_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/updateAttributeModifiers (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16148_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/updateSkullOwner (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16150_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$updateSkullOwner$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemWaterPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemWaterPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemWaterPotionFix/m_16158_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemWaterPotionFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemWaterPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemWaterPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_145438_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_145440_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$fixTag$1 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_145442_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_16166_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_16171_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_16173_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$fixTag$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/JigsawPropertiesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/JigsawPropertiesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/JigsawPropertiesFix/m_16186_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/JigsawPropertiesFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/JigsawPropertiesFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/JigsawPropertiesFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/ ()V net/minecraft/util/datafix/fixes/JigsawRotationFix/ ()V +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/JigsawRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/m_16193_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/JigsawRotationFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/m_16195_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/JigsawRotationFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/m_16197_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/JigsawRotationFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/JigsawRotationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LeavesFix/ ()V net/minecraft/util/datafix/fixes/LeavesFix/ ()V +MD: net/minecraft/util/datafix/fixes/LeavesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/LeavesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145456_ (Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$2 (Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145458_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$6 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145462_ (Lcom/mojang/datafixers/OpticFinder;[ILcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;[ILcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145466_ (Lcom/mojang/datafixers/Typed;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145468_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$3 (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145471_ ([ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$5 ([ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16208_ (I)I net/minecraft/util/datafix/fixes/LeavesFix/getX (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16210_ (III)I net/minecraft/util/datafix/fixes/LeavesFix/getIndex (III)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16216_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$7 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16234_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/util/datafix/fixes/LeavesFix/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16236_ (ZZZZ)I net/minecraft/util/datafix/fixes/LeavesFix/getSideMask (ZZZZ)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16245_ (I)I net/minecraft/util/datafix/fixes/LeavesFix/getY (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16247_ (I)I net/minecraft/util/datafix/fixes/LeavesFix/getZ (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LeavesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16257_ (I)Z net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/isLog (I)Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16259_ (III)V net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/setDistance (III)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16271_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;ZI)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/makeLeafTag (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;ZI)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16276_ (I)Z net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/isLeaf (I)Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16278_ (I)I net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/getDistance (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_7969_ ()Z net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/skippable ()Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LeavesFix$Section/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16288_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix$Section/write (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16290_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/LeavesFix$Section/readStorage (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16292_ (Ljava/lang/String;ZI)I net/minecraft/util/datafix/fixes/LeavesFix$Section/getStateId (Ljava/lang/String;ZI)I +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16296_ (Ljava/util/List;)Ljava/util/List; net/minecraft/util/datafix/fixes/LeavesFix$Section/lambda$new$0 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16298_ ()Z net/minecraft/util/datafix/fixes/LeavesFix$Section/isSkippable ()Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16299_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LeavesFix$Section/lambda$write$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16301_ ()I net/minecraft/util/datafix/fixes/LeavesFix$Section/getIndex ()I +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16302_ (I)I net/minecraft/util/datafix/fixes/LeavesFix$Section/getBlock (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16304_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LeavesFix$Section/lambda$write$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_7969_ ()Z net/minecraft/util/datafix/fixes/LeavesFix$Section/skippable ()Z +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LegacyDragonFightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/m_289720_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LegacyDragonFightFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/m_289728_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LegacyDragonFightFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LegacyDragonFightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ ()V net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ ()V +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_145481_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$makeRule$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_145482_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_145485_ (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$convert$5 (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16312_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16318_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$convert$4 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16321_ (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$convert$6 (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16324_ (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/getLayerInfoFromString (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16326_ (Ljava/lang/String;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/convert (Ljava/lang/String;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16329_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16334_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/getLayersInfoFromString (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ ()V net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ ()V +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16346_ (Lcom/google/common/base/Splitter;ILjava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/lambda$fixString$2 (Lcom/google/common/base/Splitter;ILjava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16350_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16352_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16354_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/fixString (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16356_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/lambda$fix$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/ ()V net/minecraft/util/datafix/fixes/LevelUUIDFix/ ()V +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LevelUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145490_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$11 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145492_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$9 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145495_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145497_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$5 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145499_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$10 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145501_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$8 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145503_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$7 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145505_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145507_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145509_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16361_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16372_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/updateWanderingTrader (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16374_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/updateDragonFight (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16376_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/updateCustomBossEvents (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16378_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$12 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16386_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LevelUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/MapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/MapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/MapIdFix/m_145511_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MapIdFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MapIdFix/m_16398_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MapIdFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/MapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16409_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/updateMemoryEntry (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16411_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16413_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/updateBrain (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16415_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/updateMemories (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16417_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/wrapMemoryValue (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/MissingDimensionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_145513_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MissingDimensionFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_145518_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MissingDimensionFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16422_ (Lcom/mojang/datafixers/FieldFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MissingDimensionFix/lambda$makeRule$2 (Lcom/mojang/datafixers/FieldFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16436_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MissingDimensionFix/recreateSettings (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16438_ (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/fields (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16441_ (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/optionalFields (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16446_ (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/optionalFields (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_185130_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/flatType (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/MissingDimensionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/m_16453_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/m_16456_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/m_16458_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/NamedEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/m_16470_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NamedEntityFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NamedEntityFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NamedEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/m_276795_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/m_277048_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/NewVillageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145522_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$9 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145527_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$8 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145531_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145534_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145536_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$12 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145538_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$5 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145541_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145543_ (Ljava/util/List;)Ljava/util/List; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$3 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145545_ (Lcom/mojang/datafixers/util/Pair;)Z net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$0 (Lcom/mojang/datafixers/util/Pair;)Z +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145547_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$11 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145549_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$7 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145551_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_16478_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$10 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_16496_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$13 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_16498_ (Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NewVillageFix/cap (Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NewVillageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_145555_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_145557_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_145560_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_181038_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/m_181040_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/m_262778_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/m_262826_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/getRenderType (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/m_16552_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OminousBannerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OminousBannerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OminousBannerRenameFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OminousBannerRenameFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OminousBannerRenameFix/m_216697_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/OminousBannerRenameFix/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/m_264351_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/m_264368_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_145566_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_145568_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_16609_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_16616_ (Ljava/lang/String;)D net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/calculateBackground (Ljava/lang/String;)D +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263452_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/updateValue (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263463_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263472_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263474_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsForceVBOFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/m_145571_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsForceVBOFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/m_16622_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsForceVBOFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsForceVBOFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ ()V net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ ()V +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_145574_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_145576_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_145579_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$1 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_16632_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_16639_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_145581_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_145583_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_145586_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_16647_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/m_145589_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/m_16661_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_245414_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/lambda$fixList$2 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_245596_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/fixList (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_246725_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_247308_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/m_145591_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/m_145593_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/m_16675_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OverreachingTickFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207655_ (IILcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/OverreachingTickFix/lambda$extractOverreachingTicks$2 (IILcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207659_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OverreachingTickFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207662_ (Lcom/mojang/serialization/Dynamic;IILjava/util/Optional;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OverreachingTickFix/extractOverreachingTicks (Lcom/mojang/serialization/Dynamic;IILjava/util/Optional;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207668_ (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OverreachingTickFix/lambda$makeRule$0 (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OverreachingTickFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/PlayerUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_145596_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_145598_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_145600_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_16685_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/PlayerUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V +MD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/m_213759_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/processRecords (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/m_216704_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/shouldKeepRecord (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/PoiTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/m_213759_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/PoiTypeRenameFix/processRecords (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/m_216713_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PoiTypeRenameFix/lambda$processRecords$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/m_216717_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PoiTypeRenameFix/lambda$processRecords$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RecipesFix/ ()V net/minecraft/util/datafix/fixes/RecipesFix/ ()V +MD: net/minecraft/util/datafix/fixes/RecipesFix/ ()V net/minecraft/util/datafix/fixes/RecipesFix/ ()V +MD: net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V +MD: net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145616_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$4 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145619_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$3 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145622_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$2 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145625_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$1 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16750_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16752_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/updateRedstoneConnections (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16754_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/isConnected (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16759_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/References/ ()V net/minecraft/util/datafix/fixes/References/ ()V +MD: net/minecraft/util/datafix/fixes/References/ ()V net/minecraft/util/datafix/fixes/References/ ()V +MD: net/minecraft/util/datafix/fixes/References/m_145630_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$25 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16797_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$24 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16798_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$23 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16799_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$22 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16800_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$21 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16801_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$20 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16802_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$19 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16803_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$18 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16804_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$17 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16805_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$16 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16806_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$15 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16807_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$14 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16808_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$13 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16809_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$12 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16810_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$11 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16811_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$10 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16812_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$8 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16813_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$7 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16814_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$6 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16815_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$5 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16816_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$4 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16817_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$3 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16818_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$27 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16819_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$2 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16820_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$1 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16821_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_216720_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$26 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_276734_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$9 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/RemapChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_280033_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_280232_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_280394_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/fixStatus (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_284011_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_145631_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/lambda$fixValue$0 (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_16827_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/fixValue (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_16829_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/lambda$fixValue$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V +MD: net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V +MD: net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V +MD: net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ReorganizePoi/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/m_145639_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ReorganizePoi/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/m_16857_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ReorganizePoi/cap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/m_16859_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ReorganizePoi/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ReorganizePoi/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ ()V net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ ()V +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145647_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/fixFeature (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145649_ (Lcom/mojang/serialization/Dynamic;[Ljava/lang/String;)Lcom/mojang/serialization/OptionalDynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/get (Lcom/mojang/serialization/Dynamic;[Ljava/lang/String;)Lcom/mojang/serialization/OptionalDynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145652_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/getReplacement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145660_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/updateChildren (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145662_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145664_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/updateChildren (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145666_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/lambda$updateChildren$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145668_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/lambda$updateChildren$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_274162_ (I)Ljava/lang/String; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/lambda$get$2 (I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ ()V net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ ()V +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145671_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$6 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145673_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145675_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145677_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145679_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145681_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145683_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_16864_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$7 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/m_6911_ (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/fix (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_145685_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_145693_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_16918_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$2 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_16928_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$4 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_241759_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/SpawnerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185134_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185140_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/wrapEntityToSpawnData (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185143_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$wrapSpawnPotentialsToWeightedEntries$3 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185146_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/wrapSpawnPotentialsToWeightedEntries (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185149_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185152_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SpawnerDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/ ()V net/minecraft/util/datafix/fixes/StatsCounterFix/ ()V +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/StatsCounterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_145698_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/StatsCounterFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_145699_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StatsCounterFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_16942_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsCounterFix/lambda$makeRule$2 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_16948_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsCounterFix/upgradeItem (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_16950_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsCounterFix/upgradeBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsCounterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/StatsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181042_ ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsRenameFix/createCriteriaRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181043_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$8 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181048_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$7 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181052_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$6 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181055_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$5 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181057_ ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsRenameFix/createStatRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181058_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181063_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181067_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181070_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181072_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StriderGravityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/StriderGravityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/StriderGravityFix/m_16958_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StriderGravityFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StriderGravityFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StriderGravityFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/StructureReferenceCountFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_145723_ (Ljava/lang/Integer;)Z net/minecraft/util/datafix/fixes/StructureReferenceCountFix/lambda$setCountToAtLeastOne$1 (Ljava/lang/Integer;)Z +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_16963_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_16965_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/setCountToAtLeastOne (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_16969_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/lambda$setCountToAtLeastOne$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204001_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204004_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/fixDimension (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204006_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/fixStructures (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204008_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixStructures$5 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204011_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixStructures$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204014_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204017_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixDimension$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204019_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixDimension$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_207672_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixStructures$6 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ ()V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ ()V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207680_ (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$guessConfiguration$9 (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207684_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateStart (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207687_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateReference$7 (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207691_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207693_ (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/guessConfiguration (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207696_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateReferences$6 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207699_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateStarts (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207702_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateReferences$5 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207706_ (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$guessConfiguration$8 (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207710_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateReference (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207713_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateStarts$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207716_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateReferences (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207719_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateStarts$3 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207723_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/findUpdatedStructureType (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207726_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$fix$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207729_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$fix$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207732_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/ (Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/ (Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/equals (Ljava/lang/Object;)Z net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207736_ ()Ljava/util/Map; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/biomeMapping ()Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207737_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/fallback ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/hashCode ()I net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/hashCode ()I +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207742_ (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/util/Map$Entry;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/lambda$unpack$0 (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/util/Map$Entry;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207746_ (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/trivial (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207748_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/unpack (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207750_ (Ljava/util/Map;Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/biomeMapped (Ljava/util/Map;Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/toString ()Ljava/lang/String; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/toString ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/TeamDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145725_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145727_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145729_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145732_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_17010_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$4 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ ()V net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ ()V +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145736_ (IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$2 (IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145742_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145747_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145753_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$1 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145755_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_17026_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$5 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/m_17053_ (I)Z net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/isTrappedChest (I)Z +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/m_7969_ ()Z net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/skippable ()Z +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/VariantRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_216749_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VariantRenameFix/lambda$fix$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_216751_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VariantRenameFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_216754_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VariantRenameFix/lambda$fix$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VariantRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/VillagerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/VillagerDataFix/m_17058_ (II)Ljava/lang/String; net/minecraft/util/datafix/fixes/VillagerDataFix/upgradeData (II)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/VillagerDataFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerDataFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_145759_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/lambda$fixValue$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_17067_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/fixValue (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_17069_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/lambda$fixValue$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ ()V net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ ()V +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145762_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145767_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145770_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145773_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$addLevel$4 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17079_ (I)I net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/getMinXpPerLevel (I)I +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17081_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$addXpFromLevel$6 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17092_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17099_ (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/addLevel (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17102_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$addLevel$5 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17108_ (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/addXpFromLevel (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/VillagerTradeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_145776_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_145783_ (Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$1 (Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_145789_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$updateItemStack$4 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17118_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17133_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/updateItemStack (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17144_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$updateItemStack$5 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17148_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/ ()V net/minecraft/util/datafix/fixes/WallPropertyFix/ ()V +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/WallPropertyFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17156_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WallPropertyFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17158_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/upgradeBlockStateTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17160_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/fixWallProperty (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17163_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/WallPropertyFix/mapProperty (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17165_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/lambda$upgradeBlockStateTag$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17167_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/lambda$fixWallProperty$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WallPropertyFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/m_203115_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185158_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185161_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185163_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185165_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185168_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$1 (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ ()V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ ()V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_145800_ (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$7 (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_145809_ (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$8 (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_145817_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$9 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17174_ (JLcom/mojang/serialization/DynamicLike;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/noise (JLcom/mojang/serialization/DynamicLike;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17179_ (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$6 (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17183_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17185_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17187_ (Lcom/mojang/serialization/Dynamic;J)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/defaultOverworld (Lcom/mojang/serialization/Dynamic;J)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17190_ (Lcom/mojang/serialization/Dynamic;JLcom/mojang/serialization/Dynamic;Z)Ljava/lang/Object; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/vanillaLevels (Lcom/mojang/serialization/Dynamic;JLcom/mojang/serialization/Dynamic;Z)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17195_ (Lcom/mojang/serialization/Dynamic;JZZ)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/vanillaBiomeSource (Lcom/mojang/serialization/Dynamic;JZZ)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17217_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/OptionalDynamic;)Ljava/util/Map; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/fixFlatStructures (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/OptionalDynamic;)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17220_ (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$12 (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17223_ (Lcom/mojang/serialization/OptionalDynamic;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$11 (Lcom/mojang/serialization/OptionalDynamic;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17226_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17228_ (Ljava/lang/String;I)I net/minecraft/util/datafix/fixes/WorldGenSettingsFix/getInt (Ljava/lang/String;I)I +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17231_ (Ljava/lang/String;II)I net/minecraft/util/datafix/fixes/WorldGenSettingsFix/getInt (Ljava/lang/String;II)I +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17235_ (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;I)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/setSpacing (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;I)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17240_ (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$2 (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17251_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$10 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17258_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$5 (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17260_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17262_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ ()V net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ ()V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ (III)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ (III)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_145825_ (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$2 (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_145827_ (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$1 (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_145829_ (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$0 (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_17276_ (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/serialize (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_17278_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185175_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$7 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185176_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$9 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185180_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/updateLayers (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185182_ (ZLorg/apache/commons/lang3/mutable/MutableBoolean;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$2 (ZLorg/apache/commons/lang3/mutable/MutableBoolean;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185186_ (ZZLcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$8 (ZZLcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185191_ (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$6 (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185195_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185196_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185198_ (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$5 (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185202_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185204_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WriteAndReadFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/fixes/WriteAndReadFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/fixes/WriteAndReadFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WriteAndReadFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/m_17302_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/ ()V net/minecraft/util/datafix/schemas/NamespacedSchema/ ()V +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/NamespacedSchema/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/schemas/NamespacedSchema/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/m_17310_ ()Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/schemas/NamespacedSchema/namespacedString ()Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/m_17311_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/schemas/NamespacedSchema/ensureNamespaced (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/ ()V net/minecraft/util/datafix/schemas/NamespacedSchema$1/ ()V +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/read (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/schemas/NamespacedSchema$1/read (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/toString ()Ljava/lang/String; net/minecraft/util/datafix/schemas/NamespacedSchema$1/toString ()Ljava/lang/String; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V100/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V100/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V100/m_17330_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/equipment (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17332_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17335_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V100/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V100/m_17339_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17341_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17344_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17346_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V100/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V100/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V102/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V102/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V102/m_17358_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V102/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V102/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V102/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1022/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1022/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1022/m_17367_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1022/lambda$registerTypes$0 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1022/m_17368_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1022/lambda$registerTypes$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1022/m_17370_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1022/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1022/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1022/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V106/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V106/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V106/m_17379_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V106/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V106/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V106/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V107/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V107/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V107/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V107/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1125/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1125/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1125/m_17393_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1125/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1125/m_17395_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1125/lambda$registerTypes$2 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1125/m_17396_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1125/lambda$registerTypes$1 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1125/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1125/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1125/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1125/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V135/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V135/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V135/m_17406_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V135/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V135/m_17408_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V135/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V135/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V135/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V143/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V143/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V143/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V143/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451/m_17422_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_1/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_1/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_1/m_17429_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_1/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_1/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1451_1/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1451_2/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_2/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_2/m_17438_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_2/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_2/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_2/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_3/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_3/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17446_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17448_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17451_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17453_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17455_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17457_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17459_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17461_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17463_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17465_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17467_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17469_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_3/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_4/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_4/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_4/m_17521_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_4/lambda$registerTypes$0 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_4/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1451_4/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1451_5/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_5/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_5/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_5/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_6/ ()V net/minecraft/util/datafix/schemas/V1451_6/ ()V +MD: net/minecraft/util/datafix/schemas/V1451_6/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_6/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_6/m_17534_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_17536_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181077_ (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_6/createCriterionTypes (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181079_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$registerTypes$2 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181081_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$7 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181082_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181084_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$6 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181085_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181087_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1451_6/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1451_6$1/ ()V net/minecraft/util/datafix/schemas/V1451_6$1/ ()V +MD: net/minecraft/util/datafix/schemas/V1451_6$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V1451_6$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V1451_6$1/m_181090_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V1451_6$1/lambda$apply$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V1451_6$1/m_181093_ (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/schemas/V1451_6$1/lambda$apply$0 (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/ ()V net/minecraft/util/datafix/schemas/V1451_6$2/ ()V +MD: net/minecraft/util/datafix/schemas/V1451_6$2/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V1451_6$2/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/m_181099_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V1451_6$2/lambda$apply$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/m_181102_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/schemas/V1451_6$2/packWithDot (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/m_181107_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/schemas/V1451_6$2/lambda$apply$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/schemas/V1460/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1460/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1460/m_17555_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$42 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17557_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerBlockEntities$26 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17560_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1460/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1460/m_17564_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$39 (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17567_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$32 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17569_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$44 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17572_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerBlockEntities$25 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17575_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1460/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1460/m_17579_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$30 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17584_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerBlockEntities$24 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17587_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$37 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17588_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$40 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17590_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$23 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17593_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$36 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17594_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$38 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17596_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$22 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17599_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$27 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17600_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$35 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17602_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$21 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17605_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$34 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17607_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$20 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17610_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$33 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17612_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$19 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17615_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$31 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17617_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$18 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17620_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$29 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17622_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$17 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17625_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$28 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17627_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$16 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17630_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerInventory$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17632_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$15 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17635_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17637_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$14 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17640_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$13 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17643_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$12 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17646_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17649_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17652_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17663_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17666_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17669_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17672_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17675_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17678_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17681_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181110_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$46 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181112_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$41 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181114_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$45 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181115_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$43 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1460/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1460/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1460/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1460/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1460/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1466/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1466/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1466/m_17689_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1466/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1466/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1466/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1466/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1466/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1470/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1470/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1470/m_17700_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1470/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1470/m_17702_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1470/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1470/m_17705_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1470/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1470/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1470/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1481/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1481/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1481/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1481/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1483/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1483/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1483/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1483/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1486/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1486/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1486/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1486/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1510/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1510/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1510/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1510/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1800/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1800/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1800/m_17734_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1800/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1800/m_17736_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1800/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1800/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1800/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1801/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1801/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1801/m_17748_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1801/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1801/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1801/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1904/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1904/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1904/m_17759_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1904/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1904/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1904/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1906/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1906/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1906/m_17770_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1906/lambda$registerInventory$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1906/m_17772_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1906/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1906/m_17775_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1906/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1906/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1906/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1909/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1909/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1909/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1909/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1920/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1920/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1920/m_17789_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1920/lambda$registerInventory$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1920/m_17791_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1920/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1920/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1920/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1928/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1928/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1928/m_17800_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1928/equipment (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1928/m_17802_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1928/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1928/m_17806_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1928/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1928/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1928/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1929/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1929/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1929/m_17813_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1929/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1929/m_17816_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1929/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1929/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1929/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1931/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1931/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1931/m_17824_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1931/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1931/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1931/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2100/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2100/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2100/m_17835_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2100/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2100/m_17837_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V2100/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V2100/m_17841_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2100/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2100/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2100/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2501/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2501/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2501/m_17850_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2501/lambda$registerFurnace$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2501/m_17852_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V2501/registerFurnace (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V2501/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2501/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2502/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2502/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2502/m_17861_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2502/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2502/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2502/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2505/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2505/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2505/m_17872_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2505/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2505/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2505/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2509/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2509/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2509/m_17883_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2509/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2509/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2509/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2519/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2519/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2519/m_17894_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2519/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2519/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2519/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2522/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2522/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2522/m_17935_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2522/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2522/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2522/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2551/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2551/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2551/m_145834_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145836_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145838_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145840_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145842_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_17946_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2551/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2568/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2568/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2568/m_17965_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2568/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2568/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2568/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2571/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2571/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2571/m_145847_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2571/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2571/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2571/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2684/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2684/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2684/m_216756_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2684/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2684/m_216758_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2684/lambda$registerTypes$0 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2684/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2684/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2684/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2684/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2686/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2686/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2686/m_145863_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2686/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2686/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2686/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2688/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2688/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2688/m_145874_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2688/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2688/m_263974_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2688/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2688/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2688/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2704/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2704/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2704/m_145885_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2704/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2704/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2704/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2707/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2707/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2707/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2707/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2831/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2831/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2831/m_185210_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2831/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2831/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2831/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2832/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2832/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2832/m_185219_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$7 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185221_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$6 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185223_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185227_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185229_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185231_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_276735_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_276736_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$1 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2832/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2842/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2842/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2842/m_185240_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2842/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2842/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2842/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V3076/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3076/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3076/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3076/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3078/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3078/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3078/m_216771_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3078/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3078/m_216773_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V3078/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V3078/m_216777_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3078/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3078/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3078/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3078/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3078/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3081/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3081/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3081/m_263975_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3081/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3081/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3081/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3082/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3082/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3082/m_216799_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3082/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3082/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3082/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3083/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3083/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3083/m_216807_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3083/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3083/m_216809_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V3083/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V3083/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3083/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3202/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3202/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3202/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3202/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3203/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3203/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3203/m_264622_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3203/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3203/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3203/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3204/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3204/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3204/m_264581_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3204/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3204/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3204/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3325/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3325/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3325/m_269107_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3325/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3325/m_269160_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3325/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3325/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3325/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3326/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3326/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3326/m_271879_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3326/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3326/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3326/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3327/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3327/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3327/m_271945_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3327/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3327/m_272152_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3327/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3327/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3327/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3328/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3328/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3328/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3328/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3438/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3438/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3438/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3438/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3448/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3448/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3448/m_280566_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3448/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3448/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3448/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V501/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V501/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V501/m_17976_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V501/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V501/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V501/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V700/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V700/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V700/m_17987_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V700/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V700/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V700/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V701/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V701/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V701/m_17998_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V701/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V701/m_18000_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V701/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V701/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V701/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V702/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V702/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V702/m_18009_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V702/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V702/m_18011_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V702/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V702/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V702/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V703/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V703/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V703/m_18020_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18022_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18024_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18026_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18028_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V703/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V704/ ()V net/minecraft/util/datafix/schemas/V704/ ()V +MD: net/minecraft/util/datafix/schemas/V704/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V704/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V704/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/schemas/V704/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/schemas/V704/m_18038_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18040_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerBlockEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18043_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V704/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V704/m_18049_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerTypes$4 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18051_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerInventory$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18053_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerBlockEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18056_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_279903_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/util/datafix/schemas/V704/lambda$static$6 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/util/datafix/schemas/V704/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V704/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V704/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V704/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V704$1/ ()V net/minecraft/util/datafix/schemas/V704$1/ ()V +MD: net/minecraft/util/datafix/schemas/V704$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V704$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V705/ ()V net/minecraft/util/datafix/schemas/V705/ ()V +MD: net/minecraft/util/datafix/schemas/V705/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V705/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V705/m_18077_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerTypes$25 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18079_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$23 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18082_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V705/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V705/m_18086_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerTypes$24 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18088_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerThrowableProjectile$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18090_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$22 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18093_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V705/registerThrowableProjectile (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V705/m_18097_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18099_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$21 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18102_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$20 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18105_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$19 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18108_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$18 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18111_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$17 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18114_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$16 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18117_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$15 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18120_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$14 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18123_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$13 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18126_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$12 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18129_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18132_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18135_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18138_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18141_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18144_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18153_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18156_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18159_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18162_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V705/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V705/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V705/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V705$1/ ()V net/minecraft/util/datafix/schemas/V705$1/ ()V +MD: net/minecraft/util/datafix/schemas/V705$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V705$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V808/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V808/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V808/m_18172_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V808/lambda$registerInventory$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V808/m_18174_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V808/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V808/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V808/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V99/ ()V net/minecraft/util/datafix/schemas/V99/ ()V +MD: net/minecraft/util/datafix/schemas/V99/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V99/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V99/m_145905_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V99/lambda$addNames$35 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V99/m_145909_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V99/lambda$addNames$34 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V99/m_145913_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V99/lambda$addNames$36 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V99/m_145918_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/schemas/V99/lambda$static$33 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/schemas/V99/m_145920_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$32 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18188_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/equipment (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18190_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerBlockEntities$21 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18193_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18205_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V99/addNames (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V99/m_18216_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$27 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18218_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$30 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18219_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$31 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18221_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerBlockEntities$20 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18224_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerThrowableProjectile (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18228_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$24 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18230_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$29 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18231_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$28 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18233_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerBlockEntities$19 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18236_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerMinecart (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18240_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$26 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18241_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$25 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18243_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$18 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18246_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18250_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$23 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18252_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$17 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18255_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$22 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18257_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$16 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18260_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$14 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18262_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$15 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18265_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$12 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18267_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$13 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18270_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerInventory$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18272_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18275_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerMinecart$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18277_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18280_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerThrowableProjectile$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18282_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18285_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18287_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18290_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18293_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18296_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18299_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V99/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V99/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V99/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V99/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V99/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V99$1/ ()V net/minecraft/util/datafix/schemas/V99$1/ ()V +MD: net/minecraft/util/datafix/schemas/V99$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V99$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/eventlog/EventLogDirectory/ ()V net/minecraft/util/eventlog/EventLogDirectory/ ()V +MD: net/minecraft/util/eventlog/EventLogDirectory/ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/util/eventlog/EventLogDirectory/ (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/util/eventlog/EventLogDirectory/m_260828_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/util/eventlog/EventLogDirectory/tryCompress (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/util/eventlog/EventLogDirectory/m_260829_ (Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/EventLogDirectory$File; net/minecraft/util/eventlog/EventLogDirectory/parseFile (Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/EventLogDirectory$File; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_260952_ (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory; net/minecraft/util/eventlog/EventLogDirectory/open (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261046_ (Ljava/time/LocalDate;)Lnet/minecraft/util/eventlog/EventLogDirectory$RawFile; net/minecraft/util/eventlog/EventLogDirectory/createNewFile (Ljava/time/LocalDate;)Lnet/minecraft/util/eventlog/EventLogDirectory$RawFile; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261134_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; net/minecraft/util/eventlog/EventLogDirectory/listFiles ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261201_ (Ljava/nio/channels/ReadableByteChannel;Ljava/nio/file/Path;)V net/minecraft/util/eventlog/EventLogDirectory/writeCompressed (Ljava/nio/channels/ReadableByteChannel;Ljava/nio/file/Path;)V +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261272_ (Ljava/nio/file/Path;)Z net/minecraft/util/eventlog/EventLogDirectory/lambda$listFiles$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/equals (Ljava/lang/Object;)Z net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/hashCode ()I net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/hashCode ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_260796_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/id ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_260857_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/compress ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_261064_ ()Ljava/io/Reader; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/openReader ()Ljava/io/Reader; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_261161_ ()Ljava/nio/file/Path; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/path ()Ljava/nio/file/Path; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/toString ()Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/toString ()Ljava/lang/String; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_260796_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$File/id ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_260857_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; net/minecraft/util/eventlog/EventLogDirectory$File/compress ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_261064_ ()Ljava/io/Reader; net/minecraft/util/eventlog/EventLogDirectory$File/openReader ()Ljava/io/Reader; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_261161_ ()Ljava/nio/file/Path; net/minecraft/util/eventlog/EventLogDirectory$File/path ()Ljava/nio/file/Path; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/ ()V net/minecraft/util/eventlog/EventLogDirectory$FileId/ ()V +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/ (Ljava/time/LocalDate;I)V net/minecraft/util/eventlog/EventLogDirectory$FileId/ (Ljava/time/LocalDate;I)V +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/equals (Ljava/lang/Object;)Z net/minecraft/util/eventlog/EventLogDirectory$FileId/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260602_ ()I net/minecraft/util/eventlog/EventLogDirectory$FileId/index ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260711_ ()Ljava/time/LocalDate; net/minecraft/util/eventlog/EventLogDirectory$FileId/date ()Ljava/time/LocalDate; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/hashCode ()I net/minecraft/util/eventlog/EventLogDirectory$FileId/hashCode ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/m_260977_ (Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$FileId/parse (Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/m_261263_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$FileId/toFileName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/toString ()Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$FileId/toString ()Ljava/lang/String; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/ (Ljava/util/List;)V net/minecraft/util/eventlog/EventLogDirectory$FileList/ (Ljava/util/List;)V +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/iterator ()Ljava/util/Iterator; net/minecraft/util/eventlog/EventLogDirectory$FileList/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_260823_ (ILjava/time/LocalDate;Lnet/minecraft/util/eventlog/EventLogDirectory$File;)Z net/minecraft/util/eventlog/EventLogDirectory$FileList/lambda$prune$0 (ILjava/time/LocalDate;Lnet/minecraft/util/eventlog/EventLogDirectory$File;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_260849_ ()Ljava/util/stream/Stream; net/minecraft/util/eventlog/EventLogDirectory$FileList/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_261047_ ()Ljava/util/Set; net/minecraft/util/eventlog/EventLogDirectory$FileList/ids ()Ljava/util/Set; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_261127_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; net/minecraft/util/eventlog/EventLogDirectory$FileList/compressAll ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_261245_ (Ljava/time/LocalDate;I)Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; net/minecraft/util/eventlog/EventLogDirectory$FileList/prune (Ljava/time/LocalDate;I)Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V net/minecraft/util/eventlog/EventLogDirectory$RawFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/equals (Ljava/lang/Object;)Z net/minecraft/util/eventlog/EventLogDirectory$RawFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/hashCode ()I net/minecraft/util/eventlog/EventLogDirectory$RawFile/hashCode ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_260796_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$RawFile/id ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_260857_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; net/minecraft/util/eventlog/EventLogDirectory$RawFile/compress ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_261064_ ()Ljava/io/Reader; net/minecraft/util/eventlog/EventLogDirectory$RawFile/openReader ()Ljava/io/Reader; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_261161_ ()Ljava/nio/file/Path; net/minecraft/util/eventlog/EventLogDirectory$RawFile/path ()Ljava/nio/file/Path; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_261200_ ()Ljava/nio/channels/FileChannel; net/minecraft/util/eventlog/EventLogDirectory$RawFile/openChannel ()Ljava/nio/channels/FileChannel; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/toString ()Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$RawFile/toString ()Ljava/lang/String; +MD: net/minecraft/util/eventlog/JsonEventLog/ ()V net/minecraft/util/eventlog/JsonEventLog/ ()V +MD: net/minecraft/util/eventlog/JsonEventLog/ (Lcom/mojang/serialization/Codec;Ljava/nio/channels/FileChannel;)V net/minecraft/util/eventlog/JsonEventLog/ (Lcom/mojang/serialization/Codec;Ljava/nio/channels/FileChannel;)V +MD: net/minecraft/util/eventlog/JsonEventLog/close ()V net/minecraft/util/eventlog/JsonEventLog/close ()V +MD: net/minecraft/util/eventlog/JsonEventLog/m_260800_ ()V net/minecraft/util/eventlog/JsonEventLog/releaseReference ()V +MD: net/minecraft/util/eventlog/JsonEventLog/m_260847_ (Lcom/mojang/serialization/Codec;Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/JsonEventLog; net/minecraft/util/eventlog/JsonEventLog/open (Lcom/mojang/serialization/Codec;Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/JsonEventLog; +MD: net/minecraft/util/eventlog/JsonEventLog/m_260901_ (Ljava/lang/Object;)V net/minecraft/util/eventlog/JsonEventLog/write (Ljava/lang/Object;)V +MD: net/minecraft/util/eventlog/JsonEventLog/m_260942_ ()Lnet/minecraft/util/eventlog/JsonEventLogReader; net/minecraft/util/eventlog/JsonEventLog/openReader ()Lnet/minecraft/util/eventlog/JsonEventLogReader; +MD: net/minecraft/util/eventlog/JsonEventLog$1/ (Lnet/minecraft/util/eventlog/JsonEventLog;Lnet/minecraft/util/eventlog/JsonEventLogReader;)V net/minecraft/util/eventlog/JsonEventLog$1/ (Lnet/minecraft/util/eventlog/JsonEventLog;Lnet/minecraft/util/eventlog/JsonEventLogReader;)V +MD: net/minecraft/util/eventlog/JsonEventLog$1/close ()V net/minecraft/util/eventlog/JsonEventLog$1/close ()V +MD: net/minecraft/util/eventlog/JsonEventLog$1/m_261203_ ()Ljava/lang/Object; net/minecraft/util/eventlog/JsonEventLog$1/next ()Ljava/lang/Object; +MD: net/minecraft/util/eventlog/JsonEventLogReader/m_261203_ ()Ljava/lang/Object; net/minecraft/util/eventlog/JsonEventLogReader/next ()Ljava/lang/Object; +MD: net/minecraft/util/eventlog/JsonEventLogReader/m_261256_ (Lcom/mojang/serialization/Codec;Ljava/io/Reader;)Lnet/minecraft/util/eventlog/JsonEventLogReader; net/minecraft/util/eventlog/JsonEventLogReader/create (Lcom/mojang/serialization/Codec;Ljava/io/Reader;)Lnet/minecraft/util/eventlog/JsonEventLogReader; +MD: net/minecraft/util/eventlog/JsonEventLogReader$1/ (Lcom/google/gson/stream/JsonReader;Lcom/mojang/serialization/Codec;)V net/minecraft/util/eventlog/JsonEventLogReader$1/ (Lcom/google/gson/stream/JsonReader;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/eventlog/JsonEventLogReader$1/close ()V net/minecraft/util/eventlog/JsonEventLogReader$1/close ()V +MD: net/minecraft/util/eventlog/JsonEventLogReader$1/m_261203_ ()Ljava/lang/Object; net/minecraft/util/eventlog/JsonEventLogReader$1/next ()Ljava/lang/Object; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ ()V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ ()V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttribute (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttribute (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttributes ([Ljava/lang/String;)Ljavax/management/AttributeList; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttributes ([Ljava/lang/String;)Ljavax/management/AttributeList; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getMBeanInfo ()Ljavax/management/MBeanInfo; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getMBeanInfo ()Ljavax/management/MBeanInfo; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/invoke (Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/invoke (Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_145922_ (I)[Ljavax/management/MBeanAttributeInfo; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/lambda$new$1 (I)[Ljavax/management/MBeanAttributeInfo; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_145924_ (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljavax/management/Attribute; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/lambda$getAttributes$2 (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljavax/management/Attribute; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18321_ ()F net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAverageTickTime ()F +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18328_ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/registerJmxMonitoring (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18330_ ()[J net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getTickTimes ()[J +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18331_ (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljava/lang/String; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/lambda$new$0 (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljava/lang/String; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttribute (Ljavax/management/Attribute;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttribute (Ljavax/management/Attribute;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttributes (Ljavax/management/AttributeList;)Ljavax/management/AttributeList; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttributes (Ljavax/management/AttributeList;)Ljavax/management/AttributeList; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/ (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/ (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/m_18361_ ()Ljavax/management/MBeanAttributeInfo; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/asMBeanAttributeInfo ()Ljavax/management/MBeanAttributeInfo; +MD: net/minecraft/util/profiling/ActiveProfiler/ ()V net/minecraft/util/profiling/ActiveProfiler/ ()V +MD: net/minecraft/util/profiling/ActiveProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;Z)V net/minecraft/util/profiling/ActiveProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;Z)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/ActiveProfiler/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_142431_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ActiveProfiler/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ActiveProfiler/m_142579_ ()Ljava/util/Set; net/minecraft/util/profiling/ActiveProfiler/getChartedPaths ()Ljava/util/Set; +MD: net/minecraft/util/profiling/ActiveProfiler/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/ActiveProfiler/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/ActiveProfiler/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_18387_ (J)Ljava/lang/Object; net/minecraft/util/profiling/ActiveProfiler/lambda$pop$2 (J)Ljava/lang/Object; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18404_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ActiveProfiler/lambda$getCurrentEntry$3 (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18406_ ()Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ActiveProfiler/getCurrentEntry ()Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18407_ ()Ljava/lang/Object; net/minecraft/util/profiling/ActiveProfiler/lambda$pop$1 ()Ljava/lang/Object; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18408_ ()Ljava/lang/Object; net/minecraft/util/profiling/ActiveProfiler/lambda$endTick$0 ()Ljava/lang/Object; +MD: net/minecraft/util/profiling/ActiveProfiler/m_5948_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/ActiveProfiler/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/ActiveProfiler/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/ActiveProfiler/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/ActiveProfiler/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ActiveProfiler/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ActiveProfiler/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_7238_ ()V net/minecraft/util/profiling/ActiveProfiler/pop ()V +MD: net/minecraft/util/profiling/ActiveProfiler/m_7241_ ()V net/minecraft/util/profiling/ActiveProfiler/endTick ()V +MD: net/minecraft/util/profiling/ActiveProfiler/m_7242_ ()V net/minecraft/util/profiling/ActiveProfiler/startTick ()V +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/ ()V net/minecraft/util/profiling/ActiveProfiler$PathEntry/ ()V +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_142752_ ()J net/minecraft/util/profiling/ActiveProfiler$PathEntry/getMaxDuration ()J +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_7234_ ()J net/minecraft/util/profiling/ActiveProfiler$PathEntry/getCount ()J +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_7235_ ()J net/minecraft/util/profiling/ActiveProfiler$PathEntry/getDuration ()J +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_7446_ ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; net/minecraft/util/profiling/ActiveProfiler$PathEntry/getCounters ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; +MD: net/minecraft/util/profiling/ContinuousProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;)V net/minecraft/util/profiling/ContinuousProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;)V +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18436_ ()Z net/minecraft/util/profiling/ContinuousProfiler/isEnabled ()Z +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18437_ ()V net/minecraft/util/profiling/ContinuousProfiler/disable ()V +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18438_ ()V net/minecraft/util/profiling/ContinuousProfiler/enable ()V +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18439_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/ContinuousProfiler/getFiller ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18440_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/ContinuousProfiler/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/EmptyProfileResults/ ()V net/minecraft/util/profiling/EmptyProfileResults/ ()V +MD: net/minecraft/util/profiling/EmptyProfileResults/ ()V net/minecraft/util/profiling/EmptyProfileResults/ ()V +MD: net/minecraft/util/profiling/EmptyProfileResults/m_142368_ ()Ljava/lang/String; net/minecraft/util/profiling/EmptyProfileResults/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/util/profiling/EmptyProfileResults/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/util/profiling/EmptyProfileResults/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/profiling/EmptyProfileResults/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/profiling/EmptyProfileResults/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7229_ ()J net/minecraft/util/profiling/EmptyProfileResults/getStartTimeNano ()J +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7230_ ()I net/minecraft/util/profiling/EmptyProfileResults/getStartTimeTicks ()I +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7236_ ()J net/minecraft/util/profiling/EmptyProfileResults/getEndTimeNano ()J +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7317_ ()I net/minecraft/util/profiling/EmptyProfileResults/getEndTimeTicks ()I +MD: net/minecraft/util/profiling/FilledProfileResults/ ()V net/minecraft/util/profiling/FilledProfileResults/ ()V +MD: net/minecraft/util/profiling/FilledProfileResults/ (Ljava/util/Map;JIJI)V net/minecraft/util/profiling/FilledProfileResults/ (Ljava/util/Map;JIJI)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_142368_ ()Ljava/lang/String; net/minecraft/util/profiling/FilledProfileResults/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/util/profiling/FilledProfileResults/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/util/profiling/FilledProfileResults/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/profiling/FilledProfileResults/m_145941_ (Ljava/util/Map;Ljava/util/List;Ljava/lang/String;Ljava/lang/Long;)V net/minecraft/util/profiling/FilledProfileResults/lambda$getCounterValues$2 (Ljava/util/Map;Ljava/util/List;Ljava/lang/String;Ljava/lang/Long;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_145946_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; net/minecraft/util/profiling/FilledProfileResults/lambda$getCounterValues$1 (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18470_ (IILjava/lang/StringBuilder;Ljava/util/Map$Entry;)V net/minecraft/util/profiling/FilledProfileResults/lambda$appendCounterResults$5 (IILjava/lang/StringBuilder;Ljava/util/Map$Entry;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18475_ (ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;ILjava/lang/StringBuilder;)V net/minecraft/util/profiling/FilledProfileResults/appendCounterResults (ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;ILjava/lang/StringBuilder;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18481_ (ILjava/lang/String;Ljava/lang/StringBuilder;)V net/minecraft/util/profiling/FilledProfileResults/appendProfilerResults (ILjava/lang/String;Ljava/lang/StringBuilder;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18485_ (JI)Ljava/lang/String; net/minecraft/util/profiling/FilledProfileResults/getProfilerResults (JI)Ljava/lang/String; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18488_ (Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)J net/minecraft/util/profiling/FilledProfileResults/lambda$static$0 (Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)J +MD: net/minecraft/util/profiling/FilledProfileResults/m_18494_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/util/profiling/FilledProfileResults/isDirectChild (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/util/profiling/FilledProfileResults/m_18497_ (Ljava/lang/StringBuilder;I)Ljava/lang/StringBuilder; net/minecraft/util/profiling/FilledProfileResults/indentLine (Ljava/lang/StringBuilder;I)Ljava/lang/StringBuilder; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18500_ (Ljava/lang/StringBuilder;ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)V net/minecraft/util/profiling/FilledProfileResults/lambda$appendCounters$6 (Ljava/lang/StringBuilder;ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18505_ (Ljava/lang/StringBuilder;ILjava/lang/String;Ljava/lang/Long;)V net/minecraft/util/profiling/FilledProfileResults/lambda$appendProfilerResults$4 (Ljava/lang/StringBuilder;ILjava/lang/String;Ljava/lang/Long;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18510_ (Ljava/util/Map;Ljava/lang/String;Lnet/minecraft/util/profiling/ProfilerPathEntry;)V net/minecraft/util/profiling/FilledProfileResults/lambda$getCounterValues$3 (Ljava/util/Map;Ljava/lang/String;Lnet/minecraft/util/profiling/ProfilerPathEntry;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18514_ (Ljava/util/Map;Ljava/lang/StringBuilder;I)V net/minecraft/util/profiling/FilledProfileResults/appendCounters (Ljava/util/Map;Ljava/lang/StringBuilder;I)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18525_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ProfilerPathEntry; net/minecraft/util/profiling/FilledProfileResults/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ProfilerPathEntry; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18531_ ()Ljava/util/Map; net/minecraft/util/profiling/FilledProfileResults/getCounterValues ()Ljava/util/Map; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18532_ ()Ljava/lang/String; net/minecraft/util/profiling/FilledProfileResults/getComment ()Ljava/lang/String; +MD: net/minecraft/util/profiling/FilledProfileResults/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/profiling/FilledProfileResults/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/profiling/FilledProfileResults/m_7229_ ()J net/minecraft/util/profiling/FilledProfileResults/getStartTimeNano ()J +MD: net/minecraft/util/profiling/FilledProfileResults/m_7230_ ()I net/minecraft/util/profiling/FilledProfileResults/getStartTimeTicks ()I +MD: net/minecraft/util/profiling/FilledProfileResults/m_7236_ ()J net/minecraft/util/profiling/FilledProfileResults/getEndTimeNano ()J +MD: net/minecraft/util/profiling/FilledProfileResults/m_7315_ ()I net/minecraft/util/profiling/FilledProfileResults/getTickDuration ()I +MD: net/minecraft/util/profiling/FilledProfileResults/m_7317_ ()I net/minecraft/util/profiling/FilledProfileResults/getEndTimeTicks ()I +MD: net/minecraft/util/profiling/FilledProfileResults$1/ ()V net/minecraft/util/profiling/FilledProfileResults$1/ ()V +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_142752_ ()J net/minecraft/util/profiling/FilledProfileResults$1/getMaxDuration ()J +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_7234_ ()J net/minecraft/util/profiling/FilledProfileResults$1/getCount ()J +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_7235_ ()J net/minecraft/util/profiling/FilledProfileResults$1/getDuration ()J +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_7446_ ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; net/minecraft/util/profiling/FilledProfileResults$1/getCounters ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; +MD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/ ()V net/minecraft/util/profiling/FilledProfileResults$CounterCollector/ ()V +MD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/m_18545_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; net/minecraft/util/profiling/FilledProfileResults$CounterCollector/lambda$addValue$0 (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; +MD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/m_18547_ (Ljava/util/Iterator;J)V net/minecraft/util/profiling/FilledProfileResults$CounterCollector/addValue (Ljava/util/Iterator;J)V +MD: net/minecraft/util/profiling/InactiveProfiler/ ()V net/minecraft/util/profiling/InactiveProfiler/ ()V +MD: net/minecraft/util/profiling/InactiveProfiler/ ()V net/minecraft/util/profiling/InactiveProfiler/ ()V +MD: net/minecraft/util/profiling/InactiveProfiler/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/InactiveProfiler/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_142431_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/InactiveProfiler/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/InactiveProfiler/m_142579_ ()Ljava/util/Set; net/minecraft/util/profiling/InactiveProfiler/getChartedPaths ()Ljava/util/Set; +MD: net/minecraft/util/profiling/InactiveProfiler/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/InactiveProfiler/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/InactiveProfiler/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_5948_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/InactiveProfiler/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/InactiveProfiler/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/InactiveProfiler/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/InactiveProfiler/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/InactiveProfiler/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/InactiveProfiler/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_7238_ ()V net/minecraft/util/profiling/InactiveProfiler/pop ()V +MD: net/minecraft/util/profiling/InactiveProfiler/m_7241_ ()V net/minecraft/util/profiling/InactiveProfiler/endTick ()V +MD: net/minecraft/util/profiling/InactiveProfiler/m_7242_ ()V net/minecraft/util/profiling/InactiveProfiler/startTick ()V +MD: net/minecraft/util/profiling/ProfileCollector/m_142431_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ProfileCollector/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ProfileCollector/m_142579_ ()Ljava/util/Set; net/minecraft/util/profiling/ProfileCollector/getChartedPaths ()Ljava/util/Set; +MD: net/minecraft/util/profiling/ProfileCollector/m_5948_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/ProfileCollector/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/ProfileResults/m_142368_ ()Ljava/lang/String; net/minecraft/util/profiling/ProfileResults/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/util/profiling/ProfileResults/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/util/profiling/ProfileResults/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/profiling/ProfileResults/m_18575_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/profiling/ProfileResults/demanglePath (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/profiling/ProfileResults/m_18577_ ()J net/minecraft/util/profiling/ProfileResults/getNanoDuration ()J +MD: net/minecraft/util/profiling/ProfileResults/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/profiling/ProfileResults/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/profiling/ProfileResults/m_7229_ ()J net/minecraft/util/profiling/ProfileResults/getStartTimeNano ()J +MD: net/minecraft/util/profiling/ProfileResults/m_7230_ ()I net/minecraft/util/profiling/ProfileResults/getStartTimeTicks ()I +MD: net/minecraft/util/profiling/ProfileResults/m_7236_ ()J net/minecraft/util/profiling/ProfileResults/getEndTimeNano ()J +MD: net/minecraft/util/profiling/ProfileResults/m_7315_ ()I net/minecraft/util/profiling/ProfileResults/getTickDuration ()I +MD: net/minecraft/util/profiling/ProfileResults/m_7317_ ()I net/minecraft/util/profiling/ProfileResults/getEndTimeTicks ()I +MD: net/minecraft/util/profiling/ProfilerFiller/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/ProfilerFiller/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_18578_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/ProfilerFiller/tee (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/ProfilerFiller/m_6174_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6525_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_7238_ ()V net/minecraft/util/profiling/ProfilerFiller/pop ()V +MD: net/minecraft/util/profiling/ProfilerFiller/m_7241_ ()V net/minecraft/util/profiling/ProfilerFiller/endTick ()V +MD: net/minecraft/util/profiling/ProfilerFiller/m_7242_ ()V net/minecraft/util/profiling/ProfilerFiller/startTick ()V +MD: net/minecraft/util/profiling/ProfilerFiller$1/ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/util/profiling/ProfilerFiller$1/ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/ProfilerFiller$1/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/ProfilerFiller$1/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/ProfilerFiller$1/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller$1/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller$1/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller$1/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller$1/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_7238_ ()V net/minecraft/util/profiling/ProfilerFiller$1/pop ()V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_7241_ ()V net/minecraft/util/profiling/ProfilerFiller$1/endTick ()V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_7242_ ()V net/minecraft/util/profiling/ProfilerFiller$1/startTick ()V +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_142752_ ()J net/minecraft/util/profiling/ProfilerPathEntry/getMaxDuration ()J +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_7234_ ()J net/minecraft/util/profiling/ProfilerPathEntry/getCount ()J +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_7235_ ()J net/minecraft/util/profiling/ProfilerPathEntry/getDuration ()J +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_7446_ ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; net/minecraft/util/profiling/ProfilerPathEntry/getCounters ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; +MD: net/minecraft/util/profiling/ResultField/ (Ljava/lang/String;DDJ)V net/minecraft/util/profiling/ResultField/ (Ljava/lang/String;DDJ)V +MD: net/minecraft/util/profiling/ResultField/compareTo (Lnet/minecraft/util/profiling/ResultField;)I net/minecraft/util/profiling/ResultField/compareTo (Lnet/minecraft/util/profiling/ResultField;)I +MD: net/minecraft/util/profiling/ResultField/compareTo (Ljava/lang/Object;)I net/minecraft/util/profiling/ResultField/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/util/profiling/ResultField/m_18616_ ()I net/minecraft/util/profiling/ResultField/getColor ()I +MD: net/minecraft/util/profiling/SingleTickProfiler/ ()V net/minecraft/util/profiling/SingleTickProfiler/ ()V +MD: net/minecraft/util/profiling/SingleTickProfiler/ (Ljava/util/function/LongSupplier;Ljava/lang/String;J)V net/minecraft/util/profiling/SingleTickProfiler/ (Ljava/util/function/LongSupplier;Ljava/lang/String;J)V +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18628_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/SingleTickProfiler/startTick ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18629_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/SingleTickProfiler/decorateFiller (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18632_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/SingleTickProfiler; net/minecraft/util/profiling/SingleTickProfiler/createTickProfiler (Ljava/lang/String;)Lnet/minecraft/util/profiling/SingleTickProfiler; +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18634_ ()V net/minecraft/util/profiling/SingleTickProfiler/endTick ()V +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18635_ ()I net/minecraft/util/profiling/SingleTickProfiler/lambda$startTick$0 ()I +MD: net/minecraft/util/profiling/jfr/Environment/ ()V net/minecraft/util/profiling/jfr/Environment/ ()V +MD: net/minecraft/util/profiling/jfr/Environment/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/util/profiling/jfr/Environment/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/Environment/m_185277_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/Environment/getDescription ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/Environment/m_185278_ (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/from (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/Environment/m_185280_ ()[Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/$values ()[Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/Environment/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/Environment/values ()[Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/values ()[Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/ ()V net/minecraft/util/profiling/jfr/JfrProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/ ()V net/minecraft/util/profiling/jfr/JfrProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183243_ ()Ljava/nio/file/Path; net/minecraft/util/profiling/jfr/JfrProfiler/stop ()Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183425_ (Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JfrProfiler/start (Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183494_ ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JfrProfiler/onWorldLoadedStarted ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183508_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JfrProfiler/onPacketSent (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183510_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JfrProfiler/onPacketReceived (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183559_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JfrProfiler/onChunkGenerate (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183597_ (F)V net/minecraft/util/profiling/jfr/JfrProfiler/onServerTick (F)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183608_ ()Z net/minecraft/util/profiling/jfr/JfrProfiler/isRunning ()Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183609_ ()Z net/minecraft/util/profiling/jfr/JfrProfiler/isAvailable ()Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185298_ ()Lnet/minecraft/util/profiling/jfr/JfrProfiler; net/minecraft/util/profiling/jfr/JfrProfiler/getInstance ()Lnet/minecraft/util/profiling/jfr/JfrProfiler; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185316_ (Ljava/io/Reader;Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JfrProfiler/start (Ljava/io/Reader;Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185319_ (Ljava/net/SocketAddress;)Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation; net/minecraft/util/profiling/jfr/JfrProfiler/networkStatFor (Ljava/net/SocketAddress;)Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185330_ ()V net/minecraft/util/profiling/jfr/JfrProfiler/setupSummaryListener ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185331_ ()V net/minecraft/util/profiling/jfr/JfrProfiler/lambda$new$1 ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185332_ ()V net/minecraft/util/profiling/jfr/JfrProfiler/lambda$new$0 ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_242540_ (Lnet/minecraft/util/profiling/jfr/Environment;Ljava/lang/String;Ljdk/jfr/Recording;)V net/minecraft/util/profiling/jfr/JfrProfiler/lambda$start$2 (Lnet/minecraft/util/profiling/jfr/Environment;Ljava/lang/String;Ljdk/jfr/Recording;)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler$1/ (Lnet/minecraft/util/profiling/jfr/JfrProfiler;)V net/minecraft/util/profiling/jfr/JfrProfiler$1/ (Lnet/minecraft/util/profiling/jfr/JfrProfiler;)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler$1/m_185337_ ()V net/minecraft/util/profiling/jfr/JfrProfiler$1/lambda$$0 ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler$1/recordingStateChanged (Ljdk/jfr/Recording;)V net/minecraft/util/profiling/jfr/JfrProfiler$1/recordingStateChanged (Ljdk/jfr/Recording;)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/ ()V net/minecraft/util/profiling/jfr/JvmProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183243_ ()Ljava/nio/file/Path; net/minecraft/util/profiling/jfr/JvmProfiler/stop ()Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183425_ (Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JvmProfiler/start (Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183494_ ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler/onWorldLoadedStarted ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183508_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler/onPacketSent (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183510_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler/onPacketReceived (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183559_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler/onChunkGenerate (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183597_ (F)V net/minecraft/util/profiling/jfr/JvmProfiler/onServerTick (F)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183608_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler/isRunning ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183609_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler/isAvailable ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183243_ ()Ljava/nio/file/Path; net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/stop ()Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183425_ (Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/start (Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183494_ ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onWorldLoadedStarted ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183508_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onPacketSent (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183510_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onPacketReceived (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183559_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onChunkGenerate (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183597_ (F)V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onServerTick (F)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183608_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/isRunning ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183609_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/isAvailable ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_185359_ ()V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/lambda$static$0 ()V +MD: net/minecraft/util/profiling/jfr/Percentiles/ ()V net/minecraft/util/profiling/jfr/Percentiles/ ()V +MD: net/minecraft/util/profiling/jfr/Percentiles/ ()V net/minecraft/util/profiling/jfr/Percentiles/ ()V +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185385_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/util/profiling/jfr/Percentiles/sorted (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185387_ (Ljava/util/Map;Lit/unimi/dsi/fastutil/ints/Int2DoubleRBTreeMap;)V net/minecraft/util/profiling/jfr/Percentiles/lambda$sorted$0 (Ljava/util/Map;Lit/unimi/dsi/fastutil/ints/Int2DoubleRBTreeMap;)V +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185390_ ([D)Ljava/util/Map; net/minecraft/util/profiling/jfr/Percentiles/evaluate ([D)Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185392_ ([J)Ljava/util/Map; net/minecraft/util/profiling/jfr/Percentiles/evaluate ([J)Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/ ()V net/minecraft/util/profiling/jfr/SummaryReporter/ ()V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/ (Ljava/lang/Runnable;)V net/minecraft/util/profiling/jfr/SummaryReporter/ (Ljava/lang/Runnable;)V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185400_ (Ljava/nio/file/Path;)V net/minecraft/util/profiling/jfr/SummaryReporter/recordingStopped (Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185407_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$3 ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185408_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$2 (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185410_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$1 ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185411_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$0 (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_201932_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/jfr/SummaryReporter/infoWithFallback (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_201934_ (Ljava/util/function/Supplier;Ljava/lang/Throwable;)V net/minecraft/util/profiling/jfr/SummaryReporter/warnWithFallback (Ljava/util/function/Supplier;Ljava/lang/Throwable;)V +MD: net/minecraft/util/profiling/jfr/callback/ProfiledDuration/m_185413_ ()V net/minecraft/util/profiling/jfr/callback/ProfiledDuration/finish ()V +MD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ ()V net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)V net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ ()V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ (Ljava/lang/String;)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/ (Ljava/lang/String;)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/ (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/m_195576_ ()V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/commitEvent ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/m_195577_ (I)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/trackSentPacket (I)V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/m_195579_ (I)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/trackReceivedPacket (I)V +MD: net/minecraft/util/profiling/jfr/event/PacketEvent/ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/event/PacketEvent/ (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ ()V net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/ ()V net/minecraft/util/profiling/jfr/event/PacketSentEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/event/PacketSentEvent/ (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ ()V net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ (F)V net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ (F)V +MD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/ (Ljava/util/stream/Stream;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/ (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185444_ ()Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/results ()Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185445_ (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/lambda$incrementPacket$1 (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185447_ (Ljava/nio/file/Path;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/parse (Ljava/nio/file/Path;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185449_ (Ljava/time/Duration;Ljava/util/Map;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/collectPacketStats (Ljava/time/Duration;Ljava/util/Map;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185452_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/lambda$collectPacketStats$2 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185454_ (Ljava/util/stream/Stream;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/capture (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185456_ (Ljdk/jfr/consumer/RecordedEvent;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/lambda$capture$0 (Ljdk/jfr/consumer/RecordedEvent;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185458_ (Ljdk/jfr/consumer/RecordedEvent;ILjava/util/Map;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/incrementPacket (Ljdk/jfr/consumer/RecordedEvent;ILjava/util/Map;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185462_ (Ljdk/jfr/consumer/RecordedEvent;Ljava/util/List;Ljava/lang/String;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/appendFileIO (Ljdk/jfr/consumer/RecordedEvent;Ljava/util/List;Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/ (Ljdk/jfr/consumer/RecordingFile;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/ (Ljdk/jfr/consumer/RecordingFile;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/hasNext ()Z net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/hasNext ()Z +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljava/lang/Object; net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljava/lang/Object; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljdk/jfr/consumer/RecordedEvent; net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljdk/jfr/consumer/RecordedEvent; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/ ()V net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/ ()V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/m_185475_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/toCountAndSize ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/m_185476_ (I)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/increment (I)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/ (Ljava/time/Instant;Ljava/time/Instant;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Ljava/util/List;Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Ljava/util/List;)V net/minecraft/util/profiling/jfr/parse/JfrStatsResult/ (Ljava/time/Instant;Ljava/time/Instant;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Ljava/util/List;Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/parse/JfrStatsResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185478_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingStarted ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185479_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingEnded ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185480_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185481_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/worldCreationDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185482_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/tickTimes ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185483_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/cpuLoadStats ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185484_ ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/heapSummary ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185485_ ()Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/threadAllocationSummary ()Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185486_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/receivedPacketsSummary ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185487_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/sentPacketsSummary ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185488_ ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileWrites ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185489_ ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileReads ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185490_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/chunkGenStats ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/hashCode ()I net/minecraft/util/profiling/jfr/parse/JfrStatsResult/hashCode ()I +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185505_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/chunkGenSummary ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185506_ (Lcom/mojang/datafixers/util/Pair;)Ljava/time/Duration; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/lambda$chunkGenSummary$1 (Lcom/mojang/datafixers/util/Pair;)Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185508_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/lambda$chunkGenSummary$0 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185510_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/asJson ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/ ()V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/ ()V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185535_ (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Ljava/lang/String; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/format (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185537_ (Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$4 (Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185539_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/fileIoSummary (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185541_ (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/heap (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185543_ (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/packets (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185545_ (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/threadAllocations (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185547_ (Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat;)D net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$serverTicks$7 (Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat;)D +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185549_ (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$packets$10 (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185552_ (Lcom/google/gson/JsonArray;Ljava/lang/String;Ljava/lang/Double;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$threadAllocations$6 (Lcom/google/gson/JsonArray;Ljava/lang/String;Ljava/lang/Double;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185556_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonArray;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$1 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonArray;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185559_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonObject;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$2 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185562_ (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$serverTicks$8 (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185566_ (Lcom/mojang/datafixers/util/Pair;)D net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$0 (Lcom/mojang/datafixers/util/Pair;)D +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185568_ (Ljava/lang/String;Ljava/lang/Double;Lcom/google/gson/JsonObject;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$threadAllocations$5 (Ljava/lang/String;Ljava/lang/Double;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185572_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/chunkGen (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185574_ (Ljava/util/List;Ljava/util/function/ToDoubleFunction;)Lcom/google/gson/JsonObject; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$cpu$11 (Ljava/util/List;Ljava/util/function/ToDoubleFunction;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185577_ (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/fileIO (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185579_ (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$fileIoSummary$9 (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185582_ (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$3 (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185586_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/serverTicks (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185588_ (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/network (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185590_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/cpu (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/ (Ljava/time/Duration;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/lang/String;)V net/minecraft/util/profiling/jfr/stats/ChunkGenStat/ (Ljava/time/Duration;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/ChunkGenStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185593_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185594_ ()Lnet/minecraft/server/level/ColumnPos; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/worldPos ()Lnet/minecraft/server/level/ColumnPos; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185595_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/status ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185596_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/level ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/ChunkGenStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/m_183571_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/m_185604_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/ (DDD)V net/minecraft/util/profiling/jfr/stats/CpuLoadStat/ (DDD)V +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/CpuLoadStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185614_ ()D net/minecraft/util/profiling/jfr/stats/CpuLoadStat/jvm ()D +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185615_ ()D net/minecraft/util/profiling/jfr/stats/CpuLoadStat/userJvm ()D +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185616_ ()D net/minecraft/util/profiling/jfr/stats/CpuLoadStat/system ()D +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/CpuLoadStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/m_185622_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/CpuLoadStat; net/minecraft/util/profiling/jfr/stats/CpuLoadStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/CpuLoadStat; +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/CpuLoadStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/ (Ljava/time/Duration;Ljava/lang/String;J)V net/minecraft/util/profiling/jfr/stats/FileIOStat/ (Ljava/time/Duration;Ljava/lang/String;J)V +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/FileIOStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185630_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/FileIOStat/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185631_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat/path ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185632_ ()J net/minecraft/util/profiling/jfr/stats/FileIOStat/bytes ()J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/FileIOStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185638_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$3 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185640_ (Ljava/time/Duration;Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; net/minecraft/util/profiling/jfr/stats/FileIOStat/summary (Ljava/time/Duration;Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185643_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$4 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185646_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$2 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185649_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Z net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$1 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Z +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185651_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$0 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/ (JDJDLjava/time/Duration;Ljava/util/List;)V net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/ (JDJDLjava/time/Duration;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185657_ ()J net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/totalBytes ()J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185658_ ()D net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/bytesPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185659_ ()J net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/counts ()J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185660_ ()D net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/countsPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185661_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/timeSpentInIO ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185662_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/topTenContributorsByTotalBytes ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/hashCode ()I net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/ (Ljava/time/Instant;JLnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing;)V net/minecraft/util/profiling/jfr/stats/GcHeapStat/ (Ljava/time/Instant;JLnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing;)V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/GcHeapStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185680_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/GcHeapStat/timestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185681_ ()J net/minecraft/util/profiling/jfr/stats/GcHeapStat/heapUsed ()J +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185682_ ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat/timing ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/GcHeapStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185688_ (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat/lambda$calculateAllocationRatePerSecond$0 (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185690_ (Ljava/time/Duration;Ljava/util/List;Ljava/time/Duration;I)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; net/minecraft/util/profiling/jfr/stats/GcHeapStat/summary (Ljava/time/Duration;Ljava/util/List;Ljava/time/Duration;I)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185695_ (Ljava/util/List;)D net/minecraft/util/profiling/jfr/stats/GcHeapStat/calculateAllocationRatePerSecond (Ljava/util/List;)D +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185697_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat; net/minecraft/util/profiling/jfr/stats/GcHeapStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/GcHeapStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/ (Ljava/time/Duration;Ljava/time/Duration;ID)V net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/ (Ljava/time/Duration;Ljava/time/Duration;ID)V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185705_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185706_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/gcTotalDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185707_ ()I net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/totalGCs ()I +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185708_ ()D net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/allocationRateBytesPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/hashCode ()I net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/m_185714_ ()F net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/gcOverHead ()F +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ ()V net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ ()V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ (Ljava/lang/String;I)V net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/m_185730_ ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/$values ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/values ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/values ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/ (Ljava/time/Duration;Ljava/util/List;)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/ (Ljava/time/Duration;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185740_ ()D net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getCountsPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185741_ ()D net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getSizePerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185742_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getTotalCount ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185743_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getTotalSize ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185744_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/largestSizeContributors ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185745_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/lambda$new$0 ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ ()V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ ()V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ (JJ)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ (JJ)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185746_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalCount ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185747_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalSize ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/hashCode ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/m_185754_ (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/add (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ ()V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ ()V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ (Lnet/minecraft/network/protocol/PacketFlow;II)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ (Lnet/minecraft/network/protocol/PacketFlow;II)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185761_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/direction ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185762_ ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/protocolId ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185763_ ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/packetId ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/hashCode ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/m_185770_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/packetName ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/m_185771_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Integer;Ljava/lang/Class;)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/lambda$static$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Integer;Ljava/lang/Class;)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/m_185777_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/ (Ljava/time/Instant;Ljava/lang/String;J)V net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/ (Ljava/time/Instant;Ljava/lang/String;J)V +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185786_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/timestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185787_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/threadName ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185788_ ()J net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/totalBytes ()J +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185795_ (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat;)Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/lambda$summary$0 (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185797_ (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/summary (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185799_ (Ljava/util/Map;Ljava/lang/String;Ljava/util/List;)V net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/lambda$summary$1 (Ljava/util/Map;Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185803_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/ (Ljava/util/Map;)V net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/ (Ljava/util/Map;)V +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/f_185811_ ()Ljava/util/Map; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/allocationsPerSecondByThread ()Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/hashCode ()I net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/ (Ljava/time/Instant;Ljava/time/Duration;)V net/minecraft/util/profiling/jfr/stats/TickTimeStat/ (Ljava/time/Instant;Ljava/time/Duration;)V +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/TickTimeStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185819_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/TickTimeStat/timestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185820_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/TickTimeStat/currentAverage ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/TickTimeStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/m_185825_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat; net/minecraft/util/profiling/jfr/stats/TickTimeStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/TickTimeStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/TimeStamped/m_185832_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/TimeStamped/getTimestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/TimedStat/m_183571_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/TimedStat/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/ (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;ILjava/util/Map;Ljava/time/Duration;)V net/minecraft/util/profiling/jfr/stats/TimedStatSummary/ (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;ILjava/util/Map;Ljava/time/Duration;)V +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/TimedStatSummary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185833_ ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/fastest ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185834_ ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/slowest ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185835_ ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/secondSlowest ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185836_ ()I net/minecraft/util/profiling/jfr/stats/TimedStatSummary/count ()I +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185837_ ()Ljava/util/Map; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/percentilesNanos ()Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185838_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/totalDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/hashCode ()I net/minecraft/util/profiling/jfr/stats/TimedStatSummary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/m_185847_ (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;)J net/minecraft/util/profiling/jfr/stats/TimedStatSummary/lambda$summary$0 (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;)J +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/m_185849_ (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/TimedStatSummary; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/summary (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/TimedStatSummary; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/MetricCategory/ ()V net/minecraft/util/profiling/metrics/MetricCategory/ ()V +MD: net/minecraft/util/profiling/metrics/MetricCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/util/profiling/metrics/MetricCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/util/profiling/metrics/MetricCategory/m_145981_ ()Ljava/lang/String; net/minecraft/util/profiling/metrics/MetricCategory/getDescription ()Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/MetricCategory/m_145982_ ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricCategory/$values ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricCategory/values ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricCategory/values ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricSampler/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;Ljava/lang/Runnable;Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)V net/minecraft/util/profiling/metrics/MetricSampler/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;Ljava/lang/Runnable;Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/metrics/MetricSampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/metrics/MetricSampler/hashCode ()I net/minecraft/util/profiling/metrics/MetricSampler/hashCode ()I +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146001_ ()V net/minecraft/util/profiling/metrics/MetricSampler/onStartTick ()V +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146002_ (I)V net/minecraft/util/profiling/metrics/MetricSampler/onEndTick (I)V +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146004_ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/lang/Object;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricSampler/create (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/lang/Object;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146009_ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricSampler/create (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146013_ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; net/minecraft/util/profiling/metrics/MetricSampler/builder (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146018_ ()V net/minecraft/util/profiling/metrics/MetricSampler/onFinished ()V +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146019_ ()Ljava/util/function/DoubleSupplier; net/minecraft/util/profiling/metrics/MetricSampler/getSampler ()Ljava/util/function/DoubleSupplier; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146020_ ()Ljava/lang/String; net/minecraft/util/profiling/metrics/MetricSampler/getName ()Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146021_ ()Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricSampler/getCategory ()Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146024_ ()Lnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult; net/minecraft/util/profiling/metrics/MetricSampler/result ()Lnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146025_ ()Z net/minecraft/util/profiling/metrics/MetricSampler/triggersThreshold ()Z +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146026_ ()V net/minecraft/util/profiling/metrics/MetricSampler/verifyRunning ()V +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)V net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146039_ ()Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/build ()Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146040_ (Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/withThresholdAlert (Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146042_ (Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/withBeforeTick (Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146044_ (Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)D net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/lambda$new$0 (Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)D +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146047_ (Ljava/util/function/Consumer;)V net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/lambda$withBeforeTick$1 (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/ (IILit/unimi/dsi/fastutil/ints/Int2DoubleMap;)V net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/ (IILit/unimi/dsi/fastutil/ints/Int2DoubleMap;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/m_146056_ ()I net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/getFirstTick ()I +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/m_146057_ (I)D net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/valueAtTick (I)D +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/m_146059_ ()I net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/getLastTick ()I +MD: net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest/m_142488_ (D)Z net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest/test (D)Z +MD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/ (F)V net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/ (F)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/m_142488_ (D)Z net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/test (D)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146071_ ()Ljava/util/List; net/minecraft/util/profiling/metrics/MetricsRegistry/getRegisteredSamplers ()Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146072_ (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)V net/minecraft/util/profiling/metrics/MetricsRegistry/add (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146074_ (Ljava/util/Map$Entry;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricsRegistry/lambda$aggregateDuplicates$1 (Ljava/util/Map$Entry;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146076_ (Ljava/util/Map;)Ljava/util/List; net/minecraft/util/profiling/metrics/MetricsRegistry/aggregateDuplicates (Ljava/util/Map;)Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146078_ (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)Ljava/util/stream/Stream; net/minecraft/util/profiling/metrics/MetricsRegistry/lambda$getRegisteredSamplers$0 (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)Ljava/util/stream/Stream; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/ (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/hashCode ()I net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/hashCode ()I +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146084_ (DLnet/minecraft/util/profiling/metrics/MetricSampler;)Z net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$thresholdTest$2 (DLnet/minecraft/util/profiling/metrics/MetricSampler;)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146087_ (Ljava/util/List;)Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest; net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/thresholdTest (Ljava/util/List;)Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146089_ (Ljava/util/List;D)Z net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$thresholdTest$3 (Ljava/util/List;D)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146092_ (Ljava/util/List;)V net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/beforeTick (Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146094_ (Ljava/util/List;)D net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/averageValueFromDelegates (Ljava/util/List;)D +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146096_ (Ljava/util/List;)V net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$new$1 (Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146098_ (Ljava/util/List;)D net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$new$0 (Ljava/util/List;)D +MD: net/minecraft/util/profiling/metrics/MetricsSamplerProvider/m_142531_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/util/profiling/metrics/MetricsSamplerProvider/samplers (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/ProfilerMeasured/m_142754_ ()Ljava/util/List; net/minecraft/util/profiling/metrics/ProfilerMeasured/profiledMetrics ()Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142610_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142758_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/endTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142759_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/startTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142760_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/end ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142763_ ()Z net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/isRecording ()Z +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146128_ (Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/scheduleSaveResults (Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146130_ (Lnet/minecraft/util/profiling/metrics/MetricSampler;)Ljava/util/List; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$endTick$3 (Lnet/minecraft/util/profiling/metrics/MetricSampler;)Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146132_ (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/createStarted (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146139_ (Ljava/util/HashSet;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$scheduleSaveResults$5 (Ljava/util/HashSet;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146142_ (Ljava/util/function/Consumer;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/registerGlobalCompletionCallback (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146148_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/verifyStarted ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146149_ ()I net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$endTick$4 ()I +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146150_ ()Lnet/minecraft/util/profiling/ProfileCollector; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$startTick$2 ()Lnet/minecraft/util/profiling/ProfileCollector; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146151_ ()I net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$new$1 ()I +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146152_ ()I net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$new$0 ()I +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_213832_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/cancel ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_216816_ (Ljava/util/Collection;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/cleanup (Ljava/util/Collection;)V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142610_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142758_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/endTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142759_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/startTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142760_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/end ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142763_ ()Z net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/isRecording ()Z +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_213832_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/cancel ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142610_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142758_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/endTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142759_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/startTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142760_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/end ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142763_ ()Z net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/isRecording ()Z +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_213832_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/cancel ()V +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/ ()V net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146163_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/newSamplersFoundInProfiler (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146165_ (Ljava/util/function/Supplier;Ljava/lang/String;)D net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/lambda$samplerForProfilingPath$2 (Ljava/util/function/Supplier;Ljava/lang/String;)D +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146168_ (Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/samplerForProfilingPath (Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146172_ (Ljava/util/function/Supplier;Lorg/apache/commons/lang3/tuple/Pair;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/lambda$newSamplersFoundInProfiler$1 (Ljava/util/function/Supplier;Lorg/apache/commons/lang3/tuple/Pair;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146175_ (Lorg/apache/commons/lang3/tuple/Pair;)Z net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/lambda$newSamplersFoundInProfiler$0 (Lorg/apache/commons/lang3/tuple/Pair;)Z +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ ()V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Z)V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Z)V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_142531_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/samplers (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146182_ ()Ljava/util/Set; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/runtimeIndependentSamplers ()Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146183_ (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$runtimeIndependentSamplers$1 (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146186_ (Lcom/google/common/base/Stopwatch;)D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$tickTimeSampler$3 (Lcom/google/common/base/Stopwatch;)D +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146188_ (Ljava/util/function/LongSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/tickTimeSampler (Ljava/util/function/LongSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146192_ ()D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$runtimeIndependentSamplers$2 ()D +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146193_ (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$runtimeIndependentSamplers$0 (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)D +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/ (Ljava/util/function/LongSupplier;)V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/ (Ljava/util/function/LongSupplier;)V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/read ()J net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/read ()J +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/ ()V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/m_146207_ (I)D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/loadForCpu (I)D +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/ ()V net/minecraft/util/profiling/metrics/storage/MetricsPersister/ ()V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/ (Ljava/lang/String;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/ (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146218_ (I)[Ljava/lang/String; net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveCategory$2 (I)[Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146220_ (ILnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult;)Ljava/lang/String; net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveCategory$1 (ILnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult;)Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146223_ (Lnet/minecraft/util/profiling/ProfileResults;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveProfilingTaskExecutionResult (Lnet/minecraft/util/profiling/ProfileResults;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146226_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveCategory (Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146230_ (Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveMetrics$0 (Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146234_ (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Lnet/minecraft/util/profiling/metrics/storage/RecordedDeviation;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveDeviations$3 (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Lnet/minecraft/util/profiling/metrics/storage/RecordedDeviation;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146239_ (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Ljava/util/List;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveDeviations$4 (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146244_ (Ljava/util/Map;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveDeviations (Ljava/util/Map;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146247_ (Ljava/util/Set;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveMetrics (Ljava/util/Set;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146250_ (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/util/profiling/ProfileResults;)Ljava/nio/file/Path; net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveReports (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/util/profiling/ProfileResults;)Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/ (Ljava/time/Instant;ILnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/util/profiling/metrics/storage/RecordedDeviation/ (Ljava/time/Instant;ILnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/util/random/SimpleWeightedRandomList/ (Ljava/util/List;)V net/minecraft/util/random/SimpleWeightedRandomList/ (Ljava/util/List;)V +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_146263_ ()Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; net/minecraft/util/random/SimpleWeightedRandomList/builder ()Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_146264_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/SimpleWeightedRandomList/wrappedCodec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_185860_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/SimpleWeightedRandomList/wrappedCodecAllowingEmpty (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_185862_ (Ljava/lang/Object;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/random/SimpleWeightedRandomList/single (Ljava/lang/Object;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_185864_ ()Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/random/SimpleWeightedRandomList/empty ()Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_216820_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/util/random/SimpleWeightedRandomList/getRandomValue (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/ ()V net/minecraft/util/random/SimpleWeightedRandomList$Builder/ ()V +MD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/m_146270_ ()Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/random/SimpleWeightedRandomList$Builder/build ()Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/m_146271_ (Ljava/lang/Object;I)Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; net/minecraft/util/random/SimpleWeightedRandomList$Builder/add (Ljava/lang/Object;I)Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; +MD: net/minecraft/util/random/Weight/ ()V net/minecraft/util/random/Weight/ ()V +MD: net/minecraft/util/random/Weight/ (I)V net/minecraft/util/random/Weight/ (I)V +MD: net/minecraft/util/random/Weight/equals (Ljava/lang/Object;)Z net/minecraft/util/random/Weight/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/random/Weight/hashCode ()I net/minecraft/util/random/Weight/hashCode ()I +MD: net/minecraft/util/random/Weight/m_146281_ ()I net/minecraft/util/random/Weight/asInt ()I +MD: net/minecraft/util/random/Weight/m_146282_ (I)Lnet/minecraft/util/random/Weight; net/minecraft/util/random/Weight/of (I)Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/Weight/m_146284_ (I)V net/minecraft/util/random/Weight/validateWeight (I)V +MD: net/minecraft/util/random/Weight/toString ()Ljava/lang/String; net/minecraft/util/random/Weight/toString ()Ljava/lang/String; +MD: net/minecraft/util/random/WeightedEntry/m_142631_ ()Lnet/minecraft/util/random/Weight; net/minecraft/util/random/WeightedEntry/getWeight ()Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/WeightedEntry/m_146290_ (Ljava/lang/Object;I)Lnet/minecraft/util/random/WeightedEntry$Wrapper; net/minecraft/util/random/WeightedEntry/wrap (Ljava/lang/Object;I)Lnet/minecraft/util/random/WeightedEntry$Wrapper; +MD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (Lnet/minecraft/util/random/Weight;)V net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (Lnet/minecraft/util/random/Weight;)V +MD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (I)V net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (I)V +MD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/m_142631_ ()Lnet/minecraft/util/random/Weight; net/minecraft/util/random/WeightedEntry$IntrusiveBase/getWeight ()Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/ (Ljava/lang/Object;Lnet/minecraft/util/random/Weight;)V net/minecraft/util/random/WeightedEntry$Wrapper/ (Ljava/lang/Object;Lnet/minecraft/util/random/Weight;)V +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_142631_ ()Lnet/minecraft/util/random/Weight; net/minecraft/util/random/WeightedEntry$Wrapper/getWeight ()Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_146305_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/WeightedEntry$Wrapper/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_146307_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/random/WeightedEntry$Wrapper/lambda$codec$0 (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_146310_ ()Ljava/lang/Object; net/minecraft/util/random/WeightedEntry$Wrapper/getData ()Ljava/lang/Object; +MD: net/minecraft/util/random/WeightedRandom/ ()V net/minecraft/util/random/WeightedRandom/ ()V +MD: net/minecraft/util/random/WeightedRandom/m_146312_ (Ljava/util/List;)I net/minecraft/util/random/WeightedRandom/getTotalWeight (Ljava/util/List;)I +MD: net/minecraft/util/random/WeightedRandom/m_146314_ (Ljava/util/List;I)Ljava/util/Optional; net/minecraft/util/random/WeightedRandom/getWeightedItem (Ljava/util/List;I)Ljava/util/Optional; +MD: net/minecraft/util/random/WeightedRandom/m_216822_ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Ljava/util/Optional; net/minecraft/util/random/WeightedRandom/getRandomItem (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Ljava/util/Optional; +MD: net/minecraft/util/random/WeightedRandom/m_216825_ (Lnet/minecraft/util/RandomSource;Ljava/util/List;I)Ljava/util/Optional; net/minecraft/util/random/WeightedRandom/getRandomItem (Lnet/minecraft/util/RandomSource;Ljava/util/List;I)Ljava/util/Optional; +MD: net/minecraft/util/random/WeightedRandomList/ (Ljava/util/List;)V net/minecraft/util/random/WeightedRandomList/ (Ljava/util/List;)V +MD: net/minecraft/util/random/WeightedRandomList/m_146328_ (Ljava/util/List;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/util/random/WeightedRandomList/create (Ljava/util/List;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/util/random/WeightedRandomList/m_146330_ ([Lnet/minecraft/util/random/WeightedEntry;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/util/random/WeightedRandomList/create ([Lnet/minecraft/util/random/WeightedEntry;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/util/random/WeightedRandomList/m_146332_ ()Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/util/random/WeightedRandomList/create ()Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/util/random/WeightedRandomList/m_146333_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/WeightedRandomList/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/WeightedRandomList/m_146337_ ()Z net/minecraft/util/random/WeightedRandomList/isEmpty ()Z +MD: net/minecraft/util/random/WeightedRandomList/m_146338_ ()Ljava/util/List; net/minecraft/util/random/WeightedRandomList/unwrap ()Ljava/util/List; +MD: net/minecraft/util/random/WeightedRandomList/m_216829_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/util/random/WeightedRandomList/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/util/thread/BlockableEventLoop/ ()V net/minecraft/util/thread/BlockableEventLoop/ ()V +MD: net/minecraft/util/thread/BlockableEventLoop/ (Ljava/lang/String;)V net/minecraft/util/thread/BlockableEventLoop/ (Ljava/lang/String;)V +MD: net/minecraft/util/thread/BlockableEventLoop/execute (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/execute (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_142754_ ()Ljava/util/List; net/minecraft/util/thread/BlockableEventLoop/profiledMetrics ()Ljava/util/List; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18689_ (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/BlockableEventLoop/submitAsync (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18691_ (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/BlockableEventLoop/submit (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18693_ (Ljava/lang/Runnable;)Ljava/lang/Void; net/minecraft/util/thread/BlockableEventLoop/lambda$submitAsync$0 (Ljava/lang/Runnable;)Ljava/lang/Void; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18695_ ()Z net/minecraft/util/thread/BlockableEventLoop/isSameThread ()Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_18696_ ()I net/minecraft/util/thread/BlockableEventLoop/getPendingTasksCount ()I +MD: net/minecraft/util/thread/BlockableEventLoop/m_18698_ ()V net/minecraft/util/thread/BlockableEventLoop/dropAllTasks ()V +MD: net/minecraft/util/thread/BlockableEventLoop/m_18699_ ()V net/minecraft/util/thread/BlockableEventLoop/runAllTasks ()V +MD: net/minecraft/util/thread/BlockableEventLoop/m_18701_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/util/thread/BlockableEventLoop/managedBlock (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_18707_ (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/BlockableEventLoop/submit (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18709_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/executeBlocking (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_201446_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/executeIfPossible (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_5660_ ()Z net/minecraft/util/thread/BlockableEventLoop/scheduleExecutables ()Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_5667_ ()V net/minecraft/util/thread/BlockableEventLoop/waitForTasks ()V +MD: net/minecraft/util/thread/BlockableEventLoop/m_6304_ ()Ljava/lang/Thread; net/minecraft/util/thread/BlockableEventLoop/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/util/thread/BlockableEventLoop/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/util/thread/BlockableEventLoop/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/util/thread/BlockableEventLoop/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/util/thread/BlockableEventLoop/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/BlockableEventLoop/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_6937_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/tell (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_7245_ ()Z net/minecraft/util/thread/BlockableEventLoop/pollTask ()Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/BlockableEventLoop/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/NamedThreadFactory/ ()V net/minecraft/util/thread/NamedThreadFactory/ ()V +MD: net/minecraft/util/thread/NamedThreadFactory/ (Ljava/lang/String;)V net/minecraft/util/thread/NamedThreadFactory/ (Ljava/lang/String;)V +MD: net/minecraft/util/thread/NamedThreadFactory/m_146347_ (Ljava/lang/Runnable;Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/util/thread/NamedThreadFactory/lambda$newThread$0 (Ljava/lang/Runnable;Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/util/thread/NamedThreadFactory/newThread (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/util/thread/NamedThreadFactory/newThread (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/util/thread/ProcessorHandle/close ()V net/minecraft/util/thread/ProcessorHandle/close ()V +MD: net/minecraft/util/thread/ProcessorHandle/m_18714_ (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/util/thread/ProcessorHandle; net/minecraft/util/thread/ProcessorHandle/of (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/util/thread/ProcessorHandle; +MD: net/minecraft/util/thread/ProcessorHandle/m_18717_ (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V net/minecraft/util/thread/ProcessorHandle/lambda$askEither$0 (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/util/thread/ProcessorHandle/m_18720_ (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/ProcessorHandle/ask (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/ProcessorHandle/m_18722_ (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/ProcessorHandle/askEither (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/ProcessorHandle/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/ProcessorHandle/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/ProcessorHandle/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/ProcessorHandle/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorHandle$1/ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/util/thread/ProcessorHandle$1/ (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/util/thread/ProcessorHandle$1/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/ProcessorHandle$1/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/ProcessorHandle$1/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/ProcessorHandle$1/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorHandle$1/toString ()Ljava/lang/String; net/minecraft/util/thread/ProcessorHandle$1/toString ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorMailbox/ ()V net/minecraft/util/thread/ProcessorMailbox/ ()V +MD: net/minecraft/util/thread/ProcessorMailbox/ (Lnet/minecraft/util/thread/StrictQueue;Ljava/util/concurrent/Executor;Ljava/lang/String;)V net/minecraft/util/thread/ProcessorMailbox/ (Lnet/minecraft/util/thread/StrictQueue;Ljava/util/concurrent/Executor;Ljava/lang/String;)V +MD: net/minecraft/util/thread/ProcessorMailbox/close ()V net/minecraft/util/thread/ProcessorMailbox/close ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_142754_ ()Ljava/util/List; net/minecraft/util/thread/ProcessorMailbox/profiledMetrics ()Ljava/util/List; +MD: net/minecraft/util/thread/ProcessorMailbox/m_146355_ ()I net/minecraft/util/thread/ProcessorMailbox/size ()I +MD: net/minecraft/util/thread/ProcessorMailbox/m_182329_ ()V net/minecraft/util/thread/ProcessorMailbox/runAll ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_182330_ (I)Z net/minecraft/util/thread/ProcessorMailbox/lambda$runAll$1 (I)Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18744_ ()Z net/minecraft/util/thread/ProcessorMailbox/setAsScheduled ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18745_ (I)Z net/minecraft/util/thread/ProcessorMailbox/lambda$run$0 (I)Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18747_ (Lit/unimi/dsi/fastutil/ints/Int2BooleanFunction;)I net/minecraft/util/thread/ProcessorMailbox/pollUntil (Lit/unimi/dsi/fastutil/ints/Int2BooleanFunction;)I +MD: net/minecraft/util/thread/ProcessorMailbox/m_18751_ (Ljava/util/concurrent/Executor;Ljava/lang/String;)Lnet/minecraft/util/thread/ProcessorMailbox; net/minecraft/util/thread/ProcessorMailbox/create (Ljava/util/concurrent/Executor;Ljava/lang/String;)Lnet/minecraft/util/thread/ProcessorMailbox; +MD: net/minecraft/util/thread/ProcessorMailbox/m_18754_ ()V net/minecraft/util/thread/ProcessorMailbox/setAsIdle ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_18756_ ()Z net/minecraft/util/thread/ProcessorMailbox/canBeScheduled ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18758_ ()Z net/minecraft/util/thread/ProcessorMailbox/shouldProcess ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18759_ ()Z net/minecraft/util/thread/ProcessorMailbox/pollTask ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18760_ ()V net/minecraft/util/thread/ProcessorMailbox/registerForExecution ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_201938_ ()Z net/minecraft/util/thread/ProcessorMailbox/hasWork ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/ProcessorMailbox/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/ProcessorMailbox/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/ProcessorMailbox/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorMailbox/run ()V net/minecraft/util/thread/ProcessorMailbox/run ()V +MD: net/minecraft/util/thread/ProcessorMailbox/toString ()Ljava/lang/String; net/minecraft/util/thread/ProcessorMailbox/toString ()Ljava/lang/String; +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/ (Ljava/lang/String;)V net/minecraft/util/thread/ReentrantBlockableEventLoop/ (Ljava/lang/String;)V +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/m_18767_ ()Z net/minecraft/util/thread/ReentrantBlockableEventLoop/runningTask ()Z +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/m_5660_ ()Z net/minecraft/util/thread/ReentrantBlockableEventLoop/scheduleExecutables ()Z +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/ReentrantBlockableEventLoop/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/StrictQueue/m_142732_ ()I net/minecraft/util/thread/StrictQueue/size ()I +MD: net/minecraft/util/thread/StrictQueue/m_6610_ ()Ljava/lang/Object; net/minecraft/util/thread/StrictQueue/pop ()Ljava/lang/Object; +MD: net/minecraft/util/thread/StrictQueue/m_6944_ (Ljava/lang/Object;)Z net/minecraft/util/thread/StrictQueue/push (Ljava/lang/Object;)Z +MD: net/minecraft/util/thread/StrictQueue/m_7263_ ()Z net/minecraft/util/thread/StrictQueue/isEmpty ()Z +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/ (I)V net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/ (I)V +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_142732_ ()I net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/size ()I +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6610_ ()Ljava/lang/Runnable; net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/pop ()Ljava/lang/Runnable; +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6610_ ()Ljava/lang/Object; net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/pop ()Ljava/lang/Object; +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6944_ (Lnet/minecraft/util/thread/StrictQueue$IntRunnable;)Z net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/push (Lnet/minecraft/util/thread/StrictQueue$IntRunnable;)Z +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6944_ (Ljava/lang/Object;)Z net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/push (Ljava/lang/Object;)Z +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_7263_ ()Z net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/isEmpty ()Z +MD: net/minecraft/util/thread/StrictQueue$IntRunnable/ (ILjava/lang/Runnable;)V net/minecraft/util/thread/StrictQueue$IntRunnable/ (ILjava/lang/Runnable;)V +MD: net/minecraft/util/thread/StrictQueue$IntRunnable/m_18788_ ()I net/minecraft/util/thread/StrictQueue$IntRunnable/getPriority ()I +MD: net/minecraft/util/thread/StrictQueue$IntRunnable/run ()V net/minecraft/util/thread/StrictQueue$IntRunnable/run ()V +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/ (Ljava/util/Queue;)V net/minecraft/util/thread/StrictQueue$QueueStrictQueue/ (Ljava/util/Queue;)V +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_142732_ ()I net/minecraft/util/thread/StrictQueue$QueueStrictQueue/size ()I +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_6610_ ()Ljava/lang/Object; net/minecraft/util/thread/StrictQueue$QueueStrictQueue/pop ()Ljava/lang/Object; +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_6944_ (Ljava/lang/Object;)Z net/minecraft/util/thread/StrictQueue$QueueStrictQueue/push (Ljava/lang/Object;)Z +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_7263_ ()Z net/minecraft/util/thread/StrictQueue$QueueStrictQueue/isEmpty ()Z +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/ ()V net/minecraft/util/valueproviders/BiasedToBottomInt/ ()V +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/ (II)V net/minecraft/util/valueproviders/BiasedToBottomInt/ (II)V +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/BiasedToBottomInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_142737_ ()I net/minecraft/util/valueproviders/BiasedToBottomInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_142739_ ()I net/minecraft/util/valueproviders/BiasedToBottomInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146367_ (II)Lnet/minecraft/util/valueproviders/BiasedToBottomInt; net/minecraft/util/valueproviders/BiasedToBottomInt/of (II)Lnet/minecraft/util/valueproviders/BiasedToBottomInt; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146372_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146377_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146380_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/BiasedToBottomInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_274163_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_274164_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/String; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$3 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/BiasedToBottomInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedInt/ ()V net/minecraft/util/valueproviders/ClampedInt/ ()V +MD: net/minecraft/util/valueproviders/ClampedInt/ (Lnet/minecraft/util/valueproviders/IntProvider;II)V net/minecraft/util/valueproviders/ClampedInt/ (Lnet/minecraft/util/valueproviders/IntProvider;II)V +MD: net/minecraft/util/valueproviders/ClampedInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/ClampedInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/ClampedInt/m_142737_ ()I net/minecraft/util/valueproviders/ClampedInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/ClampedInt/m_142739_ ()I net/minecraft/util/valueproviders/ClampedInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/ClampedInt/m_146395_ (Lnet/minecraft/util/valueproviders/IntProvider;II)Lnet/minecraft/util/valueproviders/ClampedInt; net/minecraft/util/valueproviders/ClampedInt/of (Lnet/minecraft/util/valueproviders/IntProvider;II)Lnet/minecraft/util/valueproviders/ClampedInt; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146399_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ClampedInt/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146404_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedInt/lambda$static$2 (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146407_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146409_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/util/valueproviders/ClampedInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/ClampedInt;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/util/valueproviders/ClampedInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/ClampedInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/ClampedInt/m_274165_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/ClampedInt/lambda$static$5 (Lnet/minecraft/util/valueproviders/ClampedInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/ClampedInt/m_274166_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/String; net/minecraft/util/valueproviders/ClampedInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/ ()V net/minecraft/util/valueproviders/ClampedNormalFloat/ ()V +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/ (FFFF)V net/minecraft/util/valueproviders/ClampedNormalFloat/ (FFFF)V +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/ClampedNormalFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_142734_ ()F net/minecraft/util/valueproviders/ClampedNormalFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_142735_ ()F net/minecraft/util/valueproviders/ClampedNormalFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146423_ (FFFF)Lnet/minecraft/util/valueproviders/ClampedNormalFloat; net/minecraft/util/valueproviders/ClampedNormalFloat/of (FFFF)Lnet/minecraft/util/valueproviders/ClampedNormalFloat; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146430_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146441_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$3 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146444_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$2 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146446_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$1 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146448_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/ClampedNormalFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_216837_ (Lnet/minecraft/util/RandomSource;FFFF)F net/minecraft/util/valueproviders/ClampedNormalFloat/sample (Lnet/minecraft/util/RandomSource;FFFF)F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_274167_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$5 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_274168_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$6 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/ ()V net/minecraft/util/valueproviders/ClampedNormalInt/ ()V +MD: net/minecraft/util/valueproviders/ClampedNormalInt/ (FFII)V net/minecraft/util/valueproviders/ClampedNormalInt/ (FFII)V +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/ClampedNormalInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_142737_ ()I net/minecraft/util/valueproviders/ClampedNormalInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_142739_ ()I net/minecraft/util/valueproviders/ClampedNormalInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185879_ (FFII)Lnet/minecraft/util/valueproviders/ClampedNormalInt; net/minecraft/util/valueproviders/ClampedNormalInt/of (FFII)Lnet/minecraft/util/valueproviders/ClampedNormalInt; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185886_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185897_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$3 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185900_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$2 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185902_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185904_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/ClampedNormalInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_216845_ (Lnet/minecraft/util/RandomSource;FFFF)I net/minecraft/util/valueproviders/ClampedNormalInt/sample (Lnet/minecraft/util/RandomSource;FFFF)I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_274169_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$5 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_274170_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$6 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ConstantFloat/ ()V net/minecraft/util/valueproviders/ConstantFloat/ ()V +MD: net/minecraft/util/valueproviders/ConstantFloat/ (F)V net/minecraft/util/valueproviders/ConstantFloat/ (F)V +MD: net/minecraft/util/valueproviders/ConstantFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/ConstantFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_142734_ ()F net/minecraft/util/valueproviders/ConstantFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/ConstantFloat/m_142735_ ()F net/minecraft/util/valueproviders/ConstantFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146458_ (F)Lnet/minecraft/util/valueproviders/ConstantFloat; net/minecraft/util/valueproviders/ConstantFloat/of (F)Lnet/minecraft/util/valueproviders/ConstantFloat; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146460_ (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$4 (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146462_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantFloat; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$3 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantFloat; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146464_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146469_ (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lnet/minecraft/util/valueproviders/ConstantFloat; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$2 (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lnet/minecraft/util/valueproviders/ConstantFloat; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146472_ (Lnet/minecraft/util/valueproviders/ConstantFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/ConstantFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146474_ ()F net/minecraft/util/valueproviders/ConstantFloat/getValue ()F +MD: net/minecraft/util/valueproviders/ConstantFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/ConstantFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/ConstantFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ConstantFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ConstantInt/ ()V net/minecraft/util/valueproviders/ConstantInt/ ()V +MD: net/minecraft/util/valueproviders/ConstantInt/ (I)V net/minecraft/util/valueproviders/ConstantInt/ (I)V +MD: net/minecraft/util/valueproviders/ConstantInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/ConstantInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/ConstantInt/m_142737_ ()I net/minecraft/util/valueproviders/ConstantInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/ConstantInt/m_142739_ ()I net/minecraft/util/valueproviders/ConstantInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/ConstantInt/m_146483_ (I)Lnet/minecraft/util/valueproviders/ConstantInt; net/minecraft/util/valueproviders/ConstantInt/of (I)Lnet/minecraft/util/valueproviders/ConstantInt; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146485_ (Lnet/minecraft/util/valueproviders/ConstantInt;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/ConstantInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/ConstantInt;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146487_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantInt; net/minecraft/util/valueproviders/ConstantInt/lambda$static$3 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantInt; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146489_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ConstantInt/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146494_ (Lnet/minecraft/util/valueproviders/ConstantInt;)Lnet/minecraft/util/valueproviders/ConstantInt; net/minecraft/util/valueproviders/ConstantInt/lambda$static$2 (Lnet/minecraft/util/valueproviders/ConstantInt;)Lnet/minecraft/util/valueproviders/ConstantInt; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146497_ (Lnet/minecraft/util/valueproviders/ConstantInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ConstantInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/ConstantInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146499_ ()I net/minecraft/util/valueproviders/ConstantInt/getValue ()I +MD: net/minecraft/util/valueproviders/ConstantInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/ConstantInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/ConstantInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ConstantInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/FloatProvider/ ()V net/minecraft/util/valueproviders/FloatProvider/ ()V +MD: net/minecraft/util/valueproviders/FloatProvider/ ()V net/minecraft/util/valueproviders/FloatProvider/ ()V +MD: net/minecraft/util/valueproviders/FloatProvider/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/FloatProvider/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/FloatProvider/m_142734_ ()F net/minecraft/util/valueproviders/FloatProvider/getMaxValue ()F +MD: net/minecraft/util/valueproviders/FloatProvider/m_142735_ ()F net/minecraft/util/valueproviders/FloatProvider/getMinValue ()F +MD: net/minecraft/util/valueproviders/FloatProvider/m_146505_ (FF)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/FloatProvider/codec (FF)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/FloatProvider/m_146512_ (Lnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/FloatProvider/lambda$static$2 (Lnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/FloatProvider/m_146514_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/util/valueproviders/FloatProvider/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/util/valueproviders/FloatProvider/m_146517_ (Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/util/valueproviders/FloatProvider/lambda$static$0 (Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/util/valueproviders/FloatProvider/m_274171_ (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/FloatProvider/lambda$codec$4 (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/FloatProvider/m_274172_ (FFLnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/FloatProvider/lambda$codec$5 (FFLnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/FloatProvider/m_274173_ (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/FloatProvider/lambda$codec$3 (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/FloatProviderType/ ()V net/minecraft/util/valueproviders/FloatProviderType/ ()V +MD: net/minecraft/util/valueproviders/FloatProviderType/m_146524_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/FloatProviderType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/FloatProviderType/m_146526_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/FloatProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/FloatProviderType/m_146529_ ()Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/FloatProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProvider/ ()V net/minecraft/util/valueproviders/IntProvider/ ()V +MD: net/minecraft/util/valueproviders/IntProvider/ ()V net/minecraft/util/valueproviders/IntProvider/ ()V +MD: net/minecraft/util/valueproviders/IntProvider/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/IntProvider/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/IntProvider/m_142737_ ()I net/minecraft/util/valueproviders/IntProvider/getMaxValue ()I +MD: net/minecraft/util/valueproviders/IntProvider/m_142739_ ()I net/minecraft/util/valueproviders/IntProvider/getMinValue ()I +MD: net/minecraft/util/valueproviders/IntProvider/m_146540_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/IntProvider/lambda$static$2 (Lnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/IntProvider/m_146542_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/util/valueproviders/IntProvider/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/util/valueproviders/IntProvider/m_146545_ (II)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProvider/codec (II)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProvider/m_146548_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/util/valueproviders/IntProvider/lambda$static$0 (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/util/valueproviders/IntProvider/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/IntProvider/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/IntProvider/m_272161_ (IILcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProvider/codec (IILcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProvider/m_274174_ (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/IntProvider/lambda$codec$3 (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/IntProvider/m_274175_ (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/IntProvider/lambda$codec$4 (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/IntProvider/m_274176_ (IILnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/IntProvider/lambda$codec$5 (IILnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/IntProviderType/ ()V net/minecraft/util/valueproviders/IntProviderType/ ()V +MD: net/minecraft/util/valueproviders/IntProviderType/m_146555_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProviderType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProviderType/m_146557_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/IntProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/IntProviderType/m_146560_ ()Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/MultipliedFloats/ ([Lnet/minecraft/util/valueproviders/SampledFloat;)V net/minecraft/util/valueproviders/MultipliedFloats/ ([Lnet/minecraft/util/valueproviders/SampledFloat;)V +MD: net/minecraft/util/valueproviders/MultipliedFloats/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/MultipliedFloats/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/MultipliedFloats/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/MultipliedFloats/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/SampledFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/SampledFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/ ()V net/minecraft/util/valueproviders/TrapezoidFloat/ ()V +MD: net/minecraft/util/valueproviders/TrapezoidFloat/ (FFF)V net/minecraft/util/valueproviders/TrapezoidFloat/ (FFF)V +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/TrapezoidFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_142734_ ()F net/minecraft/util/valueproviders/TrapezoidFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_142735_ ()F net/minecraft/util/valueproviders/TrapezoidFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146571_ (FFF)Lnet/minecraft/util/valueproviders/TrapezoidFloat; net/minecraft/util/valueproviders/TrapezoidFloat/of (FFF)Lnet/minecraft/util/valueproviders/TrapezoidFloat; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146577_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146582_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$2 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146585_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$1 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146587_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/TrapezoidFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_274177_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$4 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_274178_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$6 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_274179_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$5 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/TrapezoidFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformFloat/ ()V net/minecraft/util/valueproviders/UniformFloat/ ()V +MD: net/minecraft/util/valueproviders/UniformFloat/ (FF)V net/minecraft/util/valueproviders/UniformFloat/ (FF)V +MD: net/minecraft/util/valueproviders/UniformFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/UniformFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/UniformFloat/m_142734_ ()F net/minecraft/util/valueproviders/UniformFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/UniformFloat/m_142735_ ()F net/minecraft/util/valueproviders/UniformFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/UniformFloat/m_146600_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/UniformFloat/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/UniformFloat/m_146605_ (FF)Lnet/minecraft/util/valueproviders/UniformFloat; net/minecraft/util/valueproviders/UniformFloat/of (FF)Lnet/minecraft/util/valueproviders/UniformFloat; +MD: net/minecraft/util/valueproviders/UniformFloat/m_146608_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/UniformFloat/lambda$static$1 (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/UniformFloat/m_146611_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/UniformFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/UniformFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/UniformFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/UniformFloat/m_274180_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/UniformFloat/lambda$static$3 (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformFloat/m_274181_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/UniformFloat/lambda$static$4 (Lnet/minecraft/util/valueproviders/UniformFloat;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/UniformFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/UniformFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformInt/ ()V net/minecraft/util/valueproviders/UniformInt/ ()V +MD: net/minecraft/util/valueproviders/UniformInt/ (II)V net/minecraft/util/valueproviders/UniformInt/ (II)V +MD: net/minecraft/util/valueproviders/UniformInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/UniformInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/UniformInt/m_142737_ ()I net/minecraft/util/valueproviders/UniformInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/UniformInt/m_142739_ ()I net/minecraft/util/valueproviders/UniformInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/UniformInt/m_146622_ (II)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/util/valueproviders/UniformInt/of (II)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/util/valueproviders/UniformInt/m_146627_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/UniformInt/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/UniformInt/m_146632_ (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/UniformInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/UniformInt/m_146635_ (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/UniformInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/UniformInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/UniformInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/UniformInt/m_274182_ (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/UniformInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/UniformInt/m_274183_ (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/String; net/minecraft/util/valueproviders/UniformInt/lambda$static$3 (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/UniformInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/WeightedListInt/ ()V net/minecraft/util/valueproviders/WeightedListInt/ ()V +MD: net/minecraft/util/valueproviders/WeightedListInt/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V net/minecraft/util/valueproviders/WeightedListInt/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V +MD: net/minecraft/util/valueproviders/WeightedListInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/WeightedListInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/WeightedListInt/m_142737_ ()I net/minecraft/util/valueproviders/WeightedListInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/WeightedListInt/m_142739_ ()I net/minecraft/util/valueproviders/WeightedListInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/WeightedListInt/m_185917_ (Lnet/minecraft/util/valueproviders/WeightedListInt;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/valueproviders/WeightedListInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/WeightedListInt;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/valueproviders/WeightedListInt/m_185919_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/WeightedListInt/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/WeightedListInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/WeightedListInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/worldupdate/WorldUpgrader/ ()V net/minecraft/util/worldupdate/WorldUpgrader/ ()V +MD: net/minecraft/util/worldupdate/WorldUpgrader/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/Registry;Z)V net/minecraft/util/worldupdate/WorldUpgrader/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/Registry;Z)V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18820_ ()V net/minecraft/util/worldupdate/WorldUpgrader/cancel ()V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18821_ (Ljava/io/File;Ljava/lang/String;)Z net/minecraft/util/worldupdate/WorldUpgrader/lambda$getAllChunkPos$2 (Ljava/io/File;Ljava/lang/String;)Z +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18824_ (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/util/worldupdate/WorldUpgrader/lambda$new$0 (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18827_ (Lnet/minecraft/resources/ResourceKey;)F net/minecraft/util/worldupdate/WorldUpgrader/dimensionProgress (Lnet/minecraft/resources/ResourceKey;)F +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18829_ ()Z net/minecraft/util/worldupdate/WorldUpgrader/isFinished ()Z +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18830_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/List; net/minecraft/util/worldupdate/WorldUpgrader/getAllChunkPos (Lnet/minecraft/resources/ResourceKey;)Ljava/util/List; +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18833_ ()F net/minecraft/util/worldupdate/WorldUpgrader/getProgress ()F +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18834_ ()I net/minecraft/util/worldupdate/WorldUpgrader/getTotalChunks ()I +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18835_ ()I net/minecraft/util/worldupdate/WorldUpgrader/getConverted ()I +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18836_ ()I net/minecraft/util/worldupdate/WorldUpgrader/getSkipped ()I +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18837_ ()Lnet/minecraft/network/chat/Component; net/minecraft/util/worldupdate/WorldUpgrader/getStatus ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18838_ ()V net/minecraft/util/worldupdate/WorldUpgrader/work ()V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18839_ ()Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/util/worldupdate/WorldUpgrader/lambda$work$1 ()Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_246941_ ()Ljava/util/Set; net/minecraft/util/worldupdate/WorldUpgrader/levels ()Ljava/util/Set; +MD: net/minecraft/world/BossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/world/BossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/world/BossEvent/m_142711_ (F)V net/minecraft/world/BossEvent/setProgress (F)V +MD: net/minecraft/world/BossEvent/m_142717_ ()F net/minecraft/world/BossEvent/getProgress ()F +MD: net/minecraft/world/BossEvent/m_18860_ ()Ljava/util/UUID; net/minecraft/world/BossEvent/getId ()Ljava/util/UUID; +MD: net/minecraft/world/BossEvent/m_18861_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/BossEvent/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/BossEvent/m_18862_ ()Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent/getColor ()Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent/m_18863_ ()Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent/getOverlay ()Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent/m_18864_ ()Z net/minecraft/world/BossEvent/shouldDarkenScreen ()Z +MD: net/minecraft/world/BossEvent/m_18865_ ()Z net/minecraft/world/BossEvent/shouldPlayBossMusic ()Z +MD: net/minecraft/world/BossEvent/m_18866_ ()Z net/minecraft/world/BossEvent/shouldCreateWorldFog ()Z +MD: net/minecraft/world/BossEvent/m_5648_ (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/world/BossEvent/setOverlay (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/world/BossEvent/m_6451_ (Lnet/minecraft/world/BossEvent$BossBarColor;)V net/minecraft/world/BossEvent/setColor (Lnet/minecraft/world/BossEvent$BossBarColor;)V +MD: net/minecraft/world/BossEvent/m_6456_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/BossEvent/setName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/BossEvent/m_7003_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/world/BossEvent/setDarkenScreen (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/world/BossEvent/m_7005_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/world/BossEvent/setPlayBossMusic (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/world/BossEvent/m_7006_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/world/BossEvent/setCreateWorldFog (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/world/BossEvent$BossBarColor/ ()V net/minecraft/world/BossEvent$BossBarColor/ ()V +MD: net/minecraft/world/BossEvent$BossBarColor/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/ChatFormatting;)V net/minecraft/world/BossEvent$BossBarColor/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/BossEvent$BossBarColor/m_146640_ ()[Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/$values ()[Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarColor/m_18883_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/BossEvent$BossBarColor/getFormatting ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/BossEvent$BossBarColor/m_18884_ (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/byName (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarColor/m_18886_ ()Ljava/lang/String; net/minecraft/world/BossEvent$BossBarColor/getName ()Ljava/lang/String; +MD: net/minecraft/world/BossEvent$BossBarColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarColor/values ()[Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/values ()[Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarOverlay/ ()V net/minecraft/world/BossEvent$BossBarOverlay/ ()V +MD: net/minecraft/world/BossEvent$BossBarOverlay/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/BossEvent$BossBarOverlay/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/BossEvent$BossBarOverlay/m_146641_ ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/$values ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent$BossBarOverlay/m_18902_ ()Ljava/lang/String; net/minecraft/world/BossEvent$BossBarOverlay/getName ()Ljava/lang/String; +MD: net/minecraft/world/BossEvent$BossBarOverlay/m_18903_ (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/byName (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent$BossBarOverlay/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent$BossBarOverlay/values ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/values ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/Clearable/m_18908_ (Ljava/lang/Object;)V net/minecraft/world/Clearable/tryClear (Ljava/lang/Object;)V +MD: net/minecraft/world/Clearable/m_6211_ ()V net/minecraft/world/Clearable/clearContent ()V +MD: net/minecraft/world/CompoundContainer/ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;)V net/minecraft/world/CompoundContainer/ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/CompoundContainer/m_18927_ (Lnet/minecraft/world/Container;)Z net/minecraft/world/CompoundContainer/contains (Lnet/minecraft/world/Container;)Z +MD: net/minecraft/world/CompoundContainer/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/CompoundContainer/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/CompoundContainer/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/CompoundContainer/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/CompoundContainer/m_6211_ ()V net/minecraft/world/CompoundContainer/clearContent ()V +MD: net/minecraft/world/CompoundContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/CompoundContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/CompoundContainer/m_6596_ ()V net/minecraft/world/CompoundContainer/setChanged ()V +MD: net/minecraft/world/CompoundContainer/m_6643_ ()I net/minecraft/world/CompoundContainer/getContainerSize ()I +MD: net/minecraft/world/CompoundContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/CompoundContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/CompoundContainer/m_6893_ ()I net/minecraft/world/CompoundContainer/getMaxStackSize ()I +MD: net/minecraft/world/CompoundContainer/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/CompoundContainer/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/CompoundContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/CompoundContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/CompoundContainer/m_7983_ ()Z net/minecraft/world/CompoundContainer/isEmpty ()Z +MD: net/minecraft/world/CompoundContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/CompoundContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/CompoundContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/CompoundContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/Container/m_18947_ (Lnet/minecraft/world/item/Item;)I net/minecraft/world/Container/countItem (Lnet/minecraft/world/item/Item;)I +MD: net/minecraft/world/Container/m_18949_ (Ljava/util/Set;)Z net/minecraft/world/Container/hasAnyOf (Ljava/util/Set;)Z +MD: net/minecraft/world/Container/m_216871_ (Ljava/util/Set;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/Container/lambda$hasAnyOf$0 (Ljava/util/Set;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/Container/m_216874_ (Ljava/util/function/Predicate;)Z net/minecraft/world/Container/hasAnyMatching (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/Container/m_271806_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/Container/stillValidBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/Container/m_271862_ (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/Container/canTakeItem (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/Container/m_272074_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/Container/stillValidBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/Container/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/Container/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/Container/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/Container/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/Container/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/Container/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/Container/m_6596_ ()V net/minecraft/world/Container/setChanged ()V +MD: net/minecraft/world/Container/m_6643_ ()I net/minecraft/world/Container/getContainerSize ()I +MD: net/minecraft/world/Container/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/Container/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/Container/m_6893_ ()I net/minecraft/world/Container/getMaxStackSize ()I +MD: net/minecraft/world/Container/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/Container/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/Container/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/Container/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/Container/m_7983_ ()Z net/minecraft/world/Container/isEmpty ()Z +MD: net/minecraft/world/Container/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/Container/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/Container/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/Container/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ContainerHelper/ ()V net/minecraft/world/ContainerHelper/ ()V +MD: net/minecraft/world/ContainerHelper/m_18956_ (Lnet/minecraft/world/Container;Ljava/util/function/Predicate;IZ)I net/minecraft/world/ContainerHelper/clearOrCountMatchingItems (Lnet/minecraft/world/Container;Ljava/util/function/Predicate;IZ)I +MD: net/minecraft/world/ContainerHelper/m_18961_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;IZ)I net/minecraft/world/ContainerHelper/clearOrCountMatchingItems (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;IZ)I +MD: net/minecraft/world/ContainerHelper/m_18966_ (Ljava/util/List;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ContainerHelper/takeItem (Ljava/util/List;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ContainerHelper/m_18969_ (Ljava/util/List;II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ContainerHelper/removeItem (Ljava/util/List;II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ContainerHelper/m_18973_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ContainerHelper/saveAllItems (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ContainerHelper/m_18976_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;Z)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ContainerHelper/saveAllItems (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;Z)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ContainerHelper/m_18980_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/ContainerHelper/loadAllItems (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/ContainerListener/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/ContainerListener/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/ ()V net/minecraft/world/Containers/ ()V +MD: net/minecraft/world/Containers/m_18986_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/Container;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/m_18992_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/Containers/dropItemStack (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/Containers/m_18998_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/Container;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/m_19002_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/Container;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/m_19006_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/Containers/lambda$dropContents$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/Containers/m_19010_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/Difficulty/ ()V net/minecraft/world/Difficulty/ ()V +MD: net/minecraft/world/Difficulty/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/Difficulty/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/Difficulty/m_146645_ ()[Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/$values ()[Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/m_19028_ ()I net/minecraft/world/Difficulty/getId ()I +MD: net/minecraft/world/Difficulty/m_19029_ (I)Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/byId (I)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/m_19031_ (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/byName (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/m_19033_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Difficulty/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Difficulty/m_19036_ ()Ljava/lang/String; net/minecraft/world/Difficulty/getKey ()Ljava/lang/String; +MD: net/minecraft/world/Difficulty/m_267622_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Difficulty/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Difficulty/m_7912_ ()Ljava/lang/String; net/minecraft/world/Difficulty/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/Difficulty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/values ()[Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/values ()[Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/DifficultyInstance/ (Lnet/minecraft/world/Difficulty;JJF)V net/minecraft/world/DifficultyInstance/ (Lnet/minecraft/world/Difficulty;JJF)V +MD: net/minecraft/world/DifficultyInstance/m_146649_ ()Z net/minecraft/world/DifficultyInstance/isHard ()Z +MD: net/minecraft/world/DifficultyInstance/m_19048_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/DifficultyInstance/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/DifficultyInstance/m_19049_ (F)Z net/minecraft/world/DifficultyInstance/isHarderThan (F)Z +MD: net/minecraft/world/DifficultyInstance/m_19051_ (Lnet/minecraft/world/Difficulty;JJF)F net/minecraft/world/DifficultyInstance/calculateDifficulty (Lnet/minecraft/world/Difficulty;JJF)F +MD: net/minecraft/world/DifficultyInstance/m_19056_ ()F net/minecraft/world/DifficultyInstance/getEffectiveDifficulty ()F +MD: net/minecraft/world/DifficultyInstance/m_19057_ ()F net/minecraft/world/DifficultyInstance/getSpecialMultiplier ()F +MD: net/minecraft/world/InteractionHand/ ()V net/minecraft/world/InteractionHand/ ()V +MD: net/minecraft/world/InteractionHand/ (Ljava/lang/String;I)V net/minecraft/world/InteractionHand/ (Ljava/lang/String;I)V +MD: net/minecraft/world/InteractionHand/m_146650_ ()[Lnet/minecraft/world/InteractionHand; net/minecraft/world/InteractionHand/$values ()[Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/InteractionHand/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionHand; net/minecraft/world/InteractionHand/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/InteractionHand/values ()[Lnet/minecraft/world/InteractionHand; net/minecraft/world/InteractionHand/values ()[Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/InteractionResult/ ()V net/minecraft/world/InteractionResult/ ()V +MD: net/minecraft/world/InteractionResult/ (Ljava/lang/String;I)V net/minecraft/world/InteractionResult/ (Ljava/lang/String;I)V +MD: net/minecraft/world/InteractionResult/m_146666_ ()Z net/minecraft/world/InteractionResult/shouldAwardStats ()Z +MD: net/minecraft/world/InteractionResult/m_146667_ ()[Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/$values ()[Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResult/m_19077_ ()Z net/minecraft/world/InteractionResult/consumesAction ()Z +MD: net/minecraft/world/InteractionResult/m_19078_ (Z)Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/sidedSuccess (Z)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResult/m_19080_ ()Z net/minecraft/world/InteractionResult/shouldSwing ()Z +MD: net/minecraft/world/InteractionResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResult/values ()[Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/values ()[Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResultHolder/ (Lnet/minecraft/world/InteractionResult;Ljava/lang/Object;)V net/minecraft/world/InteractionResultHolder/ (Lnet/minecraft/world/InteractionResult;Ljava/lang/Object;)V +MD: net/minecraft/world/InteractionResultHolder/m_19089_ ()Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResultHolder/getResult ()Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResultHolder/m_19090_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/success (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19092_ (Ljava/lang/Object;Z)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/sidedSuccess (Ljava/lang/Object;Z)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19095_ ()Ljava/lang/Object; net/minecraft/world/InteractionResultHolder/getObject ()Ljava/lang/Object; +MD: net/minecraft/world/InteractionResultHolder/m_19096_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/consume (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19098_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/pass (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19100_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/fail (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/LockCode/ ()V net/minecraft/world/LockCode/ ()V +MD: net/minecraft/world/LockCode/ (Ljava/lang/String;)V net/minecraft/world/LockCode/ (Ljava/lang/String;)V +MD: net/minecraft/world/LockCode/m_19107_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/LockCode/unlocksWith (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/LockCode/m_19109_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/LockCode/addToTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/LockCode/m_19111_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/LockCode; net/minecraft/world/LockCode/fromTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/LockCode; +MD: net/minecraft/world/MenuProvider/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/MenuProvider/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Nameable/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Nameable/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Nameable/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_8077_ ()Z net/minecraft/world/Nameable/hasCustomName ()Z +MD: net/minecraft/world/RandomSequence/ ()V net/minecraft/world/RandomSequence/ ()V +MD: net/minecraft/world/RandomSequence/ (JLnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/RandomSequence/ (JLnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/RandomSequence/ (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)V net/minecraft/world/RandomSequence/ (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)V +MD: net/minecraft/world/RandomSequence/m_287174_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/RandomSequence/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/RandomSequence/m_287244_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/RandomSequence/random ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/RandomSequence/m_287250_ (Lnet/minecraft/world/RandomSequence;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; net/minecraft/world/RandomSequence/lambda$static$0 (Lnet/minecraft/world/RandomSequence;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +MD: net/minecraft/world/RandomSequence/m_288221_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/RandomSequence/seedForKey (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/RandomSequence/m_289190_ (JLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; net/minecraft/world/RandomSequence/createSequence (JLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +MD: net/minecraft/world/RandomSequences/ ()V net/minecraft/world/RandomSequences/ ()V +MD: net/minecraft/world/RandomSequences/ (J)V net/minecraft/world/RandomSequences/ (J)V +MD: net/minecraft/world/RandomSequences/m_287137_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/RandomSequence; net/minecraft/world/RandomSequences/lambda$get$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/RandomSequence; +MD: net/minecraft/world/RandomSequences/m_287187_ (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; net/minecraft/world/RandomSequences/load (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/world/RandomSequences/m_287279_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/RandomSequence;)V net/minecraft/world/RandomSequences/lambda$save$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/RandomSequence;)V +MD: net/minecraft/world/RandomSequences/m_287292_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; net/minecraft/world/RandomSequences/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/RandomSequences/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/RandomSequences/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/RandomSequences$1/ (Lnet/minecraft/world/RandomSequences;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/RandomSequences$1/ (Lnet/minecraft/world/RandomSequences;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/RandomSequences$1/m_188499_ ()Z net/minecraft/world/RandomSequences$1/nextBoolean ()Z +MD: net/minecraft/world/RandomSequences$1/m_188500_ ()D net/minecraft/world/RandomSequences$1/nextDouble ()D +MD: net/minecraft/world/RandomSequences$1/m_188501_ ()F net/minecraft/world/RandomSequences$1/nextFloat ()F +MD: net/minecraft/world/RandomSequences$1/m_188502_ ()I net/minecraft/world/RandomSequences$1/nextInt ()I +MD: net/minecraft/world/RandomSequences$1/m_188503_ (I)I net/minecraft/world/RandomSequences$1/nextInt (I)I +MD: net/minecraft/world/RandomSequences$1/m_188505_ ()J net/minecraft/world/RandomSequences$1/nextLong ()J +MD: net/minecraft/world/RandomSequences$1/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/RandomSequences$1/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/RandomSequences$1/m_188583_ ()D net/minecraft/world/RandomSequences$1/nextGaussian ()D +MD: net/minecraft/world/RandomSequences$1/m_188584_ (J)V net/minecraft/world/RandomSequences$1/setSeed (J)V +MD: net/minecraft/world/RandomSequences$1/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/RandomSequences$1/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/SimpleContainer/ (I)V net/minecraft/world/SimpleContainer/ (I)V +MD: net/minecraft/world/SimpleContainer/ ([Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/ ([Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19164_ (Lnet/minecraft/world/ContainerListener;)V net/minecraft/world/SimpleContainer/addListener (Lnet/minecraft/world/ContainerListener;)V +MD: net/minecraft/world/SimpleContainer/m_19170_ (Lnet/minecraft/world/item/Item;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/removeItemType (Lnet/minecraft/world/item/Item;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_19173_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/addItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_19181_ (Lnet/minecraft/world/ContainerListener;)V net/minecraft/world/SimpleContainer/removeListener (Lnet/minecraft/world/ContainerListener;)V +MD: net/minecraft/world/SimpleContainer/m_19183_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/SimpleContainer/canAddItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/SimpleContainer/m_19185_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/moveItemsBetweenStacks (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19189_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/moveItemToEmptySlots (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19191_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/moveItemToOccupiedSlotsWithSameType (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19193_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/SimpleContainer/lambda$toString$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/SimpleContainer/m_19195_ ()Ljava/util/List; net/minecraft/world/SimpleContainer/removeAllItems ()Ljava/util/List; +MD: net/minecraft/world/SimpleContainer/m_19196_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/SimpleContainer/lambda$removeAllItems$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/SimpleContainer/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/SimpleContainer/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/SimpleContainer/m_6211_ ()V net/minecraft/world/SimpleContainer/clearContent ()V +MD: net/minecraft/world/SimpleContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/SimpleContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/SimpleContainer/m_6596_ ()V net/minecraft/world/SimpleContainer/setChanged ()V +MD: net/minecraft/world/SimpleContainer/m_6643_ ()I net/minecraft/world/SimpleContainer/getContainerSize ()I +MD: net/minecraft/world/SimpleContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_7797_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/SimpleContainer/fromTag (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/SimpleContainer/m_7927_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/SimpleContainer/createTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/SimpleContainer/m_7983_ ()Z net/minecraft/world/SimpleContainer/isEmpty ()Z +MD: net/minecraft/world/SimpleContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/toString ()Ljava/lang/String; net/minecraft/world/SimpleContainer/toString ()Ljava/lang/String; +MD: net/minecraft/world/SimpleMenuProvider/ (Lnet/minecraft/world/inventory/MenuConstructor;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/SimpleMenuProvider/ (Lnet/minecraft/world/inventory/MenuConstructor;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/SimpleMenuProvider/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/SimpleMenuProvider/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/SimpleMenuProvider/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/SimpleMenuProvider/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/WorldlyContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/WorldlyContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/WorldlyContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/WorldlyContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/WorldlyContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/WorldlyContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/WorldlyContainerHolder/m_5840_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; net/minecraft/world/WorldlyContainerHolder/getContainer (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; +MD: net/minecraft/world/damagesource/CombatEntry/ (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/damagesource/FallLocation;F)V net/minecraft/world/damagesource/CombatEntry/ (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/damagesource/FallLocation;F)V +MD: net/minecraft/world/damagesource/CombatEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/damagesource/CombatEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/damagesource/CombatEntry/f_19250_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/CombatEntry/source ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/CombatEntry/f_19252_ ()F net/minecraft/world/damagesource/CombatEntry/damage ()F +MD: net/minecraft/world/damagesource/CombatEntry/f_19255_ ()F net/minecraft/world/damagesource/CombatEntry/fallDistance ()F +MD: net/minecraft/world/damagesource/CombatEntry/f_289042_ ()Lnet/minecraft/world/damagesource/FallLocation; net/minecraft/world/damagesource/CombatEntry/fallLocation ()Lnet/minecraft/world/damagesource/FallLocation; +MD: net/minecraft/world/damagesource/CombatEntry/hashCode ()I net/minecraft/world/damagesource/CombatEntry/hashCode ()I +MD: net/minecraft/world/damagesource/CombatEntry/toString ()Ljava/lang/String; net/minecraft/world/damagesource/CombatEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/CombatRules/ ()V net/minecraft/world/damagesource/CombatRules/ ()V +MD: net/minecraft/world/damagesource/CombatRules/m_19269_ (FF)F net/minecraft/world/damagesource/CombatRules/getDamageAfterMagicAbsorb (FF)F +MD: net/minecraft/world/damagesource/CombatRules/m_19272_ (FFF)F net/minecraft/world/damagesource/CombatRules/getDamageAfterAbsorb (FFF)F +MD: net/minecraft/world/damagesource/CombatTracker/ ()V net/minecraft/world/damagesource/CombatTracker/ ()V +MD: net/minecraft/world/damagesource/CombatTracker/ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/damagesource/CombatTracker/ (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/damagesource/CombatTracker/m_19293_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getDeathMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_19295_ ()I net/minecraft/world/damagesource/CombatTracker/getCombatDuration ()I +MD: net/minecraft/world/damagesource/CombatTracker/m_19296_ ()V net/minecraft/world/damagesource/CombatTracker/recheckStatus ()V +MD: net/minecraft/world/damagesource/CombatTracker/m_19298_ ()Lnet/minecraft/world/damagesource/CombatEntry; net/minecraft/world/damagesource/CombatTracker/getMostSignificantFall ()Lnet/minecraft/world/damagesource/CombatEntry; +MD: net/minecraft/world/damagesource/CombatTracker/m_289194_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/damagesource/CombatTracker/recordDamage (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/damagesource/CombatTracker/m_289206_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getMessageForAssistedFall (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_289212_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getDisplayName (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_289215_ (Lnet/minecraft/world/damagesource/CombatEntry;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getFallMessage (Lnet/minecraft/world/damagesource/CombatEntry;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_289225_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/damagesource/CombatTracker/shouldEnterCombat (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/damagesource/DamageEffects/ ()V net/minecraft/world/damagesource/DamageEffects/ ()V +MD: net/minecraft/world/damagesource/DamageEffects/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/damagesource/DamageEffects/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/damagesource/DamageEffects/m_269345_ ()[Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageEffects/$values ()[Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageEffects/m_269402_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/damagesource/DamageEffects/sound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/damagesource/DamageEffects/m_7912_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageEffects/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageEffects/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageEffects/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageEffects/values ()[Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageEffects/values ()[Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageScaling/ ()V net/minecraft/world/damagesource/DamageScaling/ ()V +MD: net/minecraft/world/damagesource/DamageScaling/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/damagesource/DamageScaling/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/damagesource/DamageScaling/m_269458_ ()[Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageScaling/$values ()[Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageScaling/m_7912_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageScaling/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageScaling/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageScaling/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageScaling/values ()[Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageScaling/values ()[Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/damagesource/DamageSource/m_19377_ ()F net/minecraft/world/damagesource/DamageSource/getFoodExhaustion ()F +MD: net/minecraft/world/damagesource/DamageSource/m_19385_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageSource/getMsgId ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageSource/m_19390_ ()Z net/minecraft/world/damagesource/DamageSource/isCreativePlayer ()Z +MD: net/minecraft/world/damagesource/DamageSource/m_269014_ ()Z net/minecraft/world/damagesource/DamageSource/isIndirect ()Z +MD: net/minecraft/world/damagesource/DamageSource/m_269150_ ()Lnet/minecraft/core/Holder; net/minecraft/world/damagesource/DamageSource/typeHolder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/damagesource/DamageSource/m_269181_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/damagesource/DamageSource/sourcePositionRaw ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/damagesource/DamageSource/m_269415_ ()Lnet/minecraft/world/damagesource/DamageType; net/minecraft/world/damagesource/DamageSource/type ()Lnet/minecraft/world/damagesource/DamageType; +MD: net/minecraft/world/damagesource/DamageSource/m_269533_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/damagesource/DamageSource/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/damagesource/DamageSource/m_276093_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/damagesource/DamageSource/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/damagesource/DamageSource/m_6157_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/DamageSource/getLocalizedDeathMessage (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/DamageSource/m_7270_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/damagesource/DamageSource/getSourcePosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/damagesource/DamageSource/m_7639_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/damagesource/DamageSource/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/damagesource/DamageSource/m_7640_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/damagesource/DamageSource/getDirectEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/damagesource/DamageSource/m_7986_ ()Z net/minecraft/world/damagesource/DamageSource/scalesWithDifficulty ()Z +MD: net/minecraft/world/damagesource/DamageSource/toString ()Ljava/lang/String; net/minecraft/world/damagesource/DamageSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageSource$1/ ()V net/minecraft/world/damagesource/DamageSource$1/ ()V +MD: net/minecraft/world/damagesource/DamageSources/ (Lnet/minecraft/core/RegistryAccess;)V net/minecraft/world/damagesource/DamageSources/ (Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/world/damagesource/DamageSources/m_268989_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fall ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_268994_ (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fireworks (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_268998_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/source (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269036_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/explosion (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269047_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/hotFloor ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269063_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/drown ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269064_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/starve ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269075_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/playerAttack (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269079_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/source (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269093_ (Lnet/minecraft/world/level/Explosion;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/explosion (Lnet/minecraft/world/level/Explosion;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269103_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fallingStalactite (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269104_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/indirectMagic (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269109_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/freeze ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269230_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/anvil (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269233_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/lava ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269251_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/wither ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269254_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/dragonBreath ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269264_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/generic ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269285_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/sonicBoom (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269298_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/source (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269299_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/mobProjectile (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269318_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/inWall ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269325_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/cactus ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269333_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/mobAttack (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269341_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fellOutOfWorld ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269354_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/cramming ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269364_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/noAggroMobAttack (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269374_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/thorns (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269383_ (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/witherSkull (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269387_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/inFire ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269390_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/thrown (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269396_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/sting (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269418_ (Lnet/minecraft/world/entity/projectile/AbstractArrow;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/arrow (Lnet/minecraft/world/entity/projectile/AbstractArrow;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269425_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/magic ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269453_ (Lnet/minecraft/world/entity/projectile/Fireball;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fireball (Lnet/minecraft/world/entity/projectile/Fireball;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269483_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/dryOut ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269488_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/badRespawnPointExplosion (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269515_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/flyIntoWall ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269525_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/trident (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269548_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/lightningBolt ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269549_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/onFire ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269555_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/sweetBerryBush ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269564_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fallingBlock (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269571_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/stalagmite ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_287172_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/genericKill ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_287287_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/outOfBorder ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageType/ ()V net/minecraft/world/damagesource/DamageType/ ()V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;FLnet/minecraft/world/damagesource/DamageEffects;)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;FLnet/minecraft/world/damagesource/DamageEffects;)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;F)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;F)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;Lnet/minecraft/world/damagesource/DeathMessageType;)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;Lnet/minecraft/world/damagesource/DeathMessageType;)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;F)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;F)V +MD: net/minecraft/world/damagesource/DamageType/equals (Ljava/lang/Object;)Z net/minecraft/world/damagesource/DamageType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/damagesource/DamageType/f_268472_ ()Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DamageType/deathMessageType ()Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/DamageType/f_268501_ ()Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageType/scaling ()Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageType/f_268663_ ()F net/minecraft/world/damagesource/DamageType/exhaustion ()F +MD: net/minecraft/world/damagesource/DamageType/f_268677_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageType/msgId ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageType/f_268686_ ()Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageType/effects ()Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageType/hashCode ()I net/minecraft/world/damagesource/DamageType/hashCode ()I +MD: net/minecraft/world/damagesource/DamageType/m_269293_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/damagesource/DamageType/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/damagesource/DamageType/toString ()Ljava/lang/String; net/minecraft/world/damagesource/DamageType/toString ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageTypes/ ()V net/minecraft/world/damagesource/DamageTypes/ ()V +MD: net/minecraft/world/damagesource/DamageTypes/m_269594_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/damagesource/DamageTypes/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/damagesource/DeathMessageType/ ()V net/minecraft/world/damagesource/DeathMessageType/ ()V +MD: net/minecraft/world/damagesource/DeathMessageType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/damagesource/DeathMessageType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/damagesource/DeathMessageType/m_269013_ ()[Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DeathMessageType/$values ()[Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/DeathMessageType/m_7912_ ()Ljava/lang/String; net/minecraft/world/damagesource/DeathMessageType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DeathMessageType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DeathMessageType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/DeathMessageType/values ()[Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DeathMessageType/values ()[Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/FallLocation/ ()V net/minecraft/world/damagesource/FallLocation/ ()V +MD: net/minecraft/world/damagesource/FallLocation/ (Ljava/lang/String;)V net/minecraft/world/damagesource/FallLocation/ (Ljava/lang/String;)V +MD: net/minecraft/world/damagesource/FallLocation/equals (Ljava/lang/Object;)Z net/minecraft/world/damagesource/FallLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/damagesource/FallLocation/f_289026_ ()Ljava/lang/String; net/minecraft/world/damagesource/FallLocation/id ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/FallLocation/hashCode ()I net/minecraft/world/damagesource/FallLocation/hashCode ()I +MD: net/minecraft/world/damagesource/FallLocation/m_289192_ ()Ljava/lang/String; net/minecraft/world/damagesource/FallLocation/languageKey ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/FallLocation/m_289203_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/FallLocation; net/minecraft/world/damagesource/FallLocation/getCurrentFallLocation (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/FallLocation; +MD: net/minecraft/world/damagesource/FallLocation/m_289230_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/damagesource/FallLocation; net/minecraft/world/damagesource/FallLocation/blockToFallLocation (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/damagesource/FallLocation; +MD: net/minecraft/world/damagesource/FallLocation/toString ()Ljava/lang/String; net/minecraft/world/damagesource/FallLocation/toString ()Ljava/lang/String; +MD: net/minecraft/world/effect/AbsoptionMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/AbsoptionMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/AbsoptionMobEffect/m_6385_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/AbsoptionMobEffect/addAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/AbsoptionMobEffect/m_6386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/AbsoptionMobEffect/removeAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/AttackDamageMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;ID)V net/minecraft/world/effect/AttackDamageMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;ID)V +MD: net/minecraft/world/effect/AttackDamageMobEffect/m_7048_ (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D net/minecraft/world/effect/AttackDamageMobEffect/getAttributeModifierValue (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D +MD: net/minecraft/world/effect/HealthBoostMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/HealthBoostMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/HealthBoostMobEffect/m_6386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/HealthBoostMobEffect/removeAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/InstantenousMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/InstantenousMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/InstantenousMobEffect/m_6584_ (II)Z net/minecraft/world/effect/InstantenousMobEffect/isDurationEffectTick (II)Z +MD: net/minecraft/world/effect/InstantenousMobEffect/m_8093_ ()Z net/minecraft/world/effect/InstantenousMobEffect/isInstantenous ()Z +MD: net/minecraft/world/effect/MobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/MobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/MobEffect/m_19453_ (I)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffect/byId (I)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffect/m_19459_ (Lnet/minecraft/world/effect/MobEffect;)I net/minecraft/world/effect/MobEffect/getId (Lnet/minecraft/world/effect/MobEffect;)I +MD: net/minecraft/world/effect/MobEffect/m_19461_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;ID)V net/minecraft/world/effect/MobEffect/applyInstantenousEffect (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;ID)V +MD: net/minecraft/world/effect/MobEffect/m_19472_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffect/addAttributeModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffect/m_19477_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffect/getOrCreateDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffect/m_19481_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffect/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffect/m_19482_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/effect/MobEffect/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/effect/MobEffect/m_19483_ ()Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffect/getCategory ()Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffect/m_19484_ ()I net/minecraft/world/effect/MobEffect/getColor ()I +MD: net/minecraft/world/effect/MobEffect/m_19485_ ()Ljava/util/Map; net/minecraft/world/effect/MobEffect/getAttributeModifiers ()Ljava/util/Map; +MD: net/minecraft/world/effect/MobEffect/m_19486_ ()Z net/minecraft/world/effect/MobEffect/isBeneficial ()Z +MD: net/minecraft/world/effect/MobEffect/m_216879_ (Ljava/util/function/Supplier;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffect/setFactorDataFactory (Ljava/util/function/Supplier;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffect/m_216881_ ()Ljava/util/Optional; net/minecraft/world/effect/MobEffect/createFactorData ()Ljava/util/Optional; +MD: net/minecraft/world/effect/MobEffect/m_216882_ (Lnet/minecraft/world/effect/MobEffect;)I net/minecraft/world/effect/MobEffect/getIdFromNullable (Lnet/minecraft/world/effect/MobEffect;)I +MD: net/minecraft/world/effect/MobEffect/m_216884_ ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/world/effect/MobEffect/lambda$new$0 ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/world/effect/MobEffect/m_6385_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/MobEffect/addAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/MobEffect/m_6386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/MobEffect/removeAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/MobEffect/m_6584_ (II)Z net/minecraft/world/effect/MobEffect/isDurationEffectTick (II)Z +MD: net/minecraft/world/effect/MobEffect/m_6742_ (Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/effect/MobEffect/applyEffectTick (Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/effect/MobEffect/m_7048_ (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D net/minecraft/world/effect/MobEffect/getAttributeModifierValue (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D +MD: net/minecraft/world/effect/MobEffect/m_8093_ ()Z net/minecraft/world/effect/MobEffect/isInstantenous ()Z +MD: net/minecraft/world/effect/MobEffectCategory/ ()V net/minecraft/world/effect/MobEffectCategory/ ()V +MD: net/minecraft/world/effect/MobEffectCategory/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V net/minecraft/world/effect/MobEffectCategory/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/effect/MobEffectCategory/m_146709_ ()[Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffectCategory/$values ()[Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffectCategory/m_19497_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/effect/MobEffectCategory/getTooltipFormatting ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/effect/MobEffectCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffectCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffectCategory/values ()[Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffectCategory/values ()[Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffectInstance/ ()V net/minecraft/world/effect/MobEffectInstance/ ()V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZLnet/minecraft/world/effect/MobEffectInstance;Ljava/util/Optional;)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZLnet/minecraft/world/effect/MobEffectInstance;Ljava/util/Optional;)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;II)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;II)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZ)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZ)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;I)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;I)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZ)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZ)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/effect/MobEffectInstance/compareTo (Ljava/lang/Object;)I net/minecraft/world/effect/MobEffectInstance/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/effect/MobEffectInstance/compareTo (Lnet/minecraft/world/effect/MobEffectInstance;)I net/minecraft/world/effect/MobEffectInstance/compareTo (Lnet/minecraft/world/effect/MobEffectInstance;)I +MD: net/minecraft/world/effect/MobEffectInstance/equals (Ljava/lang/Object;)Z net/minecraft/world/effect/MobEffectInstance/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/effect/MobEffectInstance/hashCode ()I net/minecraft/world/effect/MobEffectInstance/hashCode ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_19544_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffectInstance/getEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffectInstance/m_19545_ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/effect/MobEffectInstance/loadSpecifiedEffect (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/effect/MobEffectInstance/m_19548_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/effect/MobEffectInstance/setDetailsFrom (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_19550_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/effect/MobEffectInstance/applyEffect (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_19552_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Runnable;)Z net/minecraft/world/effect/MobEffectInstance/tick (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Runnable;)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19555_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/effect/MobEffectInstance/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/effect/MobEffectInstance/m_19557_ ()I net/minecraft/world/effect/MobEffectInstance/getDuration ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_19558_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/effect/MobEffectInstance/update (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19560_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/effect/MobEffectInstance/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/effect/MobEffectInstance/m_19564_ ()I net/minecraft/world/effect/MobEffectInstance/getAmplifier ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_19567_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/effect/MobEffectInstance/writeDetailsTo (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_19571_ ()Z net/minecraft/world/effect/MobEffectInstance/isAmbient ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19572_ ()Z net/minecraft/world/effect/MobEffectInstance/isVisible ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19575_ ()Z net/minecraft/world/effect/MobEffectInstance/showIcon ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19576_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffectInstance/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffectInstance/m_19579_ ()I net/minecraft/world/effect/MobEffectInstance/tickDownDuration ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_216895_ ()Ljava/util/Optional; net/minecraft/world/effect/MobEffectInstance/getFactorData ()Ljava/util/Optional; +MD: net/minecraft/world/effect/MobEffectInstance/m_216901_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V net/minecraft/world/effect/MobEffectInstance/lambda$writeDetailsTo$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_216904_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/effect/MobEffectInstance/lambda$writeDetailsTo$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_267553_ (I)I net/minecraft/world/effect/MobEffectInstance/lambda$tickDownDuration$1 (I)I +MD: net/minecraft/world/effect/MobEffectInstance/m_267554_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V net/minecraft/world/effect/MobEffectInstance/lambda$tick$0 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_267577_ ()Z net/minecraft/world/effect/MobEffectInstance/isInfiniteDuration ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267633_ (I)Z net/minecraft/world/effect/MobEffectInstance/endsWithin (I)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267670_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/effect/MobEffectInstance/isShorterDurationThan (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267696_ (Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)I net/minecraft/world/effect/MobEffectInstance/mapDuration (Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)I +MD: net/minecraft/world/effect/MobEffectInstance/m_267725_ ()Z net/minecraft/world/effect/MobEffectInstance/hasRemainingDuration ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267740_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffectInstance/describeDuration ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffectInstance/toString ()Ljava/lang/String; net/minecraft/world/effect/MobEffectInstance/toString ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/ ()V net/minecraft/world/effect/MobEffectInstance$FactorData/ ()V +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/ (I)V net/minecraft/world/effect/MobEffectInstance$FactorData/ (I)V +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/ (IFFFIFZ)V net/minecraft/world/effect/MobEffectInstance$FactorData/ (IFFFIFZ)V +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216928_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Boolean; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$6 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Boolean; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216932_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216934_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$5 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216938_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$3 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216940_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$2 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216942_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$1 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216944_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$0 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_238413_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/world/effect/MobEffectInstance$FactorData/getFactor (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_267555_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$4 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_267690_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/effect/MobEffectInstance$FactorData/tick (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/effect/MobEffectUtil/ ()V net/minecraft/world/effect/MobEffectUtil/ ()V +MD: net/minecraft/world/effect/MobEffectUtil/m_19584_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/effect/MobEffectUtil/hasDigSpeed (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/effect/MobEffectUtil/m_19586_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/effect/MobEffectUtil/getDigSpeedAmplification (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/effect/MobEffectUtil/m_19588_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/effect/MobEffectUtil/hasWaterBreathing (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/effect/MobEffectUtil/m_216946_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffectInstance;I)Ljava/util/List; net/minecraft/world/effect/MobEffectUtil/addEffectToPlayersAround (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffectInstance;I)Ljava/util/List; +MD: net/minecraft/world/effect/MobEffectUtil/m_238229_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/effect/MobEffectUtil/lambda$addEffectToPlayersAround$1 (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/effect/MobEffectUtil/m_267556_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffectInstance;ILnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/effect/MobEffectUtil/lambda$addEffectToPlayersAround$0 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffectInstance;ILnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/effect/MobEffectUtil/m_267641_ (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/network/chat/Component; net/minecraft/world/effect/MobEffectUtil/formatDuration (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/effect/MobEffects/ ()V net/minecraft/world/effect/MobEffects/ ()V +MD: net/minecraft/world/effect/MobEffects/ ()V net/minecraft/world/effect/MobEffects/ ()V +MD: net/minecraft/world/effect/MobEffects/m_19623_ (ILjava/lang/String;Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffects/register (ILjava/lang/String;Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffects/m_216966_ ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/world/effect/MobEffects/lambda$static$0 ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/world/effect/MobEffects$1/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/MobEffects$1/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/MobEffects$1/m_6584_ (II)Z net/minecraft/world/effect/MobEffects$1/isDurationEffectTick (II)Z +MD: net/minecraft/world/effect/MobEffects$1/m_6742_ (Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/effect/MobEffects$1/applyEffectTick (Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/entity/AgeableMob/ ()V net/minecraft/world/entity/AgeableMob/ ()V +MD: net/minecraft/world/entity/AgeableMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/AgeableMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/AgeableMob/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/AgeableMob/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/AgeableMob/m_146740_ (IZ)V net/minecraft/world/entity/AgeableMob/ageUp (IZ)V +MD: net/minecraft/world/entity/AgeableMob/m_146758_ (I)V net/minecraft/world/entity/AgeableMob/ageUp (I)V +MD: net/minecraft/world/entity/AgeableMob/m_146762_ (I)V net/minecraft/world/entity/AgeableMob/setAge (I)V +MD: net/minecraft/world/entity/AgeableMob/m_146764_ ()I net/minecraft/world/entity/AgeableMob/getAge ()I +MD: net/minecraft/world/entity/AgeableMob/m_216967_ (I)I net/minecraft/world/entity/AgeableMob/getSpeedUpSecondsWhenFeeding (I)I +MD: net/minecraft/world/entity/AgeableMob/m_30232_ ()V net/minecraft/world/entity/AgeableMob/ageBoundaryReached ()V +MD: net/minecraft/world/entity/AgeableMob/m_35506_ ()Z net/minecraft/world/entity/AgeableMob/canBreed ()Z +MD: net/minecraft/world/entity/AgeableMob/m_6162_ ()Z net/minecraft/world/entity/AgeableMob/isBaby ()Z +MD: net/minecraft/world/entity/AgeableMob/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/AgeableMob/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/AgeableMob/m_6863_ (Z)V net/minecraft/world/entity/AgeableMob/setBaby (Z)V +MD: net/minecraft/world/entity/AgeableMob/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/AgeableMob/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/AgeableMob/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AgeableMob/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AgeableMob/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AgeableMob/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AgeableMob/m_8097_ ()V net/minecraft/world/entity/AgeableMob/defineSynchedData ()V +MD: net/minecraft/world/entity/AgeableMob/m_8107_ ()V net/minecraft/world/entity/AgeableMob/aiStep ()V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (ZF)V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (ZF)V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (Z)V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (Z)V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (F)V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (F)V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146777_ ()I net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/getGroupSize ()I +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146778_ ()V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/increaseGroupSizeByOne ()V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146779_ ()Z net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/isShouldSpawnBaby ()Z +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146780_ ()F net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/getBabySpawnChance ()F +MD: net/minecraft/world/entity/AnimationState/ ()V net/minecraft/world/entity/AnimationState/ ()V +MD: net/minecraft/world/entity/AnimationState/m_216973_ ()V net/minecraft/world/entity/AnimationState/stop ()V +MD: net/minecraft/world/entity/AnimationState/m_216974_ (FF)V net/minecraft/world/entity/AnimationState/updateTime (FF)V +MD: net/minecraft/world/entity/AnimationState/m_216977_ (I)V net/minecraft/world/entity/AnimationState/start (I)V +MD: net/minecraft/world/entity/AnimationState/m_216979_ (Ljava/util/function/Consumer;)V net/minecraft/world/entity/AnimationState/ifStarted (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/entity/AnimationState/m_216981_ ()J net/minecraft/world/entity/AnimationState/getAccumulatedTime ()J +MD: net/minecraft/world/entity/AnimationState/m_216982_ (I)V net/minecraft/world/entity/AnimationState/startIfStopped (I)V +MD: net/minecraft/world/entity/AnimationState/m_216984_ ()Z net/minecraft/world/entity/AnimationState/isStarted ()Z +MD: net/minecraft/world/entity/AnimationState/m_246184_ (ZI)V net/minecraft/world/entity/AnimationState/animateWhen (ZI)V +MD: net/minecraft/world/entity/AreaEffectCloud/ ()V net/minecraft/world/entity/AreaEffectCloud/ ()V +MD: net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_146785_ (I)V net/minecraft/world/entity/AreaEffectCloud/setDurationOnUse (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_146787_ ()F net/minecraft/world/entity/AreaEffectCloud/getRadiusOnUse ()F +MD: net/minecraft/world/entity/AreaEffectCloud/m_146788_ ()F net/minecraft/world/entity/AreaEffectCloud/getRadiusPerTick ()F +MD: net/minecraft/world/entity/AreaEffectCloud/m_146789_ ()I net/minecraft/world/entity/AreaEffectCloud/getDurationOnUse ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_146790_ ()I net/minecraft/world/entity/AreaEffectCloud/getWaitTime ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_146791_ ()Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/entity/AreaEffectCloud/getPotion ()Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19712_ (F)V net/minecraft/world/entity/AreaEffectCloud/setRadius (F)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19714_ (I)V net/minecraft/world/entity/AreaEffectCloud/setFixedColor (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19716_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/AreaEffectCloud/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19718_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/AreaEffectCloud/setOwner (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19722_ (Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/entity/AreaEffectCloud/setPotion (Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19724_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/AreaEffectCloud/setParticle (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19730_ (Z)V net/minecraft/world/entity/AreaEffectCloud/setWaiting (Z)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19732_ (F)V net/minecraft/world/entity/AreaEffectCloud/setRadiusOnUse (F)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19734_ (I)V net/minecraft/world/entity/AreaEffectCloud/setDuration (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19738_ (F)V net/minecraft/world/entity/AreaEffectCloud/setRadiusPerTick (F)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19740_ (I)V net/minecraft/world/entity/AreaEffectCloud/setWaitTime (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19743_ ()F net/minecraft/world/entity/AreaEffectCloud/getRadius ()F +MD: net/minecraft/world/entity/AreaEffectCloud/m_19744_ ()I net/minecraft/world/entity/AreaEffectCloud/getColor ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_19745_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/AreaEffectCloud/getParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19747_ ()Z net/minecraft/world/entity/AreaEffectCloud/isWaiting ()Z +MD: net/minecraft/world/entity/AreaEffectCloud/m_19748_ ()I net/minecraft/world/entity/AreaEffectCloud/getDuration ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/AreaEffectCloud/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19749_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/AreaEffectCloud/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19750_ ()V net/minecraft/world/entity/AreaEffectCloud/updateColor ()V +MD: net/minecraft/world/entity/AreaEffectCloud/m_267557_ (I)I net/minecraft/world/entity/AreaEffectCloud/lambda$tick$1 (I)I +MD: net/minecraft/world/entity/AreaEffectCloud/m_287056_ (Ljava/util/Map$Entry;)Z net/minecraft/world/entity/AreaEffectCloud/lambda$tick$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/AreaEffectCloud/m_6210_ ()V net/minecraft/world/entity/AreaEffectCloud/refreshDimensions ()V +MD: net/minecraft/world/entity/AreaEffectCloud/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/AreaEffectCloud/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/AreaEffectCloud/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/AreaEffectCloud/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AreaEffectCloud/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AreaEffectCloud/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/AreaEffectCloud/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/AreaEffectCloud/m_8097_ ()V net/minecraft/world/entity/AreaEffectCloud/defineSynchedData ()V +MD: net/minecraft/world/entity/AreaEffectCloud/m_8119_ ()V net/minecraft/world/entity/AreaEffectCloud/tick ()V +MD: net/minecraft/world/entity/Attackable/m_271686_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Attackable/getLastAttacker ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Display/ ()V net/minecraft/world/entity/Display/ ()V +MD: net/minecraft/world/entity/Display/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display/m_146922_ (F)V net/minecraft/world/entity/Display/setYRot (F)V +MD: net/minecraft/world/entity/Display/m_146926_ (F)V net/minecraft/world/entity/Display/setXRot (F)V +MD: net/minecraft/world/entity/Display/m_19876_ ()I net/minecraft/world/entity/Display/getTeamColor ()I +MD: net/minecraft/world/entity/Display/m_269003_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display/lambda$readAdditionalSaveData$1 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display/m_269026_ (I)V net/minecraft/world/entity/Display/setGlowColorOverride (I)V +MD: net/minecraft/world/entity/Display/m_269034_ ()I net/minecraft/world/entity/Display/getGlowColorOverride ()I +MD: net/minecraft/world/entity/Display/m_269041_ ()I net/minecraft/world/entity/Display/getPackedBrightnessOverride ()I +MD: net/minecraft/world/entity/Display/m_269044_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display/lambda$addAdditionalSaveData$4 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display/m_269081_ ()F net/minecraft/world/entity/Display/getViewRange ()F +MD: net/minecraft/world/entity/Display/m_269087_ (F)V net/minecraft/world/entity/Display/setHeight (F)V +MD: net/minecraft/world/entity/Display/m_269102_ ()Lnet/minecraft/util/Brightness; net/minecraft/world/entity/Display/getBrightnessOverride ()Lnet/minecraft/util/Brightness; +MD: net/minecraft/world/entity/Display/m_269155_ ()F net/minecraft/world/entity/Display/getShadowStrength ()F +MD: net/minecraft/world/entity/Display/m_269190_ ()Lorg/joml/Quaternionf; net/minecraft/world/entity/Display/orientation ()Lorg/joml/Quaternionf; +MD: net/minecraft/world/entity/Display/m_269214_ (Lcom/mojang/math/Transformation;)V net/minecraft/world/entity/Display/setTransformation (Lcom/mojang/math/Transformation;)V +MD: net/minecraft/world/entity/Display/m_269215_ (F)V net/minecraft/world/entity/Display/setViewRange (F)V +MD: net/minecraft/world/entity/Display/m_269218_ ()Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display/getBillboardConstraints ()Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display/m_269228_ (F)V net/minecraft/world/entity/Display/setShadowStrength (F)V +MD: net/minecraft/world/entity/Display/m_269245_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display/lambda$addAdditionalSaveData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display/m_269261_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display/lambda$readAdditionalSaveData$2 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display/m_269265_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display/lambda$addAdditionalSaveData$5 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display/m_269272_ ()I net/minecraft/world/entity/Display/getInterpolationDuration ()I +MD: net/minecraft/world/entity/Display/m_269279_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display/lambda$readAdditionalSaveData$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display/m_269317_ (I)V net/minecraft/world/entity/Display/setInterpolationDuration (I)V +MD: net/minecraft/world/entity/Display/m_269361_ ()V net/minecraft/world/entity/Display/updateCulling ()V +MD: net/minecraft/world/entity/Display/m_269410_ ()F net/minecraft/world/entity/Display/getHeight ()F +MD: net/minecraft/world/entity/Display/m_269417_ ()V net/minecraft/world/entity/Display/updateOrientation ()V +MD: net/minecraft/world/entity/Display/m_269423_ (Lnet/minecraft/world/entity/Display$BillboardConstraints;)V net/minecraft/world/entity/Display/setBillboardConstraints (Lnet/minecraft/world/entity/Display$BillboardConstraints;)V +MD: net/minecraft/world/entity/Display/m_269441_ (F)V net/minecraft/world/entity/Display/setWidth (F)V +MD: net/minecraft/world/entity/Display/m_269448_ (Lnet/minecraft/network/syncher/SynchedEntityData;)Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display/createTransformation (Lnet/minecraft/network/syncher/SynchedEntityData;)Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display/m_269459_ ()F net/minecraft/world/entity/Display/getShadowRadius ()F +MD: net/minecraft/world/entity/Display/m_269526_ (F)V net/minecraft/world/entity/Display/setShadowRadius (F)V +MD: net/minecraft/world/entity/Display/m_269558_ ()F net/minecraft/world/entity/Display/getWidth ()F +MD: net/minecraft/world/entity/Display/m_269586_ (Lnet/minecraft/util/Brightness;)V net/minecraft/world/entity/Display/setBrightnessOverride (Lnet/minecraft/util/Brightness;)V +MD: net/minecraft/world/entity/Display/m_272147_ (F)F net/minecraft/world/entity/Display/calculateInterpolationProgress (F)F +MD: net/minecraft/world/entity/Display/m_276345_ (I)V net/minecraft/world/entity/Display/setInterpolationDelay (I)V +MD: net/minecraft/world/entity/Display/m_276347_ ()I net/minecraft/world/entity/Display/getInterpolationDelay ()I +MD: net/minecraft/world/entity/Display/m_276825_ (ZF)V net/minecraft/world/entity/Display/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display/m_276844_ ()Lnet/minecraft/world/entity/Display$RenderState; net/minecraft/world/entity/Display/renderState ()Lnet/minecraft/world/entity/Display$RenderState; +MD: net/minecraft/world/entity/Display/m_277098_ (Lnet/minecraft/world/entity/Display$RenderState;F)Lnet/minecraft/world/entity/Display$RenderState; net/minecraft/world/entity/Display/createInterpolatedRenderState (Lnet/minecraft/world/entity/Display$RenderState;F)Lnet/minecraft/world/entity/Display$RenderState; +MD: net/minecraft/world/entity/Display/m_277152_ ()Lnet/minecraft/world/entity/Display$RenderState; net/minecraft/world/entity/Display/createFreshRenderState ()Lnet/minecraft/world/entity/Display$RenderState; +MD: net/minecraft/world/entity/Display/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/Display/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/Display/m_6034_ (DDD)V net/minecraft/world/entity/Display/setPos (DDD)V +MD: net/minecraft/world/entity/Display/m_6090_ ()Z net/minecraft/world/entity/Display/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Display/m_6783_ (D)Z net/minecraft/world/entity/Display/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/Display/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Display/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Display/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Display/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Display/m_8097_ ()V net/minecraft/world/entity/Display/defineSynchedData ()V +MD: net/minecraft/world/entity/Display/m_8119_ ()V net/minecraft/world/entity/Display/tick ()V +MD: net/minecraft/world/entity/Display$1/ ()V net/minecraft/world/entity/Display$1/ ()V +MD: net/minecraft/world/entity/Display$BillboardConstraints/ ()V net/minecraft/world/entity/Display$BillboardConstraints/ ()V +MD: net/minecraft/world/entity/Display$BillboardConstraints/ (Ljava/lang/String;IBLjava/lang/String;)V net/minecraft/world/entity/Display$BillboardConstraints/ (Ljava/lang/String;IBLjava/lang/String;)V +MD: net/minecraft/world/entity/Display$BillboardConstraints/m_269016_ ()B net/minecraft/world/entity/Display$BillboardConstraints/getId ()B +MD: net/minecraft/world/entity/Display$BillboardConstraints/m_269521_ ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$BillboardConstraints/$values ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$BillboardConstraints/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/Display$BillboardConstraints/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$BillboardConstraints/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$BillboardConstraints/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$BillboardConstraints/values ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$BillboardConstraints/values ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$BlockDisplay/ ()V net/minecraft/world/entity/Display$BlockDisplay/ ()V +MD: net/minecraft/world/entity/Display$BlockDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display$BlockDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_269134_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Display$BlockDisplay/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Display$BlockDisplay/m_269329_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Display$BlockDisplay/setBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_276825_ (ZF)V net/minecraft/world/entity/Display$BlockDisplay/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_276881_ ()Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; net/minecraft/world/entity/Display$BlockDisplay/blockRenderState ()Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; +MD: net/minecraft/world/entity/Display$BlockDisplay/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display$BlockDisplay/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$BlockDisplay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$BlockDisplay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_8097_ ()V net/minecraft/world/entity/Display$BlockDisplay/defineSynchedData ()V +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/f_276526_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/blockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/hashCode ()I net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$ColorInterpolator/ (II)V net/minecraft/world/entity/Display$ColorInterpolator/ (II)V +MD: net/minecraft/world/entity/Display$ColorInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$ColorInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$ColorInterpolator/f_276509_ ()I net/minecraft/world/entity/Display$ColorInterpolator/current ()I +MD: net/minecraft/world/entity/Display$ColorInterpolator/f_276650_ ()I net/minecraft/world/entity/Display$ColorInterpolator/previous ()I +MD: net/minecraft/world/entity/Display$ColorInterpolator/hashCode ()I net/minecraft/world/entity/Display$ColorInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$ColorInterpolator/m_269120_ (F)I net/minecraft/world/entity/Display$ColorInterpolator/get (F)I +MD: net/minecraft/world/entity/Display$ColorInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$ColorInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$FloatInterpolator/m_269229_ (F)F net/minecraft/world/entity/Display$FloatInterpolator/get (F)F +MD: net/minecraft/world/entity/Display$FloatInterpolator/m_276789_ (FF)F net/minecraft/world/entity/Display$FloatInterpolator/lambda$constant$0 (FF)F +MD: net/minecraft/world/entity/Display$FloatInterpolator/m_277016_ (F)Lnet/minecraft/world/entity/Display$FloatInterpolator; net/minecraft/world/entity/Display$FloatInterpolator/constant (F)Lnet/minecraft/world/entity/Display$FloatInterpolator; +MD: net/minecraft/world/entity/Display$GenericInterpolator/m_269136_ (F)Ljava/lang/Object; net/minecraft/world/entity/Display$GenericInterpolator/get (F)Ljava/lang/Object; +MD: net/minecraft/world/entity/Display$GenericInterpolator/m_276793_ (Ljava/lang/Object;F)Ljava/lang/Object; net/minecraft/world/entity/Display$GenericInterpolator/lambda$constant$0 (Ljava/lang/Object;F)Ljava/lang/Object; +MD: net/minecraft/world/entity/Display$GenericInterpolator/m_277024_ (Ljava/lang/Object;)Lnet/minecraft/world/entity/Display$GenericInterpolator; net/minecraft/world/entity/Display$GenericInterpolator/constant (Ljava/lang/Object;)Lnet/minecraft/world/entity/Display$GenericInterpolator; +MD: net/minecraft/world/entity/Display$IntInterpolator/m_269120_ (F)I net/minecraft/world/entity/Display$IntInterpolator/get (F)I +MD: net/minecraft/world/entity/Display$IntInterpolator/m_276859_ (I)Lnet/minecraft/world/entity/Display$IntInterpolator; net/minecraft/world/entity/Display$IntInterpolator/constant (I)Lnet/minecraft/world/entity/Display$IntInterpolator; +MD: net/minecraft/world/entity/Display$IntInterpolator/m_276992_ (IF)I net/minecraft/world/entity/Display$IntInterpolator/lambda$constant$0 (IF)I +MD: net/minecraft/world/entity/Display$ItemDisplay/ ()V net/minecraft/world/entity/Display$ItemDisplay/ ()V +MD: net/minecraft/world/entity/Display$ItemDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display$ItemDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/Display$ItemDisplay/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269028_ (Lnet/minecraft/world/item/ItemDisplayContext;)V net/minecraft/world/entity/Display$ItemDisplay/setItemTransform (Lnet/minecraft/world/item/ItemDisplayContext;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269045_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display$ItemDisplay/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269144_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display$ItemDisplay/lambda$readAdditionalSaveData$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269362_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Display$ItemDisplay/setItemStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269386_ ()Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/entity/Display$ItemDisplay/getItemTransform ()Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269568_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Display$ItemDisplay/getItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_276825_ (ZF)V net/minecraft/world/entity/Display$ItemDisplay/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_277122_ ()Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; net/minecraft/world/entity/Display$ItemDisplay/itemRenderState ()Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display$ItemDisplay/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$ItemDisplay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$ItemDisplay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_8097_ ()V net/minecraft/world/entity/Display$ItemDisplay/defineSynchedData ()V +MD: net/minecraft/world/entity/Display$ItemDisplay$1/ (Lnet/minecraft/world/entity/Display$ItemDisplay;)V net/minecraft/world/entity/Display$ItemDisplay$1/ (Lnet/minecraft/world/entity/Display$ItemDisplay;)V +MD: net/minecraft/world/entity/Display$ItemDisplay$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Display$ItemDisplay$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Display$ItemDisplay$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Display$ItemDisplay$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;)V net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;)V +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276600_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276629_ ()Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemTransform ()Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/hashCode ()I net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/ (FF)V net/minecraft/world/entity/Display$LinearFloatInterpolator/ (FF)V +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$LinearFloatInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276496_ ()F net/minecraft/world/entity/Display$LinearFloatInterpolator/previous ()F +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276689_ ()F net/minecraft/world/entity/Display$LinearFloatInterpolator/current ()F +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/hashCode ()I net/minecraft/world/entity/Display$LinearFloatInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/m_269229_ (F)F net/minecraft/world/entity/Display$LinearFloatInterpolator/get (F)F +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$LinearFloatInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/ (II)V net/minecraft/world/entity/Display$LinearIntInterpolator/ (II)V +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$LinearIntInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276492_ ()I net/minecraft/world/entity/Display$LinearIntInterpolator/current ()I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276498_ ()I net/minecraft/world/entity/Display$LinearIntInterpolator/previous ()I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/hashCode ()I net/minecraft/world/entity/Display$LinearIntInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/m_269120_ (F)I net/minecraft/world/entity/Display$LinearIntInterpolator/get (F)I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$LinearIntInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$RenderState/ (Lnet/minecraft/world/entity/Display$GenericInterpolator;Lnet/minecraft/world/entity/Display$BillboardConstraints;ILnet/minecraft/world/entity/Display$FloatInterpolator;Lnet/minecraft/world/entity/Display$FloatInterpolator;I)V net/minecraft/world/entity/Display$RenderState/ (Lnet/minecraft/world/entity/Display$GenericInterpolator;Lnet/minecraft/world/entity/Display$BillboardConstraints;ILnet/minecraft/world/entity/Display$FloatInterpolator;Lnet/minecraft/world/entity/Display$FloatInterpolator;I)V +MD: net/minecraft/world/entity/Display$RenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$RenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$RenderState/f_276438_ ()I net/minecraft/world/entity/Display$RenderState/brightnessOverride ()I +MD: net/minecraft/world/entity/Display$RenderState/f_276486_ ()I net/minecraft/world/entity/Display$RenderState/glowColorOverride ()I +MD: net/minecraft/world/entity/Display$RenderState/f_276506_ ()Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$RenderState/billboardConstraints ()Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$RenderState/f_276585_ ()Lnet/minecraft/world/entity/Display$GenericInterpolator; net/minecraft/world/entity/Display$RenderState/transformation ()Lnet/minecraft/world/entity/Display$GenericInterpolator; +MD: net/minecraft/world/entity/Display$RenderState/f_276607_ ()Lnet/minecraft/world/entity/Display$FloatInterpolator; net/minecraft/world/entity/Display$RenderState/shadowRadius ()Lnet/minecraft/world/entity/Display$FloatInterpolator; +MD: net/minecraft/world/entity/Display$RenderState/f_276693_ ()Lnet/minecraft/world/entity/Display$FloatInterpolator; net/minecraft/world/entity/Display$RenderState/shadowStrength ()Lnet/minecraft/world/entity/Display$FloatInterpolator; +MD: net/minecraft/world/entity/Display$RenderState/hashCode ()I net/minecraft/world/entity/Display$RenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$RenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$RenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay/ ()V net/minecraft/world/entity/Display$TextDisplay/ ()V +MD: net/minecraft/world/entity/Display$TextDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display$TextDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269000_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Display$TextDisplay/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Display$TextDisplay/m_269001_ (I)V net/minecraft/world/entity/Display$TextDisplay/setBackgroundColor (I)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269007_ (B)V net/minecraft/world/entity/Display$TextDisplay/setTextOpacity (B)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269024_ (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)B net/minecraft/world/entity/Display$TextDisplay/loadFlag (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)B +MD: net/minecraft/world/entity/Display$TextDisplay/m_269037_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/Display$TextDisplay/setText (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269174_ (I)V net/minecraft/world/entity/Display$TextDisplay/setLineWidth (I)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269180_ ()B net/minecraft/world/entity/Display$TextDisplay/getTextOpacity ()B +MD: net/minecraft/world/entity/Display$TextDisplay/m_269327_ ()B net/minecraft/world/entity/Display$TextDisplay/getFlags ()B +MD: net/minecraft/world/entity/Display$TextDisplay/m_269343_ (Lnet/minecraft/world/entity/Display$TextDisplay$LineSplitter;)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; net/minecraft/world/entity/Display$TextDisplay/cacheDisplay (Lnet/minecraft/world/entity/Display$TextDisplay$LineSplitter;)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +MD: net/minecraft/world/entity/Display$TextDisplay/m_269352_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display$TextDisplay/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269375_ ()I net/minecraft/world/entity/Display$TextDisplay/getBackgroundColor ()I +MD: net/minecraft/world/entity/Display$TextDisplay/m_269384_ (B)Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay/getAlign (B)Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay/m_269407_ (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)V net/minecraft/world/entity/Display$TextDisplay/storeFlag (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269517_ ()I net/minecraft/world/entity/Display$TextDisplay/getLineWidth ()I +MD: net/minecraft/world/entity/Display$TextDisplay/m_269559_ (B)V net/minecraft/world/entity/Display$TextDisplay/setFlags (B)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_276825_ (ZF)V net/minecraft/world/entity/Display$TextDisplay/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_276848_ (Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;F)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/world/entity/Display$TextDisplay/createInterpolatedTextRenderState (Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;F)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/world/entity/Display$TextDisplay/m_276914_ ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/world/entity/Display$TextDisplay/createFreshTextRenderState ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/world/entity/Display$TextDisplay/m_277174_ ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/world/entity/Display$TextDisplay/textRenderState ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/world/entity/Display$TextDisplay/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display$TextDisplay/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$TextDisplay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$TextDisplay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_8097_ ()V net/minecraft/world/entity/Display$TextDisplay/defineSynchedData ()V +MD: net/minecraft/world/entity/Display$TextDisplay$Align/ ()V net/minecraft/world/entity/Display$TextDisplay$Align/ ()V +MD: net/minecraft/world/entity/Display$TextDisplay$Align/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/entity/Display$TextDisplay$Align/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/entity/Display$TextDisplay$Align/m_269578_ ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay$Align/$values ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay$Align/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$Align/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay$Align/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay$Align/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay$Align/values ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay$Align/values ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/ (Ljava/util/List;I)V net/minecraft/world/entity/Display$TextDisplay$CachedInfo/ (Ljava/util/List;I)V +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TextDisplay$CachedInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268557_ ()I net/minecraft/world/entity/Display$TextDisplay$CachedInfo/width ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268675_ ()Ljava/util/List; net/minecraft/world/entity/Display$TextDisplay$CachedInfo/lines ()Ljava/util/List; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/hashCode ()I net/minecraft/world/entity/Display$TextDisplay$CachedInfo/hashCode ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$CachedInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/ (Lnet/minecraft/util/FormattedCharSequence;I)V net/minecraft/world/entity/Display$TextDisplay$CachedLine/ (Lnet/minecraft/util/FormattedCharSequence;I)V +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TextDisplay$CachedLine/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268443_ ()I net/minecraft/world/entity/Display$TextDisplay$CachedLine/width ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268516_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/world/entity/Display$TextDisplay$CachedLine/contents ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/hashCode ()I net/minecraft/world/entity/Display$TextDisplay$CachedLine/hashCode ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$CachedLine/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay$LineSplitter/m_269487_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; net/minecraft/world/entity/Display$TextDisplay$LineSplitter/split (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/entity/Display$IntInterpolator;Lnet/minecraft/world/entity/Display$IntInterpolator;B)V net/minecraft/world/entity/Display$TextDisplay$TextRenderState/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/entity/Display$IntInterpolator;Lnet/minecraft/world/entity/Display$IntInterpolator;B)V +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TextDisplay$TextRenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276477_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/text ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276556_ ()B net/minecraft/world/entity/Display$TextDisplay$TextRenderState/flags ()B +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276562_ ()Lnet/minecraft/world/entity/Display$IntInterpolator; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/backgroundColor ()Lnet/minecraft/world/entity/Display$IntInterpolator; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276579_ ()Lnet/minecraft/world/entity/Display$IntInterpolator; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/textOpacity ()Lnet/minecraft/world/entity/Display$IntInterpolator; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276622_ ()I net/minecraft/world/entity/Display$TextDisplay$TextRenderState/lineWidth ()I +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/hashCode ()I net/minecraft/world/entity/Display$TextDisplay$TextRenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/ (Lcom/mojang/math/Transformation;Lcom/mojang/math/Transformation;)V net/minecraft/world/entity/Display$TransformationInterpolator/ (Lcom/mojang/math/Transformation;Lcom/mojang/math/Transformation;)V +MD: net/minecraft/world/entity/Display$TransformationInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TransformationInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276610_ ()Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display$TransformationInterpolator/current ()Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276675_ ()Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display$TransformationInterpolator/previous ()Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/hashCode ()I net/minecraft/world/entity/Display$TransformationInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$TransformationInterpolator/m_269136_ (F)Ljava/lang/Object; net/minecraft/world/entity/Display$TransformationInterpolator/get (F)Ljava/lang/Object; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/m_269136_ (F)Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display$TransformationInterpolator/get (F)Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TransformationInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/ ()V net/minecraft/world/entity/Entity/ ()V +MD: net/minecraft/world/entity/Entity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Entity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Entity/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Entity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Entity/hashCode ()I net/minecraft/world/entity/Entity/hashCode ()I +MD: net/minecraft/world/entity/Entity/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/Entity/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/Entity/m_141960_ (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V net/minecraft/world/entity/Entity/setLevelCallback (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V +MD: net/minecraft/world/entity/Entity/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/Entity/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/Entity/m_142036_ ()V net/minecraft/world/entity/Entity/onClientRemoval ()V +MD: net/minecraft/world/entity/Entity/m_142038_ ()Z net/minecraft/world/entity/Entity/isCurrentlyGlowing ()Z +MD: net/minecraft/world/entity/Entity/m_142039_ ()Z net/minecraft/world/entity/Entity/isFlapping ()Z +MD: net/minecraft/world/entity/Entity/m_142043_ ()V net/minecraft/world/entity/Entity/onFlap ()V +MD: net/minecraft/world/entity/Entity/m_142079_ ()Z net/minecraft/world/entity/Entity/canFreeze ()Z +MD: net/minecraft/world/entity/Entity/m_142098_ (DDD)V net/minecraft/world/entity/Entity/dismountTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_142242_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/makeBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_142265_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/mayInteract (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Entity/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Entity/m_142389_ ()Z net/minecraft/world/entity/Entity/isAlwaysTicking ()Z +MD: net/minecraft/world/entity/Entity/m_142391_ ()Z net/minecraft/world/entity/Entity/shouldBeSaved ()Z +MD: net/minecraft/world/entity/Entity/m_142429_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/Entity/getPassengersAndSelf ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/Entity/m_142467_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/Entity/setRemoved (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/Entity/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/Entity/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/Entity/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/Entity/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/Entity/m_146850_ (Lnet/minecraft/world/level/gameevent/GameEvent;)V net/minecraft/world/entity/Entity/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;)V +MD: net/minecraft/world/entity/Entity/m_146852_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_146862_ (Ljava/util/function/Predicate;)Z net/minecraft/world/entity/Entity/hasPassenger (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/Entity/m_146867_ ()V net/minecraft/world/entity/Entity/setOldPosAndRot ()V +MD: net/minecraft/world/entity/Entity/m_146868_ (Z)V net/minecraft/world/entity/Entity/setSharedFlagOnFire (Z)V +MD: net/minecraft/world/entity/Entity/m_146870_ ()V net/minecraft/world/entity/Entity/discard ()V +MD: net/minecraft/world/entity/Entity/m_146871_ ()V net/minecraft/world/entity/Entity/checkBelowWorld ()V +MD: net/minecraft/world/entity/Entity/m_146872_ ()V net/minecraft/world/entity/Entity/tryCheckInsideBlocks ()V +MD: net/minecraft/world/entity/Entity/m_146873_ ()V net/minecraft/world/entity/Entity/playEntityOnFireExtinguishedSound ()V +MD: net/minecraft/world/entity/Entity/m_146874_ ()V net/minecraft/world/entity/Entity/processFlappingMovement ()V +MD: net/minecraft/world/entity/Entity/m_146884_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/setPos (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_146886_ ()Z net/minecraft/world/entity/Entity/hasGlowingTag ()Z +MD: net/minecraft/world/entity/Entity/m_146888_ ()I net/minecraft/world/entity/Entity/getTicksFrozen ()I +MD: net/minecraft/world/entity/Entity/m_146889_ ()F net/minecraft/world/entity/Entity/getPercentFrozen ()F +MD: net/minecraft/world/entity/Entity/m_146890_ ()Z net/minecraft/world/entity/Entity/isFullyFrozen ()Z +MD: net/minecraft/world/entity/Entity/m_146891_ ()I net/minecraft/world/entity/Entity/getTicksRequiredToFreeze ()I +MD: net/minecraft/world/entity/Entity/m_146892_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getEyePosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_146895_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getFirstPassenger ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_146897_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getIndirectPassengers ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_146898_ ()Z net/minecraft/world/entity/Entity/hasExactlyOnePlayerPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_146899_ ()Z net/minecraft/world/entity/Entity/touchingUnloadedChunk ()Z +MD: net/minecraft/world/entity/Entity/m_146900_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/getFeetBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_146902_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/entity/Entity/chunkPosition ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/entity/Entity/m_146903_ ()I net/minecraft/world/entity/Entity/getBlockX ()I +MD: net/minecraft/world/entity/Entity/m_146904_ ()I net/minecraft/world/entity/Entity/getBlockY ()I +MD: net/minecraft/world/entity/Entity/m_146907_ ()I net/minecraft/world/entity/Entity/getBlockZ ()I +MD: net/minecraft/world/entity/Entity/m_146908_ ()F net/minecraft/world/entity/Entity/getYRot ()F +MD: net/minecraft/world/entity/Entity/m_146909_ ()F net/minecraft/world/entity/Entity/getXRot ()F +MD: net/minecraft/world/entity/Entity/m_146911_ ()Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity/getRemovalReason ()Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/Entity/m_146912_ ()V net/minecraft/world/entity/Entity/unsetRemoved ()V +MD: net/minecraft/world/entity/Entity/m_146915_ (Z)V net/minecraft/world/entity/Entity/setGlowingTag (Z)V +MD: net/minecraft/world/entity/Entity/m_146917_ (I)V net/minecraft/world/entity/Entity/setTicksFrozen (I)V +MD: net/minecraft/world/entity/Entity/m_146920_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/Entity/getIndirectPassengersStream ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/Entity/m_146922_ (F)V net/minecraft/world/entity/Entity/setYRot (F)V +MD: net/minecraft/world/entity/Entity/m_146924_ (Z)V net/minecraft/world/entity/Entity/setIsInPowderSnow (Z)V +MD: net/minecraft/world/entity/Entity/m_146926_ (F)V net/minecraft/world/entity/Entity/setXRot (F)V +MD: net/minecraft/world/entity/Entity/m_146929_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$11 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_146930_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$10 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_183318_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; net/minecraft/world/entity/Entity/getExitPortal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; +MD: net/minecraft/world/entity/Entity/m_183634_ ()V net/minecraft/world/entity/Entity/resetFallDistance ()V +MD: net/minecraft/world/entity/Entity/m_185942_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/lambda$hasExactlyOnePlayerPassenger$16 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_185954_ (Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/lambda$refreshDimensions$14 (Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_185974_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/entity/Entity/lambda$getDisplayName$12 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/entity/Entity/m_185976_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/lambda$teleportPassengers$13 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_185978_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/lambda$removePassenger$5 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_185981_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/lambda$startRiding$4 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_185983_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/lambda$startRiding$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_185985_ ()Ljava/util/Iterator; net/minecraft/world/entity/Entity/lambda$getIndirectPassengers$15 ()Ljava/util/Iterator; +MD: net/minecraft/world/entity/Entity/m_185986_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$8 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_196406_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/Entity/isHorizontalCollisionMinor (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/Entity/m_19876_ ()I net/minecraft/world/entity/Entity/getTeamColor ()I +MD: net/minecraft/world/entity/Entity/m_19877_ ()V net/minecraft/world/entity/Entity/unRide ()V +MD: net/minecraft/world/entity/Entity/m_19879_ ()I net/minecraft/world/entity/Entity/getId ()I +MD: net/minecraft/world/entity/Entity/m_19880_ ()Ljava/util/Set; net/minecraft/world/entity/Entity/getTags ()Ljava/util/Set; +MD: net/minecraft/world/entity/Entity/m_19884_ (DD)V net/minecraft/world/entity/Entity/turn (DD)V +MD: net/minecraft/world/entity/Entity/m_198894_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/Level;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/collideBoundingBox (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/Level;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_198900_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/collideWithShapes (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_19890_ (DDDFF)V net/minecraft/world/entity/Entity/absMoveTo (DDDFF)V +MD: net/minecraft/world/entity/Entity/m_19903_ (DDF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getCollisionHorizontalEscapeVector (DDF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_19907_ (DFZ)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/Entity/pick (DFZ)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/Entity/m_19915_ (FF)V net/minecraft/world/entity/Entity/setRot (FF)V +MD: net/minecraft/world/entity/Entity/m_19920_ (FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/moveRelative (FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_19950_ (Lnet/minecraft/world/entity/Entity;D)Z net/minecraft/world/entity/Entity/closerThan (Lnet/minecraft/world/entity/Entity;D)Z +MD: net/minecraft/world/entity/Entity/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/Entity/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/Entity/m_19970_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/doEnchantDamageEffects (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_19983_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_19998_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_20000_ (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_20011_ (Lnet/minecraft/world/phys/AABB;)V net/minecraft/world/entity/Entity/setBoundingBox (Lnet/minecraft/world/phys/AABB;)V +MD: net/minecraft/world/entity/Entity/m_20015_ (Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getInputVector (Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20031_ (Lnet/minecraft/world/scores/Team;)Z net/minecraft/world/entity/Entity/isAlliedTo (Lnet/minecraft/world/scores/Team;)Z +MD: net/minecraft/world/entity/Entity/m_20035_ (Lnet/minecraft/core/BlockPos;FF)V net/minecraft/world/entity/Entity/moveTo (Lnet/minecraft/core/BlockPos;FF)V +MD: net/minecraft/world/entity/Entity/m_20039_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/isColliding (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_20042_ (Lnet/minecraft/core/Direction$Axis;D)D net/minecraft/world/entity/Entity/applyPistonMovementRestriction (Lnet/minecraft/core/Direction$Axis;D)D +MD: net/minecraft/world/entity/Entity/m_20049_ (Ljava/lang/String;)Z net/minecraft/world/entity/Entity/addTag (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Entity/m_20063_ ([D)Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/Entity/newDoubleList ([D)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/Entity/m_20065_ ([F)Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/Entity/newFloatList ([F)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/Entity/m_20067_ ()Z net/minecraft/world/entity/Entity/isSilent ()Z +MD: net/minecraft/world/entity/Entity/m_20068_ ()Z net/minecraft/world/entity/Entity/isNoGravity ()Z +MD: net/minecraft/world/entity/Entity/m_20069_ ()Z net/minecraft/world/entity/Entity/isInWater ()Z +MD: net/minecraft/world/entity/Entity/m_20070_ ()Z net/minecraft/world/entity/Entity/isInWaterOrRain ()Z +MD: net/minecraft/world/entity/Entity/m_20071_ ()Z net/minecraft/world/entity/Entity/isInWaterRainOrBubble ()Z +MD: net/minecraft/world/entity/Entity/m_20072_ ()Z net/minecraft/world/entity/Entity/isInWaterOrBubble ()Z +MD: net/minecraft/world/entity/Entity/m_20073_ ()Z net/minecraft/world/entity/Entity/updateInWaterStateAndDoFluidPushing ()Z +MD: net/minecraft/world/entity/Entity/m_20074_ ()V net/minecraft/world/entity/Entity/updateInWaterStateAndDoWaterCurrentPushing ()V +MD: net/minecraft/world/entity/Entity/m_20075_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/getBlockStateOn ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_20076_ ()V net/minecraft/world/entity/Entity/spawnSprintParticle ()V +MD: net/minecraft/world/entity/Entity/m_20077_ ()Z net/minecraft/world/entity/Entity/isInLava ()Z +MD: net/minecraft/world/entity/Entity/m_20078_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/getEncodeId ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_20084_ (Ljava/util/UUID;)V net/minecraft/world/entity/Entity/setUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/Entity/m_20086_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/entity/Entity/saveAsPassenger (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/entity/Entity/m_20088_ ()Lnet/minecraft/network/syncher/SynchedEntityData; net/minecraft/world/entity/Entity/getEntityData ()Lnet/minecraft/network/syncher/SynchedEntityData; +MD: net/minecraft/world/entity/Entity/m_20089_ ()Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Entity/getPose ()Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/Entity/m_20090_ ()V net/minecraft/world/entity/Entity/reapplyPosition ()V +MD: net/minecraft/world/entity/Entity/m_20091_ ()V net/minecraft/world/entity/Entity/setPortalCooldown ()V +MD: net/minecraft/world/entity/Entity/m_20092_ ()Z net/minecraft/world/entity/Entity/isOnPortalCooldown ()Z +MD: net/minecraft/world/entity/Entity/m_20093_ ()V net/minecraft/world/entity/Entity/lavaHurt ()V +MD: net/minecraft/world/entity/Entity/m_20094_ ()I net/minecraft/world/entity/Entity/getRemainingFireTicks ()I +MD: net/minecraft/world/entity/Entity/m_20095_ ()V net/minecraft/world/entity/Entity/clearFire ()V +MD: net/minecraft/world/entity/Entity/m_20096_ ()Z net/minecraft/world/entity/Entity/onGround ()Z +MD: net/minecraft/world/entity/Entity/m_20097_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getOnPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_20098_ ()F net/minecraft/world/entity/Entity/getBlockJumpFactor ()F +MD: net/minecraft/world/entity/Entity/m_20099_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getBlockPosBelowThatAffectsMyMovement ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_20101_ ()V net/minecraft/world/entity/Entity/checkInsideBlocks ()V +MD: net/minecraft/world/entity/Entity/m_20103_ (D)V net/minecraft/world/entity/Entity/setViewScale (D)V +MD: net/minecraft/world/entity/Entity/m_20115_ (IZ)V net/minecraft/world/entity/Entity/setSharedFlag (IZ)V +MD: net/minecraft/world/entity/Entity/m_20124_ (Lnet/minecraft/world/entity/Pose;)V net/minecraft/world/entity/Entity/setPose (Lnet/minecraft/world/entity/Pose;)V +MD: net/minecraft/world/entity/Entity/m_20126_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/lambda$move$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_20131_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/entity/Entity/isFree (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/entity/Entity/m_20133_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/limitPistonMovement (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20137_ (Ljava/lang/String;)Z net/minecraft/world/entity/Entity/removeTag (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Entity/m_20140_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/removeAction (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_20142_ ()Z net/minecraft/world/entity/Entity/isSprinting ()Z +MD: net/minecraft/world/entity/Entity/m_20143_ ()Z net/minecraft/world/entity/Entity/isVisuallyCrawling ()Z +MD: net/minecraft/world/entity/Entity/m_20145_ ()Z net/minecraft/world/entity/Entity/isInvisible ()Z +MD: net/minecraft/world/entity/Entity/m_20146_ ()I net/minecraft/world/entity/Entity/getAirSupply ()I +MD: net/minecraft/world/entity/Entity/m_20147_ ()Z net/minecraft/world/entity/Entity/isInvulnerable ()Z +MD: net/minecraft/world/entity/Entity/m_20148_ ()Ljava/util/UUID; net/minecraft/world/entity/Entity/getUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/Entity/m_20149_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/getStringUUID ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_20150_ ()D net/minecraft/world/entity/Entity/getViewScale ()D +MD: net/minecraft/world/entity/Entity/m_20151_ ()Z net/minecraft/world/entity/Entity/isCustomNameVisible ()Z +MD: net/minecraft/world/entity/Entity/m_20152_ ()Z net/minecraft/world/entity/Entity/showVehicleHealth ()Z +MD: net/minecraft/world/entity/Entity/m_20153_ ()V net/minecraft/world/entity/Entity/ejectPassengers ()V +MD: net/minecraft/world/entity/Entity/m_20154_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLookAngle ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20155_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/world/entity/Entity/getRotationVector ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/entity/Entity/m_20156_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getForward ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20157_ ()V net/minecraft/world/entity/Entity/handleNetherPortal ()V +MD: net/minecraft/world/entity/Entity/m_20158_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getAllSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_20159_ ()Z net/minecraft/world/entity/Entity/isPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_20160_ ()Z net/minecraft/world/entity/Entity/isVehicle ()Z +MD: net/minecraft/world/entity/Entity/m_20161_ ()Z net/minecraft/world/entity/Entity/isSteppingCarefully ()Z +MD: net/minecraft/world/entity/Entity/m_20162_ ()Z net/minecraft/world/entity/Entity/isSuppressingBounce ()Z +MD: net/minecraft/world/entity/Entity/m_20163_ ()Z net/minecraft/world/entity/Entity/isDiscrete ()Z +MD: net/minecraft/world/entity/Entity/m_20164_ ()Z net/minecraft/world/entity/Entity/isDescending ()Z +MD: net/minecraft/world/entity/Entity/m_20165_ (D)D net/minecraft/world/entity/Entity/getX (D)D +MD: net/minecraft/world/entity/Entity/m_20171_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/calculateViewVector (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20175_ (Lnet/minecraft/world/entity/Pose;)Z net/minecraft/world/entity/Entity/canEnterPose (Lnet/minecraft/world/entity/Pose;)Z +MD: net/minecraft/world/entity/Entity/m_20177_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/Entity/isInvisibleTo (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/Entity/m_20182_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/position ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20183_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/blockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_20184_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getDeltaMovement ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20185_ ()D net/minecraft/world/entity/Entity/getX ()D +MD: net/minecraft/world/entity/Entity/m_20186_ ()D net/minecraft/world/entity/Entity/getY ()D +MD: net/minecraft/world/entity/Entity/m_20187_ ()D net/minecraft/world/entity/Entity/getRandomY ()D +MD: net/minecraft/world/entity/Entity/m_20188_ ()D net/minecraft/world/entity/Entity/getEyeY ()D +MD: net/minecraft/world/entity/Entity/m_20189_ ()D net/minecraft/world/entity/Entity/getZ ()D +MD: net/minecraft/world/entity/Entity/m_20190_ ()Lnet/minecraft/network/chat/HoverEvent; net/minecraft/world/entity/Entity/createHoverEvent ()Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/world/entity/Entity/m_20191_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_20192_ ()F net/minecraft/world/entity/Entity/getEyeHeight ()F +MD: net/minecraft/world/entity/Entity/m_20193_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/Entity/getCommandSenderWorld ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/Entity/m_201940_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/lambda$isInWall$2 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_20194_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/world/entity/Entity/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/world/entity/Entity/m_20197_ ()Ljava/util/List; net/minecraft/world/entity/Entity/getPassengers ()Ljava/util/List; +MD: net/minecraft/world/entity/Entity/m_20199_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/Entity/getSelfAndPassengers ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/Entity/m_20201_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getRootVehicle ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_20202_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getVehicle ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_20203_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/entity/Entity/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/entity/Entity/m_20204_ ()D net/minecraft/world/entity/Entity/getFluidJumpThreshold ()D +MD: net/minecraft/world/entity/Entity/m_20205_ ()F net/minecraft/world/entity/Entity/getBbWidth ()F +MD: net/minecraft/world/entity/Entity/m_20206_ ()F net/minecraft/world/entity/Entity/getBbHeight ()F +MD: net/minecraft/world/entity/Entity/m_20208_ (D)D net/minecraft/world/entity/Entity/getRandomX (D)D +MD: net/minecraft/world/entity/Entity/m_20214_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/calculateUpVector (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20217_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/getBoundingBoxForPose (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_20219_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/moveTo (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_20221_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/Entity/handleInsidePortal (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/Entity/m_20223_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/entity/Entity/save (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/entity/Entity/m_20225_ (Z)V net/minecraft/world/entity/Entity/setSilent (Z)V +MD: net/minecraft/world/entity/Entity/m_20227_ (D)D net/minecraft/world/entity/Entity/getY (D)D +MD: net/minecraft/world/entity/Entity/m_20229_ (DDD)Z net/minecraft/world/entity/Entity/isFree (DDD)Z +MD: net/minecraft/world/entity/Entity/m_20234_ (I)V net/minecraft/world/entity/Entity/setId (I)V +MD: net/minecraft/world/entity/Entity/m_20236_ (Lnet/minecraft/world/entity/Pose;)F net/minecraft/world/entity/Entity/getEyeHeight (Lnet/minecraft/world/entity/Pose;)F +MD: net/minecraft/world/entity/Entity/m_20238_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/Entity/distanceToSqr (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/Entity/m_20240_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/Entity/saveWithoutId (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/Entity/m_20242_ (Z)V net/minecraft/world/entity/Entity/setNoGravity (Z)V +MD: net/minecraft/world/entity/Entity/m_20246_ (D)D net/minecraft/world/entity/Entity/getZ (D)D +MD: net/minecraft/world/entity/Entity/m_20248_ (DDD)V net/minecraft/world/entity/Entity/absMoveTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_20252_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getViewVector (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20254_ (I)V net/minecraft/world/entity/Entity/setSecondsOnFire (I)V +MD: net/minecraft/world/entity/Entity/m_20256_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/setDeltaMovement (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_20258_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Entity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Entity/m_20260_ (Z)V net/minecraft/world/entity/Entity/setShiftKeyDown (Z)V +MD: net/minecraft/world/entity/Entity/m_20262_ (D)D net/minecraft/world/entity/Entity/getRandomZ (D)D +MD: net/minecraft/world/entity/Entity/m_20270_ (Lnet/minecraft/world/entity/Entity;)F net/minecraft/world/entity/Entity/distanceTo (Lnet/minecraft/world/entity/Entity;)F +MD: net/minecraft/world/entity/Entity/m_20272_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/collide (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20275_ (DDD)D net/minecraft/world/entity/Entity/distanceToSqr (DDD)D +MD: net/minecraft/world/entity/Entity/m_20280_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/entity/Entity/distanceToSqr (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/entity/Entity/m_20282_ (Z)V net/minecraft/world/entity/Entity/setSwimming (Z)V +MD: net/minecraft/world/entity/Entity/m_20285_ ()Z net/minecraft/world/entity/Entity/isInRain ()Z +MD: net/minecraft/world/entity/Entity/m_20289_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getUpVector (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20291_ (I)Z net/minecraft/world/entity/Entity/getSharedFlag (I)Z +MD: net/minecraft/world/entity/Entity/m_20299_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getEyePosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20301_ (I)V net/minecraft/world/entity/Entity/setAirSupply (I)V +MD: net/minecraft/world/entity/Entity/m_20305_ ()Z net/minecraft/world/entity/Entity/isInBubbleColumn ()Z +MD: net/minecraft/world/entity/Entity/m_20310_ (I)Z net/minecraft/world/entity/Entity/hasPermissions (I)Z +MD: net/minecraft/world/entity/Entity/m_203117_ ()Z net/minecraft/world/entity/Entity/isFreezing ()Z +MD: net/minecraft/world/entity/Entity/m_20314_ (DDD)V net/minecraft/world/entity/Entity/moveTowardsClosestSpace (DDD)V +MD: net/minecraft/world/entity/Entity/m_20318_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20321_ (Z)V net/minecraft/world/entity/Entity/onInsideBubbleColumn (Z)V +MD: net/minecraft/world/entity/Entity/m_20323_ ()V net/minecraft/world/entity/Entity/updateFluidOnEyes ()V +MD: net/minecraft/world/entity/Entity/m_20324_ (DDD)V net/minecraft/world/entity/Entity/teleportToWithTicket (DDD)V +MD: net/minecraft/world/entity/Entity/m_20329_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/startRiding (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_20331_ (Z)V net/minecraft/world/entity/Entity/setInvulnerable (Z)V +MD: net/minecraft/world/entity/Entity/m_20333_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$9 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_20334_ (DDD)V net/minecraft/world/entity/Entity/setDeltaMovement (DDD)V +MD: net/minecraft/world/entity/Entity/m_20340_ (Z)V net/minecraft/world/entity/Entity/setCustomNameVisible (Z)V +MD: net/minecraft/world/entity/Entity/m_20343_ (DDD)V net/minecraft/world/entity/Entity/setPosRaw (DDD)V +MD: net/minecraft/world/entity/Entity/m_20348_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/addPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20351_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/removePassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20359_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/copyPosition (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20361_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/restoreFrom (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20363_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/hasPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_20365_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/isPassengerOfSameVehicle (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_20367_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/hasIndirectPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_204029_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/entity/Entity/isEyeInFluid (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/entity/Entity/m_204031_ (Lnet/minecraft/tags/TagKey;D)Z net/minecraft/world/entity/Entity/updateFluidHeightAndDoFluidPushing (Lnet/minecraft/tags/TagKey;D)Z +MD: net/minecraft/world/entity/Entity/m_204034_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getHandHoldingItemAngle (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_204036_ (Lnet/minecraft/tags/TagKey;)D net/minecraft/world/entity/Entity/getFluidHeight (Lnet/minecraft/tags/TagKey;)D +MD: net/minecraft/world/entity/Entity/m_213651_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/Entity/updateDynamicGameEventListener (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/Entity/m_213816_ ()F net/minecraft/world/entity/Entity/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/Entity/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/Entity/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/Entity/m_213854_ ()Z net/minecraft/world/entity/Entity/dampensVibrations ()Z +MD: net/minecraft/world/entity/Entity/m_213856_ ()F net/minecraft/world/entity/Entity/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/Entity/m_213870_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/trackingPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_213877_ ()Z net/minecraft/world/entity/Entity/isRemoved ()Z +MD: net/minecraft/world/entity/Entity/m_214076_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/Entity/killedEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/Entity/m_21515_ ()Z net/minecraft/world/entity/Entity/isEffectiveAi ()Z +MD: net/minecraft/world/entity/Entity/m_216986_ (F)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getOnPos (F)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_216990_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/Entity/playSound (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/Entity/m_216992_ (Lnet/minecraft/world/entity/Entity;DD)Z net/minecraft/world/entity/Entity/closerThan (Lnet/minecraft/world/entity/Entity;DD)Z +MD: net/minecraft/world/entity/Entity/m_216999_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getOnPosLegacy ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_217001_ ()Lnet/minecraft/network/protocol/game/VecDeltaCodec; net/minecraft/world/entity/Entity/getPositionCodec ()Lnet/minecraft/network/protocol/game/VecDeltaCodec; +MD: net/minecraft/world/entity/Entity/m_217002_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/getBlockStateOnLegacy ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_217003_ (Lnet/minecraft/world/entity/Pose;)Z net/minecraft/world/entity/Entity/hasPose (Lnet/minecraft/world/entity/Pose;)Z +MD: net/minecraft/world/entity/Entity/m_217005_ ()Z net/minecraft/world/entity/Entity/hasControllingPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_217006_ (DDD)V net/minecraft/world/entity/Entity/syncPacketPositionCodec (DDD)V +MD: net/minecraft/world/entity/Entity/m_245125_ ()V net/minecraft/world/entity/Entity/checkSlowFallDistance ()V +MD: net/minecraft/world/entity/Entity/m_245894_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLeashOffset (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_246847_ (DDD)V net/minecraft/world/entity/Entity/teleportRelative (DDD)V +MD: net/minecraft/world/entity/Entity/m_246865_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/addDeltaMovement (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_252801_ ()V net/minecraft/world/entity/Entity/fixupDimensions ()V +MD: net/minecraft/world/entity/Entity/m_252836_ ()V net/minecraft/world/entity/Entity/extinguishFire ()V +MD: net/minecraft/world/entity/Entity/m_257153_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/world/entity/Entity/lambda$findDimensionEntryPoint$7 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/world/entity/Entity/m_264318_ (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z net/minecraft/world/entity/Entity/teleportTo (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z +MD: net/minecraft/world/entity/Entity/m_264410_ ()Z net/minecraft/world/entity/Entity/canSprint ()Z +MD: net/minecraft/world/entity/Entity/m_269011_ ()Z net/minecraft/world/entity/Entity/couldAcceptPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_269138_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/Entity/handleDamageEvent (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/Entity/m_269291_ ()Lnet/minecraft/world/damagesource/DamageSources; net/minecraft/world/entity/Entity/damageSources ()Lnet/minecraft/world/damagesource/DamageSources; +MD: net/minecraft/world/entity/Entity/m_269505_ (Ljava/util/List;)V net/minecraft/world/entity/Entity/onSyncedDataUpdated (Ljava/util/List;)V +MD: net/minecraft/world/entity/Entity/m_271807_ ()Z net/minecraft/world/entity/Entity/canBeHitByProjectile ()Z +MD: net/minecraft/world/entity/Entity/m_274367_ (F)V net/minecraft/world/entity/Entity/setMaxUpStep (F)V +MD: net/minecraft/world/entity/Entity/m_274421_ ()F net/minecraft/world/entity/Entity/maxUpStep ()F +MD: net/minecraft/world/entity/Entity/m_275832_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getControlledVehicle ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_275843_ ()Z net/minecraft/world/entity/Entity/dismountsUnderwater ()Z +MD: net/minecraft/world/entity/Entity/m_276804_ ()V net/minecraft/world/entity/Entity/teleportPassengers ()V +MD: net/minecraft/world/entity/Entity/m_276951_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getPrimaryStepSoundBlockPos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_276961_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/playCombinationStepSounds (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_277063_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/shouldPlayAmethystStepSound (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_277116_ ()V net/minecraft/world/entity/Entity/playAmethystStepSound ()V +MD: net/minecraft/world/entity/Entity/m_278726_ ()F net/minecraft/world/entity/Entity/getNameTagOffsetY ()F +MD: net/minecraft/world/entity/Entity/m_280440_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/walkingStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_280447_ ()V net/minecraft/world/entity/Entity/waterSwimSound ()V +MD: net/minecraft/world/entity/Entity/m_280568_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/playMuffledStepSound (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_284013_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/lambda$findDimensionEntryPoint$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_284535_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Entity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Entity/m_285720_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/lambda$checkFallDamage$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_285776_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/isStateClimbable (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_286065_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZLnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/Entity/vibrationAndSoundEffectsFromBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZLnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/Entity/m_287157_ ()I net/minecraft/world/entity/Entity/getPortalCooldown ()I +MD: net/minecraft/world/entity/Entity/m_287199_ (I)V net/minecraft/world/entity/Entity/setPortalCooldown (I)V +MD: net/minecraft/world/entity/Entity/m_287201_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/isSupportedBy (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_288188_ ()Z net/minecraft/world/entity/Entity/isOnRails ()Z +MD: net/minecraft/world/entity/Entity/m_289600_ (ZLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/checkSupportingBlock (ZLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_289603_ (ZLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/setOnGroundWithKnownMovement (ZLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_5496_ (Lnet/minecraft/sounds/SoundEvent;FF)V net/minecraft/world/entity/Entity/playSound (Lnet/minecraft/sounds/SoundEvent;FF)V +MD: net/minecraft/world/entity/Entity/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Entity/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Entity/m_5508_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Entity/getSwimHighSpeedSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Entity/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Entity/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Entity/m_5552_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_5616_ (F)V net/minecraft/world/entity/Entity/setYHeadRot (F)V +MD: net/minecraft/world/entity/Entity/m_5618_ (F)V net/minecraft/world/entity/Entity/setYBodyRot (F)V +MD: net/minecraft/world/entity/Entity/m_5625_ (F)V net/minecraft/world/entity/Entity/playSwimSound (F)V +MD: net/minecraft/world/entity/Entity/m_5647_ ()Lnet/minecraft/world/scores/Team; net/minecraft/world/entity/Entity/getTeam ()Lnet/minecraft/world/scores/Team; +MD: net/minecraft/world/entity/Entity/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/Entity/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/Entity/m_5675_ (F)F net/minecraft/world/entity/Entity/getViewYRot (F)F +MD: net/minecraft/world/entity/Entity/m_5677_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getTypeName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_5686_ (F)F net/minecraft/world/entity/Entity/getViewXRot (F)F +MD: net/minecraft/world/entity/Entity/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/Entity/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/Entity/m_5763_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/maybeBackOffFromEdge (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_5825_ ()Z net/minecraft/world/entity/Entity/fireImmune ()Z +MD: net/minecraft/world/entity/Entity/m_5829_ ()Z net/minecraft/world/entity/Entity/canBeCollidedWith ()Z +MD: net/minecraft/world/entity/Entity/m_5830_ ()Z net/minecraft/world/entity/Entity/isInWall ()Z +MD: net/minecraft/world/entity/Entity/m_5833_ ()Z net/minecraft/world/entity/Entity/isSpectator ()Z +MD: net/minecraft/world/entity/Entity/m_5834_ ()V net/minecraft/world/entity/Entity/markHurt ()V +MD: net/minecraft/world/entity/Entity/m_5841_ ()V net/minecraft/world/entity/Entity/doWaterSplashEffect ()V +MD: net/minecraft/world/entity/Entity/m_5842_ ()Z net/minecraft/world/entity/Entity/isUnderWater ()Z +MD: net/minecraft/world/entity/Entity/m_5843_ ()Z net/minecraft/world/entity/Entity/canSpawnSprintParticle ()Z +MD: net/minecraft/world/entity/Entity/m_5844_ ()V net/minecraft/world/entity/Entity/updateSwimming ()V +MD: net/minecraft/world/entity/Entity/m_5993_ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/Entity/awardKillScore (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/Entity/m_5997_ (DDD)V net/minecraft/world/entity/Entity/push (DDD)V +MD: net/minecraft/world/entity/Entity/m_6000_ (DDD)Z net/minecraft/world/entity/Entity/shouldRender (DDD)Z +MD: net/minecraft/world/entity/Entity/m_6001_ (DDD)V net/minecraft/world/entity/Entity/lerpMotion (DDD)V +MD: net/minecraft/world/entity/Entity/m_6021_ (DDD)V net/minecraft/world/entity/Entity/teleportTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_6027_ (DDD)V net/minecraft/world/entity/Entity/moveTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_6034_ (DDD)V net/minecraft/world/entity/Entity/setPos (DDD)V +MD: net/minecraft/world/entity/Entity/m_6038_ ()V net/minecraft/world/entity/Entity/removeVehicle ()V +MD: net/minecraft/world/entity/Entity/m_6041_ ()F net/minecraft/world/entity/Entity/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/Entity/m_6043_ ()V net/minecraft/world/entity/Entity/checkDespawn ()V +MD: net/minecraft/world/entity/Entity/m_6045_ ()I net/minecraft/world/entity/Entity/getDimensionChangingDelay ()I +MD: net/minecraft/world/entity/Entity/m_6047_ ()Z net/minecraft/world/entity/Entity/isCrouching ()Z +MD: net/minecraft/world/entity/Entity/m_6048_ ()D net/minecraft/world/entity/Entity/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/Entity/m_6049_ ()D net/minecraft/world/entity/Entity/getMyRidingOffset ()D +MD: net/minecraft/world/entity/Entity/m_6051_ ()Z net/minecraft/world/entity/Entity/displayFireAnimation ()Z +MD: net/minecraft/world/entity/Entity/m_6052_ ()Z net/minecraft/world/entity/Entity/shouldShowName ()Z +MD: net/minecraft/world/entity/Entity/m_6053_ (F)V net/minecraft/world/entity/Entity/animateHurt (F)V +MD: net/minecraft/world/entity/Entity/m_6056_ ()I net/minecraft/world/entity/Entity/getMaxFallDistance ()I +MD: net/minecraft/world/entity/Entity/m_6059_ ()F net/minecraft/world/entity/Entity/nextStep ()F +MD: net/minecraft/world/entity/Entity/m_6060_ ()Z net/minecraft/world/entity/Entity/isOnFire ()Z +MD: net/minecraft/world/entity/Entity/m_6062_ ()I net/minecraft/world/entity/Entity/getMaxAirSupply ()I +MD: net/minecraft/world/entity/Entity/m_6063_ ()Z net/minecraft/world/entity/Entity/isPushedByFluid ()Z +MD: net/minecraft/world/entity/Entity/m_6067_ ()Z net/minecraft/world/entity/Entity/isVisuallySwimming ()Z +MD: net/minecraft/world/entity/Entity/m_6069_ ()Z net/minecraft/world/entity/Entity/isSwimming ()Z +MD: net/minecraft/world/entity/Entity/m_6072_ ()Z net/minecraft/world/entity/Entity/canChangeDimensions ()Z +MD: net/minecraft/world/entity/Entity/m_6074_ ()V net/minecraft/world/entity/Entity/kill ()V +MD: net/minecraft/world/entity/Entity/m_6075_ ()V net/minecraft/world/entity/Entity/baseTick ()V +MD: net/minecraft/world/entity/Entity/m_6078_ ()I net/minecraft/world/entity/Entity/getPortalWaitTime ()I +MD: net/minecraft/world/entity/Entity/m_6080_ ()F net/minecraft/world/entity/Entity/getYHeadRot ()F +MD: net/minecraft/world/entity/Entity/m_6083_ ()V net/minecraft/world/entity/Entity/rideTick ()V +MD: net/minecraft/world/entity/Entity/m_6084_ ()Z net/minecraft/world/entity/Entity/isAlive ()Z +MD: net/minecraft/world/entity/Entity/m_6087_ ()Z net/minecraft/world/entity/Entity/isPickable ()Z +MD: net/minecraft/world/entity/Entity/m_6088_ ()V net/minecraft/world/entity/Entity/onBelowWorld ()V +MD: net/minecraft/world/entity/Entity/m_6089_ ()V net/minecraft/world/entity/Entity/removeAfterChangingDimensions ()V +MD: net/minecraft/world/entity/Entity/m_6090_ ()Z net/minecraft/world/entity/Entity/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Entity/m_6093_ ()Z net/minecraft/world/entity/Entity/repositionEntityAfterLoad ()Z +MD: net/minecraft/world/entity/Entity/m_6094_ ()Z net/minecraft/world/entity/Entity/isPushable ()Z +MD: net/minecraft/world/entity/Entity/m_6095_ ()Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/Entity/getType ()Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/Entity/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Entity/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Entity/m_6097_ ()Z net/minecraft/world/entity/Entity/isAttackable ()Z +MD: net/minecraft/world/entity/Entity/m_6101_ ()I net/minecraft/world/entity/Entity/getFireImmuneTicks ()I +MD: net/minecraft/world/entity/Entity/m_6102_ ()Z net/minecraft/world/entity/Entity/shouldInformAdmins ()Z +MD: net/minecraft/world/entity/Entity/m_6109_ ()Z net/minecraft/world/entity/Entity/isControlledByLocalInstance ()Z +MD: net/minecraft/world/entity/Entity/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/Entity/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/Entity/m_6127_ ()Z net/minecraft/world/entity/Entity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/Entity/m_6128_ ()Z net/minecraft/world/entity/Entity/ignoreExplosion ()Z +MD: net/minecraft/world/entity/Entity/m_6143_ ()F net/minecraft/world/entity/Entity/getPickRadius ()F +MD: net/minecraft/world/entity/Entity/m_6144_ ()Z net/minecraft/world/entity/Entity/isShiftKeyDown ()Z +MD: net/minecraft/world/entity/Entity/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_6210_ ()V net/minecraft/world/entity/Entity/refreshDimensions ()V +MD: net/minecraft/world/entity/Entity/m_6302_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/getScoreboardName ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_6350_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/Entity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/Entity/m_6374_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/Entity/getMotionDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/Entity/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/Entity/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/Entity/m_6452_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/Entity/stopSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/Entity/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/Entity/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/Entity/m_6457_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/Entity/startSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/Entity/m_6459_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/Entity/broadcastToPlayer (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/Entity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/Entity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/Entity/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_6541_ (FI)V net/minecraft/world/entity/Entity/lerpHeadTo (FI)V +MD: net/minecraft/world/entity/Entity/m_6593_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/Entity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/Entity/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/Entity/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/Entity/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Entity/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Entity/m_6763_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/onInsideBlock (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_6783_ (D)Z net/minecraft/world/entity/Entity/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/Entity/m_6842_ (Z)V net/minecraft/world/entity/Entity/setInvisible (Z)V +MD: net/minecraft/world/entity/Entity/m_6845_ (Z)V net/minecraft/world/entity/Entity/onAboveBubbleCol (Z)V +MD: net/minecraft/world/entity/Entity/m_6853_ (Z)V net/minecraft/world/entity/Entity/setOnGround (Z)V +MD: net/minecraft/world/entity/Entity/m_6858_ (Z)V net/minecraft/world/entity/Entity/setSprinting (Z)V +MD: net/minecraft/world/entity/Entity/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_6961_ (Lnet/minecraft/world/level/block/Mirror;)F net/minecraft/world/entity/Entity/mirror (Lnet/minecraft/world/level/block/Mirror;)F +MD: net/minecraft/world/entity/Entity/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/Entity/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/Entity/m_6999_ ()Z net/minecraft/world/entity/Entity/acceptsSuccess ()Z +MD: net/minecraft/world/entity/Entity/m_7028_ ()Z net/minecraft/world/entity/Entity/acceptsFailure ()Z +MD: net/minecraft/world/entity/Entity/m_7077_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F net/minecraft/world/entity/Entity/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F +MD: net/minecraft/world/entity/Entity/m_7111_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Entity/interactAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Entity/m_7306_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/is (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7311_ (I)V net/minecraft/world/entity/Entity/setRemainingFireTicks (I)V +MD: net/minecraft/world/entity/Entity/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7332_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/positionRider (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_7337_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/canCollideWith (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7340_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/onPassengerTurned (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7349_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/entity/Entity/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/entity/Entity/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Entity/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Entity/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_7371_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLightProbePosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Entity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Entity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Entity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Entity/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_7618_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7678_ (DDDFF)V net/minecraft/world/entity/Entity/moveTo (DDDFF)V +MD: net/minecraft/world/entity/Entity/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Entity/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Entity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_7822_ (B)V net/minecraft/world/entity/Entity/handleEntityEvent (B)V +MD: net/minecraft/world/entity/Entity/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/Entity/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/Entity/m_7890_ (Lnet/minecraft/world/level/block/Rotation;)F net/minecraft/world/entity/Entity/rotate (Lnet/minecraft/world/level/block/Rotation;)F +MD: net/minecraft/world/entity/Entity/m_7937_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/world/entity/Entity/findDimensionEntryPoint (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/world/entity/Entity/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7976_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/entity/Entity/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/entity/Entity/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/Entity/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/Entity/m_8021_ ()V net/minecraft/world/entity/Entity/processPortalCooldown ()V +MD: net/minecraft/world/entity/Entity/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/Entity/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/Entity/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Entity/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Entity/m_8077_ ()Z net/minecraft/world/entity/Entity/hasCustomName ()Z +MD: net/minecraft/world/entity/Entity/m_8088_ ()I net/minecraft/world/entity/Entity/getPermissionLevel ()I +MD: net/minecraft/world/entity/Entity/m_8097_ ()V net/minecraft/world/entity/Entity/defineSynchedData ()V +MD: net/minecraft/world/entity/Entity/m_8119_ ()V net/minecraft/world/entity/Entity/tick ()V +MD: net/minecraft/world/entity/Entity/m_8127_ ()V net/minecraft/world/entity/Entity/stopRiding ()V +MD: net/minecraft/world/entity/Entity/m_9236_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/Entity/level ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/Entity/toString ()Ljava/lang/String; net/minecraft/world/entity/Entity/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity$1/ ()V net/minecraft/world/entity/Entity$1/ ()V +MD: net/minecraft/world/entity/Entity$MoveFunction/m_20372_ (Lnet/minecraft/world/entity/Entity;DDD)V net/minecraft/world/entity/Entity$MoveFunction/accept (Lnet/minecraft/world/entity/Entity;DDD)V +MD: net/minecraft/world/entity/Entity$MovementEmission/ ()V net/minecraft/world/entity/Entity$MovementEmission/ ()V +MD: net/minecraft/world/entity/Entity$MovementEmission/ (Ljava/lang/String;IZZ)V net/minecraft/world/entity/Entity$MovementEmission/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146944_ ()Z net/minecraft/world/entity/Entity$MovementEmission/emitsAnything ()Z +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146945_ ()Z net/minecraft/world/entity/Entity$MovementEmission/emitsEvents ()Z +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146946_ ()Z net/minecraft/world/entity/Entity$MovementEmission/emitsSounds ()Z +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146947_ ()[Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity$MovementEmission/$values ()[Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity$MovementEmission/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity$MovementEmission/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity$MovementEmission/values ()[Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity$MovementEmission/values ()[Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity$RemovalReason/ ()V net/minecraft/world/entity/Entity$RemovalReason/ ()V +MD: net/minecraft/world/entity/Entity$RemovalReason/ (Ljava/lang/String;IZZ)V net/minecraft/world/entity/Entity$RemovalReason/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/entity/Entity$RemovalReason/m_146965_ ()Z net/minecraft/world/entity/Entity$RemovalReason/shouldDestroy ()Z +MD: net/minecraft/world/entity/Entity$RemovalReason/m_146966_ ()Z net/minecraft/world/entity/Entity$RemovalReason/shouldSave ()Z +MD: net/minecraft/world/entity/Entity$RemovalReason/m_146967_ ()[Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity$RemovalReason/$values ()[Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/Entity$RemovalReason/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity$RemovalReason/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/Entity$RemovalReason/values ()[Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity$RemovalReason/values ()[Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/EntityDimensions/ (FFZ)V net/minecraft/world/entity/EntityDimensions/ (FFZ)V +MD: net/minecraft/world/entity/EntityDimensions/m_20384_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/EntityDimensions/makeBoundingBox (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/EntityDimensions/m_20388_ (F)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/scale (F)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/m_20390_ (FF)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/scale (FF)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/m_20393_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/EntityDimensions/makeBoundingBox (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/EntityDimensions/m_20395_ (FF)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/scalable (FF)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/m_20398_ (FF)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/fixed (FF)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/toString ()Ljava/lang/String; net/minecraft/world/entity/EntityDimensions/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityEvent/ ()V net/minecraft/world/entity/EntityEvent/ ()V +MD: net/minecraft/world/entity/EntitySelector/ ()V net/minecraft/world/entity/EntitySelector/ ()V +MD: net/minecraft/world/entity/EntitySelector/ ()V net/minecraft/world/entity/EntitySelector/ ()V +MD: net/minecraft/world/entity/EntitySelector/m_20410_ (DDDD)Ljava/util/function/Predicate; net/minecraft/world/entity/EntitySelector/withinDistance (DDDD)Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/EntitySelector/m_20415_ (DDDDLnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$withinDistance$5 (DDDDLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20421_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; net/minecraft/world/entity/EntitySelector/pushableBy (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/EntitySelector/m_20423_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$notRiding$7 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20426_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Team;Lnet/minecraft/world/scores/Team$CollisionRule;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$pushableBy$6 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Team;Lnet/minecraft/world/scores/Team$CollisionRule;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20431_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; net/minecraft/world/entity/EntitySelector/notRiding (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/EntitySelector/m_20433_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$4 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20435_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20437_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$2 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20439_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20441_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Ljava/lang/Object;)Z net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntityType/ ()V net/minecraft/world/entity/EntityType/ ()V +MD: net/minecraft/world/entity/EntityType/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;ZZZZLcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/entity/EntityDimensions;IILnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/entity/EntityType/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;ZZZZLcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/entity/EntityDimensions;IILnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/entity/EntityType/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/entity/EntityType/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/entity/EntityType/m_141992_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/tryCast (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_142225_ ()Ljava/lang/Class; net/minecraft/world/entity/EntityType/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/world/entity/EntityType/m_147045_ (Ljava/util/List;Lnet/minecraft/world/level/Level;)Ljava/util/stream/Stream; net/minecraft/world/entity/EntityType/loadEntitiesRecursive (Ljava/util/List;Lnet/minecraft/world/level/Level;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/EntityType/m_147048_ ()Ljava/lang/String; net/minecraft/world/entity/EntityType/toShortString ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityType/m_185988_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$create$5 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_185991_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/lambda$loadEntityRecursive$7 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_185996_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/lambda$create$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_185999_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/EntityType/lambda$create$6 (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/EntityType/m_204039_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/entity/EntityType/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/entity/EntityType/m_204041_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/entity/EntityType/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/entity/EntityType/m_20584_ ()Z net/minecraft/world/entity/EntityType/canSerialize ()Z +MD: net/minecraft/world/entity/EntityType/m_20585_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/EntityType/getAABB (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/EntityType/m_20592_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_20613_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/EntityType/getKey (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/EntityType/m_20615_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/create (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_20620_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/EntityType/updateCustomEntityTag (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/EntityType/m_20625_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/phys/AABB;)D net/minecraft/world/entity/EntityType/getYOffset (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/phys/AABB;)D +MD: net/minecraft/world/entity/EntityType/m_20630_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/EntityType/isBlockDangerous (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/EntityType/m_20632_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/byString (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20634_ (Ljava/lang/String;Lnet/minecraft/world/entity/EntityType$Builder;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/EntityType/register (Ljava/lang/String;Lnet/minecraft/world/entity/EntityType$Builder;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/EntityType/m_20637_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/by (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20642_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/create (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20645_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/loadEntityRecursive (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_20654_ ()Z net/minecraft/world/entity/EntityType/canSummon ()Z +MD: net/minecraft/world/entity/EntityType/m_20669_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/loadStaticEntity (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20672_ ()Z net/minecraft/world/entity/EntityType/fireImmune ()Z +MD: net/minecraft/world/entity/EntityType/m_20673_ ()Z net/minecraft/world/entity/EntityType/canSpawnFarFromPlayer ()Z +MD: net/minecraft/world/entity/EntityType/m_20674_ ()Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/EntityType/getCategory ()Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/EntityType/m_20675_ ()Ljava/lang/String; net/minecraft/world/entity/EntityType/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityType/m_20676_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/EntityType/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/EntityType/m_20677_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/EntityType/getDefaultLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/EntityType/m_20678_ ()F net/minecraft/world/entity/EntityType/getWidth ()F +MD: net/minecraft/world/entity/EntityType/m_20679_ ()F net/minecraft/world/entity/EntityType/getHeight ()F +MD: net/minecraft/world/entity/EntityType/m_20680_ ()Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityType/getDimensions ()Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityType/m_20681_ ()I net/minecraft/world/entity/EntityType/clientTrackingRange ()I +MD: net/minecraft/world/entity/EntityType/m_20682_ ()I net/minecraft/world/entity/EntityType/updateInterval ()I +MD: net/minecraft/world/entity/EntityType/m_20683_ ()Z net/minecraft/world/entity/EntityType/trackDeltas ()Z +MD: net/minecraft/world/entity/EntityType/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/entity/EntityType/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/entity/EntityType/m_262353_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$appendCustomEntityStackConfig$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_262354_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$appendCustomNameConfig$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_262355_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$createDefaultStackConfig$1 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_262451_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/create (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_262455_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_262496_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_263555_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$spawn$0 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_263556_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/appendCustomNameConfig (Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/m_263559_ (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/appendCustomEntityStackConfig (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/m_263562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/createDefaultStackConfig (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/m_264081_ (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/appendDefaultStackConfig (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/toString ()Ljava/lang/String; net/minecraft/world/entity/EntityType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityType$1/ (Ljava/util/Spliterator;Lnet/minecraft/world/level/Level;Ljava/util/List;)V net/minecraft/world/entity/EntityType$1/ (Ljava/util/Spliterator;Lnet/minecraft/world/level/Level;Ljava/util/List;)V +MD: net/minecraft/world/entity/EntityType$1/characteristics ()I net/minecraft/world/entity/EntityType$1/characteristics ()I +MD: net/minecraft/world/entity/EntityType$1/estimateSize ()J net/minecraft/world/entity/EntityType$1/estimateSize ()J +MD: net/minecraft/world/entity/EntityType$1/m_147056_ (Lnet/minecraft/world/level/Level;Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/EntityType$1/lambda$tryAdvance$1 (Lnet/minecraft/world/level/Level;Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/EntityType$1/m_147060_ (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType$1/lambda$tryAdvance$0 (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType$1/tryAdvance (Ljava/util/function/Consumer;)Z net/minecraft/world/entity/EntityType$1/tryAdvance (Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/entity/EntityType$1/trySplit ()Ljava/util/Spliterator; net/minecraft/world/entity/EntityType$1/trySplit ()Ljava/util/Spliterator; +MD: net/minecraft/world/entity/EntityType$Builder/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)V net/minecraft/world/entity/EntityType$Builder/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)V +MD: net/minecraft/world/entity/EntityType$Builder/m_20698_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/noSummon ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20699_ (FF)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/sized (FF)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20702_ (I)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/clientTrackingRange (I)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20704_ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/of (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20707_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType$Builder/lambda$createNothing$0 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType$Builder/m_20710_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/createNothing (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20712_ (Ljava/lang/String;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/EntityType$Builder/build (Ljava/lang/String;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/EntityType$Builder/m_20714_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/immuneTo ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20716_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/noSave ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20717_ (I)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/updateInterval (I)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20719_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/fireImmune ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20720_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/canSpawnFarFromPlayer ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_246346_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/requiredFeatures ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$EntityFactory/m_20721_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType$EntityFactory/create (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EquipmentSlot/ ()V net/minecraft/world/entity/EquipmentSlot/ ()V +MD: net/minecraft/world/entity/EquipmentSlot/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot$Type;IILjava/lang/String;)V net/minecraft/world/entity/EquipmentSlot/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot$Type;IILjava/lang/String;)V +MD: net/minecraft/world/entity/EquipmentSlot/m_147068_ (I)I net/minecraft/world/entity/EquipmentSlot/getIndex (I)I +MD: net/minecraft/world/entity/EquipmentSlot/m_147070_ ()[Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/$values ()[Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/m_20743_ ()Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot/getType ()Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/EquipmentSlot/m_20744_ (Lnet/minecraft/world/entity/EquipmentSlot$Type;I)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/byTypeAndIndex (Lnet/minecraft/world/entity/EquipmentSlot$Type;I)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/m_20747_ (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/m_20749_ ()I net/minecraft/world/entity/EquipmentSlot/getIndex ()I +MD: net/minecraft/world/entity/EquipmentSlot/m_20750_ ()I net/minecraft/world/entity/EquipmentSlot/getFilterFlag ()I +MD: net/minecraft/world/entity/EquipmentSlot/m_20751_ ()Ljava/lang/String; net/minecraft/world/entity/EquipmentSlot/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/EquipmentSlot/m_254934_ ()Z net/minecraft/world/entity/EquipmentSlot/isArmor ()Z +MD: net/minecraft/world/entity/EquipmentSlot/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/values ()[Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/values ()[Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot$Type/ ()V net/minecraft/world/entity/EquipmentSlot$Type/ ()V +MD: net/minecraft/world/entity/EquipmentSlot$Type/ (Ljava/lang/String;I)V net/minecraft/world/entity/EquipmentSlot$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/EquipmentSlot$Type/m_147071_ ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot$Type/$values ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/EquipmentSlot$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/EquipmentSlot$Type/values ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot$Type/values ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/level/Level;DDDI)V net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/level/Level;DDDI)V +MD: net/minecraft/world/entity/ExperienceOrb/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/ExperienceOrb/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/ExperienceOrb/m_147078_ (IILnet/minecraft/world/entity/ExperienceOrb;)Z net/minecraft/world/entity/ExperienceOrb/lambda$tryMergeToExisting$0 (IILnet/minecraft/world/entity/ExperienceOrb;)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147082_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)V net/minecraft/world/entity/ExperienceOrb/award (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)V +MD: net/minecraft/world/entity/ExperienceOrb/m_147086_ (Lnet/minecraft/world/entity/ExperienceOrb;)Z net/minecraft/world/entity/ExperienceOrb/canMerge (Lnet/minecraft/world/entity/ExperienceOrb;)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147088_ (Lnet/minecraft/world/entity/ExperienceOrb;II)Z net/minecraft/world/entity/ExperienceOrb/canMerge (Lnet/minecraft/world/entity/ExperienceOrb;II)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147092_ (Lnet/minecraft/world/entity/player/Player;I)I net/minecraft/world/entity/ExperienceOrb/repairPlayerItems (Lnet/minecraft/world/entity/player/Player;I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_147096_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/world/entity/ExperienceOrb/tryMergeToExisting (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147100_ (Lnet/minecraft/world/entity/ExperienceOrb;)V net/minecraft/world/entity/ExperienceOrb/merge (Lnet/minecraft/world/entity/ExperienceOrb;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_147103_ ()V net/minecraft/world/entity/ExperienceOrb/scanForEntities ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_20099_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ExperienceOrb/getBlockPosBelowThatAffectsMyMovement ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ExperienceOrb/m_20782_ (I)I net/minecraft/world/entity/ExperienceOrb/getExperienceValue (I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_20793_ (I)I net/minecraft/world/entity/ExperienceOrb/durabilityToXp (I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_20798_ (I)I net/minecraft/world/entity/ExperienceOrb/xpToDurability (I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_20801_ ()I net/minecraft/world/entity/ExperienceOrb/getValue ()I +MD: net/minecraft/world/entity/ExperienceOrb/m_20802_ ()I net/minecraft/world/entity/ExperienceOrb/getIcon ()I +MD: net/minecraft/world/entity/ExperienceOrb/m_20803_ ()V net/minecraft/world/entity/ExperienceOrb/setUnderwaterMovement ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/ExperienceOrb/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/ExperienceOrb/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/ExperienceOrb/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/ExperienceOrb/m_5841_ ()V net/minecraft/world/entity/ExperienceOrb/doWaterSplashEffect ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_6097_ ()Z net/minecraft/world/entity/ExperienceOrb/isAttackable ()Z +MD: net/minecraft/world/entity/ExperienceOrb/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/ExperienceOrb/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/ExperienceOrb/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ExperienceOrb/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ExperienceOrb/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_8097_ ()V net/minecraft/world/entity/ExperienceOrb/defineSynchedData ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_8119_ ()V net/minecraft/world/entity/ExperienceOrb/tick ()V +MD: net/minecraft/world/entity/FlyingMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/FlyingMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/FlyingMob/m_6147_ ()Z net/minecraft/world/entity/FlyingMob/onClimbable ()Z +MD: net/minecraft/world/entity/FlyingMob/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/FlyingMob/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/FlyingMob/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/FlyingMob/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/GlowSquid/ ()V net/minecraft/world/entity/GlowSquid/ ()V +MD: net/minecraft/world/entity/GlowSquid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/GlowSquid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/GlowSquid/m_142033_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/GlowSquid/getInkParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/GlowSquid/m_142555_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getSquirtSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_147119_ (I)V net/minecraft/world/entity/GlowSquid/setDarkTicks (I)V +MD: net/minecraft/world/entity/GlowSquid/m_147128_ ()I net/minecraft/world/entity/GlowSquid/getDarkTicksRemaining ()I +MD: net/minecraft/world/entity/GlowSquid/m_217017_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/GlowSquid/checkGlowSquideSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/GlowSquid/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/GlowSquid/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/GlowSquid/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/GlowSquid/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/GlowSquid/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/GlowSquid/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/GlowSquid/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_8097_ ()V net/minecraft/world/entity/GlowSquid/defineSynchedData ()V +MD: net/minecraft/world/entity/GlowSquid/m_8107_ ()V net/minecraft/world/entity/GlowSquid/aiStep ()V +MD: net/minecraft/world/entity/HasCustomInventoryScreen/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/HasCustomInventoryScreen/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/HumanoidArm/ ()V net/minecraft/world/entity/HumanoidArm/ ()V +MD: net/minecraft/world/entity/HumanoidArm/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/HumanoidArm/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/HumanoidArm/m_147131_ ()[Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/$values ()[Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/HumanoidArm/m_20828_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/getOpposite ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/HumanoidArm/m_35965_ ()I net/minecraft/world/entity/HumanoidArm/getId ()I +MD: net/minecraft/world/entity/HumanoidArm/m_35968_ ()Ljava/lang/String; net/minecraft/world/entity/HumanoidArm/getKey ()Ljava/lang/String; +MD: net/minecraft/world/entity/HumanoidArm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/HumanoidArm/values ()[Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/values ()[Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/Interaction/ ()V net/minecraft/world/entity/Interaction/ ()V +MD: net/minecraft/world/entity/Interaction/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Interaction/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Interaction/m_142242_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Interaction/makeBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Interaction/m_271686_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Interaction/getLastAttacker ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Interaction/m_271717_ (Z)V net/minecraft/world/entity/Interaction/setResponse (Z)V +MD: net/minecraft/world/entity/Interaction/m_271718_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Interaction/lambda$addAdditionalSaveData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Interaction/m_271752_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Interaction/lambda$readAdditionalSaveData$1 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Interaction/m_271772_ ()Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/Interaction/getDimensions ()Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/Interaction/m_271774_ (F)V net/minecraft/world/entity/Interaction/setHeight (F)V +MD: net/minecraft/world/entity/Interaction/m_271807_ ()Z net/minecraft/world/entity/Interaction/canBeHitByProjectile ()Z +MD: net/minecraft/world/entity/Interaction/m_271819_ ()Z net/minecraft/world/entity/Interaction/getResponse ()Z +MD: net/minecraft/world/entity/Interaction/m_271854_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Interaction/lambda$readAdditionalSaveData$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Interaction/m_271858_ ()F net/minecraft/world/entity/Interaction/getHeight ()F +MD: net/minecraft/world/entity/Interaction/m_271873_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Interaction/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Interaction/m_272023_ ()F net/minecraft/world/entity/Interaction/getWidth ()F +MD: net/minecraft/world/entity/Interaction/m_272058_ (F)V net/minecraft/world/entity/Interaction/setWidth (F)V +MD: net/minecraft/world/entity/Interaction/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Interaction/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Interaction/m_6087_ ()Z net/minecraft/world/entity/Interaction/isPickable ()Z +MD: net/minecraft/world/entity/Interaction/m_6090_ ()Z net/minecraft/world/entity/Interaction/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Interaction/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Interaction/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Interaction/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/Interaction/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/Interaction/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Interaction/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Interaction/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Interaction/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Interaction/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Interaction/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Interaction/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Interaction/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Interaction/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Interaction/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Interaction/m_8097_ ()V net/minecraft/world/entity/Interaction/defineSynchedData ()V +MD: net/minecraft/world/entity/Interaction/m_8119_ ()V net/minecraft/world/entity/Interaction/tick ()V +MD: net/minecraft/world/entity/Interaction$PlayerAction/ ()V net/minecraft/world/entity/Interaction$PlayerAction/ ()V +MD: net/minecraft/world/entity/Interaction$PlayerAction/ (Ljava/util/UUID;J)V net/minecraft/world/entity/Interaction$PlayerAction/ (Ljava/util/UUID;J)V +MD: net/minecraft/world/entity/Interaction$PlayerAction/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Interaction$PlayerAction/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Interaction$PlayerAction/f_271379_ ()Ljava/util/UUID; net/minecraft/world/entity/Interaction$PlayerAction/player ()Ljava/util/UUID; +MD: net/minecraft/world/entity/Interaction$PlayerAction/f_271492_ ()J net/minecraft/world/entity/Interaction$PlayerAction/timestamp ()J +MD: net/minecraft/world/entity/Interaction$PlayerAction/hashCode ()I net/minecraft/world/entity/Interaction$PlayerAction/hashCode ()I +MD: net/minecraft/world/entity/Interaction$PlayerAction/m_272090_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/Interaction$PlayerAction/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/Interaction$PlayerAction/toString ()Ljava/lang/String; net/minecraft/world/entity/Interaction$PlayerAction/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ItemBasedSteering/ (Lnet/minecraft/network/syncher/SynchedEntityData;Lnet/minecraft/network/syncher/EntityDataAccessor;Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/ItemBasedSteering/ (Lnet/minecraft/network/syncher/SynchedEntityData;Lnet/minecraft/network/syncher/EntityDataAccessor;Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20844_ ()V net/minecraft/world/entity/ItemBasedSteering/onSynced ()V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20847_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ItemBasedSteering/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20849_ (Z)V net/minecraft/world/entity/ItemBasedSteering/setSaddle (Z)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20851_ ()Z net/minecraft/world/entity/ItemBasedSteering/hasSaddle ()Z +MD: net/minecraft/world/entity/ItemBasedSteering/m_20852_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ItemBasedSteering/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_217032_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/ItemBasedSteering/boost (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/ItemBasedSteering/m_274397_ ()I net/minecraft/world/entity/ItemBasedSteering/boostTimeTotal ()I +MD: net/minecraft/world/entity/ItemBasedSteering/m_274439_ ()F net/minecraft/world/entity/ItemBasedSteering/boostFactor ()F +MD: net/minecraft/world/entity/ItemBasedSteering/m_274606_ ()V net/minecraft/world/entity/ItemBasedSteering/tickBoost ()V +MD: net/minecraft/world/entity/ItemSteerable/m_6746_ ()Z net/minecraft/world/entity/ItemSteerable/boost ()Z +MD: net/minecraft/world/entity/LerpingModel/m_142115_ ()Ljava/util/Map; net/minecraft/world/entity/LerpingModel/getModelRotationValues ()Ljava/util/Map; +MD: net/minecraft/world/entity/LightningBolt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/LightningBolt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/LightningBolt/m_147139_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LightningBolt/lambda$tick$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LightningBolt/m_147141_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/LightningBolt/lambda$randomStepCleaningCopper$2 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/LightningBolt/m_147145_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)V net/minecraft/world/entity/LightningBolt/randomWalkCleaningCopper (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)V +MD: net/minecraft/world/entity/LightningBolt/m_147150_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LightningBolt/clearCopperOnLightningStrike (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LightningBolt/m_147153_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/LightningBolt/randomStepCleaningCopper (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/LightningBolt/m_147156_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/LightningBolt/lambda$tick$1 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/LightningBolt/m_147158_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/world/entity/LightningBolt/getCause ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/world/entity/LightningBolt/m_147159_ ()I net/minecraft/world/entity/LightningBolt/getBlocksSetOnFire ()I +MD: net/minecraft/world/entity/LightningBolt/m_147160_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/LightningBolt/getHitEntities ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/LightningBolt/m_147161_ ()V net/minecraft/world/entity/LightningBolt/powerLightningRod ()V +MD: net/minecraft/world/entity/LightningBolt/m_147162_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/LightningBolt/getStrikePosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/LightningBolt/m_20870_ (I)V net/minecraft/world/entity/LightningBolt/spawnFire (I)V +MD: net/minecraft/world/entity/LightningBolt/m_20874_ (Z)V net/minecraft/world/entity/LightningBolt/setVisualOnly (Z)V +MD: net/minecraft/world/entity/LightningBolt/m_20879_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/LightningBolt/setCause (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/LightningBolt/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/LightningBolt/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/LightningBolt/m_6783_ (D)Z net/minecraft/world/entity/LightningBolt/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/LightningBolt/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LightningBolt/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LightningBolt/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LightningBolt/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LightningBolt/m_8097_ ()V net/minecraft/world/entity/LightningBolt/defineSynchedData ()V +MD: net/minecraft/world/entity/LightningBolt/m_8119_ ()V net/minecraft/world/entity/LightningBolt/tick ()V +MD: net/minecraft/world/entity/LivingEntity/ ()V net/minecraft/world/entity/LivingEntity/ ()V +MD: net/minecraft/world/entity/LivingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/LivingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/LivingEntity/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/LivingEntity/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/LivingEntity/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/LivingEntity/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/LivingEntity/m_141973_ (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/onEffectUpdated (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_142038_ ()Z net/minecraft/world/entity/LivingEntity/isCurrentlyGlowing ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142065_ ()Z net/minecraft/world/entity/LivingEntity/canBeSeenByAnyone ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142066_ ()Z net/minecraft/world/entity/LivingEntity/canBeSeenAsEnemy ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142079_ ()Z net/minecraft/world/entity/LivingEntity/canFreeze ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142106_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/updateUsingItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/LivingEntity/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/LivingEntity/m_142540_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/onEffectAdded (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_142582_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LivingEntity/hasLineOfSight (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_142642_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/LivingEntity/hurtHelmet (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/LivingEntity/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/LivingEntity/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/LivingEntity/m_147195_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/LivingEntity/createEquipmentSlotAccess (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/LivingEntity/m_147198_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/lambda$isHolding$4 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_147202_ (Ljava/util/List;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/lambda$handleEquipmentChanges$5 (Ljava/util/List;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_147207_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LivingEntity/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_147211_ (I)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/LivingEntity/getEquipmentSlot (I)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/LivingEntity/m_147215_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/forceAddEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_147223_ ()Z net/minecraft/world/entity/LivingEntity/shouldDiscardFriction ()Z +MD: net/minecraft/world/entity/LivingEntity/m_147225_ ()V net/minecraft/world/entity/LivingEntity/removeFrost ()V +MD: net/minecraft/world/entity/LivingEntity/m_147226_ ()V net/minecraft/world/entity/LivingEntity/tryAddFrost ()V +MD: net/minecraft/world/entity/LivingEntity/m_147229_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/lambda$stopSleeping$8 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_147231_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/lambda$updateFallFlying$6 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_147233_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/LivingEntity/getEquipmentSlotForItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/LivingEntity/m_147239_ ()V net/minecraft/world/entity/LivingEntity/updateGlowingStatus ()V +MD: net/minecraft/world/entity/LivingEntity/m_147240_ (DDD)V net/minecraft/world/entity/LivingEntity/knockback (DDD)V +MD: net/minecraft/world/entity/LivingEntity/m_147244_ (Z)V net/minecraft/world/entity/LivingEntity/setDiscardFriction (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_147246_ ()V net/minecraft/world/entity/LivingEntity/makePoofParticles ()V +MD: net/minecraft/world/entity/LivingEntity/m_181122_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/verifyEquippedItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/LivingEntity/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/LivingEntity/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/LivingEntity/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/LivingEntity/m_203441_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/entity/LivingEntity/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/entity/LivingEntity/m_20968_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/entity/LivingEntity/getVisibilityPercent (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/entity/LivingEntity/m_20984_ (DDDZ)Z net/minecraft/world/entity/LivingEntity/randomTeleport (DDDZ)Z +MD: net/minecraft/world/entity/LivingEntity/m_20994_ (DZLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getFluidFallingAdjustedMovement (DZLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_20998_ (F)F net/minecraft/world/entity/LivingEntity/getSwimAmount (F)F +MD: net/minecraft/world/entity/LivingEntity/m_21008_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setItemInHand (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21011_ (Lnet/minecraft/world/InteractionHand;Z)V net/minecraft/world/entity/LivingEntity/swing (Lnet/minecraft/world/InteractionHand;Z)V +MD: net/minecraft/world/entity/LivingEntity/m_21023_ (Lnet/minecraft/world/effect/MobEffect;)Z net/minecraft/world/entity/LivingEntity/hasEffect (Lnet/minecraft/world/effect/MobEffect;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21028_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/dismountVehicle (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21033_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/LivingEntity/hasItemInSlot (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21040_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z net/minecraft/world/entity/LivingEntity/canAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21051_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/LivingEntity/getAttribute (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/LivingEntity/m_21053_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/LivingEntity/onItemPickup (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21055_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/entity/LivingEntity/isHolding (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21060_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/LivingEntity/spawnItemParticles (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/LivingEntity/m_21063_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/addEatEffect (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21071_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/AABB;)V net/minecraft/world/entity/LivingEntity/checkAutoSpinAttack (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/AABB;)V +MD: net/minecraft/world/entity/LivingEntity/m_21074_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/handleRelativeFrictionAndCalculateMovement (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_21080_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/setPosToBed (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_21091_ (Ljava/util/Map;)V net/minecraft/world/entity/LivingEntity/handleHandSwap (Ljava/util/Map;)V +MD: net/minecraft/world/entity/LivingEntity/m_21093_ (Ljava/util/function/Predicate;)Z net/minecraft/world/entity/LivingEntity/isHolding (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21097_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_21100_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/LivingEntity/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/LivingEntity/m_21120_ (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getItemInHand (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21124_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/entity/LivingEntity/getEffect (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/entity/LivingEntity/m_21128_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setLastArmorItem (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21133_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/LivingEntity/getAttributeValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/LivingEntity/m_21137_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/LivingEntity/triggerItemUseEffects (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/LivingEntity/m_21142_ (Ljava/util/Map;)V net/minecraft/world/entity/LivingEntity/handleEquipmentChanges (Ljava/util/Map;)V +MD: net/minecraft/world/entity/LivingEntity/m_21153_ (F)V net/minecraft/world/entity/LivingEntity/setHealth (F)V +MD: net/minecraft/world/entity/LivingEntity/m_21155_ (IZ)V net/minecraft/world/entity/LivingEntity/setLivingEntityFlag (IZ)V +MD: net/minecraft/world/entity/LivingEntity/m_21161_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/LivingEntity/getDamageAfterArmorAbsorb (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/LivingEntity/m_21166_ (Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/entity/LivingEntity/broadcastBreakEvent (Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/entity/LivingEntity/m_21168_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setLastHandItem (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21172_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/LivingEntity/getAttributeBaseValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/LivingEntity/m_21176_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/LivingEntity/trapdoorUsableAsLadder (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21179_ (Ljava/util/Collection;)Z net/minecraft/world/entity/LivingEntity/areAllEffectsAmbient (Ljava/util/Collection;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21183_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/LivingEntity/createLivingAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/LivingEntity/m_21184_ ()V net/minecraft/world/entity/LivingEntity/spawnSoulSpeedParticle ()V +MD: net/minecraft/world/entity/LivingEntity/m_21185_ ()V net/minecraft/world/entity/LivingEntity/removeSoulSpeed ()V +MD: net/minecraft/world/entity/LivingEntity/m_21186_ ()V net/minecraft/world/entity/LivingEntity/tryAddSoulSpeed ()V +MD: net/minecraft/world/entity/LivingEntity/m_21188_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getLastHurtByMob ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_21190_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/LivingEntity/broadcastBreakEvent (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/LivingEntity/m_21195_ (Lnet/minecraft/world/effect/MobEffect;)Z net/minecraft/world/entity/LivingEntity/removeEffect (Lnet/minecraft/world/effect/MobEffect;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21198_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getLastArmorItem (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21203_ ()V net/minecraft/world/entity/LivingEntity/updateSwingTime ()V +MD: net/minecraft/world/entity/LivingEntity/m_21204_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeMap; net/minecraft/world/entity/LivingEntity/getAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeMap; +MD: net/minecraft/world/entity/LivingEntity/m_21205_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getMainHandItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21206_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getOffhandItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21207_ ()F net/minecraft/world/entity/LivingEntity/getArmorCoverPercentage ()F +MD: net/minecraft/world/entity/LivingEntity/m_21208_ ()V net/minecraft/world/entity/LivingEntity/goDownInWater ()V +MD: net/minecraft/world/entity/LivingEntity/m_21209_ ()Z net/minecraft/world/entity/LivingEntity/isAutoSpinAttack ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21210_ ()V net/minecraft/world/entity/LivingEntity/updateEffectVisibility ()V +MD: net/minecraft/world/entity/LivingEntity/m_21211_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getUseItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21212_ ()I net/minecraft/world/entity/LivingEntity/getUseItemRemainingTicks ()I +MD: net/minecraft/world/entity/LivingEntity/m_21213_ ()I net/minecraft/world/entity/LivingEntity/getLastHurtByMobTimestamp ()I +MD: net/minecraft/world/entity/LivingEntity/m_21214_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getLastHurtMob ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_21215_ ()I net/minecraft/world/entity/LivingEntity/getLastHurtMobTimestamp ()I +MD: net/minecraft/world/entity/LivingEntity/m_21216_ ()I net/minecraft/world/entity/LivingEntity/getNoActionTime ()I +MD: net/minecraft/world/entity/LivingEntity/m_21217_ ()V net/minecraft/world/entity/LivingEntity/tickEffects ()V +MD: net/minecraft/world/entity/LivingEntity/m_21218_ ()V net/minecraft/world/entity/LivingEntity/removeEffectParticles ()V +MD: net/minecraft/world/entity/LivingEntity/m_21219_ ()Z net/minecraft/world/entity/LivingEntity/removeAllEffects ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21220_ ()Ljava/util/Collection; net/minecraft/world/entity/LivingEntity/getActiveEffects ()Ljava/util/Collection; +MD: net/minecraft/world/entity/LivingEntity/m_21221_ ()Ljava/util/Map; net/minecraft/world/entity/LivingEntity/getActiveEffectsMap ()Ljava/util/Map; +MD: net/minecraft/world/entity/LivingEntity/m_21222_ ()Z net/minecraft/world/entity/LivingEntity/isInvertedHealAndHarm ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21223_ ()F net/minecraft/world/entity/LivingEntity/getHealth ()F +MD: net/minecraft/world/entity/LivingEntity/m_21224_ ()Z net/minecraft/world/entity/LivingEntity/isDeadOrDying ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21225_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/entity/LivingEntity/getLastDamageSource ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/entity/LivingEntity/m_21226_ ()V net/minecraft/world/entity/LivingEntity/dropExperience ()V +MD: net/minecraft/world/entity/LivingEntity/m_21227_ ()Ljava/util/Optional; net/minecraft/world/entity/LivingEntity/getLastClimbablePos ()Ljava/util/Optional; +MD: net/minecraft/world/entity/LivingEntity/m_21229_ ()V net/minecraft/world/entity/LivingEntity/playBlockFallSound ()V +MD: net/minecraft/world/entity/LivingEntity/m_21230_ ()I net/minecraft/world/entity/LivingEntity/getArmorValue ()I +MD: net/minecraft/world/entity/LivingEntity/m_21231_ ()Lnet/minecraft/world/damagesource/CombatTracker; net/minecraft/world/entity/LivingEntity/getCombatTracker ()Lnet/minecraft/world/damagesource/CombatTracker; +MD: net/minecraft/world/entity/LivingEntity/m_21232_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getKillCredit ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_21233_ ()F net/minecraft/world/entity/LivingEntity/getMaxHealth ()F +MD: net/minecraft/world/entity/LivingEntity/m_21234_ ()I net/minecraft/world/entity/LivingEntity/getArrowCount ()I +MD: net/minecraft/world/entity/LivingEntity/m_21235_ ()I net/minecraft/world/entity/LivingEntity/getStingerCount ()I +MD: net/minecraft/world/entity/LivingEntity/m_21244_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getLastHandItem (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21250_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/setSleepingPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_21252_ ()I net/minecraft/world/entity/LivingEntity/getTicksUsingItem ()I +MD: net/minecraft/world/entity/LivingEntity/m_21253_ ()V net/minecraft/world/entity/LivingEntity/releaseUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_21254_ ()Z net/minecraft/world/entity/LivingEntity/isBlocking ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21255_ ()Z net/minecraft/world/entity/LivingEntity/isFallFlying ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21256_ ()I net/minecraft/world/entity/LivingEntity/getFallFlyingTicks ()I +MD: net/minecraft/world/entity/LivingEntity/m_21257_ ()Ljava/util/Optional; net/minecraft/world/entity/LivingEntity/getSleepingPos ()Ljava/util/Optional; +MD: net/minecraft/world/entity/LivingEntity/m_21258_ ()V net/minecraft/world/entity/LivingEntity/clearSleepingPos ()V +MD: net/minecraft/world/entity/LivingEntity/m_21259_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/LivingEntity/getBedOrientation ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/LivingEntity/m_21262_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/LivingEntity/checkTotemDeathProtection (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21264_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/LivingEntity/lambda$tickEffects$3 (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/LivingEntity/m_21266_ (Lnet/minecraft/world/entity/EquipmentSlot;)B net/minecraft/world/entity/LivingEntity/entityEventForEquipmentBreak (Lnet/minecraft/world/entity/EquipmentSlot;)B +MD: net/minecraft/world/entity/LivingEntity/m_21268_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/createWitherRose (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21270_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/LivingEntity/getLocalBoundsForPose (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/LivingEntity/m_21275_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/LivingEntity/isDamageSourceBlocked (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21278_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/breakItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21289_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/resetForwardDirectionOfRelativePortalPosition (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_21297_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/handleOnClimbable (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_21300_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/lambda$tryAddSoulSpeed$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21304_ ()I net/minecraft/world/entity/LivingEntity/getCurrentSwingDuration ()I +MD: net/minecraft/world/entity/LivingEntity/m_21310_ (I)V net/minecraft/world/entity/LivingEntity/setNoActionTime (I)V +MD: net/minecraft/world/entity/LivingEntity/m_21312_ ()V net/minecraft/world/entity/LivingEntity/swapHandItems ()V +MD: net/minecraft/world/entity/LivingEntity/m_21315_ ()V net/minecraft/world/entity/LivingEntity/detectEquipmentUpdates ()V +MD: net/minecraft/world/entity/LivingEntity/m_21317_ (I)V net/minecraft/world/entity/LivingEntity/setArrowCount (I)V +MD: net/minecraft/world/entity/LivingEntity/m_21319_ ()Ljava/util/Map; net/minecraft/world/entity/LivingEntity/collectEquipmentChanges ()Ljava/util/Map; +MD: net/minecraft/world/entity/LivingEntity/m_21321_ (I)V net/minecraft/world/entity/LivingEntity/setStingerCount (I)V +MD: net/minecraft/world/entity/LivingEntity/m_21323_ ()V net/minecraft/world/entity/LivingEntity/updateFallFlying ()V +MD: net/minecraft/world/entity/LivingEntity/m_21324_ (F)F net/minecraft/world/entity/LivingEntity/getAttackAnim (F)F +MD: net/minecraft/world/entity/LivingEntity/m_21329_ ()V net/minecraft/world/entity/LivingEntity/updatingUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_21330_ (F)F net/minecraft/world/entity/LivingEntity/getFrictionInfluencedSpeed (F)F +MD: net/minecraft/world/entity/LivingEntity/m_21332_ ()Z net/minecraft/world/entity/LivingEntity/shouldTriggerItemUseEffects ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21333_ ()V net/minecraft/world/entity/LivingEntity/updateSwimAmount ()V +MD: net/minecraft/world/entity/LivingEntity/m_21334_ ()Z net/minecraft/world/entity/LivingEntity/checkBedExists ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21335_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/setLastHurtMob (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_213772_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/LivingEntity/doesEmitEquipEvent (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/LivingEntity/m_213816_ ()F net/minecraft/world/entity/LivingEntity/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/LivingEntity/m_213824_ ()Z net/minecraft/world/entity/LivingEntity/canDisableShield ()Z +MD: net/minecraft/world/entity/LivingEntity/m_213860_ ()I net/minecraft/world/entity/LivingEntity/getExperienceReward ()I +MD: net/minecraft/world/entity/LivingEntity/m_217043_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/LivingEntity/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/LivingEntity/m_217045_ ()V net/minecraft/world/entity/LivingEntity/skipDropExperience ()V +MD: net/minecraft/world/entity/LivingEntity/m_217046_ ()Z net/minecraft/world/entity/LivingEntity/wasExperienceConsumed ()Z +MD: net/minecraft/world/entity/LivingEntity/m_238392_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/onEquipItem (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/LivingEntity/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/LivingEntity/m_245892_ (Lnet/minecraft/core/Holder;)D net/minecraft/world/entity/LivingEntity/getAttributeBaseValue (Lnet/minecraft/core/Holder;)D +MD: net/minecraft/world/entity/LivingEntity/m_246525_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/equipmentHasChanged (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_246858_ (Lnet/minecraft/core/Holder;)D net/minecraft/world/entity/LivingEntity/getAttributeValue (Lnet/minecraft/core/Holder;)D +MD: net/minecraft/world/entity/LivingEntity/m_260785_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/lambda$stopSleeping$9 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_262803_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getMeleeAttackReferencePosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_264297_ ()F net/minecraft/world/entity/LivingEntity/getHurtDir ()F +MD: net/minecraft/world/entity/LivingEntity/m_267651_ (Z)V net/minecraft/world/entity/LivingEntity/calculateEntityAnimation (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_267689_ (F)V net/minecraft/world/entity/LivingEntity/updateWalkAnimation (F)V +MD: net/minecraft/world/entity/LivingEntity/m_268865_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/lambda$createEquipmentSlotAccess$10 (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_269138_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/handleDamageEvent (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_269405_ (DD)V net/minecraft/world/entity/LivingEntity/indicateDamage (DD)V +MD: net/minecraft/world/entity/LivingEntity/m_271686_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getLastAttacker ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_274421_ ()F net/minecraft/world/entity/LivingEntity/maxUpStep ()F +MD: net/minecraft/world/entity/LivingEntity/m_274460_ ()F net/minecraft/world/entity/LivingEntity/getFlyingSpeed ()F +MD: net/minecraft/world/entity/LivingEntity/m_274466_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/travelRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_285755_ ()F net/minecraft/world/entity/LivingEntity/getJumpBoostPower ()F +MD: net/minecraft/world/entity/LivingEntity/m_287233_ ()J net/minecraft/world/entity/LivingEntity/getLootTableSeed ()J +MD: net/minecraft/world/entity/LivingEntity/m_289088_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; net/minecraft/world/entity/LivingEntity/lambda$checkBedExists$7 (Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/LivingEntity/m_289605_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/LivingEntity/sendEffectToPassengers (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/LivingEntity/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/LivingEntity/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/LivingEntity/m_5584_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/eat (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_5616_ (F)V net/minecraft/world/entity/LivingEntity/setYHeadRot (F)V +MD: net/minecraft/world/entity/LivingEntity/m_5618_ (F)V net/minecraft/world/entity/LivingEntity/setYBodyRot (F)V +MD: net/minecraft/world/entity/LivingEntity/m_5632_ (FF)F net/minecraft/world/entity/LivingEntity/tickHeadTurn (FF)F +MD: net/minecraft/world/entity/LivingEntity/m_5634_ (F)V net/minecraft/world/entity/LivingEntity/heal (F)V +MD: net/minecraft/world/entity/LivingEntity/m_5639_ (FF)I net/minecraft/world/entity/LivingEntity/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/LivingEntity/m_5675_ (F)F net/minecraft/world/entity/LivingEntity/getViewYRot (F)F +MD: net/minecraft/world/entity/LivingEntity/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/LivingEntity/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/LivingEntity/m_5743_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/LivingEntity/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/LivingEntity/m_5789_ ()Z net/minecraft/world/entity/LivingEntity/attackable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5791_ ()Z net/minecraft/world/entity/LivingEntity/isSuppressingSlidingDownLadder ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5796_ ()V net/minecraft/world/entity/LivingEntity/stopSleeping ()V +MD: net/minecraft/world/entity/LivingEntity/m_5801_ ()Z net/minecraft/world/entity/LivingEntity/isAffectedByPotions ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5802_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/startSleeping (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_5803_ ()Z net/minecraft/world/entity/LivingEntity/isSleeping ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5806_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/onChangedBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_5810_ ()V net/minecraft/world/entity/LivingEntity/stopUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_5830_ ()Z net/minecraft/world/entity/LivingEntity/isInWall ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5896_ (I)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getFallDamageSound (I)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_5907_ ()V net/minecraft/world/entity/LivingEntity/dropEquipment ()V +MD: net/minecraft/world/entity/LivingEntity/m_6039_ ()Z net/minecraft/world/entity/LivingEntity/canSpawnSoulSpeedParticle ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6040_ ()Z net/minecraft/world/entity/LivingEntity/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6041_ ()F net/minecraft/world/entity/LivingEntity/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/LivingEntity/m_6046_ ()Z net/minecraft/world/entity/LivingEntity/onSoulSpeedBlock ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6052_ ()Z net/minecraft/world/entity/LivingEntity/shouldShowName ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6053_ (F)V net/minecraft/world/entity/LivingEntity/animateHurt (F)V +MD: net/minecraft/world/entity/LivingEntity/m_6067_ ()Z net/minecraft/world/entity/LivingEntity/isVisuallySwimming ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6072_ ()Z net/minecraft/world/entity/LivingEntity/canChangeDimensions ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6074_ ()V net/minecraft/world/entity/LivingEntity/kill ()V +MD: net/minecraft/world/entity/LivingEntity/m_6075_ ()V net/minecraft/world/entity/LivingEntity/baseTick ()V +MD: net/minecraft/world/entity/LivingEntity/m_6080_ ()F net/minecraft/world/entity/LivingEntity/getYHeadRot ()F +MD: net/minecraft/world/entity/LivingEntity/m_6083_ ()V net/minecraft/world/entity/LivingEntity/rideTick ()V +MD: net/minecraft/world/entity/LivingEntity/m_6084_ ()Z net/minecraft/world/entity/LivingEntity/isAlive ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6087_ ()Z net/minecraft/world/entity/LivingEntity/isPickable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6088_ ()V net/minecraft/world/entity/LivingEntity/onBelowWorld ()V +MD: net/minecraft/world/entity/LivingEntity/m_6094_ ()Z net/minecraft/world/entity/LivingEntity/isPushable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6100_ ()F net/minecraft/world/entity/LivingEntity/getVoicePitch ()F +MD: net/minecraft/world/entity/LivingEntity/m_6103_ ()F net/minecraft/world/entity/LivingEntity/getAbsorptionAmount ()F +MD: net/minecraft/world/entity/LivingEntity/m_6107_ ()Z net/minecraft/world/entity/LivingEntity/isImmobile ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6108_ ()F net/minecraft/world/entity/LivingEntity/getWaterSlowDown ()F +MD: net/minecraft/world/entity/LivingEntity/m_6113_ ()F net/minecraft/world/entity/LivingEntity/getSpeed ()F +MD: net/minecraft/world/entity/LivingEntity/m_6117_ ()Z net/minecraft/world/entity/LivingEntity/isUsingItem ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6118_ ()F net/minecraft/world/entity/LivingEntity/getJumpPower ()F +MD: net/minecraft/world/entity/LivingEntity/m_6121_ ()F net/minecraft/world/entity/LivingEntity/getSoundVolume ()F +MD: net/minecraft/world/entity/LivingEntity/m_6124_ ()Z net/minecraft/world/entity/LivingEntity/isAlwaysExperienceDropper ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6125_ ()Z net/minecraft/world/entity/LivingEntity/shouldDropLoot ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6126_ ()Z net/minecraft/world/entity/LivingEntity/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6129_ ()Z net/minecraft/world/entity/LivingEntity/isAffectedByFluids ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6134_ ()F net/minecraft/world/entity/LivingEntity/getScale ()F +MD: net/minecraft/world/entity/LivingEntity/m_6135_ ()V net/minecraft/world/entity/LivingEntity/jumpFromGround ()V +MD: net/minecraft/world/entity/LivingEntity/m_6138_ ()V net/minecraft/world/entity/LivingEntity/pushEntities ()V +MD: net/minecraft/world/entity/LivingEntity/m_6140_ ()V net/minecraft/world/entity/LivingEntity/serverAiStep ()V +MD: net/minecraft/world/entity/LivingEntity/m_6147_ ()Z net/minecraft/world/entity/LivingEntity/onClimbable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6149_ ()Z net/minecraft/world/entity/LivingEntity/shouldDropExperience ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6153_ ()V net/minecraft/world/entity/LivingEntity/tickDeath ()V +MD: net/minecraft/world/entity/LivingEntity/m_6162_ ()Z net/minecraft/world/entity/LivingEntity/isBaby ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/LivingEntity/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/LivingEntity/m_6234_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/entity/LivingEntity/removeEffectNoUpdate (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/entity/LivingEntity/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/LivingEntity/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/LivingEntity/m_6298_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getProjectile (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/LivingEntity/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/LivingEntity/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/LivingEntity/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/LivingEntity/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/LivingEntity/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/LivingEntity/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/LivingEntity/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/LivingEntity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/LivingEntity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/LivingEntity/m_6472_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/LivingEntity/hurtArmor (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/LivingEntity/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/LivingEntity/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/LivingEntity/m_6515_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/LivingEntity/getDamageAfterMagicAbsorb (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/LivingEntity/m_6541_ (FI)V net/minecraft/world/entity/LivingEntity/lerpHeadTo (FI)V +MD: net/minecraft/world/entity/LivingEntity/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/LivingEntity/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/LivingEntity/m_6598_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/LivingEntity/setLastHurtByPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/LivingEntity/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_6668_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/dropAllDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_6672_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/LivingEntity/startUsingItem (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/LivingEntity/m_6674_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/LivingEntity/swing (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/LivingEntity/m_6677_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/playHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_6703_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/setLastHurtByMob (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6727_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/doAutoAttackOnTouch (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6728_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/blockUsingShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6757_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/LivingEntity/shouldRemoveSoulSpeed (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/LivingEntity/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/LivingEntity/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_6818_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/LivingEntity/setRecordPlayingNearby (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/LivingEntity/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_6858_ (Z)V net/minecraft/world/entity/LivingEntity/setSprinting (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_6862_ (Z)V net/minecraft/world/entity/LivingEntity/setJumping (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/LivingEntity/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/LivingEntity/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/LivingEntity/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/LivingEntity/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7285_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/LivingEntity/onEffectRemoved (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/LivingEntity/m_7292_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/LivingEntity/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/LivingEntity/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7302_ (I)I net/minecraft/world/entity/LivingEntity/decreaseAirSupply (I)I +MD: net/minecraft/world/entity/LivingEntity/m_7305_ (I)I net/minecraft/world/entity/LivingEntity/increaseAirSupply (I)I +MD: net/minecraft/world/entity/LivingEntity/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LivingEntity/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/LivingEntity/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/LivingEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LivingEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LivingEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LivingEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LivingEntity/m_7431_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/LivingEntity/getDismountPoses ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/LivingEntity/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/LivingEntity/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/LivingEntity/m_7618_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_7625_ (Lnet/minecraft/world/damagesource/DamageSource;Z)V net/minecraft/world/entity/LivingEntity/dropFromLootTable (Lnet/minecraft/world/damagesource/DamageSource;Z)V +MD: net/minecraft/world/entity/LivingEntity/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_7655_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/world/entity/LivingEntity/getUsedItemHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/entity/LivingEntity/m_7822_ (B)V net/minecraft/world/entity/LivingEntity/handleEntityEvent (B)V +MD: net/minecraft/world/entity/LivingEntity/m_7838_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getDrinkingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_7909_ (F)V net/minecraft/world/entity/LivingEntity/hurtCurrentlyUsedShield (F)V +MD: net/minecraft/world/entity/LivingEntity/m_7910_ (F)V net/minecraft/world/entity/LivingEntity/setSpeed (F)V +MD: net/minecraft/world/entity/LivingEntity/m_7911_ (F)V net/minecraft/world/entity/LivingEntity/setAbsorptionAmount (F)V +MD: net/minecraft/world/entity/LivingEntity/m_7938_ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/entity/LivingEntity/take (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/entity/LivingEntity/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_8034_ ()V net/minecraft/world/entity/LivingEntity/updateInvisibilityStatus ()V +MD: net/minecraft/world/entity/LivingEntity/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/LivingEntity/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/LivingEntity/m_8095_ ()V net/minecraft/world/entity/LivingEntity/completeUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_8097_ ()V net/minecraft/world/entity/LivingEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/LivingEntity/m_8098_ ()V net/minecraft/world/entity/LivingEntity/onLeaveCombat ()V +MD: net/minecraft/world/entity/LivingEntity/m_8107_ ()V net/minecraft/world/entity/LivingEntity/aiStep ()V +MD: net/minecraft/world/entity/LivingEntity/m_8108_ ()V net/minecraft/world/entity/LivingEntity/onEnterCombat ()V +MD: net/minecraft/world/entity/LivingEntity/m_8119_ ()V net/minecraft/world/entity/LivingEntity/tick ()V +MD: net/minecraft/world/entity/LivingEntity/m_8127_ ()V net/minecraft/world/entity/LivingEntity/stopRiding ()V +MD: net/minecraft/world/entity/LivingEntity$1/ ()V net/minecraft/world/entity/LivingEntity$1/ ()V +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/LivingEntity$Fallsounds/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/LivingEntity$Fallsounds/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196626_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity$Fallsounds/small ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196627_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity$Fallsounds/big ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/hashCode ()I net/minecraft/world/entity/LivingEntity$Fallsounds/hashCode ()I +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/toString ()Ljava/lang/String; net/minecraft/world/entity/LivingEntity$Fallsounds/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Marker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Marker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Marker/m_20348_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Marker/addPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Marker/m_269011_ ()Z net/minecraft/world/entity/Marker/couldAcceptPassenger ()Z +MD: net/minecraft/world/entity/Marker/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/Marker/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/Marker/m_6090_ ()Z net/minecraft/world/entity/Marker/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Marker/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Marker/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Marker/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Marker/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Marker/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Marker/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Marker/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Marker/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Marker/m_8097_ ()V net/minecraft/world/entity/Marker/defineSynchedData ()V +MD: net/minecraft/world/entity/Marker/m_8119_ ()V net/minecraft/world/entity/Marker/tick ()V +MD: net/minecraft/world/entity/Mob/ ()V net/minecraft/world/entity/Mob/ ()V +MD: net/minecraft/world/entity/Mob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Mob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Mob/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Mob/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Mob/m_142593_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/Mob/getMeleeAttackRangeSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/Mob/m_147271_ ()V net/minecraft/world/entity/Mob/clearRestriction ()V +MD: net/minecraft/world/entity/Mob/m_147272_ ()V net/minecraft/world/entity/Mob/removeFreeWill ()V +MD: net/minecraft/world/entity/Mob/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/Mob/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/Mob/m_213552_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/entity/Mob/getPickupReach ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/entity/Mob/m_21373_ ()V net/minecraft/world/entity/Mob/spawnAnim ()V +MD: net/minecraft/world/entity/Mob/m_21376_ (FFF)F net/minecraft/world/entity/Mob/rotlerp (FFF)F +MD: net/minecraft/world/entity/Mob/m_213860_ ()I net/minecraft/world/entity/Mob/getExperienceReward ()I +MD: net/minecraft/world/entity/Mob/m_21391_ (Lnet/minecraft/world/entity/Entity;FF)V net/minecraft/world/entity/Mob/lookAt (Lnet/minecraft/world/entity/Entity;FF)V +MD: net/minecraft/world/entity/Mob/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/Mob/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/Mob/m_213946_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/Mob/populateDefaultEquipmentEnchantments (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/Mob/m_21406_ (Lnet/minecraft/world/entity/EntityType;Z)Lnet/minecraft/world/entity/Mob; net/minecraft/world/entity/Mob/convertTo (Lnet/minecraft/world/entity/EntityType;Z)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/world/entity/Mob/m_214095_ (Lnet/minecraft/util/RandomSource;F)V net/minecraft/world/entity/Mob/enchantSpawnedWeapon (Lnet/minecraft/util/RandomSource;F)V +MD: net/minecraft/world/entity/Mob/m_21409_ (Lnet/minecraft/world/entity/EquipmentSlot;F)V net/minecraft/world/entity/Mob/setDropChance (Lnet/minecraft/world/entity/EquipmentSlot;F)V +MD: net/minecraft/world/entity/Mob/m_21412_ (Lnet/minecraft/world/entity/EquipmentSlot;I)Lnet/minecraft/world/item/Item; net/minecraft/world/entity/Mob/getEquipmentForSlot (Lnet/minecraft/world/entity/EquipmentSlot;I)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/Mob/m_21424_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/maybeDisableShield (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_21439_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)F net/minecraft/world/entity/Mob/getPathfindingMalus (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)F +MD: net/minecraft/world/entity/Mob/m_21441_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;F)V net/minecraft/world/entity/Mob/setPathfindingMalus (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;F)V +MD: net/minecraft/world/entity/Mob/m_21444_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Mob/isWithinRestriction (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Mob/m_21446_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/Mob/restrictTo (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/Mob/m_21455_ (ZZ)V net/minecraft/world/entity/Mob/dropLeash (ZZ)V +MD: net/minecraft/world/entity/Mob/m_21463_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/entity/Mob/setLeashedTo (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/entity/Mob/m_21468_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/setItemSlotAndDropWhenKilled (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_21474_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/Mob/lambda$checkAndHandleImportantInteractions$2 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/Mob/m_21477_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canReplaceEqualItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_21499_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Mob/checkAndHandleImportantInteractions (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Mob/m_21502_ (Ljava/lang/String;)Z net/minecraft/world/entity/Mob/lambda$canReplaceEqualItem$1 (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Mob/m_21506_ (I)V net/minecraft/world/entity/Mob/setDelayedLeashHolderId (I)V +MD: net/minecraft/world/entity/Mob/m_21508_ (Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/entity/Mob/setGuaranteedDrop (Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/entity/Mob/m_21512_ (Ljava/lang/String;)Z net/minecraft/world/entity/Mob/lambda$canReplaceEqualItem$0 (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Mob/m_21515_ ()Z net/minecraft/world/entity/Mob/isEffectiveAi ()Z +MD: net/minecraft/world/entity/Mob/m_21519_ (Lnet/minecraft/world/entity/EquipmentSlot;)F net/minecraft/world/entity/Mob/getEquipmentDropChance (Lnet/minecraft/world/entity/EquipmentSlot;)F +MD: net/minecraft/world/entity/Mob/m_21523_ ()Z net/minecraft/world/entity/Mob/isLeashed ()Z +MD: net/minecraft/world/entity/Mob/m_21524_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Mob/getLeashHolder ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Mob/m_21525_ ()Z net/minecraft/world/entity/Mob/isNoAi ()Z +MD: net/minecraft/world/entity/Mob/m_21526_ ()Z net/minecraft/world/entity/Mob/isLeftHanded ()Z +MD: net/minecraft/world/entity/Mob/m_21527_ ()Z net/minecraft/world/entity/Mob/isSunBurnTick ()Z +MD: net/minecraft/world/entity/Mob/m_21528_ ()V net/minecraft/world/entity/Mob/restoreLeashFromSave ()V +MD: net/minecraft/world/entity/Mob/m_21529_ ()I net/minecraft/world/entity/Mob/getHeadRotSpeed ()I +MD: net/minecraft/world/entity/Mob/m_21530_ ()V net/minecraft/world/entity/Mob/setPersistenceRequired ()V +MD: net/minecraft/world/entity/Mob/m_21531_ ()Z net/minecraft/world/entity/Mob/canPickUpLoot ()Z +MD: net/minecraft/world/entity/Mob/m_21532_ ()Z net/minecraft/world/entity/Mob/isPersistenceRequired ()Z +MD: net/minecraft/world/entity/Mob/m_21533_ ()Z net/minecraft/world/entity/Mob/isWithinRestriction ()Z +MD: net/minecraft/world/entity/Mob/m_21534_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Mob/getRestrictCenter ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Mob/m_21535_ ()F net/minecraft/world/entity/Mob/getRestrictRadius ()F +MD: net/minecraft/world/entity/Mob/m_21536_ ()Z net/minecraft/world/entity/Mob/hasRestriction ()Z +MD: net/minecraft/world/entity/Mob/m_21551_ ()V net/minecraft/world/entity/Mob/resetAmbientSoundTime ()V +MD: net/minecraft/world/entity/Mob/m_21552_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/Mob/createMobAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/Mob/m_21553_ (Z)V net/minecraft/world/entity/Mob/setCanPickUpLoot (Z)V +MD: net/minecraft/world/entity/Mob/m_21557_ (Z)V net/minecraft/world/entity/Mob/setNoAi (Z)V +MD: net/minecraft/world/entity/Mob/m_21559_ (Z)V net/minecraft/world/entity/Mob/setLeftHanded (Z)V +MD: net/minecraft/world/entity/Mob/m_21561_ (Z)V net/minecraft/world/entity/Mob/setAggressive (Z)V +MD: net/minecraft/world/entity/Mob/m_21563_ ()Lnet/minecraft/world/entity/ai/control/LookControl; net/minecraft/world/entity/Mob/getLookControl ()Lnet/minecraft/world/entity/ai/control/LookControl; +MD: net/minecraft/world/entity/Mob/m_21564_ (F)V net/minecraft/world/entity/Mob/setZza (F)V +MD: net/minecraft/world/entity/Mob/m_21566_ ()Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/Mob/getMoveControl ()Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/Mob/m_21567_ (F)V net/minecraft/world/entity/Mob/setYya (F)V +MD: net/minecraft/world/entity/Mob/m_21569_ ()Lnet/minecraft/world/entity/ai/control/JumpControl; net/minecraft/world/entity/Mob/getJumpControl ()Lnet/minecraft/world/entity/ai/control/JumpControl; +MD: net/minecraft/world/entity/Mob/m_21570_ (F)V net/minecraft/world/entity/Mob/setXxa (F)V +MD: net/minecraft/world/entity/Mob/m_21573_ ()Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/Mob/getNavigation ()Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/Mob/m_21574_ ()Lnet/minecraft/world/entity/ai/sensing/Sensing; net/minecraft/world/entity/Mob/getSensing ()Lnet/minecraft/world/entity/ai/sensing/Sensing; +MD: net/minecraft/world/entity/Mob/m_217051_ (Lnet/minecraft/util/RandomSource;FLnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/entity/Mob/enchantSpawnedArmor (Lnet/minecraft/util/RandomSource;FLnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/entity/Mob/m_217057_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/Mob/checkMobSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/Mob/m_217066_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/Mob/isWithinMeleeAttackRange (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/Mob/m_255207_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Mob/equipItemIfPossible (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Mob/m_262356_ (Lnet/minecraft/world/entity/ai/goal/Goal;)Z net/minecraft/world/entity/Mob/lambda$removeFreeWill$3 (Lnet/minecraft/world/entity/ai/goal/Goal;)Z +MD: net/minecraft/world/entity/Mob/m_262441_ (Ljava/util/function/Predicate;)V net/minecraft/world/entity/Mob/removeAllGoals (Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/Mob/m_262793_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/Mob/getPerceivedTargetDistanceSquareForMeleeAttack (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/Mob/m_278552_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/lambda$removeAfterChangingDimensions$4 (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_284177_ ()V net/minecraft/world/entity/Mob/onPathfindingStart ()V +MD: net/minecraft/world/entity/Mob/m_284461_ ()V net/minecraft/world/entity/Mob/onPathfindingDone ()V +MD: net/minecraft/world/entity/Mob/m_287233_ ()J net/minecraft/world/entity/Mob/getLootTableSeed ()J +MD: net/minecraft/world/entity/Mob/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Mob/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Mob/m_5502_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/Mob/onOffspringSpawnedFromEgg (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/Mob/m_5545_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z net/minecraft/world/entity/Mob/checkSpawnRules (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z +MD: net/minecraft/world/entity/Mob/m_5632_ (FF)F net/minecraft/world/entity/Mob/tickHeadTurn (FF)F +MD: net/minecraft/world/entity/Mob/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/Mob/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/Mob/m_5743_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/Mob/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/Mob/m_5792_ ()I net/minecraft/world/entity/Mob/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/Mob/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/Mob/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/Mob/m_5912_ ()Z net/minecraft/world/entity/Mob/isAggressive ()Z +MD: net/minecraft/world/entity/Mob/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/Mob/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/Mob/m_6043_ ()V net/minecraft/world/entity/Mob/checkDespawn ()V +MD: net/minecraft/world/entity/Mob/m_6056_ ()I net/minecraft/world/entity/Mob/getMaxFallDistance ()I +MD: net/minecraft/world/entity/Mob/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Mob/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Mob/m_6075_ ()V net/minecraft/world/entity/Mob/baseTick ()V +MD: net/minecraft/world/entity/Mob/m_6089_ ()V net/minecraft/world/entity/Mob/removeAfterChangingDimensions ()V +MD: net/minecraft/world/entity/Mob/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Mob/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Mob/m_6119_ ()V net/minecraft/world/entity/Mob/tickLeash ()V +MD: net/minecraft/world/entity/Mob/m_6140_ ()V net/minecraft/world/entity/Mob/serverAiStep ()V +MD: net/minecraft/world/entity/Mob/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Mob/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Mob/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Mob/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Mob/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/Mob/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/Mob/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/Mob/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/Mob/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/Mob/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/Mob/m_6677_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/Mob/playHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/Mob/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Mob/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Mob/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/Mob/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/Mob/m_6785_ (D)Z net/minecraft/world/entity/Mob/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/Mob/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Mob/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Mob/m_6863_ (Z)V net/minecraft/world/entity/Mob/setBaby (Z)V +MD: net/minecraft/world/entity/Mob/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/Mob/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/Mob/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7252_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canHoldItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7296_ (I)Z net/minecraft/world/entity/Mob/isMaxGroupSizeReached (I)Z +MD: net/minecraft/world/entity/Mob/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Mob/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Mob/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Mob/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Mob/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Mob/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Mob/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/Mob/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/Mob/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Mob/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Mob/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/Mob/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/Mob/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/Mob/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/Mob/m_7582_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/Mob/getDefaultLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/Mob/m_7625_ (Lnet/minecraft/world/damagesource/DamageSource;Z)V net/minecraft/world/entity/Mob/dropFromLootTable (Lnet/minecraft/world/damagesource/DamageSource;Z)V +MD: net/minecraft/world/entity/Mob/m_7808_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7822_ (B)V net/minecraft/world/entity/Mob/handleEntityEvent (B)V +MD: net/minecraft/world/entity/Mob/m_7910_ (F)V net/minecraft/world/entity/Mob/setSpeed (F)V +MD: net/minecraft/world/entity/Mob/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/Mob/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/Mob/m_8022_ ()V net/minecraft/world/entity/Mob/updateControlFlags ()V +MD: net/minecraft/world/entity/Mob/m_8023_ ()Z net/minecraft/world/entity/Mob/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/Mob/m_8024_ ()V net/minecraft/world/entity/Mob/customServerAiStep ()V +MD: net/minecraft/world/entity/Mob/m_8025_ ()V net/minecraft/world/entity/Mob/sendDebugPackets ()V +MD: net/minecraft/world/entity/Mob/m_8028_ ()Z net/minecraft/world/entity/Mob/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/Mob/m_8032_ ()V net/minecraft/world/entity/Mob/playAmbientSound ()V +MD: net/minecraft/world/entity/Mob/m_8035_ ()V net/minecraft/world/entity/Mob/ate ()V +MD: net/minecraft/world/entity/Mob/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_8085_ ()I net/minecraft/world/entity/Mob/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/Mob/m_8091_ ()Z net/minecraft/world/entity/Mob/shouldPassengersInheritMalus ()Z +MD: net/minecraft/world/entity/Mob/m_8097_ ()V net/minecraft/world/entity/Mob/defineSynchedData ()V +MD: net/minecraft/world/entity/Mob/m_8099_ ()V net/minecraft/world/entity/Mob/registerGoals ()V +MD: net/minecraft/world/entity/Mob/m_8100_ ()I net/minecraft/world/entity/Mob/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/Mob/m_8107_ ()V net/minecraft/world/entity/Mob/aiStep ()V +MD: net/minecraft/world/entity/Mob/m_8119_ ()V net/minecraft/world/entity/Mob/tick ()V +MD: net/minecraft/world/entity/Mob/m_8132_ ()I net/minecraft/world/entity/Mob/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/Mob$1/ ()V net/minecraft/world/entity/Mob$1/ ()V +MD: net/minecraft/world/entity/MobCategory/ ()V net/minecraft/world/entity/MobCategory/ ()V +MD: net/minecraft/world/entity/MobCategory/ (Ljava/lang/String;ILjava/lang/String;IZZI)V net/minecraft/world/entity/MobCategory/ (Ljava/lang/String;ILjava/lang/String;IZZI)V +MD: net/minecraft/world/entity/MobCategory/m_147275_ ()[Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/MobCategory/$values ()[Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/MobCategory/m_21607_ ()Ljava/lang/String; net/minecraft/world/entity/MobCategory/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/MobCategory/m_21608_ ()I net/minecraft/world/entity/MobCategory/getMaxInstancesPerChunk ()I +MD: net/minecraft/world/entity/MobCategory/m_21609_ ()Z net/minecraft/world/entity/MobCategory/isFriendly ()Z +MD: net/minecraft/world/entity/MobCategory/m_21610_ ()Z net/minecraft/world/entity/MobCategory/isPersistent ()Z +MD: net/minecraft/world/entity/MobCategory/m_21611_ ()I net/minecraft/world/entity/MobCategory/getDespawnDistance ()I +MD: net/minecraft/world/entity/MobCategory/m_21612_ ()I net/minecraft/world/entity/MobCategory/getNoDespawnDistance ()I +MD: net/minecraft/world/entity/MobCategory/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/MobCategory/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/MobCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/MobCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/MobCategory/values ()[Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/MobCategory/values ()[Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/MobSpawnType/ ()V net/minecraft/world/entity/MobSpawnType/ ()V +MD: net/minecraft/world/entity/MobSpawnType/ (Ljava/lang/String;I)V net/minecraft/world/entity/MobSpawnType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/MobSpawnType/m_147276_ ()[Lnet/minecraft/world/entity/MobSpawnType; net/minecraft/world/entity/MobSpawnType/$values ()[Lnet/minecraft/world/entity/MobSpawnType; +MD: net/minecraft/world/entity/MobSpawnType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobSpawnType; net/minecraft/world/entity/MobSpawnType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobSpawnType; +MD: net/minecraft/world/entity/MobSpawnType/values ()[Lnet/minecraft/world/entity/MobSpawnType; net/minecraft/world/entity/MobSpawnType/values ()[Lnet/minecraft/world/entity/MobSpawnType; +MD: net/minecraft/world/entity/MobType/ ()V net/minecraft/world/entity/MobType/ ()V +MD: net/minecraft/world/entity/MobType/ ()V net/minecraft/world/entity/MobType/ ()V +MD: net/minecraft/world/entity/MoverType/ ()V net/minecraft/world/entity/MoverType/ ()V +MD: net/minecraft/world/entity/MoverType/ (Ljava/lang/String;I)V net/minecraft/world/entity/MoverType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/MoverType/m_147277_ ()[Lnet/minecraft/world/entity/MoverType; net/minecraft/world/entity/MoverType/$values ()[Lnet/minecraft/world/entity/MoverType; +MD: net/minecraft/world/entity/MoverType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MoverType; net/minecraft/world/entity/MoverType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MoverType; +MD: net/minecraft/world/entity/MoverType/values ()[Lnet/minecraft/world/entity/MoverType; net/minecraft/world/entity/MoverType/values ()[Lnet/minecraft/world/entity/MoverType; +MD: net/minecraft/world/entity/NeutralMob/m_147285_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/NeutralMob/readPersistentAngerSaveData (Lnet/minecraft/world/level/Level;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/NeutralMob/m_21188_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/NeutralMob/getLastHurtByMob ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/NeutralMob/m_21660_ ()Z net/minecraft/world/entity/NeutralMob/isAngry ()Z +MD: net/minecraft/world/entity/NeutralMob/m_21661_ ()V net/minecraft/world/entity/NeutralMob/forgetCurrentTargetAndRefreshUniversalAnger ()V +MD: net/minecraft/world/entity/NeutralMob/m_21662_ ()V net/minecraft/world/entity/NeutralMob/stopBeingAngry ()V +MD: net/minecraft/world/entity/NeutralMob/m_21666_ (Lnet/minecraft/server/level/ServerLevel;Z)V net/minecraft/world/entity/NeutralMob/updatePersistentAnger (Lnet/minecraft/server/level/ServerLevel;Z)V +MD: net/minecraft/world/entity/NeutralMob/m_21670_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/entity/NeutralMob/isAngryAtAllPlayers (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/entity/NeutralMob/m_21674_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/NeutralMob/isAngryAt (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/NeutralMob/m_21676_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/NeutralMob/playerDied (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/NeutralMob/m_21678_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/NeutralMob/addPersistentAngerSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/NeutralMob/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/NeutralMob/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/NeutralMob/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/NeutralMob/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/NeutralMob/m_6598_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/NeutralMob/setLastHurtByPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/NeutralMob/m_6703_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/NeutralMob/setLastHurtByMob (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/NeutralMob/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/NeutralMob/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/NeutralMob/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/NeutralMob/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/NeutralMob/m_6784_ ()I net/minecraft/world/entity/NeutralMob/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/NeutralMob/m_6825_ ()V net/minecraft/world/entity/NeutralMob/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/NeutralMob/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/NeutralMob/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/NeutralMob/m_7870_ (I)V net/minecraft/world/entity/NeutralMob/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/OwnableEntity/m_21805_ ()Ljava/util/UUID; net/minecraft/world/entity/OwnableEntity/getOwnerUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/OwnableEntity/m_269323_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/OwnableEntity/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/OwnableEntity/m_9236_ ()Lnet/minecraft/world/level/EntityGetter; net/minecraft/world/entity/OwnableEntity/level ()Lnet/minecraft/world/level/EntityGetter; +MD: net/minecraft/world/entity/PathfinderMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/PathfinderMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/PathfinderMob/m_213814_ ()Z net/minecraft/world/entity/PathfinderMob/shouldStayCloseToLeashHolder ()Z +MD: net/minecraft/world/entity/PathfinderMob/m_21691_ ()Z net/minecraft/world/entity/PathfinderMob/isPathFinding ()Z +MD: net/minecraft/world/entity/PathfinderMob/m_21692_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/entity/PathfinderMob/getWalkTargetValue (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/entity/PathfinderMob/m_5545_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z net/minecraft/world/entity/PathfinderMob/checkSpawnRules (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z +MD: net/minecraft/world/entity/PathfinderMob/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/PathfinderMob/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/PathfinderMob/m_5823_ ()D net/minecraft/world/entity/PathfinderMob/followLeashSpeed ()D +MD: net/minecraft/world/entity/PathfinderMob/m_6119_ ()V net/minecraft/world/entity/PathfinderMob/tickLeash ()V +MD: net/minecraft/world/entity/PathfinderMob/m_7880_ (F)V net/minecraft/world/entity/PathfinderMob/onLeashDistance (F)V +MD: net/minecraft/world/entity/PlayerRideableJumping/m_245614_ ()I net/minecraft/world/entity/PlayerRideableJumping/getJumpCooldown ()I +MD: net/minecraft/world/entity/PlayerRideableJumping/m_7132_ ()Z net/minecraft/world/entity/PlayerRideableJumping/canJump ()Z +MD: net/minecraft/world/entity/PlayerRideableJumping/m_7199_ (I)V net/minecraft/world/entity/PlayerRideableJumping/handleStartJump (I)V +MD: net/minecraft/world/entity/PlayerRideableJumping/m_7888_ (I)V net/minecraft/world/entity/PlayerRideableJumping/onPlayerJump (I)V +MD: net/minecraft/world/entity/PlayerRideableJumping/m_8012_ ()V net/minecraft/world/entity/PlayerRideableJumping/handleStopJump ()V +MD: net/minecraft/world/entity/Pose/ ()V net/minecraft/world/entity/Pose/ ()V +MD: net/minecraft/world/entity/Pose/ (Ljava/lang/String;I)V net/minecraft/world/entity/Pose/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/Pose/m_147289_ ()[Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Pose/$values ()[Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/Pose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Pose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/Pose/values ()[Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Pose/values ()[Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/PowerableMob/m_7090_ ()Z net/minecraft/world/entity/PowerableMob/isPowered ()Z +MD: net/minecraft/world/entity/RelativeMovement/ ()V net/minecraft/world/entity/RelativeMovement/ ()V +MD: net/minecraft/world/entity/RelativeMovement/ (Ljava/lang/String;II)V net/minecraft/world/entity/RelativeMovement/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/RelativeMovement/m_264098_ (I)Ljava/util/Set; net/minecraft/world/entity/RelativeMovement/unpack (I)Ljava/util/Set; +MD: net/minecraft/world/entity/RelativeMovement/m_264160_ (Ljava/util/Set;)I net/minecraft/world/entity/RelativeMovement/pack (Ljava/util/Set;)I +MD: net/minecraft/world/entity/RelativeMovement/m_264202_ ()I net/minecraft/world/entity/RelativeMovement/getMask ()I +MD: net/minecraft/world/entity/RelativeMovement/m_264361_ ()[Lnet/minecraft/world/entity/RelativeMovement; net/minecraft/world/entity/RelativeMovement/$values ()[Lnet/minecraft/world/entity/RelativeMovement; +MD: net/minecraft/world/entity/RelativeMovement/m_264508_ (I)Z net/minecraft/world/entity/RelativeMovement/isSet (I)Z +MD: net/minecraft/world/entity/RelativeMovement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/RelativeMovement; net/minecraft/world/entity/RelativeMovement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/RelativeMovement; +MD: net/minecraft/world/entity/RelativeMovement/values ()[Lnet/minecraft/world/entity/RelativeMovement; net/minecraft/world/entity/RelativeMovement/values ()[Lnet/minecraft/world/entity/RelativeMovement; +MD: net/minecraft/world/entity/ReputationEventHandler/m_6814_ (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/ReputationEventHandler/onReputationEventFrom (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/RiderShieldingMount/m_262813_ ()D net/minecraft/world/entity/RiderShieldingMount/getRiderShieldingHeight ()D +MD: net/minecraft/world/entity/Saddleable/m_246265_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Saddleable/getSaddleSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Saddleable/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/Saddleable/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/Saddleable/m_6254_ ()Z net/minecraft/world/entity/Saddleable/isSaddled ()Z +MD: net/minecraft/world/entity/Saddleable/m_6741_ ()Z net/minecraft/world/entity/Saddleable/isSaddleable ()Z +MD: net/minecraft/world/entity/Shearable/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/Shearable/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/Shearable/m_6220_ ()Z net/minecraft/world/entity/Shearable/readyForShearing ()Z +MD: net/minecraft/world/entity/SlotAccess/ ()V net/minecraft/world/entity/SlotAccess/ ()V +MD: net/minecraft/world/entity/SlotAccess/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SlotAccess/m_147292_ (Lnet/minecraft/world/Container;I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forContainer (Lnet/minecraft/world/Container;I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147295_ (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forContainer (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147299_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forEquipmentSlot (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147302_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forEquipmentSlot (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147307_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess/lambda$forEquipmentSlot$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess/m_147309_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess/lambda$forContainer$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$1/ ()V net/minecraft/world/entity/SlotAccess$1/ ()V +MD: net/minecraft/world/entity/SlotAccess$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SlotAccess$2/ (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)V net/minecraft/world/entity/SlotAccess$2/ (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/SlotAccess$2/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess$2/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$2/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess$2/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SlotAccess$3/ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)V net/minecraft/world/entity/SlotAccess$3/ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/SlotAccess$3/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess$3/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$3/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess$3/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SpawnPlacements/ ()V net/minecraft/world/entity/SpawnPlacements/ ()V +MD: net/minecraft/world/entity/SpawnPlacements/ ()V net/minecraft/world/entity/SpawnPlacements/ ()V +MD: net/minecraft/world/entity/SpawnPlacements/m_217074_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/SpawnPlacements/checkSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/SpawnPlacements/m_21752_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements/getPlacementType (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/SpawnPlacements/m_21754_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V net/minecraft/world/entity/SpawnPlacements/register (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V +MD: net/minecraft/world/entity/SpawnPlacements/m_21765_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/entity/SpawnPlacements/getHeightmapType (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/entity/SpawnPlacements$Data/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V net/minecraft/world/entity/SpawnPlacements$Data/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V +MD: net/minecraft/world/entity/SpawnPlacements$SpawnPredicate/m_217080_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/SpawnPlacements$SpawnPredicate/test (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/SpawnPlacements$Type/ ()V net/minecraft/world/entity/SpawnPlacements$Type/ ()V +MD: net/minecraft/world/entity/SpawnPlacements$Type/ (Ljava/lang/String;I)V net/minecraft/world/entity/SpawnPlacements$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/SpawnPlacements$Type/m_147336_ ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements$Type/$values ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/SpawnPlacements$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/SpawnPlacements$Type/values ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements$Type/values ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/TamableAnimal/ ()V net/minecraft/world/entity/TamableAnimal/ ()V +MD: net/minecraft/world/entity/TamableAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/TamableAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/TamableAnimal/m_21805_ ()Ljava/util/UUID; net/minecraft/world/entity/TamableAnimal/getOwnerUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/TamableAnimal/m_21816_ (Ljava/util/UUID;)V net/minecraft/world/entity/TamableAnimal/setOwnerUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/TamableAnimal/m_21824_ ()Z net/minecraft/world/entity/TamableAnimal/isTame ()Z +MD: net/minecraft/world/entity/TamableAnimal/m_21825_ ()Z net/minecraft/world/entity/TamableAnimal/isInSittingPose ()Z +MD: net/minecraft/world/entity/TamableAnimal/m_21827_ ()Z net/minecraft/world/entity/TamableAnimal/isOrderedToSit ()Z +MD: net/minecraft/world/entity/TamableAnimal/m_21828_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/TamableAnimal/tame (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/TamableAnimal/m_21830_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/TamableAnimal/isOwnedBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_21834_ (Z)V net/minecraft/world/entity/TamableAnimal/spawnTamingParticles (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_21837_ (Z)V net/minecraft/world/entity/TamableAnimal/setInSittingPose (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_21839_ (Z)V net/minecraft/world/entity/TamableAnimal/setOrderedToSit (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_5647_ ()Lnet/minecraft/world/scores/Team; net/minecraft/world/entity/TamableAnimal/getTeam ()Lnet/minecraft/world/scores/Team; +MD: net/minecraft/world/entity/TamableAnimal/m_5849_ ()V net/minecraft/world/entity/TamableAnimal/reassessTameGoals ()V +MD: net/minecraft/world/entity/TamableAnimal/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/TamableAnimal/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/TamableAnimal/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/TamableAnimal/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/TamableAnimal/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_7105_ (Z)V net/minecraft/world/entity/TamableAnimal/setTame (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/TamableAnimal/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/TamableAnimal/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/TamableAnimal/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/TamableAnimal/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/TamableAnimal/m_7757_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/TamableAnimal/wantsToAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_7822_ (B)V net/minecraft/world/entity/TamableAnimal/handleEntityEvent (B)V +MD: net/minecraft/world/entity/TamableAnimal/m_8097_ ()V net/minecraft/world/entity/TamableAnimal/defineSynchedData ()V +MD: net/minecraft/world/entity/TamableAnimal/m_9236_ ()Lnet/minecraft/world/level/EntityGetter; net/minecraft/world/entity/TamableAnimal/level ()Lnet/minecraft/world/level/EntityGetter; +MD: net/minecraft/world/entity/Targeting/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Targeting/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/TraceableEntity/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/TraceableEntity/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/VariantHolder/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/VariantHolder/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/VariantHolder/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/VariantHolder/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/WalkAnimationState/ ()V net/minecraft/world/entity/WalkAnimationState/ ()V +MD: net/minecraft/world/entity/WalkAnimationState/m_267566_ (FF)V net/minecraft/world/entity/WalkAnimationState/update (FF)V +MD: net/minecraft/world/entity/WalkAnimationState/m_267590_ (F)F net/minecraft/world/entity/WalkAnimationState/position (F)F +MD: net/minecraft/world/entity/WalkAnimationState/m_267711_ (F)F net/minecraft/world/entity/WalkAnimationState/speed (F)F +MD: net/minecraft/world/entity/WalkAnimationState/m_267731_ ()F net/minecraft/world/entity/WalkAnimationState/speed ()F +MD: net/minecraft/world/entity/WalkAnimationState/m_267756_ ()F net/minecraft/world/entity/WalkAnimationState/position ()F +MD: net/minecraft/world/entity/WalkAnimationState/m_267771_ (F)V net/minecraft/world/entity/WalkAnimationState/setSpeed (F)V +MD: net/minecraft/world/entity/WalkAnimationState/m_267780_ ()Z net/minecraft/world/entity/WalkAnimationState/isMoving ()Z +MD: net/minecraft/world/entity/ai/Brain/ ()V net/minecraft/world/entity/ai/Brain/ ()V +MD: net/minecraft/world/entity/ai/Brain/ (Ljava/util/Collection;Ljava/util/Collection;Lcom/google/common/collect/ImmutableList;Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/Brain/ (Ljava/util/Collection;Ljava/util/Collection;Lcom/google/common/collect/ImmutableList;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/Brain/m_147339_ ()Ljava/util/Map; net/minecraft/world/entity/ai/Brain/getMemories ()Ljava/util/Map; +MD: net/minecraft/world/entity/ai/Brain/m_147340_ ()Ljava/util/Set; net/minecraft/world/entity/ai/Brain/getActiveActivities ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/Brain/m_147341_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)J net/minecraft/world/entity/ai/Brain/getTimeUntilExpiry (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)J +MD: net/minecraft/world/entity/ai/Brain/m_147343_ ()V net/minecraft/world/entity/ai/Brain/removeAllBehaviors ()V +MD: net/minecraft/world/entity/ai/Brain/m_21859_ (ILcom/google/common/collect/ImmutableList;)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/Brain/createPriorityPairs (ILcom/google/common/collect/ImmutableList;)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/Brain/m_21862_ (JJ)V net/minecraft/world/entity/ai/Brain/updateActivityFromSchedule (JJ)V +MD: net/minecraft/world/entity/ai/Brain/m_21865_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21874_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Z net/minecraft/world/entity/ai/Brain/hasMemoryValue (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21876_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryStatus;)Z net/minecraft/world/entity/ai/Brain/checkMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryStatus;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21879_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)V net/minecraft/world/entity/ai/Brain/setMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)V +MD: net/minecraft/world/entity/ai/Brain/m_21882_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;J)V net/minecraft/world/entity/ai/Brain/setMemoryWithExpiry (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;J)V +MD: net/minecraft/world/entity/ai/Brain/m_21886_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V net/minecraft/world/entity/ai/Brain/setMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/Brain/m_21889_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/setActiveActivityIfPossible (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21891_ (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;)V net/minecraft/world/entity/ai/Brain/addActivity (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/world/entity/ai/Brain/m_21895_ (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/Brain/addActivityAndRemoveMemoryWhenStopped (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/Brain/m_21900_ (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;)V net/minecraft/world/entity/ai/Brain/addActivity (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/world/entity/ai/Brain/m_21903_ (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;)V net/minecraft/world/entity/ai/Brain/addActivityWithConditions (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/Brain/m_21907_ (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/world/entity/ai/Brain/addActivityAndRemoveMemoriesWhenStopped (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/Brain/m_21912_ (Lnet/minecraft/world/entity/schedule/Schedule;)V net/minecraft/world/entity/ai/Brain/setSchedule (Lnet/minecraft/world/entity/schedule/Schedule;)V +MD: net/minecraft/world/entity/ai/Brain/m_21914_ (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain/serializeStart (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain/m_21916_ (Ljava/lang/Integer;)Ljava/util/Map; net/minecraft/world/entity/ai/Brain/lambda$addActivityAndRemoveMemoriesWhenStopped$3 (Ljava/lang/Integer;)Ljava/util/Map; +MD: net/minecraft/world/entity/ai/Brain/m_21918_ (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/Brain/isEmptyCollection (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21920_ (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/entity/ai/Brain/lambda$isMemoryValue$2 (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21923_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/ai/Brain/provider (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/ai/Brain/m_21926_ (Ljava/util/List;)V net/minecraft/world/entity/ai/Brain/setActiveActivityToFirstValid (Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/Brain/m_21928_ (Ljava/util/Map$Entry;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; net/minecraft/world/entity/ai/Brain/lambda$memories$0 (Ljava/util/Map$Entry;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +MD: net/minecraft/world/entity/ai/Brain/m_21930_ (Ljava/util/Set;)V net/minecraft/world/entity/ai/Brain/setCoreActivities (Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/Brain/m_21932_ ()Lnet/minecraft/world/entity/schedule/Schedule; net/minecraft/world/entity/ai/Brain/getSchedule ()Lnet/minecraft/world/entity/schedule/Schedule; +MD: net/minecraft/world/entity/ai/Brain/m_21933_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/stopAll (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21936_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/Brain/eraseMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/Brain/m_21938_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)Z net/minecraft/world/entity/ai/Brain/isMemoryValue (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21941_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V net/minecraft/world/entity/ai/Brain/setMemoryInternal (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/Brain/m_21944_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/setDefaultActivity (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21946_ (Ljava/util/Collection;Ljava/util/Collection;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/Brain/codec (Ljava/util/Collection;Ljava/util/Collection;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/Brain/m_21949_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/tickSensors (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21952_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/ai/Brain/getMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/Brain/m_21954_ (Lnet/minecraft/world/entity/schedule/Activity;)Z net/minecraft/world/entity/ai/Brain/isActive (Lnet/minecraft/world/entity/schedule/Activity;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21956_ ()Ljava/util/List; net/minecraft/world/entity/ai/Brain/getRunningBehaviors ()Ljava/util/List; +MD: net/minecraft/world/entity/ai/Brain/m_21957_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/startEachNonRunningBehavior (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21960_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/setActiveActivity (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21962_ ()V net/minecraft/world/entity/ai/Brain/useDefaultActivity ()V +MD: net/minecraft/world/entity/ai/Brain/m_21963_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/tickEachRunningBehavior (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21966_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/eraseMemoriesForOtherActivitesThan (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21968_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/Brain/getActiveNonCoreActivity ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/Brain/m_21969_ (Lnet/minecraft/world/entity/schedule/Activity;)Z net/minecraft/world/entity/ai/Brain/activityRequirementsAreMet (Lnet/minecraft/world/entity/schedule/Activity;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21971_ (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/Set; net/minecraft/world/entity/ai/Brain/lambda$addActivityAndRemoveMemoriesWhenStopped$4 (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/Brain/m_21973_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/ai/Brain/copyWithoutBehaviors ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/ai/Brain/m_21975_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/Brain/memories ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/Brain/m_21976_ ()V net/minecraft/world/entity/ai/Brain/forgetOutdatedMemories ()V +MD: net/minecraft/world/entity/ai/Brain/m_257414_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/ai/Brain/getMemoryInternal (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/Brain/m_276078_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/Brain/lambda$clearMemories$1 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/Brain/m_276084_ ()V net/minecraft/world/entity/ai/Brain/clearMemories ()V +MD: net/minecraft/world/entity/ai/Brain$1/ (Ljava/util/Collection;Ljava/util/Collection;Lorg/apache/commons/lang3/mutable/MutableObject;)V net/minecraft/world/entity/ai/Brain$1/ (Ljava/util/Collection;Ljava/util/Collection;Lorg/apache/commons/lang3/mutable/MutableObject;)V +MD: net/minecraft/world/entity/ai/Brain$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/world/entity/ai/Brain$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/world/entity/ai/Brain$1/encode (Lnet/minecraft/world/entity/ai/Brain;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/world/entity/ai/Brain$1/encode (Lnet/minecraft/world/entity/ai/Brain;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/world/entity/ai/Brain$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/Brain$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/Brain$1/m_147347_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/lambda$decode$3 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/m_21990_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$8 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +MD: net/minecraft/world/entity/ai/Brain$1/m_21996_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/captureRead (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/m_22004_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/world/entity/ai/Brain$MemoryValue;)V net/minecraft/world/entity/ai/Brain$1/lambda$encode$9 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/world/entity/ai/Brain$MemoryValue;)V +MD: net/minecraft/world/entity/ai/Brain$1/m_22008_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$7 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/m_22016_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/world/entity/ai/Brain$1/lambda$keys$2 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/Brain$1/m_22019_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/Brain$1/lambda$keys$1 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/Brain$1/m_257154_ (Lcom/mojang/serialization/DynamicOps;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/ai/Brain$1/lambda$decode$4 (Lcom/mojang/serialization/DynamicOps;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/ai/Brain$1/m_257155_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/ai/Brain$1/lambda$keys$0 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/ai/Brain$1/m_274185_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$5 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/Brain$1/m_274186_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$6 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V net/minecraft/world/entity/ai/Brain$MemoryValue/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22042_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/ai/Brain$MemoryValue/setMemoryInternal (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22047_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)V net/minecraft/world/entity/ai/Brain$MemoryValue/serialize (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22050_ (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)V net/minecraft/world/entity/ai/Brain$MemoryValue/lambda$serialize$1 (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22059_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; net/minecraft/world/entity/ai/Brain$MemoryValue/createUnchecked (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_257156_ (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)V net/minecraft/world/entity/ai/Brain$MemoryValue/lambda$serialize$0 (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)V +MD: net/minecraft/world/entity/ai/Brain$Provider/ (Ljava/util/Collection;Ljava/util/Collection;)V net/minecraft/world/entity/ai/Brain$Provider/ (Ljava/util/Collection;Ljava/util/Collection;)V +MD: net/minecraft/world/entity/ai/Brain$Provider/m_147356_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/Brain$Provider/lambda$makeBrain$0 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/Brain$Provider/m_22072_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/ai/Brain$Provider/lambda$makeBrain$1 ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/ai/Brain$Provider/m_22073_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/ai/Brain$Provider/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/ai/attributes/Attribute/ (Ljava/lang/String;D)V net/minecraft/world/entity/ai/attributes/Attribute/ (Ljava/lang/String;D)V +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22082_ ()D net/minecraft/world/entity/ai/attributes/Attribute/getDefaultValue ()D +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22084_ (Z)Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/world/entity/ai/attributes/Attribute/setSyncable (Z)Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22086_ ()Z net/minecraft/world/entity/ai/attributes/Attribute/isClientSyncable ()Z +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22087_ ()Ljava/lang/String; net/minecraft/world/entity/ai/attributes/Attribute/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_6740_ (D)D net/minecraft/world/entity/ai/attributes/Attribute/sanitizeValue (D)D +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/function/Consumer;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22099_ ()Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/world/entity/ai/attributes/AttributeInstance/getAttribute ()Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22100_ (D)V net/minecraft/world/entity/ai/attributes/AttributeInstance/setBaseValue (D)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22102_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/replaceFrom (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22104_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifiers (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22106_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Ljava/util/Set;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/lambda$replaceFrom$1 (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22109_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)Z net/minecraft/world/entity/ai/attributes/AttributeInstance/hasModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22111_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifier (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22113_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22115_ ()D net/minecraft/world/entity/ai/attributes/AttributeInstance/getBaseValue ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22116_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Collection; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifiersOrEmpty (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Collection; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22118_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/addTransientModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22120_ (Ljava/util/UUID;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/removeModifier (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22122_ ()Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifiers ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22123_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeInstance/lambda$getModifiers$0 (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22125_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/addPermanentModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22127_ (Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeInstance/removePermanentModifier (Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22129_ ()V net/minecraft/world/entity/ai/attributes/AttributeInstance/setDirty ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22130_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/removeModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22132_ ()V net/minecraft/world/entity/ai/attributes/AttributeInstance/removeModifiers ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22133_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/addModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22135_ ()D net/minecraft/world/entity/ai/attributes/AttributeInstance/getValue ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22136_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/ai/attributes/AttributeInstance/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22137_ ()D net/minecraft/world/entity/ai/attributes/AttributeInstance/calculateValue ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/ ()V net/minecraft/world/entity/ai/attributes/AttributeMap/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/ (Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier;)V net/minecraft/world/entity/ai/attributes/AttributeMap/ (Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22145_ ()Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeMap/getDirtyAttributes ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22146_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeMap/getInstance (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22148_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$addTransientAttributeModifiers$3 (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22151_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/Collection;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$removeAttributeModifiers$2 (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/Collection;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22154_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22157_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeMap/onAttributeModified (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22159_ (Lnet/minecraft/world/entity/ai/attributes/AttributeMap;)V net/minecraft/world/entity/ai/attributes/AttributeMap/assignValues (Lnet/minecraft/world/entity/ai/attributes/AttributeMap;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22161_ (Lcom/google/common/collect/Multimap;)V net/minecraft/world/entity/ai/attributes/AttributeMap/removeAttributeModifiers (Lcom/google/common/collect/Multimap;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22163_ (Ljava/lang/String;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$load$6 (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22165_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/ai/attributes/Attribute;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$load$5 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/ai/attributes/Attribute;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22168_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/entity/ai/attributes/AttributeMap/load (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22170_ ()Ljava/util/Collection; net/minecraft/world/entity/ai/attributes/AttributeMap/getSyncableAttributes ()Ljava/util/Collection; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22171_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasAttribute (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22173_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getModifierValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22176_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$assignValues$4 (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22178_ (Lcom/google/common/collect/Multimap;)V net/minecraft/world/entity/ai/attributes/AttributeMap/addTransientAttributeModifiers (Lcom/google/common/collect/Multimap;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22180_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/ai/attributes/AttributeMap/save ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22181_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22183_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$getSyncableAttributes$0 (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22185_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getBaseValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22187_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$getInstance$1 (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_245160_ (Lnet/minecraft/core/Holder;Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasModifier (Lnet/minecraft/core/Holder;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_246117_ (Lnet/minecraft/core/Holder;Ljava/util/UUID;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getModifierValue (Lnet/minecraft/core/Holder;Ljava/util/UUID;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_246600_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeMap/getInstance (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_247503_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasAttribute (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ ()V net/minecraft/world/entity/ai/attributes/AttributeModifier/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/util/function/Supplier;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/util/function/Supplier;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/attributes/AttributeModifier/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/hashCode ()I net/minecraft/world/entity/ai/attributes/AttributeModifier/hashCode ()I +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22209_ ()Ljava/util/UUID; net/minecraft/world/entity/ai/attributes/AttributeModifier/getId ()Ljava/util/UUID; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22210_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/lambda$new$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22212_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; net/minecraft/world/entity/ai/attributes/AttributeModifier/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22214_ ()Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22215_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/lambda$new$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22217_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier/getOperation ()Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22218_ ()D net/minecraft/world/entity/ai/attributes/AttributeModifier/getAmount ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22219_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/ai/attributes/AttributeModifier/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ ()V net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ (Ljava/lang/String;II)V net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/m_147358_ ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/$values ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/m_22235_ ()I net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/toValue ()I +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/m_22236_ (I)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/fromValue (I)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/values ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/values ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/ (Ljava/util/Map;)V net/minecraft/world/entity/ai/attributes/AttributeSupplier/ (Ljava/util/Map;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22244_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ai/attributes/AttributeSupplier/builder ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22245_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeSupplier/getValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22247_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D net/minecraft/world/entity/ai/attributes/AttributeSupplier/getModifierValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22250_ (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeSupplier/createInstance (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22253_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeSupplier/getBaseValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22255_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeSupplier/hasModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22258_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z net/minecraft/world/entity/ai/attributes/AttributeSupplier/hasAttribute (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22260_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeSupplier/getAttributeInstance (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/ ()V net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22265_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/build ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22266_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/add (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22268_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;D)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/add (Lnet/minecraft/world/entity/ai/attributes/Attribute;D)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22274_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/create (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_257157_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/lambda$create$0 (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/Attributes/ ()V net/minecraft/world/entity/ai/attributes/Attributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/Attributes/ ()V net/minecraft/world/entity/ai/attributes/Attributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/Attributes/m_22290_ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/world/entity/ai/attributes/Attributes/register (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22296_ ()V net/minecraft/world/entity/ai/attributes/DefaultAttributes/validate ()V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22297_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; net/minecraft/world/entity/ai/attributes/DefaultAttributes/getSupplier (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22299_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/ai/attributes/DefaultAttributes/lambda$validate$2 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22301_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/attributes/DefaultAttributes/hasSupplier (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22303_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/attributes/DefaultAttributes/lambda$validate$1 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22305_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/attributes/DefaultAttributes/lambda$validate$0 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/ (Ljava/lang/String;DDD)V net/minecraft/world/entity/ai/attributes/RangedAttribute/ (Ljava/lang/String;DDD)V +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/m_147361_ ()D net/minecraft/world/entity/ai/attributes/RangedAttribute/getMinValue ()D +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/m_147362_ ()D net/minecraft/world/entity/ai/attributes/RangedAttribute/getMaxValue ()D +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/m_6740_ (D)D net/minecraft/world/entity/ai/attributes/RangedAttribute/sanitizeValue (D)D +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/ ()V net/minecraft/world/entity/ai/behavior/AcquirePoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_147366_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Byte;)V net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Byte;)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_217097_ (Lnet/minecraft/world/entity/Mob;Ljava/util/Set;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/behavior/AcquirePoi/findPathToPois (Lnet/minecraft/world/entity/Mob;Ljava/util/Set;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_217106_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_22336_ (JLit/unimi/dsi/fastutil/longs/Long2ObjectMap$Entry;)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$0 (JLit/unimi/dsi/fastutil/longs/Long2ObjectMap$Entry;)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257159_ (Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;JLnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$1 (Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;JLnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257160_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$10 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257161_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$8 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257163_ (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$6 (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257164_ (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$7 (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257165_ (Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$9 (Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257613_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/AcquirePoi/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_258026_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/AcquirePoi/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_263976_ (Lnet/minecraft/server/level/ServerLevel;JJ)Lnet/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$5 (Lnet/minecraft/server/level/ServerLevel;JJ)Lnet/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_288119_ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Ljava/util/Optional;Lnet/minecraft/world/entity/PathfinderMob;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$4 (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Ljava/util/Optional;Lnet/minecraft/world/entity/PathfinderMob;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/ (Lnet/minecraft/util/RandomSource;J)V net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/ (Lnet/minecraft/util/RandomSource;J)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/m_22380_ (J)V net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/markAttempt (J)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/m_22382_ (J)Z net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/isStillValid (J)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/m_22384_ (J)Z net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/shouldRetry (J)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/ (Lnet/minecraft/world/entity/EntityType;F)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/ (Lnet/minecraft/world/entity/EntityType;F)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_22409_ (Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/entity/animal/Animal; net/minecraft/world/entity/ai/behavior/AnimalMakeLove/getBreedTarget (Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/entity/animal/Animal; +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_22421_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/hasBreedTargetOfRightType (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_22431_ (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AnimalMakeLove/findValidBreedPartner (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_289089_ (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/lambda$findValidBreedPartner$0 (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/ ()V net/minecraft/world/entity/ai/behavior/AnimalPanic/ ()V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/ (FLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/behavior/AnimalPanic/ (FLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/ (F)V net/minecraft/world/entity/ai/behavior/AnimalPanic/ (F)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_196638_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/AnimalPanic/getPanicPos (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_196641_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AnimalPanic/lookForWater (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_196644_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$lookForWater$1 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_284016_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$lookForWater$2 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_284017_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$lookForWater$3 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_289090_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$static$0 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/ ()V net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/ ()V +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_217123_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$1 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_22461_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/VillagerProfession;)V net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$3 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/VillagerProfession;)V +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_22465_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$0 (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257166_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257167_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257168_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257169_ (Lnet/minecraft/core/Holder;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$2 (Lnet/minecraft/core/Holder;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257634_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/ ()V net/minecraft/world/entity/ai/behavior/BabyFollowAdult/ ()V +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_147419_ (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$0 (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257170_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257171_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;J)Z net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257172_ (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$3 (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257631_ (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/create (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257685_ (Lnet/minecraft/util/valueproviders/UniformInt;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/create (Lnet/minecraft/util/valueproviders/UniformInt;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/ ()V net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/ ()V +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257486_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257511_ (IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/lambda$create$2 (IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257668_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257698_ (IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/create (IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/ ()V net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/ ()V +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257393_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257592_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$0 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257748_ (ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257872_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$3 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_258050_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;II)V net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;II)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;)V net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;I)V net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;I)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22543_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Behavior/hasRequiredMemories (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Behavior/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/Behavior/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Behavior/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Behavior/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/Behavior/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/ ()V net/minecraft/world/entity/ai/behavior/Behavior$Status/ ()V +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/Behavior$Status/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/m_147432_ ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior$Status/$values ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/values ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior$Status/values ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/BehaviorControl/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/BehaviorControl/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/BehaviorControl/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/BehaviorControl/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/BehaviorControl/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/ ()V net/minecraft/world/entity/ai/behavior/BehaviorUtils/ ()V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_147444_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getRandomSwimmablePos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_186014_ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/SectionPos;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$findSectionClosestToVillage$2 (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_186018_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$getLivingEntityFromUUIDMemory$4 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_186035_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$targetIsValid$1 (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_217126_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/isBreeding (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_217128_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemories (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_217133_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;F)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/throwItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;F)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22581_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;I)Lnet/minecraft/core/SectionPos; net/minecraft/world/entity/ai/behavior/BehaviorUtils/findSectionClosestToVillage (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;I)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22590_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;FI)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemories (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;FI)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22595_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/lookAtEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22598_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;D)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/isOtherTargetMuchFurtherAwayThanCurrentAttackTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;D)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22602_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/lockGazeAndWalkToEachOther (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22606_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getTargetNearestMe (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22610_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getLivingEntityFromUUIDMemory (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22613_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/throwItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22617_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;FI)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemories (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;FI)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22625_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getNearestTarget (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22632_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;I)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/isWithinAttackRange (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;I)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22636_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/entityIsVisible (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22639_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/targetIsValid (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22643_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/targetIsValid (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22660_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemoriesToEachOther (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22667_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/canSee (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22670_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/lookAtEachOther (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_289091_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$getLivingEntityFromUUIDMemory$3 (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_289092_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$targetIsValid$0 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/m_6675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/BlockPosTracker/currentBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/m_6826_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BlockPosTracker/isVisibleBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/m_7024_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/BlockPosTracker/currentPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/BlockPosTracker/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/ (II)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/ (II)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_22696_ (Lnet/minecraft/world/item/DyeColor;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/getFirework (Lnet/minecraft/world/item/DyeColor;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/ ()V net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/ ()V +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_257801_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/lambda$create$1 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_257819_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_258042_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_263977_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/lambda$create$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_147465_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/getCooldownTickMemory (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/ ()V net/minecraft/world/entity/ai/behavior/Croak/ ()V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z net/minecraft/world/entity/ai/behavior/Croak/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Croak/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Croak/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/ai/behavior/Croak/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Croak/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/ai/behavior/Croak/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/ai/behavior/Croak/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Croak/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z net/minecraft/world/entity/ai/behavior/Croak/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Croak/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/ ()V net/minecraft/world/entity/ai/behavior/CrossbowAttack/ ()V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_22784_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/CrossbowAttack/getAttackTarget (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_22786_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/crossbowAttack (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_22797_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/lookAtTarget (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ ()V net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ ()V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/m_147480_ ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/$values ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/ ()V net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/ ()V +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257447_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)Z net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/isVehicleValid (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257459_ (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/create (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257527_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257906_ (ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/lambda$create$2 (ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_258045_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILjava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILjava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/DoNothing/ (II)V net/minecraft/world/entity/ai/behavior/DoNothing/ (II)V +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/DoNothing/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/DoNothing/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/DoNothing/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/DoNothing/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/DoNothing/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/entity/ai/behavior/EntityTracker/ (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_147481_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/ai/behavior/EntityTracker/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_6675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/EntityTracker/currentBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_6826_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/EntityTracker/isVisibleBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_7024_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/EntityTracker/currentPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/EntityTracker/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/ ()V net/minecraft/world/entity/ai/behavior/EraseMemoryIf/ ()V +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_257665_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/EraseMemoryIf/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_257682_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/EraseMemoryIf/lambda$create$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_257964_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/EraseMemoryIf/lambda$create$1 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_258093_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/EraseMemoryIf/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_147497_ (Lnet/minecraft/world/entity/PathfinderMob;)F net/minecraft/world/entity/ai/behavior/FollowTemptation/getSpeedModifier (Lnet/minecraft/world/entity/PathfinderMob;)F +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_147499_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/world/entity/ai/behavior/FollowTemptation/lambda$new$1 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_147508_ (Lnet/minecraft/world/entity/PathfinderMob;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/FollowTemptation/getTemptingPlayer (Lnet/minecraft/world/entity/PathfinderMob;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_288122_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; net/minecraft/world/entity/ai/behavior/FollowTemptation/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/FollowTemptation/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/FollowTemptation/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/FollowTemptation/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/ (Ljava/util/Map;Ljava/util/Set;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/GateBehavior/ (Ljava/util/Map;Ljava/util/Set;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/GateBehavior/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GateBehavior/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/GateBehavior/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257173_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$new$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257174_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$tickOrStop$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257175_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$doStop$4 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257176_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$doStop$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257177_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$tickOrStop$1 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257178_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$toString$6 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257179_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$tickOrStop$3 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257655_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/hasRequiredMemories (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/GateBehavior/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ ()V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ ()V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ (Ljava/lang/String;ILjava/util/function/Consumer;)V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ (Ljava/lang/String;ILjava/util/function/Consumer;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/m_147526_ ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/$values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/m_147527_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/apply (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/m_147529_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/lambda$static$0 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ ()V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ ()V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/m_142144_ (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/apply (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/m_147531_ ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/$values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/m_142144_ (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/apply (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/m_257180_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/lambda$apply$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/m_257181_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/lambda$apply$0 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/m_142144_ (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/apply (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/m_257182_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/lambda$apply$0 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/m_257183_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/lambda$apply$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ ()V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ ()V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ (I)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ (I)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_22993_ (Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/world/entity/ai/behavior/GiveGiftToHero/calculateTimeUntilNextGift (Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23009_ (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/List; net/minecraft/world/entity/ai/behavior/GiveGiftToHero/getItemToThrow (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23011_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/throwGift (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23014_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/isWithinThrowingDistance (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23017_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/isHero (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23019_ (Ljava/util/HashMap;)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23029_ (Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/isHeroVisible (Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23039_ (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/GiveGiftToHero/getNearestTargetableHero (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/ (Ljava/util/function/Function;FI)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/ (Ljava/util/function/Function;FI)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217202_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/canThrowItemToTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217204_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/lambda$start$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217207_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/throwItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217211_ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/getThrowPosition (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217213_ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/triggerDropItemOnBlock (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217221_ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/lambda$tick$1 (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/ ()V net/minecraft/world/entity/ai/behavior/GoToClosestVillage/ ()V +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_147552_ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_257184_ (FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$3 (FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_257186_ (FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$2 (FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_257375_ (FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/GoToClosestVillage/create (FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_274190_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/ (F)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/ (F)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_217229_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/lambda$stop$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_23109_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/GlobalPos;)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/lambda$stop$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_23114_ (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/lambda$checkExtraStartConditions$0 (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/ ()V net/minecraft/world/entity/ai/behavior/GoToTargetLocation/ ()V +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_217246_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/entity/ai/behavior/GoToTargetLocation/getRandomOffset (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_217250_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/getNearbyPos (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_257423_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_257680_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_258018_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_289093_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/GoToTargetLocation/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/ ()V net/minecraft/world/entity/ai/behavior/GoToWantedItem/ ()V +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_23157_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257187_ (ZLjava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$3 (ZLjava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257188_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257189_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257526_ (FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/GoToWantedItem/create (FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257684_ (Ljava/util/function/Predicate;FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/GoToWantedItem/create (Ljava/util/function/Predicate;FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/ ()V net/minecraft/world/entity/ai/behavior/HarvestFarmland/ ()V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_23164_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/HarvestFarmland/getValidFarmland (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_23180_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/validPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/ ()V net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/ ()V +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_23224_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_23228_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_23234_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257190_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257191_ (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$5 (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257192_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$6 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257193_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_258053_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/ ()V net/minecraft/world/entity/ai/behavior/InteractWith/ ()V +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_23284_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_23286_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257194_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257195_ (Lnet/minecraft/world/entity/LivingEntity;ILjava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$3 (Lnet/minecraft/world/entity/LivingEntity;ILjava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257196_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$7 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257197_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257198_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257746_ (Lnet/minecraft/world/entity/EntityType;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InteractWith/of (Lnet/minecraft/world/entity/EntityType;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_258079_ (Lnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InteractWith/of (Lnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_289094_ (Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$2 (Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/ ()V net/minecraft/world/entity/ai/behavior/InteractWithDoor/ ()V +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_201951_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$closeDoorsThatIHaveOpenedOrPassedThrough$6 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_201956_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$1 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_201958_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_23307_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/isDoorTooFarAway (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257200_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Set;)V net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257201_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$areOtherMobsComingThroughDoor$9 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257203_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257204_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257205_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$5 (Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257369_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;Ljava/util/Optional;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/areOtherMobsComingThroughDoor (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;Ljava/util/Optional;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257446_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/isMobComingThroughDoor (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257893_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InteractWithDoor/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_258036_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;Ljava/util/Optional;)V net/minecraft/world/entity/ai/behavior/InteractWithDoor/closeDoorsThatIHaveOpenedOrPassedThrough (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_260786_ (Lnet/minecraft/core/GlobalPos;Ljava/util/Set;)Ljava/util/Set; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$rememberDoorToClose$10 (Lnet/minecraft/core/GlobalPos;Ljava/util/Set;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_260787_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Set; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$rememberDoorToClose$11 (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_261108_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/InteractWithDoor/rememberDoorToClose (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_289095_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$areOtherMobsComingThroughDoor$7 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_289096_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$areOtherMobsComingThroughDoor$8 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/ (F)V net/minecraft/world/entity/ai/behavior/JumpOnBed/ (F)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23356_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/isBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23359_ (Lnet/minecraft/world/entity/Mob;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/JumpOnBed/getNearestBed (Lnet/minecraft/world/entity/Mob;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23361_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/JumpOnBed/startWalkingTowardsBed (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23368_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/nearBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23379_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/onOrOverBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23390_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/onBedSurface (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23397_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/tiredOfWalking (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23400_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/tiredOfJumping (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_263980_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/JumpOnBed/lambda$start$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/ ()V net/minecraft/world/entity/ai/behavior/LocateHidingPlace/ ()V +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_217255_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$3 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_217257_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_23420_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$4 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_23424_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_257208_ (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$9 (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_257210_ (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$10 (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_257213_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_258090_ (IFI)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/create (IFI)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289097_ (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289098_ (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$8 (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289099_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$7 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289100_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;I)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;I)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/ (Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/ (Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LongJumpMidJump/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/LongJumpMidJump/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Lnet/minecraft/tags/TagKey;FLjava/util/function/BiPredicate;)V net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Lnet/minecraft/tags/TagKey;FLjava/util/function/BiPredicate;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/m_213675_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/getJumpCandidate (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ ()V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ ()V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Ljava/util/function/BiPredicate;)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Ljava/util/function/BiPredicate;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_213675_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/getJumpCandidate (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_213828_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/isAcceptableLandingPosition (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217303_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/calculateOptimalJumpVector (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217306_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/calculateJumpVectorForAngle (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217312_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/lambda$start$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217315_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/lambda$start$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217318_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/pickCandidate (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_245086_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/defaultAcceptableLandingSpot (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_247472_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/isClearTransition (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/ (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/m_147693_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/getJumpTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/ (F)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/ (F)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_23451_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/followPlayer (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/ (II)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/ (II)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_23484_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/lambda$tick$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_23495_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Z net/minecraft/world/entity/ai/behavior/LookAtTargetSink/lambda$canStillUse$0 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Z +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LookAtTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/LookAtTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/ ()V net/minecraft/world/entity/ai/behavior/MeleeAttack/ ()V +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_147695_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$isHoldingUsableProjectileWeapon$3 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_23527_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/MeleeAttack/isHoldingUsableProjectileWeapon (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257214_ (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257215_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257216_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257733_ (I)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/MeleeAttack/create (I)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/Mount/ ()V net/minecraft/world/entity/ai/behavior/Mount/ ()V +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257464_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/Mount/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257489_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Mount/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257518_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/Mount/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257575_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/Mount/lambda$create$2 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/ ()V net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/ ()V +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_23558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/hasNoBlocksAbove (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_23564_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/getOutdoorPosition (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257217_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$3 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257218_ (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$2 (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257219_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257507_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/create (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_289101_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ (II)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ (II)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ ()V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ ()V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_23589_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/reachedTarget (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_23592_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;J)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/tryComputePath (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;J)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_277150_ (Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/isWalkTargetSpectator (Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/OneShot/ ()V net/minecraft/world/entity/ai/behavior/OneShot/ ()V +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/OneShot/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/OneShot/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/OneShot/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/OneShot/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/OneShot/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/ ()V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/ ()V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_147706_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$checkHowManyChasersEachFriendHas$6 (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23639_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/whoAreYouChasing (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23641_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/isFriendChasingMe (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23652_ (Ljava/util/Map$Entry;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$findSomeoneBeingChased$5 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23659_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$isFriendChasingMe$8 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23667_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/isChasingSomeone (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257221_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257222_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257223_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257224_ (Ljava/util/Map;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$checkHowManyChasersEachFriendHas$7 (Ljava/util/Map;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257226_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257585_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257730_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/chaseKid (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257810_ (Ljava/util/List;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/findSomeoneBeingChased (Ljava/util/List;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257886_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/checkHowManyChasersEachFriendHas (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_274200_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/ ()V net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/ ()V +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_217329_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/competesForSameJobsite (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_217333_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/hasMatchingProfession (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_23724_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/selectWinner (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257227_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257228_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257229_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$1 (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257230_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257231_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257232_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257233_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$2 (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257502_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/PositionTracker/m_6675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/PositionTracker/currentBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/PositionTracker/m_6826_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PositionTracker/isVisibleBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PositionTracker/m_7024_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/PositionTracker/currentPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ (Ljava/util/function/ToIntFunction;IIFLnet/minecraft/world/entity/ai/targeting/TargetingConditions;ILjava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ (Ljava/util/function/ToIntFunction;IIFLnet/minecraft/world/entity/ai/targeting/TargetingConditions;ILjava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147742_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/calculateRammingStartPosition (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147745_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/isWalkableBlock (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147751_ (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$calculateRammingStartPosition$3 (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147754_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/getEdgeOfBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147765_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/chooseRamPosition (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147776_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$start$2 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147787_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$start$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_186047_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$start$1 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_289102_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$chooseRamPosition$4 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/m_147797_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/getStartPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/m_147798_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/getTargetPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/m_147799_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/RamTarget/ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;FLjava/util/function/ToDoubleFunction;Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/RamTarget/ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;FLjava/util/function/ToDoubleFunction;Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_217355_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)V net/minecraft/world/entity/ai/behavior/RamTarget/finishRam (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_217362_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z net/minecraft/world/entity/ai/behavior/RamTarget/hasRammedHornBreakingBlock (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/RamTarget/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z net/minecraft/world/entity/ai/behavior/RamTarget/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/RamTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V net/minecraft/world/entity/ai/behavior/RamTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V net/minecraft/world/entity/ai/behavior/RamTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/RamTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/RamTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)Z net/minecraft/world/entity/ai/behavior/RamTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)Z +MD: net/minecraft/world/entity/ai/behavior/RandomLookAround/ (Lnet/minecraft/util/valueproviders/IntProvider;FFF)V net/minecraft/world/entity/ai/behavior/RandomLookAround/ (Lnet/minecraft/util/valueproviders/IntProvider;FFF)V +MD: net/minecraft/world/entity/ai/behavior/RandomLookAround/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/RandomLookAround/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/RandomLookAround/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/RandomLookAround/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257234_ (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$9 (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257235_ (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$0 (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257236_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$fly$6 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257237_ (IILnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$3 (IILnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257238_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$8 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257240_ (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$fly$5 (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257241_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$1 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257242_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$4 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257243_ (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$10 (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257244_ (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$7 (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257379_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RandomStroll/fly (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257416_ (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/getTargetSwimPos (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257629_ (FLjava/util/function/Function;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/RandomStroll/strollFlyOrSwim (FLjava/util/function/Function;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257751_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RandomStroll/swim (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257798_ (FZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/RandomStroll/stroll (FZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257960_ (FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RandomStroll/stroll (FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257965_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/RandomStroll/stroll (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257997_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/getTargetFlyPos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_289103_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$2 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/ ()V net/minecraft/world/entity/ai/behavior/ReactToBell/ ()V +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_257653_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ReactToBell/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_258068_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ReactToBell/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_258069_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/ReactToBell/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_289104_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ReactToBell/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/ ()V net/minecraft/world/entity/ai/behavior/ResetProfession/ ()V +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_257593_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ResetProfession/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_257917_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/ResetProfession/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_257921_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ResetProfession/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_258077_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/ResetProfession/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/ ()V net/minecraft/world/entity/ai/behavior/ResetRaidStatus/ ()V +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/m_257468_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ResetRaidStatus/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/m_258019_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ResetRaidStatus/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/m_288132_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ResetRaidStatus/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/RingBell/ ()V net/minecraft/world/entity/ai/behavior/RingBell/ ()V +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257471_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RingBell/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257542_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/RingBell/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257770_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/RingBell/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257803_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/RingBell/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/Map;Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/ ()V net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_217371_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_217375_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257245_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$5 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257246_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$3 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257247_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$6 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257248_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$4 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257249_ (Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$1 (Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257524_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/ ()V net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_23912_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257250_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257251_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257253_ (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$6 (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257381_ (Lnet/minecraft/world/entity/MobCategory;F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (Lnet/minecraft/world/entity/MobCategory;F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257660_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257836_ (Ljava/util/function/Predicate;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (Ljava/util/function/Predicate;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_258096_ (Lnet/minecraft/world/entity/EntityType;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (Lnet/minecraft/world/entity/EntityType;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_263988_ (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$3 (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_289105_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$0 (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_289106_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$1 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/ ()V net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257458_ (FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/create (FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257472_ (Lnet/minecraft/world/entity/EntityType;FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/create (Lnet/minecraft/world/entity/EntityType;FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257641_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257679_ (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257724_ (FLnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/create (FLnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257728_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257797_ (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$5 (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_263989_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_289107_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$1 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/ (Lnet/minecraft/util/valueproviders/UniformInt;)V net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/ (Lnet/minecraft/util/valueproviders/UniformInt;)V +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/m_257976_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/tickDownAndCheck (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/ ()V net/minecraft/world/entity/ai/behavior/SetHiddenState/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_257559_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetHiddenState/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_257686_ (Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetHiddenState/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_257713_ (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetHiddenState/create (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_288133_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetHiddenState/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/ ()V net/minecraft/world/entity/ai/behavior/SetLookAndInteract/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257254_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257256_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257257_ (ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$3 (ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257430_ (Lnet/minecraft/world/entity/EntityType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetLookAndInteract/create (Lnet/minecraft/world/entity/EntityType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_289108_ (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/ ()V net/minecraft/world/entity/ai/behavior/SetRaidStatus/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/m_257702_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetRaidStatus/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/m_257923_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetRaidStatus/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/m_257925_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetRaidStatus/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257370_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/entity (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257383_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257620_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/pos (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257681_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZLjava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZLjava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257839_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLjava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLjava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257932_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_147906_ (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$0 (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257258_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$3 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257259_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257260_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257469_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257648_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_257261_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_257262_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IIFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IIFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_257972_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIII)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIII)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_274208_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_182362_ (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$1 (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_182368_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257264_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$2 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257265_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$3 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257266_ (Ljava/util/function/Predicate;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$4 (Ljava/util/function/Predicate;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257764_ (FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/create (FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_258011_ (Ljava/util/function/Predicate;Ljava/util/function/Function;I)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/create (Ljava/util/function/Predicate;Ljava/util/function/Function;I)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/ (II)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/ (II)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_182370_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayAsHeldItem (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_182373_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/clearHeldItem (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24112_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/findItemsToDisplay (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24115_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayFirstItem (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24117_ (Lnet/minecraft/world/item/trading/MerchantOffer;)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/playerItemStackMatchesCostOfOffer (Lnet/minecraft/world/item/trading/MerchantOffer;)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24127_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/updateDisplayItems (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24137_ (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/lookAtTarget (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24147_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayCyclingItems (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/ ()V net/minecraft/world/entity/ai/behavior/ShufflingList/ ()V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/ (Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/ShufflingList/ (Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/iterator ()Ljava/util/Iterator; net/minecraft/world/entity/ai/behavior/ShufflingList/iterator ()Ljava/util/Iterator; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147922_ ()Lnet/minecraft/world/entity/ai/behavior/ShufflingList; net/minecraft/world/entity/ai/behavior/ShufflingList/shuffle ()Lnet/minecraft/world/entity/ai/behavior/ShufflingList; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147923_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)V net/minecraft/world/entity/ai/behavior/ShufflingList/lambda$shuffle$1 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147925_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)Ljava/util/List; net/minecraft/world/entity/ai/behavior/ShufflingList/lambda$codec$0 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147927_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/behavior/ShufflingList/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147929_ (Ljava/lang/Object;I)Lnet/minecraft/world/entity/ai/behavior/ShufflingList; net/minecraft/world/entity/ai/behavior/ShufflingList/add (Ljava/lang/Object;I)Lnet/minecraft/world/entity/ai/behavior/ShufflingList; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147932_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/behavior/ShufflingList/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/ShufflingList/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/ (Ljava/lang/Object;I)V net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/ (Ljava/lang/Object;I)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147940_ ()Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/getData ()Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147941_ (F)V net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/setRandom (F)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147943_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147945_ ()I net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/getWeight ()I +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147946_ ()D net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/getRandWeight ()D +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/m_147955_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/lambda$decode$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/m_147958_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/lambda$decode$1 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/ ()V net/minecraft/world/entity/ai/behavior/SleepInBed/ ()V +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SleepInBed/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/SleepInBed/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/SleepInBed/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SleepInBed/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/SleepInBed/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/ ()V net/minecraft/world/entity/ai/behavior/SocializeAtBell/ ()V +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257267_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257268_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257269_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257270_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257875_ ()Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SocializeAtBell/create ()Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_289109_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_289110_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/ ()V net/minecraft/world/entity/ai/behavior/StartAttacking/ ()V +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_24211_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$0 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257271_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$1 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257272_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$2 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257273_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$3 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257710_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StartAttacking/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257741_ (Ljava/util/function/Predicate;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StartAttacking/create (Ljava/util/function/Predicate;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/ ()V net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/ ()V +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_257496_ (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/create (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_257522_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_257913_ (Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/lambda$create$2 (Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_258039_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/ ()V net/minecraft/world/entity/ai/behavior/StayCloseToTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_257896_ (Ljava/util/function/Function;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/StayCloseToTarget/lambda$create$0 (Ljava/util/function/Function;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_271617_ (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StayCloseToTarget/lambda$create$2 (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_271618_ (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StayCloseToTarget/lambda$create$1 (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_271742_ (Ljava/util/function/Function;Ljava/util/function/Predicate;IIF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StayCloseToTarget/create (Ljava/util/function/Function;Ljava/util/function/Predicate;IIF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/ ()V net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/ ()V +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_147985_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_147987_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_217407_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$3 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_217410_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257274_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257275_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257276_ (ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$6 (ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257811_ (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Z)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Z)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257822_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257940_ (Ljava/util/function/BiConsumer;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create (Ljava/util/function/BiConsumer;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257990_ (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_258032_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/isTiredOfTryingToReachTarget (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;)Z +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/ ()V net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/ ()V +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257277_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$0 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257279_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257280_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257281_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257282_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257993_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_289111_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/ ()V net/minecraft/world/entity/ai/behavior/StrollAroundPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257283_ (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$0 (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257284_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257285_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$3 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257286_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257894_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/ ()V net/minecraft/world/entity/ai/behavior/StrollToPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_257287_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StrollToPoi/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_257288_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/StrollToPoi/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_257289_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StrollToPoi/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_258086_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StrollToPoi/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/ ()V net/minecraft/world/entity/ai/behavior/StrollToPoiList/ ()V +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257368_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/StrollToPoiList/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257487_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIILnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StrollToPoiList/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIILnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257703_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StrollToPoiList/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257930_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StrollToPoiList/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/Swim/ (F)V net/minecraft/world/entity/ai/behavior/Swim/ (F)V +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Swim/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/Swim/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/Swim/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Swim/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Swim/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/Swim/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/ ()V net/minecraft/world/entity/ai/behavior/TradeWithVillager/ ()V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_24422_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Set; net/minecraft/world/entity/ai/behavior/TradeWithVillager/figureOutWhatIAmWillingToTrade (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_24425_ (Lnet/minecraft/world/entity/npc/Villager;Ljava/util/Set;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/throwHalfStack (Lnet/minecraft/world/entity/npc/Villager;Ljava/util/Set;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_24429_ (Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/item/Item;)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/lambda$figureOutWhatIAmWillingToTrade$0 (Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/ ()V net/minecraft/world/entity/ai/behavior/TriggerGate/ ()V +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257503_ (Ljava/util/List;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/TriggerGate/triggerOneShuffled (Ljava/util/List;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257533_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/ai/behavior/TriggerGate/lambda$triggerGate$0 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257729_ (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TriggerGate/lambda$triggerGate$2 (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257776_ (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/TriggerGate/lambda$triggerGate$1 (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_258009_ (Ljava/util/List;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/TriggerGate/triggerGate (Ljava/util/List;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/ ()V net/minecraft/world/entity/ai/behavior/TryFindLand/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257479_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryFindLand/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257596_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryFindLand/lambda$create$1 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257647_ (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryFindLand/create (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257862_ (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/TryFindLand/lambda$create$0 (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/ ()V net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257445_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257557_ (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/create (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257879_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/lambda$create$1 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257996_ (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/lambda$create$0 (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/ ()V net/minecraft/world/entity/ai/behavior/TryFindWater/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_257548_ (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/TryFindWater/lambda$create$0 (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_257817_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryFindWater/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_257908_ (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryFindWater/create (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_258071_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryFindWater/lambda$create$1 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/ ()V net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_257849_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/create (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_257870_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/lambda$create$1 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_258016_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/lambda$create$2 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_268890_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/lambda$create$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/ ()V net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/ ()V +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/m_257835_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/m_258025_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/m_288135_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/ ()V net/minecraft/world/entity/ai/behavior/UseBonemeal/ ()V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24480_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/UseBonemeal/setCurrentCropAsTarget (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24482_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/UseBonemeal/lambda$setCurrentCropAsTarget$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24485_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/validPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24492_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/UseBonemeal/pickNextTarget (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/ ()V net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_24530_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/bedIsOccupied (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257806_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257857_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257898_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257919_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/ ()V net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257290_ (IIFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$2 (IIFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257291_ (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$0 (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257292_ (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$3 (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257293_ (IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$1 (IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257910_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/create (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_258010_ (FII)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/create (FII)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/ ()V net/minecraft/world/entity/ai/behavior/VillagerCalmDown/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_24579_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_257295_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_257296_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_257666_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/VillagerCalmDown/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_288136_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/ ()V net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217492_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getMeetPackage$3 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217494_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getRestPackage$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217496_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getCorePackage$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217498_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getCorePackage$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24582_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getFullLookBehavior ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24583_ (F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getPlayPackage (F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24585_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getCorePackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24588_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getMinimalLookBehavior ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24589_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getWorkPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24592_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getRestPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24595_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getMeetPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24598_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getIdlePackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24601_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getPanicPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24604_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getPreRaidPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24607_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getRaidPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24610_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getHidePackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_257399_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/raidExistsAndNotVictory (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_257480_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/raidExistsAndActive (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/ ()V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_217500_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/canReach (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_217504_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/lambda$takeVacantBed$2 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_217508_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/lambda$takeVacantBed$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24629_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/tryToGiveBirth (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24633_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/giveBedToChild (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24639_ (Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/isBreedingPossible (Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24648_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/VillagerMakeLove/takeVacantBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24655_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/VillagerMakeLove/breed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_289112_ (Lnet/minecraft/world/entity/AgeableMob;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/lambda$isBreedingPossible$0 (Lnet/minecraft/world/entity/AgeableMob;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/ ()V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_24687_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/hasHostile (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_24697_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/isHurt (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/WakeUp/ ()V net/minecraft/world/entity/ai/behavior/WakeUp/ ()V +MD: net/minecraft/world/entity/ai/behavior/WakeUp/m_257779_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/WakeUp/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/WakeUp/m_258043_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/WakeUp/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/WakeUp/m_258063_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/WakeUp/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_24792_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/compostItems (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_24797_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/spawnComposterFillEffects (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_24802_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/makeBread (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_5628_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/useWorkstation (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/ ()V net/minecraft/world/entity/ai/behavior/WorkAtPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_24819_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/lambda$start$0 (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_5628_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/useWorkstation (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/ ()V net/minecraft/world/entity/ai/behavior/YieldJobSite/ ()V +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_217510_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/nearbyWantsJobsite (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257298_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$1 (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257299_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257300_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257301_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257302_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$6 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257303_ (Ljava/util/Optional;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$2 (Ljava/util/Optional;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257696_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiType;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/canReachPos (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiType;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257788_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/YieldJobSite/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_288137_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/core/BlockPos;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/core/BlockPos;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257394_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$3 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257395_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$sequence$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257433_ (Ljava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/triggerIf (Ljava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257451_ (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/get (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257554_ (Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$2 (Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257590_ (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/triggerIf (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257695_ (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/unbox (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257813_ (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$5 (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257845_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/OneShot;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/triggerIf (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/OneShot;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257915_ (Ljava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$4 (Ljava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257924_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/create (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257958_ ()Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/instance ()Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_258034_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_258047_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/sequence (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_258081_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$sequence$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/m_257808_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/trigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/m_257783_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/lambda$new$0 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ ()V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/lift1 (Lcom/mojang/datafixers/kinds/App;)Ljava/util/function/Function; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/lift1 (Lcom/mojang/datafixers/kinds/App;)Ljava/util/function/Function; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257492_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/registered (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257495_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/present (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257642_ (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/lambda$lift1$0 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257828_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/tryGet (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257851_ (Ljava/util/function/Supplier;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/util/function/Supplier;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_258051_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/get (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_258060_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ifTriggered (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_258080_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/absent (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu/ ()V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu/ ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu/ ()V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu/ ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lcom/mojang/datafixers/util/Unit; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/datafixers/kinds/App;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/datafixers/kinds/App;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257465_ (Ljava/lang/Object;J)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/setWithExpiry (Ljava/lang/Object;J)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257512_ (Ljava/lang/Object;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/set (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257564_ (Ljava/util/Optional;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/setOrErase (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257971_ ()V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/erase ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_258035_ ()Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/value ()Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/hashCode ()I net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/hashCode ()I +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/hashCode ()I net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/hashCode ()I +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/hashCode ()I net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/hashCode ()I +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/Trigger/m_257808_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/Trigger/trigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/ (I)V net/minecraft/world/entity/ai/behavior/warden/Digging/ (I)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z net/minecraft/world/entity/ai/behavior/warden/Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/ (I)V net/minecraft/world/entity/ai/behavior/warden/Emerging/ (I)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Emerging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Emerging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/ ()V net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/ ()V net/minecraft/world/entity/ai/behavior/warden/Roar/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Roar/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Roar/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/ ()V net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257304_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/lambda$create$2 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257305_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/lambda$create$0 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257306_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/lambda$create$1 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257595_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/ ()V net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257307_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257308_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257309_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257310_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257897_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/ (I)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/ (I)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_289113_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/lambda$stop$0 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_217698_ (Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/setCooldown (Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_217701_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/lambda$tick$2 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_217705_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/lambda$tick$1 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_289114_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/lambda$tick$0 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_257499_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/warden/TryToSniff/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_257573_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/warden/TryToSniff/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_257812_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/warden/TryToSniff/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_289115_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/TryToSniff/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/BodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24880_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/rotateBodyIfNecessary ()V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24881_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/rotateHeadIfNecessary ()V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24882_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/rotateHeadTowardsFront ()V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24883_ ()Z net/minecraft/world/entity/ai/control/BodyRotationControl/notCarryingMobPassengers ()Z +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24884_ ()Z net/minecraft/world/entity/ai/control/BodyRotationControl/isMoving ()Z +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_8121_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/ai/control/FlyingMoveControl/ (Lnet/minecraft/world/entity/Mob;IZ)V net/minecraft/world/entity/ai/control/FlyingMoveControl/ (Lnet/minecraft/world/entity/Mob;IZ)V +MD: net/minecraft/world/entity/ai/control/FlyingMoveControl/m_8126_ ()V net/minecraft/world/entity/ai/control/FlyingMoveControl/tick ()V +MD: net/minecraft/world/entity/ai/control/JumpControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/JumpControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/JumpControl/m_24901_ ()V net/minecraft/world/entity/ai/control/JumpControl/jump ()V +MD: net/minecraft/world/entity/ai/control/JumpControl/m_8124_ ()V net/minecraft/world/entity/ai/control/JumpControl/tick ()V +MD: net/minecraft/world/entity/ai/control/LookControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/LookControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_142586_ ()V net/minecraft/world/entity/ai/control/LookControl/clampHeadRotationToBody ()V +MD: net/minecraft/world/entity/ai/control/LookControl/m_148051_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_180896_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/control/LookControl/getYRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/control/LookControl/m_180897_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/control/LookControl/getXRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/control/LookControl/m_186069_ ()Z net/minecraft/world/entity/ai/control/LookControl/isLookingAtTarget ()Z +MD: net/minecraft/world/entity/ai/control/LookControl/m_24946_ (DDD)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (DDD)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24950_ (DDDFF)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (DDDFF)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24956_ (FFF)F net/minecraft/world/entity/ai/control/LookControl/rotateTowards (FFF)F +MD: net/minecraft/world/entity/ai/control/LookControl/m_24960_ (Lnet/minecraft/world/entity/Entity;FF)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (Lnet/minecraft/world/entity/Entity;FF)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24964_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24966_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/entity/ai/control/LookControl/getWantedY (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/entity/ai/control/LookControl/m_24969_ ()D net/minecraft/world/entity/ai/control/LookControl/getWantedX ()D +MD: net/minecraft/world/entity/ai/control/LookControl/m_24970_ ()D net/minecraft/world/entity/ai/control/LookControl/getWantedY ()D +MD: net/minecraft/world/entity/ai/control/LookControl/m_24971_ ()D net/minecraft/world/entity/ai/control/LookControl/getWantedZ ()D +MD: net/minecraft/world/entity/ai/control/LookControl/m_287074_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/LookControl/lambda$tick$0 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_289116_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/LookControl/lambda$tick$1 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_8106_ ()Z net/minecraft/world/entity/ai/control/LookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/ai/control/LookControl/m_8128_ ()V net/minecraft/world/entity/ai/control/LookControl/tick ()V +MD: net/minecraft/world/entity/ai/control/MoveControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/MoveControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24988_ (FF)V net/minecraft/world/entity/ai/control/MoveControl/strafe (FF)V +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24991_ (FFF)F net/minecraft/world/entity/ai/control/MoveControl/rotlerp (FFF)F +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24995_ ()Z net/minecraft/world/entity/ai/control/MoveControl/hasWanted ()Z +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24996_ (FF)Z net/minecraft/world/entity/ai/control/MoveControl/isWalkable (FF)Z +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24999_ ()D net/minecraft/world/entity/ai/control/MoveControl/getSpeedModifier ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_25000_ ()D net/minecraft/world/entity/ai/control/MoveControl/getWantedX ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_25001_ ()D net/minecraft/world/entity/ai/control/MoveControl/getWantedY ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_25002_ ()D net/minecraft/world/entity/ai/control/MoveControl/getWantedZ ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_6849_ (DDDD)V net/minecraft/world/entity/ai/control/MoveControl/setWantedPosition (DDDD)V +MD: net/minecraft/world/entity/ai/control/MoveControl/m_8126_ ()V net/minecraft/world/entity/ai/control/MoveControl/tick ()V +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/ ()V net/minecraft/world/entity/ai/control/MoveControl$Operation/ ()V +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/control/MoveControl$Operation/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/m_148056_ ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; net/minecraft/world/entity/ai/control/MoveControl$Operation/$values ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; net/minecraft/world/entity/ai/control/MoveControl$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/values ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; net/minecraft/world/entity/ai/control/MoveControl$Operation/values ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/ (Lnet/minecraft/world/entity/Mob;I)V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/ (Lnet/minecraft/world/entity/Mob;I)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/m_287076_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/lambda$tick$0 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/m_289117_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/lambda$tick$1 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/m_8128_ ()V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/tick ()V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/ (Lnet/minecraft/world/entity/Mob;IIFFZ)V net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/ (Lnet/minecraft/world/entity/Mob;IIFFZ)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/m_246609_ (F)F net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/getTurningSpeedFactor (F)F +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/m_8126_ ()V net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/tick ()V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;Ljava/util/function/Predicate;FDDLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;Ljava/util/function/Predicate;FDDLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDDLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDDLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDD)V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_148077_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/lambda$canUse$2 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_25048_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/lambda$new$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_25051_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BegGoal/ (Lnet/minecraft/world/entity/animal/Wolf;F)V net/minecraft/world/entity/ai/goal/BegGoal/ (Lnet/minecraft/world/entity/animal/Wolf;F)V +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_25066_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/goal/BegGoal/playerHoldingInteresting (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BegGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BegGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/BegGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BegGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/BegGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BoatGoals/ ()V net/minecraft/world/entity/ai/goal/BoatGoals/ ()V +MD: net/minecraft/world/entity/ai/goal/BoatGoals/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/goal/BoatGoals/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/goal/BoatGoals/m_148079_ ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; net/minecraft/world/entity/ai/goal/BoatGoals/$values ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; +MD: net/minecraft/world/entity/ai/goal/BoatGoals/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/BoatGoals; net/minecraft/world/entity/ai/goal/BoatGoals/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/BoatGoals; +MD: net/minecraft/world/entity/ai/goal/BoatGoals/values ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; net/minecraft/world/entity/ai/goal/BoatGoals/values ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;ILjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_25094_ (Lnet/minecraft/world/Difficulty;)Z net/minecraft/world/entity/ai/goal/BreakDoorGoal/isValidDifficulty (Lnet/minecraft/world/Difficulty;)Z +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_25100_ ()I net/minecraft/world/entity/ai/goal/BreakDoorGoal/getDoorBreakTime ()I +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BreakDoorGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BreakDoorGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/BreakDoorGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BreakDoorGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/BreakDoorGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/BreathAirGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_25106_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/BreathAirGoal/givesAir (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_25112_ ()V net/minecraft/world/entity/ai/goal/BreathAirGoal/findAirPosition ()V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/BreathAirGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BreathAirGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BreathAirGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BreathAirGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/BreathAirGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/ ()V net/minecraft/world/entity/ai/goal/BreedGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;DLjava/lang/Class;)V net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;DLjava/lang/Class;)V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_25132_ ()Lnet/minecraft/world/entity/animal/Animal; net/minecraft/world/entity/ai/goal/BreedGoal/getFreePartner ()Lnet/minecraft/world/entity/animal/Animal; +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8026_ ()V net/minecraft/world/entity/ai/goal/BreedGoal/breed ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BreedGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BreedGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/BreedGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BreedGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/ (Lnet/minecraft/world/entity/animal/Cat;DI)V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/ (Lnet/minecraft/world/entity/animal/Cat;DI)V +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_6099_ (Lnet/minecraft/world/entity/PathfinderMob;)I net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/nextStartTick (Lnet/minecraft/world/entity/PathfinderMob;)I +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/ (Lnet/minecraft/world/entity/animal/Cat;D)V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/ (Lnet/minecraft/world/entity/animal/Cat;D)V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_148083_ (Lnet/minecraft/world/level/block/state/properties/BedPart;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/lambda$isValidTarget$0 (Lnet/minecraft/world/level/block/state/properties/BedPart;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_25155_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/lambda$isValidTarget$1 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;I)V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;I)V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_25172_ (Lnet/minecraft/core/BlockPos;III)Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/waterIsClear (Lnet/minecraft/core/BlockPos;III)Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_25178_ (Lnet/minecraft/core/BlockPos;III)Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/surfaceIsClear (Lnet/minecraft/core/BlockPos;III)Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/DoorInteractGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_25195_ (Z)V net/minecraft/world/entity/ai/goal/DoorInteractGoal/setOpen (Z)V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_25200_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/isOpen ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/DoorInteractGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/DoorInteractGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/EatBlockGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_25213_ ()I net/minecraft/world/entity/ai/goal/EatBlockGoal/getEatAnimationTick ()I +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/EatBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/EatBlockGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/FleeSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_25226_ ()Z net/minecraft/world/entity/ai/goal/FleeSunGoal/setWantedPos ()Z +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_25227_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/FleeSunGoal/getHidePos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FleeSunGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FleeSunGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FleeSunGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FloatGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/FloatGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/FloatGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/FloatGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/FloatGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FloatGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FloatGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FloatGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/FollowBoatGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/FollowBoatGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowBoatGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowBoatGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowBoatGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowBoatGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowBoatGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_25251_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)I net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/nextStartTick (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)I +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_25254_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/lambda$canUse$1 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_25257_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/ (Lnet/minecraft/world/entity/Mob;DFF)V net/minecraft/world/entity/ai/goal/FollowMobGoal/ (Lnet/minecraft/world/entity/Mob;DFF)V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_25276_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/goal/FollowMobGoal/lambda$new$0 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowMobGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowMobGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowMobGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowMobGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowMobGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/ (Lnet/minecraft/world/entity/TamableAnimal;DFFZ)V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/ (Lnet/minecraft/world/entity/TamableAnimal;DFFZ)V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25300_ (II)I net/minecraft/world/entity/ai/goal/FollowOwnerGoal/randomIntInclusive (II)I +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25303_ (III)Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/maybeTeleportTo (III)Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25307_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canTeleportTo (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25313_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/teleportToOwner ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_272221_ ()Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/unableToMove ()Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V net/minecraft/world/entity/ai/goal/FollowParentGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowParentGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowParentGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowParentGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowParentGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowParentGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/Goal/ ()V net/minecraft/world/entity/ai/goal/Goal/ ()V +MD: net/minecraft/world/entity/ai/goal/Goal/m_183277_ (I)I net/minecraft/world/entity/ai/goal/Goal/adjustedTickDelay (I)I +MD: net/minecraft/world/entity/ai/goal/Goal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/Goal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_186073_ (I)I net/minecraft/world/entity/ai/goal/Goal/reducedTickDelay (I)I +MD: net/minecraft/world/entity/ai/goal/Goal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/Goal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_7021_ (Ljava/util/EnumSet;)V net/minecraft/world/entity/ai/goal/Goal/setFlags (Ljava/util/EnumSet;)V +MD: net/minecraft/world/entity/ai/goal/Goal/m_7684_ ()Ljava/util/EnumSet; net/minecraft/world/entity/ai/goal/Goal/getFlags ()Ljava/util/EnumSet; +MD: net/minecraft/world/entity/ai/goal/Goal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/Goal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_8037_ ()V net/minecraft/world/entity/ai/goal/Goal/tick ()V +MD: net/minecraft/world/entity/ai/goal/Goal/m_8041_ ()V net/minecraft/world/entity/ai/goal/Goal/stop ()V +MD: net/minecraft/world/entity/ai/goal/Goal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/Goal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_8056_ ()V net/minecraft/world/entity/ai/goal/Goal/start ()V +MD: net/minecraft/world/entity/ai/goal/Goal/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/goal/Goal/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/ ()V net/minecraft/world/entity/ai/goal/Goal$Flag/ ()V +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/goal/Goal$Flag/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/m_148094_ ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; net/minecraft/world/entity/ai/goal/Goal$Flag/$values ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/Goal$Flag; net/minecraft/world/entity/ai/goal/Goal$Flag/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/values ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; net/minecraft/world/entity/ai/goal/Goal$Flag/values ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +MD: net/minecraft/world/entity/ai/goal/GoalSelector/ ()V net/minecraft/world/entity/ai/goal/GoalSelector/ ()V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/ (Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/goal/GoalSelector/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_148097_ (I)V net/minecraft/world/entity/ai/goal/GoalSelector/setNewGoalRate (I)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_148105_ ()Ljava/util/Set; net/minecraft/world/entity/ai/goal/GoalSelector/getAvailableGoals ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_186075_ (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/EnumSet;)Z net/minecraft/world/entity/ai/goal/GoalSelector/goalContainsAnyFlags (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/EnumSet;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_186078_ (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/Map;)Z net/minecraft/world/entity/ai/goal/GoalSelector/goalCanBeReplacedForAllFlags (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/Map;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_186081_ (Z)V net/minecraft/world/entity/ai/goal/GoalSelector/tickRunningGoals (Z)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25352_ (ILnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/GoalSelector/addGoal (ILnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25355_ (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V net/minecraft/world/entity/ai/goal/GoalSelector/disableControlFlag (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25360_ (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;Z)V net/minecraft/world/entity/ai/goal/GoalSelector/setControlFlag (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;Z)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25363_ (Lnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/GoalSelector/removeGoal (Lnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25365_ (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/GoalSelector/lambda$removeGoal$2 (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25373_ ()V net/minecraft/world/entity/ai/goal/GoalSelector/tick ()V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25374_ (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V net/minecraft/world/entity/ai/goal/GoalSelector/enableControlFlag (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25376_ (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/GoalSelector/lambda$removeGoal$1 (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25386_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/goal/GoalSelector/getRunningGoals ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_262357_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/GoalSelector/lambda$removeAllGoals$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_262460_ (Ljava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/GoalSelector/removeAllGoals (Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector$1/ ()V net/minecraft/world/entity/ai/goal/GoalSelector$1/ ()V +MD: net/minecraft/world/entity/ai/goal/GoalSelector$1/m_8036_ ()Z net/minecraft/world/entity/ai/goal/GoalSelector$1/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector$2/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/GoalSelector$2/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector$2/m_7620_ ()Z net/minecraft/world/entity/ai/goal/GoalSelector$2/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_217746_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/lambda$getRandomPoiWithinSection$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25400_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)Z net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/lambda$getRandomVillageSection$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25405_ (Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/doesVillagerWantGolem (Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25407_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getRandomPoiWithinSection (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25410_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPositionTowardsAnywhere ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25411_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPositionTowardsVillagerWhoWantsGolem ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25412_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPositionTowardsPoi ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25413_ ()Lnet/minecraft/core/SectionPos; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getRandomVillageSection ()Lnet/minecraft/core/SectionPos; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V +MD: net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/ai/goal/JumpGoal/ ()V net/minecraft/world/entity/ai/goal/JumpGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/ (Lnet/minecraft/world/entity/animal/ShoulderRidingEntity;)V net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/ (Lnet/minecraft/world/entity/animal/ShoulderRidingEntity;)V +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/ (Lnet/minecraft/world/entity/Mob;F)V net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/ (Lnet/minecraft/world/entity/Mob;F)V +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;D)V net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;D)V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_25504_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_25506_ (Lnet/minecraft/world/entity/animal/horse/Llama;I)Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/firstIsLeashed (Lnet/minecraft/world/entity/animal/horse/Llama;I)Z +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FFZ)V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FFZ)V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_148123_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lambda$canUse$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_25529_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lambda$new$0 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V +MD: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25563_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/resetAttackCooldown ()V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25564_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/isTimeToAttack ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25565_ ()I net/minecraft/world/entity/ai/goal/MeleeAttackGoal/getTicksUntilNextAttack ()I +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25566_ ()I net/minecraft/world/entity/ai/goal/MeleeAttackGoal/getAttackInterval ()I +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/ai/goal/MeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_6739_ (Lnet/minecraft/world/entity/LivingEntity;D)V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/checkAndPerformAttack (Lnet/minecraft/world/entity/LivingEntity;D)V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZILjava/util/function/BooleanSupplier;)V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZILjava/util/function/BooleanSupplier;)V +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217748_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217752_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Double; net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Double; +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217755_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$3 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217757_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_25592_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/hasNotVisited (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_25597_ ()V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/updateVisited ()V +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DII)V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DII)V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_25624_ ()V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/moveMobToBlock ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_25625_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/isReachedTarget ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_25626_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/findNearestBlock ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_6099_ (Lnet/minecraft/world/entity/PathfinderMob;)I net/minecraft/world/entity/ai/goal/MoveToBlockGoal/nextStartTick (Lnet/minecraft/world/entity/PathfinderMob;)I +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_6669_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/MoveToBlockGoal/getMoveToTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8052_ ()D net/minecraft/world/entity/ai/goal/MoveToBlockGoal/acceptedDistance ()D +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8064_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/OcelotAttackGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/OcelotAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/OcelotAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/OcelotAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/OcelotAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/OcelotAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/OfferFlowerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/OfferFlowerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/ (Lnet/minecraft/world/entity/Mob;Z)V net/minecraft/world/entity/ai/goal/OpenDoorGoal/ (Lnet/minecraft/world/entity/Mob;Z)V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/OpenDoorGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/OpenDoorGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/OpenDoorGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/OpenDoorGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/PanicGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/PanicGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_196647_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/PanicGoal/lambda$lookForWater$0 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_198172_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/PanicGoal/lookForWater (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_202729_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_25702_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/findRandomPosition ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_25703_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/PanicGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/PanicGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/ (Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/ (Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_25708_ (Lnet/minecraft/world/entity/raid/Raid;)V net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/recruitNearby (Lnet/minecraft/world/entity/raid/Raid;)V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_25710_ (Lnet/minecraft/world/entity/raid/Raid;Lnet/minecraft/world/entity/raid/Raider;)Z net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/lambda$recruitNearby$0 (Lnet/minecraft/world/entity/raid/Raid;Lnet/minecraft/world/entity/raid/Raider;)Z +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/entity/ai/goal/RandomStandGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RandomStandGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_245867_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/entity/ai/goal/RandomStandGoal/resetStandInterval (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_247344_ ()V net/minecraft/world/entity/ai/goal/RandomStandGoal/playStandSound ()V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RandomStandGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RandomStandGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RandomStandGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DIZ)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DIZ)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_25746_ (I)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/setInterval (I)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_25751_ ()V net/minecraft/world/entity/ai/goal/RandomStrollGoal/trigger ()V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/RandomStrollGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RandomStrollGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RandomStrollGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RandomStrollGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RandomStrollGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIIF)V net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIIF)V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RangedAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RangedAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RangedAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RangedAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RangedAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DIF)V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DIF)V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_25797_ (I)V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/setMinAttackInterval (I)V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_25803_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/isHoldingBow ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DF)V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DF)V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_25821_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/isHoldingCrossbow ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_25822_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/isValidTarget ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_25823_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/canRun ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/m_148134_ ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/$values ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_25852_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/RemoveBlockGoal/getPosWithBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_5777_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/playBreakSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/RemoveBlockGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_7659_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/playDestroyProgressSound (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RemoveBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/RestrictSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RestrictSunGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RestrictSunGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RestrictSunGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;D)V net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;D)V +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;I)V net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;I)V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_25910_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/lambda$canUse$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_25915_ ()V net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/moveRandomly ()V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/SwellGoal/ (Lnet/minecraft/world/entity/monster/Creeper;)V net/minecraft/world/entity/ai/goal/SwellGoal/ (Lnet/minecraft/world/entity/monster/Creeper;)V +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/SwellGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/SwellGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/SwellGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/SwellGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/SwellGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/ ()V net/minecraft/world/entity/ai/goal/TemptGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DLnet/minecraft/world/item/crafting/Ingredient;Z)V net/minecraft/world/entity/ai/goal/TemptGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DLnet/minecraft/world/item/crafting/Ingredient;Z)V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_148138_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/TemptGoal/shouldFollow (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_25955_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_7497_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/canScare ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/TemptGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/TemptGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/TemptGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/TryFindWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/TryFindWaterGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/TryFindWaterGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/sounds/SoundEvent;Ljava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/UseItemGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/sounds/SoundEvent;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/UseItemGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/UseItemGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/UseItemGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/UseItemGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/WrappedGoal/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/goal/WrappedGoal/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/hashCode ()I net/minecraft/world/entity/ai/goal/WrappedGoal/hashCode ()I +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_183277_ (I)I net/minecraft/world/entity/ai/goal/WrappedGoal/adjustedTickDelay (I)I +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_26002_ (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/WrappedGoal/canBeReplacedBy (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_26012_ ()I net/minecraft/world/entity/ai/goal/WrappedGoal/getPriority ()I +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_26015_ ()Lnet/minecraft/world/entity/ai/goal/Goal; net/minecraft/world/entity/ai/goal/WrappedGoal/getGoal ()Lnet/minecraft/world/entity/ai/goal/Goal; +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_7021_ (Ljava/util/EnumSet;)V net/minecraft/world/entity/ai/goal/WrappedGoal/setFlags (Ljava/util/EnumSet;)V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_7620_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_7684_ ()Ljava/util/EnumSet; net/minecraft/world/entity/ai/goal/WrappedGoal/getFlags ()Ljava/util/EnumSet; +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/WrappedGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/WrappedGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/WrappedGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/ (Lnet/minecraft/world/entity/monster/Zombie;DZ)V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/ (Lnet/minecraft/world/entity/monster/Zombie;DZ)V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V +MD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ ()V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;[Ljava/lang/Class;)V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;[Ljava/lang/Class;)V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_26044_ ([Ljava/lang/Class;)Lnet/minecraft/world/entity/ai/goal/target/HurtByTargetGoal; net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/setAlertOthers ([Ljava/lang/Class;)Lnet/minecraft/world/entity/ai/goal/target/HurtByTargetGoal; +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_26047_ ()V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/alertOthers ()V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;Z)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;Z)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZZ)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZZ)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_148151_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/lambda$findTarget$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_26070_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_26073_ ()V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/findTarget ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_7255_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/getTargetSearchArea (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/m_26083_ (Z)V net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/setCanAttack (Z)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;ZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;ZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_26093_ ()I net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/getCooldown ()I +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_26094_ ()V net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/decrementCooldown ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;Ljava/lang/Class;ZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;Ljava/lang/Class;ZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26124_ (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/entity/NeutralMob; net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/lambda$start$1 (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/entity/NeutralMob; +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26126_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/lambda$start$0 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26129_ ()Z net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/wasHurtByPlayer ()Z +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26130_ ()Ljava/util/List; net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/getNearbyMobsOfSameType ()Ljava/util/List; +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;ZZ)V net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;ZZ)V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_26146_ (I)Lnet/minecraft/world/entity/ai/goal/target/TargetGoal; net/minecraft/world/entity/ai/goal/target/TargetGoal/setUnseenMemoryTicks (I)Lnet/minecraft/world/entity/ai/goal/target/TargetGoal; +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_26148_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/target/TargetGoal/canReach (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_26150_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z net/minecraft/world/entity/ai/goal/target/TargetGoal/canAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_7623_ ()D net/minecraft/world/entity/ai/goal/target/TargetGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/target/TargetGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/target/TargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/TargetGoal/start ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148159_ ()Ljava/util/Map; net/minecraft/world/entity/ai/gossip/GossipContainer/getGossipEntries ()Ljava/util/Map; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148160_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer/remove (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148162_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/util/function/DoublePredicate;)J net/minecraft/world/entity/ai/gossip/GossipContainer/getCountForType (Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/util/function/DoublePredicate;)J +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148165_ (Ljava/util/Map;Ljava/util/UUID;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$getGossipEntries$0 (Ljava/util/Map;Ljava/util/UUID;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148168_ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer/remove (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148171_ (Ljava/util/function/DoublePredicate;Lnet/minecraft/world/entity/ai/gossip/GossipType;Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips;)Z net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$getCountForType$4 (Ljava/util/function/DoublePredicate;Lnet/minecraft/world/entity/ai/gossip/GossipType;Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips;)Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148175_ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V net/minecraft/world/entity/ai/gossip/GossipContainer/remove (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_186094_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$add$5 (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_217759_ (Lnet/minecraft/util/RandomSource;I)Ljava/util/Collection; net/minecraft/world/entity/ai/gossip/GossipContainer/selectGossipsForTransfer (Lnet/minecraft/util/RandomSource;I)Ljava/util/Collection; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_217762_ (Lnet/minecraft/world/entity/ai/gossip/GossipContainer;Lnet/minecraft/util/RandomSource;I)V net/minecraft/world/entity/ai/gossip/GossipContainer/transferFrom (Lnet/minecraft/world/entity/ai/gossip/GossipContainer;Lnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26158_ (II)I net/minecraft/world/entity/ai/gossip/GossipContainer/mergeValuesForTransfer (II)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26161_ (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$update$9 (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26167_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I net/minecraft/world/entity/ai/gossip/GossipContainer/mergeValuesForAddition (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26177_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/world/entity/ai/gossip/GossipContainer/update (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26184_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$unpack$1 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26189_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; net/minecraft/world/entity/ai/gossip/GossipContainer/getOrCreate (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26191_ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V net/minecraft/world/entity/ai/gossip/GossipContainer/add (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26195_ (Ljava/util/UUID;Ljava/util/function/Predicate;)I net/minecraft/world/entity/ai/gossip/GossipContainer/getReputation (Ljava/util/UUID;Ljava/util/function/Predicate;)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26198_ ()V net/minecraft/world/entity/ai/gossip/GossipContainer/decay ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26199_ (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$transferFrom$3 (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26201_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$getOrCreate$2 (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26203_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer/unpack ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262779_ (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$update$8 (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262780_ (Ljava/lang/String;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$store$6 (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262781_ (Ljava/lang/String;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$update$7 (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262795_ (Lcom/mojang/serialization/DynamicOps;)Ljava/lang/Object; net/minecraft/world/entity/ai/gossip/GossipContainer/store (Lcom/mojang/serialization/DynamicOps;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26208_ ()V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/decay ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26211_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/makeSureValueIsntTooLowOrTooHigh (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26213_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)I net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/lambda$weightedValue$1 (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26215_ (Ljava/util/UUID;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/unpack (Ljava/util/UUID;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26217_ (Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry; net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/lambda$unpack$2 (Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26220_ (Ljava/util/function/Predicate;)I net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/weightedValue (Ljava/util/function/Predicate;)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26222_ (Ljava/util/function/Predicate;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Z net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/lambda$weightedValue$0 (Ljava/util/function/Predicate;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26225_ ()Z net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/isEmpty ()Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26226_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/remove (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26228_ ()Ljava/util/UUID; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/target ()Ljava/util/UUID; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26229_ ()Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/type ()Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26230_ ()I net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/value ()I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/hashCode ()I net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/hashCode ()I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/m_26235_ ()I net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/weightedValue ()I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/m_262811_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/gossip/GossipType/ ()V net/minecraft/world/entity/ai/gossip/GossipType/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipType/ (Ljava/lang/String;ILjava/lang/String;IIII)V net/minecraft/world/entity/ai/gossip/GossipType/ (Ljava/lang/String;ILjava/lang/String;IIII)V +MD: net/minecraft/world/entity/ai/gossip/GossipType/m_148185_ ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipType/$values ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/gossip/GossipType/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/ai/gossip/GossipType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/gossip/GossipType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/gossip/GossipType/values ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipType/values ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/ (Ljava/lang/Object;J)V net/minecraft/world/entity/ai/memory/ExpirableValue/ (Ljava/lang/Object;J)V +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148186_ (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/util/Optional; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$1 (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148188_ (Ljava/lang/Object;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$2 (Ljava/lang/Object;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148191_ ()J net/minecraft/world/entity/ai/memory/ExpirableValue/getTimeToLive ()J +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148192_ (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/lang/Object; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$0 (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26301_ ()V net/minecraft/world/entity/ai/memory/ExpirableValue/tick ()V +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26304_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/memory/ExpirableValue/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26306_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$3 (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26309_ (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; net/minecraft/world/entity/ai/memory/ExpirableValue/of (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26311_ (Ljava/lang/Object;J)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; net/minecraft/world/entity/ai/memory/ExpirableValue/of (Ljava/lang/Object;J)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26319_ ()Ljava/lang/Object; net/minecraft/world/entity/ai/memory/ExpirableValue/getValue ()Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26320_ ()Z net/minecraft/world/entity/ai/memory/ExpirableValue/hasExpired ()Z +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26321_ ()Z net/minecraft/world/entity/ai/memory/ExpirableValue/canExpire ()Z +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/memory/ExpirableValue/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/ ()V net/minecraft/world/entity/ai/memory/MemoryModuleType/ ()V +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/ (Ljava/util/Optional;)V net/minecraft/world/entity/ai/memory/MemoryModuleType/ (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/m_26387_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/memory/MemoryModuleType/getCodec ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/m_26388_ (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/memory/MemoryModuleType/register (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/m_26390_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/memory/MemoryModuleType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/memory/MemoryModuleType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/ ()V net/minecraft/world/entity/ai/memory/MemoryStatus/ ()V +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/memory/MemoryStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/m_148207_ ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/memory/MemoryStatus/$values ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/memory/MemoryStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/values ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/memory/MemoryStatus/values ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/List;)V net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186106_ ()Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/empty ()Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186107_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/contains (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186109_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$new$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186112_ (Lit/unimi/dsi/fastutil/objects/Object2BooleanOpenHashMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$new$2 (Lit/unimi/dsi/fastutil/objects/Object2BooleanOpenHashMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186116_ (Ljava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/findClosest (Ljava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186118_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$find$4 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186121_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186123_ (Ljava/util/function/Predicate;)Ljava/lang/Iterable; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/findAll (Ljava/util/function/Predicate;)Ljava/lang/Iterable; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186125_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$findAll$3 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186128_ (Ljava/util/function/Predicate;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/find (Ljava/util/function/Predicate;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186130_ (Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/contains (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/core/BlockPos;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/core/BlockPos;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/Entity;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/Entity;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/phys/Vec3;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/phys/Vec3;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/m_26420_ ()Lnet/minecraft/world/entity/ai/behavior/PositionTracker; net/minecraft/world/entity/ai/memory/WalkTarget/getTarget ()Lnet/minecraft/world/entity/ai/behavior/PositionTracker; +MD: net/minecraft/world/entity/ai/memory/WalkTarget/m_26421_ ()F net/minecraft/world/entity/ai/memory/WalkTarget/getSpeedModifier ()F +MD: net/minecraft/world/entity/ai/memory/WalkTarget/m_26422_ ()I net/minecraft/world/entity/ai/memory/WalkTarget/getCloseEnoughDist ()I +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_183345_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/getGroundY (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_7008_ (Z)V net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/setCanFloat (Z)V +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_148212_ ()Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canPassDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_148213_ ()Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canOpenDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_26440_ (Z)V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/setCanOpenDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_26443_ (Z)V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/setCanPassDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_7638_ ()V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/tick ()V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_148214_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setCanPassDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_148216_ ()Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/canPassDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_255224_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setCanWalkOverFences (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26477_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setCanOpenDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26490_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setAvoidSun (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26492_ ()Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/canOpenDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26493_ ()I net/minecraft/world/entity/ai/navigation/GroundPathNavigation/getSurfaceY ()I +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_6804_ ()V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/trimPath ()V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7367_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/hasValidPathType (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7864_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/createPath (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/PathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_148218_ (Lnet/minecraft/core/BlockPos;II)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Lnet/minecraft/core/BlockPos;II)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_148222_ (Ljava/util/Set;IZIF)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/Set;IZIF)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_148228_ ()F net/minecraft/world/entity/ai/navigation/PathNavigation/getMaxDistanceToWaypoint ()F +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_183345_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/ai/navigation/PathNavigation/getGroundY (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_200903_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/shouldRecomputePath (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_262402_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Z)Z net/minecraft/world/entity/ai/navigation/PathNavigation/isClearForMovementBetween (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Z)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_264193_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/canCutCorner (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26517_ (D)V net/minecraft/world/entity/ai/navigation/PathNavigation/setSpeedModifier (D)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26519_ (DDDD)Z net/minecraft/world/entity/ai/navigation/PathNavigation/moveTo (DDDD)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26524_ (DDDI)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (DDDI)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26529_ (F)V net/minecraft/world/entity/ai/navigation/PathNavigation/setMaxVisitedNodesMultiplier (F)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26536_ (Lnet/minecraft/world/level/pathfinder/Path;D)Z net/minecraft/world/entity/ai/navigation/PathNavigation/moveTo (Lnet/minecraft/world/level/pathfinder/Path;D)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26548_ (Ljava/util/Set;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/Set;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26551_ (Ljava/util/Set;IZI)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/Set;IZI)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26556_ (Ljava/util/stream/Stream;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/stream/Stream;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26559_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/shouldTargetNextNodeInDirection (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26564_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutPath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26565_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/resetStuckTimeout ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26566_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/resetMaxVisitedNodesMultiplier ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26567_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/navigation/PathNavigation/getTargetPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26569_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/recomputePath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26570_ ()Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/getPath ()Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26571_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isDone ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26572_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isInProgress ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26573_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/stop ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26574_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isInLiquid ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26575_ ()Lnet/minecraft/world/level/pathfinder/NodeEvaluator; net/minecraft/world/entity/ai/navigation/PathNavigation/getNodeEvaluator ()Lnet/minecraft/world/level/pathfinder/NodeEvaluator; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26576_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/canFloat ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26577_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isStuck ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/PathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_5624_ (Lnet/minecraft/world/entity/Entity;D)Z net/minecraft/world/entity/ai/navigation/PathNavigation/moveTo (Lnet/minecraft/world/entity/Entity;D)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6481_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/navigation/PathNavigation/doStuckDetection (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6804_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/trimPath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7008_ (Z)V net/minecraft/world/entity/ai/navigation/PathNavigation/setCanFloat (Z)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/PathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7636_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/followThePath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7638_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/tick ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7864_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/WallClimberNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_5624_ (Lnet/minecraft/world/entity/Entity;D)Z net/minecraft/world/entity/ai/navigation/WallClimberNavigation/moveTo (Lnet/minecraft/world/entity/Entity;D)Z +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/WallClimberNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_7638_ ()V net/minecraft/world/entity/ai/navigation/WallClimberNavigation/tick ()V +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_7864_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/WallClimberNavigation/createPath (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_183345_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/getGroundY (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_7008_ (Z)V net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/setCanFloat (Z)V +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/ ()V net/minecraft/world/entity/ai/sensing/AdultSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_186140_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V net/minecraft/world/entity/ai/sensing/AdultSensor/setNearestVisibleAdult (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_186143_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V net/minecraft/world/entity/ai/sensing/AdultSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_289118_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AdultSensor/lambda$setNearestVisibleAdult$1 (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/AdultSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)V net/minecraft/world/entity/ai/sensing/AdultSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/AdultSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/ ()V net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_148269_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isHostileTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_148271_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isHuntTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_148274_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isClose (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/DummySensor/ ()V net/minecraft/world/entity/ai/sensing/DummySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/DummySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/DummySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/DummySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/DummySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/ ()V net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/m_238335_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/isUnreachableAttackTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/ (I)V net/minecraft/world/entity/ai/sensing/GolemSensor/ (I)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/ ()V net/minecraft/world/entity/ai/sensing/GolemSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_26647_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/GolemSensor/checkForNearbyGolem (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_26649_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/GolemSensor/golemDetected (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_289119_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/GolemSensor/lambda$checkForNearbyGolem$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/GolemSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/GolemSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/ ()V net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_186146_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/lambda$findNearestRepellent$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_186149_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_26664_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/findNearestRepellent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/ ()V net/minecraft/world/entity/ai/sensing/HurtBySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/m_289120_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/HurtBySensor/lambda$doTick$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/HurtBySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/HurtBySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/IsInWaterSensor/ ()V net/minecraft/world/entity/ai/sensing/IsInWaterSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/IsInWaterSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/IsInWaterSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/IsInWaterSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/IsInWaterSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/ ()V net/minecraft/world/entity/ai/sensing/NearestBedSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_217818_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/sensing/NearestBedSensor/lambda$doTick$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_217820_ (Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z net/minecraft/world/entity/ai/sensing/NearestBedSensor/lambda$doTick$2 (Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_26687_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/NearestBedSensor/lambda$doTick$0 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestBedSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/sensing/NearestBedSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestBedSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/ ()V net/minecraft/world/entity/ai/sensing/NearestItemSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_26699_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/ai/sensing/NearestItemSensor/lambda$doTick$2 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_26702_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/ai/sensing/NearestItemSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_26704_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/ai/sensing/NearestItemSensor/lambda$doTick$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestItemSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/sensing/NearestItemSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestItemSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/ ()V net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_214019_ ()I net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/radiusY ()I +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_214020_ ()I net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/radiusXZ ()I +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_26715_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/ ()V net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_148290_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/getVisibleEntities (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_148297_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/getNearestEntity (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_148299_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/lambda$getNearestEntity$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_186151_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/lambda$getNearestEntity$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/ ()V net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/m_186154_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/ ()V net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_186156_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_186158_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/lambda$findNearestRepellent$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_26728_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/isValidRepellent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_26734_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/findNearestRepellent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/ ()V net/minecraft/world/entity/ai/sensing/PlayerSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_148302_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/sensing/PlayerSensor/lambda$doTick$2 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_26742_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/PlayerSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_26745_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/sensing/PlayerSensor/lambda$doTick$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/PlayerSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/PlayerSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/ ()V net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/Sensing/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/sensing/Sensing/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/sensing/Sensing/m_148306_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/ai/sensing/Sensing/hasLineOfSight (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensing/m_26789_ ()V net/minecraft/world/entity/ai/sensing/Sensing/tick ()V +MD: net/minecraft/world/entity/ai/sensing/Sensor/ ()V net/minecraft/world/entity/ai/sensing/Sensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/Sensor/ (I)V net/minecraft/world/entity/ai/sensing/Sensor/ (I)V +MD: net/minecraft/world/entity/ai/sensing/Sensor/ ()V net/minecraft/world/entity/ai/sensing/Sensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_148312_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/Sensor/isEntityAttackable (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_182377_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/Sensor/isEntityAttackableIgnoringLineOfSight (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_26803_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/Sensor/isEntityTargetable (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_26806_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/Sensor/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/Sensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/Sensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/SensorType/ ()V net/minecraft/world/entity/ai/sensing/SensorType/ ()V +MD: net/minecraft/world/entity/ai/sensing/SensorType/ (Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/sensing/SensorType/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_148318_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$1 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_148319_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$0 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_217826_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$2 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_244936_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$3 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_26827_ ()Lnet/minecraft/world/entity/ai/sensing/Sensor; net/minecraft/world/entity/ai/sensing/SensorType/create ()Lnet/minecraft/world/entity/ai/sensing/Sensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_26828_ (Ljava/lang/String;Ljava/util/function/Supplier;)Lnet/minecraft/world/entity/ai/sensing/SensorType; net/minecraft/world/entity/ai/sensing/SensorType/register (Ljava/lang/String;Ljava/util/function/Supplier;)Lnet/minecraft/world/entity/ai/sensing/SensorType; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_278567_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$4 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/ ()V net/minecraft/world/entity/ai/sensing/TemptingSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/ (Lnet/minecraft/world/item/crafting/Ingredient;)V net/minecraft/world/entity/ai/sensing/TemptingSensor/ (Lnet/minecraft/world/item/crafting/Ingredient;)V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148333_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/lambda$doTick$1 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148336_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/playerHoldingTemptation (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148338_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/isTemptation (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148340_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_263996_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/lambda$doTick$2 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/sensing/TemptingSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/TemptingSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/TemptingSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/ ()V net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_186203_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/getVisibleEntities (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_26836_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/List; net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/getNearestVillagerBabies (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_26838_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/isVillagerBaby (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_26860_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/isClose (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_26867_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/isHostile (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/ ()V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_214019_ ()I net/minecraft/world/entity/ai/sensing/WardenEntitySensor/radiusY ()I +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_214020_ ()I net/minecraft/world/entity/ai/sensing/WardenEntitySensor/radiusXZ ()I +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217837_ (Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$4 (Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217839_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$3 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217842_ (Lnet/minecraft/world/entity/monster/warden/Warden;Ljava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/WardenEntitySensor/getClosest (Lnet/minecraft/world/entity/monster/warden/Warden;Ljava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217848_ (Lnet/minecraft/world/entity/monster/warden/Warden;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$2 (Lnet/minecraft/world/entity/monster/warden/Warden;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_289121_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_289122_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/WardenEntitySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/ ()V net/minecraft/world/entity/ai/targeting/TargetingConditions/ ()V +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/ (Z)V net/minecraft/world/entity/ai/targeting/TargetingConditions/ (Z)V +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148352_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/forCombat ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148353_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/forNonCombat ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148354_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/copy ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148355_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/ignoreLineOfSight ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26883_ (D)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/range (D)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26885_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/targeting/TargetingConditions/test (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26888_ (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/selector (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26893_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/ignoreInvisibilityTesting ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/ ()V net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148357_ (Lnet/minecraft/world/entity/PathfinderMob;IIIDDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;IIIDDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148365_ (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/generateRandomPos (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148374_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/lambda$generateRandomPos$1 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148377_ (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/AirRandomPos/ ()V net/minecraft/world/entity/ai/util/AirRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/AirRandomPos/m_148387_ (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/AirRandomPos/getPosTowards (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/AirRandomPos/m_148394_ (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/AirRandomPos/lambda$getPosTowards$0 (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/ ()V net/minecraft/world/entity/ai/util/DefaultRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148403_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/DefaultRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148407_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/DefaultRandomPos/getPosAway (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148412_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/DefaultRandomPos/getPosTowards (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148436_ (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/generateRandomPosTowardDirection (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_289123_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/lambda$getPosAway$2 (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_289124_ (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_289125_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/lambda$getPosTowards$1 (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/GoalUtils/ ()V net/minecraft/world/entity/ai/util/GoalUtils/ ()V +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148442_ (Lnet/minecraft/world/entity/PathfinderMob;I)Z net/minecraft/world/entity/ai/util/GoalUtils/mobRestricted (Lnet/minecraft/world/entity/PathfinderMob;I)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148445_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isWater (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148448_ (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isNotStable (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148451_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/util/GoalUtils/isOutsideLimits (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148454_ (ZLnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isRestricted (ZLnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148458_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/hasMalus (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148461_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isSolid (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_26894_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/util/GoalUtils/hasGroundPathNavigation (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/ ()V net/minecraft/world/entity/ai/util/HoverRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/m_148465_ (Lnet/minecraft/world/entity/PathfinderMob;IIDDFII)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/HoverRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;IIDDFII)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/m_148474_ (Lnet/minecraft/world/entity/PathfinderMob;IIDDFZII)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/HoverRandomPos/lambda$getPos$1 (Lnet/minecraft/world/entity/PathfinderMob;IIDDFZII)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/m_148484_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/HoverRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/LandRandomPos/ ()V net/minecraft/world/entity/ai/util/LandRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148488_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148492_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPosTowards (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148497_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPosInDirection (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148503_ (Lnet/minecraft/world/entity/PathfinderMob;IILjava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;IILjava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148513_ (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/generateRandomPosTowardDirection (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148518_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/movePosUpOutOfSolid (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148521_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPosAway (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148532_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/LandRandomPos/lambda$movePosUpOutOfSolid$2 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_289126_ (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_289127_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/lambda$getPosInDirection$1 (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/ ()V net/minecraft/world/entity/ai/util/RandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/RandomPos/m_148542_ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/util/function/Supplier;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/RandomPos/generateRandomPos (Lnet/minecraft/world/entity/PathfinderMob;Ljava/util/function/Supplier;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_148545_ (Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/moveUpOutOfSolid (Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_148561_ (Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/RandomPos/generateRandomPos (Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_217851_ (Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/generateRandomDirection (Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_217855_ (Lnet/minecraft/util/RandomSource;IIIDDD)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/generateRandomDirectionWithinRadians (Lnet/minecraft/util/RandomSource;IIIDDD)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_217863_ (Lnet/minecraft/world/entity/PathfinderMob;ILnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/generateRandomPosTowardDirection (Lnet/minecraft/world/entity/PathfinderMob;ILnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_26947_ (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/moveUpToAboveSolid (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/ReputationEventType/ ()V net/minecraft/world/entity/ai/village/ReputationEventType/ ()V +MD: net/minecraft/world/entity/ai/village/ReputationEventType/m_26991_ (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/ReputationEventType; net/minecraft/world/entity/ai/village/ReputationEventType/register (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/ReputationEventType; +MD: net/minecraft/world/entity/ai/village/ReputationEventType$1/ (Ljava/lang/String;)V net/minecraft/world/entity/ai/village/ReputationEventType$1/ (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/village/ReputationEventType$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/village/ReputationEventType$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/village/VillageSiege/ ()V net/minecraft/world/entity/ai/village/VillageSiege/ ()V +MD: net/minecraft/world/entity/ai/village/VillageSiege/ ()V net/minecraft/world/entity/ai/village/VillageSiege/ ()V +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_27007_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/ai/village/VillageSiege/tryToSetupSiege (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_27009_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/village/VillageSiege/findRandomSpawnPos (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_27016_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/ai/village/VillageSiege/trySpawn (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/entity/ai/village/VillageSiege/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/ ()V net/minecraft/world/entity/ai/village/VillageSiege$State/ ()V +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/village/VillageSiege$State/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/m_148564_ ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; net/minecraft/world/entity/ai/village/VillageSiege$State/$values ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/VillageSiege$State; net/minecraft/world/entity/ai/village/VillageSiege$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/values ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; net/minecraft/world/entity/ai/village/VillageSiege$State/values ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/entity/ai/village/poi/PoiManager/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_148653_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/ai/village/poi/PoiManager/getFreeTickets (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_148655_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$remove$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_148658_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/findClosest (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217874_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/existsAtPosition (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217877_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$existsAtPosition$1 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217880_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$take$15 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217882_ (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$isVillageCenter$23 (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217884_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Integer;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInChunk$5 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Integer;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217887_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$33 (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217890_ (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$31 (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217892_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$checkConsistencyWithBlocks$26 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217895_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$checkConsistencyWithBlocks$25 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217899_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$updateFromSection$28 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217903_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInRange$4 (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217907_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosestWithType$11 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217910_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Integer; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getFreeTickets$21 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217913_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findAllClosestFirstWithType$9 (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217916_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosest$13 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217919_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiManager/add (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217922_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$exists$19 (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217926_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$isVillageCenter$22 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217928_ (Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$updateFromSection$27 (Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217932_ (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$take$14 (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217935_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInSquare$2 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217939_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Ljava/util/Optional;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInChunk$6 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Ljava/util/Optional;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217943_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getRandom$16 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217946_ (Ljava/util/function/Predicate;Ljava/util/function/BiPredicate;Lnet/minecraft/core/BlockPos;I)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/take (Ljava/util/function/Predicate;Ljava/util/function/BiPredicate;Lnet/minecraft/core/BlockPos;I)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217951_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/getRandom (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217958_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosestWithType$12 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217960_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$32 (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217962_ (Lcom/mojang/datafixers/util/Pair;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$30 (Lcom/mojang/datafixers/util/Pair;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217964_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$checkConsistencyWithBlocks$24 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217968_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInSquare$3 (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217972_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getType$20 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217975_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosest$10 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217978_ (Lnet/minecraft/core/SectionPos;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$29 (Lnet/minecraft/core/SectionPos;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217980_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findAllWithType$7 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217983_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/findAllWithType (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217989_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findAllWithType$8 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217991_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$release$17 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217994_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/findAllClosestFirstWithType (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_218000_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/IllegalStateException; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$release$18 (Lnet/minecraft/core/BlockPos;)Ljava/lang/IllegalStateException; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_218002_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/findClosestWithType (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27056_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/ai/village/poi/PoiManager/ensureLoadedAndValid (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27060_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/mayHavePoi (Lnet/minecraft/world/level/chunk/LevelChunkSection;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27069_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/ai/village/poi/PoiManager/updateFromSection (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27079_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/remove (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27091_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/exists (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27098_ (Lnet/minecraft/core/SectionPos;)I net/minecraft/world/entity/ai/village/poi/PoiManager/sectionsToVillage (Lnet/minecraft/core/SectionPos;)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27117_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/getInChunk (Ljava/util/function/Predicate;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27121_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)J net/minecraft/world/entity/ai/village/poi/PoiManager/getCountInRange (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)J +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27138_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/findAll (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27154_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/release (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27166_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/getInSquare (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27177_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/getType (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27181_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/getInRange (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27186_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/find (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27192_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/findClosest (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27197_ (J)Z net/minecraft/world/entity/ai/village/poi/PoiManager/isVillageCenter (J)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_280570_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/world/entity/ai/village/poi/PoiManager/checkConsistencyWithBlocks (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_5838_ (J)V net/minecraft/world/entity/ai/village/poi/PoiManager/setDirty (J)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_5839_ (J)V net/minecraft/world/entity/ai/village/poi/PoiManager/onSectionLoad (J)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_6202_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/world/entity/ai/village/poi/PoiManager/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;)V net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_27203_ ()V net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/runAllUpdates ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_6172_ (J)I net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/getLevel (J)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_7351_ (JI)V net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/setLevel (JI)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_7409_ (J)I net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/getLevelFromSource (J)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ ()V net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ (Ljava/lang/String;ILjava/util/function/Predicate;)V net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ (Ljava/lang/String;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/m_148666_ ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/$values ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/m_27221_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/getTest ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/m_27222_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/lambda$static$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/values ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/values ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;ILjava/lang/Runnable;)V net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;ILjava/lang/Runnable;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Ljava/lang/Runnable;)V net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Ljava/lang/Runnable;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/village/poi/PoiRecord/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/hashCode ()I net/minecraft/world/entity/ai/village/poi/PoiRecord/hashCode ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_148667_ ()I net/minecraft/world/entity/ai/village/poi/PoiRecord/getFreeTickets ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_148668_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Ljava/lang/Integer; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$2 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_148672_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_218016_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/Holder; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$1 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_218018_ ()Lnet/minecraft/core/Holder; net/minecraft/world/entity/ai/village/poi/PoiRecord/getPoiType ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_257311_ (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$3 (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27242_ (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/village/poi/PoiRecord/codec (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27247_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/acquireTicket ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27250_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/releaseTicket ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27253_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/hasSpace ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27254_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/isOccupied ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27257_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/village/poi/PoiRecord/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/ ()V net/minecraft/world/entity/ai/village/poi/PoiSection/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;ZLjava/util/List;)V net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;ZLjava/util/List;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;)V net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148674_ (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/List; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$1 (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148680_ (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148682_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/ai/village/poi/PoiSection/getFreeTickets (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148684_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiSection/getPoiRecord (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218019_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$add$6 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218021_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiSection/add (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218024_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;S)Lnet/minecraft/world/entity/ai/village/poi/PoiRecord; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$refresh$8 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;S)Lnet/minecraft/world/entity/ai/village/poi/PoiRecord; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218028_ (Lnet/minecraft/core/Holder;)Ljava/util/Set; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$add$7 (Lnet/minecraft/core/Holder;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218030_ (Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$refresh$9 (Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27272_ ()Z net/minecraft/world/entity/ai/village/poi/PoiSection/isValid ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27273_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/add (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27279_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/village/poi/PoiSection/remove (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27288_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/exists (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27295_ (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/village/poi/PoiSection/codec (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27297_ (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$2 (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27300_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$getRecords$5 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27302_ (Ljava/util/function/Consumer;)V net/minecraft/world/entity/ai/village/poi/PoiSection/refresh (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27304_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiSection/getRecords (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27307_ (Ljava/util/function/Predicate;Ljava/util/Map$Entry;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$getRecords$4 (Ljava/util/function/Predicate;Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27310_ ()V net/minecraft/world/entity/ai/village/poi/PoiSection/clear ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27315_ (Ljava/lang/Runnable;)Lnet/minecraft/world/entity/ai/village/poi/PoiSection; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$3 (Ljava/lang/Runnable;)Lnet/minecraft/world/entity/ai/village/poi/PoiSection; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27317_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/release (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27319_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiSection/getType (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiType/ ()V net/minecraft/world/entity/ai/village/poi/PoiType/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiType/ (Ljava/util/Set;II)V net/minecraft/world/entity/ai/village/poi/PoiType/ (Ljava/util/Set;II)V +MD: net/minecraft/world/entity/ai/village/poi/PoiType/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/village/poi/PoiType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27325_ ()Ljava/util/Set; net/minecraft/world/entity/ai/village/poi/PoiType/matchingStates ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27326_ ()I net/minecraft/world/entity/ai/village/poi/PoiType/maxTickets ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27328_ ()I net/minecraft/world/entity/ai/village/poi/PoiType/validRange ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiType/hashCode ()I net/minecraft/world/entity/ai/village/poi/PoiType/hashCode ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiType/m_148692_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/ai/village/poi/PoiType/is (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiType/m_218040_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/village/poi/PoiType/lambda$static$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiType/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/village/poi/PoiType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218073_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; net/minecraft/world/entity/ai/village/poi/PoiTypes/getBlockStates (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218075_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiTypes/forState (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218082_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/village/poi/PoiType; net/minecraft/world/entity/ai/village/poi/PoiTypes/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/village/poi/PoiType; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218084_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;II)Lnet/minecraft/world/entity/ai/village/poi/PoiType; net/minecraft/world/entity/ai/village/poi/PoiTypes/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;II)Lnet/minecraft/world/entity/ai/village/poi/PoiType; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218090_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/ai/village/poi/PoiTypes/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218092_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$static$2 (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218094_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$static$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218096_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$static$0 (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_241760_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$registerBlockStates$3 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_246216_ (Lnet/minecraft/core/Holder;Ljava/util/Set;)V net/minecraft/world/entity/ai/village/poi/PoiTypes/registerBlockStates (Lnet/minecraft/core/Holder;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_252831_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/ai/village/poi/PoiTypes/hasPoi (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/ambient/AmbientCreature/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ambient/AmbientCreature/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ambient/AmbientCreature/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ambient/AmbientCreature/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ambient/Bat/ ()V net/minecraft/world/entity/ambient/Bat/ ()V +MD: net/minecraft/world/entity/ambient/Bat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ambient/Bat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ambient/Bat/m_142039_ ()Z net/minecraft/world/entity/ambient/Bat/isFlapping ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/ambient/Bat/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/ambient/Bat/m_218098_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/ambient/Bat/checkBatSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/ambient/Bat/m_27452_ ()Z net/minecraft/world/entity/ambient/Bat/isResting ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_27453_ ()Z net/minecraft/world/entity/ambient/Bat/isHalloween ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_27455_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ambient/Bat/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ambient/Bat/m_27456_ (Z)V net/minecraft/world/entity/ambient/Bat/setResting (Z)V +MD: net/minecraft/world/entity/ambient/Bat/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/ambient/Bat/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/ambient/Bat/m_6090_ ()Z net/minecraft/world/entity/ambient/Bat/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_6094_ ()Z net/minecraft/world/entity/ambient/Bat/isPushable ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_6100_ ()F net/minecraft/world/entity/ambient/Bat/getVoicePitch ()F +MD: net/minecraft/world/entity/ambient/Bat/m_6121_ ()F net/minecraft/world/entity/ambient/Bat/getSoundVolume ()F +MD: net/minecraft/world/entity/ambient/Bat/m_6138_ ()V net/minecraft/world/entity/ambient/Bat/pushEntities ()V +MD: net/minecraft/world/entity/ambient/Bat/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/ambient/Bat/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/ambient/Bat/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/ambient/Bat/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/ambient/Bat/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/ambient/Bat/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ambient/Bat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ambient/Bat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/ambient/Bat/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/ambient/Bat/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ambient/Bat/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/ambient/Bat/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/ambient/Bat/m_8024_ ()V net/minecraft/world/entity/ambient/Bat/customServerAiStep ()V +MD: net/minecraft/world/entity/ambient/Bat/m_8097_ ()V net/minecraft/world/entity/ambient/Bat/defineSynchedData ()V +MD: net/minecraft/world/entity/ambient/Bat/m_8119_ ()V net/minecraft/world/entity/ambient/Bat/tick ()V +MD: net/minecraft/world/entity/animal/AbstractFish/ ()V net/minecraft/world/entity/animal/AbstractFish/ ()V +MD: net/minecraft/world/entity/animal/AbstractFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/AbstractFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/AbstractFish/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractFish/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractFish/m_27487_ ()Z net/minecraft/world/entity/animal/AbstractFish/fromBucket ()Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_27495_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/AbstractFish/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/AbstractFish/m_27497_ (Z)V net/minecraft/world/entity/animal/AbstractFish/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractFish/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractFish/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractFish/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractFish/m_5792_ ()I net/minecraft/world/entity/animal/AbstractFish/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/AbstractFish/m_6004_ ()Z net/minecraft/world/entity/animal/AbstractFish/canRandomSwim ()Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/AbstractFish/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/AbstractFish/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/AbstractFish/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/AbstractFish/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/AbstractFish/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/AbstractFish/m_6785_ (D)Z net/minecraft/world/entity/animal/AbstractFish/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/AbstractFish/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/AbstractFish/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/AbstractFish/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/AbstractFish/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/AbstractFish/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_8023_ ()Z net/minecraft/world/entity/animal/AbstractFish/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_8097_ ()V net/minecraft/world/entity/animal/AbstractFish/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/AbstractFish/m_8099_ ()V net/minecraft/world/entity/animal/AbstractFish/registerGoals ()V +MD: net/minecraft/world/entity/animal/AbstractFish/m_8107_ ()V net/minecraft/world/entity/animal/AbstractFish/aiStep ()V +MD: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V +MD: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V +MD: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/m_8036_ ()Z net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/AbstractGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/AbstractGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/AbstractGolem/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractGolem/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractGolem/m_6785_ (D)Z net/minecraft/world/entity/animal/AbstractGolem/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/AbstractGolem/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractGolem/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractGolem/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractGolem/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractGolem/m_8100_ ()I net/minecraft/world/entity/animal/AbstractGolem/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/AbstractSchoolingFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27525_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Lnet/minecraft/world/entity/animal/AbstractSchoolingFish; net/minecraft/world/entity/animal/AbstractSchoolingFish/startFollowing (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Lnet/minecraft/world/entity/animal/AbstractSchoolingFish; +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27533_ (Ljava/util/stream/Stream;)V net/minecraft/world/entity/animal/AbstractSchoolingFish/addFollowers (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27535_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V net/minecraft/world/entity/animal/AbstractSchoolingFish/lambda$addFollowers$1 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27537_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z net/minecraft/world/entity/animal/AbstractSchoolingFish/lambda$addFollowers$0 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27540_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/isFollower ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27541_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/stopFollowing ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27542_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/canBeFollowed ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27543_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/hasFollowers ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27544_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/inRangeOfLeader ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27545_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/pathToLeader ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27546_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/addFollower ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27547_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/removeFollower ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_5792_ ()I net/minecraft/world/entity/animal/AbstractSchoolingFish/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_6004_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/canRandomSwim ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_6031_ ()I net/minecraft/world/entity/animal/AbstractSchoolingFish/getMaxSchoolSize ()I +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/AbstractSchoolingFish/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_8099_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/registerGoals ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_8119_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/tick ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V +MD: net/minecraft/world/entity/animal/Animal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Animal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Animal/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Animal/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Animal/m_186209_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Animal/isBrightEnoughToSpawn (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Animal/m_213860_ ()I net/minecraft/world/entity/animal/Animal/getExperienceReward ()I +MD: net/minecraft/world/entity/animal/Animal/m_218104_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Animal/checkAnimalSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Animal/m_27563_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/world/entity/animal/Animal/spawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/world/entity/animal/Animal/m_27591_ ()I net/minecraft/world/entity/animal/Animal/getInLoveTime ()I +MD: net/minecraft/world/entity/animal/Animal/m_27592_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/world/entity/animal/Animal/getLoveCause ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/world/entity/animal/Animal/m_27593_ ()Z net/minecraft/world/entity/animal/Animal/isInLove ()Z +MD: net/minecraft/world/entity/animal/Animal/m_27594_ ()V net/minecraft/world/entity/animal/Animal/resetLove ()V +MD: net/minecraft/world/entity/animal/Animal/m_27595_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/Animal/setInLove (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/Animal/m_27601_ (I)V net/minecraft/world/entity/animal/Animal/setInLoveTime (I)V +MD: net/minecraft/world/entity/animal/Animal/m_276832_ (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/animal/Animal/lambda$finalizeSpawnChildFromBreeding$1 (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/animal/Animal/m_276984_ (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; net/minecraft/world/entity/animal/Animal/lambda$finalizeSpawnChildFromBreeding$0 (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Animal/m_277117_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V net/minecraft/world/entity/animal/Animal/finalizeSpawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V +MD: net/minecraft/world/entity/animal/Animal/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/Animal/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/Animal/m_5957_ ()Z net/minecraft/world/entity/animal/Animal/canFallInLove ()Z +MD: net/minecraft/world/entity/animal/Animal/m_6049_ ()D net/minecraft/world/entity/animal/Animal/getMyRidingOffset ()D +MD: net/minecraft/world/entity/animal/Animal/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Animal/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Animal/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Animal/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Animal/m_6785_ (D)Z net/minecraft/world/entity/animal/Animal/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Animal/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Animal/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Animal/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Animal/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Animal/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Animal/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Animal/m_7822_ (B)V net/minecraft/world/entity/animal/Animal/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Animal/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Animal/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Animal/m_8024_ ()V net/minecraft/world/entity/animal/Animal/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Animal/m_8100_ ()I net/minecraft/world/entity/animal/Animal/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Animal/m_8107_ ()V net/minecraft/world/entity/animal/Animal/aiStep ()V +MD: net/minecraft/world/entity/animal/Bee/ ()V net/minecraft/world/entity/animal/Bee/ ()V +MD: net/minecraft/world/entity/animal/Bee/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Bee/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Bee/m_142039_ ()Z net/minecraft/world/entity/animal/Bee/isFlapping ()Z +MD: net/minecraft/world/entity/animal/Bee/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Bee; net/minecraft/world/entity/animal/Bee/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Bee; +MD: net/minecraft/world/entity/animal/Bee/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Bee/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Bee/m_148756_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$000 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148764_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$200 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148766_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$300 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148768_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$400 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148770_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$500 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148772_ ()Lnet/minecraft/world/entity/ai/goal/GoalSelector; net/minecraft/world/entity/animal/Bee/getGoalSelector ()Lnet/minecraft/world/entity/ai/goal/GoalSelector; +MD: net/minecraft/world/entity/animal/Bee/m_148774_ ()I net/minecraft/world/entity/animal/Bee/getTravellingTicks ()I +MD: net/minecraft/world/entity/animal/Bee/m_148775_ ()Ljava/util/List; net/minecraft/world/entity/animal/Bee/getBlacklistedHives ()Ljava/util/List; +MD: net/minecraft/world/entity/animal/Bee/m_148776_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$600 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148778_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$700 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148780_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$800 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148782_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1000 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148784_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1400 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148786_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1500 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148788_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1600 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148790_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1700 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148792_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1800 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/animal/Bee/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/animal/Bee/m_218111_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2600 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218113_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2700 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218115_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2800 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218117_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$100 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218119_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$1900 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218121_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2000 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218123_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2200 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218125_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2400 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218127_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2500 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_27779_ (Lnet/minecraft/world/level/Level;DDDDDLnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/animal/Bee/spawnFluidParticle (Lnet/minecraft/world/level/Level;DDDDDLnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/animal/Bee/m_27806_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$900 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27816_ (Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/entity/animal/Bee/closerThan (Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/entity/animal/Bee/m_27832_ (IZ)V net/minecraft/world/entity/animal/Bee/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/Bee/m_27835_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1100 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27846_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1200 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27851_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Bee/getSavedFlowerPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Bee/m_27852_ ()Z net/minecraft/world/entity/animal/Bee/hasSavedFlowerPos ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27853_ ()V net/minecraft/world/entity/animal/Bee/resetTicksWithoutNectarSinceExitingHive ()V +MD: net/minecraft/world/entity/animal/Bee/m_27854_ ()Z net/minecraft/world/entity/animal/Bee/hasHive ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27855_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Bee/getHivePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Bee/m_27856_ ()Z net/minecraft/world/entity/animal/Bee/hasNectar ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27857_ ()Z net/minecraft/world/entity/animal/Bee/hasStung ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27858_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Bee/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Bee/m_27859_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1300 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27864_ ()V net/minecraft/world/entity/animal/Bee/dropOffNectar ()V +MD: net/minecraft/world/entity/animal/Bee/m_27865_ ()Z net/minecraft/world/entity/animal/Bee/isTiredOfLookingForNectar ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27866_ ()Z net/minecraft/world/entity/animal/Bee/wantsToEnterHive ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27867_ ()V net/minecraft/world/entity/animal/Bee/updateRollAmount ()V +MD: net/minecraft/world/entity/animal/Bee/m_27868_ ()Z net/minecraft/world/entity/animal/Bee/isHiveNearFire ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27869_ ()I net/minecraft/world/entity/animal/Bee/getCropsGrownSincePollination ()I +MD: net/minecraft/world/entity/animal/Bee/m_27870_ ()V net/minecraft/world/entity/animal/Bee/resetNumCropsGrownSincePollination ()V +MD: net/minecraft/world/entity/animal/Bee/m_27871_ ()V net/minecraft/world/entity/animal/Bee/incrementNumCropsGrownSincePollination ()V +MD: net/minecraft/world/entity/animal/Bee/m_27872_ ()Z net/minecraft/world/entity/animal/Bee/isHiveValid ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27873_ ()Z net/minecraft/world/entity/animal/Bee/isRolling ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27876_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee/setSavedFlowerPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee/m_27880_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee/pathfindRandomlyTowards (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee/m_27884_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee/doesHiveHaveSpace (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee/m_27889_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee/isTooFarAway (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee/m_27896_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee/isFlowerValid (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee/m_27898_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$2100 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27902_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$2300 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27915_ (I)V net/minecraft/world/entity/animal/Bee/setStayOutOfHiveCountdown (I)V +MD: net/minecraft/world/entity/animal/Bee/m_27919_ (Z)V net/minecraft/world/entity/animal/Bee/setHasNectar (Z)V +MD: net/minecraft/world/entity/animal/Bee/m_27921_ (I)Z net/minecraft/world/entity/animal/Bee/getFlag (I)Z +MD: net/minecraft/world/entity/animal/Bee/m_27925_ (Z)V net/minecraft/world/entity/animal/Bee/setHasStung (Z)V +MD: net/minecraft/world/entity/animal/Bee/m_27929_ (Z)V net/minecraft/world/entity/animal/Bee/setRolling (Z)V +MD: net/minecraft/world/entity/animal/Bee/m_27935_ (F)F net/minecraft/world/entity/animal/Bee/getRollAmount (F)F +MD: net/minecraft/world/entity/animal/Bee/m_29443_ ()Z net/minecraft/world/entity/animal/Bee/isFlying ()Z +MD: net/minecraft/world/entity/animal/Bee/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bee/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bee/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/Bee/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/Bee/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/Bee/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/Bee/m_6121_ ()F net/minecraft/world/entity/animal/Bee/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Bee/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/Bee/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/Bee/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Bee/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Bee/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Bee/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Bee/m_6784_ ()I net/minecraft/world/entity/animal/Bee/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/Bee/m_6825_ ()V net/minecraft/world/entity/animal/Bee/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/Bee/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Bee/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Bee/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/Bee/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/Bee/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Bee/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Bee/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Bee/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Bee/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bee/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bee/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bee/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bee/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bee/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bee/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee/m_7870_ (I)V net/minecraft/world/entity/animal/Bee/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/Bee/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Bee/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Bee/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bee/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bee/m_8024_ ()V net/minecraft/world/entity/animal/Bee/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Bee/m_8025_ ()V net/minecraft/world/entity/animal/Bee/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/Bee/m_8097_ ()V net/minecraft/world/entity/animal/Bee/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Bee/m_8099_ ()V net/minecraft/world/entity/animal/Bee/registerGoals ()V +MD: net/minecraft/world/entity/animal/Bee/m_8107_ ()V net/minecraft/world/entity/animal/Bee/aiStep ()V +MD: net/minecraft/world/entity/animal/Bee/m_8119_ ()V net/minecraft/world/entity/animal/Bee/tick ()V +MD: net/minecraft/world/entity/animal/Bee$1/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Bee$1/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Bee$1/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$1/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$1/m_7638_ ()V net/minecraft/world/entity/animal/Bee$1/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BaseBeeGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/animal/Bee$BeeAttackGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/m_27969_ ()Z net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/beeCanTarget ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_27990_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/pathfindDirectlyTowards (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_27993_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/isTargetBlacklisted (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_27998_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/blacklistTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28001_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/hasReachedTarget (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28006_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/clearBlacklist ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28007_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/dropAndBlacklistHive ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28008_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/dropHive ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8041_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/stop ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_28020_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/wantsToGoToKnownFlower ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8041_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/stop ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_148809_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/lambda$findNearbyHivesWithSpace$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_218129_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/lambda$findNearbyHivesWithSpace$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_28055_ ()Ljava/util/List; net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/findNearbyHivesWithSpace ()Ljava/util/List; +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeLookControl/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/Bee$BeeLookControl/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/Bee$BeeLookControl/m_8106_ ()Z net/minecraft/world/entity/animal/Bee$BeeLookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLookControl/m_8128_ ()V net/minecraft/world/entity/animal/Bee$BeeLookControl/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_183429_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28073_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/lambda$new$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28075_ (Ljava/util/function/Predicate;D)Ljava/util/Optional; net/minecraft/world/entity/animal/Bee$BeePollinateGoal/findNearestBlock (Ljava/util/function/Predicate;D)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28085_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/hasPollinatedLongEnough ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28086_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/isPollinating ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28087_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/stopPollinating ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28088_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/setWantedPos ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28089_ ()F net/minecraft/world/entity/animal/Bee$BeePollinateGoal/getOffset ()F +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28090_ ()Ljava/util/Optional; net/minecraft/world/entity/animal/Bee$BeePollinateGoal/findNearbyFlower ()Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8041_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/stop ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeWanderGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_28097_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Bee$BeeWanderGoal/findPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeWanderGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeWanderGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeWanderGoal/start ()V +MD: net/minecraft/world/entity/animal/Bucketable/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bucketable/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bucketable/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bucketable/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bucketable/m_148822_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Bucketable/saveDefaultDataToBucketTag (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Bucketable/m_148825_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bucketable/loadDefaultDataFromBucketTag (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bucketable/m_148828_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/Bucketable/bucketMobPickup (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Bucketable/m_27487_ ()Z net/minecraft/world/entity/animal/Bucketable/fromBucket ()Z +MD: net/minecraft/world/entity/animal/Bucketable/m_27497_ (Z)V net/minecraft/world/entity/animal/Bucketable/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/Bucketable/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Bucketable/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Bucketable/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Bucketable/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Cat/ ()V net/minecraft/world/entity/animal/Cat/ ()V +MD: net/minecraft/world/entity/animal/Cat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Cat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Cat/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Cat/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Cat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Cat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Cat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cat; net/minecraft/world/entity/animal/Cat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cat; +MD: net/minecraft/world/entity/animal/Cat/m_20161_ ()Z net/minecraft/world/entity/animal/Cat/isSteppingCarefully ()Z +MD: net/minecraft/world/entity/animal/Cat/m_262358_ (Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/animal/Cat/lambda$finalizeSpawn$1 (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/animal/Cat/m_28116_ (F)F net/minecraft/world/entity/animal/Cat/getRelaxStateOneAmount (F)F +MD: net/minecraft/world/entity/animal/Cat/m_28131_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/Cat/setCollarColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/Cat/m_28162_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/Cat/getResourceLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/Cat/m_28164_ ()Z net/minecraft/world/entity/animal/Cat/isLying ()Z +MD: net/minecraft/world/entity/animal/Cat/m_28165_ ()Z net/minecraft/world/entity/animal/Cat/isRelaxStateOne ()Z +MD: net/minecraft/world/entity/animal/Cat/m_28166_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Cat/getCollarColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Cat/m_28167_ ()V net/minecraft/world/entity/animal/Cat/hiss ()V +MD: net/minecraft/world/entity/animal/Cat/m_28168_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Cat/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Cat/m_28169_ ()F net/minecraft/world/entity/animal/Cat/getAttackDamage ()F +MD: net/minecraft/world/entity/animal/Cat/m_28170_ ()V net/minecraft/world/entity/animal/Cat/handleLieDown ()V +MD: net/minecraft/world/entity/animal/Cat/m_28171_ ()V net/minecraft/world/entity/animal/Cat/updateLieDownAmount ()V +MD: net/minecraft/world/entity/animal/Cat/m_28172_ ()V net/minecraft/world/entity/animal/Cat/updateRelaxStateOneAmount ()V +MD: net/minecraft/world/entity/animal/Cat/m_28181_ (Z)V net/minecraft/world/entity/animal/Cat/setLying (Z)V +MD: net/minecraft/world/entity/animal/Cat/m_28183_ (F)F net/minecraft/world/entity/animal/Cat/getLieDownAmount (F)F +MD: net/minecraft/world/entity/animal/Cat/m_28185_ (Z)V net/minecraft/world/entity/animal/Cat/setRelaxStateOne (Z)V +MD: net/minecraft/world/entity/animal/Cat/m_28187_ (F)F net/minecraft/world/entity/animal/Cat/getLieDownAmountTail (F)F +MD: net/minecraft/world/entity/animal/Cat/m_28464_ (Lnet/minecraft/world/entity/animal/CatVariant;)V net/minecraft/world/entity/animal/Cat/setVariant (Lnet/minecraft/world/entity/animal/CatVariant;)V +MD: net/minecraft/world/entity/animal/Cat/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Cat/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Cat/m_28554_ ()Lnet/minecraft/world/entity/animal/CatVariant; net/minecraft/world/entity/animal/Cat/getVariant ()Lnet/minecraft/world/entity/animal/CatVariant; +MD: net/minecraft/world/entity/animal/Cat/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Cat/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Cat/m_289128_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/entity/animal/Cat/lambda$finalizeSpawn$0 (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Cat/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cat/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cat/m_5849_ ()V net/minecraft/world/entity/animal/Cat/reassessTameGoals ()V +MD: net/minecraft/world/entity/animal/Cat/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Cat/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Cat/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Cat/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Cat/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Cat/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Cat/m_6785_ (D)Z net/minecraft/world/entity/animal/Cat/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Cat/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Cat/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Cat/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Cat/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Cat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Cat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Cat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Cat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Cat/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cat/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cat/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Cat/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Cat/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cat/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cat/m_8024_ ()V net/minecraft/world/entity/animal/Cat/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Cat/m_8097_ ()V net/minecraft/world/entity/animal/Cat/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Cat/m_8099_ ()V net/minecraft/world/entity/animal/Cat/registerGoals ()V +MD: net/minecraft/world/entity/animal/Cat/m_8100_ ()I net/minecraft/world/entity/animal/Cat/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Cat/m_8119_ ()V net/minecraft/world/entity/animal/Cat/tick ()V +MD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Cat;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Cat;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/ (Lnet/minecraft/world/entity/animal/Cat;)V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/ (Lnet/minecraft/world/entity/animal/Cat;)V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28205_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/lambda$canUse$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28207_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/lambda$canUse$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28214_ ()Z net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/spaceIsOccupied ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28215_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/giveMorningGift ()V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8041_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/stop ()V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8056_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/start ()V +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/ (Lnet/minecraft/world/entity/animal/Cat;DLnet/minecraft/world/item/crafting/Ingredient;Z)V net/minecraft/world/entity/animal/Cat$CatTemptGoal/ (Lnet/minecraft/world/entity/animal/Cat;DLnet/minecraft/world/item/crafting/Ingredient;Z)V +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/m_7497_ ()Z net/minecraft/world/entity/animal/Cat$CatTemptGoal/canScare ()Z +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Cat$CatTemptGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/m_8037_ ()V net/minecraft/world/entity/animal/Cat$CatTemptGoal/tick ()V +MD: net/minecraft/world/entity/animal/CatVariant/ ()V net/minecraft/world/entity/animal/CatVariant/ ()V +MD: net/minecraft/world/entity/animal/CatVariant/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/animal/CatVariant/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/animal/CatVariant/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/CatVariant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/CatVariant/f_218151_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/CatVariant/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/CatVariant/hashCode ()I net/minecraft/world/entity/animal/CatVariant/hashCode ()I +MD: net/minecraft/world/entity/animal/CatVariant/m_255142_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/CatVariant; net/minecraft/world/entity/animal/CatVariant/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/CatVariant; +MD: net/minecraft/world/entity/animal/CatVariant/m_255249_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/animal/CatVariant/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/animal/CatVariant/m_255364_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/CatVariant; net/minecraft/world/entity/animal/CatVariant/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/CatVariant; +MD: net/minecraft/world/entity/animal/CatVariant/toString ()Ljava/lang/String; net/minecraft/world/entity/animal/CatVariant/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Chicken/ ()V net/minecraft/world/entity/animal/Chicken/ ()V +MD: net/minecraft/world/entity/animal/Chicken/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Chicken/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Chicken/m_142039_ ()Z net/minecraft/world/entity/animal/Chicken/isFlapping ()Z +MD: net/minecraft/world/entity/animal/Chicken/m_142043_ ()V net/minecraft/world/entity/animal/Chicken/onFlap ()V +MD: net/minecraft/world/entity/animal/Chicken/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Chicken/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Chicken/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Chicken; net/minecraft/world/entity/animal/Chicken/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Chicken; +MD: net/minecraft/world/entity/animal/Chicken/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/Chicken/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/Chicken/m_213860_ ()I net/minecraft/world/entity/animal/Chicken/getExperienceReward ()I +MD: net/minecraft/world/entity/animal/Chicken/m_28263_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Chicken/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Chicken/m_28264_ ()Z net/minecraft/world/entity/animal/Chicken/isChickenJockey ()Z +MD: net/minecraft/world/entity/animal/Chicken/m_28273_ (Z)V net/minecraft/world/entity/animal/Chicken/setChickenJockey (Z)V +MD: net/minecraft/world/entity/animal/Chicken/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Chicken/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Chicken/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Chicken/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Chicken/m_6785_ (D)Z net/minecraft/world/entity/animal/Chicken/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Chicken/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Chicken/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Chicken/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Chicken/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Chicken/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Chicken/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Chicken/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Chicken/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Chicken/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Chicken/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Chicken/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Chicken/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Chicken/m_8099_ ()V net/minecraft/world/entity/animal/Chicken/registerGoals ()V +MD: net/minecraft/world/entity/animal/Chicken/m_8107_ ()V net/minecraft/world/entity/animal/Chicken/aiStep ()V +MD: net/minecraft/world/entity/animal/Cod/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Cod/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Cod/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Cod/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Cod/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cod/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cod/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cod/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Cow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Cow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; net/minecraft/world/entity/animal/Cow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; +MD: net/minecraft/world/entity/animal/Cow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Cow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Cow/m_28307_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Cow/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Cow/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cow/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Cow/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Cow/m_6121_ ()F net/minecraft/world/entity/animal/Cow/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Cow/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Cow/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Cow/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Cow/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Cow/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cow/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cow/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/m_8099_ ()V net/minecraft/world/entity/animal/Cow/registerGoals ()V +MD: net/minecraft/world/entity/animal/Dolphin/ ()V net/minecraft/world/entity/animal/Dolphin/ ()V +MD: net/minecraft/world/entity/animal/Dolphin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Dolphin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_218164_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Dolphin/access$000 (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Dolphin/m_218166_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Dolphin/access$100 (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Dolphin/m_218168_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Dolphin/access$200 (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Dolphin/m_28337_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/animal/Dolphin/addParticlesAroundSelf (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_28343_ (I)V net/minecraft/world/entity/animal/Dolphin/setMoisntessLevel (I)V +MD: net/minecraft/world/entity/animal/Dolphin/m_28377_ ()Z net/minecraft/world/entity/animal/Dolphin/gotFish ()Z +MD: net/minecraft/world/entity/animal/Dolphin/m_28378_ ()I net/minecraft/world/entity/animal/Dolphin/getMoistnessLevel ()I +MD: net/minecraft/world/entity/animal/Dolphin/m_28379_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Dolphin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Dolphin/m_28380_ ()Z net/minecraft/world/entity/animal/Dolphin/closeToNextPos ()Z +MD: net/minecraft/world/entity/animal/Dolphin/m_28384_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Dolphin/setTreasurePos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_28387_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Dolphin/getTreasurePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Dolphin/m_28393_ (Z)V net/minecraft/world/entity/animal/Dolphin/setGotFish (Z)V +MD: net/minecraft/world/entity/animal/Dolphin/m_289129_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/animal/Dolphin/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Dolphin/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Dolphin/m_6040_ ()Z net/minecraft/world/entity/animal/Dolphin/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/Dolphin/m_6062_ ()I net/minecraft/world/entity/animal/Dolphin/getMaxAirSupply ()I +MD: net/minecraft/world/entity/animal/Dolphin/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Dolphin/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Dolphin/m_6229_ (I)V net/minecraft/world/entity/animal/Dolphin/handleAirSupply (I)V +MD: net/minecraft/world/entity/animal/Dolphin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Dolphin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Dolphin/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Dolphin/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Dolphin/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Dolphin/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Dolphin/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Dolphin/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7305_ (I)I net/minecraft/world/entity/animal/Dolphin/increaseAirSupply (I)I +MD: net/minecraft/world/entity/animal/Dolphin/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Dolphin/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Dolphin/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Dolphin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Dolphin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/Dolphin/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7822_ (B)V net/minecraft/world/entity/animal/Dolphin/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_8085_ ()I net/minecraft/world/entity/animal/Dolphin/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/Dolphin/m_8097_ ()V net/minecraft/world/entity/animal/Dolphin/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Dolphin/m_8099_ ()V net/minecraft/world/entity/animal/Dolphin/registerGoals ()V +MD: net/minecraft/world/entity/animal/Dolphin/m_8119_ ()V net/minecraft/world/entity/animal/Dolphin/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin/m_8132_ ()I net/minecraft/world/entity/animal/Dolphin/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_6767_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8037_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8041_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/stop ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8056_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/start ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;D)V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;D)V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8041_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/stop ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8056_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/start ()V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_28428_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/drop (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8037_ ()V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8041_ ()V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/stop ()V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8056_ ()V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/start ()V +MD: net/minecraft/world/entity/animal/FlyingAnimal/m_29443_ ()Z net/minecraft/world/entity/animal/FlyingAnimal/isFlying ()Z +MD: net/minecraft/world/entity/animal/Fox/ ()V net/minecraft/world/entity/animal/Fox/ ()V +MD: net/minecraft/world/entity/animal/Fox/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Fox/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Fox/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Fox/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Fox/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Fox/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Fox/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Fox; net/minecraft/world/entity/animal/Fox/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Fox; +MD: net/minecraft/world/entity/animal/Fox/m_148924_ ()Z net/minecraft/world/entity/animal/Fox/isJumping ()Z +MD: net/minecraft/world/entity/animal/Fox/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/animal/Fox/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/animal/Fox/m_218173_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Fox/access$100 (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Fox/m_218175_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Fox/checkFoxSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Fox/m_218181_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Fox/access$200 (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Fox/m_218183_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Fox/access$300 (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Fox/m_28462_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Fox/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Fox/m_28464_ (Lnet/minecraft/world/entity/animal/Fox$Type;)V net/minecraft/world/entity/animal/Fox/setVariant (Lnet/minecraft/world/entity/animal/Fox$Type;)V +MD: net/minecraft/world/entity/animal/Fox/m_28466_ (Lnet/minecraft/world/entity/animal/Fox;)Z net/minecraft/world/entity/animal/Fox/access$000 (Lnet/minecraft/world/entity/animal/Fox;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28471_ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/isPathClear (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28497_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$2 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28515_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/Fox/addTrustedUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/Fox/m_28529_ (Ljava/util/UUID;)Z net/minecraft/world/entity/animal/Fox/trusts (Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28532_ (IZ)V net/minecraft/world/entity/animal/Fox/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/Fox/m_28553_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Fox/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Fox/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Fox/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Fox/m_28554_ ()Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox/getVariant ()Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox/m_28555_ ()Z net/minecraft/world/entity/animal/Fox/isSitting ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28556_ ()Z net/minecraft/world/entity/animal/Fox/isFaceplanted ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28557_ ()Z net/minecraft/world/entity/animal/Fox/isPouncing ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28558_ ()Z net/minecraft/world/entity/animal/Fox/isFullyCrouched ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28559_ ()Z net/minecraft/world/entity/animal/Fox/isInterested ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28562_ ()V net/minecraft/world/entity/animal/Fox/setTargetGoals ()V +MD: net/minecraft/world/entity/animal/Fox/m_28566_ ()Ljava/util/List; net/minecraft/world/entity/animal/Fox/getTrustedUUIDs ()Ljava/util/List; +MD: net/minecraft/world/entity/animal/Fox/m_28567_ ()Z net/minecraft/world/entity/animal/Fox/isDefending ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28568_ ()V net/minecraft/world/entity/animal/Fox/wakeUp ()V +MD: net/minecraft/world/entity/animal/Fox/m_28569_ ()V net/minecraft/world/entity/animal/Fox/clearStates ()V +MD: net/minecraft/world/entity/animal/Fox/m_28570_ ()Z net/minecraft/world/entity/animal/Fox/canMove ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28584_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$8 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28597_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/canEat (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28599_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$5 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28601_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Fox/spitOutItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Fox/m_28603_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$4 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28605_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Fox/dropItemStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Fox/m_28608_ (I)Z net/minecraft/world/entity/animal/Fox/getFlag (I)Z +MD: net/minecraft/world/entity/animal/Fox/m_28610_ (Z)V net/minecraft/world/entity/animal/Fox/setSitting (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28612_ (Z)V net/minecraft/world/entity/animal/Fox/setIsPouncing (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28614_ (Z)V net/minecraft/world/entity/animal/Fox/setIsCrouching (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28616_ (Z)V net/minecraft/world/entity/animal/Fox/setIsInterested (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28618_ (Z)V net/minecraft/world/entity/animal/Fox/setFaceplanted (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28620_ (F)F net/minecraft/world/entity/animal/Fox/getHeadRollAngle (F)F +MD: net/minecraft/world/entity/animal/Fox/m_28622_ (Z)V net/minecraft/world/entity/animal/Fox/setDefending (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28624_ (F)F net/minecraft/world/entity/animal/Fox/getCrouchAmount (F)F +MD: net/minecraft/world/entity/animal/Fox/m_28626_ (Z)V net/minecraft/world/entity/animal/Fox/setSleeping (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_287086_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289130_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$6 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289131_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289132_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$7 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289133_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$9 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_5502_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/Fox/onOffspringSpawnedFromEgg (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/Fox/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_5639_ (FF)I net/minecraft/world/entity/animal/Fox/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/Fox/m_5803_ ()Z net/minecraft/world/entity/animal/Fox/isSleeping ()Z +MD: net/minecraft/world/entity/animal/Fox/m_6047_ ()Z net/minecraft/world/entity/animal/Fox/isCrouching ()Z +MD: net/minecraft/world/entity/animal/Fox/m_6107_ ()Z net/minecraft/world/entity/animal/Fox/isImmobile ()Z +MD: net/minecraft/world/entity/animal/Fox/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Fox/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Fox/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Fox/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Fox/m_6668_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/Fox/dropAllDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/Fox/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Fox/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Fox/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_7252_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/canHoldItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Fox/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Fox/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Fox/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Fox/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/Fox/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/Fox/m_7822_ (B)V net/minecraft/world/entity/animal/Fox/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Fox/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Fox/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Fox/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_8032_ ()V net/minecraft/world/entity/animal/Fox/playAmbientSound ()V +MD: net/minecraft/world/entity/animal/Fox/m_8097_ ()V net/minecraft/world/entity/animal/Fox/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Fox/m_8099_ ()V net/minecraft/world/entity/animal/Fox/registerGoals ()V +MD: net/minecraft/world/entity/animal/Fox/m_8107_ ()V net/minecraft/world/entity/animal/Fox/aiStep ()V +MD: net/minecraft/world/entity/animal/Fox/m_8119_ ()V net/minecraft/world/entity/animal/Fox/tick ()V +MD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/ (Lnet/minecraft/world/entity/animal/Fox;Ljava/lang/Class;ZZLjava/util/function/Predicate;)V net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/ (Lnet/minecraft/world/entity/animal/Fox;Ljava/lang/Class;ZZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FaceplantGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FaceplantGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FaceplantGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$FaceplantGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FaceplantGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FaceplantGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/m_28663_ ()Z net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/hasShelter ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/m_28664_ ()Z net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/alertable ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$FoxBreedGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/m_8026_ ()V net/minecraft/world/entity/animal/Fox$FoxBreedGoal/breed ()V +MD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxBreedGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/ (Lnet/minecraft/world/entity/animal/Fox;DII)V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/ (Lnet/minecraft/world/entity/animal/Fox;DII)V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_148926_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/pickGlowBerry (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_148928_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/pickSweetBerries (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_28686_ ()V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/onReachedTarget ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8052_ ()D net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/acceptedDistance ()D +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8064_ ()Z net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxFloatGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxFloatGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxFloatGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxGroupData/ (Lnet/minecraft/world/entity/animal/Fox$Type;)V net/minecraft/world/entity/animal/Fox$FoxGroupData/ (Lnet/minecraft/world/entity/animal/Fox$Type;)V +MD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxLookControl/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxLookControl/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxLookControl/m_8106_ ()Z net/minecraft/world/entity/animal/Fox$FoxLookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxLookControl/m_8128_ ()V net/minecraft/world/entity/animal/Fox$FoxLookControl/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/Fox;DZ)V net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/Fox;DZ)V +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/m_6739_ (Lnet/minecraft/world/entity/LivingEntity;D)V net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/checkAndPerformAttack (Lnet/minecraft/world/entity/LivingEntity;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxMoveControl/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxMoveControl/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Fox$FoxMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxPanicGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$FoxPanicGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/Fox$FoxPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_6767_ ()Z net/minecraft/world/entity/animal/Fox$FoxPounceGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxPounceGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxPounceGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/ (Lnet/minecraft/world/entity/animal/Fox;II)V net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/ (Lnet/minecraft/world/entity/animal/Fox;II)V +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_28759_ ()Z net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/canFoxMove ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_28772_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/resetLook ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$SeekShelterGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$SeekShelterGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$SeekShelterGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/ ()V net/minecraft/world/entity/animal/Fox$SleepGoal/ ()V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$SleepGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_28788_ ()Z net/minecraft/world/entity/animal/Fox$SleepGoal/canSleep ()Z +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$SleepGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$SleepGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$SleepGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$SleepGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$StalkPreyGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$Type/ ()V net/minecraft/world/entity/animal/Fox$Type/ ()V +MD: net/minecraft/world/entity/animal/Fox$Type/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/Fox$Type/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/Fox$Type/m_148931_ ()[Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/$values ()[Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_204062_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/byBiome (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_28812_ (I)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/byId (I)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_28816_ (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_28820_ ()I net/minecraft/world/entity/animal/Fox$Type/getId ()I +MD: net/minecraft/world/entity/animal/Fox$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Fox$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Fox$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/values ()[Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/values ()[Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/FrogVariant/ ()V net/minecraft/world/entity/animal/FrogVariant/ ()V +MD: net/minecraft/world/entity/animal/FrogVariant/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/animal/FrogVariant/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/animal/FrogVariant/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/FrogVariant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/FrogVariant/f_218188_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/FrogVariant/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/FrogVariant/hashCode ()I net/minecraft/world/entity/animal/FrogVariant/hashCode ()I +MD: net/minecraft/world/entity/animal/FrogVariant/m_218193_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/FrogVariant; net/minecraft/world/entity/animal/FrogVariant/register (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/FrogVariant; +MD: net/minecraft/world/entity/animal/FrogVariant/toString ()Ljava/lang/String; net/minecraft/world/entity/animal/FrogVariant/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/IronGolem/ ()V net/minecraft/world/entity/animal/IronGolem/ ()V +MD: net/minecraft/world/entity/animal/IronGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/IronGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_28873_ ()Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem/getCrackiness ()Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem/m_28874_ ()I net/minecraft/world/entity/animal/IronGolem/getAttackAnimationTick ()I +MD: net/minecraft/world/entity/animal/IronGolem/m_28875_ ()I net/minecraft/world/entity/animal/IronGolem/getOfferFlowerTick ()I +MD: net/minecraft/world/entity/animal/IronGolem/m_28876_ ()Z net/minecraft/world/entity/animal/IronGolem/isPlayerCreated ()Z +MD: net/minecraft/world/entity/animal/IronGolem/m_28877_ ()F net/minecraft/world/entity/animal/IronGolem/getAttackDamage ()F +MD: net/minecraft/world/entity/animal/IronGolem/m_28878_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/IronGolem/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_28883_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/IronGolem/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/IronGolem/m_28885_ (Z)V net/minecraft/world/entity/animal/IronGolem/offerFlower (Z)V +MD: net/minecraft/world/entity/animal/IronGolem/m_28887_ (Z)V net/minecraft/world/entity/animal/IronGolem/setPlayerCreated (Z)V +MD: net/minecraft/world/entity/animal/IronGolem/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/IronGolem/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/IronGolem/m_5843_ ()Z net/minecraft/world/entity/animal/IronGolem/canSpawnSprintParticle ()Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/IronGolem/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/IronGolem/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/IronGolem/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/IronGolem/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/IronGolem/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/animal/IronGolem/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/IronGolem/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_6784_ ()I net/minecraft/world/entity/animal/IronGolem/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/IronGolem/m_6825_ ()V net/minecraft/world/entity/animal/IronGolem/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/IronGolem/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/IronGolem/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/IronGolem/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7302_ (I)I net/minecraft/world/entity/animal/IronGolem/decreaseAirSupply (I)I +MD: net/minecraft/world/entity/animal/IronGolem/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/IronGolem/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/IronGolem/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/IronGolem/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/IronGolem/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/IronGolem/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7822_ (B)V net/minecraft/world/entity/animal/IronGolem/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7870_ (I)V net/minecraft/world/entity/animal/IronGolem/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/IronGolem/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/IronGolem/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/IronGolem/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/IronGolem/m_8097_ ()V net/minecraft/world/entity/animal/IronGolem/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/IronGolem/m_8099_ ()V net/minecraft/world/entity/animal/IronGolem/registerGoals ()V +MD: net/minecraft/world/entity/animal/IronGolem/m_8107_ ()V net/minecraft/world/entity/animal/IronGolem/aiStep ()V +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/ ()V net/minecraft/world/entity/animal/IronGolem$Crackiness/ ()V +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/ (Ljava/lang/String;IF)V net/minecraft/world/entity/animal/IronGolem$Crackiness/ (Ljava/lang/String;IF)V +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/m_148933_ ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/$values ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/m_28901_ (F)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/byFraction (F)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/m_28903_ (Lnet/minecraft/world/entity/animal/IronGolem$Crackiness;)D net/minecraft/world/entity/animal/IronGolem$Crackiness/lambda$static$0 (Lnet/minecraft/world/entity/animal/IronGolem$Crackiness;)D +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/values ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/values ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/MushroomCow/ ()V net/minecraft/world/entity/animal/MushroomCow/ ()V +MD: net/minecraft/world/entity/animal/MushroomCow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/MushroomCow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; net/minecraft/world/entity/animal/MushroomCow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; +MD: net/minecraft/world/entity/animal/MushroomCow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/MushroomCow; net/minecraft/world/entity/animal/MushroomCow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/MushroomCow; +MD: net/minecraft/world/entity/animal/MushroomCow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/MushroomCow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/MushroomCow/m_218200_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/MushroomCow/checkMushroomSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/MushroomCow/m_28464_ (Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType;)V net/minecraft/world/entity/animal/MushroomCow/setVariant (Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/MushroomCow/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_28554_ ()Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow/getVariant ()Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/MushroomCow/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/MushroomCow/m_28925_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/MushroomCow/lambda$mobInteract$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_28930_ (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow/getOffspringType (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow/m_28956_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/entity/animal/MushroomCow/getEffectFromItemStack (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/MushroomCow/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/MushroomCow/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/MushroomCow/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/MushroomCow/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/MushroomCow/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/MushroomCow/m_6220_ ()Z net/minecraft/world/entity/animal/MushroomCow/readyForShearing ()Z +MD: net/minecraft/world/entity/animal/MushroomCow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/MushroomCow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/MushroomCow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/animal/MushroomCow/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_8097_ ()V net/minecraft/world/entity/animal/MushroomCow/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/ ()V net/minecraft/world/entity/animal/MushroomCow$MushroomType/ ()V +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/MushroomCow$MushroomType/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_148944_ ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/$values ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_28969_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/animal/MushroomCow$MushroomType/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_28976_ (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/byType (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/MushroomCow$MushroomType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/values ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/values ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/Ocelot/ ()V net/minecraft/world/entity/animal/Ocelot/ ()V +MD: net/minecraft/world/entity/animal/Ocelot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Ocelot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Ocelot/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Ocelot; net/minecraft/world/entity/animal/Ocelot/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Ocelot; +MD: net/minecraft/world/entity/animal/Ocelot/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Ocelot/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Ocelot/m_20161_ ()Z net/minecraft/world/entity/animal/Ocelot/isSteppingCarefully ()Z +MD: net/minecraft/world/entity/animal/Ocelot/m_218206_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Ocelot/checkOcelotSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_29036_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Ocelot/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Ocelot/m_29037_ ()V net/minecraft/world/entity/animal/Ocelot/reassessTrustingGoals ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_29038_ ()Z net/minecraft/world/entity/animal/Ocelot/isTrusting ()Z +MD: net/minecraft/world/entity/animal/Ocelot/m_29039_ ()F net/minecraft/world/entity/animal/Ocelot/getAttackDamage ()F +MD: net/minecraft/world/entity/animal/Ocelot/m_29045_ (Z)V net/minecraft/world/entity/animal/Ocelot/setTrusting (Z)V +MD: net/minecraft/world/entity/animal/Ocelot/m_29047_ (Z)V net/minecraft/world/entity/animal/Ocelot/spawnTrustingParticles (Z)V +MD: net/minecraft/world/entity/animal/Ocelot/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Ocelot/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Ocelot/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Ocelot/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Ocelot/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Ocelot/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Ocelot/m_6785_ (D)Z net/minecraft/world/entity/animal/Ocelot/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Ocelot/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/Ocelot/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Ocelot/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Ocelot/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Ocelot/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Ocelot/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Ocelot/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Ocelot/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Ocelot/m_7822_ (B)V net/minecraft/world/entity/animal/Ocelot/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Ocelot/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Ocelot/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Ocelot/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Ocelot/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Ocelot/m_8024_ ()V net/minecraft/world/entity/animal/Ocelot/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_8097_ ()V net/minecraft/world/entity/animal/Ocelot/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_8099_ ()V net/minecraft/world/entity/animal/Ocelot/registerGoals ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_8100_ ()I net/minecraft/world/entity/animal/Ocelot/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;DLnet/minecraft/world/item/crafting/Ingredient;Z)V net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;DLnet/minecraft/world/item/crafting/Ingredient;Z)V +MD: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/m_7497_ ()Z net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/canScare ()Z +MD: net/minecraft/world/entity/animal/Panda/ ()V net/minecraft/world/entity/animal/Panda/ ()V +MD: net/minecraft/world/entity/animal/Panda/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Panda/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Panda/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Panda/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Panda/m_148973_ ()Z net/minecraft/world/entity/animal/Panda/isBrown ()Z +MD: net/minecraft/world/entity/animal/Panda/m_218212_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$100 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218214_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$200 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218216_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$300 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218218_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$400 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218220_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$500 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218222_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$600 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218224_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$700 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218226_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$800 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218228_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$900 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218230_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$1000 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_284353_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$000 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_289134_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/animal/Panda/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/animal/Panda/m_29088_ (F)F net/minecraft/world/entity/animal/Panda/getRollAmount (F)F +MD: net/minecraft/world/entity/animal/Panda/m_29099_ (Lnet/minecraft/world/entity/animal/Panda$Gene;)V net/minecraft/world/entity/animal/Panda/setMainGene (Lnet/minecraft/world/entity/animal/Panda$Gene;)V +MD: net/minecraft/world/entity/animal/Panda/m_29103_ (Lnet/minecraft/world/entity/animal/Panda;Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda/setGeneFromParents (Lnet/minecraft/world/entity/animal/Panda;Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda/m_29116_ (Lnet/minecraft/world/entity/animal/Panda$Gene;)V net/minecraft/world/entity/animal/Panda/setHiddenGene (Lnet/minecraft/world/entity/animal/Panda$Gene;)V +MD: net/minecraft/world/entity/animal/Panda/m_29134_ (IZ)V net/minecraft/world/entity/animal/Panda/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/Panda/m_29148_ ()I net/minecraft/world/entity/animal/Panda/getUnhappyCounter ()I +MD: net/minecraft/world/entity/animal/Panda/m_29149_ ()Z net/minecraft/world/entity/animal/Panda/isSneezing ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29150_ ()Z net/minecraft/world/entity/animal/Panda/isSitting ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29151_ ()Z net/minecraft/world/entity/animal/Panda/isOnBack ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29152_ ()Z net/minecraft/world/entity/animal/Panda/isEating ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29153_ ()I net/minecraft/world/entity/animal/Panda/getSneezeCounter ()I +MD: net/minecraft/world/entity/animal/Panda/m_29154_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getMainGene ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29155_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getHiddenGene ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29156_ ()Z net/minecraft/world/entity/animal/Panda/isRolling ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29157_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Panda/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Panda/m_29158_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getVariant ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29161_ ()Z net/minecraft/world/entity/animal/Panda/isLazy ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29162_ ()Z net/minecraft/world/entity/animal/Panda/isWorried ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29163_ ()Z net/minecraft/world/entity/animal/Panda/isPlayful ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29164_ ()Z net/minecraft/world/entity/animal/Panda/isWeak ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29165_ ()Z net/minecraft/world/entity/animal/Panda/isScared ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29166_ ()V net/minecraft/world/entity/animal/Panda/setAttributes ()V +MD: net/minecraft/world/entity/animal/Panda/m_29167_ ()Z net/minecraft/world/entity/animal/Panda/canPerformAction ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29170_ ()I net/minecraft/world/entity/animal/Panda/getEatCounter ()I +MD: net/minecraft/world/entity/animal/Panda/m_29171_ ()V net/minecraft/world/entity/animal/Panda/handleEating ()V +MD: net/minecraft/world/entity/animal/Panda/m_29172_ ()V net/minecraft/world/entity/animal/Panda/addEatingParticles ()V +MD: net/minecraft/world/entity/animal/Panda/m_29173_ ()V net/minecraft/world/entity/animal/Panda/updateSitAmount ()V +MD: net/minecraft/world/entity/animal/Panda/m_29174_ ()V net/minecraft/world/entity/animal/Panda/updateOnBackAnimation ()V +MD: net/minecraft/world/entity/animal/Panda/m_29175_ ()V net/minecraft/world/entity/animal/Panda/updateRollAmount ()V +MD: net/minecraft/world/entity/animal/Panda/m_29176_ ()V net/minecraft/world/entity/animal/Panda/handleRoll ()V +MD: net/minecraft/world/entity/animal/Panda/m_29177_ ()V net/minecraft/world/entity/animal/Panda/afterSneeze ()V +MD: net/minecraft/world/entity/animal/Panda/m_29178_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getOneOfGenesRandomly ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29179_ ()V net/minecraft/world/entity/animal/Panda/tryToSit ()V +MD: net/minecraft/world/entity/animal/Panda/m_29195_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Panda/isFoodOrCake (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Panda/m_29206_ (I)V net/minecraft/world/entity/animal/Panda/setUnhappyCounter (I)V +MD: net/minecraft/world/entity/animal/Panda/m_29208_ (Z)V net/minecraft/world/entity/animal/Panda/sit (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29210_ (I)V net/minecraft/world/entity/animal/Panda/setSneezeCounter (I)V +MD: net/minecraft/world/entity/animal/Panda/m_29212_ (Z)V net/minecraft/world/entity/animal/Panda/setOnBack (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29214_ (I)V net/minecraft/world/entity/animal/Panda/setEatCounter (I)V +MD: net/minecraft/world/entity/animal/Panda/m_29216_ (Z)V net/minecraft/world/entity/animal/Panda/eat (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29218_ (I)Z net/minecraft/world/entity/animal/Panda/getFlag (I)Z +MD: net/minecraft/world/entity/animal/Panda/m_29220_ (Z)V net/minecraft/world/entity/animal/Panda/sneeze (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29222_ (Z)V net/minecraft/world/entity/animal/Panda/roll (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29224_ (F)F net/minecraft/world/entity/animal/Panda/getSitAmount (F)F +MD: net/minecraft/world/entity/animal/Panda/m_29226_ (F)F net/minecraft/world/entity/animal/Panda/getLieOnBackAmount (F)F +MD: net/minecraft/world/entity/animal/Panda/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Panda/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Panda/m_5912_ ()Z net/minecraft/world/entity/animal/Panda/isAggressive ()Z +MD: net/minecraft/world/entity/animal/Panda/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Panda/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Panda/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Panda/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Panda/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Panda/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Panda/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Panda/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Panda/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Panda/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Panda/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Panda/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Panda/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Panda/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Panda/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Panda/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Panda/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Panda/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Panda/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Panda/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Panda/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Panda/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Panda/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/Panda/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/Panda/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Panda/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Panda/m_8097_ ()V net/minecraft/world/entity/animal/Panda/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Panda/m_8099_ ()V net/minecraft/world/entity/animal/Panda/registerGoals ()V +MD: net/minecraft/world/entity/animal/Panda/m_8119_ ()V net/minecraft/world/entity/animal/Panda/tick ()V +MD: net/minecraft/world/entity/animal/Panda$Gene/ ()V net/minecraft/world/entity/animal/Panda$Gene/ ()V +MD: net/minecraft/world/entity/animal/Panda$Gene/ (Ljava/lang/String;IILjava/lang/String;Z)V net/minecraft/world/entity/animal/Panda$Gene/ (Ljava/lang/String;IILjava/lang/String;Z)V +MD: net/minecraft/world/entity/animal/Panda$Gene/m_148983_ ()[Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/$values ()[Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_218234_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29247_ ()I net/minecraft/world/entity/animal/Panda$Gene/getId ()I +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29248_ (I)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/byId (I)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29253_ (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29260_ (Lnet/minecraft/world/entity/animal/Panda$Gene;Lnet/minecraft/world/entity/animal/Panda$Gene;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/getVariantFromGenes (Lnet/minecraft/world/entity/animal/Panda$Gene;Lnet/minecraft/world/entity/animal/Panda$Gene;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29263_ ()Z net/minecraft/world/entity/animal/Panda$Gene/isRecessive ()Z +MD: net/minecraft/world/entity/animal/Panda$Gene/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Panda$Gene/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Panda$Gene/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/values ()[Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/values ()[Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$PandaAttackGoal/ (Lnet/minecraft/world/entity/animal/Panda;DZ)V net/minecraft/world/entity/animal/Panda$PandaAttackGoal/ (Lnet/minecraft/world/entity/animal/Panda;DZ)V +MD: net/minecraft/world/entity/animal/Panda$PandaAttackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V net/minecraft/world/entity/animal/Panda$PandaBreedGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V +MD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/m_29289_ ()Z net/minecraft/world/entity/animal/Panda$PandaBreedGoal/canFindBamboo ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaBreedGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/Panda;[Ljava/lang/Class;)V net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/Panda;[Ljava/lang/Class;)V +MD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8041_ ()V net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/stop ()V +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/start ()V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;F)V net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_148984_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_29312_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaMoveControl/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaMoveControl/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Panda$PandaMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V net/minecraft/world/entity/animal/Panda$PandaPanicGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V +MD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/Panda$PandaPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaPanicGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaRollGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_6767_ ()Z net/minecraft/world/entity/animal/Panda$PandaRollGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaRollGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaRollGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaRollGoal/start ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaSitGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaSitGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8037_ ()V net/minecraft/world/entity/animal/Panda$PandaSitGoal/tick ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8041_ ()V net/minecraft/world/entity/animal/Panda$PandaSitGoal/stop ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaSitGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaSitGoal/start ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/start ()V +MD: net/minecraft/world/entity/animal/Parrot/ ()V net/minecraft/world/entity/animal/Parrot/ ()V +MD: net/minecraft/world/entity/animal/Parrot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Parrot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Parrot/m_142039_ ()Z net/minecraft/world/entity/animal/Parrot/isFlapping ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_142043_ ()V net/minecraft/world/entity/animal/Parrot/onFlap ()V +MD: net/minecraft/world/entity/animal/Parrot/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Parrot/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Parrot/m_218236_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/world/entity/animal/Parrot/getPitch (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/entity/animal/Parrot/m_218238_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getAmbient (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_218241_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Parrot/checkParrotSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_28464_ (Lnet/minecraft/world/entity/animal/Parrot$Variant;)V net/minecraft/world/entity/animal/Parrot/setVariant (Lnet/minecraft/world/entity/animal/Parrot$Variant;)V +MD: net/minecraft/world/entity/animal/Parrot/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Parrot/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Parrot/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Parrot/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Parrot/m_28554_ ()Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot/getVariant ()Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot/m_29382_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Parrot/imitateNearbyMobs (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_29397_ (Ljava/util/HashMap;)V net/minecraft/world/entity/animal/Parrot/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/animal/Parrot/m_29408_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getImitatedSound (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_29438_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Parrot/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Parrot/m_29439_ ()Z net/minecraft/world/entity/animal/Parrot/isPartyParrot ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_29442_ ()V net/minecraft/world/entity/animal/Parrot/calculateFlapping ()V +MD: net/minecraft/world/entity/animal/Parrot/m_29443_ ()Z net/minecraft/world/entity/animal/Parrot/isFlying ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/animal/Parrot/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/animal/Parrot/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Parrot/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Parrot/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Parrot/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Parrot/m_6094_ ()Z net/minecraft/world/entity/animal/Parrot/isPushable ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_6100_ ()F net/minecraft/world/entity/animal/Parrot/getVoicePitch ()F +MD: net/minecraft/world/entity/animal/Parrot/m_6162_ ()Z net/minecraft/world/entity/animal/Parrot/isBaby ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Parrot/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Parrot/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Parrot/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Parrot/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Parrot/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Parrot/m_6818_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/animal/Parrot/setRecordPlayingNearby (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/animal/Parrot/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Parrot/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/Parrot/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Parrot/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Parrot/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Parrot/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Parrot/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Parrot/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Parrot/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Parrot/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Parrot/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_8097_ ()V net/minecraft/world/entity/animal/Parrot/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Parrot/m_8099_ ()V net/minecraft/world/entity/animal/Parrot/registerGoals ()V +MD: net/minecraft/world/entity/animal/Parrot/m_8107_ ()V net/minecraft/world/entity/animal/Parrot/aiStep ()V +MD: net/minecraft/world/entity/animal/Parrot$1/ ()V net/minecraft/world/entity/animal/Parrot$1/ ()V +MD: net/minecraft/world/entity/animal/Parrot$1/test (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/Parrot$1/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/Parrot$1/test (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/animal/Parrot$1/test (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/m_186227_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/getTreePos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Parrot$Variant/ ()V net/minecraft/world/entity/animal/Parrot$Variant/ ()V +MD: net/minecraft/world/entity/animal/Parrot$Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/Parrot$Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_262398_ (I)Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/byId (I)Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_262428_ ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/$values ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_262504_ ()I net/minecraft/world/entity/animal/Parrot$Variant/getId ()I +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Parrot$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Parrot$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot$Variant/values ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/values ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Pig/ ()V net/minecraft/world/entity/animal/Pig/ ()V +MD: net/minecraft/world/entity/animal/Pig/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Pig/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Pig/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Pig; net/minecraft/world/entity/animal/Pig/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Pig; +MD: net/minecraft/world/entity/animal/Pig/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Pig/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Pig/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/animal/Pig/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/animal/Pig/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Pig/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Pig/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Pig/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Pig/m_29503_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Pig/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Pig/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pig/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pig/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/Pig/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/Pig/m_5907_ ()V net/minecraft/world/entity/animal/Pig/dropEquipment ()V +MD: net/minecraft/world/entity/animal/Pig/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Pig/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Pig/m_6254_ ()Z net/minecraft/world/entity/animal/Pig/isSaddled ()Z +MD: net/minecraft/world/entity/animal/Pig/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/Pig/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/Pig/m_6741_ ()Z net/minecraft/world/entity/animal/Pig/isSaddleable ()Z +MD: net/minecraft/world/entity/animal/Pig/m_6746_ ()Z net/minecraft/world/entity/animal/Pig/boost ()Z +MD: net/minecraft/world/entity/animal/Pig/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Pig/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Pig/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/Pig/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/Pig/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Pig/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Pig/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pig/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pig/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pig/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pig/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pig/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pig/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Pig/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Pig/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Pig/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Pig/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pig/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pig/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/animal/Pig/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/animal/Pig/m_8097_ ()V net/minecraft/world/entity/animal/Pig/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Pig/m_8099_ ()V net/minecraft/world/entity/animal/Pig/registerGoals ()V +MD: net/minecraft/world/entity/animal/PolarBear/ ()V net/minecraft/world/entity/animal/PolarBear/ ()V +MD: net/minecraft/world/entity/animal/PolarBear/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/PolarBear/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/PolarBear/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/PolarBear/m_218249_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/PolarBear/checkPolarBearSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/PolarBear/m_29560_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/PolarBear/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/PolarBear/m_29561_ ()V net/minecraft/world/entity/animal/PolarBear/playWarningSound ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_29562_ ()Z net/minecraft/world/entity/animal/PolarBear/isStanding ()Z +MD: net/minecraft/world/entity/animal/PolarBear/m_29567_ (Z)V net/minecraft/world/entity/animal/PolarBear/setStanding (Z)V +MD: net/minecraft/world/entity/animal/PolarBear/m_29569_ (F)F net/minecraft/world/entity/animal/PolarBear/getStandingAnimationScale (F)F +MD: net/minecraft/world/entity/animal/PolarBear/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/PolarBear/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/PolarBear/m_6108_ ()F net/minecraft/world/entity/animal/PolarBear/getWaterSlowDown ()F +MD: net/minecraft/world/entity/animal/PolarBear/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/PolarBear/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/PolarBear/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/PolarBear/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/PolarBear/m_6784_ ()I net/minecraft/world/entity/animal/PolarBear/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/PolarBear/m_6825_ ()V net/minecraft/world/entity/animal/PolarBear/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/PolarBear/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/PolarBear/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/PolarBear/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/PolarBear/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/PolarBear/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/PolarBear/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/PolarBear/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/PolarBear/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/PolarBear/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/PolarBear/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/PolarBear/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/PolarBear/m_7870_ (I)V net/minecraft/world/entity/animal/PolarBear/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/PolarBear/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/PolarBear/m_8097_ ()V net/minecraft/world/entity/animal/PolarBear/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_8099_ ()V net/minecraft/world/entity/animal/PolarBear/registerGoals ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_8119_ ()V net/minecraft/world/entity/animal/PolarBear/tick ()V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/m_7623_ ()D net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/m_8036_ ()Z net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/m_8056_ ()V net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/start ()V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/m_6739_ (Lnet/minecraft/world/entity/LivingEntity;D)V net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/checkAndPerformAttack (Lnet/minecraft/world/entity/LivingEntity;D)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/m_8041_ ()V net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/stop ()V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/Pufferfish/ ()V net/minecraft/world/entity/animal/Pufferfish/ ()V +MD: net/minecraft/world/entity/animal/Pufferfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Pufferfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_149012_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/animal/Pufferfish/lambda$aiStep$1 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/animal/Pufferfish/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Pufferfish/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Pufferfish/m_289135_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Pufferfish/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Pufferfish/m_29605_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/Pufferfish/touch (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_29618_ (I)V net/minecraft/world/entity/animal/Pufferfish/setPuffState (I)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_29631_ ()I net/minecraft/world/entity/animal/Pufferfish/getPuffState ()I +MD: net/minecraft/world/entity/animal/Pufferfish/m_29638_ (I)F net/minecraft/world/entity/animal/Pufferfish/getScale (I)F +MD: net/minecraft/world/entity/animal/Pufferfish/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/Pufferfish/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/Pufferfish/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/Pufferfish/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/Pufferfish/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pufferfish/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pufferfish/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_8097_ ()V net/minecraft/world/entity/animal/Pufferfish/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Pufferfish/m_8099_ ()V net/minecraft/world/entity/animal/Pufferfish/registerGoals ()V +MD: net/minecraft/world/entity/animal/Pufferfish/m_8107_ ()V net/minecraft/world/entity/animal/Pufferfish/aiStep ()V +MD: net/minecraft/world/entity/animal/Pufferfish/m_8119_ ()V net/minecraft/world/entity/animal/Pufferfish/tick ()V +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/ (Lnet/minecraft/world/entity/animal/Pufferfish;)V net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/ (Lnet/minecraft/world/entity/animal/Pufferfish;)V +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_149014_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_8041_ ()V net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/stop ()V +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_8056_ ()V net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/start ()V +MD: net/minecraft/world/entity/animal/Rabbit/ ()V net/minecraft/world/entity/animal/Rabbit/ ()V +MD: net/minecraft/world/entity/animal/Rabbit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Rabbit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Rabbit; net/minecraft/world/entity/animal/Rabbit/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Rabbit; +MD: net/minecraft/world/entity/animal/Rabbit/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Rabbit/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Rabbit/m_149037_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Rabbit/isTemptingItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_218255_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Rabbit/checkRabbitSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_262482_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit/getRandomRabbitVariant (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit/m_284153_ (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/world/entity/ai/control/JumpControl; net/minecraft/world/entity/animal/Rabbit/access$100 (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/world/entity/ai/control/JumpControl; +MD: net/minecraft/world/entity/animal/Rabbit/m_28464_ (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V net/minecraft/world/entity/animal/Rabbit/setVariant (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Rabbit/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Rabbit/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Rabbit/m_28554_ ()Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit/getVariant ()Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit/m_29670_ (Lnet/minecraft/world/entity/animal/Rabbit;)Z net/minecraft/world/entity/animal/Rabbit/access$000 (Lnet/minecraft/world/entity/animal/Rabbit;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_29686_ (DD)V net/minecraft/world/entity/animal/Rabbit/facePoint (DD)V +MD: net/minecraft/world/entity/animal/Rabbit/m_29716_ ()V net/minecraft/world/entity/animal/Rabbit/startJumping ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29717_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Rabbit/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Rabbit/m_29718_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getJumpSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_29720_ ()V net/minecraft/world/entity/animal/Rabbit/enableJumpControl ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29721_ ()V net/minecraft/world/entity/animal/Rabbit/disableJumpControl ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29722_ ()V net/minecraft/world/entity/animal/Rabbit/setLandingDelay ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29723_ ()V net/minecraft/world/entity/animal/Rabbit/checkLandingDelay ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29724_ ()Z net/minecraft/world/entity/animal/Rabbit/wantsMoreFood ()Z +MD: net/minecraft/world/entity/animal/Rabbit/m_29725_ (D)V net/minecraft/world/entity/animal/Rabbit/setSpeedModifier (D)V +MD: net/minecraft/world/entity/animal/Rabbit/m_29735_ (F)F net/minecraft/world/entity/animal/Rabbit/getJumpCompletion (F)F +MD: net/minecraft/world/entity/animal/Rabbit/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/animal/Rabbit/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/animal/Rabbit/m_5843_ ()Z net/minecraft/world/entity/animal/Rabbit/canSpawnSprintParticle ()Z +MD: net/minecraft/world/entity/animal/Rabbit/m_6118_ ()F net/minecraft/world/entity/animal/Rabbit/getJumpPower ()F +MD: net/minecraft/world/entity/animal/Rabbit/m_6135_ ()V net/minecraft/world/entity/animal/Rabbit/jumpFromGround ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Rabbit/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Rabbit/m_6862_ (Z)V net/minecraft/world/entity/animal/Rabbit/setJumping (Z)V +MD: net/minecraft/world/entity/animal/Rabbit/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Rabbit/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Rabbit/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Rabbit/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Rabbit/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_7822_ (B)V net/minecraft/world/entity/animal/Rabbit/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Rabbit/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Rabbit/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Rabbit/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_8024_ ()V net/minecraft/world/entity/animal/Rabbit/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_8097_ ()V net/minecraft/world/entity/animal/Rabbit/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_8099_ ()V net/minecraft/world/entity/animal/Rabbit/registerGoals ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_8107_ ()V net/minecraft/world/entity/animal/Rabbit/aiStep ()V +MD: net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/ (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/ (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_29758_ (Z)V net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/setCanJump (Z)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_29761_ ()Z net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/wantJump ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_29762_ ()Z net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/canJump ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_8124_ ()V net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/m_6849_ (DDDD)V net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/setWantedPosition (DDDD)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;D)V net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;D)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/m_8037_ ()V net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_8037_ ()V net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Rabbit$Variant/ ()V net/minecraft/world/entity/animal/Rabbit$Variant/ ()V +MD: net/minecraft/world/entity/animal/Rabbit$Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/Rabbit$Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_262367_ (I)Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/byId (I)Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_262377_ ()I net/minecraft/world/entity/animal/Rabbit$Variant/id ()I +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_262433_ ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/$values ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Rabbit$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/values ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/values ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Salmon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Salmon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Salmon/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Salmon/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Salmon/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Salmon/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Salmon/m_6031_ ()I net/minecraft/world/entity/animal/Salmon/getMaxSchoolSize ()I +MD: net/minecraft/world/entity/animal/Salmon/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Salmon/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/ ()V net/minecraft/world/entity/animal/Sheep/ ()V +MD: net/minecraft/world/entity/animal/Sheep/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Sheep/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Sheep/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Sheep; net/minecraft/world/entity/animal/Sheep/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Sheep; +MD: net/minecraft/world/entity/animal/Sheep/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Sheep/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Sheep/m_218261_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/getRandomSheepColor (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_289136_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/item/crafting/CraftingRecipe;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Sheep/lambda$getOffspringColor$3 (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/item/crafting/CraftingRecipe;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Sheep/m_289137_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/lambda$getOffspringColor$4 (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29820_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/Sheep/lambda$mobInteract$2 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/Sheep/m_29823_ (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/getOffspringColor (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29829_ (Lnet/minecraft/world/item/DyeColor;)[F net/minecraft/world/entity/animal/Sheep/getColorArray (Lnet/minecraft/world/item/DyeColor;)[F +MD: net/minecraft/world/entity/animal/Sheep/m_29831_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/inventory/CraftingContainer; net/minecraft/world/entity/animal/Sheep/makeContainer (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/inventory/CraftingContainer; +MD: net/minecraft/world/entity/animal/Sheep/m_29840_ (Ljava/util/EnumMap;)V net/minecraft/world/entity/animal/Sheep/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/entity/animal/Sheep/m_29855_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/Sheep/setColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/Sheep/m_29865_ (Lnet/minecraft/world/item/DyeColor;)[F net/minecraft/world/entity/animal/Sheep/createSheepColor (Lnet/minecraft/world/item/DyeColor;)[F +MD: net/minecraft/world/entity/animal/Sheep/m_29867_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/lambda$static$1 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29873_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Sheep/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Sheep/m_29874_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29875_ ()Z net/minecraft/world/entity/animal/Sheep/isSheared ()Z +MD: net/minecraft/world/entity/animal/Sheep/m_29878_ (Z)V net/minecraft/world/entity/animal/Sheep/setSheared (Z)V +MD: net/minecraft/world/entity/animal/Sheep/m_29880_ (F)F net/minecraft/world/entity/animal/Sheep/getHeadEatPositionScale (F)F +MD: net/minecraft/world/entity/animal/Sheep/m_29882_ (F)F net/minecraft/world/entity/animal/Sheep/getHeadEatAngleScale (F)F +MD: net/minecraft/world/entity/animal/Sheep/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Sheep/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/Sheep/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/Sheep/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Sheep/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Sheep/m_6220_ ()Z net/minecraft/world/entity/animal/Sheep/readyForShearing ()Z +MD: net/minecraft/world/entity/animal/Sheep/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Sheep/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Sheep/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Sheep/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Sheep/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Sheep/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Sheep/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Sheep/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Sheep/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Sheep/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Sheep/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Sheep/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/m_7582_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/Sheep/getDefaultLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/Sheep/m_7822_ (B)V net/minecraft/world/entity/animal/Sheep/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Sheep/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Sheep/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/m_8024_ ()V net/minecraft/world/entity/animal/Sheep/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8035_ ()V net/minecraft/world/entity/animal/Sheep/ate ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8097_ ()V net/minecraft/world/entity/animal/Sheep/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8099_ ()V net/minecraft/world/entity/animal/Sheep/registerGoals ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8107_ ()V net/minecraft/world/entity/animal/Sheep/aiStep ()V +MD: net/minecraft/world/entity/animal/Sheep$1/ (Lnet/minecraft/world/inventory/MenuType;I)V net/minecraft/world/entity/animal/Sheep$1/ (Lnet/minecraft/world/inventory/MenuType;I)V +MD: net/minecraft/world/entity/animal/Sheep$1/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Sheep$1/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Sheep$1/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Sheep$1/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Sheep$2/ ()V net/minecraft/world/entity/animal/Sheep$2/ ()V +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/ShoulderRidingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/m_29895_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/animal/ShoulderRidingEntity/setEntityOnShoulder (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/m_29897_ ()Z net/minecraft/world/entity/animal/ShoulderRidingEntity/canSitOnShoulder ()Z +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/m_8119_ ()V net/minecraft/world/entity/animal/ShoulderRidingEntity/tick ()V +MD: net/minecraft/world/entity/animal/SnowGolem/ ()V net/minecraft/world/entity/animal/SnowGolem/ ()V +MD: net/minecraft/world/entity/animal/SnowGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/SnowGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_29908_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/SnowGolem/lambda$mobInteract$1 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_29930_ ()Z net/minecraft/world/entity/animal/SnowGolem/hasPumpkin ()Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_29931_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/SnowGolem/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_29934_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/SnowGolem/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/SnowGolem/m_29936_ (Z)V net/minecraft/world/entity/animal/SnowGolem/setPumpkin (Z)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/SnowGolem/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/SnowGolem/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/SnowGolem/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/SnowGolem/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/SnowGolem/m_6126_ ()Z net/minecraft/world/entity/animal/SnowGolem/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_6220_ ()Z net/minecraft/world/entity/animal/SnowGolem/readyForShearing ()Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/SnowGolem/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/SnowGolem/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/animal/SnowGolem/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/SnowGolem/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/SnowGolem/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/SnowGolem/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/SnowGolem/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/SnowGolem/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/SnowGolem/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/SnowGolem/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/SnowGolem/m_8097_ ()V net/minecraft/world/entity/animal/SnowGolem/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/SnowGolem/m_8099_ ()V net/minecraft/world/entity/animal/SnowGolem/registerGoals ()V +MD: net/minecraft/world/entity/animal/SnowGolem/m_8107_ ()V net/minecraft/world/entity/animal/SnowGolem/aiStep ()V +MD: net/minecraft/world/entity/animal/Squid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Squid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Squid/m_142033_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/animal/Squid/getInkParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/animal/Squid/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/animal/Squid/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/animal/Squid/m_142555_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getSquirtSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_149049_ (Lnet/minecraft/world/entity/animal/Squid;)Z net/minecraft/world/entity/animal/Squid/access$000 (Lnet/minecraft/world/entity/animal/Squid;)Z +MD: net/minecraft/world/entity/animal/Squid/m_29958_ (FFF)V net/minecraft/world/entity/animal/Squid/setMovementVector (FFF)V +MD: net/minecraft/world/entity/animal/Squid/m_29981_ ()Z net/minecraft/world/entity/animal/Squid/hasMovementVector ()Z +MD: net/minecraft/world/entity/animal/Squid/m_29982_ ()V net/minecraft/world/entity/animal/Squid/spawnInk ()V +MD: net/minecraft/world/entity/animal/Squid/m_29985_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Squid/rotateVector (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Squid/m_29988_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Squid/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Squid/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_6121_ ()F net/minecraft/world/entity/animal/Squid/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Squid/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Squid/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Squid/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Squid/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Squid/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Squid/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Squid/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Squid/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Squid/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_7822_ (B)V net/minecraft/world/entity/animal/Squid/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Squid/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_8099_ ()V net/minecraft/world/entity/animal/Squid/registerGoals ()V +MD: net/minecraft/world/entity/animal/Squid/m_8107_ ()V net/minecraft/world/entity/animal/Squid/aiStep ()V +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/ (Lnet/minecraft/world/entity/animal/Squid;)V net/minecraft/world/entity/animal/Squid$SquidFleeGoal/ (Lnet/minecraft/world/entity/animal/Squid;)V +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_183429_ ()Z net/minecraft/world/entity/animal/Squid$SquidFleeGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Squid$SquidFleeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_8037_ ()V net/minecraft/world/entity/animal/Squid$SquidFleeGoal/tick ()V +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_8056_ ()V net/minecraft/world/entity/animal/Squid$SquidFleeGoal/start ()V +MD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/ (Lnet/minecraft/world/entity/animal/Squid;Lnet/minecraft/world/entity/animal/Squid;)V net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/ (Lnet/minecraft/world/entity/animal/Squid;Lnet/minecraft/world/entity/animal/Squid;)V +MD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/m_8037_ ()V net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/tick ()V +MD: net/minecraft/world/entity/animal/TropicalFish/ ()V net/minecraft/world/entity/animal/TropicalFish/ ()V +MD: net/minecraft/world/entity/animal/TropicalFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/TropicalFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_218266_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/TropicalFish/checkTropicalFishSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/TropicalFish/m_262388_ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)I net/minecraft/world/entity/animal/TropicalFish/packVariant (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)I +MD: net/minecraft/world/entity/animal/TropicalFish/m_262390_ (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish/getPattern (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish/m_262459_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getBaseColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_262477_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getPatternColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/TropicalFish/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/TropicalFish/m_28464_ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;)V net/minecraft/world/entity/animal/TropicalFish/setVariant (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/TropicalFish/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_28554_ ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish/getVariant ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/TropicalFish/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30030_ (I)Ljava/lang/String; net/minecraft/world/entity/animal/TropicalFish/getPredefinedName (I)Ljava/lang/String; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30042_ ()I net/minecraft/world/entity/animal/TropicalFish/getPackedVariant ()I +MD: net/minecraft/world/entity/animal/TropicalFish/m_30050_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getBaseColor (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30052_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getPatternColor (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30056_ (I)V net/minecraft/world/entity/animal/TropicalFish/setPackedVariant (I)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/TropicalFish/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/TropicalFish/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/TropicalFish/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_7296_ (I)Z net/minecraft/world/entity/animal/TropicalFish/isMaxGroupSizeReached (I)Z +MD: net/minecraft/world/entity/animal/TropicalFish/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/TropicalFish/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/TropicalFish/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_8097_ ()V net/minecraft/world/entity/animal/TropicalFish/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/TropicalFish$Base/ ()V net/minecraft/world/entity/animal/TropicalFish$Base/ ()V +MD: net/minecraft/world/entity/animal/TropicalFish$Base/ (Ljava/lang/String;II)V net/minecraft/world/entity/animal/TropicalFish$Base/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/animal/TropicalFish$Base/m_262471_ ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Base/$values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Base/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Base/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Base/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Base/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/ ()V net/minecraft/world/entity/animal/TropicalFish$Pattern/ ()V +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/entity/animal/TropicalFish$Base;I)V net/minecraft/world/entity/animal/TropicalFish$Pattern/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/entity/animal/TropicalFish$Base;I)V +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_149065_ ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/$values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262371_ ()Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Pattern/base ()Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262381_ (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/byId (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262435_ ()I net/minecraft/world/entity/animal/TropicalFish$Pattern/getPackedId ()I +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262502_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/animal/TropicalFish$Pattern/displayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/TropicalFish$Pattern/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/ (Lnet/minecraft/world/entity/animal/TropicalFish;Lnet/minecraft/world/entity/animal/TropicalFish$Variant;)V net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/ (Lnet/minecraft/world/entity/animal/TropicalFish;Lnet/minecraft/world/entity/animal/TropicalFish$Variant;)V +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/TropicalFish$Variant/ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/TropicalFish$Variant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262204_ ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Variant/pattern ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262223_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish$Variant/patternColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262309_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish$Variant/baseColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/hashCode ()I net/minecraft/world/entity/animal/TropicalFish$Variant/hashCode ()I +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/m_262472_ ()I net/minecraft/world/entity/animal/TropicalFish$Variant/getPackedId ()I +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/toString ()Ljava/lang/String; net/minecraft/world/entity/animal/TropicalFish$Variant/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Turtle/ ()V net/minecraft/world/entity/animal/Turtle/ ()V +MD: net/minecraft/world/entity/animal/Turtle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Turtle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Turtle/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Turtle/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Turtle/m_218272_ (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Turtle/access$000 (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Turtle/m_218274_ (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Turtle/access$100 (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Turtle/m_218276_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Turtle/checkTurtleSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_289138_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Turtle/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_30205_ ()Z net/minecraft/world/entity/animal/Turtle/hasEgg ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30206_ ()Z net/minecraft/world/entity/animal/Turtle/isLayingEgg ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30207_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Turtle/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Turtle/m_30208_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Turtle/getHomePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Turtle/m_30209_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Turtle/getTravelPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Turtle/m_30211_ ()Z net/minecraft/world/entity/animal/Turtle/isGoingHome ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30212_ ()Z net/minecraft/world/entity/animal/Turtle/isTravelling ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30219_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Turtle/setHomePos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Turtle/m_30223_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Turtle/setTravelPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Turtle/m_30232_ ()V net/minecraft/world/entity/animal/Turtle/ageBoundaryReached ()V +MD: net/minecraft/world/entity/animal/Turtle/m_30234_ (Z)V net/minecraft/world/entity/animal/Turtle/setHasEgg (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_30236_ (Z)V net/minecraft/world/entity/animal/Turtle/setLayingEgg (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_30238_ (Z)V net/minecraft/world/entity/animal/Turtle/setGoingHome (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_30240_ (Z)V net/minecraft/world/entity/animal/Turtle/setTravelling (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/Turtle/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/Turtle/m_5625_ (F)V net/minecraft/world/entity/animal/Turtle/playSwimSound (F)V +MD: net/minecraft/world/entity/animal/Turtle/m_5957_ ()Z net/minecraft/world/entity/animal/Turtle/canFallInLove ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Turtle/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Turtle/m_6040_ ()Z net/minecraft/world/entity/animal/Turtle/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_6059_ ()F net/minecraft/world/entity/animal/Turtle/nextStep ()F +MD: net/minecraft/world/entity/animal/Turtle/m_6063_ ()Z net/minecraft/world/entity/animal/Turtle/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_6134_ ()F net/minecraft/world/entity/animal/Turtle/getScale ()F +MD: net/minecraft/world/entity/animal/Turtle/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/Turtle/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/Turtle/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Turtle/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Turtle/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Turtle/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Turtle/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Turtle/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Turtle/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Turtle/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Turtle/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/animal/Turtle/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/animal/Turtle/m_8097_ ()V net/minecraft/world/entity/animal/Turtle/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Turtle/m_8099_ ()V net/minecraft/world/entity/animal/Turtle/registerGoals ()V +MD: net/minecraft/world/entity/animal/Turtle/m_8100_ ()I net/minecraft/world/entity/animal/Turtle/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Turtle/m_8107_ ()V net/minecraft/world/entity/animal/Turtle/aiStep ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/m_8026_ ()V net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/breed ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8037_ ()V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8041_ ()V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/stop ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8056_ ()V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/start ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_8064_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_8037_ ()V net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/ (Lnet/minecraft/world/entity/animal/Turtle;)V net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/ (Lnet/minecraft/world/entity/animal/Turtle;)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/m_30288_ ()V net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/updateSpeed ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/ (Lnet/minecraft/world/entity/animal/Turtle;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/ (Lnet/minecraft/world/entity/animal/Turtle;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/ (Lnet/minecraft/world/entity/animal/Turtle;DI)V net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/ (Lnet/minecraft/world/entity/animal/Turtle;DI)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8037_ ()V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8041_ ()V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/stop ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8056_ ()V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/start ()V +MD: net/minecraft/world/entity/animal/WaterAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/WaterAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/WaterAnimal/m_213860_ ()I net/minecraft/world/entity/animal/WaterAnimal/getExperienceReward ()I +MD: net/minecraft/world/entity/animal/WaterAnimal/m_218282_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/WaterAnimal/checkSurfaceWaterAnimalSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6040_ ()Z net/minecraft/world/entity/animal/WaterAnimal/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6063_ ()Z net/minecraft/world/entity/animal/WaterAnimal/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6075_ ()V net/minecraft/world/entity/animal/WaterAnimal/baseTick ()V +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6229_ (I)V net/minecraft/world/entity/animal/WaterAnimal/handleAirSupply (I)V +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/WaterAnimal/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/WaterAnimal/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/WaterAnimal/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_8100_ ()I net/minecraft/world/entity/animal/WaterAnimal/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Wolf/ ()V net/minecraft/world/entity/animal/Wolf/ ()V +MD: net/minecraft/world/entity/animal/Wolf/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Wolf/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Wolf/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Wolf; net/minecraft/world/entity/animal/Wolf/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Wolf; +MD: net/minecraft/world/entity/animal/Wolf/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Wolf/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Wolf/m_218289_ (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Wolf/access$000 (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Wolf/m_218291_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Wolf/checkWolfSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_289139_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Wolf/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_30397_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/Wolf/setCollarColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/Wolf/m_30425_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Wolf/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Wolf/m_30426_ ()Z net/minecraft/world/entity/animal/Wolf/isWet ()Z +MD: net/minecraft/world/entity/animal/Wolf/m_30427_ ()F net/minecraft/world/entity/animal/Wolf/getTailAngle ()F +MD: net/minecraft/world/entity/animal/Wolf/m_30428_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Wolf/getCollarColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Wolf/m_30429_ ()Z net/minecraft/world/entity/animal/Wolf/isInterested ()Z +MD: net/minecraft/world/entity/animal/Wolf/m_30430_ ()V net/minecraft/world/entity/animal/Wolf/cancelShake ()V +MD: net/minecraft/world/entity/animal/Wolf/m_30432_ (FF)F net/minecraft/world/entity/animal/Wolf/getBodyRollAngle (FF)F +MD: net/minecraft/world/entity/animal/Wolf/m_30444_ (Z)V net/minecraft/world/entity/animal/Wolf/setIsInterested (Z)V +MD: net/minecraft/world/entity/animal/Wolf/m_30446_ (F)F net/minecraft/world/entity/animal/Wolf/getWetShade (F)F +MD: net/minecraft/world/entity/animal/Wolf/m_30448_ (F)F net/minecraft/world/entity/animal/Wolf/getHeadRollAngle (F)F +MD: net/minecraft/world/entity/animal/Wolf/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Wolf/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Wolf/m_5792_ ()I net/minecraft/world/entity/animal/Wolf/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/Wolf/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Wolf/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Wolf/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/Wolf/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/Wolf/m_6121_ ()F net/minecraft/world/entity/animal/Wolf/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Wolf/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Wolf/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Wolf/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Wolf/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Wolf/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Wolf/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/Wolf/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/Wolf/m_6784_ ()I net/minecraft/world/entity/animal/Wolf/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/Wolf/m_6825_ ()V net/minecraft/world/entity/animal/Wolf/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/Wolf/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Wolf/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/Wolf/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7105_ (Z)V net/minecraft/world/entity/animal/Wolf/setTame (Z)V +MD: net/minecraft/world/entity/animal/Wolf/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Wolf/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Wolf/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Wolf/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Wolf/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Wolf/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Wolf/m_7757_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Wolf/wantsToAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_7822_ (B)V net/minecraft/world/entity/animal/Wolf/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Wolf/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Wolf/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_7870_ (I)V net/minecraft/world/entity/animal/Wolf/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/Wolf/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Wolf/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Wolf/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Wolf/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Wolf/m_8097_ ()V net/minecraft/world/entity/animal/Wolf/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8099_ ()V net/minecraft/world/entity/animal/Wolf/registerGoals ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8107_ ()V net/minecraft/world/entity/animal/Wolf/aiStep ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8119_ ()V net/minecraft/world/entity/animal/Wolf/tick ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8132_ ()I net/minecraft/world/entity/animal/Wolf/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Wolf;Lnet/minecraft/world/entity/animal/Wolf;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Wolf;Lnet/minecraft/world/entity/animal/Wolf;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_30460_ (Lnet/minecraft/world/entity/animal/horse/Llama;)Z net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/avoidLlama (Lnet/minecraft/world/entity/animal/horse/Llama;)Z +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_8037_ ()V net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/tick ()V +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_8056_ ()V net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/start ()V +MD: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/ (Lnet/minecraft/world/entity/animal/Wolf;D)V net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/ (Lnet/minecraft/world/entity/animal/Wolf;D)V +MD: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/ ()V net/minecraft/world/entity/animal/allay/Allay/ ()V +MD: net/minecraft/world/entity/animal/allay/Allay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/allay/Allay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_142039_ ()Z net/minecraft/world/entity/animal/allay/Allay/isFlapping ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_213552_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/entity/animal/allay/Allay/getPickupReach ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/entity/animal/allay/Allay/m_213651_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/animal/allay/Allay/updateDynamicGameEventListener (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_213814_ ()Z net/minecraft/world/entity/animal/allay/Allay/shouldStayCloseToLeashHolder ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_21531_ ()Z net/minecraft/world/entity/animal/allay/Allay/canPickUpLoot ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218324_ ()Z net/minecraft/world/entity/animal/allay/Allay/canDuplicate ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218351_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/animal/allay/Allay/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_218375_ ()V net/minecraft/world/entity/animal/allay/Allay/updateDuplicationCooldown ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_218376_ ()V net/minecraft/world/entity/animal/allay/Allay/duplicateAllay ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_218377_ ()Z net/minecraft/world/entity/animal/allay/Allay/isOnPickupCooldown ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218388_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/allay/Allay/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/allay/Allay/m_218389_ ()Z net/minecraft/world/entity/animal/allay/Allay/hasItemInHand ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218394_ (F)F net/minecraft/world/entity/animal/allay/Allay/getHoldingItemAnimationProgress (F)F +MD: net/minecraft/world/entity/animal/allay/Allay/m_239302_ ()Z net/minecraft/world/entity/animal/allay/Allay/isSpinning ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_239358_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/allay/Allay/removeInteractionItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_239559_ ()Z net/minecraft/world/entity/animal/allay/Allay/isDancing ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_239735_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/isDuplicationItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_239811_ ()V net/minecraft/world/entity/animal/allay/Allay/resetDuplicationCooldown ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_239812_ ()Z net/minecraft/world/entity/animal/allay/Allay/shouldStopDancing ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_240056_ (F)F net/minecraft/world/entity/animal/allay/Allay/getSpinningProgress (F)F +MD: net/minecraft/world/entity/animal/allay/Allay/m_240069_ ()V net/minecraft/world/entity/animal/allay/Allay/spawnHeartParticle ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_240101_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/animal/allay/Allay/setJukeboxPlaying (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_240177_ (Z)V net/minecraft/world/entity/animal/allay/Allay/setDancing (Z)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_245613_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/allayConsidersItemEqual (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_246525_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/equipmentHasChanged (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_246801_ ()Z net/minecraft/world/entity/animal/allay/Allay/isPanicking ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_247678_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/hasNonMatchingPotion (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_279930_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/entity/animal/allay/Allay/lambda$readAdditionalSaveData$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/entity/animal/allay/Allay/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/entity/animal/allay/Allay/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/entity/animal/allay/Allay/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/entity/animal/allay/Allay/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/animal/allay/Allay/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/animal/allay/Allay/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/allay/Allay/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/allay/Allay/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/allay/Allay/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/allay/Allay/m_5907_ ()V net/minecraft/world/entity/animal/allay/Allay/dropEquipment ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/allay/Allay/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/allay/Allay/m_6049_ ()D net/minecraft/world/entity/animal/allay/Allay/getMyRidingOffset ()D +MD: net/minecraft/world/entity/animal/allay/Allay/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/allay/Allay/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/allay/Allay/m_6121_ ()F net/minecraft/world/entity/animal/allay/Allay/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/allay/Allay/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/allay/Allay/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/allay/Allay/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/allay/Allay/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/allay/Allay/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/allay/Allay/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_6785_ (D)Z net/minecraft/world/entity/animal/allay/Allay/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/allay/Allay/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/allay/Allay/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/allay/Allay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/allay/Allay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/allay/Allay/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/allay/Allay/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/allay/Allay/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7822_ (B)V net/minecraft/world/entity/animal/allay/Allay/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/allay/Allay/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/allay/Allay/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/allay/Allay/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/allay/Allay/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/allay/Allay/m_8024_ ()V net/minecraft/world/entity/animal/allay/Allay/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8025_ ()V net/minecraft/world/entity/animal/allay/Allay/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/allay/Allay/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/allay/Allay/m_8097_ ()V net/minecraft/world/entity/animal/allay/Allay/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8107_ ()V net/minecraft/world/entity/animal/allay/Allay/aiStep ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8119_ ()V net/minecraft/world/entity/animal/allay/Allay/tick ()V +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/ (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/ (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/m_142078_ ()I net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/getListenerRadius ()I +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/ (Lnet/minecraft/world/entity/animal/allay/Allay;)V net/minecraft/world/entity/animal/allay/Allay$VibrationUser/ (Lnet/minecraft/world/entity/animal/allay/Allay;)V +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/entity/animal/allay/Allay$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/entity/animal/allay/Allay$VibrationUser/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/entity/animal/allay/Allay$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/animal/allay/Allay$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280351_ ()I net/minecraft/world/entity/animal/allay/Allay$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/entity/animal/allay/AllayAi/ ()V net/minecraft/world/entity/animal/allay/AllayAi/ ()V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218408_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/ai/behavior/PositionTracker; net/minecraft/world/entity/animal/allay/AllayAi/lambda$getLikedPlayerPositionTracker$1 (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/ai/behavior/PositionTracker; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218410_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/allay/AllayAi/getLikedPlayer (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218412_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/world/entity/animal/allay/AllayAi/shouldDepositItemsAtLikedNoteblock (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218416_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/allay/AllayAi/hearNoteblock (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218419_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/allay/AllayAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218421_ (Lnet/minecraft/world/entity/animal/allay/Allay;)V net/minecraft/world/entity/animal/allay/AllayAi/updateActivity (Lnet/minecraft/world/entity/animal/allay/Allay;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218423_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/allay/AllayAi/getItemDepositPosition (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218425_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/allay/AllayAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218427_ (Lnet/minecraft/world/entity/animal/allay/Allay;)Z net/minecraft/world/entity/animal/allay/AllayAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/animal/allay/Allay;)Z +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218429_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/allay/AllayAi/getLikedPlayerPositionTracker (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218431_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/allay/AllayAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_271971_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/allay/AllayAi/hasWantedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/ ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/axolotl/Axolotl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142066_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/canBeSeenAsEnemy ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/axolotl/Axolotl/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142115_ ()Ljava/util/Map; net/minecraft/world/entity/animal/axolotl/Axolotl/getModelRotationValues ()Ljava/util/Map; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/axolotl/Axolotl/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142593_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/animal/axolotl/Axolotl/getMeleeAttackRangeSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/axolotl/Axolotl/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149173_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/axolotl/Axolotl/applySupportingEffects (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149175_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/isPlayingDead ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149176_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/axolotl/Axolotl/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149177_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/rehydrate ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149193_ (I)V net/minecraft/world/entity/animal/axolotl/Axolotl/handleAirSupply (I)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149198_ (Z)V net/minecraft/world/entity/animal/axolotl/Axolotl/setPlayingDead (Z)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_218435_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/useRareVariant (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_218437_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/checkAxolotlSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_218443_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/axolotl/Axolotl/onStopAttacking (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_27487_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/fromBucket ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_27497_ (Z)V net/minecraft/world/entity/animal/axolotl/Axolotl/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/axolotl/Axolotl/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28464_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V net/minecraft/world/entity/animal/axolotl/Axolotl/setVariant (Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/axolotl/Axolotl/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28554_ ()Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl/getVariant ()Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/axolotl/Axolotl/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/axolotl/Axolotl/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/axolotl/Axolotl/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/axolotl/Axolotl/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6040_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6062_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl/getMaxAirSupply ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6063_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/axolotl/Axolotl/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6075_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/baseTick ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/axolotl/Axolotl/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/axolotl/Axolotl/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/axolotl/Axolotl/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/axolotl/Axolotl/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/axolotl/Axolotl/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6785_ (D)Z net/minecraft/world/entity/animal/axolotl/Axolotl/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/axolotl/Axolotl/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/axolotl/Axolotl/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/axolotl/Axolotl/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/axolotl/Axolotl/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8023_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8024_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8025_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8032_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/playAmbientSound ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/axolotl/Axolotl/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8085_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8097_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8132_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/ ([Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/ ([Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/m_218446_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/getVariant (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;I)V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;I)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/m_8128_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/tick ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ ()V net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ (Ljava/lang/String;IILjava/lang/String;Z)V net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ (Ljava/lang/String;IILjava/lang/String;Z)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149242_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getId ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149243_ (I)[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/lambda$getSpawnVariant$1 (I)[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149250_ (ZLnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)Z net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/lambda$getSpawnVariant$0 (ZLnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149253_ ()Ljava/lang/String; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149258_ ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/$values ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_218448_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getCommonSpawnVariant (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_218450_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getSpawnVariant (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_218453_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getRareSpawnVariant (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_262843_ (I)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/byId (I)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/values ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/values ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149287_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/axolotl/AxolotlAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149288_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/entity/animal/axolotl/AxolotlAi/getSpeedModifierChasing (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149290_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/axolotl/AxolotlAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149292_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/updateActivity (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149294_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/entity/animal/axolotl/AxolotlAi/getSpeedModifierFollowingAdult (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149296_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initPlayDeadActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149298_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Ljava/util/Optional; net/minecraft/world/entity/animal/axolotl/AxolotlAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149300_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/entity/animal/axolotl/AxolotlAi/getSpeedModifier (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149302_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initFightActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149306_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149308_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_182380_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/axolotl/AxolotlAi/canSetWalkTargetFromLookTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/ ()V net/minecraft/world/entity/animal/axolotl/PlayDead/ ()V +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Z net/minecraft/world/entity/animal/axolotl/PlayDead/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/axolotl/PlayDead/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)V net/minecraft/world/entity/animal/axolotl/PlayDead/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)V +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/axolotl/PlayDead/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/axolotl/PlayDead/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)Z net/minecraft/world/entity/animal/axolotl/PlayDead/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)Z +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/ ()V net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/ ()V +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257460_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257726_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257850_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257909_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/camel/Camel/ ()V net/minecraft/world/entity/animal/camel/Camel/ ()V +MD: net/minecraft/world/entity/animal/camel/Camel/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/camel/Camel/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/camel/Camel; net/minecraft/world/entity/animal/camel/Camel/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/camel/Camel; +MD: net/minecraft/world/entity/animal/camel/Camel/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/camel/Camel/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/camel/Camel/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/camel/Camel/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/camel/Camel/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_245138_ ()V net/minecraft/world/entity/animal/camel/Camel/sitDown ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_245223_ ()V net/minecraft/world/entity/animal/camel/Camel/setupAnimationStates ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_245259_ ()Z net/minecraft/world/entity/animal/camel/Camel/canPerformRearing ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245293_ ()Z net/minecraft/world/entity/animal/camel/Camel/isDashing ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245346_ ()Z net/minecraft/world/entity/animal/camel/Camel/isInPoseTransition ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/animal/camel/Camel/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/animal/camel/Camel/m_245614_ ()I net/minecraft/world/entity/animal/camel/Camel/getJumpCooldown ()I +MD: net/minecraft/world/entity/animal/camel/Camel/m_245623_ ()Z net/minecraft/world/entity/animal/camel/Camel/isPanicking ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245824_ ()Z net/minecraft/world/entity/animal/camel/Camel/refuseToMove ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245894_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/camel/Camel/getLeashOffset (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/camel/Camel/m_245980_ (FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/camel/Camel/executeRidersJump (FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246174_ (J)V net/minecraft/world/entity/animal/camel/Camel/resetLastPoseChangeTick (J)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246237_ ()J net/minecraft/world/entity/animal/camel/Camel/getPoseTime ()J +MD: net/minecraft/world/entity/animal/camel/Camel/m_246265_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getSaddleSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_246718_ (ZF)D net/minecraft/world/entity/animal/camel/Camel/getBodyAnchorAnimationYOffset (ZF)D +MD: net/minecraft/world/entity/animal/camel/Camel/m_246761_ ()V net/minecraft/world/entity/animal/camel/Camel/standUp ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246824_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/camel/Camel/clampRotation (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246841_ (Z)V net/minecraft/world/entity/animal/camel/Camel/setDashing (Z)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_247319_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/camel/Camel/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/camel/Camel/m_247328_ ()V net/minecraft/world/entity/animal/camel/Camel/standUpInstantly ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_262813_ ()D net/minecraft/world/entity/animal/camel/Camel/getRiderShieldingHeight ()D +MD: net/minecraft/world/entity/animal/camel/Camel/m_264103_ ()Z net/minecraft/world/entity/animal/camel/Camel/isCamelSitting ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_264142_ (Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/animal/camel/Camel/clampHeadRotationToBody (Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_264410_ ()Z net/minecraft/world/entity/animal/camel/Camel/canSprint ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_264491_ (J)V net/minecraft/world/entity/animal/camel/Camel/resetLastPoseChangeTickToFullStand (J)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_267631_ ()Z net/minecraft/world/entity/animal/camel/Camel/isVisuallySittingDown ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_267689_ (F)V net/minecraft/world/entity/animal/camel/Camel/updateWalkAnimation (F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_267745_ ()Z net/minecraft/world/entity/animal/camel/Camel/isCamelVisuallySitting ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/camel/Camel/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/camel/Camel/m_274391_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/entity/animal/camel/Camel/getRiddenRotation (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/entity/animal/camel/Camel/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/camel/Camel/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_30614_ ()Z net/minecraft/world/entity/animal/camel/Camel/isTamed ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/camel/Camel/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/camel/Camel/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_5994_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/camel/Camel/handleEating (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_6048_ ()D net/minecraft/world/entity/animal/camel/Camel/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/camel/Camel/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/camel/Camel/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/camel/Camel/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/camel/Camel/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/camel/Camel/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/animal/camel/Camel/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/camel/Camel/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/camel/Camel/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/camel/Camel/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/camel/Camel/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/camel/Camel/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/camel/Camel/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/camel/Camel/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7132_ ()Z net/minecraft/world/entity/animal/camel/Camel/canJump ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_7199_ (I)V net/minecraft/world/entity/animal/camel/Camel/handleStartJump (I)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/camel/Camel/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_7340_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/camel/Camel/onPassengerTurned (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/camel/Camel/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/camel/Camel/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/camel/Camel/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/camel/Camel/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/animal/camel/Camel/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/camel/Camel/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7880_ (F)V net/minecraft/world/entity/animal/camel/Camel/onLeashDistance (F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7888_ (I)V net/minecraft/world/entity/animal/camel/Camel/onPlayerJump (I)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_8012_ ()V net/minecraft/world/entity/animal/camel/Camel/handleStopJump ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8024_ ()V net/minecraft/world/entity/animal/camel/Camel/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8025_ ()V net/minecraft/world/entity/animal/camel/Camel/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/camel/Camel/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/camel/Camel/m_8085_ ()I net/minecraft/world/entity/animal/camel/Camel/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/camel/Camel/m_8097_ ()V net/minecraft/world/entity/animal/camel/Camel/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8099_ ()V net/minecraft/world/entity/animal/camel/Camel/registerGoals ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8119_ ()V net/minecraft/world/entity/animal/camel/Camel/tick ()V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/m_8121_ ()V net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/camel/CamelAi/ ()V net/minecraft/world/entity/animal/camel/CamelAi/ ()V +MD: net/minecraft/world/entity/animal/camel/CamelAi/ ()V net/minecraft/world/entity/animal/camel/CamelAi/ ()V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_245825_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/camel/CamelAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246127_ (Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/world/entity/animal/camel/CamelAi/updateActivity (Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246286_ (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/camel/CamelAi/initMemories (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246511_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/camel/CamelAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246612_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/camel/CamelAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246665_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/camel/CamelAi/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246748_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/camel/CamelAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_247663_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/camel/CamelAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/ (F)V net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/ (F)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/ (I)V net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/ (I)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;)Z net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;)Z +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;J)V net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;J)V +MD: net/minecraft/world/entity/animal/frog/Frog/ ()V net/minecraft/world/entity/animal/frog/Frog/ ()V +MD: net/minecraft/world/entity/animal/frog/Frog/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/frog/Frog/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/frog/Frog/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/frog/Frog/m_21529_ ()I net/minecraft/world/entity/animal/frog/Frog/getHeadRotSpeed ()I +MD: net/minecraft/world/entity/animal/frog/Frog/m_218481_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/frog/Frog/setTongueTarget (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_218511_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/frog/Frog/checkFrogSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_218525_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/frog/Frog/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/frog/Frog/m_218532_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/frog/Frog/canEat (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_218536_ ()V net/minecraft/world/entity/animal/frog/Frog/eraseTongueTarget ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_218538_ ()Ljava/util/Optional; net/minecraft/world/entity/animal/frog/Frog/getTongueTarget ()Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/Frog/m_267689_ (F)V net/minecraft/world/entity/animal/frog/Frog/updateWalkAnimation (F)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_27563_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/world/entity/animal/frog/Frog/spawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/frog/Frog/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_28464_ (Lnet/minecraft/world/entity/animal/FrogVariant;)V net/minecraft/world/entity/animal/frog/Frog/setVariant (Lnet/minecraft/world/entity/animal/FrogVariant;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/frog/Frog/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/frog/Frog/m_28554_ ()Lnet/minecraft/world/entity/animal/FrogVariant; net/minecraft/world/entity/animal/frog/Frog/getVariant ()Lnet/minecraft/world/entity/animal/FrogVariant; +MD: net/minecraft/world/entity/animal/frog/Frog/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/frog/Frog/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/frog/Frog/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Frog/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Frog/m_5639_ (FF)I net/minecraft/world/entity/animal/frog/Frog/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/frog/Frog/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/frog/Frog/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/frog/Frog/m_6040_ ()Z net/minecraft/world/entity/animal/frog/Frog/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_6063_ ()Z net/minecraft/world/entity/animal/frog/Frog/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_6162_ ()Z net/minecraft/world/entity/animal/frog/Frog/isBaby ()Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Frog/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Frog/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/frog/Frog/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/frog/Frog/m_6863_ (Z)V net/minecraft/world/entity/animal/frog/Frog/setBaby (Z)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/frog/Frog/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/frog/Frog/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/frog/Frog/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/frog/Frog/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Frog/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Frog/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Frog/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Frog/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Frog/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Frog/m_8024_ ()V net/minecraft/world/entity/animal/frog/Frog/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_8025_ ()V net/minecraft/world/entity/animal/frog/Frog/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Frog/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Frog/m_8085_ ()I net/minecraft/world/entity/animal/frog/Frog/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/frog/Frog/m_8097_ ()V net/minecraft/world/entity/animal/frog/Frog/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_8119_ ()V net/minecraft/world/entity/animal/frog/Frog/tick ()V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/m_8106_ ()Z net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/ (Z)V net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/ (Z)V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/m_264193_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/canCutCorner (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/animal/frog/FrogAi/ ()V net/minecraft/world/entity/animal/frog/FrogAi/ ()V +MD: net/minecraft/world/entity/animal/frog/FrogAi/ ()V net/minecraft/world/entity/animal/frog/FrogAi/ ()V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218572_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/frog/FrogAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218573_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initSwimActivity$2 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218575_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/FrogAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218577_ (Lnet/minecraft/world/entity/animal/frog/Frog;)V net/minecraft/world/entity/animal/frog/FrogAi/updateActivity (Lnet/minecraft/world/entity/animal/frog/Frog;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218579_ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/frog/FrogAi/initMemories (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218584_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218586_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218588_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Z net/minecraft/world/entity/animal/frog/FrogAi/canAttack (Lnet/minecraft/world/entity/animal/frog/Frog;)Z +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218590_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218592_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initJumpActivity$5 (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218594_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initSwimActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218596_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initLaySpawnActivity$4 (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218598_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initLaySpawnActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218600_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initSwimActivity$3 (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218602_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initJumpActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218604_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initIdleActivity$1 (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218606_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initTongueActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_246199_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/frog/FrogAi/isAcceptableLandingSpot (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/animal/frog/ShootTongue/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_218640_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)V net/minecraft/world/entity/animal/frog/ShootTongue/eatEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_238358_ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/frog/ShootTongue/canPathfindToTarget (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_238443_ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/frog/ShootTongue/addUnreachableTargetToMemory (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/frog/ShootTongue/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z net/minecraft/world/entity/animal/frog/ShootTongue/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/frog/ShootTongue/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/animal/frog/ShootTongue/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/frog/ShootTongue/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/animal/frog/ShootTongue/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/animal/frog/ShootTongue/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/frog/ShootTongue/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z net/minecraft/world/entity/animal/frog/ShootTongue/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/frog/ShootTongue/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue$1/ ()V net/minecraft/world/entity/animal/frog/ShootTongue$1/ ()V +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/ ()V net/minecraft/world/entity/animal/frog/ShootTongue$State/ ()V +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/ (Ljava/lang/String;I)V net/minecraft/world/entity/animal/frog/ShootTongue$State/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/m_218674_ ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; net/minecraft/world/entity/animal/frog/ShootTongue$State/$values ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; net/minecraft/world/entity/animal/frog/ShootTongue$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/values ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; net/minecraft/world/entity/animal/frog/ShootTongue$State/values ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +MD: net/minecraft/world/entity/animal/frog/Tadpole/ ()V net/minecraft/world/entity/animal/frog/Tadpole/ ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/frog/Tadpole/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Tadpole/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218690_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/frog/Tadpole/feed (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218700_ (I)V net/minecraft/world/entity/animal/frog/Tadpole/ageUp (I)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218705_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/frog/Tadpole/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218710_ (I)V net/minecraft/world/entity/animal/frog/Tadpole/setAge (I)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218720_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/frog/Tadpole/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218721_ ()I net/minecraft/world/entity/animal/frog/Tadpole/getAge ()I +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218722_ ()V net/minecraft/world/entity/animal/frog/Tadpole/ageUp ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218723_ ()I net/minecraft/world/entity/animal/frog/Tadpole/getTicksLeftUntilAdult ()I +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218726_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/frog/Tadpole/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_27487_ ()Z net/minecraft/world/entity/animal/frog/Tadpole/fromBucket ()Z +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_27497_ (Z)V net/minecraft/world/entity/animal/frog/Tadpole/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/frog/Tadpole/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/frog/Tadpole/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/frog/Tadpole/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/frog/Tadpole/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6149_ ()Z net/minecraft/world/entity/animal/frog/Tadpole/shouldDropExperience ()Z +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Tadpole/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/frog/Tadpole/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Tadpole/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Tadpole/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8024_ ()V net/minecraft/world/entity/animal/frog/Tadpole/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8025_ ()V net/minecraft/world/entity/animal/frog/Tadpole/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Tadpole/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8107_ ()V net/minecraft/world/entity/animal/frog/Tadpole/aiStep ()V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/ ()V net/minecraft/world/entity/animal/frog/TadpoleAi/ ()V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218739_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/frog/TadpoleAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218741_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/TadpoleAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218743_ (Lnet/minecraft/world/entity/animal/frog/Tadpole;)V net/minecraft/world/entity/animal/frog/TadpoleAi/updateActivity (Lnet/minecraft/world/entity/animal/frog/Tadpole;)V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218745_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/TadpoleAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218747_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/TadpoleAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/Goat/ ()V net/minecraft/world/entity/animal/goat/Goat/ ()V +MD: net/minecraft/world/entity/animal/goat/Goat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/goat/Goat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/goat/Goat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/goat/Goat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/goat/Goat; net/minecraft/world/entity/animal/goat/Goat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/goat/Goat; +MD: net/minecraft/world/entity/animal/goat/Goat/m_149397_ ()Z net/minecraft/world/entity/animal/goat/Goat/isScreamingGoat ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_149398_ ()F net/minecraft/world/entity/animal/goat/Goat/getRammingXHeadRot ()F +MD: net/minecraft/world/entity/animal/goat/Goat/m_149401_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/goat/Goat/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/goat/Goat/m_149403_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getMilkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_149405_ (Z)V net/minecraft/world/entity/animal/goat/Goat/setScreamingGoat (Z)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_218752_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/goat/Goat/checkGoatSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218758_ ()Z net/minecraft/world/entity/animal/goat/Goat/hasLeftHorn ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218759_ ()Z net/minecraft/world/entity/animal/goat/Goat/hasRightHorn ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218760_ ()Z net/minecraft/world/entity/animal/goat/Goat/dropHorn ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218761_ ()V net/minecraft/world/entity/animal/goat/Goat/addHorns ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_218762_ ()V net/minecraft/world/entity/animal/goat/Goat/removeHorns ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_218763_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/goat/Goat/createHorn ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/goat/Goat/m_30232_ ()V net/minecraft/world/entity/animal/goat/Goat/ageBoundaryReached ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/goat/Goat/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/goat/Goat/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_5616_ (F)V net/minecraft/world/entity/animal/goat/Goat/setYHeadRot (F)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_5639_ (FF)I net/minecraft/world/entity/animal/goat/Goat/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/goat/Goat/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/goat/Goat/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/goat/Goat/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/goat/Goat/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/goat/Goat/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/goat/Goat/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/goat/Goat/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/goat/Goat/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/goat/Goat/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/goat/Goat/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/goat/Goat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/goat/Goat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_7822_ (B)V net/minecraft/world/entity/animal/goat/Goat/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_8024_ ()V net/minecraft/world/entity/animal/goat/Goat/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_8025_ ()V net/minecraft/world/entity/animal/goat/Goat/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/goat/Goat/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/goat/Goat/m_8085_ ()I net/minecraft/world/entity/animal/goat/Goat/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/goat/Goat/m_8097_ ()V net/minecraft/world/entity/animal/goat/Goat/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_8107_ ()V net/minecraft/world/entity/animal/goat/Goat/aiStep ()V +MD: net/minecraft/world/entity/animal/goat/GoatAi/ ()V net/minecraft/world/entity/animal/goat/GoatAi/ ()V +MD: net/minecraft/world/entity/animal/goat/GoatAi/ ()V net/minecraft/world/entity/animal/goat/GoatAi/ ()V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149444_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/goat/GoatAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149445_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initIdleActivity$1 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149447_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/goat/GoatAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149453_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149455_ (Lnet/minecraft/world/entity/animal/goat/Goat;)V net/minecraft/world/entity/animal/goat/GoatAi/updateActivity (Lnet/minecraft/world/entity/animal/goat/Goat;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149457_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149461_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initLongJumpActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149465_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initRamActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149467_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$5 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149473_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$3 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149475_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initLongJumpActivity$2 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218764_ (Lnet/minecraft/world/entity/animal/goat/Goat;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/goat/GoatAi/initMemories (Lnet/minecraft/world/entity/animal/goat/Goat;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218767_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$8 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218769_ (Lnet/minecraft/world/entity/animal/goat/Goat;)I net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$7 (Lnet/minecraft/world/entity/animal/goat/Goat;)I +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218771_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$6 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_287093_ (Lnet/minecraft/world/entity/animal/goat/Goat;)D net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$4 (Lnet/minecraft/world/entity/animal/goat/Goat;)D +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_289140_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/goat/GoatAi/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_246066_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/equipChest (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_30501_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/AbstractChestedHorse/createBaseChestedHorseAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_30502_ ()Z net/minecraft/world/entity/animal/horse/AbstractChestedHorse/hasChest ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_30504_ (Z)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/setChest (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_5907_ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/dropEquipment ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_6048_ ()D net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/AbstractChestedHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7488_ ()I net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getInventoryColumns ()I +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7506_ ()I net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getInventorySize ()I +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7609_ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/playChestEquipsSound ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_8097_ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/ ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/AbstractHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/animal/horse/AbstractHorse/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/AbstractHorse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149502_ (ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/animal/horse/AbstractHorse/createEquipmentSlotAccess (ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149508_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/entity/animal/horse/AbstractHorse/setOffspringAttributes (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149511_ (Lnet/minecraft/world/Container;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/hasInventoryChanged (Lnet/minecraft/world/Container;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149515_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$getSlot$8 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149517_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$getSlot$7 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/horse/AbstractHorse/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/horse/AbstractHorse/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/AbstractHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_21805_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/horse/AbstractHorse/getOwnerUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_245259_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canPerformRearing ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/animal/horse/AbstractHorse/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_245980_ (FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/horse/AbstractHorse/executeRidersJump (FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_246861_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/AbstractHorse/equipArmor (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_247131_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/AbstractHorse/getAmbientStandSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_247525_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/standIfPossible ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_247558_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getAmbientStandInterval ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271634_ (I)I net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$5 (I)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271635_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$0 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271636_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$3 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271637_ (I)I net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$4 (I)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271638_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$1 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271639_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$2 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271715_ (DDDDLnet/minecraft/util/RandomSource;)D net/minecraft/world/entity/animal/horse/AbstractHorse/createOffspringAttribute (DDDDLnet/minecraft/util/RandomSource;)D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271722_ (Ljava/util/function/IntUnaryOperator;)F net/minecraft/world/entity/animal/horse/AbstractHorse/generateMaxHealth (Ljava/util/function/IntUnaryOperator;)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271981_ (Ljava/util/function/DoubleSupplier;)D net/minecraft/world/entity/animal/horse/AbstractHorse/generateSpeed (Ljava/util/function/DoubleSupplier;)D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_272015_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/entity/ai/attributes/Attribute;DD)V net/minecraft/world/entity/animal/horse/AbstractHorse/setOffspringAttribute (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/entity/ai/attributes/Attribute;DD)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_272017_ (Ljava/util/function/DoubleSupplier;)D net/minecraft/world/entity/animal/horse/AbstractHorse/generateJumpStrength (Ljava/util/function/DoubleSupplier;)D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/AbstractHorse/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_274391_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/entity/animal/horse/AbstractHorse/getRiddenRotation (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/horse/AbstractHorse/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_278175_ (Lnet/minecraft/world/level/block/SoundType;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/isWoodSoundType (Lnet/minecraft/world/level/block/SoundType;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30533_ (F)F net/minecraft/world/entity/animal/horse/AbstractHorse/getMouthAnim (F)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30561_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/AbstractHorse/getDismountLocationInDirection (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30580_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/AbstractHorse/fedFood (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30586_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/horse/AbstractHorse/setOwnerUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30597_ (IZ)V net/minecraft/world/entity/animal/horse/AbstractHorse/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30610_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/eating ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30611_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/moveTail ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30612_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/openMouth ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30614_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isTamed ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30616_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isJumping ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30617_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isEating ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30622_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isStanding ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30623_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isBred ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30624_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getTemper ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30625_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/createInventory ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30626_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/getCustomJump ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30627_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/AbstractHorse/createBaseHorseAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30628_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canParent ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30635_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$6 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30637_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/tameWithName (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30647_ (I)Z net/minecraft/world/entity/animal/horse/AbstractHorse/getFlag (I)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30649_ (I)V net/minecraft/world/entity/animal/horse/AbstractHorse/setTemper (I)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30651_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setTamed (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30653_ (I)I net/minecraft/world/entity/animal/horse/AbstractHorse/modifyTemper (I)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30655_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setIsJumping (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30657_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setBred (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30661_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setEating (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30663_ (F)F net/minecraft/world/entity/animal/horse/AbstractHorse/getEatAnim (F)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30665_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setStanding (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30667_ (F)F net/minecraft/world/entity/animal/horse/AbstractHorse/getStandAnim (F)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30669_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/spawnTamingParticles (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5639_ (FF)I net/minecraft/world/entity/animal/horse/AbstractHorse/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/entity/animal/horse/AbstractHorse/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5792_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/horse/AbstractHorse/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5877_ (Lnet/minecraft/world/level/block/SoundType;)V net/minecraft/world/entity/animal/horse/AbstractHorse/playGallopSound (Lnet/minecraft/world/level/block/SoundType;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5907_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/dropEquipment ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5994_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/handleEating (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6010_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/isArmor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/AbstractHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6094_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isPushable ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6107_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isImmobile ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6121_ ()F net/minecraft/world/entity/animal/horse/AbstractHorse/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6147_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/onClimbable ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6254_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isSaddled ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/horse/AbstractHorse/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/horse/AbstractHorse/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/AbstractHorse/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/horse/AbstractHorse/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6741_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isSaddleable ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6835_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/horse/AbstractHorse/doPlayerRide (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7132_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canJump ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7199_ (I)V net/minecraft/world/entity/animal/horse/AbstractHorse/handleStartJump (I)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/horse/AbstractHorse/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractHorse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractHorse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7481_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isWearingArmor ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7482_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canWearArmor ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7486_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/playJumpSound ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7493_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/updateContainerEquipment ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7506_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getInventorySize ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7509_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/addBehaviourGoals ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7555_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getMaxTemper ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7559_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canEatGrass ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7564_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/makeMad ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7567_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/followMommy ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/AbstractHorse/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7822_ (B)V net/minecraft/world/entity/animal/horse/AbstractHorse/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/AbstractHorse/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/AbstractHorse/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7880_ (F)V net/minecraft/world/entity/animal/horse/AbstractHorse/onLeashDistance (F)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7888_ (I)V net/minecraft/world/entity/animal/horse/AbstractHorse/onPlayerJump (I)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8012_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/handleStopJump ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8097_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8099_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/registerGoals ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8100_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8107_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/aiStep ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8119_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/tick ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_9236_ ()Lnet/minecraft/world/level/EntityGetter; net/minecraft/world/entity/animal/horse/AbstractHorse/level ()Lnet/minecraft/world/level/EntityGetter; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;ILjava/util/function/Predicate;)V net/minecraft/world/entity/animal/horse/AbstractHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/AbstractHorse$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/Donkey/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Donkey/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Donkey/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Donkey/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/Donkey/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/ ()V net/minecraft/world/entity/animal/horse/Horse/ ()V +MD: net/minecraft/world/entity/animal/horse/Horse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Horse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Horse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Horse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/Horse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_28464_ (Lnet/minecraft/world/entity/animal/horse/Variant;)V net/minecraft/world/entity/animal/horse/Horse/setVariant (Lnet/minecraft/world/entity/animal/horse/Variant;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/horse/Horse/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/horse/Horse/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/horse/Horse/m_28554_ ()Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Horse/getVariant ()Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Horse/m_30699_ (Lnet/minecraft/world/entity/animal/horse/Variant;Lnet/minecraft/world/entity/animal/horse/Markings;)V net/minecraft/world/entity/animal/horse/Horse/setVariantAndMarkings (Lnet/minecraft/world/entity/animal/horse/Variant;Lnet/minecraft/world/entity/animal/horse/Markings;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_30722_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/Horse/getArmor ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/Horse/m_30724_ ()Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Horse/getMarkings ()Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Horse/m_30725_ ()I net/minecraft/world/entity/animal/horse/Horse/getTypeVariant ()I +MD: net/minecraft/world/entity/animal/horse/Horse/m_30732_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/Horse/setArmor (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_30734_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/Horse/setArmorEquipment (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_30736_ (I)V net/minecraft/world/entity/animal/horse/Horse/setTypeVariant (I)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/entity/animal/horse/Horse/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_5877_ (Lnet/minecraft/world/level/block/SoundType;)V net/minecraft/world/entity/animal/horse/Horse/playGallopSound (Lnet/minecraft/world/level/block/SoundType;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_6010_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Horse/isArmor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Horse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/Horse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/Horse/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/Horse/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Horse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Horse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_7482_ ()Z net/minecraft/world/entity/animal/horse/Horse/canWearArmor ()Z +MD: net/minecraft/world/entity/animal/horse/Horse/m_7493_ ()V net/minecraft/world/entity/animal/horse/Horse/updateContainerEquipment ()V +MD: net/minecraft/world/entity/animal/horse/Horse/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/Horse/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/Horse/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_8097_ ()V net/minecraft/world/entity/animal/horse/Horse/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/ (Lnet/minecraft/world/entity/animal/horse/Variant;)V net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/ (Lnet/minecraft/world/entity/animal/horse/Variant;)V +MD: net/minecraft/world/entity/animal/horse/Llama/ ()V net/minecraft/world/entity/animal/horse/Llama/ ()V +MD: net/minecraft/world/entity/animal/horse/Llama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Llama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/animal/horse/Llama/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Llama/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Llama/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/Llama/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/Llama/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/horse/Llama/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_218817_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/Llama/setRandomStrength (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_245259_ ()Z net/minecraft/world/entity/animal/horse/Llama/canPerformRearing ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/horse/Llama/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_28464_ (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V net/minecraft/world/entity/animal/horse/Llama/setVariant (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/horse/Llama/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/horse/Llama/m_28554_ ()Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama/getVariant ()Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30752_ (Z)V net/minecraft/world/entity/animal/horse/Llama/setDidSpit (Z)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30766_ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/Llama/joinCaravan (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30771_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/horse/Llama/setSwag (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30809_ ()V net/minecraft/world/entity/animal/horse/Llama/leaveCaravan ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30810_ ()Z net/minecraft/world/entity/animal/horse/Llama/hasCaravanTail ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_30811_ ()Z net/minecraft/world/entity/animal/horse/Llama/inCaravan ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_30812_ ()Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/Llama/getCaravanHead ()Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30823_ ()I net/minecraft/world/entity/animal/horse/Llama/getStrength ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_30824_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/Llama/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30826_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/horse/Llama/getSwag ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30827_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/horse/Llama/spit (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30835_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/horse/Llama/getDyeColor (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30840_ (I)V net/minecraft/world/entity/animal/horse/Llama/setStrength (I)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/entity/animal/horse/Llama/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_5823_ ()D net/minecraft/world/entity/animal/horse/Llama/followLeashSpeed ()D +MD: net/minecraft/world/entity/animal/horse/Llama/m_5994_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Llama/handleEating (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6010_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Llama/isArmor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6048_ ()D net/minecraft/world/entity/animal/horse/Llama/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/horse/Llama/m_6107_ ()Z net/minecraft/world/entity/animal/horse/Llama/isImmobile ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/animal/horse/Llama/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/Llama/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/Llama/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/horse/Llama/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/horse/Llama/m_6741_ ()Z net/minecraft/world/entity/animal/horse/Llama/isSaddleable ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Llama/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7127_ ()Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/Llama/makeNewLlama ()Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/horse/Llama/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Llama/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Llama/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7481_ ()Z net/minecraft/world/entity/animal/horse/Llama/isWearingArmor ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7482_ ()Z net/minecraft/world/entity/animal/horse/Llama/canWearArmor ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7488_ ()I net/minecraft/world/entity/animal/horse/Llama/getInventoryColumns ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_7493_ ()V net/minecraft/world/entity/animal/horse/Llama/updateContainerEquipment ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7506_ ()I net/minecraft/world/entity/animal/horse/Llama/getInventorySize ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7555_ ()I net/minecraft/world/entity/animal/horse/Llama/getMaxTemper ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_7559_ ()Z net/minecraft/world/entity/animal/horse/Llama/canEatGrass ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7565_ ()Z net/minecraft/world/entity/animal/horse/Llama/isTraderLlama ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7567_ ()V net/minecraft/world/entity/animal/horse/Llama/followMommy ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7609_ ()V net/minecraft/world/entity/animal/horse/Llama/playChestEquipsSound ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/Llama/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/Llama/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_8097_ ()V net/minecraft/world/entity/animal/horse/Llama/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_8099_ ()V net/minecraft/world/entity/animal/horse/Llama/registerGoals ()V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/m_289141_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/m_7623_ ()D net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/ (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/ (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/m_8045_ ()Z net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/ ()V net/minecraft/world/entity/animal/horse/Llama$Variant/ ()V +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/horse/Llama$Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_262370_ ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/$values ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_262452_ ()I net/minecraft/world/entity/animal/horse/Llama$Variant/getId ()I +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_262458_ (I)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/byId (I)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/horse/Llama$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Markings/ ()V net/minecraft/world/entity/animal/horse/Markings/ ()V +MD: net/minecraft/world/entity/animal/horse/Markings/ (Ljava/lang/String;II)V net/minecraft/world/entity/animal/horse/Markings/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/animal/horse/Markings/m_149547_ ()[Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/$values ()[Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Markings/m_30869_ ()I net/minecraft/world/entity/animal/horse/Markings/getId ()I +MD: net/minecraft/world/entity/animal/horse/Markings/m_30870_ (I)Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/byId (I)Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Markings/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Markings/values ()[Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/values ()[Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Mule/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Mule/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Mule/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Mule/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Mule/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7609_ ()V net/minecraft/world/entity/animal/horse/Mule/playChestEquipsSound ()V +MD: net/minecraft/world/entity/animal/horse/Mule/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/SkeletonHorse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_30918_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/SkeletonHorse/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_30919_ ()Z net/minecraft/world/entity/animal/horse/SkeletonHorse/isTrap ()Z +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_30923_ (Z)V net/minecraft/world/entity/animal/horse/SkeletonHorse/setTrap (Z)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_5625_ (F)V net/minecraft/world/entity/animal/horse/SkeletonHorse/playSwimSound (F)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6048_ ()D net/minecraft/world/entity/animal/horse/SkeletonHorse/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/SkeletonHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6108_ ()F net/minecraft/world/entity/animal/horse/SkeletonHorse/getWaterSlowDown ()F +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/horse/SkeletonHorse/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7486_ ()V net/minecraft/world/entity/animal/horse/SkeletonHorse/playJumpSound ()V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7509_ ()V net/minecraft/world/entity/animal/horse/SkeletonHorse/addBehaviourGoals ()V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_8107_ ()V net/minecraft/world/entity/animal/horse/SkeletonHorse/aiStep ()V +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/ (Lnet/minecraft/world/entity/animal/horse/SkeletonHorse;)V net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/ (Lnet/minecraft/world/entity/animal/horse/SkeletonHorse;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_30929_ (Lnet/minecraft/world/DifficultyInstance;)Lnet/minecraft/world/entity/animal/horse/AbstractHorse; net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/createHorse (Lnet/minecraft/world/DifficultyInstance;)Lnet/minecraft/world/entity/animal/horse/AbstractHorse; +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_30931_ (Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/world/entity/monster/Skeleton; net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/createSkeleton (Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/world/entity/monster/Skeleton; +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_30934_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/disenchant (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_8036_ ()Z net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_8037_ ()V net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/tick ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/TraderLlama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_149555_ (I)V net/minecraft/world/entity/animal/horse/TraderLlama/setDespawnDelay (I)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30951_ ()V net/minecraft/world/entity/animal/horse/TraderLlama/maybeDespawn ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30952_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/canDespawn ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30953_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/isLeashedToWanderingTrader ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30954_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/isLeashedToSomethingOtherThanTheWanderingTrader ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/TraderLlama/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_6835_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/horse/TraderLlama/doPlayerRide (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7127_ ()Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/TraderLlama/makeNewLlama ()Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/TraderLlama/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/TraderLlama/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7565_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/isTraderLlama ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_8099_ ()V net/minecraft/world/entity/animal/horse/TraderLlama/registerGoals ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_8107_ ()V net/minecraft/world/entity/animal/horse/TraderLlama/aiStep ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/m_8036_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/m_8056_ ()V net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/start ()V +MD: net/minecraft/world/entity/animal/horse/Variant/ ()V net/minecraft/world/entity/animal/horse/Variant/ ()V +MD: net/minecraft/world/entity/animal/horse/Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/horse/Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/horse/Variant/m_149559_ ()[Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/$values ()[Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Variant/m_30985_ ()I net/minecraft/world/entity/animal/horse/Variant/getId ()I +MD: net/minecraft/world/entity/animal/horse/Variant/m_30986_ (I)Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/byId (I)Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/horse/Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/horse/Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/ZombieHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/ZombieHorse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/ZombieHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_31008_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/ZombieHorse/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/ZombieHorse/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/ZombieHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/horse/ZombieHorse/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_7509_ ()V net/minecraft/world/entity/animal/horse/ZombieHorse/addBehaviourGoals ()V +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/ZombieHorse/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/ZombieHorse/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/ ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/sniffer/Sniffer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/sniffer/Sniffer/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271705_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/setState (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271740_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/dropSeed ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271798_ (I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/sniffer/Sniffer/lambda$calculateDigPosition$0 (I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271845_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/resetAnimations ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271851_ ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/onDiggingStart ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271874_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/storeExploredPosition (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271876_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/sniffer/Sniffer/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271898_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/canDig (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271905_ ()Ljava/util/Optional; net/minecraft/world/entity/animal/sniffer/Sniffer/calculateDigPosition ()Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271917_ ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer/getState ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271943_ (Z)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/onDiggingComplete (Z)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272034_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/transitionTo (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272076_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/canPlayDiggingSound ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272136_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/playSearchingSound ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272217_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/animal/sniffer/Sniffer/getExploredPositions ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272223_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/isPanicking ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272270_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/canDig ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272274_ (Lnet/minecraft/world/entity/AnimationState;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/emitDiggingParticles (Lnet/minecraft/world/entity/AnimationState;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_27563_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/world/entity/animal/sniffer/Sniffer/spawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278650_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/canSniff ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278663_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/isTempted ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278726_ ()F net/minecraft/world/entity/animal/sniffer/Sniffer/getNameTagOffsetY ()F +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278765_ ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/onScentingStart ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_280317_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/isSearching ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284177_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/onPathfindingStart ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284345_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/sniffer/Sniffer/getHeadBlock ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284388_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/sniffer/Sniffer/getHeadPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284461_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/onPathfindingDone ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_289142_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/lambda$calculateDigPosition$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_289143_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/lambda$canDig$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/sniffer/Sniffer/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6048_ ()D net/minecraft/world/entity/animal/sniffer/Sniffer/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/sniffer/Sniffer/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6135_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/jumpFromGround ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/sniffer/Sniffer/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/sniffer/Sniffer/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/sniffer/Sniffer/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6863_ (Z)V net/minecraft/world/entity/animal/sniffer/Sniffer/setBaby (Z)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/animal/sniffer/Sniffer/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/sniffer/Sniffer/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/sniffer/Sniffer/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/sniffer/Sniffer/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8024_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8025_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/sniffer/Sniffer/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8085_ ()I net/minecraft/world/entity/animal/sniffer/Sniffer/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8119_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/tick ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$1/ ()V net/minecraft/world/entity/animal/sniffer/Sniffer$1/ ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/ ()V net/minecraft/world/entity/animal/sniffer/Sniffer$State/ ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/ (Ljava/lang/String;I)V net/minecraft/world/entity/animal/sniffer/Sniffer$State/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/m_271975_ ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer$State/$values ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/values ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer$State/values ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_271706_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/updateActivity (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_271758_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initSniffingActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272204_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272207_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/sniffer/SnifferAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272250_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272260_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initDigActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_278737_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/sniffer/SnifferAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_278802_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/sniffer/SnifferAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_278810_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/SnifferAi/resetSniffing (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_288155_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; net/minecraft/world/entity/animal/sniffer/SnifferAi/lambda$initIdleActivity$1 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$1/ (F)V net/minecraft/world/entity/animal/sniffer/SnifferAi$1/ (F)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$1/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$1/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$1/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$1/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$2/ (Lnet/minecraft/world/entity/EntityType;F)V net/minecraft/world/entity/animal/sniffer/SnifferAi$2/ (Lnet/minecraft/world/entity/EntityType;F)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$2/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$2/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$2/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$2/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/world/entity/animal/sniffer/SnifferAi$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$3/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$3/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$3/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$3/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/ (I)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/ (I)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/ ()V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/ ()V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_272259_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/lambda$stop$0 (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Ljava/lang/String;FF)V net/minecraft/world/entity/boss/EnderDragonPart/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Ljava/lang/String;FF)V +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/boss/EnderDragonPart/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_142391_ ()Z net/minecraft/world/entity/boss/EnderDragonPart/shouldBeSaved ()Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/boss/EnderDragonPart/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_6087_ ()Z net/minecraft/world/entity/boss/EnderDragonPart/isPickable ()Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/EnderDragonPart/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/boss/EnderDragonPart/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_7306_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/EnderDragonPart/is (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/EnderDragonPart/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/EnderDragonPart/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_8097_ ()V net/minecraft/world/entity/boss/EnderDragonPart/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/boss/enderdragon/EndCrystal/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/boss/enderdragon/EndCrystal/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31047_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/onDestroyedBy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31052_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/setBeamTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31056_ (Z)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/setShowBottom (Z)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31064_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/boss/enderdragon/EndCrystal/getBeamTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31065_ ()Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/showsBottom ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6074_ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/kill ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6087_ ()Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/isPickable ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6783_ (D)Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_8097_ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_8119_ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/tick ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_142039_ ()Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/isFlapping ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_142043_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/onFlap ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_147207_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_287165_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getFightOrigin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_287231_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/setDragonFight (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_287266_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/setFightOrigin (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31101_ (IF)[D net/minecraft/world/entity/boss/enderdragon/EnderDragon/getLatencyPos (IF)[D +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31104_ (IILnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/boss/enderdragon/EnderDragon/findPath (IILnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31108_ (I[D[D)F net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHeadPartYOffset (I[D[D)F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31115_ (Lnet/minecraft/world/entity/boss/EnderDragonPart;DDD)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/tickPart (Lnet/minecraft/world/entity/boss/EnderDragonPart;DDD)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31120_ (Lnet/minecraft/world/entity/boss/EnderDragonPart;Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/hurt (Lnet/minecraft/world/entity/boss/EnderDragonPart;Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31124_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31128_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/boss/enderdragon/EnderDragon/reconstructPath (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31131_ (Ljava/util/List;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/knockBack (Ljava/util/List;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31139_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/checkWalls (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31141_ (Ljava/util/List;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/hurt (Ljava/util/List;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31155_ ()I net/minecraft/world/entity/boss/enderdragon/EnderDragon/findClosestNode ()I +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31156_ ()[Lnet/minecraft/world/entity/boss/EnderDragonPart; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getSubEntities ()[Lnet/minecraft/world/entity/boss/EnderDragonPart; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31157_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getPhaseManager ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31158_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getDragonFight ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31159_ ()F net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHeadYOffset ()F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31160_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/checkCrystals ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31161_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/reallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31164_ (D)F net/minecraft/world/entity/boss/enderdragon/EnderDragon/rotWrap (D)F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31167_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/boss/enderdragon/EnderDragon/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31170_ (DDD)I net/minecraft/world/entity/boss/enderdragon/EnderDragon/findClosestNode (DDD)I +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31174_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHeadLookVector (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6043_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/checkDespawn ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6048_ ()D net/minecraft/world/entity/boss/enderdragon/EnderDragon/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6072_ ()Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/canChangeDimensions ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6074_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/kill ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6087_ ()Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/isPickable ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6121_ ()F net/minecraft/world/entity/boss/enderdragon/EnderDragon/getSoundVolume ()F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6153_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/tickDeath ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_8097_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_8107_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/aiStep ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7081_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/end ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7089_ ()F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/getTurnSpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7584_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/onHurt (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_8059_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/m_7584_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/onHurt (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_31207_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/setTarget (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_31236_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/strafePlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_31242_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_31243_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_8059_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_31263_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_31264_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7089_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getTurnSpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7081_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/end ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7089_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getTurnSpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7584_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/onHurt (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_8059_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_31336_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/resetFlameCount ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_7081_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/end ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_289144_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/lambda$new$0 (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_31358_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_31364_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_31365_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_31375_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_31376_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ (ILjava/lang/Class;Ljava/lang/String;)V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ (ILjava/lang/Class;Ljava/lang/String;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31397_ ()Ljava/lang/reflect/Constructor; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getConstructor ()Ljava/lang/reflect/Constructor; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31398_ (I)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getById (I)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31400_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/createInstance (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31402_ (Ljava/lang/Class;Ljava/lang/String;)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/create (Ljava/lang/Class;Ljava/lang/String;)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31405_ ()I net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getId ()I +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31406_ ()I net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getCount ()I +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/toString ()Ljava/lang/String; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ ()V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/m_31415_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/getCurrentPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/m_31416_ (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/setPhase (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/m_31418_ (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/getPhase (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/ ()V net/minecraft/world/entity/boss/wither/WitherBoss/ ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/boss/wither/WitherBoss/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_147207_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/wither/WitherBoss/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31442_ (FFF)F net/minecraft/world/entity/boss/wither/WitherBoss/rotlerp (FFF)F +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31446_ (I)F net/minecraft/world/entity/boss/wither/WitherBoss/getHeadYRot (I)F +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31448_ (IDDDZ)V net/minecraft/world/entity/boss/wither/WitherBoss/performRangedAttack (IDDDZ)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31454_ (II)V net/minecraft/world/entity/boss/wither/WitherBoss/setAlternativeTarget (II)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31457_ (ILnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/boss/wither/WitherBoss/performRangedAttack (ILnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31480_ (I)F net/minecraft/world/entity/boss/wither/WitherBoss/getHeadXRot (I)F +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31491_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/boss/wither/WitherBoss/canDestroy (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31501_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/boss/wither/WitherBoss/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31502_ ()I net/minecraft/world/entity/boss/wither/WitherBoss/getInvulnerableTicks ()I +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31503_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/boss/wither/WitherBoss/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31506_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/makeInvulnerable ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31510_ (I)V net/minecraft/world/entity/boss/wither/WitherBoss/setInvulnerableTicks (I)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31512_ (I)I net/minecraft/world/entity/boss/wither/WitherBoss/getAlternativeTarget (I)I +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31514_ (I)D net/minecraft/world/entity/boss/wither/WitherBoss/getHeadX (I)D +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31516_ (I)D net/minecraft/world/entity/boss/wither/WitherBoss/getHeadY (I)D +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31518_ (I)D net/minecraft/world/entity/boss/wither/WitherBoss/getHeadZ (I)D +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/wither/WitherBoss/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/boss/wither/WitherBoss/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6043_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/checkDespawn ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6072_ ()Z net/minecraft/world/entity/boss/wither/WitherBoss/canChangeDimensions ()Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/boss/wither/WitherBoss/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6452_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/boss/wither/WitherBoss/stopSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6457_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/boss/wither/WitherBoss/startSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/wither/WitherBoss/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/boss/wither/WitherBoss/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6593_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/boss/wither/WitherBoss/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7090_ ()Z net/minecraft/world/entity/boss/wither/WitherBoss/isPowered ()Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/boss/wither/WitherBoss/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/wither/WitherBoss/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/wither/WitherBoss/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/wither/WitherBoss/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/boss/wither/WitherBoss/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/wither/WitherBoss/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/boss/wither/WitherBoss/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/wither/WitherBoss/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8024_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/customServerAiStep ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8097_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8099_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/registerGoals ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8107_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/aiStep ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)V net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/m_8036_ ()Z net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/canUse ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/ ()V net/minecraft/world/entity/decoration/ArmorStand/ ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_142065_ ()Z net/minecraft/world/entity/decoration/ArmorStand/canBeSeenByAnyone ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ArmorStand/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/decoration/ArmorStand/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_21515_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isEffectiveAi ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31560_ ()Z net/minecraft/world/entity/decoration/ArmorStand/hasPhysics ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31561_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/decoration/ArmorStand/writePose ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31565_ ()V net/minecraft/world/entity/decoration/ArmorStand/showBreakingParticles ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31566_ ()V net/minecraft/world/entity/decoration/ArmorStand/playBrokenSound ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31569_ (BIZ)B net/minecraft/world/entity/decoration/ArmorStand/setBit (BIZ)B +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31581_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/ArmorStand/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31588_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Z net/minecraft/world/entity/decoration/ArmorStand/swapItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31597_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setHeadPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31603_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setSmall (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31616_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setBodyPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31623_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setLeftArmPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31626_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/decoration/ArmorStand/isDisabled (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31628_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setRightArmPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31639_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setLeftLegPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31646_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/decoration/ArmorStand/brokenByPlayer (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31648_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/decoration/ArmorStand/causeDamage (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31651_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setRightLegPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31653_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/decoration/ArmorStand/brokenByAnything (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31657_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ArmorStand/readPose (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31659_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/decoration/ArmorStand/getClickedSlot (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31666_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isSmall ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31671_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isShowArms ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31674_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isNoBasePlate ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31675_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setShowArms (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31677_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isMarker ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31678_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setNoBasePlate (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31680_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getHeadPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31681_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setMarker (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31683_ (Z)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/decoration/ArmorStand/getDimensionsMarker (Z)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31685_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getBodyPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31688_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getLeftArmPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31689_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getRightArmPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31691_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getLeftLegPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31694_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getRightLegPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ArmorStand/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5616_ (F)V net/minecraft/world/entity/decoration/ArmorStand/setYHeadRot (F)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5618_ (F)V net/minecraft/world/entity/decoration/ArmorStand/setYBodyRot (F)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5632_ (FF)F net/minecraft/world/entity/decoration/ArmorStand/tickHeadTurn (FF)F +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/decoration/ArmorStand/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5789_ ()Z net/minecraft/world/entity/decoration/ArmorStand/attackable ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5801_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isAffectedByPotions ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6049_ ()D net/minecraft/world/entity/decoration/ArmorStand/getMyRidingOffset ()D +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6074_ ()V net/minecraft/world/entity/decoration/ArmorStand/kill ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6087_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isPickable ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6090_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6094_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isPushable ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6128_ ()Z net/minecraft/world/entity/decoration/ArmorStand/ignoreExplosion ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6138_ ()V net/minecraft/world/entity/decoration/ArmorStand/pushEntities ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6162_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isBaby ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/decoration/ArmorStand/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/decoration/ArmorStand/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6210_ ()V net/minecraft/world/entity/decoration/ArmorStand/refreshDimensions ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/decoration/ArmorStand/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/decoration/ArmorStand/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6783_ (D)Z net/minecraft/world/entity/decoration/ArmorStand/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6842_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setInvisible (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ArmorStand/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/decoration/ArmorStand/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/decoration/ArmorStand/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/decoration/ArmorStand/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7111_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/decoration/ArmorStand/interactAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/ArmorStand/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/ArmorStand/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/decoration/ArmorStand/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7371_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/decoration/ArmorStand/getLightProbePosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ArmorStand/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ArmorStand/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/decoration/ArmorStand/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7822_ (B)V net/minecraft/world/entity/decoration/ArmorStand/handleEntityEvent (B)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ArmorStand/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8034_ ()V net/minecraft/world/entity/decoration/ArmorStand/updateInvisibilityStatus ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/decoration/ArmorStand/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ArmorStand/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8097_ ()V net/minecraft/world/entity/decoration/ArmorStand/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8119_ ()V net/minecraft/world/entity/decoration/ArmorStand/tick ()V +MD: net/minecraft/world/entity/decoration/ArmorStand$1/ ()V net/minecraft/world/entity/decoration/ArmorStand$1/ ()V +MD: net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142541_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getPlaceSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142543_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getBreakSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142544_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getRemoveItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142545_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getRotateItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142546_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getAddItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142590_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/GlowItemFrame/getFrameItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/HangingEntity/ ()V net/minecraft/world/entity/decoration/HangingEntity/ ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_31709_ (I)D net/minecraft/world/entity/decoration/HangingEntity/offs (I)D +MD: net/minecraft/world/entity/decoration/HangingEntity/m_31733_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/HangingEntity/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_31748_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/decoration/HangingEntity/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/decoration/HangingEntity/m_5552_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/decoration/HangingEntity/spawnAtLocation (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/decoration/HangingEntity/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/HangingEntity/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_5997_ (DDD)V net/minecraft/world/entity/decoration/HangingEntity/push (DDD)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6022_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/HangingEntity/setDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6034_ (DDD)V net/minecraft/world/entity/decoration/HangingEntity/setPos (DDD)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6087_ ()Z net/minecraft/world/entity/decoration/HangingEntity/isPickable ()Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6093_ ()Z net/minecraft/world/entity/decoration/HangingEntity/repositionEntityAfterLoad ()Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6210_ ()V net/minecraft/world/entity/decoration/HangingEntity/refreshDimensions ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6350_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/decoration/HangingEntity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/decoration/HangingEntity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/decoration/HangingEntity/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6961_ (Lnet/minecraft/world/level/block/Mirror;)F net/minecraft/world/entity/decoration/HangingEntity/mirror (Lnet/minecraft/world/level/block/Mirror;)F +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7068_ ()I net/minecraft/world/entity/decoration/HangingEntity/getHeight ()I +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7076_ ()I net/minecraft/world/entity/decoration/HangingEntity/getWidth ()I +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7084_ ()V net/minecraft/world/entity/decoration/HangingEntity/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7087_ ()V net/minecraft/world/entity/decoration/HangingEntity/recalculateBoundingBox ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7088_ ()Z net/minecraft/world/entity/decoration/HangingEntity/survives ()Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/HangingEntity/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/HangingEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/HangingEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7890_ (Lnet/minecraft/world/level/block/Rotation;)F net/minecraft/world/entity/decoration/HangingEntity/rotate (Lnet/minecraft/world/level/block/Rotation;)F +MD: net/minecraft/world/entity/decoration/HangingEntity/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/decoration/HangingEntity/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_8097_ ()V net/minecraft/world/entity/decoration/HangingEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_8119_ ()V net/minecraft/world/entity/decoration/HangingEntity/tick ()V +MD: net/minecraft/world/entity/decoration/HangingEntity$1/ ()V net/minecraft/world/entity/decoration/HangingEntity$1/ ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/ ()V net/minecraft/world/entity/decoration/ItemFrame/ ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/decoration/ItemFrame/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/decoration/ItemFrame/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142541_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getPlaceSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142543_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getBreakSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142544_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getRemoveItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142545_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getRotateItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142546_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getAddItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142590_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame/getFrameItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_213816_ ()F net/minecraft/world/entity/decoration/ItemFrame/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/decoration/ItemFrame/m_218865_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ItemFrame/onItemChanged (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_218868_ ()Ljava/util/OptionalInt; net/minecraft/world/entity/decoration/ItemFrame/getFramedMapId ()Ljava/util/OptionalInt; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_218869_ ()Z net/minecraft/world/entity/decoration/ItemFrame/hasFramedMap ()Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_289145_ (I)V net/minecraft/world/entity/decoration/ItemFrame/lambda$removeFramedMap$0 (I)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31770_ (I)V net/minecraft/world/entity/decoration/ItemFrame/setRotation (I)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31772_ (IZ)V net/minecraft/world/entity/decoration/ItemFrame/setRotation (IZ)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31789_ (Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/entity/decoration/ItemFrame/setItem (Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31802_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/entity/decoration/ItemFrame/dropItem (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31805_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ItemFrame/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31810_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ItemFrame/removeFramedMap (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31822_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31823_ ()I net/minecraft/world/entity/decoration/ItemFrame/getRotation ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31824_ ()I net/minecraft/world/entity/decoration/ItemFrame/getAnalogOutput ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/ItemFrame/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/decoration/ItemFrame/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_5997_ (DDD)V net/minecraft/world/entity/decoration/ItemFrame/push (DDD)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6022_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/ItemFrame/setDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6074_ ()V net/minecraft/world/entity/decoration/ItemFrame/kill ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/decoration/ItemFrame/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6143_ ()F net/minecraft/world/entity/decoration/ItemFrame/getPickRadius ()F +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/decoration/ItemFrame/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/decoration/ItemFrame/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/decoration/ItemFrame/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6783_ (D)Z net/minecraft/world/entity/decoration/ItemFrame/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7068_ ()I net/minecraft/world/entity/decoration/ItemFrame/getHeight ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7076_ ()I net/minecraft/world/entity/decoration/ItemFrame/getWidth ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7084_ ()V net/minecraft/world/entity/decoration/ItemFrame/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7087_ ()V net/minecraft/world/entity/decoration/ItemFrame/recalculateBoundingBox ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7088_ ()Z net/minecraft/world/entity/decoration/ItemFrame/survives ()Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/decoration/ItemFrame/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ItemFrame/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ItemFrame/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_8097_ ()V net/minecraft/world/entity/decoration/ItemFrame/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/ItemFrame$1/ (Lnet/minecraft/world/entity/decoration/ItemFrame;)V net/minecraft/world/entity/decoration/ItemFrame$1/ (Lnet/minecraft/world/entity/decoration/ItemFrame;)V +MD: net/minecraft/world/entity/decoration/ItemFrame$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/decoration/ItemFrame$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/decoration/ItemFrame$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame$2/ ()V net/minecraft/world/entity/decoration/ItemFrame$2/ ()V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_31844_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getOrCreateKnot (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6022_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/setDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6783_ (D)Z net/minecraft/world/entity/decoration/LeashFenceKnotEntity/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7068_ ()I net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getHeight ()I +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7076_ ()I net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getWidth ()I +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7084_ ()V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7087_ ()V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/recalculateBoundingBox ()V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7088_ ()Z net/minecraft/world/entity/decoration/LeashFenceKnotEntity/survives ()Z +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/decoration/Painting/ ()V net/minecraft/world/entity/decoration/Painting/ ()V +MD: net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/Painting/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/decoration/Painting/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/decoration/Painting/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/Painting/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/Painting/m_213870_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/decoration/Painting/trackingPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/decoration/Painting/m_218881_ (ILnet/minecraft/core/Holder;)Z net/minecraft/world/entity/decoration/Painting/lambda$create$1 (ILnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/decoration/Painting/m_218887_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/entity/decoration/Painting/create (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/entity/decoration/Painting/m_218898_ (Lnet/minecraft/core/Holder;)I net/minecraft/world/entity/decoration/Painting/variantArea (Lnet/minecraft/core/Holder;)I +MD: net/minecraft/world/entity/decoration/Painting/m_218902_ ()Lnet/minecraft/core/Holder; net/minecraft/world/entity/decoration/Painting/getDefaultVariant ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/decoration/Painting/m_257312_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/decoration/Painting/lambda$loadVariant$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/decoration/Painting/m_269030_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/entity/decoration/Painting/loadVariant (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/entity/decoration/Painting/m_269220_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/decoration/Painting/storeVariant (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/decoration/Painting/m_28464_ (Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/decoration/Painting/setVariant (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/decoration/Painting/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/decoration/Painting/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/decoration/Painting/m_28554_ ()Lnet/minecraft/core/Holder; net/minecraft/world/entity/decoration/Painting/getVariant ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/decoration/Painting/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/decoration/Painting/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/decoration/Painting/m_289146_ (Lnet/minecraft/world/entity/decoration/Painting;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/decoration/Painting/lambda$create$0 (Lnet/minecraft/world/entity/decoration/Painting;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/decoration/Painting/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/Painting/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/Painting/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/decoration/Painting/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/decoration/Painting/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/decoration/Painting/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/decoration/Painting/m_7068_ ()I net/minecraft/world/entity/decoration/Painting/getHeight ()I +MD: net/minecraft/world/entity/decoration/Painting/m_7076_ ()I net/minecraft/world/entity/decoration/Painting/getWidth ()I +MD: net/minecraft/world/entity/decoration/Painting/m_7084_ ()V net/minecraft/world/entity/decoration/Painting/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/Painting/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/decoration/Painting/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/decoration/Painting/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/Painting/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/Painting/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/Painting/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/Painting/m_7678_ (DDDFF)V net/minecraft/world/entity/decoration/Painting/moveTo (DDDFF)V +MD: net/minecraft/world/entity/decoration/Painting/m_8097_ ()V net/minecraft/world/entity/decoration/Painting/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/PaintingVariant/ (II)V net/minecraft/world/entity/decoration/PaintingVariant/ (II)V +MD: net/minecraft/world/entity/decoration/PaintingVariant/m_218908_ ()I net/minecraft/world/entity/decoration/PaintingVariant/getWidth ()I +MD: net/minecraft/world/entity/decoration/PaintingVariant/m_218909_ ()I net/minecraft/world/entity/decoration/PaintingVariant/getHeight ()I +MD: net/minecraft/world/entity/decoration/PaintingVariants/ ()V net/minecraft/world/entity/decoration/PaintingVariants/ ()V +MD: net/minecraft/world/entity/decoration/PaintingVariants/ ()V net/minecraft/world/entity/decoration/PaintingVariants/ ()V +MD: net/minecraft/world/entity/decoration/PaintingVariants/m_218942_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/decoration/PaintingVariant; net/minecraft/world/entity/decoration/PaintingVariants/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/decoration/PaintingVariant; +MD: net/minecraft/world/entity/decoration/PaintingVariants/m_218944_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/decoration/PaintingVariants/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/item/FallingBlockEntity/ ()V net/minecraft/world/entity/item/FallingBlockEntity/ ()V +MD: net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/item/FallingBlockEntity/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/item/FallingBlockEntity/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/item/FallingBlockEntity/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_149646_ (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/item/FallingBlockEntity/lambda$causeFallDamage$0 (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_149650_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/item/FallingBlockEntity/callOnBrokenAfterFall (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_149656_ (FI)V net/minecraft/world/entity/item/FallingBlockEntity/setHurtsEntities (FI)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_201971_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/entity/item/FallingBlockEntity; net/minecraft/world/entity/item/FallingBlockEntity/fall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/entity/item/FallingBlockEntity; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_272001_ ()V net/minecraft/world/entity/item/FallingBlockEntity/disableDrop ()V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_31959_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/item/FallingBlockEntity/setStartPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_31978_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/item/FallingBlockEntity/getStartPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_31980_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/item/FallingBlockEntity/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/item/FallingBlockEntity/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_5677_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/item/FallingBlockEntity/getTypeName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6051_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/displayFireAnimation ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6087_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/isPickable ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6097_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/isAttackable ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6127_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/FallingBlockEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/FallingBlockEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_7976_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/entity/item/FallingBlockEntity/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_8097_ ()V net/minecraft/world/entity/item/FallingBlockEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_8119_ ()V net/minecraft/world/entity/item/FallingBlockEntity/tick ()V +MD: net/minecraft/world/entity/item/ItemEntity/ ()V net/minecraft/world/entity/item/ItemEntity/ ()V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/item/ItemEntity/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/item/ItemEntity/m_149678_ ()V net/minecraft/world/entity/item/ItemEntity/setUnlimitedLifetime ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_186267_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/item/ItemEntity/lambda$mergeWithNeighbours$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/item/ItemEntity/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/item/ItemEntity/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/item/ItemEntity/m_20099_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/item/ItemEntity/getBlockPosBelowThatAffectsMyMovement ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/item/ItemEntity/m_213816_ ()F net/minecraft/world/entity/item/ItemEntity/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/item/ItemEntity/m_213854_ ()Z net/minecraft/world/entity/item/ItemEntity/dampensVibrations ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_266426_ (Ljava/util/UUID;)V net/minecraft/world/entity/item/ItemEntity/setTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32008_ (F)F net/minecraft/world/entity/item/ItemEntity/getSpin (F)F +MD: net/minecraft/world/entity/item/ItemEntity/m_32010_ (I)V net/minecraft/world/entity/item/ItemEntity/setPickUpDelay (I)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32015_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/item/ItemEntity/tryToMerge (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32017_ (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/merge (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32022_ (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/merge (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32026_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/item/ItemEntity/areMergable (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/item/ItemEntity/m_32029_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/item/ItemEntity/merge (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/item/ItemEntity/m_32045_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32052_ (Ljava/util/UUID;)V net/minecraft/world/entity/item/ItemEntity/setThrower (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32055_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/item/ItemEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/item/ItemEntity/m_32059_ ()I net/minecraft/world/entity/item/ItemEntity/getAge ()I +MD: net/minecraft/world/entity/item/ItemEntity/m_32060_ ()V net/minecraft/world/entity/item/ItemEntity/setDefaultPickUpDelay ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32061_ ()V net/minecraft/world/entity/item/ItemEntity/setNoPickUpDelay ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32062_ ()V net/minecraft/world/entity/item/ItemEntity/setNeverPickUp ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32063_ ()Z net/minecraft/world/entity/item/ItemEntity/hasPickUpDelay ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_32064_ ()V net/minecraft/world/entity/item/ItemEntity/setExtendedLifetime ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32065_ ()V net/minecraft/world/entity/item/ItemEntity/makeFakeItem ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32066_ ()Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/item/ItemEntity/copy ()Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/item/ItemEntity/m_32067_ ()V net/minecraft/world/entity/item/ItemEntity/setUnderwaterMovement ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32068_ ()V net/minecraft/world/entity/item/ItemEntity/setUnderLavaMovement ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32069_ ()V net/minecraft/world/entity/item/ItemEntity/mergeWithNeighbours ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32070_ ()Z net/minecraft/world/entity/item/ItemEntity/isMergable ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/item/ItemEntity/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/item/ItemEntity/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/item/ItemEntity/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/item/ItemEntity/m_5825_ ()Z net/minecraft/world/entity/item/ItemEntity/fireImmune ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_6097_ ()Z net/minecraft/world/entity/item/ItemEntity/isAttackable ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/item/ItemEntity/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/item/ItemEntity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/item/ItemEntity/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/item/ItemEntity/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/ItemEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/ItemEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/item/ItemEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/item/ItemEntity/m_8097_ ()V net/minecraft/world/entity/item/ItemEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_8119_ ()V net/minecraft/world/entity/item/ItemEntity/tick ()V +MD: net/minecraft/world/entity/item/PrimedTnt/ ()V net/minecraft/world/entity/item/PrimedTnt/ ()V +MD: net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/item/PrimedTnt/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/item/PrimedTnt/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/item/PrimedTnt/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/item/PrimedTnt/m_19749_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/item/PrimedTnt/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/item/PrimedTnt/m_32085_ (I)V net/minecraft/world/entity/item/PrimedTnt/setFuse (I)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_32100_ ()I net/minecraft/world/entity/item/PrimedTnt/getFuse ()I +MD: net/minecraft/world/entity/item/PrimedTnt/m_32103_ ()V net/minecraft/world/entity/item/PrimedTnt/explode ()V +MD: net/minecraft/world/entity/item/PrimedTnt/m_6087_ ()Z net/minecraft/world/entity/item/PrimedTnt/isPickable ()Z +MD: net/minecraft/world/entity/item/PrimedTnt/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/item/PrimedTnt/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/item/PrimedTnt/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/PrimedTnt/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/PrimedTnt/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_8097_ ()V net/minecraft/world/entity/item/PrimedTnt/defineSynchedData ()V +MD: net/minecraft/world/entity/item/PrimedTnt/m_8119_ ()V net/minecraft/world/entity/item/PrimedTnt/tick ()V +MD: net/minecraft/world/entity/monster/AbstractIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/AbstractIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/AbstractIllager/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/AbstractIllager/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/AbstractIllager/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/AbstractIllager/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/AbstractIllager/m_8099_ ()V net/minecraft/world/entity/monster/AbstractIllager/registerGoals ()V +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ ()V net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ ()V +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ (Ljava/lang/String;I)V net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/m_149681_ ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/$values ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/values ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/values ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/ (Lnet/minecraft/world/entity/monster/AbstractIllager;Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/ (Lnet/minecraft/world/entity/monster/AbstractIllager;Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/m_8036_ ()Z net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/AbstractSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/AbstractSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_142548_ ()Z net/minecraft/world/entity/monster/AbstractSkeleton/isShaking ()Z +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/AbstractSkeleton/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_32164_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/reassessWeaponGoal ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_32166_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/AbstractSkeleton/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/monster/AbstractSkeleton/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6049_ ()D net/minecraft/world/entity/monster/AbstractSkeleton/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6083_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/rideTick ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/AbstractSkeleton/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/AbstractSkeleton/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/AbstractSkeleton/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/AbstractSkeleton/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/AbstractSkeleton/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/AbstractSkeleton/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/AbstractSkeleton/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7932_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/monster/AbstractSkeleton/getArrow (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/AbstractSkeleton/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_8099_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/registerGoals ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_8107_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/aiStep ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton$1/ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/monster/AbstractSkeleton$1/ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton$1/m_8041_ ()V net/minecraft/world/entity/monster/AbstractSkeleton$1/stop ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton$1/m_8056_ ()V net/minecraft/world/entity/monster/AbstractSkeleton$1/start ()V +MD: net/minecraft/world/entity/monster/Blaze/ ()V net/minecraft/world/entity/monster/Blaze/ ()V +MD: net/minecraft/world/entity/monster/Blaze/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Blaze/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Blaze/m_213856_ ()F net/minecraft/world/entity/monster/Blaze/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/monster/Blaze/m_32236_ ()Z net/minecraft/world/entity/monster/Blaze/isCharged ()Z +MD: net/minecraft/world/entity/monster/Blaze/m_32238_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Blaze/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Blaze/m_32240_ (Z)V net/minecraft/world/entity/monster/Blaze/setCharged (Z)V +MD: net/minecraft/world/entity/monster/Blaze/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Blaze/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Blaze/m_6060_ ()Z net/minecraft/world/entity/monster/Blaze/isOnFire ()Z +MD: net/minecraft/world/entity/monster/Blaze/m_6126_ ()Z net/minecraft/world/entity/monster/Blaze/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/monster/Blaze/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Blaze/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Blaze/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Blaze/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Blaze/m_8024_ ()V net/minecraft/world/entity/monster/Blaze/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Blaze/m_8097_ ()V net/minecraft/world/entity/monster/Blaze/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Blaze/m_8099_ ()V net/minecraft/world/entity/monster/Blaze/registerGoals ()V +MD: net/minecraft/world/entity/monster/Blaze/m_8107_ ()V net/minecraft/world/entity/monster/Blaze/aiStep ()V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/ (Lnet/minecraft/world/entity/monster/Blaze;)V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/ (Lnet/minecraft/world/entity/monster/Blaze;)V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_32252_ ()D net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/CaveSpider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/CaveSpider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/CaveSpider/m_32267_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/CaveSpider/createCaveSpider ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/CaveSpider/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/CaveSpider/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/CaveSpider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/CaveSpider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/CaveSpider/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/CaveSpider/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Creeper/ ()V net/minecraft/world/entity/monster/Creeper/ ()V +MD: net/minecraft/world/entity/monster/Creeper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Creeper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Creeper/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/Creeper/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/Creeper/m_32283_ (I)V net/minecraft/world/entity/monster/Creeper/setSwellDir (I)V +MD: net/minecraft/world/entity/monster/Creeper/m_32288_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/monster/Creeper/lambda$mobInteract$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/monster/Creeper/m_32310_ ()I net/minecraft/world/entity/monster/Creeper/getSwellDir ()I +MD: net/minecraft/world/entity/monster/Creeper/m_32311_ ()Z net/minecraft/world/entity/monster/Creeper/isIgnited ()Z +MD: net/minecraft/world/entity/monster/Creeper/m_32312_ ()V net/minecraft/world/entity/monster/Creeper/ignite ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32313_ ()Z net/minecraft/world/entity/monster/Creeper/canDropMobsSkull ()Z +MD: net/minecraft/world/entity/monster/Creeper/m_32314_ ()V net/minecraft/world/entity/monster/Creeper/increaseDroppedSkulls ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32315_ ()V net/minecraft/world/entity/monster/Creeper/explodeCreeper ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32316_ ()V net/minecraft/world/entity/monster/Creeper/spawnLingeringCloud ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32318_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Creeper/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Creeper/m_32320_ (F)F net/minecraft/world/entity/monster/Creeper/getSwelling (F)F +MD: net/minecraft/world/entity/monster/Creeper/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Creeper/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Creeper/m_6056_ ()I net/minecraft/world/entity/monster/Creeper/getMaxFallDistance ()I +MD: net/minecraft/world/entity/monster/Creeper/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/Creeper/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/Creeper/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Creeper/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Creeper/m_7090_ ()Z net/minecraft/world/entity/monster/Creeper/isPowered ()Z +MD: net/minecraft/world/entity/monster/Creeper/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Creeper/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Creeper/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Creeper/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Creeper/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Creeper/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Creeper/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/Creeper/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/Creeper/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Creeper/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Creeper/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/monster/Creeper/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/monster/Creeper/m_8097_ ()V net/minecraft/world/entity/monster/Creeper/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Creeper/m_8099_ ()V net/minecraft/world/entity/monster/Creeper/registerGoals ()V +MD: net/minecraft/world/entity/monster/Creeper/m_8119_ ()V net/minecraft/world/entity/monster/Creeper/tick ()V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_252851_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/Vec3;F)Lorg/joml/Vector3f; net/minecraft/world/entity/monster/CrossbowAttackMob/getProjectileShotVector (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/Vec3;F)Lorg/joml/Vector3f; +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_32322_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/projectile/Projectile;FF)V net/minecraft/world/entity/monster/CrossbowAttackMob/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/projectile/Projectile;FF)V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_32336_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/CrossbowAttackMob/performCrossbowAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/CrossbowAttackMob/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_5811_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V net/minecraft/world/entity/monster/CrossbowAttackMob/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_5847_ ()V net/minecraft/world/entity/monster/CrossbowAttackMob/onCrossbowAttackPerformed ()V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_6136_ (Z)V net/minecraft/world/entity/monster/CrossbowAttackMob/setChargingCrossbow (Z)V +MD: net/minecraft/world/entity/monster/Drowned/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Drowned/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Drowned/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Drowned/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Drowned/m_218955_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Drowned/checkDrownedSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_32360_ (Lnet/minecraft/world/entity/monster/Drowned;Lnet/minecraft/world/entity/ai/navigation/PathNavigation;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Drowned/access$002 (Lnet/minecraft/world/entity/monster/Drowned;Lnet/minecraft/world/entity/ai/navigation/PathNavigation;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Drowned/m_32366_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Drowned/isDeepEnoughToSpawn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_32391_ ()Z net/minecraft/world/entity/monster/Drowned/closeToNextPos ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_32392_ ()Z net/minecraft/world/entity/monster/Drowned/wantsToSwim ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_32395_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Drowned/okTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_32398_ (Z)V net/minecraft/world/entity/monster/Drowned/setSearchingForLand (Z)V +MD: net/minecraft/world/entity/monster/Drowned/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Drowned/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Drowned/m_5844_ ()V net/minecraft/world/entity/monster/Drowned/updateSwimming ()V +MD: net/minecraft/world/entity/monster/Drowned/m_6063_ ()Z net/minecraft/world/entity/monster/Drowned/isPushedByFluid ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_6067_ ()Z net/minecraft/world/entity/monster/Drowned/isVisuallySwimming ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Drowned/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Drowned/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Drowned/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Drowned/m_6878_ ()V net/minecraft/world/entity/monster/Drowned/addBehaviourGoals ()V +MD: net/minecraft/world/entity/monster/Drowned/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Drowned/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Drowned/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Drowned/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_7586_ ()Z net/minecraft/world/entity/monster/Drowned/supportsBreakDoorGoal ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_7593_ ()Z net/minecraft/world/entity/monster/Drowned/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_7808_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Drowned/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DZ)V net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DZ)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/ (Lnet/minecraft/world/entity/monster/Drowned;D)V net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/ (Lnet/minecraft/world/entity/monster/Drowned;D)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8041_ ()V net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/stop ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/start ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_32430_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/getWaterPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/start ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/ (Lnet/minecraft/world/entity/monster/Drowned;)V net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/ (Lnet/minecraft/world/entity/monster/Drowned;)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DI)V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DI)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8037_ ()V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/tick ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8041_ ()V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/stop ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/start ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/ElderGuardian/ ()V net/minecraft/world/entity/monster/ElderGuardian/ ()V +MD: net/minecraft/world/entity/monster/ElderGuardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/ElderGuardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/ElderGuardian/m_289147_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/monster/ElderGuardian/lambda$customServerAiStep$0 (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/monster/ElderGuardian/m_32471_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/ElderGuardian/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7552_ ()I net/minecraft/world/entity/monster/ElderGuardian/getAttackDuration ()I +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7868_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_8024_ ()V net/minecraft/world/entity/monster/ElderGuardian/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/EnderMan/ ()V net/minecraft/world/entity/monster/EnderMan/ ()V +MD: net/minecraft/world/entity/monster/EnderMan/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/EnderMan/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_186272_ (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/projectile/ThrownPotion;F)Z net/minecraft/world/entity/monster/EnderMan/hurtWithCleanWater (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/projectile/ThrownPotion;F)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32500_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/EnderMan/teleportTowards (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32521_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/EnderMan/setCarriedBlock (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_32528_ ()V net/minecraft/world/entity/monster/EnderMan/playStareSound ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_32529_ ()Z net/minecraft/world/entity/monster/EnderMan/teleport ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32530_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/monster/EnderMan/getCarriedBlock ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/monster/EnderMan/m_32531_ ()Z net/minecraft/world/entity/monster/EnderMan/isCreepy ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32532_ ()Z net/minecraft/world/entity/monster/EnderMan/hasBeenStaredAt ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32533_ ()V net/minecraft/world/entity/monster/EnderMan/setBeingStaredAt ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_32534_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/EnderMan/isLookingAtMe (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32541_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/EnderMan/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/EnderMan/m_32543_ (DDD)Z net/minecraft/world/entity/monster/EnderMan/teleport (DDD)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/EnderMan/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/EnderMan/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/monster/EnderMan/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/monster/EnderMan/m_6126_ ()Z net/minecraft/world/entity/monster/EnderMan/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/EnderMan/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/EnderMan/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/EnderMan/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/EnderMan/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_6784_ ()I net/minecraft/world/entity/monster/EnderMan/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/monster/EnderMan/m_6825_ ()V net/minecraft/world/entity/monster/EnderMan/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/monster/EnderMan/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/EnderMan/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/EnderMan/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/EnderMan/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/EnderMan/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/EnderMan/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/EnderMan/m_7870_ (I)V net/minecraft/world/entity/monster/EnderMan/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/EnderMan/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/EnderMan/m_8023_ ()Z net/minecraft/world/entity/monster/EnderMan/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_8024_ ()V net/minecraft/world/entity/monster/EnderMan/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_8097_ ()V net/minecraft/world/entity/monster/EnderMan/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_8099_ ()V net/minecraft/world/entity/monster/EnderMan/registerGoals ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_8107_ ()V net/minecraft/world/entity/monster/EnderMan/aiStep ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/ (Lnet/minecraft/world/entity/monster/EnderMan;)V net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/ (Lnet/minecraft/world/entity/monster/EnderMan;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/tick ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/m_8056_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/start ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/m_32558_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/canPlaceBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/tick ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;Ljava/util/function/Predicate;)V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_268923_ (Lnet/minecraft/world/entity/monster/EnderMan;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/lambda$new$0 (Lnet/minecraft/world/entity/monster/EnderMan;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/tick ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8041_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/stop ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8056_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/start ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/tick ()V +MD: net/minecraft/world/entity/monster/Endermite/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Endermite/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Endermite/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Endermite/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Endermite/m_218968_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Endermite/checkEndermiteSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Endermite/m_32619_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Endermite/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Endermite/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Endermite/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Endermite/m_5618_ (F)V net/minecraft/world/entity/monster/Endermite/setYBodyRot (F)V +MD: net/minecraft/world/entity/monster/Endermite/m_6049_ ()D net/minecraft/world/entity/monster/Endermite/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Endermite/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Endermite/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Endermite/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Endermite/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Endermite/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Endermite/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Endermite/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Endermite/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Endermite/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Endermite/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Endermite/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Endermite/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Endermite/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Endermite/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Endermite/m_8099_ ()V net/minecraft/world/entity/monster/Endermite/registerGoals ()V +MD: net/minecraft/world/entity/monster/Endermite/m_8107_ ()V net/minecraft/world/entity/monster/Endermite/aiStep ()V +MD: net/minecraft/world/entity/monster/Endermite/m_8119_ ()V net/minecraft/world/entity/monster/Endermite/tick ()V +MD: net/minecraft/world/entity/monster/Evoker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Evoker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Evoker/m_218974_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$000 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218976_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$100 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218978_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$200 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218980_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$300 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218982_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$400 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_32634_ (Lnet/minecraft/world/entity/animal/Sheep;)V net/minecraft/world/entity/monster/Evoker/setWololoTarget (Lnet/minecraft/world/entity/animal/Sheep;)V +MD: net/minecraft/world/entity/monster/Evoker/m_32657_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Evoker/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Evoker/m_32662_ ()Lnet/minecraft/world/entity/animal/Sheep; net/minecraft/world/entity/monster/Evoker/getWololoTarget ()Lnet/minecraft/world/entity/animal/Sheep; +MD: net/minecraft/world/entity/monster/Evoker/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Evoker/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Evoker/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Evoker/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Evoker/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Evoker/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Evoker/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7894_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getCastingSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7895_ (IZ)V net/minecraft/world/entity/monster/Evoker/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Evoker/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_8024_ ()V net/minecraft/world/entity/monster/Evoker/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Evoker/m_8097_ ()V net/minecraft/world/entity/monster/Evoker/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Evoker/m_8099_ ()V net/minecraft/world/entity/monster/Evoker/registerGoals ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_32672_ (DDDDFI)V net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/createSpellEntity (DDDDFI)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_32709_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8041_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/stop ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8069_ ()I net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getCastWarmupTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Ghast/ ()V net/minecraft/world/entity/monster/Ghast/ ()V +MD: net/minecraft/world/entity/monster/Ghast/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Ghast/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Ghast/m_218984_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Ghast/checkGhastSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_238407_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/Ghast/isReflectedFireball (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_289148_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Ghast/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_32751_ ()I net/minecraft/world/entity/monster/Ghast/getExplosionPower ()I +MD: net/minecraft/world/entity/monster/Ghast/m_32752_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Ghast/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Ghast/m_32756_ ()Z net/minecraft/world/entity/monster/Ghast/isCharging ()Z +MD: net/minecraft/world/entity/monster/Ghast/m_32758_ (Z)V net/minecraft/world/entity/monster/Ghast/setCharging (Z)V +MD: net/minecraft/world/entity/monster/Ghast/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ghast/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ghast/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Ghast/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Ghast/m_5792_ ()I net/minecraft/world/entity/monster/Ghast/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/monster/Ghast/m_6121_ ()F net/minecraft/world/entity/monster/Ghast/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/Ghast/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Ghast/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Ghast/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Ghast/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Ghast/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/Ghast/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ghast/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ghast/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ghast/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ghast/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ghast/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ghast/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ghast/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ghast/m_8028_ ()Z net/minecraft/world/entity/monster/Ghast/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Ghast/m_8097_ ()V net/minecraft/world/entity/monster/Ghast/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Ghast/m_8099_ ()V net/minecraft/world/entity/monster/Ghast/registerGoals ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$GhastLookGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Ghast$GhastLookGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Ghast$GhastLookGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/m_8037_ ()V net/minecraft/world/entity/monster/Ghast$GhastLookGoal/tick ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$GhastMoveControl/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/m_32770_ (Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/world/entity/monster/Ghast$GhastMoveControl/canReach (Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Ghast$GhastMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8037_ ()V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/tick ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8041_ ()V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/stop ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8056_ ()V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/start ()V +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/m_8056_ ()V net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/start ()V +MD: net/minecraft/world/entity/monster/Giant/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Giant/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Giant/m_32796_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Giant/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Giant/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Giant/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Giant/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Giant/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Guardian/ ()V net/minecraft/world/entity/monster/Guardian/ ()V +MD: net/minecraft/world/entity/monster/Guardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Guardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Guardian/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Guardian/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Guardian/m_218990_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Guardian/checkGuardianSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Guardian/m_264437_ ()F net/minecraft/world/entity/monster/Guardian/getClientSideAttackTime ()F +MD: net/minecraft/world/entity/monster/Guardian/m_32812_ (F)F net/minecraft/world/entity/monster/Guardian/getAttackAnimationScale (F)F +MD: net/minecraft/world/entity/monster/Guardian/m_32817_ (I)V net/minecraft/world/entity/monster/Guardian/setActiveAttackTarget (I)V +MD: net/minecraft/world/entity/monster/Guardian/m_32853_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Guardian/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Guardian/m_32854_ ()Z net/minecraft/world/entity/monster/Guardian/isMoving ()Z +MD: net/minecraft/world/entity/monster/Guardian/m_32855_ ()Z net/minecraft/world/entity/monster/Guardian/hasActiveAttackTarget ()Z +MD: net/minecraft/world/entity/monster/Guardian/m_32856_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/Guardian/getActiveAttackTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/Guardian/m_32861_ (Z)V net/minecraft/world/entity/monster/Guardian/setMoving (Z)V +MD: net/minecraft/world/entity/monster/Guardian/m_32863_ (F)F net/minecraft/world/entity/monster/Guardian/getTailAnimation (F)F +MD: net/minecraft/world/entity/monster/Guardian/m_32865_ (F)F net/minecraft/world/entity/monster/Guardian/getSpikesAnimation (F)F +MD: net/minecraft/world/entity/monster/Guardian/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Guardian/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Guardian/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Guardian/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Guardian/m_6040_ ()Z net/minecraft/world/entity/monster/Guardian/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/monster/Guardian/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Guardian/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Guardian/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Guardian/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Guardian/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Guardian/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Guardian/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Guardian/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Guardian/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Guardian/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Guardian/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Guardian/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Guardian/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_7552_ ()I net/minecraft/world/entity/monster/Guardian/getAttackDuration ()I +MD: net/minecraft/world/entity/monster/Guardian/m_7868_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_8097_ ()V net/minecraft/world/entity/monster/Guardian/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Guardian/m_8099_ ()V net/minecraft/world/entity/monster/Guardian/registerGoals ()V +MD: net/minecraft/world/entity/monster/Guardian/m_8100_ ()I net/minecraft/world/entity/monster/Guardian/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/monster/Guardian/m_8107_ ()V net/minecraft/world/entity/monster/Guardian/aiStep ()V +MD: net/minecraft/world/entity/monster/Guardian/m_8132_ ()I net/minecraft/world/entity/monster/Guardian/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Ljava/lang/Object;)Z net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Husk/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Husk/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Husk/m_218996_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Husk/checkHuskSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Husk/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Husk/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Husk/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Husk/m_5884_ ()Z net/minecraft/world/entity/monster/Husk/isSunSensitive ()Z +MD: net/minecraft/world/entity/monster/Husk/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Husk/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Husk/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Husk/m_7593_ ()Z net/minecraft/world/entity/monster/Husk/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/Husk/m_7595_ ()V net/minecraft/world/entity/monster/Husk/doUnderWaterConversion ()V +MD: net/minecraft/world/entity/monster/Husk/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Husk/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Illusioner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Illusioner/m_32931_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Illusioner/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Illusioner/m_32939_ (F)[Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Illusioner/getIllusionOffsets (F)[Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Illusioner/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Illusioner/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Illusioner/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Illusioner/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Illusioner/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/Illusioner/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/Illusioner/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Illusioner/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Illusioner/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Illusioner/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Illusioner/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_7894_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getCastingSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_7895_ (IZ)V net/minecraft/world/entity/monster/Illusioner/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Illusioner/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_8097_ ()V net/minecraft/world/entity/monster/Illusioner/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Illusioner/m_8099_ ()V net/minecraft/world/entity/monster/Illusioner/registerGoals ()V +MD: net/minecraft/world/entity/monster/Illusioner/m_8107_ ()V net/minecraft/world/entity/monster/Illusioner/aiStep ()V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/MagmaCube/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/MagmaCube/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/MagmaCube/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/monster/MagmaCube/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/monster/MagmaCube/m_213856_ ()F net/minecraft/world/entity/monster/MagmaCube/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/monster/MagmaCube/m_219002_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/MagmaCube/checkMagmaCubeSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_33000_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/MagmaCube/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/MagmaCube/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/MagmaCube/m_6060_ ()Z net/minecraft/world/entity/monster/MagmaCube/isOnFire ()Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_6135_ ()V net/minecraft/world/entity/monster/MagmaCube/jumpFromGround ()V +MD: net/minecraft/world/entity/monster/MagmaCube/m_6300_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/monster/MagmaCube/getParticleType ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/monster/MagmaCube/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/MagmaCube/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_7480_ ()V net/minecraft/world/entity/monster/MagmaCube/decreaseSquish ()V +MD: net/minecraft/world/entity/monster/MagmaCube/m_7483_ ()Z net/minecraft/world/entity/monster/MagmaCube/isDealsDamage ()Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_7549_ ()I net/minecraft/world/entity/monster/MagmaCube/getJumpDelay ()I +MD: net/minecraft/world/entity/monster/MagmaCube/m_7566_ ()F net/minecraft/world/entity/monster/MagmaCube/getAttackDamage ()F +MD: net/minecraft/world/entity/monster/MagmaCube/m_7839_ (IZ)V net/minecraft/world/entity/monster/MagmaCube/setSize (IZ)V +MD: net/minecraft/world/entity/monster/MagmaCube/m_7903_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getJumpSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/MagmaCube/m_7905_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getSquishSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/MagmaCube/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Monster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Monster/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/monster/Monster/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/monster/Monster/m_219009_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Monster/isDarkEnoughToSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Monster/m_219013_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Monster/checkMonsterSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Monster/m_219019_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Monster/checkAnyLightMonsterSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Monster/m_33035_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Monster/createMonsterAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Monster/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Monster/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Monster/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Monster/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Monster/m_6125_ ()Z net/minecraft/world/entity/monster/Monster/shouldDropLoot ()Z +MD: net/minecraft/world/entity/monster/Monster/m_6149_ ()Z net/minecraft/world/entity/monster/Monster/shouldDropExperience ()Z +MD: net/minecraft/world/entity/monster/Monster/m_6298_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Monster/getProjectile (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Monster/m_6935_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/Monster/isPreventingPlayerRest (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/Monster/m_7562_ ()V net/minecraft/world/entity/monster/Monster/updateNoActionTime ()V +MD: net/minecraft/world/entity/monster/Monster/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_8028_ ()Z net/minecraft/world/entity/monster/Monster/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Monster/m_8107_ ()V net/minecraft/world/entity/monster/Monster/aiStep ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/PatrollingMonster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_219025_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/PatrollingMonster/checkPatrollingMonsterSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33065_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/monster/PatrollingMonster/getPatrolTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33066_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/hasPatrolTarget ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33067_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/isPatrolLeader ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33068_ ()V net/minecraft/world/entity/monster/PatrollingMonster/findPatrolTarget ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33069_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/isPatrolling ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33070_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/PatrollingMonster/setPatrolTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33075_ (Z)V net/minecraft/world/entity/monster/PatrollingMonster/setPatrolLeader (Z)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33077_ (Z)V net/minecraft/world/entity/monster/PatrollingMonster/setPatrolling (Z)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_6049_ ()D net/minecraft/world/entity/monster/PatrollingMonster/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/PatrollingMonster/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_6785_ (D)Z net/minecraft/world/entity/monster/PatrollingMonster/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/PatrollingMonster/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/PatrollingMonster/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7490_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/canBeLeader ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7492_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/canJoinPatrol ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_8099_ ()V net/minecraft/world/entity/monster/PatrollingMonster/registerGoals ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/ (Lnet/minecraft/world/entity/monster/PatrollingMonster;DD)V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/ (Lnet/minecraft/world/entity/monster/PatrollingMonster;DD)V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_264002_ (Lnet/minecraft/world/entity/monster/PatrollingMonster;)Z net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/lambda$findPatrolCompanions$0 (Lnet/minecraft/world/entity/monster/PatrollingMonster;)Z +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_33093_ ()Ljava/util/List; net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/findPatrolCompanions ()Ljava/util/List; +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_33094_ ()Z net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/moveRandomly ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8036_ ()Z net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8037_ ()V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/tick ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8041_ ()V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/stop ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8056_ ()V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/start ()V +MD: net/minecraft/world/entity/monster/Phantom/ ()V net/minecraft/world/entity/monster/Phantom/ ()V +MD: net/minecraft/world/entity/monster/Phantom/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Phantom/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Phantom/m_142039_ ()Z net/minecraft/world/entity/monster/Phantom/isFlapping ()Z +MD: net/minecraft/world/entity/monster/Phantom/m_149736_ ()I net/minecraft/world/entity/monster/Phantom/getUniqueFlapTickOffset ()I +MD: net/minecraft/world/entity/monster/Phantom/m_219031_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$000 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219033_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$100 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219035_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$200 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219037_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$300 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219039_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$400 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219041_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$500 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219043_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$600 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219045_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$700 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219047_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$800 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219049_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$900 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219051_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$1000 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219053_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$1100 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_33108_ (I)V net/minecraft/world/entity/monster/Phantom/setPhantomSize (I)V +MD: net/minecraft/world/entity/monster/Phantom/m_33155_ ()V net/minecraft/world/entity/monster/Phantom/updatePhantomSizeInfo ()V +MD: net/minecraft/world/entity/monster/Phantom/m_33172_ ()I net/minecraft/world/entity/monster/Phantom/getPhantomSize ()I +MD: net/minecraft/world/entity/monster/Phantom/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Phantom/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Phantom/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Phantom/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Phantom/m_6048_ ()D net/minecraft/world/entity/monster/Phantom/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Phantom/m_6121_ ()F net/minecraft/world/entity/monster/Phantom/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/Phantom/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Phantom/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Phantom/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Phantom/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Phantom/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Phantom/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Phantom/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/monster/Phantom/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/monster/Phantom/m_6783_ (D)Z net/minecraft/world/entity/monster/Phantom/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/monster/Phantom/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/monster/Phantom/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/monster/Phantom/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Phantom/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Phantom/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Phantom/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Phantom/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Phantom/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Phantom/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Phantom/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Phantom/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/monster/Phantom/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/monster/Phantom/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Phantom/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Phantom/m_8024_ ()V net/minecraft/world/entity/monster/Phantom/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8028_ ()Z net/minecraft/world/entity/monster/Phantom/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Phantom/m_8097_ ()V net/minecraft/world/entity/monster/Phantom/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8099_ ()V net/minecraft/world/entity/monster/Phantom/registerGoals ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8107_ ()V net/minecraft/world/entity/monster/Phantom/aiStep ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8119_ ()V net/minecraft/world/entity/monster/Phantom/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/ ()V net/minecraft/world/entity/monster/Phantom$AttackPhase/ ()V +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/ (Ljava/lang/String;I)V net/minecraft/world/entity/monster/Phantom$AttackPhase/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/m_149737_ ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; net/minecraft/world/entity/monster/Phantom$AttackPhase/$values ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; net/minecraft/world/entity/monster/Phantom$AttackPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/values ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; net/minecraft/world/entity/monster/Phantom$AttackPhase/values ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_33212_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/setAnchorAboveTarget ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8037_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8041_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/stop ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8056_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/start ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/m_8121_ ()V net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_33231_ ()V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/selectNext ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_8037_ ()V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_8056_ ()V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/start ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomLookControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Phantom$PhantomLookControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomLookControl/m_8128_ ()V net/minecraft/world/entity/monster/Phantom$PhantomLookControl/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/m_33246_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/touchingTarget ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Pillager/ ()V net/minecraft/world/entity/monster/Pillager/ ()V +MD: net/minecraft/world/entity/monster/Pillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Pillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Pillager/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/monster/Pillager/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/monster/Pillager/m_149744_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Pillager/wantsItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Pillager/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Pillager/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Pillager/m_214095_ (Lnet/minecraft/util/RandomSource;F)V net/minecraft/world/entity/monster/Pillager/enchantSpawnedWeapon (Lnet/minecraft/util/RandomSource;F)V +MD: net/minecraft/world/entity/monster/Pillager/m_33307_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Pillager/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Pillager/m_33309_ ()Z net/minecraft/world/entity/monster/Pillager/isChargingCrossbow ()Z +MD: net/minecraft/world/entity/monster/Pillager/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/monster/Pillager/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/monster/Pillager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Pillager/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Pillager/m_5792_ ()I net/minecraft/world/entity/monster/Pillager/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/monster/Pillager/m_5811_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V net/minecraft/world/entity/monster/Pillager/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V +MD: net/minecraft/world/entity/monster/Pillager/m_5847_ ()V net/minecraft/world/entity/monster/Pillager/onCrossbowAttackPerformed ()V +MD: net/minecraft/world/entity/monster/Pillager/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/monster/Pillager/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/monster/Pillager/m_6136_ (Z)V net/minecraft/world/entity/monster/Pillager/setChargingCrossbow (Z)V +MD: net/minecraft/world/entity/monster/Pillager/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Pillager/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Pillager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Pillager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Pillager/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/Pillager/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/Pillager/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Pillager/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Pillager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Pillager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Pillager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Pillager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Pillager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/monster/Pillager/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/monster/Pillager/m_7895_ (IZ)V net/minecraft/world/entity/monster/Pillager/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Pillager/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_8097_ ()V net/minecraft/world/entity/monster/Pillager/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Pillager/m_8099_ ()V net/minecraft/world/entity/monster/Pillager/registerGoals ()V +MD: net/minecraft/world/entity/monster/RangedAttackMob/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/RangedAttackMob/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Ravager/ ()V net/minecraft/world/entity/monster/Ravager/ ()V +MD: net/minecraft/world/entity/monster/Ravager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Ravager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Ravager/m_142582_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Ravager/hasLineOfSight (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_199898_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Ravager/lambda$registerGoals$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_33339_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/Ravager/strongKnockback (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/Ravager/m_33345_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Ravager/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_33362_ ()I net/minecraft/world/entity/monster/Ravager/getAttackTick ()I +MD: net/minecraft/world/entity/monster/Ravager/m_33364_ ()I net/minecraft/world/entity/monster/Ravager/getStunnedTick ()I +MD: net/minecraft/world/entity/monster/Ravager/m_33366_ ()I net/minecraft/world/entity/monster/Ravager/getRoarTick ()I +MD: net/minecraft/world/entity/monster/Ravager/m_33367_ ()V net/minecraft/world/entity/monster/Ravager/stunEffect ()V +MD: net/minecraft/world/entity/monster/Ravager/m_33368_ ()V net/minecraft/world/entity/monster/Ravager/roar ()V +MD: net/minecraft/world/entity/monster/Ravager/m_33371_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Ravager/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Ravager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_6048_ ()D net/minecraft/world/entity/monster/Ravager/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Ravager/m_6107_ ()Z net/minecraft/world/entity/monster/Ravager/isImmobile ()Z +MD: net/minecraft/world/entity/monster/Ravager/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/Ravager/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/Ravager/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Ravager/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Ravager/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Ravager/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Ravager/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Ravager/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Ravager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ravager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ravager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ravager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ravager/m_7490_ ()Z net/minecraft/world/entity/monster/Ravager/canBeLeader ()Z +MD: net/minecraft/world/entity/monster/Ravager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_7822_ (B)V net/minecraft/world/entity/monster/Ravager/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/Ravager/m_7895_ (IZ)V net/minecraft/world/entity/monster/Ravager/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Ravager/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_8022_ ()V net/minecraft/world/entity/monster/Ravager/updateControlFlags ()V +MD: net/minecraft/world/entity/monster/Ravager/m_8085_ ()I net/minecraft/world/entity/monster/Ravager/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/monster/Ravager/m_8099_ ()V net/minecraft/world/entity/monster/Ravager/registerGoals ()V +MD: net/minecraft/world/entity/monster/Ravager/m_8107_ ()V net/minecraft/world/entity/monster/Ravager/aiStep ()V +MD: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Ravager;)V net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Ravager;)V +MD: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/monster/Shulker/ ()V net/minecraft/world/entity/monster/Shulker/ ()V +MD: net/minecraft/world/entity/monster/Shulker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Shulker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Shulker/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/monster/Shulker/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/monster/Shulker/m_142242_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker/makeBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Shulker/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Shulker/m_149766_ (F)Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker/getRenderPosition (F)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker/m_149768_ (F)F net/minecraft/world/entity/monster/Shulker/getPhysicalPeek (F)F +MD: net/minecraft/world/entity/monster/Shulker/m_149770_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Shulker/lambda$onPeekAmountChange$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Shulker/m_149785_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/entity/monster/Shulker/canStayAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/entity/monster/Shulker/m_149788_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/monster/Shulker/setAttachFace (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/monster/Shulker/m_149790_ (Lnet/minecraft/core/Direction;F)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker/getProgressAabb (Lnet/minecraft/core/Direction;F)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker/m_149793_ (Lnet/minecraft/core/Direction;FF)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker/getProgressDeltaAabb (Lnet/minecraft/core/Direction;FF)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker/m_149805_ ()V net/minecraft/world/entity/monster/Shulker/hitByShulkerBullet ()V +MD: net/minecraft/world/entity/monster/Shulker/m_149807_ ()V net/minecraft/world/entity/monster/Shulker/findNewAttachment ()V +MD: net/minecraft/world/entity/monster/Shulker/m_149808_ ()Z net/minecraft/world/entity/monster/Shulker/updatePeekAmount ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_149809_ ()V net/minecraft/world/entity/monster/Shulker/onPeekAmountChange ()V +MD: net/minecraft/world/entity/monster/Shulker/m_149810_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; net/minecraft/world/entity/monster/Shulker/findAttachableSurface (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/monster/Shulker/m_149812_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Shulker/isPositionBlocked (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Shulker/m_20184_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Shulker/getDeltaMovement ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Shulker/m_20256_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Shulker/setDeltaMovement (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Shulker/m_219064_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$000 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219068_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$100 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219070_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$200 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219072_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$300 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219074_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$400 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_252710_ ()Lorg/joml/Vector3f; net/minecraft/world/entity/monster/Shulker/lambda$static$0 ()Lorg/joml/Vector3f; +MD: net/minecraft/world/entity/monster/Shulker/m_262359_ (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Byte; net/minecraft/world/entity/monster/Shulker/lambda$setVariant$2 (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Byte; +MD: net/minecraft/world/entity/monster/Shulker/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/monster/Shulker/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/monster/Shulker/m_28464_ (Ljava/util/Optional;)V net/minecraft/world/entity/monster/Shulker/setVariant (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/monster/Shulker/m_28554_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker/getVariant ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/monster/Shulker/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/monster/Shulker/m_33418_ (I)V net/minecraft/world/entity/monster/Shulker/setRawPeekAmount (I)V +MD: net/minecraft/world/entity/monster/Shulker/m_33460_ ()Z net/minecraft/world/entity/monster/Shulker/teleportSomewhere ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_33461_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/monster/Shulker/getAttachFace ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/monster/Shulker/m_33463_ ()I net/minecraft/world/entity/monster/Shulker/getRawPeekAmount ()I +MD: net/minecraft/world/entity/monster/Shulker/m_33467_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/monster/Shulker/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/monster/Shulker/m_33468_ ()Z net/minecraft/world/entity/monster/Shulker/isClosed ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_33477_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Shulker/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Shulker/m_33480_ (F)F net/minecraft/world/entity/monster/Shulker/getClientPeekAmount (F)F +MD: net/minecraft/world/entity/monster/Shulker/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Shulker/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Shulker/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Shulker/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Shulker/m_5829_ ()Z net/minecraft/world/entity/monster/Shulker/canBeCollidedWith ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_6034_ (DDD)V net/minecraft/world/entity/monster/Shulker/setPos (DDD)V +MD: net/minecraft/world/entity/monster/Shulker/m_6049_ ()D net/minecraft/world/entity/monster/Shulker/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Shulker/m_6143_ ()F net/minecraft/world/entity/monster/Shulker/getPickRadius ()F +MD: net/minecraft/world/entity/monster/Shulker/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Shulker/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Shulker/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/monster/Shulker/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/monster/Shulker/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Shulker/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Shulker/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Shulker/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Shulker/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Shulker/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Shulker/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/Shulker/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Shulker/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Shulker/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Shulker/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Shulker/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Shulker/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/monster/Shulker/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/monster/Shulker/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Shulker/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Shulker/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/monster/Shulker/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/monster/Shulker/m_8032_ ()V net/minecraft/world/entity/monster/Shulker/playAmbientSound ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8085_ ()I net/minecraft/world/entity/monster/Shulker/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/monster/Shulker/m_8097_ ()V net/minecraft/world/entity/monster/Shulker/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8099_ ()V net/minecraft/world/entity/monster/Shulker/registerGoals ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8119_ ()V net/minecraft/world/entity/monster/Shulker/tick ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8127_ ()V net/minecraft/world/entity/monster/Shulker/stopRiding ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8132_ ()I net/minecraft/world/entity/monster/Shulker/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/m_8121_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/m_33500_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/m_7255_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/getTargetSearchArea (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/m_142586_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/clampHeadRotationToBody ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/m_180896_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/getYRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/m_180897_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/getXRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/m_7255_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/getTargetSearchArea (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8037_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/tick ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8041_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/stop ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8056_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/start ()V +MD: net/minecraft/world/entity/monster/Silverfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Silverfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Silverfish/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Silverfish/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Silverfish/m_219076_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Silverfish/checkSilverfishSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Silverfish/m_33551_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Silverfish/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Silverfish/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Silverfish/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Silverfish/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Silverfish/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Silverfish/m_5618_ (F)V net/minecraft/world/entity/monster/Silverfish/setYBodyRot (F)V +MD: net/minecraft/world/entity/monster/Silverfish/m_6049_ ()D net/minecraft/world/entity/monster/Silverfish/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Silverfish/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Silverfish/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Silverfish/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Silverfish/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Silverfish/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Silverfish/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Silverfish/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Silverfish/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Silverfish/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Silverfish/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Silverfish/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Silverfish/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Silverfish/m_8099_ ()V net/minecraft/world/entity/monster/Silverfish/registerGoals ()V +MD: net/minecraft/world/entity/monster/Silverfish/m_8119_ ()V net/minecraft/world/entity/monster/Silverfish/tick ()V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/m_8056_ ()V net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/start ()V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/m_33568_ ()V net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/notifyHurt ()V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/m_8037_ ()V net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/tick ()V +MD: net/minecraft/world/entity/monster/Skeleton/ ()V net/minecraft/world/entity/monster/Skeleton/ ()V +MD: net/minecraft/world/entity/monster/Skeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Skeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Skeleton/m_142079_ ()Z net/minecraft/world/entity/monster/Skeleton/canFreeze ()Z +MD: net/minecraft/world/entity/monster/Skeleton/m_142548_ ()Z net/minecraft/world/entity/monster/Skeleton/isShaking ()Z +MD: net/minecraft/world/entity/monster/Skeleton/m_149830_ (I)V net/minecraft/world/entity/monster/Skeleton/startFreezeConversion (I)V +MD: net/minecraft/world/entity/monster/Skeleton/m_149839_ ()Z net/minecraft/world/entity/monster/Skeleton/isFreezeConverting ()Z +MD: net/minecraft/world/entity/monster/Skeleton/m_149840_ ()V net/minecraft/world/entity/monster/Skeleton/doFreezeConversion ()V +MD: net/minecraft/world/entity/monster/Skeleton/m_149842_ (Z)V net/minecraft/world/entity/monster/Skeleton/setFreezeConverting (Z)V +MD: net/minecraft/world/entity/monster/Skeleton/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Skeleton/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Skeleton/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Skeleton/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Skeleton/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/Skeleton/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/Skeleton/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_8097_ ()V net/minecraft/world/entity/monster/Skeleton/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Skeleton/m_8119_ ()V net/minecraft/world/entity/monster/Skeleton/tick ()V +MD: net/minecraft/world/entity/monster/Slime/ ()V net/minecraft/world/entity/monster/Slime/ ()V +MD: net/minecraft/world/entity/monster/Slime/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Slime/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Slime/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/monster/Slime/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/monster/Slime/m_219112_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Slime/checkSlimeSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Slime/m_289149_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Slime/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Slime/m_33632_ ()I net/minecraft/world/entity/monster/Slime/getSize ()I +MD: net/minecraft/world/entity/monster/Slime/m_33633_ ()Z net/minecraft/world/entity/monster/Slime/isTiny ()Z +MD: net/minecraft/world/entity/monster/Slime/m_33634_ ()Z net/minecraft/world/entity/monster/Slime/doPlayJumpSound ()Z +MD: net/minecraft/world/entity/monster/Slime/m_33637_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Slime/dealDamage (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Slime/m_33642_ ()F net/minecraft/world/entity/monster/Slime/getSoundPitch ()F +MD: net/minecraft/world/entity/monster/Slime/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_6095_ ()Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/monster/Slime/getType ()Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/monster/Slime/m_6121_ ()F net/minecraft/world/entity/monster/Slime/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/Slime/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/monster/Slime/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/monster/Slime/m_6135_ ()V net/minecraft/world/entity/monster/Slime/jumpFromGround ()V +MD: net/minecraft/world/entity/monster/Slime/m_6210_ ()V net/minecraft/world/entity/monster/Slime/refreshDimensions ()V +MD: net/minecraft/world/entity/monster/Slime/m_6300_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/monster/Slime/getParticleType ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/monster/Slime/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Slime/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Slime/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Slime/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Slime/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/monster/Slime/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/monster/Slime/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/Slime/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/Slime/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Slime/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Slime/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Slime/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Slime/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Slime/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Slime/m_7480_ ()V net/minecraft/world/entity/monster/Slime/decreaseSquish ()V +MD: net/minecraft/world/entity/monster/Slime/m_7483_ ()Z net/minecraft/world/entity/monster/Slime/isDealsDamage ()Z +MD: net/minecraft/world/entity/monster/Slime/m_7549_ ()I net/minecraft/world/entity/monster/Slime/getJumpDelay ()I +MD: net/minecraft/world/entity/monster/Slime/m_7566_ ()F net/minecraft/world/entity/monster/Slime/getAttackDamage ()F +MD: net/minecraft/world/entity/monster/Slime/m_7839_ (IZ)V net/minecraft/world/entity/monster/Slime/setSize (IZ)V +MD: net/minecraft/world/entity/monster/Slime/m_7903_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getJumpSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_7905_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getSquishSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_8028_ ()Z net/minecraft/world/entity/monster/Slime/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Slime/m_8097_ ()V net/minecraft/world/entity/monster/Slime/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Slime/m_8099_ ()V net/minecraft/world/entity/monster/Slime/registerGoals ()V +MD: net/minecraft/world/entity/monster/Slime/m_8119_ ()V net/minecraft/world/entity/monster/Slime/tick ()V +MD: net/minecraft/world/entity/monster/Slime/m_8132_ ()I net/minecraft/world/entity/monster/Slime/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/m_33670_ (D)V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/setWantedMovement (D)V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/m_33672_ (FZ)V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/setDirection (FZ)V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/ ()V net/minecraft/world/entity/monster/SpellcasterIllager/ ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/SpellcasterIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_149850_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/SpellcasterIllager/access$000 (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33727_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)V net/minecraft/world/entity/monster/SpellcasterIllager/setIsCastingSpell (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33736_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager/isCastingSpell ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33737_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager/getCurrentSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33738_ ()I net/minecraft/world/entity/monster/SpellcasterIllager/getSpellCastingTime ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/SpellcasterIllager/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/SpellcasterIllager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/SpellcasterIllager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_7894_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/SpellcasterIllager/getCastingSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_8024_ ()V net/minecraft/world/entity/monster/SpellcasterIllager/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_8097_ ()V net/minecraft/world/entity/monster/SpellcasterIllager/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_8119_ ()V net/minecraft/world/entity/monster/SpellcasterIllager/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ ()V net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ (Ljava/lang/String;IIDDD)V net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ (Ljava/lang/String;IIDDD)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/m_149852_ ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/$values ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/m_262804_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)I net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/lambda$static$0 (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/m_33758_ (I)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/byId (I)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/values ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/values ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8041_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/stop ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8045_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8069_ ()I net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getCastWarmupTime ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Spider/ ()V net/minecraft/world/entity/monster/Spider/ ()V +MD: net/minecraft/world/entity/monster/Spider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Spider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Spider/m_33815_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Spider/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Spider/m_33816_ ()Z net/minecraft/world/entity/monster/Spider/isClimbing ()Z +MD: net/minecraft/world/entity/monster/Spider/m_33819_ (Z)V net/minecraft/world/entity/monster/Spider/setClimbing (Z)V +MD: net/minecraft/world/entity/monster/Spider/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Spider/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Spider/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Spider/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Spider/m_6048_ ()D net/minecraft/world/entity/monster/Spider/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Spider/m_6147_ ()Z net/minecraft/world/entity/monster/Spider/onClimbable ()Z +MD: net/minecraft/world/entity/monster/Spider/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Spider/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Spider/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Spider/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Spider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Spider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Spider/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/monster/Spider/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/monster/Spider/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Spider/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Spider/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Spider/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Spider/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Spider/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Spider/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Spider/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Spider/m_8097_ ()V net/minecraft/world/entity/monster/Spider/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Spider/m_8099_ ()V net/minecraft/world/entity/monster/Spider/registerGoals ()V +MD: net/minecraft/world/entity/monster/Spider/m_8119_ ()V net/minecraft/world/entity/monster/Spider/tick ()V +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/ (Lnet/minecraft/world/entity/monster/Spider;)V net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/ (Lnet/minecraft/world/entity/monster/Spider;)V +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/ ()V net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/ ()V +MD: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/m_219118_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/setRandomEffect (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/ (Lnet/minecraft/world/entity/monster/Spider;Ljava/lang/Class;)V net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/ (Lnet/minecraft/world/entity/monster/Spider;Ljava/lang/Class;)V +MD: net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Stray/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Stray/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Stray/m_219120_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Stray/checkStraySpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Stray/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Stray/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Stray/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Stray/m_7932_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/monster/Stray/getArrow (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/monster/Stray/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/ ()V net/minecraft/world/entity/monster/Strider/ ()V +MD: net/minecraft/world/entity/monster/Strider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Strider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Strider/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/monster/Strider; net/minecraft/world/entity/monster/Strider/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/monster/Strider; +MD: net/minecraft/world/entity/monster/Strider/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/monster/Strider/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/monster/Strider/m_203441_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/entity/monster/Strider/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/entity/monster/Strider/m_219128_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Strider/checkStriderSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Strider/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/monster/Strider/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/monster/Strider/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Strider/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Strider/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Strider/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Strider/m_33881_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/SpawnGroupData;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Strider/spawnJockey (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/SpawnGroupData;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Strider/m_33935_ ()Z net/minecraft/world/entity/monster/Strider/isSuffocating ()Z +MD: net/minecraft/world/entity/monster/Strider/m_33937_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Strider/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Strider/m_33938_ ()Z net/minecraft/world/entity/monster/Strider/isPanicking ()Z +MD: net/minecraft/world/entity/monster/Strider/m_33939_ ()Z net/minecraft/world/entity/monster/Strider/isBeingTempted ()Z +MD: net/minecraft/world/entity/monster/Strider/m_33940_ ()V net/minecraft/world/entity/monster/Strider/floatStrider ()V +MD: net/minecraft/world/entity/monster/Strider/m_33951_ (Z)V net/minecraft/world/entity/monster/Strider/setSuffocating (Z)V +MD: net/minecraft/world/entity/monster/Strider/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Strider/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Strider/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Strider/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/monster/Strider/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/monster/Strider/m_5907_ ()V net/minecraft/world/entity/monster/Strider/dropEquipment ()V +MD: net/minecraft/world/entity/monster/Strider/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Strider/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Strider/m_6048_ ()D net/minecraft/world/entity/monster/Strider/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Strider/m_6059_ ()F net/minecraft/world/entity/monster/Strider/nextStep ()F +MD: net/minecraft/world/entity/monster/Strider/m_6060_ ()Z net/minecraft/world/entity/monster/Strider/isOnFire ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/Strider/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/Strider/m_6126_ ()Z net/minecraft/world/entity/monster/Strider/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6254_ ()Z net/minecraft/world/entity/monster/Strider/isSaddled ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Strider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Strider/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/Strider/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/Strider/m_6741_ ()Z net/minecraft/world/entity/monster/Strider/isSaddleable ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6746_ ()Z net/minecraft/world/entity/monster/Strider/boost ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Strider/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Strider/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Strider/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Strider/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Strider/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Strider/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Strider/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Strider/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Strider/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Strider/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Strider/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Strider/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Strider/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Strider/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Strider/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Strider/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Strider/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Strider/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Strider/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Strider/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Strider/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Strider/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/m_8091_ ()Z net/minecraft/world/entity/monster/Strider/shouldPassengersInheritMalus ()Z +MD: net/minecraft/world/entity/monster/Strider/m_8097_ ()V net/minecraft/world/entity/monster/Strider/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Strider/m_8099_ ()V net/minecraft/world/entity/monster/Strider/registerGoals ()V +MD: net/minecraft/world/entity/monster/Strider/m_8119_ ()V net/minecraft/world/entity/monster/Strider/tick ()V +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/ (Lnet/minecraft/world/entity/monster/Strider;D)V net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/ (Lnet/minecraft/world/entity/monster/Strider;D)V +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_6669_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/getMoveToTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_8064_ ()Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/ (Lnet/minecraft/world/entity/monster/Strider;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Strider$StriderPathNavigation/ (Lnet/minecraft/world/entity/monster/Strider;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/monster/Strider$StriderPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Strider$StriderPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/m_7367_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/monster/Strider$StriderPathNavigation/hasValidPathType (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/monster/Vex/ ()V net/minecraft/world/entity/monster/Vex/ ()V +MD: net/minecraft/world/entity/monster/Vex/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Vex/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Vex/m_142039_ ()Z net/minecraft/world/entity/monster/Vex/isFlapping ()Z +MD: net/minecraft/world/entity/monster/Vex/m_19749_ ()Lnet/minecraft/world/entity/Mob; net/minecraft/world/entity/monster/Vex/getOwner ()Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/world/entity/monster/Vex/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/monster/Vex/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/monster/Vex/m_213856_ ()F net/minecraft/world/entity/monster/Vex/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/monster/Vex/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Vex/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Vex/m_219137_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$000 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219140_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$300 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219142_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$400 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219144_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$500 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219146_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$600 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_33987_ (I)V net/minecraft/world/entity/monster/Vex/setLimitedLife (I)V +MD: net/minecraft/world/entity/monster/Vex/m_33989_ (IZ)V net/minecraft/world/entity/monster/Vex/setVexFlag (IZ)V +MD: net/minecraft/world/entity/monster/Vex/m_33994_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Vex/setOwner (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Vex/m_34010_ (I)Z net/minecraft/world/entity/monster/Vex/getVexFlag (I)Z +MD: net/minecraft/world/entity/monster/Vex/m_34012_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/monster/Vex/access$100 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/monster/Vex/m_34016_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/monster/Vex/access$200 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/monster/Vex/m_34027_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/monster/Vex/getBoundOrigin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/monster/Vex/m_34028_ ()Z net/minecraft/world/entity/monster/Vex/isCharging ()Z +MD: net/minecraft/world/entity/monster/Vex/m_34033_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Vex/setBoundOrigin (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Vex/m_34035_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/monster/Vex/access$700 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/monster/Vex/m_34040_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Vex/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Vex/m_34042_ (Z)V net/minecraft/world/entity/monster/Vex/setIsCharging (Z)V +MD: net/minecraft/world/entity/monster/Vex/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vex/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vex/m_6049_ ()D net/minecraft/world/entity/monster/Vex/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Vex/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Vex/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Vex/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Vex/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Vex/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Vex/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Vex/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vex/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vex/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vex/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vex/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vex/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vex/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vex/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vex/m_8097_ ()V net/minecraft/world/entity/monster/Vex/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Vex/m_8099_ ()V net/minecraft/world/entity/monster/Vex/registerGoals ()V +MD: net/minecraft/world/entity/monster/Vex/m_8119_ ()V net/minecraft/world/entity/monster/Vex/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/start ()V +MD: net/minecraft/world/entity/monster/Vex$VexMoveControl/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/monster/Vex;)V net/minecraft/world/entity/monster/Vex$VexMoveControl/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/monster/Vex;)V +MD: net/minecraft/world/entity/monster/Vex$VexMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Vex$VexMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/m_8037_ ()V net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator/ ()V net/minecraft/world/entity/monster/Vindicator/ ()V +MD: net/minecraft/world/entity/monster/Vindicator/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Vindicator/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Vindicator/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_219151_ (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vindicator/access$000 (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vindicator/m_34081_ (Lnet/minecraft/world/Difficulty;)Z net/minecraft/world/entity/monster/Vindicator/lambda$static$0 (Lnet/minecraft/world/Difficulty;)Z +MD: net/minecraft/world/entity/monster/Vindicator/m_34104_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Vindicator/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Vindicator/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Vindicator/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Vindicator/m_6593_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/monster/Vindicator/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/Vindicator/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/Vindicator/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Vindicator/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Vindicator/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vindicator/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vindicator/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_7895_ (IZ)V net/minecraft/world/entity/monster/Vindicator/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Vindicator/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_8024_ ()V net/minecraft/world/entity/monster/Vindicator/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Vindicator/m_8099_ ()V net/minecraft/world/entity/monster/Vindicator/registerGoals ()V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/start ()V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;)V net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;)V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;Lnet/minecraft/world/entity/monster/Vindicator;)V net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;Lnet/minecraft/world/entity/monster/Vindicator;)V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/monster/Witch/ ()V net/minecraft/world/entity/monster/Witch/ ()V +MD: net/minecraft/world/entity/monster/Witch/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Witch/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Witch/m_289150_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Witch/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Witch/m_34155_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Witch/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Witch/m_34161_ ()Z net/minecraft/world/entity/monster/Witch/isDrinkingPotion ()Z +MD: net/minecraft/world/entity/monster/Witch/m_34163_ (Z)V net/minecraft/world/entity/monster/Witch/setUsingItem (Z)V +MD: net/minecraft/world/entity/monster/Witch/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Witch/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Witch/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Witch/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Witch/m_6515_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/monster/Witch/getDamageAfterMagicAbsorb (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/monster/Witch/m_7490_ ()Z net/minecraft/world/entity/monster/Witch/canBeLeader ()Z +MD: net/minecraft/world/entity/monster/Witch/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_7822_ (B)V net/minecraft/world/entity/monster/Witch/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/Witch/m_7895_ (IZ)V net/minecraft/world/entity/monster/Witch/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Witch/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_8097_ ()V net/minecraft/world/entity/monster/Witch/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Witch/m_8099_ ()V net/minecraft/world/entity/monster/Witch/registerGoals ()V +MD: net/minecraft/world/entity/monster/Witch/m_8107_ ()V net/minecraft/world/entity/monster/Witch/aiStep ()V +MD: net/minecraft/world/entity/monster/WitherSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/WitherSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/WitherSkeleton/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_213946_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/WitherSkeleton/populateDefaultEquipmentEnchantments (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/WitherSkeleton/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/WitherSkeleton/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/monster/WitherSkeleton/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/WitherSkeleton/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/WitherSkeleton/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7932_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/monster/WitherSkeleton/getArrow (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_8099_ ()V net/minecraft/world/entity/monster/WitherSkeleton/registerGoals ()V +MD: net/minecraft/world/entity/monster/Zoglin/ ()V net/minecraft/world/entity/monster/Zoglin/ ()V +MD: net/minecraft/world/entity/monster/Zoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Zoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34216_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/Zoglin/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34228_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/Zoglin/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34236_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/Zoglin/initFightActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34247_ ()Z net/minecraft/world/entity/monster/Zoglin/isAdult ()Z +MD: net/minecraft/world/entity/monster/Zoglin/m_34248_ ()V net/minecraft/world/entity/monster/Zoglin/updateActivity ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_34250_ ()V net/minecraft/world/entity/monster/Zoglin/playAngrySound ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_34251_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Zoglin/findNearestValidAttackTarget ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Zoglin/m_34252_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Zoglin/isTargetable (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_34254_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Zoglin/setAttackTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34257_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Zoglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Zoglin/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/Zoglin/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/Zoglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zoglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zoglin/m_6048_ ()D net/minecraft/world/entity/monster/Zoglin/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Zoglin/m_6162_ ()Z net/minecraft/world/entity/monster/Zoglin/isBaby ()Z +MD: net/minecraft/world/entity/monster/Zoglin/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/Zoglin/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/Zoglin/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Zoglin/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Zoglin/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Zoglin/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/Zoglin/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Zoglin/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_6863_ (Z)V net/minecraft/world/entity/monster/Zoglin/setBaby (Z)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Zoglin/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Zoglin/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Zoglin/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zoglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zoglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zoglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zoglin/m_7575_ ()I net/minecraft/world/entity/monster/Zoglin/getAttackAnimationRemainingTicks ()I +MD: net/minecraft/world/entity/monster/Zoglin/m_7822_ (B)V net/minecraft/world/entity/monster/Zoglin/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zoglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zoglin/m_8024_ ()V net/minecraft/world/entity/monster/Zoglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_8025_ ()V net/minecraft/world/entity/monster/Zoglin/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/Zoglin/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/Zoglin/m_8097_ ()V net/minecraft/world/entity/monster/Zoglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_8107_ ()V net/minecraft/world/entity/monster/Zoglin/aiStep ()V +MD: net/minecraft/world/entity/monster/Zombie/ ()V net/minecraft/world/entity/monster/Zombie/ ()V +MD: net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Zombie/m_213860_ ()I net/minecraft/world/entity/monster/Zombie/getExperienceReward ()I +MD: net/minecraft/world/entity/monster/Zombie/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Zombie/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Zombie/m_214076_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Zombie/killedEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_219162_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Zombie/getSpawnAsBabyOdds (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_219167_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Zombie/access$000 (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Zombie/m_34278_ (I)V net/minecraft/world/entity/monster/Zombie/startUnderWaterConversion (I)V +MD: net/minecraft/world/entity/monster/Zombie/m_34283_ (Lnet/minecraft/world/Difficulty;)Z net/minecraft/world/entity/monster/Zombie/lambda$static$0 (Lnet/minecraft/world/Difficulty;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_34310_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/world/entity/monster/Zombie/convertToZombieType (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/world/entity/monster/Zombie/m_34328_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Zombie/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Zombie/m_34329_ ()Z net/minecraft/world/entity/monster/Zombie/isUnderWaterConverting ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_34330_ ()Z net/minecraft/world/entity/monster/Zombie/canBreakDoors ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_34336_ (Z)V net/minecraft/world/entity/monster/Zombie/setCanBreakDoors (Z)V +MD: net/minecraft/world/entity/monster/Zombie/m_34339_ (F)V net/minecraft/world/entity/monster/Zombie/handleAttributes (F)V +MD: net/minecraft/world/entity/monster/Zombie/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Zombie/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Zombie/m_5884_ ()Z net/minecraft/world/entity/monster/Zombie/isSunSensitive ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_6049_ ()D net/minecraft/world/entity/monster/Zombie/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Zombie/m_6162_ ()Z net/minecraft/world/entity/monster/Zombie/isBaby ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Zombie/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Zombie/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Zombie/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Zombie/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Zombie/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Zombie/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Zombie/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Zombie/m_6863_ (Z)V net/minecraft/world/entity/monster/Zombie/setBaby (Z)V +MD: net/minecraft/world/entity/monster/Zombie/m_6878_ ()V net/minecraft/world/entity/monster/Zombie/addBehaviourGoals ()V +MD: net/minecraft/world/entity/monster/Zombie/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Zombie/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_7252_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Zombie/canHoldItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Zombie/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Zombie/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Zombie/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zombie/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zombie/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/Zombie/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/Zombie/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_7572_ ()V net/minecraft/world/entity/monster/Zombie/randomizeReinforcementsChance ()V +MD: net/minecraft/world/entity/monster/Zombie/m_7586_ ()Z net/minecraft/world/entity/monster/Zombie/supportsBreakDoorGoal ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_7593_ ()Z net/minecraft/world/entity/monster/Zombie/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_7595_ ()V net/minecraft/world/entity/monster/Zombie/doUnderWaterConversion ()V +MD: net/minecraft/world/entity/monster/Zombie/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_8097_ ()V net/minecraft/world/entity/monster/Zombie/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Zombie/m_8099_ ()V net/minecraft/world/entity/monster/Zombie/registerGoals ()V +MD: net/minecraft/world/entity/monster/Zombie/m_8107_ ()V net/minecraft/world/entity/monster/Zombie/aiStep ()V +MD: net/minecraft/world/entity/monster/Zombie/m_8119_ ()V net/minecraft/world/entity/monster/Zombie/tick ()V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/ (Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/ (Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/m_5777_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/playBreakSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/m_7659_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/playDestroyProgressSound (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/m_8052_ ()D net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/acceptedDistance ()D +MD: net/minecraft/world/entity/monster/Zombie$ZombieGroupData/ (ZZ)V net/minecraft/world/entity/monster/Zombie$ZombieGroupData/ (ZZ)V +MD: net/minecraft/world/entity/monster/ZombieVillager/ ()V net/minecraft/world/entity/monster/ZombieVillager/ ()V +MD: net/minecraft/world/entity/monster/ZombieVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/ZombieVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_149889_ ()I net/minecraft/world/entity/monster/ZombieVillager/getVillagerXp ()I +MD: net/minecraft/world/entity/monster/ZombieVillager/m_204070_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/ZombieVillager/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_254805_ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/entity/monster/ZombieVillager/lambda$new$0 (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34373_ (I)V net/minecraft/world/entity/monster/ZombieVillager/setVillagerXp (I)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34375_ (Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/world/entity/monster/ZombieVillager/setVillagerData (Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34383_ (Ljava/util/UUID;I)V net/minecraft/world/entity/monster/ZombieVillager/startConverting (Ljava/util/UUID;I)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34391_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/ZombieVillager/setGossips (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34398_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/ZombieVillager/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34408_ ()Z net/minecraft/world/entity/monster/ZombieVillager/isConverting ()Z +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34410_ ()I net/minecraft/world/entity/monster/ZombieVillager/getConversionProgress ()I +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34411_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombieVillager/setTradeOffers (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/ZombieVillager/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/ZombieVillager/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6100_ ()F net/minecraft/world/entity/monster/ZombieVillager/getVoicePitch ()F +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/ZombieVillager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6785_ (D)Z net/minecraft/world/entity/monster/ZombieVillager/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7141_ ()Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/monster/ZombieVillager/getVillagerData ()Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombieVillager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombieVillager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7593_ ()Z net/minecraft/world/entity/monster/ZombieVillager/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7822_ (B)V net/minecraft/world/entity/monster/ZombieVillager/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_8097_ ()V net/minecraft/world/entity/monster/ZombieVillager/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_8119_ ()V net/minecraft/world/entity/monster/ZombieVillager/tick ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/ ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/ZombifiedPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/ZombifiedPiglin/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_219173_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/checkZombifiedPiglinSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_289151_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$2 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_289152_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)V net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$3 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_289153_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$1 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34462_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$0 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34470_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/ZombifiedPiglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34471_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/maybePlayFirstAngerSound ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34472_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/maybeAlertOthers ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34473_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/alertOthers ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34476_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/playAngerSound ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombifiedPiglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/ZombifiedPiglin/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6049_ ()D net/minecraft/world/entity/monster/ZombifiedPiglin/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/monster/ZombifiedPiglin/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/ZombifiedPiglin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/ZombifiedPiglin/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6784_ ()I net/minecraft/world/entity/monster/ZombifiedPiglin/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6825_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6878_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/addBehaviourGoals ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/monster/ZombifiedPiglin/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6935_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/isPreventingPlayerRest (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombifiedPiglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombifiedPiglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombifiedPiglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7572_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/randomizeReinforcementsChance ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7593_ ()Z net/minecraft/world/entity/monster/ZombifiedPiglin/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7870_ (I)V net/minecraft/world/entity/monster/ZombifiedPiglin/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombifiedPiglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_8024_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/ ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/hoglin/Hoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/monster/hoglin/Hoglin/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_213860_ ()I net/minecraft/world/entity/monster/hoglin/Hoglin/getExperienceReward ()I +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_219179_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/monster/hoglin/Hoglin/playSoundEvent (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_219181_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/checkHoglinSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_30232_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/ageBoundaryReached ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34531_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/hoglin/Hoglin/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34551_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/hoglin/Hoglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34552_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/isAdult ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34554_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/isConverting ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34555_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/canBeHunted ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34557_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/isImmuneToZombification ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34564_ (Z)V net/minecraft/world/entity/monster/hoglin/Hoglin/setImmuneToZombification (Z)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34566_ (Z)V net/minecraft/world/entity/monster/hoglin/Hoglin/setCannotBeHunted (Z)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/hoglin/Hoglin/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/hoglin/Hoglin/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/hoglin/Hoglin/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5957_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/canFallInLove ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6048_ ()D net/minecraft/world/entity/monster/hoglin/Hoglin/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/hoglin/Hoglin/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6149_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/shouldDropExperience ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/hoglin/Hoglin/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/hoglin/Hoglin/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/hoglin/Hoglin/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/Hoglin/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6785_ (D)Z net/minecraft/world/entity/monster/hoglin/Hoglin/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/hoglin/Hoglin/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/hoglin/Hoglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/hoglin/Hoglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7575_ ()I net/minecraft/world/entity/monster/hoglin/Hoglin/getAttackAnimationRemainingTicks ()I +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7822_ (B)V net/minecraft/world/entity/monster/hoglin/Hoglin/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8024_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8025_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/hoglin/Hoglin/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8097_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8107_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/aiStep ()V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34571_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/hoglin/HoglinAi/createIdleMovementBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34572_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/lambda$broadcastAttackTarget$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34575_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/hoglin/HoglinAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34577_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/updateActivity (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34579_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/onHitTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34582_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/HoglinAi/getSoundForActivity (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34585_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isPosNearNearestRepellent (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34588_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/lambda$broadcastRetreat$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34591_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34593_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/hoglin/HoglinAi/getSoundForCurrentActivity (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34595_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/wasHurtBy (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34598_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/HoglinAi/lambda$getSoundForCurrentActivity$2 (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34601_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34603_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isPacified (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34605_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/broadcastRetreat (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34608_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initFightActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34610_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/hoglin/HoglinAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34612_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/retreatFromNearestTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34615_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initRetreatActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34617_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/wantsToStopFleeing (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34619_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/setAvoidTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34622_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/piglinsOutnumberHoglins (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34624_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/maybeRetaliate (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34627_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/List; net/minecraft/world/entity/monster/hoglin/HoglinAi/getVisibleAdultHoglins (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34629_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/setAttackTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34632_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isNearRepellent (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34634_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/broadcastAttackTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34637_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isBreeding (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34639_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/setAttackTargetIfCloserThanCurrent (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinBase/m_34642_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/hoglin/HoglinBase/hurtAndThrowTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinBase/m_34645_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinBase/throwTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinBase/m_7575_ ()I net/minecraft/world/entity/monster/hoglin/HoglinBase/getAttackAnimationRemainingTicks ()I +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/ ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34665_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isImmuneToZombification ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34666_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isConverting ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34667_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isAdult ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34668_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isHoldingMeleeWeapon ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34669_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/applyOpenDoorsAbility ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34670_ (Z)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/setImmuneToZombification (Z)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/piglin/AbstractPiglin/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_6049_ ()D net/minecraft/world/entity/monster/piglin/AbstractPiglin/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_6389_ ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/AbstractPiglin/getArmPose ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/piglin/AbstractPiglin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7121_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/canHunt ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7580_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/playConvertedSound ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8024_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8025_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8032_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/playAmbientSound ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8063_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8097_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/ ()V net/minecraft/world/entity/monster/piglin/Piglin/ ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/piglin/Piglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_213860_ ()I net/minecraft/world/entity/monster/piglin/Piglin/getExperienceReward ()I +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/piglin/Piglin/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_219191_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/monster/piglin/Piglin/maybeWearArmor (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_219195_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/monster/piglin/Piglin/playSoundEvent (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_219197_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/piglin/Piglin/checkPiglinSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34730_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/monster/piglin/Piglin/getTopPassenger (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34770_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/piglin/Piglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34771_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/isDancing ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34772_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/piglin/Piglin/createSpawnWeapon ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34773_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/isChargingCrossbow ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34778_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/piglin/Piglin/addToInventory (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34780_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/canAddToInventory (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34783_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/Piglin/holdInMainHand (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34785_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/Piglin/holdInOffHand (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34787_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34789_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setDancing (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34791_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setCannotHunt (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/monster/piglin/Piglin/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/piglin/Piglin/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/Piglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5811_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V net/minecraft/world/entity/monster/piglin/Piglin/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5847_ ()V net/minecraft/world/entity/monster/piglin/Piglin/onCrossbowAttackPerformed ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/monster/piglin/Piglin/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6048_ ()D net/minecraft/world/entity/monster/piglin/Piglin/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/piglin/Piglin/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6136_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setChargingCrossbow (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6162_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/isBaby ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/Piglin/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6389_ ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/Piglin/getArmPose ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/piglin/Piglin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/piglin/Piglin/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/piglin/Piglin/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/piglin/Piglin/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6785_ (D)Z net/minecraft/world/entity/monster/piglin/Piglin/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6863_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setBaby (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7121_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/canHunt ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/piglin/Piglin/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/piglin/Piglin/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/Piglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/Piglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/piglin/Piglin/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/Piglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7580_ ()V net/minecraft/world/entity/monster/piglin/Piglin/playConvertedSound ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/monster/piglin/Piglin/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7808_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/Piglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/monster/piglin/Piglin/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8024_ ()V net/minecraft/world/entity/monster/piglin/Piglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8028_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8063_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/piglin/Piglin/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/Piglin/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8097_ ()V net/minecraft/world/entity/monster/piglin/Piglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149962_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastUniversalAnger$10 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149965_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isLovedItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149967_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isBarterCurrency (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149969_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_219205_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initMemories (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257313_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$initRideHoglinActivity$2 (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257417_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/babyAvoidNemesis ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257528_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/babySometimesRideBabyHoglin ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257691_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/avoidRepellent ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257731_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/avoidZombified ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257792_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/monster/piglin/PiglinAi/createLookBehaviors ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289154_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$angerNearbyPiglins$5 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289155_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$wasHurtBy$6 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289156_ (Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$babySometimesRideBabyHoglin$8 (Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289157_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastAngerTarget$9 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34803_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$initCelebrateActivity$1 (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34805_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinAi/createIdleLookBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34806_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isZombified (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34808_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isWearingGold (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34810_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToDance (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34817_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastRetreat$13 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34820_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34822_ (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/piglin/PiglinAi/removeOneItemFromItemEntity (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34824_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/broadcastUniversalAnger (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34826_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/maybeRetaliate (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34834_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToStopRiding (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34837_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/wasHurtBy (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34840_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinAi/makeBrain (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34843_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/pickUpItem (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34846_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/piglin/PiglinAi/mobInteract (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34850_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItemsTowardPlayer (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34854_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinAi/getSoundForActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34857_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToPickup (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34860_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItems (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34863_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItemsTowardPos (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34867_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Z)V net/minecraft/world/entity/monster/piglin/PiglinAi/stopHoldingOffHandItem (Lnet/minecraft/world/entity/monster/piglin/Piglin;Z)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34873_ (Lnet/minecraft/world/entity/player/Player;Z)V net/minecraft/world/entity/monster/piglin/PiglinAi/angerNearbyPiglins (Lnet/minecraft/world/entity/player/Player;Z)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34878_ (ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$angerNearbyPiglins$4 (ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34882_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinAi/createIdleMovementBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34883_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isPlayerHoldingLovedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34885_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$isNearestValidAttackTarget$3 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34891_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34893_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getNearestVisibleTargetablePlayer (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34895_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/broadcastAngerTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34898_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/updateActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34900_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34903_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initFightActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34906_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$getSoundForCurrentActivity$7 (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34909_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/canAdmire (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34912_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItemsTowardRandomPos (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34918_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/hasCrossbow (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34920_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initCelebrateActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34922_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/dontKillAnyMoreHoglinsForAWhile (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34924_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAngerTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34927_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/cancelAdmiring (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34929_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/broadcastRetreat (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34932_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/PiglinAi/holdInOffhand (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34938_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/admireGoldItem (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34940_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initAdmireItemActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34942_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isIdle (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34944_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAngerTargetToNearestTargetablePlayerIfFound (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34947_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getSoundForCurrentActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34949_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/retreatFromNearestTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34952_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/PiglinAi/putInInventory (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34958_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initRetreatActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34960_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/List; net/minecraft/world/entity/monster/piglin/PiglinAi/getAdultPiglins (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34962_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAngerTargetIfCloserThanCurrent (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34967_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAvoidTargetAndDontHuntForAWhile (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34971_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/seesPlayerHoldingLovedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34973_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initRideHoglinActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34975_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getAngerTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34979_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$initFightActivity$0 (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34982_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/doesntSeeAnyPlayerHoldingLovedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34984_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastRetreat$12 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34986_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getAvoidTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34988_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wasHurtRecently (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34990_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastUniversalAnger$11 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34992_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isBabyRidingBaby (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34996_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; net/minecraft/world/entity/monster/piglin/PiglinAi/getBarterResponseItems (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34998_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearZombified (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35000_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35002_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearAvoidTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35004_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; net/minecraft/world/entity/monster/piglin/PiglinAi/getVisibleAdultPiglins (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35006_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/stopWalking (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35008_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToStopFleeing (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35010_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/piglinsEqualOrOutnumberHoglins (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35012_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/hoglinsOutnumberPiglins (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35014_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/eat (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35016_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/piglin/PiglinAi/getRandomNearbyPos (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35018_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/hasEatenRecently (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35020_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isAdmiringItem (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35022_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearRepellent (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35024_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isAdmiringDisabled (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35026_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isHoldingItemInOffHand (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35028_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNotHoldingLovedItemInOffHand (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ ()V net/minecraft/world/entity/monster/piglin/PiglinArmPose/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ (Ljava/lang/String;I)V net/minecraft/world/entity/monster/piglin/PiglinArmPose/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/m_149973_ ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinArmPose/$values ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/values ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinArmPose/values ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/piglin/PiglinBrute/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/piglin/PiglinBrute/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_35075_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/piglin/PiglinBrute/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_35076_ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/playAngrySound ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/piglin/PiglinBrute/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinBrute/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinBrute/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6389_ ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinBrute/getArmPose ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/piglin/PiglinBrute/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/piglin/PiglinBrute/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7121_ ()Z net/minecraft/world/entity/monster/piglin/PiglinBrute/canHunt ()Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinBrute/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/piglin/PiglinBrute/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinBrute/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7580_ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/playConvertedSound ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinBrute/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_8024_ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinBrute/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ ()V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_149988_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/setAngerTarget (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35080_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/createIdleLookBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35083_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$isNearestValidAttackTarget$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35086_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35088_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/isNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35091_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/getTargetIfWithinRange (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35094_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initMemories (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35096_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/wasHurtBy (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35099_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/makeBrain (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35102_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$playActivitySound$3 (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35105_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/createIdleMovementBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35106_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$getTargetIfWithinRange$2 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35109_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/updateActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35111_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initCoreActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35114_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/maybePlayActivitySound (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35116_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$initFightActivity$0 (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35119_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initIdleActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35122_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/playActivitySound (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35124_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initFightActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/ ()V net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/ ()V +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_257643_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_257745_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_257939_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_289158_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/ ()V net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/ ()V +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_257667_ (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/create (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_257725_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_257920_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_258075_ (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/ ()V net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/ ()V +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257377_ (Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$1 (Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257530_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257635_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257704_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257706_ ()Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/create ()Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257899_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/hasHuntedRecently (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257975_ (Ljava/util/List;)Ljava/lang/Boolean; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$0 (Ljava/util/List;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/ ()V net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/ ()V +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_257602_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_257651_ (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/create (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_257773_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_258065_ (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/ ()V net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/ ()V +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257597_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257715_ (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/create (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257859_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257983_ (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/lambda$create$2 (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/ ()V net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/ ()V +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_257649_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_257718_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_257846_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_289159_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z +MD: net/minecraft/world/entity/monster/warden/AngerLevel/ ()V net/minecraft/world/entity/monster/warden/AngerLevel/ ()V +MD: net/minecraft/world/entity/monster/warden/AngerLevel/ (Ljava/lang/String;IILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/monster/warden/AngerLevel/ (Ljava/lang/String;IILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219226_ ()I net/minecraft/world/entity/monster/warden/AngerLevel/getMinimumAnger ()I +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219227_ (I)Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/byAnger (I)Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219229_ (Lnet/minecraft/world/entity/monster/warden/AngerLevel;Lnet/minecraft/world/entity/monster/warden/AngerLevel;)I net/minecraft/world/entity/monster/warden/AngerLevel/lambda$static$0 (Lnet/minecraft/world/entity/monster/warden/AngerLevel;Lnet/minecraft/world/entity/monster/warden/AngerLevel;)I +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219232_ ([Lnet/minecraft/world/entity/monster/warden/AngerLevel;)V net/minecraft/world/entity/monster/warden/AngerLevel/lambda$static$1 ([Lnet/minecraft/world/entity/monster/warden/AngerLevel;)V +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219234_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/AngerLevel/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219235_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/AngerLevel/getListeningSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219236_ ()Z net/minecraft/world/entity/monster/warden/AngerLevel/isAngry ()Z +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219237_ ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/$values ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/values ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/values ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/ ()V net/minecraft/world/entity/monster/warden/AngerManagement/ ()V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/ (Ljava/util/function/Predicate;Ljava/util/List;)V net/minecraft/world/entity/monster/warden/AngerManagement/ (Ljava/util/function/Predicate;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219256_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/warden/AngerManagement/getActiveEntity ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219257_ (ILnet/minecraft/world/entity/Entity;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$increaseAnger$6 (ILnet/minecraft/world/entity/Entity;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219261_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/warden/AngerManagement/convertFromUuids (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219263_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Predicate;)V net/minecraft/world/entity/monster/warden/AngerManagement/tick (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219266_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/AngerManagement/clearAnger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219268_ (Lnet/minecraft/world/entity/Entity;I)I net/minecraft/world/entity/monster/warden/AngerManagement/increaseAnger (Lnet/minecraft/world/entity/Entity;I)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219271_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/monster/warden/AngerManagement/lambda$new$3 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219275_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$createUuidAngerPairs$5 (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219277_ (Ljava/util/function/Predicate;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/monster/warden/AngerManagement/codec (Ljava/util/function/Predicate;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219279_ (Ljava/util/function/Predicate;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$codec$2 (Ljava/util/function/Predicate;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219282_ (Ljava/util/function/Predicate;Ljava/util/List;)Lnet/minecraft/world/entity/monster/warden/AngerManagement; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$codec$1 (Ljava/util/function/Predicate;Ljava/util/List;)Lnet/minecraft/world/entity/monster/warden/AngerManagement; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219285_ ()Ljava/util/List; net/minecraft/world/entity/monster/warden/AngerManagement/createUuidAngerPairs ()Ljava/util/List; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219286_ (Lnet/minecraft/world/entity/Entity;)I net/minecraft/world/entity/monster/warden/AngerManagement/getActiveAnger (Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219288_ ()V net/minecraft/world/entity/monster/warden/AngerManagement/sortAndUpdateHighestAnger ()V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219289_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$getActiveEntity$8 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219291_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/monster/warden/AngerManagement/getTopSuspect ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219292_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/AngerManagement/lambda$getActiveEntity$7 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219294_ (Lnet/minecraft/world/entity/Entity;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$createUuidAngerPairs$4 (Lnet/minecraft/world/entity/Entity;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_252714_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/AngerManagement$1/ ()V net/minecraft/world/entity/monster/warden/AngerManagement$1/ ()V +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/ (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/ (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Ljava/lang/Object;Ljava/lang/Object;)I net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Ljava/lang/Object;Ljava/lang/Object;)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/f_219298_ ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/angerManagement ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/hashCode ()I net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/hashCode ()I +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/toString ()Ljava/lang/String; net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/monster/warden/Warden/ ()V net/minecraft/world/entity/monster/warden/Warden/ ()V +MD: net/minecraft/world/entity/monster/warden/Warden/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/warden/Warden/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/monster/warden/Warden/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_213651_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/monster/warden/Warden/updateDynamicGameEventListener (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_213824_ ()Z net/minecraft/world/entity/monster/warden/Warden/canDisableShield ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_213854_ ()Z net/minecraft/world/entity/monster/warden/Warden/dampensVibrations ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_219375_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/entity/monster/warden/Warden/applyDarknessAround (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219383_ (Lnet/minecraft/world/entity/AnimationState;)V net/minecraft/world/entity/monster/warden/Warden/clientDiggingParticles (Lnet/minecraft/world/entity/AnimationState;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219385_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/Warden/canTargetEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_219387_ (Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/entity/monster/warden/Warden/increaseAngerAt (Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219393_ (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V net/minecraft/world/entity/monster/warden/Warden/lambda$readAdditionalSaveData$2 (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219416_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/warden/Warden/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219428_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/Warden/clearAnger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219435_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/warden/Warden/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219441_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/Warden/increaseAngerAt (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219446_ ()Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/Warden/getAngerLevel ()Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219448_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/warden/Warden/getEntityAngryAt ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219449_ ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; net/minecraft/world/entity/monster/warden/Warden/getAngerManagement ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219450_ ()Z net/minecraft/world/entity/monster/warden/Warden/isDiggingOrEmerging ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_219451_ ()V net/minecraft/world/entity/monster/warden/Warden/syncClientAngerLevel ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219452_ ()I net/minecraft/world/entity/monster/warden/Warden/getHeartBeatDelay ()I +MD: net/minecraft/world/entity/monster/warden/Warden/m_219453_ ()V net/minecraft/world/entity/monster/warden/Warden/playListeningSound ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219454_ ()I net/minecraft/world/entity/monster/warden/Warden/getActiveAnger ()I +MD: net/minecraft/world/entity/monster/warden/Warden/m_219459_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/warden/Warden/setAttackTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219463_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/warden/Warden/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219464_ ()I net/minecraft/world/entity/monster/warden/Warden/getClientAngerLevel ()I +MD: net/minecraft/world/entity/monster/warden/Warden/m_219467_ (F)F net/minecraft/world/entity/monster/warden/Warden/getTendrilAnimation (F)F +MD: net/minecraft/world/entity/monster/warden/Warden/m_219469_ (F)F net/minecraft/world/entity/monster/warden/Warden/getHeartAnimation (F)F +MD: net/minecraft/world/entity/monster/warden/Warden/m_279938_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/entity/monster/warden/Warden/lambda$readAdditionalSaveData$3 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/entity/monster/warden/Warden/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/entity/monster/warden/Warden/m_280253_ (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/Warden/access$000 (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/Warden/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/entity/monster/warden/Warden/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/entity/monster/warden/Warden/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/warden/Warden/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/warden/Warden/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/Warden/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/Warden/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/warden/Warden/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/warden/Warden/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/monster/warden/Warden/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/warden/Warden/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6059_ ()F net/minecraft/world/entity/monster/warden/Warden/nextStep ()F +MD: net/minecraft/world/entity/monster/warden/Warden/m_6094_ ()Z net/minecraft/world/entity/monster/warden/Warden/isPushable ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6121_ ()F net/minecraft/world/entity/monster/warden/Warden/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/warden/Warden/m_6128_ ()Z net/minecraft/world/entity/monster/warden/Warden/ignoreExplosion ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/Warden/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/warden/Warden/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/warden/Warden/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/warden/Warden/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6785_ (D)Z net/minecraft/world/entity/monster/warden/Warden/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/warden/Warden/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/monster/warden/Warden/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/monster/warden/Warden/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/Warden/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/Warden/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/Warden/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/warden/Warden/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/warden/Warden/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/warden/Warden/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/warden/Warden/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/Warden/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/Warden/m_7822_ (B)V net/minecraft/world/entity/monster/warden/Warden/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/Warden/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/Warden/m_8024_ ()V net/minecraft/world/entity/monster/warden/Warden/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_8025_ ()V net/minecraft/world/entity/monster/warden/Warden/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/Warden/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/Warden/m_8097_ ()V net/minecraft/world/entity/monster/warden/Warden/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_8119_ ()V net/minecraft/world/entity/monster/warden/Warden/tick ()V +MD: net/minecraft/world/entity/monster/warden/Warden$1/ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/warden/Warden$1/ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/warden/Warden$1/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/monster/warden/Warden$1/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/monster/warden/Warden$1$1/ (Lnet/minecraft/world/entity/monster/warden/Warden$1;Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V net/minecraft/world/entity/monster/warden/Warden$1$1/ (Lnet/minecraft/world/entity/monster/warden/Warden$1;Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V +MD: net/minecraft/world/entity/monster/warden/Warden$1$1/m_214208_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/entity/monster/warden/Warden$1$1/distance (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/entity/monster/warden/Warden$2/ ()V net/minecraft/world/entity/monster/warden/Warden$2/ ()V +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/ (Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/monster/warden/Warden$VibrationUser/ (Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/entity/monster/warden/Warden$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/entity/monster/warden/Warden$VibrationUser/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280076_ ()Z net/minecraft/world/entity/monster/warden/Warden$VibrationUser/canTriggerAvoidVibration ()Z +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/entity/monster/warden/Warden$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/monster/warden/Warden$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280351_ ()I net/minecraft/world/entity/monster/warden/Warden$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/entity/monster/warden/WardenAi/ ()V net/minecraft/world/entity/monster/warden/WardenAi/ ()V +MD: net/minecraft/world/entity/monster/warden/WardenAi/ ()V net/minecraft/world/entity/monster/warden/WardenAi/ ()V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219505_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/warden/WardenAi/setDigCooldown (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219507_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$isTarget$5 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219510_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219512_ (Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/monster/warden/WardenAi/updateActivity (Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219514_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/isTarget (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219517_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initFightActivity (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219520_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/WardenAi/makeBrain (Lnet/minecraft/world/entity/monster/warden/Warden;Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219523_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/warden/WardenAi/setDisturbanceLocation (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219526_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initEmergeActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219528_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/warden/WardenAi/onTargetInvalid (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219531_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initDiggingActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219533_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$initFightActivity$4 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219536_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219538_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$initFightActivity$3 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219541_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initInvestigateActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219543_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initSniffingActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219545_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initRoarActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_257315_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/WardenAi/lambda$static$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_257316_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$static$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_257317_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/warden/WardenAi/lambda$static$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ (III)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ (III)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219571_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/tick ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219572_ (I)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/setWarningLevel (I)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219574_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/hasNearbyWarden (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219577_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/OptionalInt; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/tryWarn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/OptionalInt; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219583_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/copyData (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219588_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219593_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/reset ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219594_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/getNearbyPlayers (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219599_ ()I net/minecraft/world/entity/monster/warden/WardenSpawnTracker/getWarningLevel ()I +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219600_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$2 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219602_ ()Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/onCooldown ()Z +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219603_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$1 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219605_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/increaseWarningLevel ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219606_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$0 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219608_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/decreaseWarningLevel ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244972_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/stream/Stream; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$5 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244973_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$7 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244974_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$4 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244976_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$6 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_289160_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$getNearbyPlayers$8 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/npc/AbstractVillager/ ()V net/minecraft/world/entity/npc/AbstractVillager/ ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/npc/AbstractVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/npc/AbstractVillager/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_183595_ ()Z net/minecraft/world/entity/npc/AbstractVillager/isClientSide ()Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35277_ (Lnet/minecraft/world/item/trading/MerchantOffers;[Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing;I)V net/minecraft/world/entity/npc/AbstractVillager/addOffersFromItemListings (Lnet/minecraft/world/item/trading/MerchantOffers;[Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing;I)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35287_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/npc/AbstractVillager/addParticlesAroundSelf (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35303_ ()I net/minecraft/world/entity/npc/AbstractVillager/getUnhappyCounter ()I +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35306_ ()Z net/minecraft/world/entity/npc/AbstractVillager/isTrading ()Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35310_ ()V net/minecraft/world/entity/npc/AbstractVillager/playCelebrateSound ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/npc/AbstractVillager/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35319_ (I)V net/minecraft/world/entity/npc/AbstractVillager/setUnhappyCounter (I)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/npc/AbstractVillager/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6068_ (Z)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/AbstractVillager/getTradeUpdatedSound (Z)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6255_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/entity/npc/AbstractVillager/overrideOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/npc/AbstractVillager/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/npc/AbstractVillager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/npc/AbstractVillager/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6616_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/entity/npc/AbstractVillager/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6621_ (I)V net/minecraft/world/entity/npc/AbstractVillager/overrideXp (I)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/npc/AbstractVillager/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6996_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/AbstractVillager/notifyTrade (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/AbstractVillager/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/AbstractVillager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/AbstractVillager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/npc/AbstractVillager/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/AbstractVillager/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7604_ ()V net/minecraft/world/entity/npc/AbstractVillager/updateTrades ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7713_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/npc/AbstractVillager/notifyTradeUpdated (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7809_ ()I net/minecraft/world/entity/npc/AbstractVillager/getVillagerXp ()I +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7826_ ()Z net/minecraft/world/entity/npc/AbstractVillager/showProgressBar ()Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7962_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/entity/npc/AbstractVillager/getTradingPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7996_ ()V net/minecraft/world/entity/npc/AbstractVillager/stopTrading ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_8058_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/AbstractVillager/rewardTradeXp (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_8097_ ()V net/minecraft/world/entity/npc/AbstractVillager/defineSynchedData ()V +MD: net/minecraft/world/entity/npc/CatSpawner/ ()V net/minecraft/world/entity/npc/CatSpawner/ ()V +MD: net/minecraft/world/entity/npc/CatSpawner/m_219609_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/CatSpawner/lambda$spawnInVillage$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/CatSpawner/m_35326_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/npc/CatSpawner/spawnInVillage (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/npc/CatSpawner/m_35333_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/world/entity/npc/CatSpawner/spawnCat (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/world/entity/npc/CatSpawner/m_35336_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/npc/CatSpawner/spawnInHut (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/npc/CatSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/entity/npc/CatSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/entity/npc/ClientSideMerchant/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/ClientSideMerchant/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_183595_ ()Z net/minecraft/world/entity/npc/ClientSideMerchant/isClientSide ()Z +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6255_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/entity/npc/ClientSideMerchant/overrideOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6616_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/entity/npc/ClientSideMerchant/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6621_ (I)V net/minecraft/world/entity/npc/ClientSideMerchant/overrideXp (I)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6996_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/ClientSideMerchant/notifyTrade (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/ClientSideMerchant/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/ClientSideMerchant/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7713_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/npc/ClientSideMerchant/notifyTradeUpdated (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7809_ ()I net/minecraft/world/entity/npc/ClientSideMerchant/getVillagerXp ()I +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7826_ ()Z net/minecraft/world/entity/npc/ClientSideMerchant/showProgressBar ()Z +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7962_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/entity/npc/ClientSideMerchant/getTradingPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_219611_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/npc/InventoryCarrier;Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/npc/InventoryCarrier/pickUpItem (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/npc/InventoryCarrier;Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_252802_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/InventoryCarrier/writeInventoryToTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_253224_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/InventoryCarrier/readInventoryFromTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/npc/InventoryCarrier/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/npc/Villager/ ()V net/minecraft/world/entity/npc/Villager/ ()V +MD: net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/npc/VillagerType;)V net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/npc/VillagerType;)V +MD: net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/npc/Villager/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/npc/Villager/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/npc/Villager/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/npc/Villager/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/npc/Villager/m_150014_ ()Z net/minecraft/world/entity/npc/Villager/isChasing ()Z +MD: net/minecraft/world/entity/npc/Villager/m_150015_ (Z)V net/minecraft/world/entity/npc/Villager/setChasing (Z)V +MD: net/minecraft/world/entity/npc/Villager/m_183595_ ()Z net/minecraft/world/entity/npc/Villager/isClientSide ()Z +MD: net/minecraft/world/entity/npc/Villager/m_186291_ (JLnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/npc/Villager/lambda$spawnGolemIfNeeded$10 (JLnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/npc/Villager/m_186294_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/npc/Villager/lambda$tellWitnessesThatIWasMurdered$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/npc/Villager/m_186298_ (Lnet/minecraft/world/SimpleContainer;Ljava/util/Map$Entry;)I net/minecraft/world/entity/npc/Villager/lambda$countFoodPointsInInventory$8 (Lnet/minecraft/world/SimpleContainer;Ljava/util/Map$Entry;)I +MD: net/minecraft/world/entity/npc/Villager/m_186301_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)Z net/minecraft/world/entity/npc/Villager/lambda$getPlayerReputation$7 (Lnet/minecraft/world/entity/ai/gossip/GossipType;)Z +MD: net/minecraft/world/entity/npc/Villager/m_186303_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/core/GlobalPos;)V net/minecraft/world/entity/npc/Villager/lambda$releasePoi$6 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/world/entity/npc/Villager/m_219615_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$3 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_219618_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$2 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_219621_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$1 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_219624_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_275846_ ()V net/minecraft/world/entity/npc/Villager/resendOffersToTradingPlayer ()V +MD: net/minecraft/world/entity/npc/Villager/m_279940_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/npc/Villager/lambda$hasFarmSeeds$9 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/npc/Villager/m_30232_ ()V net/minecraft/world/entity/npc/Villager/ageBoundaryReached ()V +MD: net/minecraft/world/entity/npc/Villager/m_34375_ (Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/world/entity/npc/Villager/setVillagerData (Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/world/entity/npc/Villager/m_35392_ (J)Z net/minecraft/world/entity/npc/Villager/wantsToSpawnGolem (J)Z +MD: net/minecraft/world/entity/npc/Villager/m_35397_ (Lnet/minecraft/server/level/ServerLevel;JI)V net/minecraft/world/entity/npc/Villager/spawnGolemIfNeeded (Lnet/minecraft/server/level/ServerLevel;JI)V +MD: net/minecraft/world/entity/npc/Villager/m_35411_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/npc/Villager/gossip (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/npc/Villager/m_35420_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/npc/Villager/tellWitnessesThatIWasMurdered (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/npc/Villager/m_35424_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/npc/Villager/registerBrainGoals (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/npc/Villager/m_35428_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/npc/Villager/releasePoi (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/npc/Villager/m_35452_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/npc/Villager/lambda$addAdditionalSaveData$4 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/npc/Villager/m_35455_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/npc/Villager/setGossips (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/npc/Villager/m_35461_ (J)Z net/minecraft/world/entity/npc/Villager/golemSpawnConditionsMet (J)Z +MD: net/minecraft/world/entity/npc/Villager/m_35476_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/entity/npc/Villager/setOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/entity/npc/Villager/m_35483_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/npc/Villager/refreshBrain (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/npc/Villager/m_35503_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/npc/Villager/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/npc/Villager/m_35504_ ()Z net/minecraft/world/entity/npc/Villager/assignProfessionWhenSpawned ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35506_ ()Z net/minecraft/world/entity/npc/Villager/canBreed ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35510_ ()V net/minecraft/world/entity/npc/Villager/restock ()V +MD: net/minecraft/world/entity/npc/Villager/m_35511_ ()Z net/minecraft/world/entity/npc/Villager/shouldRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35512_ ()V net/minecraft/world/entity/npc/Villager/playWorkSound ()V +MD: net/minecraft/world/entity/npc/Villager/m_35513_ ()V net/minecraft/world/entity/npc/Villager/eatAndDigestFood ()V +MD: net/minecraft/world/entity/npc/Villager/m_35514_ ()Z net/minecraft/world/entity/npc/Villager/hasExcessFood ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35515_ ()Z net/minecraft/world/entity/npc/Villager/wantsMoreFood ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35516_ ()Z net/minecraft/world/entity/npc/Villager/hasFarmSeeds ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35517_ ()Lnet/minecraft/world/entity/ai/gossip/GossipContainer; net/minecraft/world/entity/npc/Villager/getGossips ()Lnet/minecraft/world/entity/ai/gossip/GossipContainer; +MD: net/minecraft/world/entity/npc/Villager/m_35518_ ()V net/minecraft/world/entity/npc/Villager/setUnhappy ()V +MD: net/minecraft/world/entity/npc/Villager/m_35519_ ()V net/minecraft/world/entity/npc/Villager/resetSpecialPrices ()V +MD: net/minecraft/world/entity/npc/Villager/m_35520_ ()Z net/minecraft/world/entity/npc/Villager/needsToRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35521_ ()Z net/minecraft/world/entity/npc/Villager/allowedToRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35522_ ()V net/minecraft/world/entity/npc/Villager/catchUpDemand ()V +MD: net/minecraft/world/entity/npc/Villager/m_35523_ ()V net/minecraft/world/entity/npc/Villager/updateDemand ()V +MD: net/minecraft/world/entity/npc/Villager/m_35524_ ()V net/minecraft/world/entity/npc/Villager/releaseAllPois ()V +MD: net/minecraft/world/entity/npc/Villager/m_35525_ ()Z net/minecraft/world/entity/npc/Villager/hungry ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35526_ ()V net/minecraft/world/entity/npc/Villager/eatUntilFull ()V +MD: net/minecraft/world/entity/npc/Villager/m_35527_ ()Z net/minecraft/world/entity/npc/Villager/shouldIncreaseLevel ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35528_ ()V net/minecraft/world/entity/npc/Villager/increaseMerchantCareer ()V +MD: net/minecraft/world/entity/npc/Villager/m_35529_ ()I net/minecraft/world/entity/npc/Villager/countFoodPointsInInventory ()I +MD: net/minecraft/world/entity/npc/Villager/m_35530_ ()V net/minecraft/world/entity/npc/Villager/maybeDecayGossip ()V +MD: net/minecraft/world/entity/npc/Villager/m_35531_ ()V net/minecraft/world/entity/npc/Villager/resetNumberOfRestocks ()V +MD: net/minecraft/world/entity/npc/Villager/m_35532_ (Lnet/minecraft/world/entity/player/Player;)I net/minecraft/world/entity/npc/Villager/getPlayerReputation (Lnet/minecraft/world/entity/player/Player;)I +MD: net/minecraft/world/entity/npc/Villager/m_35536_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/Villager/startTrading (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/Villager/m_35540_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/Villager/updateSpecialPrices (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/Villager/m_35546_ (I)V net/minecraft/world/entity/npc/Villager/setVillagerXp (I)V +MD: net/minecraft/world/entity/npc/Villager/m_35548_ (I)V net/minecraft/world/entity/npc/Villager/digestFood (I)V +MD: net/minecraft/world/entity/npc/Villager/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/npc/Villager/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/npc/Villager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/Villager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/Villager/m_5677_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/npc/Villager/getTypeName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/npc/Villager/m_5796_ ()V net/minecraft/world/entity/npc/Villager/stopSleeping ()V +MD: net/minecraft/world/entity/npc/Villager/m_5802_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/npc/Villager/startSleeping (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/npc/Villager/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/npc/Villager/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/npc/Villager/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/npc/Villager/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/npc/Villager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/npc/Villager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/npc/Villager/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/npc/Villager/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/npc/Villager/m_6703_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/npc/Villager/setLastHurtByMob (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/npc/Villager/m_6785_ (D)Z net/minecraft/world/entity/npc/Villager/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/npc/Villager/m_6814_ (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/npc/Villager/onReputationEventFrom (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/npc/Villager/m_7141_ ()Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/Villager/getVillagerData ()Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/Villager/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/Villager/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/Villager/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/npc/Villager/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/npc/Villager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/Villager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/Villager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/Villager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/Villager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/Villager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/Villager/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/npc/Villager/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/npc/Villager/m_7604_ ()V net/minecraft/world/entity/npc/Villager/updateTrades ()V +MD: net/minecraft/world/entity/npc/Villager/m_7809_ ()I net/minecraft/world/entity/npc/Villager/getVillagerXp ()I +MD: net/minecraft/world/entity/npc/Villager/m_7822_ (B)V net/minecraft/world/entity/npc/Villager/handleEntityEvent (B)V +MD: net/minecraft/world/entity/npc/Villager/m_7862_ ()Z net/minecraft/world/entity/npc/Villager/canRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/Villager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/Villager/m_7996_ ()V net/minecraft/world/entity/npc/Villager/stopTrading ()V +MD: net/minecraft/world/entity/npc/Villager/m_8024_ ()V net/minecraft/world/entity/npc/Villager/customServerAiStep ()V +MD: net/minecraft/world/entity/npc/Villager/m_8025_ ()V net/minecraft/world/entity/npc/Villager/sendDebugPackets ()V +MD: net/minecraft/world/entity/npc/Villager/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/npc/Villager/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/npc/Villager/m_8058_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/Villager/rewardTradeXp (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/Villager/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/npc/Villager/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/npc/Villager/m_8097_ ()V net/minecraft/world/entity/npc/Villager/defineSynchedData ()V +MD: net/minecraft/world/entity/npc/Villager/m_8119_ ()V net/minecraft/world/entity/npc/Villager/tick ()V +MD: net/minecraft/world/entity/npc/VillagerData/ ()V net/minecraft/world/entity/npc/VillagerData/ ()V +MD: net/minecraft/world/entity/npc/VillagerData/ (Lnet/minecraft/world/entity/npc/VillagerType;Lnet/minecraft/world/entity/npc/VillagerProfession;I)V net/minecraft/world/entity/npc/VillagerData/ (Lnet/minecraft/world/entity/npc/VillagerType;Lnet/minecraft/world/entity/npc/VillagerProfession;I)V +MD: net/minecraft/world/entity/npc/VillagerData/m_150019_ (Lnet/minecraft/world/entity/npc/VillagerData;)Ljava/lang/Integer; net/minecraft/world/entity/npc/VillagerData/lambda$static$4 (Lnet/minecraft/world/entity/npc/VillagerData;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/npc/VillagerData/m_150021_ (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerData/lambda$static$3 (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerData/m_150023_ (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerData/lambda$static$1 (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerData/m_150025_ ()Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerData/lambda$static$2 ()Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerData/m_150026_ ()Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerData/lambda$static$0 ()Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerData/m_257318_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/npc/VillagerData/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/npc/VillagerData/m_35560_ ()Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerData/getType ()Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerData/m_35561_ (I)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerData/setLevel (I)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerData/m_35565_ (Lnet/minecraft/world/entity/npc/VillagerProfession;)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerData/setProfession (Lnet/minecraft/world/entity/npc/VillagerProfession;)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerData/m_35567_ (Lnet/minecraft/world/entity/npc/VillagerType;)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerData/setType (Lnet/minecraft/world/entity/npc/VillagerType;)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerData/m_35571_ ()Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerData/getProfession ()Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerData/m_35572_ (I)I net/minecraft/world/entity/npc/VillagerData/getMinXpPerLevel (I)I +MD: net/minecraft/world/entity/npc/VillagerData/m_35576_ ()I net/minecraft/world/entity/npc/VillagerData/getLevel ()I +MD: net/minecraft/world/entity/npc/VillagerData/m_35577_ (I)I net/minecraft/world/entity/npc/VillagerData/getMaxXpPerLevel (I)I +MD: net/minecraft/world/entity/npc/VillagerData/m_35582_ (I)Z net/minecraft/world/entity/npc/VillagerData/canLevelUp (I)Z +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28464_ (Lnet/minecraft/world/entity/npc/VillagerType;)V net/minecraft/world/entity/npc/VillagerDataHolder/setVariant (Lnet/minecraft/world/entity/npc/VillagerType;)V +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/npc/VillagerDataHolder/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/npc/VillagerDataHolder/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28554_ ()Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerDataHolder/getVariant ()Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_34375_ (Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/world/entity/npc/VillagerDataHolder/setVillagerData (Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_7141_ ()Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerDataHolder/getVillagerData ()Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerProfession/ ()V net/minecraft/world/entity/npc/VillagerProfession/ ()V +MD: net/minecraft/world/entity/npc/VillagerProfession/ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/npc/VillagerProfession/ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/npc/VillagerProfession/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/npc/VillagerProfession/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/f_219628_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/npc/VillagerProfession/heldJobSite ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_219629_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/npc/VillagerProfession/acquirableJobSite ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35600_ ()Ljava/lang/String; net/minecraft/world/entity/npc/VillagerProfession/name ()Ljava/lang/String; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35602_ ()Lcom/google/common/collect/ImmutableSet; net/minecraft/world/entity/npc/VillagerProfession/requestedItems ()Lcom/google/common/collect/ImmutableSet; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35603_ ()Lcom/google/common/collect/ImmutableSet; net/minecraft/world/entity/npc/VillagerProfession/secondaryPoi ()Lcom/google/common/collect/ImmutableSet; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35604_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/VillagerProfession/workSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/VillagerProfession/hashCode ()I net/minecraft/world/entity/npc/VillagerProfession/hashCode ()I +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219638_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$2 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219641_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$3 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219643_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219647_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219653_ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219658_ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219666_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$1 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_238235_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$4 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_238238_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$static$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/toString ()Ljava/lang/String; net/minecraft/world/entity/npc/VillagerProfession/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/npc/VillagerTrades/ ()V net/minecraft/world/entity/npc/VillagerTrades/ ()V +MD: net/minecraft/world/entity/npc/VillagerTrades/ ()V net/minecraft/world/entity/npc/VillagerTrades/ ()V +MD: net/minecraft/world/entity/npc/VillagerTrades/m_35630_ (Lcom/google/common/collect/ImmutableMap;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/world/entity/npc/VillagerTrades/toIntMap (Lcom/google/common/collect/ImmutableMap;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/world/entity/npc/VillagerTrades/m_35632_ (Ljava/util/HashMap;)V net/minecraft/world/entity/npc/VillagerTrades/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/m_219676_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeItem; net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/getRandomDye (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeItem; +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/ (Lnet/minecraft/world/level/ItemLike;III)V net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/ (Lnet/minecraft/world/level/ItemLike;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/ (IIILjava/util/Map;)V net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/ (IIILjava/util/Map;)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/m_257319_ (Lnet/minecraft/world/entity/npc/VillagerType;)V net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/lambda$new$1 (Lnet/minecraft/world/entity/npc/VillagerType;)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/m_35678_ (Ljava/util/Map;Lnet/minecraft/world/entity/npc/VillagerType;)Z net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/lambda$new$0 (Ljava/util/Map;Lnet/minecraft/world/entity/npc/VillagerType;)Z +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/ (I)V net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/ (I)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;IIIF)V net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;IIIF)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemListing/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$ItemListing/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;IILnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;IILnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;ILnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;ILnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;IIII)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/level/block/Block;IIII)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/level/block/Block;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIII)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIIIF)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIIIF)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/ (Lnet/minecraft/world/effect/MobEffect;II)V net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/ (Lnet/minecraft/world/effect/MobEffect;II)V +MD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/world/item/Item;IIII)V net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/world/item/Item;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/m_35803_ (Lnet/minecraft/world/item/alchemy/Potion;)Z net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/lambda$getOffer$0 (Lnet/minecraft/world/item/alchemy/Potion;)Z +MD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/ (ILnet/minecraft/tags/TagKey;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;II)V net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/ (ILnet/minecraft/tags/TagKey;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;II)V +MD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerType/ ()V net/minecraft/world/entity/npc/VillagerType/ ()V +MD: net/minecraft/world/entity/npc/VillagerType/ (Ljava/lang/String;)V net/minecraft/world/entity/npc/VillagerType/ (Ljava/lang/String;)V +MD: net/minecraft/world/entity/npc/VillagerType/m_204073_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerType/byBiome (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerType/m_35831_ (Ljava/lang/String;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerType/register (Ljava/lang/String;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerType/m_35833_ (Ljava/util/HashMap;)V net/minecraft/world/entity/npc/VillagerType/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/npc/VillagerType/toString ()Ljava/lang/String; net/minecraft/world/entity/npc/VillagerType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/npc/WanderingTrader/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/npc/WanderingTrader/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/npc/WanderingTrader/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_150048_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$100 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_289161_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z net/minecraft/world/entity/npc/WanderingTrader/lambda$registerGoals$0 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_289162_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z net/minecraft/world/entity/npc/WanderingTrader/lambda$registerGoals$1 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35849_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$000 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35862_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$200 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35866_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$300 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35876_ ()I net/minecraft/world/entity/npc/WanderingTrader/getDespawnDelay ()I +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35877_ ()V net/minecraft/world/entity/npc/WanderingTrader/maybeDespawn ()V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35878_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/npc/WanderingTrader/getWanderTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35883_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/npc/WanderingTrader/setWanderTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35891_ (I)V net/minecraft/world/entity/npc/WanderingTrader/setDespawnDelay (I)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_6068_ (Z)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getTradeUpdatedSound (Z)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/npc/WanderingTrader/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_6785_ (D)Z net/minecraft/world/entity/npc/WanderingTrader/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/WanderingTrader/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/WanderingTrader/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7604_ ()V net/minecraft/world/entity/npc/WanderingTrader/updateTrades ()V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7826_ ()Z net/minecraft/world/entity/npc/WanderingTrader/showProgressBar ()Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7838_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getDrinkingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_8058_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/WanderingTrader/rewardTradeXp (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_8099_ ()V net/minecraft/world/entity/npc/WanderingTrader/registerGoals ()V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_8107_ ()V net/minecraft/world/entity/npc/WanderingTrader/aiStep ()V +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/ (Lnet/minecraft/world/entity/npc/WanderingTrader;Lnet/minecraft/world/entity/npc/WanderingTrader;DD)V net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/ (Lnet/minecraft/world/entity/npc/WanderingTrader;Lnet/minecraft/world/entity/npc/WanderingTrader;DD)V +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_35903_ (Lnet/minecraft/core/BlockPos;D)Z net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/isTooFarAway (Lnet/minecraft/core/BlockPos;D)Z +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_8036_ ()Z net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/canUse ()Z +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_8037_ ()V net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/tick ()V +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_8041_ ()V net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/stop ()V +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/ (Lnet/minecraft/world/level/storage/ServerLevelData;)V net/minecraft/world/entity/npc/WanderingTraderSpawner/ (Lnet/minecraft/world/level/storage/ServerLevelData;)V +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_219710_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/lambda$spawn$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_219712_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/lambda$spawn$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35915_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/spawn (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35917_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/WanderingTrader;I)V net/minecraft/world/entity/npc/WanderingTraderSpawner/tryToSpawnLlamaFor (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/WanderingTrader;I)V +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35925_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/hasEnoughSpace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35928_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/npc/WanderingTraderSpawner/findSpawnPositionNear (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/entity/npc/WanderingTraderSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/entity/player/Abilities/ ()V net/minecraft/world/entity/player/Abilities/ ()V +MD: net/minecraft/world/entity/player/Abilities/m_35942_ ()F net/minecraft/world/entity/player/Abilities/getFlyingSpeed ()F +MD: net/minecraft/world/entity/player/Abilities/m_35943_ (F)V net/minecraft/world/entity/player/Abilities/setFlyingSpeed (F)V +MD: net/minecraft/world/entity/player/Abilities/m_35945_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Abilities/addSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Abilities/m_35947_ ()F net/minecraft/world/entity/player/Abilities/getWalkingSpeed ()F +MD: net/minecraft/world/entity/player/Abilities/m_35948_ (F)V net/minecraft/world/entity/player/Abilities/setWalkingSpeed (F)V +MD: net/minecraft/world/entity/player/Abilities/m_35950_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Abilities/loadSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/ChatVisiblity/ ()V net/minecraft/world/entity/player/ChatVisiblity/ ()V +MD: net/minecraft/world/entity/player/ChatVisiblity/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/player/ChatVisiblity/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/player/ChatVisiblity/m_150063_ ()[Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/$values ()[Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/ChatVisiblity/m_35965_ ()I net/minecraft/world/entity/player/ChatVisiblity/getId ()I +MD: net/minecraft/world/entity/player/ChatVisiblity/m_35966_ (I)Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/byId (I)Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/ChatVisiblity/m_35968_ ()Ljava/lang/String; net/minecraft/world/entity/player/ChatVisiblity/getKey ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ChatVisiblity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/ChatVisiblity/values ()[Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/values ()[Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/Inventory/ ()V net/minecraft/world/entity/player/Inventory/ ()V +MD: net/minecraft/world/entity/player/Inventory/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/player/Inventory/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/player/Inventory/m_150072_ (Lnet/minecraft/world/damagesource/DamageSource;F[I)V net/minecraft/world/entity/player/Inventory/hurtArmor (Lnet/minecraft/world/damagesource/DamageSource;F[I)V +MD: net/minecraft/world/entity/player/Inventory/m_150076_ (Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/entity/player/Inventory/placeItemBackInInventory (Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/entity/player/Inventory/m_150079_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/placeItemBackInInventory (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_182403_ (Z)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/removeFromSelected (Z)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_204075_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/entity/player/Inventory/contains (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/entity/player/Inventory/m_35988_ (D)V net/minecraft/world/entity/player/Inventory/swapPaint (D)V +MD: net/minecraft/world/entity/player/Inventory/m_35995_ (ILnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/player/Inventory/lambda$hurtArmor$1 (ILnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/player/Inventory/m_36006_ (Lnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/entity/player/Inventory/replaceWith (Lnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/entity/player/Inventory/m_36010_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/entity/player/Inventory/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/entity/player/Inventory/m_36012_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/setPickedItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_36014_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/hasRemainingSpaceForItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36020_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/entity/player/Inventory/getDestroySpeed (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/entity/player/Inventory/m_36022_ (Ljava/util/function/Predicate;ILnet/minecraft/world/Container;)I net/minecraft/world/entity/player/Inventory/clearOrCountMatchingItems (Ljava/util/function/Predicate;ILnet/minecraft/world/Container;)I +MD: net/minecraft/world/entity/player/Inventory/m_36026_ (Lnet/minecraft/nbt/ListTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/player/Inventory/save (Lnet/minecraft/nbt/ListTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/player/Inventory/m_36030_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/findSlotMatchingItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36035_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/entity/player/Inventory/load (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/entity/player/Inventory/m_36038_ (I)V net/minecraft/world/entity/player/Inventory/pickSlot (I)V +MD: net/minecraft/world/entity/player/Inventory/m_36040_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/add (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36043_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/findSlotMatchingUnusedItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36045_ (I)Z net/minecraft/world/entity/player/Inventory/isHotbarSlot (I)Z +MD: net/minecraft/world/entity/player/Inventory/m_36047_ (ILnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/addResource (ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36050_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/getSlotWithRemainingSpace (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36052_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/getArmor (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_36054_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/add (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36056_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/getSelected ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_36057_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/removeItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_36059_ ()I net/minecraft/world/entity/player/Inventory/getSelectionSize ()I +MD: net/minecraft/world/entity/player/Inventory/m_36062_ ()I net/minecraft/world/entity/player/Inventory/getFreeSlot ()I +MD: net/minecraft/world/entity/player/Inventory/m_36063_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/contains (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36065_ ()I net/minecraft/world/entity/player/Inventory/getSuitableHotbarSlot ()I +MD: net/minecraft/world/entity/player/Inventory/m_36066_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/addResource (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36068_ ()V net/minecraft/world/entity/player/Inventory/tick ()V +MD: net/minecraft/world/entity/player/Inventory/m_36069_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/entity/player/Inventory/lambda$add$0 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/entity/player/Inventory/m_36071_ ()V net/minecraft/world/entity/player/Inventory/dropAll ()V +MD: net/minecraft/world/entity/player/Inventory/m_36072_ ()I net/minecraft/world/entity/player/Inventory/getTimesChanged ()I +MD: net/minecraft/world/entity/player/Inventory/m_6211_ ()V net/minecraft/world/entity/player/Inventory/clearContent ()V +MD: net/minecraft/world/entity/player/Inventory/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/player/Inventory/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/player/Inventory/m_6596_ ()V net/minecraft/world/entity/player/Inventory/setChanged ()V +MD: net/minecraft/world/entity/player/Inventory/m_6643_ ()I net/minecraft/world/entity/player/Inventory/getContainerSize ()I +MD: net/minecraft/world/entity/player/Inventory/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Inventory/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Inventory/m_7983_ ()Z net/minecraft/world/entity/player/Inventory/isEmpty ()Z +MD: net/minecraft/world/entity/player/Inventory/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/ ()V net/minecraft/world/entity/player/Player/ ()V +MD: net/minecraft/world/entity/player/Player/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V net/minecraft/world/entity/player/Player/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/entity/player/Player/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/player/Player/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/player/Player/m_141945_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/world/entity/player/Player/updateTutorialInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/world/entity/player/Player/m_142066_ ()Z net/minecraft/world/entity/player/Player/canBeSeenAsEnemy ()Z +MD: net/minecraft/world/entity/player/Player/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/player/Player/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/player/Player/m_142389_ ()Z net/minecraft/world/entity/player/Player/isAlwaysTicking ()Z +MD: net/minecraft/world/entity/player/Player/m_142391_ ()Z net/minecraft/world/entity/player/Player/shouldBeSaved ()Z +MD: net/minecraft/world/entity/player/Player/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/player/Player/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/player/Player/m_142642_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/player/Player/hurtHelmet (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/player/Player/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/player/Player/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/player/Player/m_143387_ ()Z net/minecraft/world/entity/player/Player/isTextFilteringEnabled ()Z +MD: net/minecraft/world/entity/player/Player/m_150108_ ()Z net/minecraft/world/entity/player/Player/isScoping ()Z +MD: net/minecraft/world/entity/player/Player/m_150109_ ()Lnet/minecraft/world/entity/player/Inventory; net/minecraft/world/entity/player/Player/getInventory ()Lnet/minecraft/world/entity/player/Inventory; +MD: net/minecraft/world/entity/player/Player/m_150110_ ()Lnet/minecraft/world/entity/player/Abilities; net/minecraft/world/entity/player/Player/getAbilities ()Lnet/minecraft/world/entity/player/Abilities; +MD: net/minecraft/world/entity/player/Player/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/player/Player/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/player/Player/m_204079_ (I)V net/minecraft/world/entity/player/Player/startAutoSpinAttack (I)V +MD: net/minecraft/world/entity/player/Player/m_213772_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/player/Player/doesEmitEquipEvent (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/player/Player/m_213860_ ()I net/minecraft/world/entity/player/Player/getExperienceReward ()I +MD: net/minecraft/world/entity/player/Player/m_214076_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/player/Player/killedEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/player/Player/m_219737_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/player/Player/lambda$hurtCurrentlyUsedShield$4 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/player/Player/m_219744_ (Lnet/minecraft/core/GlobalPos;)Ljava/util/Optional; net/minecraft/world/entity/player/Player/lambda$addAdditionalSaveData$2 (Lnet/minecraft/core/GlobalPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_219749_ (Ljava/util/Optional;)V net/minecraft/world/entity/player/Player/setLastDeathLocation (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/player/Player/m_219754_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/player/Player/lambda$addAdditionalSaveData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/player/Player/m_219759_ ()Ljava/util/Optional; net/minecraft/world/entity/player/Player/getLastDeathLocation ()Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_242612_ ()Z net/minecraft/world/entity/player/Player/hasContainerOpen ()Z +MD: net/minecraft/world/entity/player/Player/m_245217_ ()Ljava/util/Optional; net/minecraft/world/entity/player/Player/getWardenSpawnTracker ()Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_264297_ ()F net/minecraft/world/entity/player/Player/getHurtDir ()F +MD: net/minecraft/world/entity/player/Player/m_264410_ ()Z net/minecraft/world/entity/player/Player/canSprint ()Z +MD: net/minecraft/world/entity/player/Player/m_271807_ ()Z net/minecraft/world/entity/player/Player/canBeHitByProjectile ()Z +MD: net/minecraft/world/entity/player/Player/m_274460_ ()F net/minecraft/world/entity/player/Player/getFlyingSpeed ()F +MD: net/minecraft/world/entity/player/Player/m_280300_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/world/entity/player/Player/triggerRecipeCrafted (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/world/entity/player/Player/m_289163_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/world/entity/player/Player/lambda$playShoulderEntityAmbientSound$1 (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/world/entity/player/Player/m_289164_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/entity/player/Player/lambda$decorateDisplayNameComponent$6 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/entity/player/Player/m_289165_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/lambda$respawnEntityOnShoulder$5 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_36130_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;FZZ)Ljava/util/Optional; net/minecraft/world/entity/player/Player/findRespawnPositionAndUseSpawnBlock (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;FZZ)Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_36157_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/player/Player/interactOn (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/player/Player/m_36163_ (Lnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/world/entity/player/Player/setMainArm (Lnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/world/entity/player/Player/m_36170_ (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z net/minecraft/world/entity/player/Player/isModelPartShown (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z +MD: net/minecraft/world/entity/player/Player/m_36176_ (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/player/Player/drop (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/player/Player/m_36187_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/GameType;)Z net/minecraft/world/entity/player/Player/blockActionRestricted (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/GameType;)Z +MD: net/minecraft/world/entity/player/Player/m_36204_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Player/mayUseItemAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Player/m_36208_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/player/Player/addParticlesAroundSelf (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/player/Player/m_36218_ (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/entity/player/Player/decorateDisplayNameComponent (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/entity/player/Player/m_36220_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/player/Player/m_36222_ (Lnet/minecraft/resources/ResourceLocation;I)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/resources/ResourceLocation;I)V +MD: net/minecraft/world/entity/player/Player/m_36246_ (Lnet/minecraft/stats/Stat;)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/world/entity/player/Player/m_36277_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/touch (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_36279_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/player/Player/lambda$playShoulderEntityAmbientSound$0 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/player/Player/m_36281_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/entity/player/Player/getDestroySpeed (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/entity/player/Player/m_36298_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/player/Player/hasCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/player/Player/m_36316_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/world/entity/player/Player/getGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/world/entity/player/Player/m_36317_ ()Z net/minecraft/world/entity/player/Player/isSleepingLongEnough ()Z +MD: net/minecraft/world/entity/player/Player/m_36318_ ()I net/minecraft/world/entity/player/Player/getSleepTimer ()I +MD: net/minecraft/world/entity/player/Player/m_36319_ ()Z net/minecraft/world/entity/player/Player/tryToStartFallFlying ()Z +MD: net/minecraft/world/entity/player/Player/m_36320_ ()V net/minecraft/world/entity/player/Player/startFallFlying ()V +MD: net/minecraft/world/entity/player/Player/m_36321_ ()V net/minecraft/world/entity/player/Player/stopFallFlying ()V +MD: net/minecraft/world/entity/player/Player/m_36322_ ()I net/minecraft/world/entity/player/Player/getEnchantmentSeed ()I +MD: net/minecraft/world/entity/player/Player/m_36323_ ()I net/minecraft/world/entity/player/Player/getXpNeededForNextLevel ()I +MD: net/minecraft/world/entity/player/Player/m_36324_ ()Lnet/minecraft/world/food/FoodData; net/minecraft/world/entity/player/Player/getFoodData ()Lnet/minecraft/world/food/FoodData; +MD: net/minecraft/world/entity/player/Player/m_36325_ ()Z net/minecraft/world/entity/player/Player/isHurt ()Z +MD: net/minecraft/world/entity/player/Player/m_36326_ ()Z net/minecraft/world/entity/player/Player/mayBuild ()Z +MD: net/minecraft/world/entity/player/Player/m_36327_ ()Lnet/minecraft/world/inventory/PlayerEnderChestContainer; net/minecraft/world/entity/player/Player/getEnderChestInventory ()Lnet/minecraft/world/inventory/PlayerEnderChestContainer; +MD: net/minecraft/world/entity/player/Player/m_36328_ ()V net/minecraft/world/entity/player/Player/removeEntitiesOnShoulder ()V +MD: net/minecraft/world/entity/player/Player/m_36329_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/entity/player/Player/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/entity/player/Player/m_36330_ ()Z net/minecraft/world/entity/player/Player/isReducedDebugInfo ()Z +MD: net/minecraft/world/entity/player/Player/m_36331_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/player/Player/getShoulderEntityLeft ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/player/Player/m_36332_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/player/Player/getShoulderEntityRight ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/player/Player/m_36333_ ()F net/minecraft/world/entity/player/Player/getCurrentItemAttackStrengthDelay ()F +MD: net/minecraft/world/entity/player/Player/m_36334_ ()V net/minecraft/world/entity/player/Player/resetAttackStrengthTicker ()V +MD: net/minecraft/world/entity/player/Player/m_36335_ ()Lnet/minecraft/world/item/ItemCooldowns; net/minecraft/world/entity/player/Player/getCooldowns ()Lnet/minecraft/world/item/ItemCooldowns; +MD: net/minecraft/world/entity/player/Player/m_36336_ ()F net/minecraft/world/entity/player/Player/getLuck ()F +MD: net/minecraft/world/entity/player/Player/m_36337_ ()Z net/minecraft/world/entity/player/Player/canUseGameMasterBlocks ()Z +MD: net/minecraft/world/entity/player/Player/m_36340_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/player/Player/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/player/Player/m_36341_ ()Z net/minecraft/world/entity/player/Player/isSecondaryUseActive ()Z +MD: net/minecraft/world/entity/player/Player/m_36342_ ()Z net/minecraft/world/entity/player/Player/wantsToStopRiding ()Z +MD: net/minecraft/world/entity/player/Player/m_36343_ ()Z net/minecraft/world/entity/player/Player/isStayingOnGroundSurface ()Z +MD: net/minecraft/world/entity/player/Player/m_36344_ ()I net/minecraft/world/entity/player/Player/getScore ()I +MD: net/minecraft/world/entity/player/Player/m_36345_ ()V net/minecraft/world/entity/player/Player/destroyVanishingCursedItems ()V +MD: net/minecraft/world/entity/player/Player/m_36346_ ()V net/minecraft/world/entity/player/Player/sweepAttack ()V +MD: net/minecraft/world/entity/player/Player/m_36350_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/player/Player/freeAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/player/Player/m_36356_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Player/addItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Player/m_36360_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/entity/player/Player/setEntityOnShoulder (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/entity/player/Player/m_36362_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/setShoulderEntityLeft (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36364_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/setShoulderEntityRight (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36367_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/playShoulderEntityAmbientSound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36370_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/respawnEntityOnShoulder (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36372_ ()V net/minecraft/world/entity/player/Player/turtleHelmetTick ()V +MD: net/minecraft/world/entity/player/Player/m_36377_ ()V net/minecraft/world/entity/player/Player/moveCloak ()V +MD: net/minecraft/world/entity/player/Player/m_36378_ (DDD)V net/minecraft/world/entity/player/Player/checkMovementStatistics (DDD)V +MD: net/minecraft/world/entity/player/Player/m_36384_ (Z)V net/minecraft/world/entity/player/Player/disableShield (Z)V +MD: net/minecraft/world/entity/player/Player/m_36386_ ()Z net/minecraft/world/entity/player/Player/isAboveGround ()Z +MD: net/minecraft/world/entity/player/Player/m_36387_ (DDD)V net/minecraft/world/entity/player/Player/checkRidingStatistics (DDD)V +MD: net/minecraft/world/entity/player/Player/m_36391_ (Z)Z net/minecraft/world/entity/player/Player/canEat (Z)Z +MD: net/minecraft/world/entity/player/Player/m_36393_ (Z)V net/minecraft/world/entity/player/Player/setReducedDebugInfo (Z)V +MD: net/minecraft/world/entity/player/Player/m_36397_ (I)V net/minecraft/world/entity/player/Player/setScore (I)V +MD: net/minecraft/world/entity/player/Player/m_36399_ (F)V net/minecraft/world/entity/player/Player/causeFoodExhaustion (F)V +MD: net/minecraft/world/entity/player/Player/m_36401_ (I)V net/minecraft/world/entity/player/Player/increaseScore (I)V +MD: net/minecraft/world/entity/player/Player/m_36403_ (F)F net/minecraft/world/entity/player/Player/getAttackStrengthScale (F)F +MD: net/minecraft/world/entity/player/Player/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Player/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Player/m_5496_ (Lnet/minecraft/sounds/SoundEvent;FF)V net/minecraft/world/entity/player/Player/playSound (Lnet/minecraft/sounds/SoundEvent;FF)V +MD: net/minecraft/world/entity/player/Player/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5508_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getSwimHighSpeedSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5584_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Player/eat (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5661_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/world/entity/player/Player/displayClientMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/world/entity/player/Player/m_5700_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/magicCrit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_5704_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/crit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_5706_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/attack (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/player/Player/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/player/Player/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/player/Player/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/player/Player/m_5763_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/player/Player/maybeBackOffFromEdge (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/player/Player/m_5796_ ()V net/minecraft/world/entity/player/Player/stopSleeping ()V +MD: net/minecraft/world/entity/player/Player/m_5833_ ()Z net/minecraft/world/entity/player/Player/isSpectator ()Z +MD: net/minecraft/world/entity/player/Player/m_5841_ ()V net/minecraft/world/entity/player/Player/doWaterSplashEffect ()V +MD: net/minecraft/world/entity/player/Player/m_5844_ ()V net/minecraft/world/entity/player/Player/updateSwimming ()V +MD: net/minecraft/world/entity/player/Player/m_5893_ (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; net/minecraft/world/entity/player/Player/openMenu (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; +MD: net/minecraft/world/entity/player/Player/m_5907_ ()V net/minecraft/world/entity/player/Player/dropEquipment ()V +MD: net/minecraft/world/entity/player/Player/m_5966_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/world/entity/player/Player/openStructureBlock (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/world/entity/player/Player/m_6038_ ()V net/minecraft/world/entity/player/Player/removeVehicle ()V +MD: net/minecraft/world/entity/player/Player/m_6041_ ()F net/minecraft/world/entity/player/Player/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/player/Player/m_6045_ ()I net/minecraft/world/entity/player/Player/getDimensionChangingDelay ()I +MD: net/minecraft/world/entity/player/Player/m_6046_ ()Z net/minecraft/world/entity/player/Player/onSoulSpeedBlock ()Z +MD: net/minecraft/world/entity/player/Player/m_6049_ ()D net/minecraft/world/entity/player/Player/getMyRidingOffset ()D +MD: net/minecraft/world/entity/player/Player/m_6052_ ()Z net/minecraft/world/entity/player/Player/shouldShowName ()Z +MD: net/minecraft/world/entity/player/Player/m_6053_ (F)V net/minecraft/world/entity/player/Player/animateHurt (F)V +MD: net/minecraft/world/entity/player/Player/m_6063_ ()Z net/minecraft/world/entity/player/Player/isPushedByFluid ()Z +MD: net/minecraft/world/entity/player/Player/m_6069_ ()Z net/minecraft/world/entity/player/Player/isSwimming ()Z +MD: net/minecraft/world/entity/player/Player/m_6078_ ()I net/minecraft/world/entity/player/Player/getPortalWaitTime ()I +MD: net/minecraft/world/entity/player/Player/m_6083_ ()V net/minecraft/world/entity/player/Player/rideTick ()V +MD: net/minecraft/world/entity/player/Player/m_6101_ ()I net/minecraft/world/entity/player/Player/getFireImmuneTicks ()I +MD: net/minecraft/world/entity/player/Player/m_6103_ ()F net/minecraft/world/entity/player/Player/getAbsorptionAmount ()F +MD: net/minecraft/world/entity/player/Player/m_6107_ ()Z net/minecraft/world/entity/player/Player/isImmobile ()Z +MD: net/minecraft/world/entity/player/Player/m_6113_ ()F net/minecraft/world/entity/player/Player/getSpeed ()F +MD: net/minecraft/world/entity/player/Player/m_6124_ ()Z net/minecraft/world/entity/player/Player/isAlwaysExperienceDropper ()Z +MD: net/minecraft/world/entity/player/Player/m_6129_ ()Z net/minecraft/world/entity/player/Player/isAffectedByFluids ()Z +MD: net/minecraft/world/entity/player/Player/m_6135_ ()V net/minecraft/world/entity/player/Player/jumpFromGround ()V +MD: net/minecraft/world/entity/player/Player/m_6140_ ()V net/minecraft/world/entity/player/Player/serverAiStep ()V +MD: net/minecraft/world/entity/player/Player/m_6145_ (ZZ)V net/minecraft/world/entity/player/Player/stopSleepInBed (ZZ)V +MD: net/minecraft/world/entity/player/Player/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/player/Player/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/player/Player/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/player/Player/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/player/Player/m_6278_ (Lnet/minecraft/stats/Stat;I)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/world/entity/player/Player/m_6298_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Player/getProjectile (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/m_6302_ ()Ljava/lang/String; net/minecraft/world/entity/player/Player/getScoreboardName ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/Player/m_6330_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/entity/player/Player/playNotifySound (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/entity/player/Player/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/player/Player/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/player/Player/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/player/Player/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/player/Player/m_6472_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/player/Player/hurtArmor (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/player/Player/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/player/Player/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/player/Player/m_6658_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V net/minecraft/world/entity/player/Player/openHorseInventory (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/player/Player/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/player/Player/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/player/Player/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/player/Player/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/player/Player/m_6727_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/player/Player/doAutoAttackOnTouch (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/player/Player/m_6728_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/player/Player/blockUsingShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/player/Player/m_6749_ (I)V net/minecraft/world/entity/player/Player/giveExperienceLevels (I)V +MD: net/minecraft/world/entity/player/Player/m_6756_ (I)V net/minecraft/world/entity/player/Player/giveExperiencePoints (I)V +MD: net/minecraft/world/entity/player/Player/m_6757_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/player/Player/shouldRemoveSoulSpeed (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/player/Player/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Player/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/m_6885_ ()V net/minecraft/world/entity/player/Player/onUpdateAbilities ()V +MD: net/minecraft/world/entity/player/Player/m_6915_ ()V net/minecraft/world/entity/player/Player/closeContainer ()V +MD: net/minecraft/world/entity/player/Player/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/player/Player/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/player/Player/m_6986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/player/Player/openItemGui (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/player/Player/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/player/Player/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/player/Player/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Player/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Player/m_7099_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/player/Player/canHarmPlayer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/player/Player/m_7166_ (Lnet/minecraft/stats/Stat;)V net/minecraft/world/entity/player/Player/resetStat (Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/world/entity/player/Player/m_7197_ (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/player/Player/drop (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/player/Player/m_7279_ (Ljava/util/Collection;)I net/minecraft/world/entity/player/Player/resetRecipes (Ljava/util/Collection;)I +MD: net/minecraft/world/entity/player/Player/m_7281_ (Ljava/util/Collection;)I net/minecraft/world/entity/player/Player/awardRecipes (Ljava/util/Collection;)I +MD: net/minecraft/world/entity/player/Player/m_7311_ (I)V net/minecraft/world/entity/player/Player/setRemainingFireTicks (I)V +MD: net/minecraft/world/entity/player/Player/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/player/Player/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/player/Player/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/player/Player/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/player/Player/m_7408_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/player/Player/onEnchantmentPerformed (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/player/Player/m_7431_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/player/Player/getDismountPoses ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/player/Player/m_7478_ ()Lnet/minecraft/world/item/ItemCooldowns; net/minecraft/world/entity/player/Player/createItemCooldowns ()Lnet/minecraft/world/item/ItemCooldowns; +MD: net/minecraft/world/entity/player/Player/m_7500_ ()Z net/minecraft/world/entity/player/Player/isCreative ()Z +MD: net/minecraft/world/entity/player/Player/m_7569_ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V net/minecraft/world/entity/player/Player/openJigsawBlock (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V +MD: net/minecraft/world/entity/player/Player/m_7578_ ()Z net/minecraft/world/entity/player/Player/isLocalPlayer ()Z +MD: net/minecraft/world/entity/player/Player/m_7583_ ()V net/minecraft/world/entity/player/Player/respawn ()V +MD: net/minecraft/world/entity/player/Player/m_7594_ ()V net/minecraft/world/entity/player/Player/updatePlayerPose ()V +MD: net/minecraft/world/entity/player/Player/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/player/Player/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/player/Player/m_7602_ ()Z net/minecraft/world/entity/player/Player/updateIsUnderwater ()Z +MD: net/minecraft/world/entity/player/Player/m_7662_ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V net/minecraft/world/entity/player/Player/sendMerchantOffers (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V +MD: net/minecraft/world/entity/player/Player/m_7698_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/world/entity/player/Player/openCommandBlock (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/world/entity/player/Player/m_7720_ (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/entity/player/Player/startSleepInBed (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/entity/player/Player/m_7739_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/world/entity/player/Player/openTextEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/world/entity/player/Player/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Player/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Player/m_7822_ (B)V net/minecraft/world/entity/player/Player/handleEntityEvent (B)V +MD: net/minecraft/world/entity/player/Player/m_7902_ ([Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/player/Player/awardRecipesByKey ([Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/player/Player/m_7907_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/world/entity/player/Player/openMinecartCommandBlock (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/world/entity/player/Player/m_7909_ (F)V net/minecraft/world/entity/player/Player/hurtCurrentlyUsedShield (F)V +MD: net/minecraft/world/entity/player/Player/m_7911_ (F)V net/minecraft/world/entity/player/Player/setAbsorptionAmount (F)V +MD: net/minecraft/world/entity/player/Player/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Player/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Player/m_8097_ ()V net/minecraft/world/entity/player/Player/defineSynchedData ()V +MD: net/minecraft/world/entity/player/Player/m_8107_ ()V net/minecraft/world/entity/player/Player/aiStep ()V +MD: net/minecraft/world/entity/player/Player/m_8119_ ()V net/minecraft/world/entity/player/Player/tick ()V +MD: net/minecraft/world/entity/player/Player/m_9230_ ()V net/minecraft/world/entity/player/Player/doCloseContainer ()V +MD: net/minecraft/world/entity/player/Player$1/ ()V net/minecraft/world/entity/player/Player$1/ ()V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/ ()V net/minecraft/world/entity/player/Player$BedSleepingProblem/ ()V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;I)V net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/m_150113_ ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; net/minecraft/world/entity/player/Player$BedSleepingProblem/$values ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/m_36423_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Player$BedSleepingProblem/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; net/minecraft/world/entity/player/Player$BedSleepingProblem/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/values ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; net/minecraft/world/entity/player/Player$BedSleepingProblem/values ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +MD: net/minecraft/world/entity/player/PlayerModelPart/ ()V net/minecraft/world/entity/player/PlayerModelPart/ ()V +MD: net/minecraft/world/entity/player/PlayerModelPart/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/player/PlayerModelPart/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/player/PlayerModelPart/m_150114_ ()I net/minecraft/world/entity/player/PlayerModelPart/getBit ()I +MD: net/minecraft/world/entity/player/PlayerModelPart/m_150115_ ()[Lnet/minecraft/world/entity/player/PlayerModelPart; net/minecraft/world/entity/player/PlayerModelPart/$values ()[Lnet/minecraft/world/entity/player/PlayerModelPart; +MD: net/minecraft/world/entity/player/PlayerModelPart/m_36445_ ()I net/minecraft/world/entity/player/PlayerModelPart/getMask ()I +MD: net/minecraft/world/entity/player/PlayerModelPart/m_36446_ ()Ljava/lang/String; net/minecraft/world/entity/player/PlayerModelPart/getId ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/PlayerModelPart/m_36447_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/PlayerModelPart/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/PlayerModelPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/PlayerModelPart; net/minecraft/world/entity/player/PlayerModelPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/PlayerModelPart; +MD: net/minecraft/world/entity/player/PlayerModelPart/values ()[Lnet/minecraft/world/entity/player/PlayerModelPart; net/minecraft/world/entity/player/PlayerModelPart/values ()[Lnet/minecraft/world/entity/player/PlayerModelPart; +MD: net/minecraft/world/entity/player/ProfileKeyPair/ ()V net/minecraft/world/entity/player/ProfileKeyPair/ ()V +MD: net/minecraft/world/entity/player/ProfileKeyPair/ (Ljava/security/PrivateKey;Lnet/minecraft/world/entity/player/ProfilePublicKey;Ljava/time/Instant;)V net/minecraft/world/entity/player/ProfileKeyPair/ (Ljava/security/PrivateKey;Lnet/minecraft/world/entity/player/ProfilePublicKey;Ljava/time/Instant;)V +MD: net/minecraft/world/entity/player/ProfileKeyPair/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/player/ProfileKeyPair/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/player/ProfileKeyPair/f_219762_ ()Ljava/security/PrivateKey; net/minecraft/world/entity/player/ProfileKeyPair/privateKey ()Ljava/security/PrivateKey; +MD: net/minecraft/world/entity/player/ProfileKeyPair/f_219763_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey; net/minecraft/world/entity/player/ProfileKeyPair/publicKey ()Lnet/minecraft/world/entity/player/ProfilePublicKey; +MD: net/minecraft/world/entity/player/ProfileKeyPair/f_219764_ ()Ljava/time/Instant; net/minecraft/world/entity/player/ProfileKeyPair/refreshedAfter ()Ljava/time/Instant; +MD: net/minecraft/world/entity/player/ProfileKeyPair/hashCode ()I net/minecraft/world/entity/player/ProfileKeyPair/hashCode ()I +MD: net/minecraft/world/entity/player/ProfileKeyPair/m_219770_ ()Z net/minecraft/world/entity/player/ProfileKeyPair/dueRefresh ()Z +MD: net/minecraft/world/entity/player/ProfileKeyPair/m_219771_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/player/ProfileKeyPair/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/player/ProfileKeyPair/toString ()Ljava/lang/String; net/minecraft/world/entity/player/ProfileKeyPair/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ProfilePublicKey/ ()V net/minecraft/world/entity/player/ProfilePublicKey/ ()V +MD: net/minecraft/world/entity/player/ProfilePublicKey/ (Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V net/minecraft/world/entity/player/ProfilePublicKey/ (Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V +MD: net/minecraft/world/entity/player/ProfilePublicKey/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/player/ProfilePublicKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey/f_219781_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; net/minecraft/world/entity/player/ProfilePublicKey/data ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +MD: net/minecraft/world/entity/player/ProfilePublicKey/hashCode ()I net/minecraft/world/entity/player/ProfilePublicKey/hashCode ()I +MD: net/minecraft/world/entity/player/ProfilePublicKey/m_219785_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/world/entity/player/ProfilePublicKey/createSignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/world/entity/player/ProfilePublicKey/m_243358_ (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;Ljava/time/Duration;)Lnet/minecraft/world/entity/player/ProfilePublicKey; net/minecraft/world/entity/player/ProfilePublicKey/createValidated (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;Ljava/time/Duration;)Lnet/minecraft/world/entity/player/ProfilePublicKey; +MD: net/minecraft/world/entity/player/ProfilePublicKey/toString ()Ljava/lang/String; net/minecraft/world/entity/player/ProfilePublicKey/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/ ()V net/minecraft/world/entity/player/ProfilePublicKey$Data/ ()V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Ljava/time/Instant;Ljava/security/PublicKey;[B)V net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Ljava/time/Instant;Ljava/security/PublicKey;[B)V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/player/ProfilePublicKey$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219799_ ()Ljava/time/Instant; net/minecraft/world/entity/player/ProfilePublicKey$Data/expiresAt ()Ljava/time/Instant; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219800_ ()Ljava/security/PublicKey; net/minecraft/world/entity/player/ProfilePublicKey$Data/key ()Ljava/security/PublicKey; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219801_ ()[B net/minecraft/world/entity/player/ProfilePublicKey$Data/keySignature ()[B +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/hashCode ()I net/minecraft/world/entity/player/ProfilePublicKey$Data/hashCode ()I +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_219810_ ()Z net/minecraft/world/entity/player/ProfilePublicKey$Data/hasExpired ()Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_219813_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/player/ProfilePublicKey$Data/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_219815_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/entity/player/ProfilePublicKey$Data/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_240266_ (Ljava/util/UUID;)[B net/minecraft/world/entity/player/ProfilePublicKey$Data/signedPayload (Ljava/util/UUID;)[B +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_240295_ (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;)Z net/minecraft/world/entity/player/ProfilePublicKey$Data/validateSignature (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_243357_ (Ljava/time/Duration;)Z net/minecraft/world/entity/player/ProfilePublicKey$Data/hasExpired (Ljava/time/Duration;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/toString ()Ljava/lang/String; net/minecraft/world/entity/player/ProfilePublicKey$Data/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ProfilePublicKey$ValidationException/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/player/ProfilePublicKey$ValidationException/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/player/StackedContents/ ()V net/minecraft/world/entity/player/StackedContents/ ()V +MD: net/minecraft/world/entity/player/StackedContents/m_36453_ ()V net/minecraft/world/entity/player/StackedContents/clear ()V +MD: net/minecraft/world/entity/player/StackedContents/m_36454_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/StackedContents/fromStackingIndex (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/StackedContents/m_36456_ (II)I net/minecraft/world/entity/player/StackedContents/take (II)I +MD: net/minecraft/world/entity/player/StackedContents/m_36466_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/StackedContents/accountSimpleStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/StackedContents/m_36468_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/player/StackedContents/accountStack (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/player/StackedContents/m_36471_ (Lnet/minecraft/world/item/crafting/Recipe;ILit/unimi/dsi/fastutil/ints/IntList;)I net/minecraft/world/entity/player/StackedContents/getBiggestCraftableStack (Lnet/minecraft/world/item/crafting/Recipe;ILit/unimi/dsi/fastutil/ints/IntList;)I +MD: net/minecraft/world/entity/player/StackedContents/m_36475_ (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)Z net/minecraft/world/entity/player/StackedContents/canCraft (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)Z +MD: net/minecraft/world/entity/player/StackedContents/m_36478_ (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;I)Z net/minecraft/world/entity/player/StackedContents/canCraft (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;I)Z +MD: net/minecraft/world/entity/player/StackedContents/m_36482_ (I)Z net/minecraft/world/entity/player/StackedContents/has (I)Z +MD: net/minecraft/world/entity/player/StackedContents/m_36484_ (II)V net/minecraft/world/entity/player/StackedContents/put (II)V +MD: net/minecraft/world/entity/player/StackedContents/m_36491_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/StackedContents/accountStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/StackedContents/m_36493_ (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)I net/minecraft/world/entity/player/StackedContents/getBiggestCraftableStack (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)I +MD: net/minecraft/world/entity/player/StackedContents/m_36496_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/StackedContents/getStackingIndex (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/ (Lnet/minecraft/world/entity/player/StackedContents;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/entity/player/StackedContents$RecipePicker/ (Lnet/minecraft/world/entity/player/StackedContents;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36509_ ()[I net/minecraft/world/entity/player/StackedContents$RecipePicker/getUniqueAvailableIngredientItems ()[I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36510_ (I)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/dfs (I)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36512_ (ILit/unimi/dsi/fastutil/ints/IntList;)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/tryPick (ILit/unimi/dsi/fastutil/ints/IntList;)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36515_ (ZI)V net/minecraft/world/entity/player/StackedContents$RecipePicker/visit (ZI)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36518_ (ZII)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/hasConnection (ZII)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36522_ ()I net/minecraft/world/entity/player/StackedContents$RecipePicker/getMinIngredientCount ()I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36523_ (I)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/isSatisfied (I)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36525_ (ILit/unimi/dsi/fastutil/ints/IntList;)I net/minecraft/world/entity/player/StackedContents$RecipePicker/tryPickAll (ILit/unimi/dsi/fastutil/ints/IntList;)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36528_ (ZI)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/hasVisited (ZI)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36531_ (ZII)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/hasResidual (ZII)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36535_ (I)V net/minecraft/world/entity/player/StackedContents$RecipePicker/setSatisfied (I)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36537_ (ZI)I net/minecraft/world/entity/player/StackedContents$RecipePicker/getVisitedIndex (ZI)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36540_ (ZII)V net/minecraft/world/entity/player/StackedContents$RecipePicker/toggleResidual (ZII)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36544_ (I)I net/minecraft/world/entity/player/StackedContents$RecipePicker/getSatisfiedIndex (I)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36546_ (ZII)I net/minecraft/world/entity/player/StackedContents$RecipePicker/getIndex (ZII)I +MD: net/minecraft/world/entity/projectile/AbstractArrow/ ()V net/minecraft/world/entity/projectile/AbstractArrow/ ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/projectile/AbstractArrow/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_142470_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/projectile/AbstractArrow/tryPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_150123_ ()I net/minecraft/world/entity/projectile/AbstractArrow/getKnockback ()I +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36723_ ()V net/minecraft/world/entity/projectile/AbstractArrow/resetPiercedEntities ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36735_ (I)V net/minecraft/world/entity/projectile/AbstractArrow/setKnockback (I)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36737_ (IZ)V net/minecraft/world/entity/projectile/AbstractArrow/setFlag (IZ)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36740_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/projectile/AbstractArrow/setSoundEvent (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36745_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/projectile/AbstractArrow/setEnchantmentEffectsFromEntity (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36762_ (Z)V net/minecraft/world/entity/projectile/AbstractArrow/setCritArrow (Z)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36767_ (B)V net/minecraft/world/entity/projectile/AbstractArrow/setPierceLevel (B)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36781_ (D)V net/minecraft/world/entity/projectile/AbstractArrow/setBaseDamage (D)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36784_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/projectile/AbstractArrow/getHitGroundSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36789_ ()D net/minecraft/world/entity/projectile/AbstractArrow/getBaseDamage ()D +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36790_ (Z)V net/minecraft/world/entity/projectile/AbstractArrow/setNoPhysics (Z)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36792_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/isCritArrow ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36793_ (Z)V net/minecraft/world/entity/projectile/AbstractArrow/setShotFromCrossbow (Z)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36795_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/shotFromCrossbow ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36796_ ()B net/minecraft/world/entity/projectile/AbstractArrow/getPierceLevel ()B +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36797_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/isNoPhysics ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36798_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/shouldFall ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36799_ ()V net/minecraft/world/entity/projectile/AbstractArrow/startFalling ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_5602_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/AbstractArrow/setOwner (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/AbstractArrow/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/AbstractArrow/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6001_ (DDD)V net/minecraft/world/entity/projectile/AbstractArrow/lerpMotion (DDD)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6097_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/isAttackable ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/projectile/AbstractArrow/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6351_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/AbstractArrow/findHitEntity (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/projectile/AbstractArrow/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/projectile/AbstractArrow/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/projectile/AbstractArrow/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6686_ (DDDFF)V net/minecraft/world/entity/projectile/AbstractArrow/shoot (DDDFF)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6783_ (D)Z net/minecraft/world/entity/projectile/AbstractArrow/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6882_ ()F net/minecraft/world/entity/projectile/AbstractArrow/getWaterInertia ()F +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6901_ ()V net/minecraft/world/entity/projectile/AbstractArrow/tickDespawn ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7239_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/projectile/AbstractArrow/getDefaultHitGroundSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractArrow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractArrow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7761_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/AbstractArrow/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/AbstractArrow/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/AbstractArrow/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_8097_ ()V net/minecraft/world/entity/projectile/AbstractArrow/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_8119_ ()V net/minecraft/world/entity/projectile/AbstractArrow/tick ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow$1/ ()V net/minecraft/world/entity/projectile/AbstractArrow$1/ ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ ()V net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ (Ljava/lang/String;I)V net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/m_150126_ ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/$values ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/m_36808_ (I)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/byOrdinal (I)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/values ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/values ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_213856_ ()F net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5931_ ()Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/shouldBurn ()Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5967_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getTrailParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6087_ ()Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/isPickable ()Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6143_ ()F net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getPickRadius ()F +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6783_ (D)Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6884_ ()F net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getInertia ()F +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_8097_ ()V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_8119_ ()V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/tick ()V +MD: net/minecraft/world/entity/projectile/Arrow/ ()V net/minecraft/world/entity/projectile/Arrow/ ()V +MD: net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_267768_ (I)I net/minecraft/world/entity/projectile/Arrow/lambda$doPostHurtEffects$0 (I)I +MD: net/minecraft/world/entity/projectile/Arrow/m_36870_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/projectile/Arrow/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36876_ (I)V net/minecraft/world/entity/projectile/Arrow/makeParticle (I)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36878_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/Arrow/setEffectsFromItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36882_ (I)V net/minecraft/world/entity/projectile/Arrow/setFixedColor (I)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36884_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/projectile/Arrow/getCustomColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/projectile/Arrow/m_36889_ ()I net/minecraft/world/entity/projectile/Arrow/getColor ()I +MD: net/minecraft/world/entity/projectile/Arrow/m_36890_ ()V net/minecraft/world/entity/projectile/Arrow/updateColor ()V +MD: net/minecraft/world/entity/projectile/Arrow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Arrow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Arrow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7761_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/Arrow/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7822_ (B)V net/minecraft/world/entity/projectile/Arrow/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/Arrow/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/Arrow/m_8097_ ()V net/minecraft/world/entity/projectile/Arrow/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/Arrow/m_8119_ ()V net/minecraft/world/entity/projectile/Arrow/tick ()V +MD: net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V +MD: net/minecraft/world/entity/projectile/DragonFireball/m_5931_ ()Z net/minecraft/world/entity/projectile/DragonFireball/shouldBurn ()Z +MD: net/minecraft/world/entity/projectile/DragonFireball/m_5967_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/projectile/DragonFireball/getTrailParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/projectile/DragonFireball/m_6087_ ()Z net/minecraft/world/entity/projectile/DragonFireball/isPickable ()Z +MD: net/minecraft/world/entity/projectile/DragonFireball/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/DragonFireball/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/DragonFireball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/DragonFireball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/level/Level;DDDFILnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/level/Level;DDDFILnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/EvokerFangs/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_19749_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/projectile/EvokerFangs/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_36936_ (F)F net/minecraft/world/entity/projectile/EvokerFangs/getAnimationProgress (F)F +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_36938_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/EvokerFangs/setOwner (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_36944_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/EvokerFangs/dealDamageTo (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EvokerFangs/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EvokerFangs/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_7822_ (B)V net/minecraft/world/entity/projectile/EvokerFangs/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_8097_ ()V net/minecraft/world/entity/projectile/EvokerFangs/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_8119_ ()V net/minecraft/world/entity/projectile/EvokerFangs/tick ()V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/ ()V net/minecraft/world/entity/projectile/EyeOfEnder/ ()V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_213856_ ()F net/minecraft/world/entity/projectile/EyeOfEnder/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_36967_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/projectile/EyeOfEnder/signalTo (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_36972_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/EyeOfEnder/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_36981_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/EyeOfEnder/getItemRaw ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_6001_ (DDD)V net/minecraft/world/entity/projectile/EyeOfEnder/lerpMotion (DDD)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_6097_ ()Z net/minecraft/world/entity/projectile/EyeOfEnder/isAttackable ()Z +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_6783_ (D)Z net/minecraft/world/entity/projectile/EyeOfEnder/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EyeOfEnder/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EyeOfEnder/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/EyeOfEnder/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_8097_ ()V net/minecraft/world/entity/projectile/EyeOfEnder/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_8119_ ()V net/minecraft/world/entity/projectile/EyeOfEnder/tick ()V +MD: net/minecraft/world/entity/projectile/Fireball/ ()V net/minecraft/world/entity/projectile/Fireball/ ()V +MD: net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_37010_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/Fireball/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_37018_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/Fireball/getItemRaw ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/Fireball/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Fireball/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Fireball/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/Fireball/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/Fireball/m_8097_ ()V net/minecraft/world/entity/projectile/Fireball/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/ ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;DDDZ)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;DDDZ)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;DDDZ)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;DDDZ)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_289166_ (I)V net/minecraft/world/entity/projectile/FireworkRocketEntity/lambda$tick$0 (I)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37079_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/isShotAtAngle ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37080_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/explode ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37086_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/hasExplosion ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37087_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/dealExplosionDamage ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37088_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/isAttachedToEntity ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_6000_ (DDD)Z net/minecraft/world/entity/projectile/FireworkRocketEntity/shouldRender (DDD)Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_6097_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/isAttackable ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_6783_ (D)Z net/minecraft/world/entity/projectile/FireworkRocketEntity/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7822_ (B)V net/minecraft/world/entity/projectile/FireworkRocketEntity/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/FireworkRocketEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_8097_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_8119_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/tick ()V +MD: net/minecraft/world/entity/projectile/FishingHook/ ()V net/minecraft/world/entity/projectile/FishingHook/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;II)V net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;II)V +MD: net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;II)V net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;II)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/FishingHook/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_142036_ ()V net/minecraft/world/entity/projectile/FishingHook/onClientRemoval ()V +MD: net/minecraft/world/entity/projectile/FishingHook/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/projectile/FishingHook/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/projectile/FishingHook/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/projectile/FishingHook/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_150147_ (Lnet/minecraft/world/entity/projectile/FishingHook;)V net/minecraft/world/entity/projectile/FishingHook/updateOwnerInfo (Lnet/minecraft/world/entity/projectile/FishingHook;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_150155_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/FishingHook/pullEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_150157_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/FishingHook/setHookedEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_37136_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/projectile/FishingHook/shouldStopFishing (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_37138_ (Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook/lambda$getOpenWaterTypeForArea$0 (Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37145_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/projectile/FishingHook/catchingFish (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_37147_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook/getOpenWaterTypeForArea (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37156_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/projectile/FishingHook/retrieve (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/projectile/FishingHook/m_37158_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/projectile/FishingHook/calculateOpenWater (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_37163_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook/getOpenWaterTypeForBlock (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37166_ ()Z net/minecraft/world/entity/projectile/FishingHook/isOpenWaterFishing ()Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_37168_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/entity/projectile/FishingHook/getPlayerOwner ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37170_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/FishingHook/getHookedIn ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37171_ ()V net/minecraft/world/entity/projectile/FishingHook/checkCollision ()V +MD: net/minecraft/world/entity/projectile/FishingHook/m_5602_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/FishingHook/setOwner (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/FishingHook/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/projectile/FishingHook/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/projectile/FishingHook/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/FishingHook/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_6072_ ()Z net/minecraft/world/entity/projectile/FishingHook/canChangeDimensions ()Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/projectile/FishingHook/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_6783_ (D)Z net/minecraft/world/entity/projectile/FishingHook/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/projectile/FishingHook/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FishingHook/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FishingHook/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_7822_ (B)V net/minecraft/world/entity/projectile/FishingHook/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/FishingHook/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_8097_ ()V net/minecraft/world/entity/projectile/FishingHook/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/FishingHook/m_8119_ ()V net/minecraft/world/entity/projectile/FishingHook/tick ()V +MD: net/minecraft/world/entity/projectile/FishingHook$1/ ()V net/minecraft/world/entity/projectile/FishingHook$1/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/ ()V net/minecraft/world/entity/projectile/FishingHook$FishHookState/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/ (Ljava/lang/String;I)V net/minecraft/world/entity/projectile/FishingHook$FishHookState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/m_150159_ ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; net/minecraft/world/entity/projectile/FishingHook$FishHookState/$values ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; net/minecraft/world/entity/projectile/FishingHook$FishHookState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; net/minecraft/world/entity/projectile/FishingHook$FishHookState/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ ()V net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ (Ljava/lang/String;I)V net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/m_150160_ ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/$values ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/ItemSupplier/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ItemSupplier/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDDI)V net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDDI)V +MD: net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/LargeFireball/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/LargeFireball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/LargeFireball/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/LargeFireball/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/LlamaSpit/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/LlamaSpit/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/LlamaSpit/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_8097_ ()V net/minecraft/world/entity/projectile/LlamaSpit/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_8119_ ()V net/minecraft/world/entity/projectile/LlamaSpit/tick ()V +MD: net/minecraft/world/entity/projectile/Projectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Projectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/Projectile/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_142265_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/projectile/Projectile/mayInteract (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_150171_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/Projectile/ownedBy (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_150173_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/Projectile/getEffectSource ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/Projectile/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/Projectile/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/Projectile/m_37251_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/world/entity/projectile/Projectile/shootFromRotation (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/world/entity/projectile/Projectile/m_37271_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/Projectile/lambda$checkLeftOwner$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_37273_ (FF)F net/minecraft/world/entity/projectile/Projectile/lerpRotation (FF)F +MD: net/minecraft/world/entity/projectile/Projectile/m_37276_ ()Z net/minecraft/world/entity/projectile/Projectile/checkLeftOwner ()Z +MD: net/minecraft/world/entity/projectile/Projectile/m_37283_ ()V net/minecraft/world/entity/projectile/Projectile/updateRotation ()V +MD: net/minecraft/world/entity/projectile/Projectile/m_5602_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/Projectile/setOwner (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/Projectile/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/projectile/Projectile/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/projectile/Projectile/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/Projectile/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_6001_ (DDD)V net/minecraft/world/entity/projectile/Projectile/lerpMotion (DDD)V +MD: net/minecraft/world/entity/projectile/Projectile/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/Projectile/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_6686_ (DDDFF)V net/minecraft/world/entity/projectile/Projectile/shoot (DDDFF)V +MD: net/minecraft/world/entity/projectile/Projectile/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Projectile/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Projectile/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/Projectile/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_8119_ ()V net/minecraft/world/entity/projectile/Projectile/tick ()V +MD: net/minecraft/world/entity/projectile/ProjectileUtil/ ()V net/minecraft/world/entity/projectile/ProjectileUtil/ ()V +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_150175_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;F)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getEntityHitResult (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;F)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_278158_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getHitResultOnMoveVector (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_278167_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getHitResult (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_278180_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getHitResultOnViewVector (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37284_ (Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/projectile/ProjectileUtil/rotateTowardsMovement (Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37287_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getEntityHitResult (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37297_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/InteractionHand; net/minecraft/world/entity/projectile/ProjectileUtil/getWeaponHoldingHand (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37300_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/projectile/ProjectileUtil/getMobArrow (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37304_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getEntityHitResult (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)V net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/ShulkerBullet/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_150186_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/projectile/ShulkerBullet/getMoveDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_213856_ ()F net/minecraft/world/entity/projectile/ShulkerBullet/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_276200_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/destroy ()V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_37348_ (Lnet/minecraft/core/Direction$Axis;)V net/minecraft/world/entity/projectile/ShulkerBullet/selectNextMoveDirection (Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_37350_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/projectile/ShulkerBullet/setMoveDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/ShulkerBullet/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/projectile/ShulkerBullet/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ShulkerBullet/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6043_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/checkDespawn ()V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6060_ ()Z net/minecraft/world/entity/projectile/ShulkerBullet/isOnFire ()Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6087_ ()Z net/minecraft/world/entity/projectile/ShulkerBullet/isPickable ()Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/ShulkerBullet/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ShulkerBullet/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6783_ (D)Z net/minecraft/world/entity/projectile/ShulkerBullet/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ShulkerBullet/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ShulkerBullet/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/ShulkerBullet/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_8097_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_8119_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/tick ()V +MD: net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;DDDDDD)V net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;DDDDDD)V +MD: net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V +MD: net/minecraft/world/entity/projectile/SmallFireball/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/SmallFireball/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/SmallFireball/m_6087_ ()Z net/minecraft/world/entity/projectile/SmallFireball/isPickable ()Z +MD: net/minecraft/world/entity/projectile/SmallFireball/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/SmallFireball/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/SmallFireball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/SmallFireball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/SmallFireball/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/SmallFireball/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/Snowball/m_37408_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/projectile/Snowball/getParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/projectile/Snowball/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/Snowball/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/Snowball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/Snowball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/Snowball/m_7822_ (B)V net/minecraft/world/entity/projectile/Snowball/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/Snowball/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/Snowball/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/SpectralArrow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/SpectralArrow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7761_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/SpectralArrow/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/SpectralArrow/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_8119_ ()V net/minecraft/world/entity/projectile/SpectralArrow/tick ()V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ ()V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ ()V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_37446_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_37454_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ThrowableItemProjectile/getItemRaw ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ThrowableItemProjectile/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrowableItemProjectile/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_8097_ ()V net/minecraft/world/entity/projectile/ThrowableItemProjectile/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/m_6783_ (D)Z net/minecraft/world/entity/projectile/ThrowableProjectile/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/m_7139_ ()F net/minecraft/world/entity/projectile/ThrowableProjectile/getGravity ()F +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/m_8119_ ()V net/minecraft/world/entity/projectile/ThrowableProjectile/tick ()V +MD: net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ThrownEgg/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownEgg/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_7822_ (B)V net/minecraft/world/entity/projectile/ThrownEgg/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownEgg/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/ThrownEnderpearl/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownEnderpearl/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_8119_ ()V net/minecraft/world/entity/projectile/ThrownEnderpearl/tick ()V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/m_7139_ ()F net/minecraft/world/entity/projectile/ThrownExperienceBottle/getGravity ()F +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownExperienceBottle/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownPotion/ ()V net/minecraft/world/entity/projectile/ThrownPotion/ ()V +MD: net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_150192_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/projectile/ThrownPotion/dowseFire (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_267560_ (DI)I net/minecraft/world/entity/projectile/ThrownPotion/lambda$applySplash$1 (DI)I +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_287114_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/projectile/ThrownPotion/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37537_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/entity/projectile/ThrownPotion/makeAreaOfEffectCloud (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37547_ (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/ThrownPotion/applySplash (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37552_ ()V net/minecraft/world/entity/projectile/ThrownPotion/applyWater ()V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37553_ ()Z net/minecraft/world/entity/projectile/ThrownPotion/isLingering ()Z +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownPotion/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_7139_ ()F net/minecraft/world/entity/projectile/ThrownPotion/getGravity ()F +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownPotion/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/ThrownPotion/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/ ()V net/minecraft/world/entity/projectile/ThrownTrident/ ()V +MD: net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_142470_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/projectile/ThrownTrident/tryPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_150194_ ()Z net/minecraft/world/entity/projectile/ThrownTrident/isChanneling ()Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_37593_ ()Z net/minecraft/world/entity/projectile/ThrownTrident/isFoil ()Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_37594_ ()Z net/minecraft/world/entity/projectile/ThrownTrident/isAcceptibleReturnOwner ()Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ThrownTrident/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6000_ (DDD)Z net/minecraft/world/entity/projectile/ThrownTrident/shouldRender (DDD)Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/projectile/ThrownTrident/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6351_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ThrownTrident/findHitEntity (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6882_ ()F net/minecraft/world/entity/projectile/ThrownTrident/getWaterInertia ()F +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6901_ ()V net/minecraft/world/entity/projectile/ThrownTrident/tickDespawn ()V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7239_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/projectile/ThrownTrident/getDefaultHitGroundSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrownTrident/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrownTrident/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ThrownTrident/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_8097_ ()V net/minecraft/world/entity/projectile/ThrownTrident/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_8119_ ()V net/minecraft/world/entity/projectile/ThrownTrident/tick ()V +MD: net/minecraft/world/entity/projectile/WitherSkull/ ()V net/minecraft/world/entity/projectile/WitherSkull/ ()V +MD: net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V +MD: net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_37629_ (Z)V net/minecraft/world/entity/projectile/WitherSkull/setDangerous (Z)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_37635_ ()Z net/minecraft/world/entity/projectile/WitherSkull/isDangerous ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/WitherSkull/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_5931_ ()Z net/minecraft/world/entity/projectile/WitherSkull/shouldBurn ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6060_ ()Z net/minecraft/world/entity/projectile/WitherSkull/isOnFire ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6087_ ()Z net/minecraft/world/entity/projectile/WitherSkull/isPickable ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/WitherSkull/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/WitherSkull/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6884_ ()F net/minecraft/world/entity/projectile/WitherSkull/getInertia ()F +MD: net/minecraft/world/entity/projectile/WitherSkull/m_7077_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F net/minecraft/world/entity/projectile/WitherSkull/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F +MD: net/minecraft/world/entity/projectile/WitherSkull/m_8097_ ()V net/minecraft/world/entity/projectile/WitherSkull/defineSynchedData ()V +MD: net/minecraft/world/entity/raid/Raid/ ()V net/minecraft/world/entity/raid/Raid/ ()V +MD: net/minecraft/world/entity/raid/Raid/ (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/ (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/raid/Raid/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/raid/Raid/m_150218_ (I)V net/minecraft/world/entity/raid/Raid/setBadOmenLevel (I)V +MD: net/minecraft/world/entity/raid/Raid/m_150220_ ()F net/minecraft/world/entity/raid/Raid/getTotalHealth ()F +MD: net/minecraft/world/entity/raid/Raid/m_150221_ ()Ljava/util/Set; net/minecraft/world/entity/raid/Raid/getAllRaiders ()Ljava/util/Set; +MD: net/minecraft/world/entity/raid/Raid/m_219828_ (Lnet/minecraft/world/entity/raid/Raid$RaiderType;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/DifficultyInstance;Z)I net/minecraft/world/entity/raid/Raid/getPotentialBonusSpawns (Lnet/minecraft/world/entity/raid/Raid$RaiderType;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/DifficultyInstance;Z)I +MD: net/minecraft/world/entity/raid/Raid/m_289167_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/raid/Raid/lambda$validPlayer$0 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/raid/Raid/m_37698_ ()Z net/minecraft/world/entity/raid/Raid/hasMoreWaves ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37699_ ()Z net/minecraft/world/entity/raid/Raid/isFinalWave ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37700_ ()Z net/minecraft/world/entity/raid/Raid/hasBonusWave ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37701_ ()Z net/minecraft/world/entity/raid/Raid/hasSpawnedBonusWave ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37702_ ()Z net/minecraft/world/entity/raid/Raid/shouldSpawnBonusGroup ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37703_ ()V net/minecraft/world/entity/raid/Raid/updateRaiders ()V +MD: net/minecraft/world/entity/raid/Raid/m_37704_ ()Z net/minecraft/world/entity/raid/Raid/shouldSpawnGroup ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37705_ ()V net/minecraft/world/entity/raid/Raid/setDirty ()V +MD: net/minecraft/world/entity/raid/Raid/m_37706_ ()Z net/minecraft/world/entity/raid/Raid/isOver ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37707_ (II)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/raid/Raid/findRandomSpawnPos (II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/raid/Raid/m_37710_ (ILnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/raid/Raid/setLeader (ILnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/raid/Raid/m_37713_ (ILnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/raid/Raid/joinRaid (ILnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/raid/Raid/m_37718_ (ILnet/minecraft/world/entity/raid/Raider;Z)Z net/minecraft/world/entity/raid/Raid/addWaveMob (ILnet/minecraft/world/entity/raid/Raider;Z)Z +MD: net/minecraft/world/entity/raid/Raid/m_37724_ (Lnet/minecraft/world/Difficulty;)I net/minecraft/world/entity/raid/Raid/getNumGroups (Lnet/minecraft/world/Difficulty;)I +MD: net/minecraft/world/entity/raid/Raid/m_37726_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/raid/Raid/addHeroOfTheVillage (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/raid/Raid/m_37728_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/raid/Raid/absorbBadOmen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/raid/Raid/m_37730_ (Lnet/minecraft/world/entity/raid/Raid$RaiderType;IZ)I net/minecraft/world/entity/raid/Raid/getDefaultNumSpawns (Lnet/minecraft/world/entity/raid/Raid$RaiderType;IZ)I +MD: net/minecraft/world/entity/raid/Raid/m_37740_ (Lnet/minecraft/world/entity/raid/Raider;Z)V net/minecraft/world/entity/raid/Raid/removeFromRaid (Lnet/minecraft/world/entity/raid/Raider;Z)V +MD: net/minecraft/world/entity/raid/Raid/m_37743_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/playSound (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/m_37745_ (Ljava/lang/Integer;)Ljava/util/Set; net/minecraft/world/entity/raid/Raid/lambda$addWaveMob$2 (Ljava/lang/Integer;)Ljava/util/Set; +MD: net/minecraft/world/entity/raid/Raid/m_37747_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/raid/Raid/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/raid/Raid/m_37749_ ()Z net/minecraft/world/entity/raid/Raid/isBetweenWaves ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37750_ (I)Lnet/minecraft/world/entity/raid/Raider; net/minecraft/world/entity/raid/Raid/getLeader (I)Lnet/minecraft/world/entity/raid/Raider; +MD: net/minecraft/world/entity/raid/Raid/m_37752_ (ILnet/minecraft/world/entity/raid/Raider;)Z net/minecraft/world/entity/raid/Raid/addWaveMob (ILnet/minecraft/world/entity/raid/Raider;)Z +MD: net/minecraft/world/entity/raid/Raid/m_37755_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/spawnGroup (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/m_37757_ ()Z net/minecraft/world/entity/raid/Raid/hasFirstWaveSpawned ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37758_ (I)V net/minecraft/world/entity/raid/Raid/removeLeader (I)V +MD: net/minecraft/world/entity/raid/Raid/m_37760_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/setCenter (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/m_37762_ ()Z net/minecraft/world/entity/raid/Raid/isStopped ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37763_ (I)Ljava/util/Optional; net/minecraft/world/entity/raid/Raid/getValidSpawnPos (I)Ljava/util/Optional; +MD: net/minecraft/world/entity/raid/Raid/m_37765_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/raid/Raid/lambda$moveRaidCenterToNearbyVillageSection$1 (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/raid/Raid/m_37767_ ()Z net/minecraft/world/entity/raid/Raid/isVictory ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37768_ ()Z net/minecraft/world/entity/raid/Raid/isLoss ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37769_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/raid/Raid/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/raid/Raid/m_37770_ ()Z net/minecraft/world/entity/raid/Raid/isStarted ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37771_ ()I net/minecraft/world/entity/raid/Raid/getGroupsSpawned ()I +MD: net/minecraft/world/entity/raid/Raid/m_37772_ ()I net/minecraft/world/entity/raid/Raid/getMaxBadOmenLevel ()I +MD: net/minecraft/world/entity/raid/Raid/m_37773_ ()I net/minecraft/world/entity/raid/Raid/getBadOmenLevel ()I +MD: net/minecraft/world/entity/raid/Raid/m_37774_ ()V net/minecraft/world/entity/raid/Raid/stop ()V +MD: net/minecraft/world/entity/raid/Raid/m_37775_ ()V net/minecraft/world/entity/raid/Raid/tick ()V +MD: net/minecraft/world/entity/raid/Raid/m_37776_ ()V net/minecraft/world/entity/raid/Raid/updateBossbar ()V +MD: net/minecraft/world/entity/raid/Raid/m_37777_ ()F net/minecraft/world/entity/raid/Raid/getHealthOfLivingRaiders ()F +MD: net/minecraft/world/entity/raid/Raid/m_37778_ ()I net/minecraft/world/entity/raid/Raid/getTotalRaidersAlive ()I +MD: net/minecraft/world/entity/raid/Raid/m_37779_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/raid/Raid/getLeaderBannerInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/raid/Raid/m_37780_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/raid/Raid/getCenter ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/raid/Raid/m_37781_ ()I net/minecraft/world/entity/raid/Raid/getId ()I +MD: net/minecraft/world/entity/raid/Raid/m_37782_ ()Z net/minecraft/world/entity/raid/Raid/isActive ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37783_ ()F net/minecraft/world/entity/raid/Raid/getEnchantOdds ()F +MD: net/minecraft/world/entity/raid/Raid/m_37784_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/raid/Raid/validPlayer ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/raid/Raid/m_37785_ ()V net/minecraft/world/entity/raid/Raid/updatePlayers ()V +MD: net/minecraft/world/entity/raid/Raid/m_37786_ ()V net/minecraft/world/entity/raid/Raid/moveRaidCenterToNearbyVillageSection ()V +MD: net/minecraft/world/entity/raid/Raid$1/ ()V net/minecraft/world/entity/raid/Raid$1/ ()V +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/ ()V net/minecraft/world/entity/raid/Raid$RaidStatus/ ()V +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/ (Ljava/lang/String;I)V net/minecraft/world/entity/raid/Raid$RaidStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/m_150222_ ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/$values ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/m_37800_ ()Ljava/lang/String; net/minecraft/world/entity/raid/Raid$RaidStatus/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/m_37803_ (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/getByName (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/values ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/values ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaiderType/ ()V net/minecraft/world/entity/raid/Raid$RaiderType/ ()V +MD: net/minecraft/world/entity/raid/Raid$RaiderType/ (Ljava/lang/String;ILnet/minecraft/world/entity/EntityType;[I)V net/minecraft/world/entity/raid/Raid$RaiderType/ (Ljava/lang/String;ILnet/minecraft/world/entity/EntityType;[I)V +MD: net/minecraft/world/entity/raid/Raid$RaiderType/m_150223_ ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; net/minecraft/world/entity/raid/Raid$RaiderType/$values ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; +MD: net/minecraft/world/entity/raid/Raid$RaiderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaiderType; net/minecraft/world/entity/raid/Raid$RaiderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaiderType; +MD: net/minecraft/world/entity/raid/Raid$RaiderType/values ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; net/minecraft/world/entity/raid/Raid$RaiderType/values ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; +MD: net/minecraft/world/entity/raid/Raider/ ()V net/minecraft/world/entity/raid/Raider/ ()V +MD: net/minecraft/world/entity/raid/Raider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/raid/Raider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/raid/Raider/m_150226_ (Lnet/minecraft/world/entity/raid/Raider;)F net/minecraft/world/entity/raid/Raider/access$100 (Lnet/minecraft/world/entity/raid/Raider;)F +MD: net/minecraft/world/entity/raid/Raider/m_150230_ (Lnet/minecraft/world/entity/raid/Raider;)Z net/minecraft/world/entity/raid/Raider/access$300 (Lnet/minecraft/world/entity/raid/Raider;)Z +MD: net/minecraft/world/entity/raid/Raider/m_219834_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$000 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_219836_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$200 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_219838_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$400 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_219840_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$500 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_289168_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/raid/Raider/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/raid/Raider/m_37842_ (I)V net/minecraft/world/entity/raid/Raider/setWave (I)V +MD: net/minecraft/world/entity/raid/Raider/m_37851_ (Lnet/minecraft/world/entity/raid/Raid;)V net/minecraft/world/entity/raid/Raider/setCurrentRaid (Lnet/minecraft/world/entity/raid/Raid;)V +MD: net/minecraft/world/entity/raid/Raider/m_37863_ (I)V net/minecraft/world/entity/raid/Raider/setTicksOutsideRaid (I)V +MD: net/minecraft/world/entity/raid/Raider/m_37882_ ()Z net/minecraft/world/entity/raid/Raider/canJoinRaid ()Z +MD: net/minecraft/world/entity/raid/Raider/m_37885_ ()Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raider/getCurrentRaid ()Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raider/m_37886_ ()Z net/minecraft/world/entity/raid/Raider/hasActiveRaid ()Z +MD: net/minecraft/world/entity/raid/Raider/m_37887_ ()I net/minecraft/world/entity/raid/Raider/getWave ()I +MD: net/minecraft/world/entity/raid/Raider/m_37888_ ()Z net/minecraft/world/entity/raid/Raider/isCelebrating ()Z +MD: net/minecraft/world/entity/raid/Raider/m_37889_ ()I net/minecraft/world/entity/raid/Raider/getTicksOutsideRaid ()I +MD: net/minecraft/world/entity/raid/Raider/m_37897_ (Z)V net/minecraft/world/entity/raid/Raider/setCanJoinRaid (Z)V +MD: net/minecraft/world/entity/raid/Raider/m_37899_ (Z)V net/minecraft/world/entity/raid/Raider/setCelebrating (Z)V +MD: net/minecraft/world/entity/raid/Raider/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/raid/Raider/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/raid/Raider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/raid/Raider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/raid/Raider/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/raid/Raider/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/raid/Raider/m_6785_ (D)Z net/minecraft/world/entity/raid/Raider/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/raid/Raider/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/raid/Raider/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/raid/Raider/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/raid/Raider/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/raid/Raider/m_7492_ ()Z net/minecraft/world/entity/raid/Raider/canJoinPatrol ()Z +MD: net/minecraft/world/entity/raid/Raider/m_7562_ ()V net/minecraft/world/entity/raid/Raider/updateNoActionTime ()V +MD: net/minecraft/world/entity/raid/Raider/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/raid/Raider/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/raid/Raider/m_7895_ (IZ)V net/minecraft/world/entity/raid/Raider/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/raid/Raider/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/raid/Raider/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/raid/Raider/m_8023_ ()Z net/minecraft/world/entity/raid/Raider/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/raid/Raider/m_8097_ ()V net/minecraft/world/entity/raid/Raider/defineSynchedData ()V +MD: net/minecraft/world/entity/raid/Raider/m_8099_ ()V net/minecraft/world/entity/raid/Raider/registerGoals ()V +MD: net/minecraft/world/entity/raid/Raider/m_8107_ ()V net/minecraft/world/entity/raid/Raider/aiStep ()V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/monster/AbstractIllager;F)V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/monster/AbstractIllager;F)V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_183429_ ()Z net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8037_ ()V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/tick ()V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8041_ ()V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/stop ()V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8056_ ()V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/start ()V +MD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/m_8037_ ()V net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/tick ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/raid/Raider$RaiderCelebration/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$RaiderCelebration/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8037_ ()V net/minecraft/world/entity/raid/Raider$RaiderCelebration/tick ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8041_ ()V net/minecraft/world/entity/raid/Raider$RaiderCelebration/stop ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8056_ ()V net/minecraft/world/entity/raid/Raider$RaiderCelebration/start ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/ (Lnet/minecraft/world/entity/raid/Raider;DI)V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/ (Lnet/minecraft/world/entity/raid/Raider;DI)V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_219842_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/lambda$hasSuitablePoi$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37942_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/hasNotVisited (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37948_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/isValidRaid ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37949_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/hasSuitablePoi ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37950_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/updateVisited ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8037_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/tick ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8041_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/stop ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8056_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/start ()V +MD: net/minecraft/world/entity/raid/Raids/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/raid/Raids/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/raid/Raids/m_150235_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; net/minecraft/world/entity/raid/Raids/load (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/world/entity/raid/Raids/m_211596_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/world/entity/raid/Raids/getFileId (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/world/entity/raid/Raids/m_219844_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/raid/Raids/lambda$createOrExtendRaid$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/raid/Raids/m_37957_ ()V net/minecraft/world/entity/raid/Raids/tick ()V +MD: net/minecraft/world/entity/raid/Raids/m_37958_ (I)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/get (I)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37960_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/getOrCreateRaid (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37963_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/createOrExtendRaid (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37965_ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raid;)Z net/minecraft/world/entity/raid/Raids/canJoinRaid (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raid;)Z +MD: net/minecraft/world/entity/raid/Raids/m_37970_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/getNearbyRaid (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37977_ ()I net/minecraft/world/entity/raid/Raids/getUniqueId ()I +MD: net/minecraft/world/entity/raid/Raids/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/raid/Raids/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/schedule/Activity/ ()V net/minecraft/world/entity/schedule/Activity/ ()V +MD: net/minecraft/world/entity/schedule/Activity/ (Ljava/lang/String;)V net/minecraft/world/entity/schedule/Activity/ (Ljava/lang/String;)V +MD: net/minecraft/world/entity/schedule/Activity/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/schedule/Activity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/schedule/Activity/hashCode ()I net/minecraft/world/entity/schedule/Activity/hashCode ()I +MD: net/minecraft/world/entity/schedule/Activity/m_37998_ ()Ljava/lang/String; net/minecraft/world/entity/schedule/Activity/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/schedule/Activity/m_37999_ (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/world/entity/schedule/Activity/register (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/world/entity/schedule/Activity/toString ()Ljava/lang/String; net/minecraft/world/entity/schedule/Activity/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/schedule/Keyframe/ (IF)V net/minecraft/world/entity/schedule/Keyframe/ (IF)V +MD: net/minecraft/world/entity/schedule/Keyframe/m_38010_ ()I net/minecraft/world/entity/schedule/Keyframe/getTimeStamp ()I +MD: net/minecraft/world/entity/schedule/Keyframe/m_38011_ ()F net/minecraft/world/entity/schedule/Keyframe/getValue ()F +MD: net/minecraft/world/entity/schedule/Schedule/ ()V net/minecraft/world/entity/schedule/Schedule/ ()V +MD: net/minecraft/world/entity/schedule/Schedule/ ()V net/minecraft/world/entity/schedule/Schedule/ ()V +MD: net/minecraft/world/entity/schedule/Schedule/m_38019_ (I)Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/world/entity/schedule/Schedule/getActivityAt (I)Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/world/entity/schedule/Schedule/m_38021_ (ILjava/util/Map$Entry;)D net/minecraft/world/entity/schedule/Schedule/lambda$getActivityAt$1 (ILjava/util/Map$Entry;)D +MD: net/minecraft/world/entity/schedule/Schedule/m_38024_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/schedule/Schedule/ensureTimelineExistsFor (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/schedule/Schedule/m_38026_ (Lnet/minecraft/world/entity/schedule/Activity;Ljava/util/Map$Entry;)Z net/minecraft/world/entity/schedule/Schedule/lambda$getAllTimelinesExceptFor$0 (Lnet/minecraft/world/entity/schedule/Activity;Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/schedule/Schedule/m_38029_ (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; net/minecraft/world/entity/schedule/Schedule/register (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; +MD: net/minecraft/world/entity/schedule/Schedule/m_38031_ (Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/Timeline; net/minecraft/world/entity/schedule/Schedule/getTimelineFor (Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/Timeline; +MD: net/minecraft/world/entity/schedule/Schedule/m_38033_ (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/List; net/minecraft/world/entity/schedule/Schedule/getAllTimelinesExceptFor (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/List; +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/ (Lnet/minecraft/world/entity/schedule/Schedule;)V net/minecraft/world/entity/schedule/ScheduleBuilder/ (Lnet/minecraft/world/entity/schedule/Schedule;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_150243_ (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;Lnet/minecraft/world/entity/schedule/Timeline;)V net/minecraft/world/entity/schedule/ScheduleBuilder/lambda$build$0 (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;Lnet/minecraft/world/entity/schedule/Timeline;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_38039_ ()Lnet/minecraft/world/entity/schedule/Schedule; net/minecraft/world/entity/schedule/ScheduleBuilder/build ()Lnet/minecraft/world/entity/schedule/Schedule; +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_38040_ (ILnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; net/minecraft/world/entity/schedule/ScheduleBuilder/changeActivityAt (ILnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_38043_ (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;)V net/minecraft/world/entity/schedule/ScheduleBuilder/lambda$build$1 (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/ (ILnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/ (ILnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/m_38053_ ()I net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/getTime ()I +MD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/m_38054_ ()Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/getActivity ()Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/world/entity/schedule/Timeline/ ()V net/minecraft/world/entity/schedule/Timeline/ ()V +MD: net/minecraft/world/entity/schedule/Timeline/m_150246_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/schedule/Timeline/getKeyframes ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/schedule/Timeline/m_150247_ (Ljava/util/Collection;)Lnet/minecraft/world/entity/schedule/Timeline; net/minecraft/world/entity/schedule/Timeline/addKeyframes (Ljava/util/Collection;)Lnet/minecraft/world/entity/schedule/Timeline; +MD: net/minecraft/world/entity/schedule/Timeline/m_38058_ (I)F net/minecraft/world/entity/schedule/Timeline/getValueAt (I)F +MD: net/minecraft/world/entity/schedule/Timeline/m_38060_ (IF)Lnet/minecraft/world/entity/schedule/Timeline; net/minecraft/world/entity/schedule/Timeline/addKeyframe (IF)Lnet/minecraft/world/entity/schedule/Timeline; +MD: net/minecraft/world/entity/schedule/Timeline/m_38063_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectSortedMap;Lnet/minecraft/world/entity/schedule/Keyframe;)V net/minecraft/world/entity/schedule/Timeline/lambda$sortAndDeduplicateKeyframes$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectSortedMap;Lnet/minecraft/world/entity/schedule/Keyframe;)V +MD: net/minecraft/world/entity/schedule/Timeline/m_38066_ ()V net/minecraft/world/entity/schedule/Timeline/sortAndDeduplicateKeyframes ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/ ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/vehicle/AbstractMinecart/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecart/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/AbstractMinecart/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_288188_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/isOnRails ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_289169_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/AbstractMinecart/lambda$getDismountLocationForPassenger$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_289170_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/AbstractMinecart/lambda$getDismountLocationForPassenger$0 (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38096_ (DDDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getPosOffs (DDDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38109_ (F)V net/minecraft/world/entity/vehicle/AbstractMinecart/setDamage (F)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38119_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart; net/minecraft/world/entity/vehicle/AbstractMinecart/createMinecart (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38125_ (Lnet/minecraft/world/level/block/state/properties/RailShape;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/vehicle/AbstractMinecart/exits (Lnet/minecraft/world/level/block/state/properties/RailShape;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38129_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/vehicle/AbstractMinecart/isRedstoneConductor (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38134_ (Ljava/util/EnumMap;)V net/minecraft/world/entity/vehicle/AbstractMinecart/lambda$static$2 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38138_ (Z)V net/minecraft/world/entity/vehicle/AbstractMinecart/setCustomDisplay (Z)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38146_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/vehicle/AbstractMinecart/setDisplayBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38154_ (I)V net/minecraft/world/entity/vehicle/AbstractMinecart/setHurtTime (I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38160_ (I)V net/minecraft/world/entity/vehicle/AbstractMinecart/setHurtDir (I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38163_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/comeOffTrack ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38169_ ()F net/minecraft/world/entity/vehicle/AbstractMinecart/getDamage ()F +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38174_ (I)V net/minecraft/world/entity/vehicle/AbstractMinecart/setDisplayOffset (I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38176_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getHurtTime ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38177_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getHurtDir ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38178_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/AbstractMinecart/getDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38179_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getPos (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38183_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38184_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/hasCustomDisplay ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6001_ (DDD)V net/minecraft/world/entity/vehicle/AbstractMinecart/lerpMotion (DDD)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/AbstractMinecart/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6041_ ()F net/minecraft/world/entity/vehicle/AbstractMinecart/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6048_ ()D net/minecraft/world/entity/vehicle/AbstractMinecart/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6053_ (F)V net/minecraft/world/entity/vehicle/AbstractMinecart/animateHurt (F)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6087_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/isPickable ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6094_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/isPushable ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6374_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/vehicle/AbstractMinecart/getMotionDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/AbstractMinecart/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6401_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/vehicle/AbstractMinecart/moveAlongTrack (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/vehicle/AbstractMinecart/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/vehicle/AbstractMinecart/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/vehicle/AbstractMinecart/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7097_ ()D net/minecraft/world/entity/vehicle/AbstractMinecart/getMaxSpeed ()D +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7114_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/applyNaturalSlowdown ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7144_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getDefaultDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/AbstractMinecart/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7337_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/AbstractMinecart/canCollideWith (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecart/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecart/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7617_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/AbstractMinecart/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_8097_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_8119_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/tick ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$1/ ()V net/minecraft/world/entity/vehicle/AbstractMinecart$1/ ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ ()V net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ (Ljava/lang/String;I)V net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/m_150253_ ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart$Type/$values ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/values ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart$Type/values ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_213659_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getItemStacks ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_213775_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/clearItemStacks ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_213803_ ()J net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getLootTableSeed ()J +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_214065_ (J)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setLootTableSeed (J)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_214142_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_214199_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setLootTable (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_38236_ (Lnet/minecraft/resources/ResourceLocation;J)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setLootTable (Lnet/minecraft/resources/ResourceLocation;J)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6211_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/clearContent ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/vehicle/AbstractMinecartContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6596_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setChanged ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7114_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/applyNaturalSlowdown ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7402_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7617_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/Boat/ ()V net/minecraft/world/entity/vehicle/Boat/ ()V +MD: net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/Boat/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/vehicle/Boat/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/vehicle/Boat/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/Boat/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/Boat/m_150273_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/lambda$tickBubbleColumn$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/vehicle/Boat/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_213560_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/Boat/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_213801_ ()I net/minecraft/world/entity/vehicle/Boat/getMaxPassengers ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_213802_ ()F net/minecraft/world/entity/vehicle/Boat/getSinglePassengerXOffset ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_271938_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/hasEnoughSpaceFor (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_28464_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V net/minecraft/world/entity/vehicle/Boat/setVariant (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/vehicle/Boat/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/vehicle/Boat/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/vehicle/Boat/m_28554_ ()Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat/getVariant ()Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat/m_38311_ (F)V net/minecraft/world/entity/vehicle/Boat/setDamage (F)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38313_ (I)Z net/minecraft/world/entity/vehicle/Boat/getPaddleState (I)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_38315_ (IF)F net/minecraft/world/entity/vehicle/Boat/getRowingTime (IF)F +MD: net/minecraft/world/entity/vehicle/Boat/m_38321_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/Boat/clampRotation (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38323_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/canVehicleCollide (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_38339_ (ZZ)V net/minecraft/world/entity/vehicle/Boat/setPaddleState (ZZ)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38342_ (ZZZZ)V net/minecraft/world/entity/vehicle/Boat/setInput (ZZZZ)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38352_ (F)F net/minecraft/world/entity/vehicle/Boat/getBubbleAngle (F)F +MD: net/minecraft/world/entity/vehicle/Boat/m_38354_ (I)V net/minecraft/world/entity/vehicle/Boat/setHurtTime (I)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38362_ (I)V net/minecraft/world/entity/vehicle/Boat/setHurtDir (I)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38366_ (I)V net/minecraft/world/entity/vehicle/Boat/setBubbleTime (I)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38369_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/Boat/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/Boat/m_38370_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/vehicle/Boat/getPaddleSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/vehicle/Boat/m_38371_ ()F net/minecraft/world/entity/vehicle/Boat/getWaterLevelAbove ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_38377_ ()F net/minecraft/world/entity/vehicle/Boat/getGroundFriction ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_38384_ ()F net/minecraft/world/entity/vehicle/Boat/getDamage ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_38385_ ()I net/minecraft/world/entity/vehicle/Boat/getHurtTime ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_38386_ ()I net/minecraft/world/entity/vehicle/Boat/getHurtDir ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_38388_ ()V net/minecraft/world/entity/vehicle/Boat/tickBubbleColumn ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38391_ ()V net/minecraft/world/entity/vehicle/Boat/tickLerp ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38392_ ()Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat/getStatus ()Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat/m_38393_ ()Z net/minecraft/world/entity/vehicle/Boat/checkInWater ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_38394_ ()Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat/isUnderwater ()Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat/m_38395_ ()V net/minecraft/world/entity/vehicle/Boat/floatBoat ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38396_ ()V net/minecraft/world/entity/vehicle/Boat/controlBoat ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38397_ ()I net/minecraft/world/entity/vehicle/Boat/getBubbleTime ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_5829_ ()Z net/minecraft/world/entity/vehicle/Boat/canBeCollidedWith ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_5842_ ()Z net/minecraft/world/entity/vehicle/Boat/isUnderWater ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6048_ ()D net/minecraft/world/entity/vehicle/Boat/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/vehicle/Boat/m_6053_ (F)V net/minecraft/world/entity/vehicle/Boat/animateHurt (F)V +MD: net/minecraft/world/entity/vehicle/Boat/m_6087_ ()Z net/minecraft/world/entity/vehicle/Boat/isPickable ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6094_ ()Z net/minecraft/world/entity/vehicle/Boat/isPushable ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/Boat/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/Boat/m_6374_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/vehicle/Boat/getMotionDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/vehicle/Boat/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/vehicle/Boat/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/vehicle/Boat/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/vehicle/Boat/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/vehicle/Boat/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/vehicle/Boat/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/vehicle/Boat/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/vehicle/Boat/m_6845_ (Z)V net/minecraft/world/entity/vehicle/Boat/onAboveBubbleCol (Z)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/Boat/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7337_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/canCollideWith (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_7340_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/Boat/onPassengerTurned (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/Boat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/Boat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/Boat/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/Boat/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/Boat/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/Boat/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/vehicle/Boat/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_8097_ ()V net/minecraft/world/entity/vehicle/Boat/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_8119_ ()V net/minecraft/world/entity/vehicle/Boat/tick ()V +MD: net/minecraft/world/entity/vehicle/Boat$1/ ()V net/minecraft/world/entity/vehicle/Boat$1/ ()V +MD: net/minecraft/world/entity/vehicle/Boat$Status/ ()V net/minecraft/world/entity/vehicle/Boat$Status/ ()V +MD: net/minecraft/world/entity/vehicle/Boat$Status/ (Ljava/lang/String;I)V net/minecraft/world/entity/vehicle/Boat$Status/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/vehicle/Boat$Status/m_150276_ ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat$Status/$values ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat$Status/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat$Status/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat$Type/ ()V net/minecraft/world/entity/vehicle/Boat$Type/ ()V +MD: net/minecraft/world/entity/vehicle/Boat$Type/ (Ljava/lang/String;ILnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/world/entity/vehicle/Boat$Type/ (Ljava/lang/String;ILnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_150277_ ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/$values ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38429_ ()Ljava/lang/String; net/minecraft/world/entity/vehicle/Boat$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38430_ (I)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/byId (I)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38432_ (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38434_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/entity/vehicle/Boat$Type/getPlanks ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/vehicle/Boat$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/vehicle/Boat$Type/toString ()Ljava/lang/String; net/minecraft/world/entity/vehicle/Boat$Type/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/vehicle/Boat$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/vehicle/ChestBoat/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/vehicle/ChestBoat/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213560_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/ChestBoat/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ChestBoat/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213659_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/entity/vehicle/ChestBoat/getItemStacks ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213775_ ()V net/minecraft/world/entity/vehicle/ChestBoat/clearItemStacks ()V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213801_ ()I net/minecraft/world/entity/vehicle/ChestBoat/getMaxPassengers ()I +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213802_ ()F net/minecraft/world/entity/vehicle/ChestBoat/getSinglePassengerXOffset ()F +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213803_ ()J net/minecraft/world/entity/vehicle/ChestBoat/getLootTableSeed ()J +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_214065_ (J)V net/minecraft/world/entity/vehicle/ChestBoat/setLootTableSeed (J)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_214142_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/vehicle/ChestBoat/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_214199_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/vehicle/ChestBoat/setLootTable (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_219913_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ChestBoat/unpackLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_38369_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/ChestBoat/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ChestBoat/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/ChestBoat/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6211_ ()V net/minecraft/world/entity/vehicle/ChestBoat/clearContent ()V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/vehicle/ChestBoat/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6596_ ()V net/minecraft/world/entity/vehicle/ChestBoat/setChanged ()V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6643_ ()I net/minecraft/world/entity/vehicle/ChestBoat/getContainerSize ()I +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/vehicle/ChestBoat/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/ChestBoat/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ChestBoat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ChestBoat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ChestBoat/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ChestBoat/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ChestBoat/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ChestBoat$1/ ()V net/minecraft/world/entity/vehicle/ChestBoat$1/ ()V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_20182_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/ContainerEntity/position ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213659_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/entity/vehicle/ContainerEntity/getItemStacks ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213775_ ()V net/minecraft/world/entity/vehicle/ContainerEntity/clearItemStacks ()V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213803_ ()J net/minecraft/world/entity/vehicle/ContainerEntity/getLootTableSeed ()J +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213877_ ()Z net/minecraft/world/entity/vehicle/ContainerEntity/isRemoved ()Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_214065_ (J)V net/minecraft/world/entity/vehicle/ContainerEntity/setLootTableSeed (J)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_214142_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/vehicle/ContainerEntity/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_214199_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/vehicle/ContainerEntity/setLootTable (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219927_ (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/ContainerEntity/chestVehicleDestroyed (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219934_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ContainerEntity/readChestVehicleSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219936_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity/removeChestVehicleItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219940_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/vehicle/ContainerEntity/setChestVehicleItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219943_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ContainerEntity/addChestVehicleSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219945_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity/removeChestVehicleItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219947_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity/getChestVehicleItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219949_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ContainerEntity/unpackChestVehicleLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219951_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/vehicle/ContainerEntity/getChestVehicleSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219953_ ()V net/minecraft/world/entity/vehicle/ContainerEntity/clearChestVehicleContent ()V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219954_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/vehicle/ContainerEntity/isChestVehicleStillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219956_ ()Z net/minecraft/world/entity/vehicle/ContainerEntity/isChestVehicleEmpty ()Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_268996_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/ContainerEntity/interactWithContainerVehicle (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_7983_ ()Z net/minecraft/world/entity/vehicle/ContainerEntity/isEmpty ()Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_9236_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/vehicle/ContainerEntity/level ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/vehicle/ContainerEntity$1/ (Lnet/minecraft/world/entity/vehicle/ContainerEntity;I)V net/minecraft/world/entity/vehicle/ContainerEntity$1/ (Lnet/minecraft/world/entity/vehicle/ContainerEntity;I)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/vehicle/ContainerEntity$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/DismountHelper/ ()V net/minecraft/world/entity/vehicle/DismountHelper/ ()V +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_150279_ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Pose;)Z net/minecraft/world/entity/vehicle/DismountHelper/canDismountTo (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Pose;)Z +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38439_ (D)Z net/minecraft/world/entity/vehicle/DismountHelper/isBlockFloorValid (D)Z +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38441_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/DismountHelper/findSafeDismountLocation (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38446_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/DismountHelper/nonClimbableShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38456_ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/entity/vehicle/DismountHelper/canDismountTo (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38460_ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/DismountHelper/lambda$findSafeDismountLocation$0 (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38463_ (Lnet/minecraft/core/BlockPos;ILjava/util/function/Function;)D net/minecraft/world/entity/vehicle/DismountHelper/findCeilingFrom (Lnet/minecraft/core/BlockPos;ILjava/util/function/Function;)D +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38467_ (Lnet/minecraft/core/Direction;)[[I net/minecraft/world/entity/vehicle/DismountHelper/offsetsForDirection (Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/Minecart/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/Minecart/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/Minecart/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/Minecart/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/Minecart/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/Minecart/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/Minecart/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/Minecart/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartChest/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/MinecartChest/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartChest/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/MinecartChest/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartChest/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6643_ ()I net/minecraft/world/entity/vehicle/MinecartChest/getContainerSize ()I +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_7144_ ()I net/minecraft/world/entity/vehicle/MinecartChest/getDefaultDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_7402_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/MinecartChest/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/ ()V net/minecraft/world/entity/vehicle/MinecartCommandBlock/ ()V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_38534_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/MinecartCommandBlock/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6127_ ()Z net/minecraft/world/entity/vehicle/MinecartCommandBlock/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_8097_ ()V net/minecraft/world/entity/vehicle/MinecartCommandBlock/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/ (Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/ (Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_288209_ ()Z net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/isValid ()Z +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_38543_ ()Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/getMinecart ()Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_5991_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_6607_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_6712_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_7368_ ()V net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/onUpdated ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/ ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartFurnace/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_38576_ (Z)V net/minecraft/world/entity/vehicle/MinecartFurnace/setHasFuel (Z)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_38579_ ()Z net/minecraft/world/entity/vehicle/MinecartFurnace/hasFuel ()Z +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartFurnace/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/MinecartFurnace/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartFurnace/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6401_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/vehicle/MinecartFurnace/moveAlongTrack (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7097_ ()D net/minecraft/world/entity/vehicle/MinecartFurnace/getMaxSpeed ()D +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7114_ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/applyNaturalSlowdown ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartFurnace/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartFurnace/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_8097_ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/tick ()V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartHopper/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_38592_ ()Z net/minecraft/world/entity/vehicle/MinecartHopper/suckInItems ()Z +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_38613_ (Z)V net/minecraft/world/entity/vehicle/MinecartHopper/setEnabled (Z)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_38617_ ()Z net/minecraft/world/entity/vehicle/MinecartHopper/isEnabled ()Z +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/MinecartHopper/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartHopper/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6343_ ()D net/minecraft/world/entity/vehicle/MinecartHopper/getLevelX ()D +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6358_ ()D net/minecraft/world/entity/vehicle/MinecartHopper/getLevelY ()D +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartHopper/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6446_ ()D net/minecraft/world/entity/vehicle/MinecartHopper/getLevelZ ()D +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6643_ ()I net/minecraft/world/entity/vehicle/MinecartHopper/getContainerSize ()I +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7144_ ()I net/minecraft/world/entity/vehicle/MinecartHopper/getDefaultDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartHopper/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartHopper/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7402_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/MinecartHopper/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartHopper/tick ()V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_150334_ (Lnet/minecraft/world/level/Level;)Ljava/lang/Runnable; net/minecraft/world/entity/vehicle/MinecartSpawner/createTicker (Lnet/minecraft/world/level/Level;)Ljava/lang/Runnable; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_150340_ ()Lnet/minecraft/world/level/BaseSpawner; net/minecraft/world/entity/vehicle/MinecartSpawner/getSpawner ()Lnet/minecraft/world/level/BaseSpawner; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartSpawner/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_289171_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartSpawner/lambda$createTicker$0 (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_289172_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartSpawner/lambda$createTicker$1 (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartSpawner/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_6127_ ()Z net/minecraft/world/entity/vehicle/MinecartSpawner/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartSpawner/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartSpawner/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartSpawner/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_7822_ (B)V net/minecraft/world/entity/vehicle/MinecartSpawner/handleEntityEvent (B)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartSpawner/tick ()V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner$1/ (Lnet/minecraft/world/entity/vehicle/MinecartSpawner;)V net/minecraft/world/entity/vehicle/MinecartSpawner$1/ (Lnet/minecraft/world/entity/vehicle/MinecartSpawner;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner$1/m_142523_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/vehicle/MinecartSpawner$1/broadcastEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/vehicle/MinecartTNT/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartTNT/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_257440_ (Lnet/minecraft/world/damagesource/DamageSource;D)V net/minecraft/world/entity/vehicle/MinecartTNT/explode (Lnet/minecraft/world/damagesource/DamageSource;D)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38688_ (D)V net/minecraft/world/entity/vehicle/MinecartTNT/explode (D)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38693_ ()V net/minecraft/world/entity/vehicle/MinecartTNT/primeFuse ()V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38694_ ()I net/minecraft/world/entity/vehicle/MinecartTNT/getFuse ()I +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38695_ ()Z net/minecraft/world/entity/vehicle/MinecartTNT/isPrimed ()Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/MinecartTNT/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartTNT/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartTNT/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/vehicle/MinecartTNT/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7077_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F net/minecraft/world/entity/vehicle/MinecartTNT/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7349_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/entity/vehicle/MinecartTNT/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartTNT/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartTNT/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7617_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/MinecartTNT/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7822_ (B)V net/minecraft/world/entity/vehicle/MinecartTNT/handleEntityEvent (B)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartTNT/tick ()V +MD: net/minecraft/world/flag/FeatureElement/ ()V net/minecraft/world/flag/FeatureElement/ ()V +MD: net/minecraft/world/flag/FeatureElement/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureElement/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureElement/m_245993_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureElement/isEnabled (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlag/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;I)V net/minecraft/world/flag/FeatureFlag/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;I)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/ ()V net/minecraft/world/flag/FeatureFlagRegistry/ ()V +MD: net/minecraft/world/flag/FeatureFlagRegistry/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V net/minecraft/world/flag/FeatureFlagRegistry/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245213_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/flag/FeatureFlagRegistry/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245474_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/flag/FeatureFlagRegistry/lambda$fromNames$0 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245711_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/List; net/minecraft/world/flag/FeatureFlagRegistry/lambda$codec$4 (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/List; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245769_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/subset ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245829_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/Set; net/minecraft/world/flag/FeatureFlagRegistry/toNames (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/Set; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245840_ (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/flag/FeatureFlag;)V net/minecraft/world/flag/FeatureFlagRegistry/lambda$toNames$1 (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/flag/FeatureFlag;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_246363_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureFlagRegistry/isSubset (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_247021_ (Ljava/lang/Iterable;Ljava/util/function/Consumer;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/fromNames (Ljava/lang/Iterable;Ljava/util/function/Consumer;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_247355_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/allFlags ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_247416_ (Ljava/lang/Iterable;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/fromNames (Ljava/lang/Iterable;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_274256_ (Ljava/util/Set;)Ljava/lang/String; net/minecraft/world/flag/FeatureFlagRegistry/lambda$codec$2 (Ljava/util/Set;)Ljava/lang/String; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_274257_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/world/flag/FeatureFlagRegistry/lambda$codec$3 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/ (Ljava/lang/String;)V net/minecraft/world/flag/FeatureFlagRegistry$Builder/ (Ljava/lang/String;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/m_245707_ ()Lnet/minecraft/world/flag/FeatureFlagRegistry; net/minecraft/world/flag/FeatureFlagRegistry$Builder/build ()Lnet/minecraft/world/flag/FeatureFlagRegistry; +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/m_246015_ (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlag; net/minecraft/world/flag/FeatureFlagRegistry$Builder/createVanilla (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlag; +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/m_247497_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/flag/FeatureFlag; net/minecraft/world/flag/FeatureFlagRegistry$Builder/create (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/flag/FeatureFlag; +MD: net/minecraft/world/flag/FeatureFlagSet/ ()V net/minecraft/world/flag/FeatureFlagSet/ ()V +MD: net/minecraft/world/flag/FeatureFlagSet/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;J)V net/minecraft/world/flag/FeatureFlagSet/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;J)V +MD: net/minecraft/world/flag/FeatureFlagSet/equals (Ljava/lang/Object;)Z net/minecraft/world/flag/FeatureFlagSet/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/flag/FeatureFlagSet/hashCode ()I net/minecraft/world/flag/FeatureFlagSet/hashCode ()I +MD: net/minecraft/world/flag/FeatureFlagSet/m_245120_ (Lnet/minecraft/world/flag/FeatureFlagUniverse;JLjava/lang/Iterable;)J net/minecraft/world/flag/FeatureFlagSet/computeMask (Lnet/minecraft/world/flag/FeatureFlagUniverse;JLjava/lang/Iterable;)J +MD: net/minecraft/world/flag/FeatureFlagSet/m_245372_ (Lnet/minecraft/world/flag/FeatureFlag;)Z net/minecraft/world/flag/FeatureFlagSet/contains (Lnet/minecraft/world/flag/FeatureFlag;)Z +MD: net/minecraft/world/flag/FeatureFlagSet/m_245702_ (Lnet/minecraft/world/flag/FeatureFlag;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/of (Lnet/minecraft/world/flag/FeatureFlag;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_246699_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/join (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_246902_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/of ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_247091_ (Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/of (Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_247438_ (Lnet/minecraft/world/flag/FeatureFlagUniverse;Ljava/util/Collection;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/create (Lnet/minecraft/world/flag/FeatureFlagUniverse;Ljava/util/Collection;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_247715_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureFlagSet/isSubsetOf (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlagUniverse/ (Ljava/lang/String;)V net/minecraft/world/flag/FeatureFlagUniverse/ (Ljava/lang/String;)V +MD: net/minecraft/world/flag/FeatureFlagUniverse/toString ()Ljava/lang/String; net/minecraft/world/flag/FeatureFlagUniverse/toString ()Ljava/lang/String; +MD: net/minecraft/world/flag/FeatureFlags/ ()V net/minecraft/world/flag/FeatureFlags/ ()V +MD: net/minecraft/world/flag/FeatureFlags/ ()V net/minecraft/world/flag/FeatureFlags/ ()V +MD: net/minecraft/world/flag/FeatureFlags/m_245229_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; net/minecraft/world/flag/FeatureFlags/printMissingFlags (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; +MD: net/minecraft/world/flag/FeatureFlags/m_246811_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureFlags/isExperimental (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlags/m_247097_ (Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/flag/FeatureFlags/lambda$printMissingFlags$0 (Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/flag/FeatureFlags/m_247250_ (Lnet/minecraft/world/flag/FeatureFlagRegistry;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; net/minecraft/world/flag/FeatureFlags/printMissingFlags (Lnet/minecraft/world/flag/FeatureFlagRegistry;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; +MD: net/minecraft/world/food/FoodConstants/ ()V net/minecraft/world/food/FoodConstants/ ()V +MD: net/minecraft/world/food/FoodData/ ()V net/minecraft/world/food/FoodData/ ()V +MD: net/minecraft/world/food/FoodData/m_150377_ ()I net/minecraft/world/food/FoodData/getLastFoodLevel ()I +MD: net/minecraft/world/food/FoodData/m_150378_ (F)V net/minecraft/world/food/FoodData/setExhaustion (F)V +MD: net/minecraft/world/food/FoodData/m_150380_ ()F net/minecraft/world/food/FoodData/getExhaustionLevel ()F +MD: net/minecraft/world/food/FoodData/m_38702_ ()I net/minecraft/world/food/FoodData/getFoodLevel ()I +MD: net/minecraft/world/food/FoodData/m_38703_ (F)V net/minecraft/world/food/FoodData/addExhaustion (F)V +MD: net/minecraft/world/food/FoodData/m_38705_ (I)V net/minecraft/world/food/FoodData/setFoodLevel (I)V +MD: net/minecraft/world/food/FoodData/m_38707_ (IF)V net/minecraft/world/food/FoodData/eat (IF)V +MD: net/minecraft/world/food/FoodData/m_38710_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/food/FoodData/tick (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/food/FoodData/m_38712_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/food/FoodData/eat (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/food/FoodData/m_38715_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/food/FoodData/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/food/FoodData/m_38717_ (F)V net/minecraft/world/food/FoodData/setSaturation (F)V +MD: net/minecraft/world/food/FoodData/m_38719_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/food/FoodData/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/food/FoodData/m_38721_ ()Z net/minecraft/world/food/FoodData/needsFood ()Z +MD: net/minecraft/world/food/FoodData/m_38722_ ()F net/minecraft/world/food/FoodData/getSaturationLevel ()F +MD: net/minecraft/world/food/FoodProperties/ (IFZZZLjava/util/List;)V net/minecraft/world/food/FoodProperties/ (IFZZZLjava/util/List;)V +MD: net/minecraft/world/food/FoodProperties/m_38744_ ()I net/minecraft/world/food/FoodProperties/getNutrition ()I +MD: net/minecraft/world/food/FoodProperties/m_38745_ ()F net/minecraft/world/food/FoodProperties/getSaturationModifier ()F +MD: net/minecraft/world/food/FoodProperties/m_38746_ ()Z net/minecraft/world/food/FoodProperties/isMeat ()Z +MD: net/minecraft/world/food/FoodProperties/m_38747_ ()Z net/minecraft/world/food/FoodProperties/canAlwaysEat ()Z +MD: net/minecraft/world/food/FoodProperties/m_38748_ ()Z net/minecraft/world/food/FoodProperties/isFastFood ()Z +MD: net/minecraft/world/food/FoodProperties/m_38749_ ()Ljava/util/List; net/minecraft/world/food/FoodProperties/getEffects ()Ljava/util/List; +MD: net/minecraft/world/food/FoodProperties$Builder/ ()V net/minecraft/world/food/FoodProperties$Builder/ ()V +MD: net/minecraft/world/food/FoodProperties$Builder/m_38757_ ()Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/meat ()Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38758_ (F)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/saturationMod (F)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38760_ (I)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/nutrition (I)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38762_ (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/effect (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38765_ ()Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/alwaysEat ()Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38766_ ()Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/fast ()Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38767_ ()Lnet/minecraft/world/food/FoodProperties; net/minecraft/world/food/FoodProperties$Builder/build ()Lnet/minecraft/world/food/FoodProperties; +MD: net/minecraft/world/food/Foods/ ()V net/minecraft/world/food/Foods/ ()V +MD: net/minecraft/world/food/Foods/ ()V net/minecraft/world/food/Foods/ ()V +MD: net/minecraft/world/food/Foods/m_150383_ (I)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/Foods/stew (I)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/inventory/AbstractContainerMenu/ ()V net/minecraft/world/inventory/AbstractContainerMenu/ ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V net/minecraft/world/inventory/AbstractContainerMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_142503_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setCarried (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_142621_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractContainerMenu/getCarried ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150399_ (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/AbstractContainerMenu/clicked (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150404_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setRemoteSlot (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150407_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V net/minecraft/world/inventory/AbstractContainerMenu/triggerSlotListeners (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150411_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/AbstractContainerMenu/clearContainer (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150414_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V net/minecraft/world/inventory/AbstractContainerMenu/transferState (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150416_ (Lnet/minecraft/world/inventory/ContainerSynchronizer;)V net/minecraft/world/inventory/AbstractContainerMenu/setSynchronizer (Lnet/minecraft/world/inventory/ContainerSynchronizer;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150418_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/lambda$doClick$3 (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150422_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setRemoteCarried (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150424_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/lambda$doClick$4 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150429_ ()V net/minecraft/world/inventory/AbstractContainerMenu/sendAllDataToRemote ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150430_ (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/AbstractContainerMenu/doClick (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150435_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V net/minecraft/world/inventory/AbstractContainerMenu/synchronizeSlotToRemote (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150440_ (II)V net/minecraft/world/inventory/AbstractContainerMenu/synchronizeDataSlotToRemote (II)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150443_ ()V net/minecraft/world/inventory/AbstractContainerMenu/suppressRemoteUpdates ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150444_ ()V net/minecraft/world/inventory/AbstractContainerMenu/resumeRemoteUpdates ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150445_ ()V net/minecraft/world/inventory/AbstractContainerMenu/synchronizeCarriedToRemote ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150446_ ()Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/inventory/AbstractContainerMenu/createCarriedSlotAccess ()Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182406_ (IILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setItem (IILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182410_ (ILjava/util/List;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/initializeContents (ILjava/util/List;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182414_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setRemoteSlotNoCopy (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182417_ (Lnet/minecraft/world/Container;I)Ljava/util/OptionalInt; net/minecraft/world/inventory/AbstractContainerMenu/findSlot (Lnet/minecraft/world/Container;I)Ljava/util/OptionalInt; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182420_ (II)V net/minecraft/world/inventory/AbstractContainerMenu/updateDataSlotListeners (II)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182423_ ()V net/minecraft/world/inventory/AbstractContainerMenu/broadcastFullState ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182424_ ()I net/minecraft/world/inventory/AbstractContainerMenu/getStateId ()I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182425_ ()I net/minecraft/world/inventory/AbstractContainerMenu/incrementStateId ()I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_207775_ (I)Z net/minecraft/world/inventory/AbstractContainerMenu/isValidSlotIndex (I)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_246200_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractContainerMenu/tryItemClickBehaviourOverride (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_257320_ ()Ljava/lang/String; net/minecraft/world/inventory/AbstractContainerMenu/lambda$clicked$1 ()Ljava/lang/String; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_278794_ (Ljava/util/Set;ILnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickCraftPlaceCount (Ljava/util/Set;ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38853_ (I)Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/AbstractContainerMenu/getSlot (I)Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38862_ (ILnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/AbstractContainerMenu/isValidQuickcraftType (ILnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38869_ (Lnet/minecraft/world/Container;I)V net/minecraft/world/inventory/AbstractContainerMenu/checkContainerSize (Lnet/minecraft/world/Container;I)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38884_ (Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/AbstractContainerMenu/addDataSlots (Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38886_ (Lnet/minecraft/world/inventory/ContainerData;I)V net/minecraft/world/inventory/AbstractContainerMenu/checkContainerDataCount (Lnet/minecraft/world/inventory/ContainerData;I)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38889_ (Lnet/minecraft/world/inventory/ContainerLevelAccess;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/world/inventory/AbstractContainerMenu/stillValid (Lnet/minecraft/world/inventory/ContainerLevelAccess;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38893_ (Lnet/minecraft/world/inventory/ContainerListener;)V net/minecraft/world/inventory/AbstractContainerMenu/addSlotListener (Lnet/minecraft/world/inventory/ContainerListener;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38895_ (Lnet/minecraft/world/inventory/DataSlot;)Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/AbstractContainerMenu/addDataSlot (Lnet/minecraft/world/inventory/DataSlot;)Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38897_ (Lnet/minecraft/world/inventory/Slot;)Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/AbstractContainerMenu/addSlot (Lnet/minecraft/world/inventory/Slot;)Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38899_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Z)Z net/minecraft/world/inventory/AbstractContainerMenu/canItemQuickReplace (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Z)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38903_ (Lnet/minecraft/world/item/ItemStack;IIZ)Z net/minecraft/world/inventory/AbstractContainerMenu/moveItemStackTo (Lnet/minecraft/world/item/ItemStack;IIZ)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38913_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; net/minecraft/world/inventory/AbstractContainerMenu/lambda$stillValid$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38918_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)I net/minecraft/world/inventory/AbstractContainerMenu/getRedstoneSignalFromBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38927_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/inventory/AbstractContainerMenu/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38928_ (I)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickcraftType (I)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38930_ (II)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickcraftMask (II)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38938_ (Lnet/minecraft/world/Container;)I net/minecraft/world/inventory/AbstractContainerMenu/getRedstoneSignalFromContainer (Lnet/minecraft/world/Container;)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38943_ (Lnet/minecraft/world/inventory/ContainerListener;)V net/minecraft/world/inventory/AbstractContainerMenu/removeSlotListener (Lnet/minecraft/world/inventory/ContainerListener;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38946_ ()V net/minecraft/world/inventory/AbstractContainerMenu/broadcastChanges ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38947_ (I)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickcraftHeader (I)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38951_ ()V net/minecraft/world/inventory/AbstractContainerMenu/resetQuickCraft ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38952_ ()Ljava/lang/String; net/minecraft/world/inventory/AbstractContainerMenu/lambda$clicked$2 ()Ljava/lang/String; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_5622_ (Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/AbstractContainerMenu/canDragTo (Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/AbstractContainerMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/AbstractContainerMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/AbstractContainerMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6772_ ()Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/AbstractContainerMenu/getType ()Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/AbstractContainerMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/AbstractContainerMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_7511_ (II)V net/minecraft/world/inventory/AbstractContainerMenu/setData (II)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractContainerMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AbstractContainerMenu$1/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V net/minecraft/world/inventory/AbstractContainerMenu$1/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractContainerMenu$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractContainerMenu$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_142157_ (I)Z net/minecraft/world/inventory/AbstractFurnaceMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38977_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/canSmelt (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38988_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/isFuel (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38995_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getBurnProgress ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38996_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getLitProgress ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38997_ ()Z net/minecraft/world/inventory/AbstractFurnaceMenu/isLit ()Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/AbstractFurnaceMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/AbstractFurnaceMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6635_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6636_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6650_ ()V net/minecraft/world/inventory/AbstractFurnaceMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6653_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getSize ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6656_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractFurnaceMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AnvilMenu/ ()V net/minecraft/world/inventory/AnvilMenu/ ()V +MD: net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/AnvilMenu/m_142365_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AnvilMenu/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AnvilMenu/m_150476_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/AnvilMenu/lambda$onTake$2 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/AnvilMenu/m_266136_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AnvilMenu/lambda$createInputSlotDefinitions$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_266137_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AnvilMenu/lambda$createInputSlotDefinitions$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_266183_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/AnvilMenu/createInputSlotDefinitions ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/AnvilMenu/m_288226_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/inventory/AnvilMenu/validateName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/inventory/AnvilMenu/m_39020_ (Ljava/lang/String;)Z net/minecraft/world/inventory/AnvilMenu/setItemName (Ljava/lang/String;)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_39025_ (I)I net/minecraft/world/inventory/AnvilMenu/calculateIncreasedRepairCost (I)I +MD: net/minecraft/world/inventory/AnvilMenu/m_39028_ ()I net/minecraft/world/inventory/AnvilMenu/getCost ()I +MD: net/minecraft/world/inventory/AnvilMenu/m_6560_ (Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/inventory/AnvilMenu/mayPickup (Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_6640_ ()V net/minecraft/world/inventory/AnvilMenu/createResult ()V +MD: net/minecraft/world/inventory/AnvilMenu/m_8039_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/inventory/AnvilMenu/isValidBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/inventory/AnvilMenu$1/ ()V net/minecraft/world/inventory/AnvilMenu$1/ ()V +MD: net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;)V net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/BeaconMenu/m_219972_ (Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/world/inventory/BeaconMenu/updateEffects (Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/world/inventory/BeaconMenu/m_39056_ ()I net/minecraft/world/inventory/BeaconMenu/getLevels ()I +MD: net/minecraft/world/inventory/BeaconMenu/m_39057_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/inventory/BeaconMenu/getPrimaryEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/inventory/BeaconMenu/m_39058_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/inventory/BeaconMenu/getSecondaryEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/inventory/BeaconMenu/m_39059_ ()Z net/minecraft/world/inventory/BeaconMenu/hasPayment ()Z +MD: net/minecraft/world/inventory/BeaconMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/BeaconMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/BeaconMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/BeaconMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/BeaconMenu/m_7511_ (II)V net/minecraft/world/inventory/BeaconMenu/setData (II)V +MD: net/minecraft/world/inventory/BeaconMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/BeaconMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/BeaconMenu$1/ (Lnet/minecraft/world/inventory/BeaconMenu;I)V net/minecraft/world/inventory/BeaconMenu$1/ (Lnet/minecraft/world/inventory/BeaconMenu;I)V +MD: net/minecraft/world/inventory/BeaconMenu$1/m_6893_ ()I net/minecraft/world/inventory/BeaconMenu$1/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BeaconMenu$1/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BeaconMenu$1/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BeaconMenu$PaymentSlot/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BeaconMenu$PaymentSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/m_6641_ ()I net/minecraft/world/inventory/BeaconMenu$PaymentSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/BrewingStandMenu/m_39102_ ()I net/minecraft/world/inventory/BrewingStandMenu/getFuel ()I +MD: net/minecraft/world/inventory/BrewingStandMenu/m_39103_ ()I net/minecraft/world/inventory/BrewingStandMenu/getBrewingTicks ()I +MD: net/minecraft/world/inventory/BrewingStandMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/BrewingStandMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/BrewingStandMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/m_39112_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/mayPlaceItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/m_6641_ ()I net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/m_6641_ ()I net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_39133_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/mayPlaceItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_6641_ ()I net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_278586_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CartographyTableMenu/lambda$setupResultSlot$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_39150_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CartographyTableMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_39162_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/CartographyTableMenu/setupResultSlot (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/CartographyTableMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/CartographyTableMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/CartographyTableMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/CartographyTableMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/CartographyTableMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/CartographyTableMenu$1/ (Lnet/minecraft/world/inventory/CartographyTableMenu;I)V net/minecraft/world/inventory/CartographyTableMenu$1/ (Lnet/minecraft/world/inventory/CartographyTableMenu;I)V +MD: net/minecraft/world/inventory/CartographyTableMenu$1/m_6596_ ()V net/minecraft/world/inventory/CartographyTableMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/CartographyTableMenu$2/ (Lnet/minecraft/world/inventory/CartographyTableMenu;)V net/minecraft/world/inventory/CartographyTableMenu$2/ (Lnet/minecraft/world/inventory/CartographyTableMenu;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$2/m_6596_ ()V net/minecraft/world/inventory/CartographyTableMenu$2/setChanged ()V +MD: net/minecraft/world/inventory/CartographyTableMenu$3/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/CartographyTableMenu$3/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/CartographyTableMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/CartographyTableMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu$4/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/CartographyTableMenu$4/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/CartographyTableMenu$4/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/CartographyTableMenu$4/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu$5/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/CartographyTableMenu$5/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$5/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/CartographyTableMenu$5/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$5/m_39218_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CartographyTableMenu$5/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$5/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/CartographyTableMenu$5/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;I)V net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;I)V +MD: net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;I)V net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;I)V +MD: net/minecraft/world/inventory/ChestMenu/m_39234_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/oneRow (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39237_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/threeRows (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39243_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/twoRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39246_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/sixRows (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39255_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/threeRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39258_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/fourRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39261_ ()Lnet/minecraft/world/Container; net/minecraft/world/inventory/ChestMenu/getContainer ()Lnet/minecraft/world/Container; +MD: net/minecraft/world/inventory/ChestMenu/m_39262_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/fiveRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39265_ ()I net/minecraft/world/inventory/ChestMenu/getRowCount ()I +MD: net/minecraft/world/inventory/ChestMenu/m_39266_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/sixRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ChestMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ChestMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/ChestMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/ChestMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ChestMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ClickAction/ ()V net/minecraft/world/inventory/ClickAction/ ()V +MD: net/minecraft/world/inventory/ClickAction/ (Ljava/lang/String;I)V net/minecraft/world/inventory/ClickAction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/inventory/ClickAction/m_150519_ ()[Lnet/minecraft/world/inventory/ClickAction; net/minecraft/world/inventory/ClickAction/$values ()[Lnet/minecraft/world/inventory/ClickAction; +MD: net/minecraft/world/inventory/ClickAction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickAction; net/minecraft/world/inventory/ClickAction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickAction; +MD: net/minecraft/world/inventory/ClickAction/values ()[Lnet/minecraft/world/inventory/ClickAction; net/minecraft/world/inventory/ClickAction/values ()[Lnet/minecraft/world/inventory/ClickAction; +MD: net/minecraft/world/inventory/ClickType/ ()V net/minecraft/world/inventory/ClickType/ ()V +MD: net/minecraft/world/inventory/ClickType/ (Ljava/lang/String;I)V net/minecraft/world/inventory/ClickType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/inventory/ClickType/m_150523_ ()[Lnet/minecraft/world/inventory/ClickType; net/minecraft/world/inventory/ClickType/$values ()[Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/world/inventory/ClickType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickType; net/minecraft/world/inventory/ClickType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/world/inventory/ClickType/values ()[Lnet/minecraft/world/inventory/ClickType; net/minecraft/world/inventory/ClickType/values ()[Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/world/inventory/ContainerData/m_6413_ (I)I net/minecraft/world/inventory/ContainerData/get (I)I +MD: net/minecraft/world/inventory/ContainerData/m_6499_ ()I net/minecraft/world/inventory/ContainerData/getCount ()I +MD: net/minecraft/world/inventory/ContainerData/m_8050_ (II)V net/minecraft/world/inventory/ContainerData/set (II)V +MD: net/minecraft/world/inventory/ContainerLevelAccess/ ()V net/minecraft/world/inventory/ContainerLevelAccess/ ()V +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/inventory/ContainerLevelAccess; net/minecraft/world/inventory/ContainerLevelAccess/create (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/inventory/ContainerLevelAccess; +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39292_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/inventory/ContainerLevelAccess/execute (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39294_ (Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess/lambda$execute$0 (Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39299_ (Ljava/util/function/BiFunction;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/inventory/ContainerLevelAccess/evaluate (Ljava/util/function/BiFunction;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_6721_ (Ljava/util/function/BiFunction;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess/evaluate (Ljava/util/function/BiFunction;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerLevelAccess$1/ ()V net/minecraft/world/inventory/ContainerLevelAccess$1/ ()V +MD: net/minecraft/world/inventory/ContainerLevelAccess$1/m_6721_ (Ljava/util/function/BiFunction;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess$1/evaluate (Ljava/util/function/BiFunction;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerLevelAccess$2/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/ContainerLevelAccess$2/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/ContainerLevelAccess$2/m_6721_ (Ljava/util/function/BiFunction;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess$2/evaluate (Ljava/util/function/BiFunction;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerListener/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/world/inventory/ContainerListener/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/world/inventory/ContainerListener/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ContainerListener/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142074_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ContainerSynchronizer/sendSlotChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142145_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/world/inventory/ContainerSynchronizer/sendDataChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142529_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ContainerSynchronizer/sendCarriedChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142589_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V net/minecraft/world/inventory/ContainerSynchronizer/sendInitialData (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V +MD: net/minecraft/world/inventory/CraftingContainer/m_280657_ ()Ljava/util/List; net/minecraft/world/inventory/CraftingContainer/getItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/CraftingContainer/m_39346_ ()I net/minecraft/world/inventory/CraftingContainer/getHeight ()I +MD: net/minecraft/world/inventory/CraftingContainer/m_39347_ ()I net/minecraft/world/inventory/CraftingContainer/getWidth ()I +MD: net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_142157_ (I)Z net/minecraft/world/inventory/CraftingMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_150546_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/inventory/ResultContainer;)V net/minecraft/world/inventory/CraftingMenu/slotChangedCraftingGrid (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/inventory/ResultContainer;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_39369_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CraftingMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_39375_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CraftingMenu/lambda$quickMoveStack$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_39385_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CraftingMenu/lambda$slotsChanged$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/CraftingMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/CraftingMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/CraftingMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/CraftingMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/CraftingMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/CraftingMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_6635_ ()I net/minecraft/world/inventory/CraftingMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6636_ ()I net/minecraft/world/inventory/CraftingMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6650_ ()V net/minecraft/world/inventory/CraftingMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/CraftingMenu/m_6653_ ()I net/minecraft/world/inventory/CraftingMenu/getSize ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6656_ ()I net/minecraft/world/inventory/CraftingMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/CraftingMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/CraftingMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/CraftingMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/DataSlot/ ()V net/minecraft/world/inventory/DataSlot/ ()V +MD: net/minecraft/world/inventory/DataSlot/m_39401_ ()Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/DataSlot/standalone ()Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/DataSlot/m_39403_ (Lnet/minecraft/world/inventory/ContainerData;I)Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/DataSlot/forContainer (Lnet/minecraft/world/inventory/ContainerData;I)Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/DataSlot/m_39406_ ([II)Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/DataSlot/shared ([II)Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/DataSlot/m_39409_ ()Z net/minecraft/world/inventory/DataSlot/checkAndClearUpdateFlag ()Z +MD: net/minecraft/world/inventory/DataSlot/m_6422_ (I)V net/minecraft/world/inventory/DataSlot/set (I)V +MD: net/minecraft/world/inventory/DataSlot/m_6501_ ()I net/minecraft/world/inventory/DataSlot/get ()I +MD: net/minecraft/world/inventory/DataSlot$1/ (Lnet/minecraft/world/inventory/ContainerData;I)V net/minecraft/world/inventory/DataSlot$1/ (Lnet/minecraft/world/inventory/ContainerData;I)V +MD: net/minecraft/world/inventory/DataSlot$1/m_6422_ (I)V net/minecraft/world/inventory/DataSlot$1/set (I)V +MD: net/minecraft/world/inventory/DataSlot$1/m_6501_ ()I net/minecraft/world/inventory/DataSlot$1/get ()I +MD: net/minecraft/world/inventory/DataSlot$2/ ([II)V net/minecraft/world/inventory/DataSlot$2/ ([II)V +MD: net/minecraft/world/inventory/DataSlot$2/m_6422_ (I)V net/minecraft/world/inventory/DataSlot$2/set (I)V +MD: net/minecraft/world/inventory/DataSlot$2/m_6501_ ()I net/minecraft/world/inventory/DataSlot$2/get ()I +MD: net/minecraft/world/inventory/DataSlot$3/ ()V net/minecraft/world/inventory/DataSlot$3/ ()V +MD: net/minecraft/world/inventory/DataSlot$3/m_6422_ (I)V net/minecraft/world/inventory/DataSlot$3/set (I)V +MD: net/minecraft/world/inventory/DataSlot$3/m_6501_ ()I net/minecraft/world/inventory/DataSlot$3/get ()I +MD: net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/DispenserMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/DispenserMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/DispenserMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/DispenserMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/DispenserMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/DispenserMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39467_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/EnchantmentMenu/lambda$removed$2 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39471_ (Lnet/minecraft/world/item/ItemStack;II)Ljava/util/List; net/minecraft/world/inventory/EnchantmentMenu/getEnchantmentList (Lnet/minecraft/world/item/ItemStack;II)Ljava/util/List; +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39475_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/world/entity/player/Player;ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/EnchantmentMenu/lambda$clickMenuButton$1 (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/world/entity/player/Player;ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39483_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/EnchantmentMenu/lambda$slotsChanged$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39492_ ()I net/minecraft/world/inventory/EnchantmentMenu/getGoldCount ()I +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39493_ ()I net/minecraft/world/inventory/EnchantmentMenu/getEnchantmentSeed ()I +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/EnchantmentMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/EnchantmentMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/EnchantmentMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/EnchantmentMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/EnchantmentMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/EnchantmentMenu$1/ (Lnet/minecraft/world/inventory/EnchantmentMenu;I)V net/minecraft/world/inventory/EnchantmentMenu$1/ (Lnet/minecraft/world/inventory/EnchantmentMenu;I)V +MD: net/minecraft/world/inventory/EnchantmentMenu$1/m_6596_ ()V net/minecraft/world/inventory/EnchantmentMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/EnchantmentMenu$2/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/EnchantmentMenu$2/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/EnchantmentMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/EnchantmentMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/EnchantmentMenu$2/m_6641_ ()I net/minecraft/world/inventory/EnchantmentMenu$2/getMaxStackSize ()I +MD: net/minecraft/world/inventory/EnchantmentMenu$3/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/EnchantmentMenu$3/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/EnchantmentMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/EnchantmentMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceFuelSlot/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/FurnaceFuelSlot/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/FurnaceFuelSlot/m_39529_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/FurnaceFuelSlot/isBucket (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceFuelSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/FurnaceFuelSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceFuelSlot/m_5866_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/FurnaceFuelSlot/getMaxStackSize (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/FurnaceResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/FurnaceResultSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/FurnaceResultSlot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/FurnaceResultSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/FurnaceResultSlot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/FurnaceResultSlot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39573_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/GrindstoneMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39579_ (Lnet/minecraft/world/item/ItemStack;II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/GrindstoneMenu/removeNonCurses (Lnet/minecraft/world/item/ItemStack;II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39583_ (Ljava/util/Map$Entry;)Z net/minecraft/world/inventory/GrindstoneMenu/lambda$removeNonCurses$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39590_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/GrindstoneMenu/mergeEnchants (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39593_ ()V net/minecraft/world/inventory/GrindstoneMenu/createResult ()V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/GrindstoneMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/GrindstoneMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/GrindstoneMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/GrindstoneMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/GrindstoneMenu$1/ (Lnet/minecraft/world/inventory/GrindstoneMenu;I)V net/minecraft/world/inventory/GrindstoneMenu$1/ (Lnet/minecraft/world/inventory/GrindstoneMenu;I)V +MD: net/minecraft/world/inventory/GrindstoneMenu$1/m_6596_ ()V net/minecraft/world/inventory/GrindstoneMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/GrindstoneMenu$2/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/GrindstoneMenu$2/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/GrindstoneMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/GrindstoneMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu$3/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/GrindstoneMenu$3/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/GrindstoneMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/GrindstoneMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu$4/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/GrindstoneMenu$4/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/GrindstoneMenu$4/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_39631_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/inventory/GrindstoneMenu$4/getExperienceAmount (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_39633_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/GrindstoneMenu$4/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_39636_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/GrindstoneMenu$4/getExperienceFromItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/GrindstoneMenu$4/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/HopperMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/HopperMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/HopperMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/HopperMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/HopperMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/HopperMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/HorseInventoryMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/inventory/HorseInventoryMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_150577_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z net/minecraft/world/inventory/HorseInventoryMenu/hasChest (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/HorseInventoryMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/HorseInventoryMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/HorseInventoryMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/HorseInventoryMenu$1/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/inventory/HorseInventoryMenu$1/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu$1/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/HorseInventoryMenu$1/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu$1/m_6659_ ()Z net/minecraft/world/inventory/HorseInventoryMenu$1/isActive ()Z +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/inventory/HorseInventoryMenu$2/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/HorseInventoryMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/m_6641_ ()I net/minecraft/world/inventory/HorseInventoryMenu$2/getMaxStackSize ()I +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/m_6659_ ()Z net/minecraft/world/inventory/HorseInventoryMenu$2/isActive ()Z +MD: net/minecraft/world/inventory/InventoryMenu/ ()V net/minecraft/world/inventory/InventoryMenu/ ()V +MD: net/minecraft/world/inventory/InventoryMenu/ (Lnet/minecraft/world/entity/player/Inventory;ZLnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/InventoryMenu/ (Lnet/minecraft/world/entity/player/Inventory;ZLnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_142157_ (I)Z net/minecraft/world/inventory/InventoryMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_150592_ (I)Z net/minecraft/world/inventory/InventoryMenu/isHotbarSlot (I)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_269535_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/InventoryMenu/onEquipItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_39730_ ()Lnet/minecraft/world/inventory/CraftingContainer; net/minecraft/world/inventory/InventoryMenu/getCraftSlots ()Lnet/minecraft/world/inventory/CraftingContainer; +MD: net/minecraft/world/inventory/InventoryMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/InventoryMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/InventoryMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/InventoryMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/InventoryMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/InventoryMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/InventoryMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_6635_ ()I net/minecraft/world/inventory/InventoryMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6636_ ()I net/minecraft/world/inventory/InventoryMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6650_ ()V net/minecraft/world/inventory/InventoryMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/InventoryMenu/m_6653_ ()I net/minecraft/world/inventory/InventoryMenu/getSize ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6656_ ()I net/minecraft/world/inventory/InventoryMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/InventoryMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/InventoryMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/InventoryMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/InventoryMenu$1/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/inventory/InventoryMenu$1/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/inventory/InventoryMenu$1/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/InventoryMenu$1/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/InventoryMenu$1/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/InventoryMenu$1/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/InventoryMenu$1/m_6641_ ()I net/minecraft/world/inventory/InventoryMenu$1/getMaxStackSize ()I +MD: net/minecraft/world/inventory/InventoryMenu$1/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/inventory/InventoryMenu$1/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/inventory/InventoryMenu$1/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/InventoryMenu$1/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/InventoryMenu$2/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/InventoryMenu$2/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/InventoryMenu$2/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/InventoryMenu$2/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/InventoryMenu$2/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/inventory/InventoryMenu$2/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/inventory/ItemCombinerMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/ItemCombinerMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_142365_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ItemCombinerMenu/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/ItemCombinerMenu/getSlotToQuickMoveTo (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266183_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/ItemCombinerMenu/createInputSlotDefinitions ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266190_ (I)Lnet/minecraft/world/SimpleContainer; net/minecraft/world/inventory/ItemCombinerMenu/createContainer (I)Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266235_ (Lnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/ItemCombinerMenu/createInventorySlots (Lnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266254_ (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenu/createInputSlots (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266318_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getInventorySlotStart ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266360_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getUseRowEnd ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266402_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getInventorySlotEnd ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266416_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getUseRowStart ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266430_ (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenu/createResultSlot (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266562_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getResultSlot ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_39783_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; net/minecraft/world/inventory/ItemCombinerMenu/lambda$stillValid$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_39794_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/ItemCombinerMenu/lambda$removed$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_5861_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenu/canMoveIntoInputSlots (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/ItemCombinerMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6560_ (Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/inventory/ItemCombinerMenu/mayPickup (Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6640_ ()V net/minecraft/world/inventory/ItemCombinerMenu/createResult ()V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ItemCombinerMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/ItemCombinerMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ItemCombinerMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_8039_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/inventory/ItemCombinerMenu/isValidBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$1/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenu$1/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$1/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenu$1/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/ItemCombinerMenu$2/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ItemCombinerMenu$2/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ItemCombinerMenu$2/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$3/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;I)V net/minecraft/world/inventory/ItemCombinerMenu$3/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;I)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$3/m_6596_ ()V net/minecraft/world/inventory/ItemCombinerMenu$3/setChanged ()V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/ (Ljava/util/List;Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/ (Ljava/util/List;Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266229_ (I)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/hasSlot (I)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266233_ ()Ljava/util/List; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getSlots ()Ljava/util/List; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266303_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/create ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266322_ (I)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getSlot (I)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266349_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getResultSlot ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266388_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266517_ ()Ljava/util/List; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getInputSlotIndexes ()Ljava/util/List; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266578_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getNumOfInputSlots ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/ ()V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/ ()V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266197_ (IIILjava/util/function/Predicate;)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/withSlot (IIILjava/util/function/Predicate;)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266198_ (III)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/withResultSlot (III)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266441_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/build ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266472_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/lambda$withResultSlot$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ ()V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ ()V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ (IIILjava/util/function/Predicate;)V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ (IIILjava/util/function/Predicate;)V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/equals (Ljava/lang/Object;)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265897_ ()Ljava/util/function/Predicate; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/mayPlace ()Ljava/util/function/Predicate; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265926_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/y ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266065_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/x ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266086_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/slotIndex ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/hashCode ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/hashCode ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/m_266314_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/toString ()Ljava/lang/String; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/world/inventory/LecternMenu/ (I)V net/minecraft/world/inventory/LecternMenu/ (I)V +MD: net/minecraft/world/inventory/LecternMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/LecternMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/LecternMenu/m_39835_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/LecternMenu/getBook ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/LecternMenu/m_39836_ ()I net/minecraft/world/inventory/LecternMenu/getPage ()I +MD: net/minecraft/world/inventory/LecternMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/LecternMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/LecternMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/LecternMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/LecternMenu/m_7511_ (II)V net/minecraft/world/inventory/LecternMenu/setData (II)V +MD: net/minecraft/world/inventory/LecternMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/LecternMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/LecternMenu$1/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LecternMenu$1/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LecternMenu$1/m_6654_ ()V net/minecraft/world/inventory/LecternMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/LoomMenu/m_219991_ (Lnet/minecraft/core/Holder;)V net/minecraft/world/inventory/LoomMenu/setupResultSlot (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/inventory/LoomMenu/m_219993_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/inventory/LoomMenu/getSelectablePatterns (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/inventory/LoomMenu/m_219995_ ()Ljava/util/List; net/minecraft/world/inventory/LoomMenu/getSelectablePatterns ()Ljava/util/List; +MD: net/minecraft/world/inventory/LoomMenu/m_242642_ (I)Z net/minecraft/world/inventory/LoomMenu/isValidPatternIndex (I)Z +MD: net/minecraft/world/inventory/LoomMenu/m_39869_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/LoomMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/LoomMenu/m_39878_ (Ljava/lang/Runnable;)V net/minecraft/world/inventory/LoomMenu/registerUpdateListener (Ljava/lang/Runnable;)V +MD: net/minecraft/world/inventory/LoomMenu/m_39891_ ()I net/minecraft/world/inventory/LoomMenu/getSelectedBannerPatternIndex ()I +MD: net/minecraft/world/inventory/LoomMenu/m_39894_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getBannerSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39895_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getDyeSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39896_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getPatternSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39897_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getResultSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39899_ ()V net/minecraft/world/inventory/LoomMenu/lambda$new$0 ()V +MD: net/minecraft/world/inventory/LoomMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/LoomMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/LoomMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/LoomMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/LoomMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/LoomMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/LoomMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/LoomMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/LoomMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/LoomMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/LoomMenu$1/ (Lnet/minecraft/world/inventory/LoomMenu;I)V net/minecraft/world/inventory/LoomMenu$1/ (Lnet/minecraft/world/inventory/LoomMenu;I)V +MD: net/minecraft/world/inventory/LoomMenu$1/m_6596_ ()V net/minecraft/world/inventory/LoomMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/LoomMenu$2/ (Lnet/minecraft/world/inventory/LoomMenu;I)V net/minecraft/world/inventory/LoomMenu$2/ (Lnet/minecraft/world/inventory/LoomMenu;I)V +MD: net/minecraft/world/inventory/LoomMenu$2/m_6596_ ()V net/minecraft/world/inventory/LoomMenu$2/setChanged ()V +MD: net/minecraft/world/inventory/LoomMenu$3/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LoomMenu$3/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LoomMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/LoomMenu$4/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LoomMenu$4/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LoomMenu$4/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$4/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/LoomMenu$5/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LoomMenu$5/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LoomMenu$5/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$5/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/LoomMenu$6/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/LoomMenu$6/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/LoomMenu$6/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/LoomMenu$6/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/LoomMenu$6/m_39951_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/LoomMenu$6/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/LoomMenu$6/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$6/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/MenuConstructor/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/inventory/MenuConstructor/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/inventory/MenuType/ ()V net/minecraft/world/inventory/MenuType/ ()V +MD: net/minecraft/world/inventory/MenuType/ (Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/inventory/MenuType/ (Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/inventory/MenuType/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/inventory/MenuType/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/inventory/MenuType/m_266268_ (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/MenuType/register (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/MenuType/m_39985_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/inventory/MenuType/create (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/inventory/MenuType/m_39988_ (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;)Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/MenuType/register (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;)Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/MenuType/m_39991_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/LecternMenu; net/minecraft/world/inventory/MenuType/lambda$static$0 (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/LecternMenu; +MD: net/minecraft/world/inventory/MenuType$MenuSupplier/m_39994_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/inventory/MenuType$MenuSupplier/create (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/inventory/MerchantContainer/ (Lnet/minecraft/world/item/trading/Merchant;)V net/minecraft/world/inventory/MerchantContainer/ (Lnet/minecraft/world/item/trading/Merchant;)V +MD: net/minecraft/world/inventory/MerchantContainer/m_40020_ (I)V net/minecraft/world/inventory/MerchantContainer/setSelectionHint (I)V +MD: net/minecraft/world/inventory/MerchantContainer/m_40022_ (I)Z net/minecraft/world/inventory/MerchantContainer/isPaymentSlot (I)Z +MD: net/minecraft/world/inventory/MerchantContainer/m_40024_ ()V net/minecraft/world/inventory/MerchantContainer/updateSellItem ()V +MD: net/minecraft/world/inventory/MerchantContainer/m_40025_ ()Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/inventory/MerchantContainer/getActiveOffer ()Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/inventory/MerchantContainer/m_40026_ ()I net/minecraft/world/inventory/MerchantContainer/getFutureXp ()I +MD: net/minecraft/world/inventory/MerchantContainer/m_6211_ ()V net/minecraft/world/inventory/MerchantContainer/clearContent ()V +MD: net/minecraft/world/inventory/MerchantContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/MerchantContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/MerchantContainer/m_6596_ ()V net/minecraft/world/inventory/MerchantContainer/setChanged ()V +MD: net/minecraft/world/inventory/MerchantContainer/m_6643_ ()I net/minecraft/world/inventory/MerchantContainer/getContainerSize ()I +MD: net/minecraft/world/inventory/MerchantContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantContainer/m_7983_ ()Z net/minecraft/world/inventory/MerchantContainer/isEmpty ()Z +MD: net/minecraft/world/inventory/MerchantContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/trading/Merchant;)V net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/trading/Merchant;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40046_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/inventory/MerchantMenu/setOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40048_ (Z)V net/minecraft/world/inventory/MerchantMenu/setShowProgressBar (Z)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40058_ (Z)V net/minecraft/world/inventory/MerchantMenu/setCanRestock (Z)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40060_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantMenu/moveFromInventoryToPaymentSlot (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40063_ (I)V net/minecraft/world/inventory/MerchantMenu/setSelectionHint (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40065_ ()I net/minecraft/world/inventory/MerchantMenu/getTraderXp ()I +MD: net/minecraft/world/inventory/MerchantMenu/m_40066_ (I)V net/minecraft/world/inventory/MerchantMenu/setXp (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40068_ ()I net/minecraft/world/inventory/MerchantMenu/getFutureTraderXp ()I +MD: net/minecraft/world/inventory/MerchantMenu/m_40069_ (I)V net/minecraft/world/inventory/MerchantMenu/setMerchantLevel (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40071_ ()I net/minecraft/world/inventory/MerchantMenu/getTraderLevel ()I +MD: net/minecraft/world/inventory/MerchantMenu/m_40072_ (I)V net/minecraft/world/inventory/MerchantMenu/tryMoveItems (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40074_ ()Z net/minecraft/world/inventory/MerchantMenu/canRestock ()Z +MD: net/minecraft/world/inventory/MerchantMenu/m_40075_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/inventory/MerchantMenu/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/inventory/MerchantMenu/m_40076_ ()Z net/minecraft/world/inventory/MerchantMenu/showProgressBar ()Z +MD: net/minecraft/world/inventory/MerchantMenu/m_40077_ ()V net/minecraft/world/inventory/MerchantMenu/playTradeSound ()V +MD: net/minecraft/world/inventory/MerchantMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/MerchantMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/MerchantMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/MerchantMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/MerchantMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/MerchantMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/MerchantMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/trading/Merchant;Lnet/minecraft/world/inventory/MerchantContainer;III)V net/minecraft/world/inventory/MerchantResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/trading/Merchant;Lnet/minecraft/world/inventory/MerchantContainer;III)V +MD: net/minecraft/world/inventory/MerchantResultSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantResultSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantResultSlot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantResultSlot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantResultSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/MerchantResultSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/MerchantResultSlot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantResultSlot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantResultSlot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/MerchantResultSlot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/ ()V net/minecraft/world/inventory/PlayerEnderChestContainer/ ()V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_150633_ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)Z net/minecraft/world/inventory/PlayerEnderChestContainer/isActiveChest (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)Z +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_40105_ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V net/minecraft/world/inventory/PlayerEnderChestContainer/setActiveChest (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/PlayerEnderChestContainer/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/PlayerEnderChestContainer/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/PlayerEnderChestContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_7797_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/inventory/PlayerEnderChestContainer/fromTag (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_7927_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/inventory/PlayerEnderChestContainer/createTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/inventory/RecipeBookMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V net/minecraft/world/inventory/RecipeBookMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V +MD: net/minecraft/world/inventory/RecipeBookMenu/m_142157_ (I)Z net/minecraft/world/inventory/RecipeBookMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/RecipeBookMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/RecipeBookMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/RecipeBookMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/RecipeBookMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6635_ ()I net/minecraft/world/inventory/RecipeBookMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6636_ ()I net/minecraft/world/inventory/RecipeBookMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6650_ ()V net/minecraft/world/inventory/RecipeBookMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6653_ ()I net/minecraft/world/inventory/RecipeBookMenu/getSize ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6656_ ()I net/minecraft/world/inventory/RecipeBookMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6951_ (ZLnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/inventory/RecipeBookMenu/handlePlacement (ZLnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/inventory/RecipeBookType/ ()V net/minecraft/world/inventory/RecipeBookType/ ()V +MD: net/minecraft/world/inventory/RecipeBookType/ (Ljava/lang/String;I)V net/minecraft/world/inventory/RecipeBookType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/inventory/RecipeBookType/m_150636_ ()[Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookType/$values ()[Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeBookType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeBookType/values ()[Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookType/values ()[Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeHolder/m_40135_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/RecipeHolder/setRecipeUsed (Lnet/minecraft/world/level/Level;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/RecipeHolder/m_58395_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V net/minecraft/world/inventory/RecipeHolder/awardUsedRecipes (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V +MD: net/minecraft/world/inventory/RecipeHolder/m_6029_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/inventory/RecipeHolder/setRecipeUsed (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/inventory/RecipeHolder/m_7928_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/inventory/RecipeHolder/getRecipeUsed ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/inventory/ResultContainer/ ()V net/minecraft/world/inventory/ResultContainer/ ()V +MD: net/minecraft/world/inventory/ResultContainer/m_6029_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/inventory/ResultContainer/setRecipeUsed (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/inventory/ResultContainer/m_6211_ ()V net/minecraft/world/inventory/ResultContainer/clearContent ()V +MD: net/minecraft/world/inventory/ResultContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ResultContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ResultContainer/m_6596_ ()V net/minecraft/world/inventory/ResultContainer/setChanged ()V +MD: net/minecraft/world/inventory/ResultContainer/m_6643_ ()I net/minecraft/world/inventory/ResultContainer/getContainerSize ()I +MD: net/minecraft/world/inventory/ResultContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ResultContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ResultContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultContainer/m_7928_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/inventory/ResultContainer/getRecipeUsed ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/inventory/ResultContainer/m_7983_ ()Z net/minecraft/world/inventory/ResultContainer/isEmpty ()Z +MD: net/minecraft/world/inventory/ResultContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/ResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/ResultSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ResultSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ResultSlot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ResultSlot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ResultSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ResultSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ResultSlot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultSlot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultSlot/m_6405_ (I)V net/minecraft/world/inventory/ResultSlot/onSwapCraft (I)V +MD: net/minecraft/world/inventory/ResultSlot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/ResultSlot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ShulkerBoxMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ShulkerBoxMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/ShulkerBoxMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ShulkerBoxMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ShulkerBoxSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/ShulkerBoxSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/ShulkerBoxSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ShulkerBoxSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SimpleContainerData/ (I)V net/minecraft/world/inventory/SimpleContainerData/ (I)V +MD: net/minecraft/world/inventory/SimpleContainerData/m_6413_ (I)I net/minecraft/world/inventory/SimpleContainerData/get (I)I +MD: net/minecraft/world/inventory/SimpleContainerData/m_6499_ ()I net/minecraft/world/inventory/SimpleContainerData/getCount ()I +MD: net/minecraft/world/inventory/SimpleContainerData/m_8050_ (II)V net/minecraft/world/inventory/SimpleContainerData/set (II)V +MD: net/minecraft/world/inventory/Slot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/Slot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/Slot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_150641_ (IILnet/minecraft/world/entity/player/Player;)Ljava/util/Optional; net/minecraft/world/inventory/Slot/tryRemove (IILnet/minecraft/world/entity/player/Player;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/Slot/m_150647_ (IILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/safeTake (IILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_150651_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/Slot/allowModification (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/Slot/m_150653_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/lambda$safeTake$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_150656_ (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/safeInsert (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_150659_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/safeInsert (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_150661_ ()I net/minecraft/world/inventory/Slot/getContainerSlot ()I +MD: net/minecraft/world/inventory/Slot/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_280329_ ()Z net/minecraft/world/inventory/Slot/isHighlightable ()Z +MD: net/minecraft/world/inventory/Slot/m_40234_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_5852_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/set (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/Slot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/Slot/m_5866_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/Slot/getMaxStackSize (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/Slot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_6405_ (I)V net/minecraft/world/inventory/Slot/onSwapCraft (I)V +MD: net/minecraft/world/inventory/Slot/m_6641_ ()I net/minecraft/world/inventory/Slot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/Slot/m_6654_ ()V net/minecraft/world/inventory/Slot/setChanged ()V +MD: net/minecraft/world/inventory/Slot/m_6657_ ()Z net/minecraft/world/inventory/Slot/hasItem ()Z +MD: net/minecraft/world/inventory/Slot/m_6659_ ()Z net/minecraft/world/inventory/Slot/isActive ()Z +MD: net/minecraft/world/inventory/Slot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/Slot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/Slot/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/inventory/Slot/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/inventory/Slot/m_7993_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/Slot/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/SmithingMenu/m_142365_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/SmithingMenu/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/SmithingMenu/m_266140_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; net/minecraft/world/inventory/SmithingMenu/lambda$getSlotToQuickMoveTo$7 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/SmithingMenu/m_266141_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_266142_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_266144_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; net/minecraft/world/inventory/SmithingMenu/lambda$canMoveIntoInputSlots$8 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/SmithingMenu/m_266159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/SmithingMenu/getSlotToQuickMoveTo (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/SmithingMenu/m_266183_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/SmithingMenu/createInputSlotDefinitions ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/SmithingMenu/m_266320_ (Lnet/minecraft/world/item/crafting/SmithingRecipe;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/inventory/SmithingMenu/findSlotMatchingIngredient (Lnet/minecraft/world/item/crafting/SmithingRecipe;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/SmithingMenu/m_280632_ ()Ljava/util/List; net/minecraft/world/inventory/SmithingMenu/getRelevantItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/SmithingMenu/m_285723_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$4 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_285724_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_285725_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$5 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_285726_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$3 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_40262_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/SmithingMenu/lambda$onTake$6 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/SmithingMenu/m_40270_ (I)V net/minecraft/world/inventory/SmithingMenu/shrinkStackInSlot (I)V +MD: net/minecraft/world/inventory/SmithingMenu/m_5861_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/canMoveIntoInputSlots (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/SmithingMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_6560_ (Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/inventory/SmithingMenu/mayPickup (Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_6640_ ()V net/minecraft/world/inventory/SmithingMenu/createResult ()V +MD: net/minecraft/world/inventory/SmithingMenu/m_8039_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/inventory/SmithingMenu/isValidBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/StackedContentsCompatible/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/StackedContentsCompatible/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40303_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/StonecutterMenu/setupRecipeList (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40311_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/StonecutterMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40323_ (Ljava/lang/Runnable;)V net/minecraft/world/inventory/StonecutterMenu/registerUpdateListener (Ljava/lang/Runnable;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40334_ (I)Z net/minecraft/world/inventory/StonecutterMenu/isValidRecipeIndex (I)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_40338_ ()I net/minecraft/world/inventory/StonecutterMenu/getSelectedRecipeIndex ()I +MD: net/minecraft/world/inventory/StonecutterMenu/m_40339_ ()Ljava/util/List; net/minecraft/world/inventory/StonecutterMenu/getRecipes ()Ljava/util/List; +MD: net/minecraft/world/inventory/StonecutterMenu/m_40340_ ()I net/minecraft/world/inventory/StonecutterMenu/getNumRecipes ()I +MD: net/minecraft/world/inventory/StonecutterMenu/m_40341_ ()Z net/minecraft/world/inventory/StonecutterMenu/hasInputItem ()Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_40342_ ()V net/minecraft/world/inventory/StonecutterMenu/setupResultSlot ()V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40343_ ()V net/minecraft/world/inventory/StonecutterMenu/lambda$new$0 ()V +MD: net/minecraft/world/inventory/StonecutterMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/StonecutterMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/StonecutterMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/StonecutterMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_6772_ ()Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/StonecutterMenu/getType ()Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/StonecutterMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/StonecutterMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/StonecutterMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/StonecutterMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/StonecutterMenu$1/ (Lnet/minecraft/world/inventory/StonecutterMenu;I)V net/minecraft/world/inventory/StonecutterMenu$1/ (Lnet/minecraft/world/inventory/StonecutterMenu;I)V +MD: net/minecraft/world/inventory/StonecutterMenu$1/m_6596_ ()V net/minecraft/world/inventory/StonecutterMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/StonecutterMenu$2/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/StonecutterMenu$2/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/StonecutterMenu$2/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_280281_ ()Ljava/util/List; net/minecraft/world/inventory/StonecutterMenu$2/getRelevantItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_40363_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/StonecutterMenu$2/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/StonecutterMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;IILnet/minecraft/core/NonNullList;)V net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;IILnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_280657_ ()Ljava/util/List; net/minecraft/world/inventory/TransientCraftingContainer/getItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_39346_ ()I net/minecraft/world/inventory/TransientCraftingContainer/getHeight ()I +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_39347_ ()I net/minecraft/world/inventory/TransientCraftingContainer/getWidth ()I +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/TransientCraftingContainer/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6211_ ()V net/minecraft/world/inventory/TransientCraftingContainer/clearContent ()V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/TransientCraftingContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6596_ ()V net/minecraft/world/inventory/TransientCraftingContainer/setChanged ()V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6643_ ()I net/minecraft/world/inventory/TransientCraftingContainer/getContainerSize ()I +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/TransientCraftingContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/TransientCraftingContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_7983_ ()Z net/minecraft/world/inventory/TransientCraftingContainer/isEmpty ()Z +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/TransientCraftingContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/TransientCraftingContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/tooltip/BundleTooltip/ (Lnet/minecraft/core/NonNullList;I)V net/minecraft/world/inventory/tooltip/BundleTooltip/ (Lnet/minecraft/core/NonNullList;I)V +MD: net/minecraft/world/inventory/tooltip/BundleTooltip/m_150679_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/inventory/tooltip/BundleTooltip/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/inventory/tooltip/BundleTooltip/m_150680_ ()I net/minecraft/world/inventory/tooltip/BundleTooltip/getWeight ()I +MD: net/minecraft/world/item/AdventureModeCheck/ (Ljava/lang/String;)V net/minecraft/world/item/AdventureModeCheck/ (Ljava/lang/String;)V +MD: net/minecraft/world/item/AdventureModeCheck/m_186332_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Z)Z net/minecraft/world/item/AdventureModeCheck/areSameBlocks (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Z)Z +MD: net/minecraft/world/item/AdventureModeCheck/m_204085_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/item/AdventureModeCheck/test (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/item/AirItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/AirItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/AirItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/AirItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/AirItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/AirItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/ArmorItem/ ()V net/minecraft/world/item/ArmorItem/ ()V +MD: net/minecraft/world/item/ArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ArmorItem/m_150681_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ArmorItem/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ArmorItem/m_266204_ ()Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem/getType ()Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorItem/m_266451_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorItem/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorItem/m_40398_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ArmorItem/dispenseArmor (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ArmorItem/m_40401_ ()Lnet/minecraft/world/item/ArmorMaterial; net/minecraft/world/item/ArmorItem/getMaterial ()Lnet/minecraft/world/item/ArmorMaterial; +MD: net/minecraft/world/item/ArmorItem/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ArmorItem/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ArmorItem/m_40404_ ()I net/minecraft/world/item/ArmorItem/getDefense ()I +MD: net/minecraft/world/item/ArmorItem/m_40405_ ()F net/minecraft/world/item/ArmorItem/getToughness ()F +MD: net/minecraft/world/item/ArmorItem/m_6473_ ()I net/minecraft/world/item/ArmorItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/ArmorItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ArmorItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ArmorItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/ArmorItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/ArmorItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ArmorItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ArmorItem$1/ ()V net/minecraft/world/item/ArmorItem$1/ ()V +MD: net/minecraft/world/item/ArmorItem$1/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ArmorItem$1/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ArmorItem$Type/ ()V net/minecraft/world/item/ArmorItem$Type/ ()V +MD: net/minecraft/world/item/ArmorItem$Type/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot;Ljava/lang/String;)V net/minecraft/world/item/ArmorItem$Type/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot;Ljava/lang/String;)V +MD: net/minecraft/world/item/ArmorItem$Type/m_266245_ ()[Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem$Type/$values ()[Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorItem$Type/m_266308_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ArmorItem$Type/getSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ArmorItem$Type/m_266355_ ()Ljava/lang/String; net/minecraft/world/item/ArmorItem$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorItem$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorItem$Type/values ()[Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem$Type/values ()[Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorMaterial/m_266425_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterial/getDurabilityForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterial/m_6082_ ()Ljava/lang/String; net/minecraft/world/item/ArmorMaterial/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorMaterial/m_6230_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterial/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterial/m_6646_ ()I net/minecraft/world/item/ArmorMaterial/getEnchantmentValue ()I +MD: net/minecraft/world/item/ArmorMaterial/m_6649_ ()F net/minecraft/world/item/ArmorMaterial/getKnockbackResistance ()F +MD: net/minecraft/world/item/ArmorMaterial/m_6651_ ()F net/minecraft/world/item/ArmorMaterial/getToughness ()F +MD: net/minecraft/world/item/ArmorMaterial/m_7344_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ArmorMaterial/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ArmorMaterial/m_7366_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterial/getDefenseForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterials/ ()V net/minecraft/world/item/ArmorMaterials/ ()V +MD: net/minecraft/world/item/ArmorMaterials/ (Ljava/lang/String;ILjava/lang/String;ILjava/util/EnumMap;ILnet/minecraft/sounds/SoundEvent;FFLjava/util/function/Supplier;)V net/minecraft/world/item/ArmorMaterials/ (Ljava/lang/String;ILjava/lang/String;ILjava/util/EnumMap;ILnet/minecraft/sounds/SoundEvent;FFLjava/util/function/Supplier;)V +MD: net/minecraft/world/item/ArmorMaterials/m_150682_ ()[Lnet/minecraft/world/item/ArmorMaterials; net/minecraft/world/item/ArmorMaterials/$values ()[Lnet/minecraft/world/item/ArmorMaterials; +MD: net/minecraft/world/item/ArmorMaterials/m_266146_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$8 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266147_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$6 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266148_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$2 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266149_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266150_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$14 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266151_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$4 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266152_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$12 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266153_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$10 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266425_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterials/getDurabilityForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterials/m_40492_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$13 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40493_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$11 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40494_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$9 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40495_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$7 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40496_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$5 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40497_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$3 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40498_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$1 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_6082_ ()Ljava/lang/String; net/minecraft/world/item/ArmorMaterials/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorMaterials/m_6230_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_6646_ ()I net/minecraft/world/item/ArmorMaterials/getEnchantmentValue ()I +MD: net/minecraft/world/item/ArmorMaterials/m_6649_ ()F net/minecraft/world/item/ArmorMaterials/getKnockbackResistance ()F +MD: net/minecraft/world/item/ArmorMaterials/m_6651_ ()F net/minecraft/world/item/ArmorMaterials/getToughness ()F +MD: net/minecraft/world/item/ArmorMaterials/m_7344_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ArmorMaterials/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ArmorMaterials/m_7366_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterials/getDefenseForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterials/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/ArmorMaterials/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorMaterials/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorMaterials; net/minecraft/world/item/ArmorMaterials/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorMaterials; +MD: net/minecraft/world/item/ArmorMaterials/values ()[Lnet/minecraft/world/item/ArmorMaterials; net/minecraft/world/item/ArmorMaterials/values ()[Lnet/minecraft/world/item/ArmorMaterials; +MD: net/minecraft/world/item/ArmorStandItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ArmorStandItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ArmorStandItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ArmorStandItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ArrowItem/m_6394_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/item/ArrowItem/createArrow (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/item/AxeItem/ ()V net/minecraft/world/item/AxeItem/ ()V +MD: net/minecraft/world/item/AxeItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/AxeItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/AxeItem/m_150684_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/AxeItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/AxeItem/m_150687_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/AxeItem/lambda$getStripped$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/AxeItem/m_150690_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/item/AxeItem/getStripped (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/item/AxeItem/m_150692_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/AxeItem/lambda$useOn$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/AxeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/AxeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BannerItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BannerItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BannerItem/m_220001_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/item/BannerItem/lambda$appendHoverTextFromBannerBlockEntityTag$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/item/BannerItem/m_220003_ (Ljava/util/List;Lnet/minecraft/world/item/DyeColor;Ljava/lang/String;)V net/minecraft/world/item/BannerItem/lambda$appendHoverTextFromBannerBlockEntityTag$1 (Ljava/util/List;Lnet/minecraft/world/item/DyeColor;Ljava/lang/String;)V +MD: net/minecraft/world/item/BannerItem/m_40542_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)V net/minecraft/world/item/BannerItem/appendHoverTextFromBannerBlockEntityTag (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)V +MD: net/minecraft/world/item/BannerItem/m_40545_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/BannerItem/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/BannerItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BannerItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/BannerPatternItem/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BannerPatternItem/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BannerPatternItem/m_220010_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/item/BannerPatternItem/getBannerPattern ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/item/BannerPatternItem/m_40556_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/BannerPatternItem/getDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/BannerPatternItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BannerPatternItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/BedItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BedItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BedItem/m_7429_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BedItem/placeBlock (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BlockItem/m_142023_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/BlockItem/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/BlockItem/m_142095_ ()Z net/minecraft/world/item/BlockItem/canFitInsideContainerItems ()Z +MD: net/minecraft/world/item/BlockItem/m_186336_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/BlockItem/getBlockEntityData (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/BlockItem/m_186338_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/BlockItem/setBlockEntityData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/BlockItem/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/BlockItem/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/BlockItem/m_40576_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BlockItem/place (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BlockItem/m_40582_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/BlockItem/updateCustomBlockEntityTag (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/BlockItem/m_40587_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/BlockItem/getPlaceSound (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/BlockItem/m_40589_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/lambda$updateState$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_40593_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_40602_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/updateBlockStateFromTag (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_40610_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BlockItem/canPlace (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/m_40614_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/item/BlockItem/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/item/BlockItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/BlockItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/BlockItem/m_5965_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/getPlacementState (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_6192_ (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/BlockItem/registerBlocks (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/BlockItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BlockItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BlockItem/m_6652_ ()Z net/minecraft/world/item/BlockItem/mustSurvive ()Z +MD: net/minecraft/world/item/BlockItem/m_7274_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BlockItem/updateCustomBlockEntityTag (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BlockItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/BlockItem/m_7429_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BlockItem/placeBlock (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/m_7732_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; net/minecraft/world/item/BlockItem/updatePlacementContext (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; +MD: net/minecraft/world/item/BoatItem/ ()V net/minecraft/world/item/BoatItem/ ()V +MD: net/minecraft/world/item/BoatItem/ (ZLnet/minecraft/world/entity/vehicle/Boat$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BoatItem/ (ZLnet/minecraft/world/entity/vehicle/Boat$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BoatItem/m_220016_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/HitResult;)Lnet/minecraft/world/entity/vehicle/Boat; net/minecraft/world/item/BoatItem/getBoat (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/HitResult;)Lnet/minecraft/world/entity/vehicle/Boat; +MD: net/minecraft/world/item/BoatItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BoatItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BoneMealItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BoneMealItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BoneMealItem/m_204089_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$2 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/item/BoneMealItem/m_204092_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$4 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/item/BoneMealItem/m_204094_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$3 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BoneMealItem/m_204096_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/item/BoneMealItem/m_204099_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$1 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BoneMealItem/m_40627_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/BoneMealItem/growCrop (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/BoneMealItem/m_40631_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/item/BoneMealItem/growWaterPlant (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/item/BoneMealItem/m_40638_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/item/BoneMealItem/addGrowthParticles (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/item/BoneMealItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BoneMealItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BookItem/m_6473_ ()I net/minecraft/world/item/BookItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/BookItem/m_8120_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/BookItem/isEnchantable (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/BottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BottleItem/m_289173_ (Lnet/minecraft/world/entity/AreaEffectCloud;)Z net/minecraft/world/item/BottleItem/lambda$use$0 (Lnet/minecraft/world/entity/AreaEffectCloud;)Z +MD: net/minecraft/world/item/BottleItem/m_40651_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/BottleItem/turnBottleIntoItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/BottleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BottleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BowItem/m_289174_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/BowItem/lambda$releaseUsing$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/BowItem/m_40661_ (I)F net/minecraft/world/item/BowItem/getPowerForTime (I)F +MD: net/minecraft/world/item/BowItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/BowItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/BowItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/BowItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/BowItem/m_6437_ ()Ljava/util/function/Predicate; net/minecraft/world/item/BowItem/getAllSupportedProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/BowItem/m_6615_ ()I net/minecraft/world/item/BowItem/getDefaultProjectileRange ()I +MD: net/minecraft/world/item/BowItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BowItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BowItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BowItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BowlFoodItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BowlFoodItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BowlFoodItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/BowlFoodItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/BrushItem/ ()V net/minecraft/world/item/BrushItem/ ()V +MD: net/minecraft/world/item/BrushItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BrushItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BrushItem/m_278154_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/world/item/BrushItem/spawnDustParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/world/item/BrushItem/m_278588_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/BrushItem/lambda$onUseTick$0 (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/BrushItem/m_279953_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/item/BrushItem/lambda$calculateHitResult$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/item/BrushItem/m_280200_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/item/BrushItem/calculateHitResult (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/item/BrushItem/m_5929_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/BrushItem/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/BrushItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/BrushItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/BrushItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BrushItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BrushItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BrushItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BrushItem$1/ ()V net/minecraft/world/item/BrushItem$1/ ()V +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/ (DDD)V net/minecraft/world/item/BrushItem$DustParticlesDelta/ (DDD)V +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/equals (Ljava/lang/Object;)Z net/minecraft/world/item/BrushItem$DustParticlesDelta/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271284_ ()D net/minecraft/world/item/BrushItem$DustParticlesDelta/yd ()D +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271456_ ()D net/minecraft/world/item/BrushItem$DustParticlesDelta/xd ()D +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271522_ ()D net/minecraft/world/item/BrushItem$DustParticlesDelta/zd ()D +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/hashCode ()I net/minecraft/world/item/BrushItem$DustParticlesDelta/hashCode ()I +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/m_271695_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/BrushItem$DustParticlesDelta; net/minecraft/world/item/BrushItem$DustParticlesDelta/fromDirection (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/BrushItem$DustParticlesDelta; +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/toString ()Ljava/lang/String; net/minecraft/world/item/BrushItem$DustParticlesDelta/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/BucketItem/ (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BucketItem/ (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BucketItem/m_142073_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/item/BucketItem/emptyContents (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/item/BucketItem/m_142131_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/BucketItem/checkExtraContent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/BucketItem/m_150707_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/item/BucketItem/lambda$use$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/item/BucketItem/m_40699_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/BucketItem/getEmptySuccessItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/BucketItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BucketItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BucketItem/m_7718_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/BucketItem/playEmptySound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/BundleItem/ ()V net/minecraft/world/item/BundleItem/ ()V +MD: net/minecraft/world/item/BundleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BundleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BundleItem/m_142023_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/BundleItem/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/BundleItem/m_142158_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getBarWidth (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_142159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getBarColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_142207_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/BundleItem/overrideStackedOnOther (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/BundleItem/m_142305_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z net/minecraft/world/item/BundleItem/overrideOtherStackedOnMe (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z +MD: net/minecraft/world/item/BundleItem/m_142422_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/BundleItem/getTooltipImage (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/BundleItem/m_142522_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/BundleItem/isBarVisible (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/BundleItem/m_150729_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/BundleItem/dropContents (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/BundleItem/m_150737_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/BundleItem/lambda$overrideStackedOnOther$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/BundleItem/m_150756_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/ListTag;)Ljava/util/Optional; net/minecraft/world/item/BundleItem/getMatchingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/ListTag;)Ljava/util/Optional; +MD: net/minecraft/world/item/BundleItem/m_150763_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/add (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_150766_ (Lnet/minecraft/world/item/ItemStack;)F net/minecraft/world/item/BundleItem/getFullnessDisplay (Lnet/minecraft/world/item/ItemStack;)F +MD: net/minecraft/world/item/BundleItem/m_150776_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getWeight (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_150778_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getContentWeight (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_150780_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/BundleItem/removeOne (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/BundleItem/m_150782_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/world/item/BundleItem/getContents (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/BundleItem/m_186342_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/BundleItem/playRemoveOneSound (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/BundleItem/m_186344_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/BundleItem/lambda$overrideOtherStackedOnMe$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/BundleItem/m_186348_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/item/BundleItem/lambda$getMatchingItem$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/item/BundleItem/m_186351_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/BundleItem/playInsertSound (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/BundleItem/m_186353_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/BundleItem/playDropContentsSound (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/BundleItem/m_186355_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/lambda$getContentWeight$3 (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BundleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BundleItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BundleItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/ChorusFruitItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ChorusFruitItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ChorusFruitItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ChorusFruitItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CompassItem/ ()V net/minecraft/world/item/CompassItem/ ()V +MD: net/minecraft/world/item/CompassItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/CompassItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/CompassItem/m_220019_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/GlobalPos; net/minecraft/world/item/CompassItem/getSpawnPosition (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/world/item/CompassItem/m_220021_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/GlobalPos; net/minecraft/world/item/CompassItem/getLodestonePosition (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/world/item/CompassItem/m_40727_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/item/CompassItem/getLodestoneDimension (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/item/CompassItem/m_40729_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/item/CompassItem/lambda$addLodestoneTags$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/item/CompassItem/m_40732_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/CompassItem/addLodestoneTags (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/CompassItem/m_40736_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CompassItem/isLodestoneCompass (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CompassItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/CompassItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/CompassItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CompassItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CompassItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/CompassItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/CompassItem/m_6883_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/CompassItem/inventoryTick (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/ComplexItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ComplexItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ComplexItem/m_7233_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/item/ComplexItem/getUpdatePacket (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/item/ComplexItem/m_7807_ ()Z net/minecraft/world/item/ComplexItem/isComplex ()Z +MD: net/minecraft/world/item/CreativeModeTab/ (Lnet/minecraft/world/item/CreativeModeTab$Row;ILnet/minecraft/world/item/CreativeModeTab$Type;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)V net/minecraft/world/item/CreativeModeTab/ (Lnet/minecraft/world/item/CreativeModeTab$Row;ILnet/minecraft/world/item/CreativeModeTab$Type;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)V +MD: net/minecraft/world/item/CreativeModeTab/m_257466_ ()V net/minecraft/world/item/CreativeModeTab/rebuildSearchTree ()V +MD: net/minecraft/world/item/CreativeModeTab/m_257497_ ()Z net/minecraft/world/item/CreativeModeTab/shouldDisplay ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_257694_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CreativeModeTab/contains (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CreativeModeTab/m_257815_ (Lnet/minecraft/world/item/CreativeModeTab$Row;I)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab/builder (Lnet/minecraft/world/item/CreativeModeTab$Row;I)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab/m_257882_ (Ljava/util/function/Consumer;)V net/minecraft/world/item/CreativeModeTab/setSearchTreeBuilder (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/item/CreativeModeTab/m_257903_ ()I net/minecraft/world/item/CreativeModeTab/column ()I +MD: net/minecraft/world/item/CreativeModeTab/m_257905_ ()Z net/minecraft/world/item/CreativeModeTab/hasAnyItems ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_257962_ ()Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab/getType ()Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTab/m_258064_ ()Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab/row ()Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab/m_260957_ ()Ljava/util/Collection; net/minecraft/world/item/CreativeModeTab/getDisplayItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/CreativeModeTab/m_261235_ ()Ljava/util/Collection; net/minecraft/world/item/CreativeModeTab/getSearchTabDisplayItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/CreativeModeTab/m_269498_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V net/minecraft/world/item/CreativeModeTab/buildContents (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V +MD: net/minecraft/world/item/CreativeModeTab/m_280646_ ()Ljava/lang/IllegalStateException; net/minecraft/world/item/CreativeModeTab/lambda$buildContents$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/item/CreativeModeTab/m_40786_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/CreativeModeTab/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/CreativeModeTab/m_40787_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTab/getIconItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTab/m_40788_ ()Ljava/lang/String; net/minecraft/world/item/CreativeModeTab/getBackgroundSuffix ()Ljava/lang/String; +MD: net/minecraft/world/item/CreativeModeTab/m_40789_ ()Z net/minecraft/world/item/CreativeModeTab/showTitle ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_40791_ ()Z net/minecraft/world/item/CreativeModeTab/canScroll ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_6563_ ()Z net/minecraft/world/item/CreativeModeTab/isAlignedRight ()Z +MD: net/minecraft/world/item/CreativeModeTab$1/ ()V net/minecraft/world/item/CreativeModeTab$1/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Builder/ ()V net/minecraft/world/item/CreativeModeTab$Builder/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Builder/ (Lnet/minecraft/world/item/CreativeModeTab$Row;I)V net/minecraft/world/item/CreativeModeTab$Builder/ (Lnet/minecraft/world/item/CreativeModeTab$Row;I)V +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257501_ (Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/displayItems (Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257579_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTab$Builder/lambda$new$1 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257609_ (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/backgroundSuffix (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257623_ (Lnet/minecraft/world/item/CreativeModeTab$Type;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/type (Lnet/minecraft/world/item/CreativeModeTab$Type;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257652_ ()Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTab$Builder/build ()Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257737_ (Ljava/util/function/Supplier;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/icon (Ljava/util/function/Supplier;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257794_ ()Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/noScrollBar ()Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257809_ ()Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/hideTitle ()Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257826_ ()Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/alignedRight ()Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257941_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/title (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257969_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTab$Builder/lambda$static$0 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator/m_257865_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator/accept (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/ (Lnet/minecraft/world/item/CreativeModeTab;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/ (Lnet/minecraft/world/item/CreativeModeTab;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/m_246267_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/accept (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/equals (Ljava/lang/Object;)Z net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268429_ ()Z net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hasPermissions ()Z +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268485_ ()Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/holders ()Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268709_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hashCode ()I net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hashCode ()I +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/m_269247_ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/needsUpdate (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/toString ()Ljava/lang/String; net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/CreativeModeTab$Output/m_245282_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246233_ (Ljava/util/Collection;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$Output/acceptAll (Ljava/util/Collection;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246267_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246326_ (Lnet/minecraft/world/level/ItemLike;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246342_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246601_ (Ljava/util/Collection;)V net/minecraft/world/item/CreativeModeTab$Output/acceptAll (Ljava/util/Collection;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_247606_ (Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTab$Output/lambda$acceptAll$0 (Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTab$Row/ ()V net/minecraft/world/item/CreativeModeTab$Row/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Row/ (Ljava/lang/String;I)V net/minecraft/world/item/CreativeModeTab$Row/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/CreativeModeTab$Row/m_257616_ ()[Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab$Row/$values ()[Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab$Row/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab$Row/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab$Row/values ()[Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab$Row/values ()[Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/ ()V net/minecraft/world/item/CreativeModeTab$TabVisibility/ ()V +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/ (Ljava/lang/String;I)V net/minecraft/world/item/CreativeModeTab$TabVisibility/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/m_246258_ ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; net/minecraft/world/item/CreativeModeTab$TabVisibility/$values ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; net/minecraft/world/item/CreativeModeTab$TabVisibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/values ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; net/minecraft/world/item/CreativeModeTab$TabVisibility/values ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +MD: net/minecraft/world/item/CreativeModeTab$Type/ ()V net/minecraft/world/item/CreativeModeTab$Type/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Type/ (Ljava/lang/String;I)V net/minecraft/world/item/CreativeModeTab$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/CreativeModeTab$Type/m_257818_ ()[Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab$Type/$values ()[Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTab$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTab$Type/values ()[Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab$Type/values ()[Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTabs/ ()V net/minecraft/world/item/CreativeModeTabs/ ()V +MD: net/minecraft/world/item/CreativeModeTabs/ ()V net/minecraft/world/item/CreativeModeTabs/ ()V +MD: net/minecraft/world/item/CreativeModeTabs/m_257388_ ()Ljava/util/List; net/minecraft/world/item/CreativeModeTabs/tabs ()Ljava/util/List; +MD: net/minecraft/world/item/CreativeModeTabs/m_257428_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$11 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257431_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$1 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257437_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$12 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257454_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$6 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257478_ ()Ljava/util/List; net/minecraft/world/item/CreativeModeTabs/allTabs ()Ljava/util/List; +MD: net/minecraft/world/item/CreativeModeTabs/m_257481_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$24 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257493_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$10 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257519_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$33 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257535_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$15 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257543_ ()Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTabs/getDefaultTab ()Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTabs/m_257584_ (Lnet/minecraft/world/item/CreativeModeTab;)Z net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$51 (Lnet/minecraft/world/item/CreativeModeTab;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_257637_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$4 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257664_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$20 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257722_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$2 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257753_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$29 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257769_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$23 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257842_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$13 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257847_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$0 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257852_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateFireworksAllDurations (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257855_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateSuspiciousStews (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257885_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$27 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257947_ (Lnet/minecraft/world/item/CreativeModeTab;)Z net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$49 (Lnet/minecraft/world/item/CreativeModeTab;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_257948_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$18 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257978_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$21 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_258007_ ()Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTabs/searchTab ()Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTabs/m_268949_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/item/CreativeModeTabs/lambda$generatePresetPaintings$48 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268950_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$32 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268951_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Ljava/util/Set;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$25 (Lnet/minecraft/world/item/CreativeModeTab$Output;Ljava/util/Set;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268952_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generatePotionEffectTypes$36 (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_268953_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesOnlyMaxLevel$40 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268954_ (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$41 (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268955_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$22 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268956_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generateInstrumentTypes$45 (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_268957_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$50 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268958_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generatePotionEffectTypes$37 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268959_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$52 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268960_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$30 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268961_ (Lnet/minecraft/world/entity/decoration/PaintingVariant;)I net/minecraft/world/item/CreativeModeTabs/lambda$static$34 (Lnet/minecraft/world/entity/decoration/PaintingVariant;)I +MD: net/minecraft/world/item/CreativeModeTabs/m_268962_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$42 (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_268963_ (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesOnlyMaxLevel$38 (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268964_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateInstrumentTypes$46 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268965_ (Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/item/CreativeModeTabs/lambda$generatePotionEffectTypes$35 (Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268966_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$31 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268967_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$44 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268968_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/HolderSet$Named;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateInstrumentTypes$47 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/HolderSet$Named;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268970_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Ljava/util/stream/Stream; net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$43 (Lnet/minecraft/world/item/enchantment/Enchantment;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/CreativeModeTabs/m_268971_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$8 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268974_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$19 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268975_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$3 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268976_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$16 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268977_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$7 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268978_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesOnlyMaxLevel$39 (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_269182_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateEnchantmentBookTypesOnlyMaxLevel (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269226_ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z net/minecraft/world/item/CreativeModeTabs/tryRebuildTabContents (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_269246_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generatePotionEffectTypes (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269255_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;Ljava/util/function/Predicate;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generatePresetPaintings (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;Ljava/util/function/Predicate;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269335_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateEnchantmentBookTypesAllLevels (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269421_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V net/minecraft/world/item/CreativeModeTabs/buildAllTabContents (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269481_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateInstrumentTypes (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_271663_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$28 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_276747_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$9 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_276748_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$26 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_279954_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$14 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_280019_ ()V net/minecraft/world/item/CreativeModeTabs/validate ()V +MD: net/minecraft/world/item/CreativeModeTabs/m_280238_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/CreativeModeTabs/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/CreativeModeTabs/m_280294_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTabs/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTabs/m_280350_ ()Ljava/util/stream/Stream; net/minecraft/world/item/CreativeModeTabs/streamAllTabs ()Ljava/util/stream/Stream; +MD: net/minecraft/world/item/CreativeModeTabs/m_284092_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$17 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_288178_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$5 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CrossbowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/CrossbowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/CrossbowItem/m_220023_ (Lnet/minecraft/util/RandomSource;)[F net/minecraft/world/item/CrossbowItem/getShotPitches (Lnet/minecraft/util/RandomSource;)[F +MD: net/minecraft/world/item/CrossbowItem/m_220025_ (ZLnet/minecraft/util/RandomSource;)F net/minecraft/world/item/CrossbowItem/getRandomShotPitch (ZLnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/item/CrossbowItem/m_40851_ (I)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/CrossbowItem/getStartSound (I)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/CrossbowItem/m_40853_ (ILnet/minecraft/world/item/ItemStack;)F net/minecraft/world/item/CrossbowItem/getPowerForTime (ILnet/minecraft/world/item/ItemStack;)F +MD: net/minecraft/world/item/CrossbowItem/m_40856_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/CrossbowItem/lambda$shootProjectile$1 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/CrossbowItem/m_40859_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/tryLoadProjectiles (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40862_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;ZZ)Z net/minecraft/world/item/CrossbowItem/loadProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;ZZ)Z +MD: net/minecraft/world/item/CrossbowItem/m_40868_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/lambda$containsChargedProjectile$0 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/CrossbowItem/containsChargedProjectile (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40884_ (Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/item/CrossbowItem/setCharged (Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/item/CrossbowItem/m_40887_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;FF)V net/minecraft/world/item/CrossbowItem/performShooting (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;FF)V +MD: net/minecraft/world/item/CrossbowItem/m_40894_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;FZFFF)V net/minecraft/world/item/CrossbowItem/shootProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;FZFFF)V +MD: net/minecraft/world/item/CrossbowItem/m_40905_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CrossbowItem/onCrossbowShot (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CrossbowItem/m_40914_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/item/CrossbowItem/getArrow (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/item/CrossbowItem/m_40928_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CrossbowItem/addChargedProjectile (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CrossbowItem/m_40932_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/isCharged (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40939_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/CrossbowItem/getChargeDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/CrossbowItem/m_40941_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/item/CrossbowItem/getChargedProjectiles (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/item/CrossbowItem/m_40943_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CrossbowItem/clearChargedProjectiles (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CrossbowItem/m_40945_ (Lnet/minecraft/world/item/ItemStack;)F net/minecraft/world/item/CrossbowItem/getShootingPower (Lnet/minecraft/world/item/ItemStack;)F +MD: net/minecraft/world/item/CrossbowItem/m_41463_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/useOnRelease (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/CrossbowItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/CrossbowItem/m_5929_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/CrossbowItem/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/CrossbowItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/CrossbowItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/CrossbowItem/m_6437_ ()Ljava/util/function/Predicate; net/minecraft/world/item/CrossbowItem/getAllSupportedProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/CrossbowItem/m_6442_ ()Ljava/util/function/Predicate; net/minecraft/world/item/CrossbowItem/getSupportedHeldProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/CrossbowItem/m_6615_ ()I net/minecraft/world/item/CrossbowItem/getDefaultProjectileRange ()I +MD: net/minecraft/world/item/CrossbowItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/CrossbowItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/CrossbowItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/CrossbowItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/CrossbowItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/CrossbowItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/DebugStickItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DebugStickItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DebugStickItem/m_150802_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/DebugStickItem/handleInteraction (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/DebugStickItem/m_40956_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/item/DebugStickItem/message (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/item/DebugStickItem/m_40966_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; net/minecraft/world/item/DebugStickItem/getNameHelper (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; +MD: net/minecraft/world/item/DebugStickItem/m_40969_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/DebugStickItem/cycleState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/DebugStickItem/m_40973_ (Ljava/lang/Iterable;Ljava/lang/Object;Z)Ljava/lang/Object; net/minecraft/world/item/DebugStickItem/getRelative (Ljava/lang/Iterable;Ljava/lang/Object;Z)Ljava/lang/Object; +MD: net/minecraft/world/item/DebugStickItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/DebugStickItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/DebugStickItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/DebugStickItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/DebugStickItem/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/DebugStickItem/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/DiggerItem/ (FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DiggerItem/ (FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DiggerItem/m_40991_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/DiggerItem/lambda$mineBlock$1 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/DiggerItem/m_41006_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/DiggerItem/lambda$hurtEnemy$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/DiggerItem/m_41008_ ()F net/minecraft/world/item/DiggerItem/getAttackDamage ()F +MD: net/minecraft/world/item/DiggerItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/DiggerItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/DiggerItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/DiggerItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/DiggerItem/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/DiggerItem/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/DiggerItem/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/DiggerItem/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/DiggerItem/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/DiggerItem/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/DiscFragmentItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DiscFragmentItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DiscFragmentItem/m_220035_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/DiscFragmentItem/getDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/DiscFragmentItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/DiscFragmentItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/DispensibleContainerItem/m_142073_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/item/DispensibleContainerItem/emptyContents (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/item/DispensibleContainerItem/m_142131_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/DispensibleContainerItem/checkExtraContent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/DoubleHighBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DoubleHighBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DoubleHighBlockItem/m_7429_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/DoubleHighBlockItem/placeBlock (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/DyeColor/ ()V net/minecraft/world/item/DyeColor/ ()V +MD: net/minecraft/world/item/DyeColor/ (Ljava/lang/String;IILjava/lang/String;ILnet/minecraft/world/level/material/MapColor;II)V net/minecraft/world/item/DyeColor/ (Ljava/lang/String;IILjava/lang/String;ILnet/minecraft/world/level/material/MapColor;II)V +MD: net/minecraft/world/item/DyeColor/m_150825_ ()[Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/$values ()[Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_284406_ ()Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/item/DyeColor/getMapColor ()Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/item/DyeColor/m_41053_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/byId (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41055_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/lambda$static$1 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41057_ (Ljava/lang/String;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/byName (Ljava/lang/String;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41060_ ()I net/minecraft/world/item/DyeColor/getId ()I +MD: net/minecraft/world/item/DyeColor/m_41061_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/byFireworkColor (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41063_ (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Integer; net/minecraft/world/item/DyeColor/lambda$static$0 (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Integer; +MD: net/minecraft/world/item/DyeColor/m_41065_ ()Ljava/lang/String; net/minecraft/world/item/DyeColor/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/DyeColor/m_41068_ ()[F net/minecraft/world/item/DyeColor/getTextureDiffuseColors ()[F +MD: net/minecraft/world/item/DyeColor/m_41070_ ()I net/minecraft/world/item/DyeColor/getFireworkColor ()I +MD: net/minecraft/world/item/DyeColor/m_41071_ ()I net/minecraft/world/item/DyeColor/getTextColor ()I +MD: net/minecraft/world/item/DyeColor/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/DyeColor/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/DyeColor/toString ()Ljava/lang/String; net/minecraft/world/item/DyeColor/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/DyeColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/values ()[Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/values ()[Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeItem/ ()V net/minecraft/world/item/DyeItem/ ()V +MD: net/minecraft/world/item/DyeItem/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DyeItem/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DyeItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/DyeItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/DyeItem/m_276862_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/item/DyeItem/lambda$tryApplyToSign$0 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/item/DyeItem/m_41082_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeItem; net/minecraft/world/item/DyeItem/byColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeItem; +MD: net/minecraft/world/item/DyeItem/m_41089_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeItem/getDyeColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeItem/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/DyeItem/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/DyeableArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DyeableArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DyeableHorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DyeableHorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DyeableLeatherItem/m_41113_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/DyeableLeatherItem/hasCustomColor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/DyeableLeatherItem/m_41115_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/DyeableLeatherItem/setColor (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/DyeableLeatherItem/m_41118_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/DyeableLeatherItem/dyeArmor (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/DyeableLeatherItem/m_41121_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/DyeableLeatherItem/getColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/DyeableLeatherItem/m_41123_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/DyeableLeatherItem/clearColor (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/EggItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EggItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EggItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EggItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ElytraItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ElytraItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ElytraItem/m_150681_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ElytraItem/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ElytraItem/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ElytraItem/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ElytraItem/m_41140_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ElytraItem/isFlyEnabled (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ElytraItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ElytraItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ElytraItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ElytraItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/EmptyMapItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EmptyMapItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EmptyMapItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EmptyMapItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/EnchantedBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnchantedBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnchantedBookItem/m_41153_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V net/minecraft/world/item/EnchantedBookItem/addEnchantment (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V +MD: net/minecraft/world/item/EnchantedBookItem/m_41161_ (Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/EnchantedBookItem/createForEnchantment (Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/EnchantedBookItem/m_41163_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/item/EnchantedBookItem/getEnchantments (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/item/EnchantedBookItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EnchantedBookItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EnchantedBookItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/EnchantedBookItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/EnchantedBookItem/m_8120_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EnchantedBookItem/isEnchantable (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EnchantedGoldenAppleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnchantedGoldenAppleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnchantedGoldenAppleItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EnchantedGoldenAppleItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EndCrystalItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EndCrystalItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EndCrystalItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EndCrystalItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EndCrystalItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/EndCrystalItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/EnderEyeItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnderEyeItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnderEyeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/EnderEyeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/EnderEyeItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EnderEyeItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/EnderpearlItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnderpearlItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnderpearlItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EnderpearlItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Equipable/m_150681_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/Equipable/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/Equipable/m_269088_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Equipable; net/minecraft/world/item/Equipable/get (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Equipable; +MD: net/minecraft/world/item/Equipable/m_269277_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/Equipable/swapWithEquipmentSlot (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Equipable/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/Equipable/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ExperienceBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ExperienceBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ExperienceBottleItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ExperienceBottleItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ExperienceBottleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ExperienceBottleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/FireChargeItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FireChargeItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FireChargeItem/m_41205_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/FireChargeItem/playSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/FireChargeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/FireChargeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/FireworkRocketItem/ ()V net/minecraft/world/item/FireworkRocketItem/ ()V +MD: net/minecraft/world/item/FireworkRocketItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FireworkRocketItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FireworkRocketItem/m_257843_ (Lnet/minecraft/world/item/ItemStack;B)V net/minecraft/world/item/FireworkRocketItem/setDuration (Lnet/minecraft/world/item/ItemStack;B)V +MD: net/minecraft/world/item/FireworkRocketItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/FireworkRocketItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/FireworkRocketItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/FireworkRocketItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/FireworkRocketItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/FireworkRocketItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/FireworkRocketItem/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/FireworkRocketItem/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/ ()V net/minecraft/world/item/FireworkRocketItem$Shape/ ()V +MD: net/minecraft/world/item/FireworkRocketItem$Shape/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/item/FireworkRocketItem$Shape/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_150842_ ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/$values ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_41236_ ()I net/minecraft/world/item/FireworkRocketItem$Shape/getId ()I +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_41237_ (I)Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/byId (I)Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_41241_ ()Ljava/lang/String; net/minecraft/world/item/FireworkRocketItem$Shape/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/values ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/values ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkStarItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FireworkStarItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FireworkStarItem/m_41249_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/FireworkStarItem/getColorName (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/FireworkStarItem/m_41256_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V net/minecraft/world/item/FireworkStarItem/appendHoverText (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V +MD: net/minecraft/world/item/FireworkStarItem/m_41259_ (Lnet/minecraft/network/chat/MutableComponent;[I)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/FireworkStarItem/appendColors (Lnet/minecraft/network/chat/MutableComponent;[I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/FireworkStarItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/FireworkStarItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/FishingRodItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FishingRodItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FishingRodItem/m_41286_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FishingRodItem/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FishingRodItem/m_6473_ ()I net/minecraft/world/item/FishingRodItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/FishingRodItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/FishingRodItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/FlintAndSteelItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FlintAndSteelItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FlintAndSteelItem/m_41298_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FlintAndSteelItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FlintAndSteelItem/m_41301_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FlintAndSteelItem/lambda$useOn$0 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FlintAndSteelItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/FlintAndSteelItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/FoodOnAStickItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/entity/EntityType;I)V net/minecraft/world/item/FoodOnAStickItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/entity/EntityType;I)V +MD: net/minecraft/world/item/FoodOnAStickItem/m_41310_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FoodOnAStickItem/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FoodOnAStickItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/FoodOnAStickItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/GameMasterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/GameMasterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/GameMasterBlockItem/m_5965_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/GameMasterBlockItem/getPlacementState (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/GlowInkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/GlowInkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/GlowInkSacItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/GlowInkSacItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/GlowInkSacItem/m_277194_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/item/GlowInkSacItem/lambda$tryApplyToSign$0 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/item/HangingEntityItem/ ()V net/minecraft/world/item/HangingEntityItem/ ()V +MD: net/minecraft/world/item/HangingEntityItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HangingEntityItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HangingEntityItem/m_269207_ (Ljava/util/List;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/HangingEntityItem/lambda$appendHoverText$1 (Ljava/util/List;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/HangingEntityItem/m_269401_ (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/item/HangingEntityItem/lambda$appendHoverText$0 (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/item/HangingEntityItem/m_269512_ (Ljava/util/List;)V net/minecraft/world/item/HangingEntityItem/lambda$appendHoverText$2 (Ljava/util/List;)V +MD: net/minecraft/world/item/HangingEntityItem/m_5595_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/HangingEntityItem/mayPlace (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/HangingEntityItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HangingEntityItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HangingEntityItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/HangingEntityItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/HangingSignItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HangingSignItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HangingSignItem/m_246210_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/HangingSignItem/canPlace (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/HoeItem/ ()V net/minecraft/world/item/HoeItem/ ()V +MD: net/minecraft/world/item/HoeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HoeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HoeItem/m_150843_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/HoeItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/HoeItem/m_150846_ (Lnet/minecraft/world/item/context/UseOnContext;)Z net/minecraft/world/item/HoeItem/lambda$static$0 (Lnet/minecraft/world/item/context/UseOnContext;)Z +MD: net/minecraft/world/item/HoeItem/m_150849_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;)Ljava/util/function/Consumer; net/minecraft/world/item/HoeItem/changeIntoStateAndDropItem (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;)Ljava/util/function/Consumer; +MD: net/minecraft/world/item/HoeItem/m_150856_ (Lnet/minecraft/world/item/context/UseOnContext;)Z net/minecraft/world/item/HoeItem/onlyIfAirAbove (Lnet/minecraft/world/item/context/UseOnContext;)Z +MD: net/minecraft/world/item/HoeItem/m_150858_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/function/Consumer; net/minecraft/world/item/HoeItem/changeIntoState (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/function/Consumer; +MD: net/minecraft/world/item/HoeItem/m_150860_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/UseOnContext;)V net/minecraft/world/item/HoeItem/lambda$changeIntoState$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/UseOnContext;)V +MD: net/minecraft/world/item/HoeItem/m_238243_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/context/UseOnContext;)V net/minecraft/world/item/HoeItem/lambda$changeIntoStateAndDropItem$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/context/UseOnContext;)V +MD: net/minecraft/world/item/HoeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HoeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HoneyBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HoneyBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HoneyBottleItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/HoneyBottleItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/HoneyBottleItem/m_6023_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/HoneyBottleItem/getDrinkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/HoneyBottleItem/m_6061_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/HoneyBottleItem/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/HoneyBottleItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/HoneyBottleItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/HoneyBottleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/HoneyBottleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/HoneyBottleItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/HoneyBottleItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/HoneycombItem/ ()V net/minecraft/world/item/HoneycombItem/ ()V +MD: net/minecraft/world/item/HoneycombItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HoneycombItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HoneycombItem/m_150875_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/HoneycombItem/lambda$getWaxed$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/HoneycombItem/m_150878_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/item/HoneycombItem/getWaxed (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/item/HoneycombItem/m_150880_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/item/HoneycombItem/lambda$static$1 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/item/HoneycombItem/m_150881_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/item/HoneycombItem/lambda$static$0 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/item/HoneycombItem/m_238247_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HoneycombItem/lambda$useOn$2 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HoneycombItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/HoneycombItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/HoneycombItem/m_277072_ (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/HoneycombItem/canApplyToSign (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/HoneycombItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HoneycombItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HorseArmorItem/m_41367_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/HorseArmorItem/getTexture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/HorseArmorItem/m_41368_ ()I net/minecraft/world/item/HorseArmorItem/getProtection ()I +MD: net/minecraft/world/item/InkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/InkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/InkSacItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/InkSacItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/InkSacItem/m_277089_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/item/InkSacItem/lambda$tryApplyToSign$0 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/item/Instrument/ ()V net/minecraft/world/item/Instrument/ ()V +MD: net/minecraft/world/item/Instrument/ (Lnet/minecraft/core/Holder;IF)V net/minecraft/world/item/Instrument/ (Lnet/minecraft/core/Holder;IF)V +MD: net/minecraft/world/item/Instrument/equals (Ljava/lang/Object;)Z net/minecraft/world/item/Instrument/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/Instrument/f_220079_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/Instrument/soundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/Instrument/f_220080_ ()I net/minecraft/world/item/Instrument/useDuration ()I +MD: net/minecraft/world/item/Instrument/f_220081_ ()F net/minecraft/world/item/Instrument/range ()F +MD: net/minecraft/world/item/Instrument/hashCode ()I net/minecraft/world/item/Instrument/hashCode ()I +MD: net/minecraft/world/item/Instrument/m_263163_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/Instrument/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/Instrument/toString ()Ljava/lang/String; net/minecraft/world/item/Instrument/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/InstrumentItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/item/InstrumentItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/item/InstrumentItem/m_220101_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/item/InstrumentItem/lambda$setRandom$0 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/item/InstrumentItem/m_220107_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/InstrumentItem/create (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/InstrumentItem/m_220110_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/tags/TagKey;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/item/InstrumentItem/setRandom (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/tags/TagKey;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/item/InstrumentItem/m_220119_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/InstrumentItem/setSoundVariantId (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/InstrumentItem/m_220126_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/Instrument;)V net/minecraft/world/item/InstrumentItem/play (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/Instrument;)V +MD: net/minecraft/world/item/InstrumentItem/m_220134_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/InstrumentItem/getInstrument (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/InstrumentItem/m_220136_ ()Ljava/lang/IllegalStateException; net/minecraft/world/item/InstrumentItem/lambda$setSoundVariantId$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/item/InstrumentItem/m_244989_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/InstrumentItem/lambda$setRandom$1 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/InstrumentItem/m_244990_ (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; net/minecraft/world/item/InstrumentItem/lambda$getUseDuration$3 (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; +MD: net/minecraft/world/item/InstrumentItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/InstrumentItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/InstrumentItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/InstrumentItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/InstrumentItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/InstrumentItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/InstrumentItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/InstrumentItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Instruments/ ()V net/minecraft/world/item/Instruments/ ()V +MD: net/minecraft/world/item/Instruments/m_220148_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Instrument; net/minecraft/world/item/Instruments/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Instrument; +MD: net/minecraft/world/item/Instruments/m_220150_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/Instruments/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/Item/ ()V net/minecraft/world/item/Item/ ()V +MD: net/minecraft/world/item/Item/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/Item/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/Item/m_142023_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/Item/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/Item/m_142095_ ()Z net/minecraft/world/item/Item/canFitInsideContainerItems ()Z +MD: net/minecraft/world/item/Item/m_142158_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/Item/getBarWidth (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Item/m_142159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/Item/getBarColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Item/m_142207_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/Item/overrideStackedOnOther (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/Item/m_142305_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z net/minecraft/world/item/Item/overrideOtherStackedOnMe (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z +MD: net/minecraft/world/item/Item/m_142312_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/Item/verifyTagAfterLoad (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/Item/m_142422_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/Item/getTooltipImage (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/Item/m_142522_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isBarVisible (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_204114_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/item/Item/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/item/Item/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/Item/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/Item/m_41386_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/item/Item/canBeHurtBy (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/item/Item/m_41393_ (Lnet/minecraft/world/item/Item;)I net/minecraft/world/item/Item/getId (Lnet/minecraft/world/item/Item;)I +MD: net/minecraft/world/item/Item/m_41435_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/item/Item/getPlayerPOVHitResult (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/item/Item/m_41439_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/byBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_41445_ (I)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/byId (I)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_41459_ ()I net/minecraft/world/item/Item/getMaxStackSize ()I +MD: net/minecraft/world/item/Item/m_41460_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Item/getRarity (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/Item/m_41462_ ()I net/minecraft/world/item/Item/getMaxDamage ()I +MD: net/minecraft/world/item/Item/m_41463_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/useOnRelease (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_41465_ ()Z net/minecraft/world/item/Item/canBeDepleted ()Z +MD: net/minecraft/world/item/Item/m_41466_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/Item/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/Item/m_41467_ ()Ljava/lang/String; net/minecraft/world/item/Item/getOrCreateDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/Item/m_41468_ ()Z net/minecraft/world/item/Item/shouldOverrideMultiplayerNbt ()Z +MD: net/minecraft/world/item/Item/m_41469_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/getCraftingRemainingItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_41470_ ()Z net/minecraft/world/item/Item/hasCraftingRemainingItem ()Z +MD: net/minecraft/world/item/Item/m_41472_ ()Z net/minecraft/world/item/Item/isEdible ()Z +MD: net/minecraft/world/item/Item/m_41473_ ()Lnet/minecraft/world/food/FoodProperties; net/minecraft/world/item/Item/getFoodProperties ()Lnet/minecraft/world/food/FoodProperties; +MD: net/minecraft/world/item/Item/m_41475_ ()Z net/minecraft/world/item/Item/isFireResistant ()Z +MD: net/minecraft/world/item/Item/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/Item/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/Item/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/Item/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/Item/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/Item/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/Item/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/Item/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/Item/m_5929_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/Item/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/Item/m_6023_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/Item/getDrinkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/Item/m_6061_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/Item/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/Item/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/Item/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/Item/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/Item/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/Item/m_6473_ ()I net/minecraft/world/item/Item/getEnchantmentValue ()I +MD: net/minecraft/world/item/Item/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/Item/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/Item/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/Item/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/Item/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/Item/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/Item/m_6883_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/Item/inventoryTick (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/Item/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/Item/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/Item/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/Item/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Item/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/Item/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/Item/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/Item/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/Item/m_7626_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/Item/getName (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/Item/m_7807_ ()Z net/minecraft/world/item/Item/isComplex ()Z +MD: net/minecraft/world/item/Item/m_7836_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/Item/onCraftedBy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/Item/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/Item/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/Item/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/Item/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/Item/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/Item/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/Item/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/Item/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Item/m_8120_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isEnchantable (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/toString ()Ljava/lang/String; net/minecraft/world/item/Item/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/Item$1/ ()V net/minecraft/world/item/Item$1/ ()V +MD: net/minecraft/world/item/Item$Properties/ ()V net/minecraft/world/item/Item$Properties/ ()V +MD: net/minecraft/world/item/Item$Properties/m_246768_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/requiredFeatures ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41486_ ()Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/fireResistant ()Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41487_ (I)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/stacksTo (I)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41489_ (Lnet/minecraft/world/food/FoodProperties;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/food (Lnet/minecraft/world/food/FoodProperties;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41495_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/craftRemainder (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41497_ (Lnet/minecraft/world/item/Rarity;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/rarity (Lnet/minecraft/world/item/Rarity;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41499_ (I)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/defaultDurability (I)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41503_ (I)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/durability (I)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/ItemCooldowns/ ()V net/minecraft/world/item/ItemCooldowns/ ()V +MD: net/minecraft/world/item/ItemCooldowns/m_41518_ ()V net/minecraft/world/item/ItemCooldowns/tick ()V +MD: net/minecraft/world/item/ItemCooldowns/m_41519_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/ItemCooldowns/isOnCooldown (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/ItemCooldowns/m_41521_ (Lnet/minecraft/world/item/Item;F)F net/minecraft/world/item/ItemCooldowns/getCooldownPercent (Lnet/minecraft/world/item/Item;F)F +MD: net/minecraft/world/item/ItemCooldowns/m_41524_ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/item/ItemCooldowns/addCooldown (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/item/ItemCooldowns/m_41527_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/ItemCooldowns/removeCooldown (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/ItemCooldowns/m_6899_ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/item/ItemCooldowns/onCooldownStarted (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/item/ItemCooldowns/m_7432_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/ItemCooldowns/onCooldownEnded (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/ItemCooldowns$CooldownInstance/ (II)V net/minecraft/world/item/ItemCooldowns$CooldownInstance/ (II)V +MD: net/minecraft/world/item/ItemDisplayContext/ ()V net/minecraft/world/item/ItemDisplayContext/ ()V +MD: net/minecraft/world/item/ItemDisplayContext/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/item/ItemDisplayContext/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/item/ItemDisplayContext/m_269069_ ()Z net/minecraft/world/item/ItemDisplayContext/firstPerson ()Z +MD: net/minecraft/world/item/ItemDisplayContext/m_269462_ ()B net/minecraft/world/item/ItemDisplayContext/getId ()B +MD: net/minecraft/world/item/ItemDisplayContext/m_269476_ ()[Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/item/ItemDisplayContext/$values ()[Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/item/ItemDisplayContext/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/ItemDisplayContext/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemDisplayContext/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/item/ItemDisplayContext/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/item/ItemDisplayContext/values ()[Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/item/ItemDisplayContext/values ()[Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/item/ItemFrameItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ItemFrameItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ItemFrameItem/m_5595_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/ItemFrameItem/mayPlace (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/ItemNameBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ItemNameBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ItemNameBlockItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/ItemNameBlockItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemStack/ ()V net/minecraft/world/item/ItemStack/ ()V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;I)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/world/item/ItemStack/ (Ljava/lang/Void;)V net/minecraft/world/item/ItemStack/ (Ljava/lang/Void;)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;ILjava/util/Optional;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;ILjava/util/Optional;)V +MD: net/minecraft/world/item/ItemStack/m_150921_ ()Ljava/util/Optional; net/minecraft/world/item/ItemStack/getTooltipImage ()Ljava/util/Optional; +MD: net/minecraft/world/item/ItemStack/m_150924_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/ItemStack/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/ItemStack/m_150926_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/ItemStack/overrideStackedOnOther (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/ItemStack/m_150930_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/ItemStack/is (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/ItemStack/m_150932_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z net/minecraft/world/item/ItemStack/overrideOtherStackedOnMe (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z +MD: net/minecraft/world/item/ItemStack/m_150942_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStack/isSameItemSameTags (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStack/m_150947_ ()Z net/minecraft/world/item/ItemStack/isBarVisible ()Z +MD: net/minecraft/world/item/ItemStack/m_150948_ ()I net/minecraft/world/item/ItemStack/getBarWidth ()I +MD: net/minecraft/world/item/ItemStack/m_150949_ ()I net/minecraft/world/item/ItemStack/getBarColor ()I +MD: net/minecraft/world/item/ItemStack/m_204117_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/item/ItemStack/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/item/ItemStack/m_204121_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/item/ItemStack/hasAdventureModePlaceTagForBlock (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/item/ItemStack/m_204128_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/item/ItemStack/hasAdventureModeBreakTagForBlock (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/item/ItemStack/m_204131_ ()Ljava/util/stream/Stream; net/minecraft/world/item/ItemStack/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/world/item/ItemStack/m_220157_ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/item/ItemStack/hurt (ILnet/minecraft/util/RandomSource;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/item/ItemStack/m_220161_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Ljava/util/List; net/minecraft/world/item/ItemStack/lambda$expandBlockState$4 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Ljava/util/List; +MD: net/minecraft/world/item/ItemStack/m_220163_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Ljava/util/List; net/minecraft/world/item/ItemStack/lambda$expandBlockState$6 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Ljava/util/List; +MD: net/minecraft/world/item/ItemStack/m_220165_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/ItemStack/is (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/ItemStack/m_220167_ (Ljava/util/function/Predicate;)Z net/minecraft/world/item/ItemStack/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/item/ItemStack/m_220169_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/item/ItemStack/lambda$getDisplayName$7 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/item/ItemStack/m_220171_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/ItemStack/lambda$expandBlockState$5 (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/ItemStack/m_220173_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/ItemStack/getItemHolder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/ItemStack/m_246617_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/item/ItemStack/isItemEnabled (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/item/ItemStack/m_255036_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/copyWithCount (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_257321_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/ItemStack/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/ItemStack/m_278832_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/copyAndClear ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_279955_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/ItemStack/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/ItemStack/m_41609_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/item/ItemStack/getEntityRepresentation ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/item/ItemStack/m_41610_ ()I net/minecraft/world/item/ItemStack/getBaseRepairCost ()I +MD: net/minecraft/world/item/ItemStack/m_41611_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/ItemStack/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/ItemStack/m_41612_ ()I net/minecraft/world/item/ItemStack/getPopTime ()I +MD: net/minecraft/world/item/ItemStack/m_41613_ ()I net/minecraft/world/item/ItemStack/getCount ()I +MD: net/minecraft/world/item/ItemStack/m_41614_ ()Z net/minecraft/world/item/ItemStack/isEdible ()Z +MD: net/minecraft/world/item/ItemStack/m_41615_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ItemStack/getDrinkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ItemStack/m_41616_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ItemStack/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ItemStack/m_41618_ ()I net/minecraft/world/item/ItemStack/getHideFlags ()I +MD: net/minecraft/world/item/ItemStack/m_41619_ ()Z net/minecraft/world/item/ItemStack/isEmpty ()Z +MD: net/minecraft/world/item/ItemStack/m_41620_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/split (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41622_ (ILnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Consumer;)V net/minecraft/world/item/ItemStack/hurtAndBreak (ILnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/item/ItemStack/m_41626_ (ILnet/minecraft/world/item/ItemStack$TooltipPart;)Z net/minecraft/world/item/ItemStack/shouldShowInTooltip (ILnet/minecraft/world/item/ItemStack$TooltipPart;)Z +MD: net/minecraft/world/item/ItemStack/m_41636_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/ItemStack/setEntityRepresentation (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/ItemStack/m_41638_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/ItemStack/getAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/ItemStack/m_41640_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ItemStack/hurtEnemy (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ItemStack/m_41643_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/ItemStack/addAttributeModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/ItemStack/m_41647_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ItemStack/interactLivingEntity (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ItemStack/m_41651_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/TooltipFlag;)Ljava/util/List; net/minecraft/world/item/ItemStack/getTooltipLines (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/TooltipFlag;)Ljava/util/List; +MD: net/minecraft/world/item/ItemStack/m_41654_ (Lnet/minecraft/world/item/ItemStack$TooltipPart;)V net/minecraft/world/item/ItemStack/hideTooltipPart (Lnet/minecraft/world/item/ItemStack$TooltipPart;)V +MD: net/minecraft/world/item/ItemStack/m_41656_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStack/isSameItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStack/m_41661_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ItemStack/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ItemStack/m_41663_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/ItemStack/enchant (Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/ItemStack/m_41666_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/ItemStack/inventoryTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/ItemStack/m_41671_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/finishUsingItem (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41674_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/ItemStack/releaseUsing (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/ItemStack/m_41678_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;I)V net/minecraft/world/item/ItemStack/onCraftedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;I)V +MD: net/minecraft/world/item/ItemStack/m_41682_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ItemStack/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ItemStack/m_41686_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ItemStack/mineBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ItemStack/m_41691_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/ItemStack/getDestroySpeed (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/ItemStack/m_41698_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getOrCreateTagElement (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41700_ (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/item/ItemStack/addTagElement (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/item/ItemStack/m_41703_ (Ljava/text/DecimalFormat;)V net/minecraft/world/item/ItemStack/lambda$static$2 (Ljava/text/DecimalFormat;)V +MD: net/minecraft/world/item/ItemStack/m_41705_ (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/ItemStack/lambda$appendEnchantmentNames$3 (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/ItemStack/m_41709_ (Ljava/util/List;Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/item/ItemStack/appendEnchantmentNames (Ljava/util/List;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/item/ItemStack/m_41712_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/of (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41714_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/setHoverName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41720_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/item/ItemStack/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/ItemStack/m_41721_ (I)V net/minecraft/world/item/ItemStack/setDamageValue (I)V +MD: net/minecraft/world/item/ItemStack/m_41728_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStack/matches (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStack/m_41731_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/ItemStack/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/ItemStack/m_41735_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/ItemStack/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/ItemStack/m_41737_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getTagElement (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41739_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41741_ ()I net/minecraft/world/item/ItemStack/getMaxStackSize ()I +MD: net/minecraft/world/item/ItemStack/m_41742_ (I)V net/minecraft/world/item/ItemStack/setRepairCost (I)V +MD: net/minecraft/world/item/ItemStack/m_41749_ (Ljava/lang/String;)V net/minecraft/world/item/ItemStack/removeTagKey (Ljava/lang/String;)V +MD: net/minecraft/world/item/ItemStack/m_41751_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/ItemStack/setTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/ItemStack/m_41753_ ()Z net/minecraft/world/item/ItemStack/isStackable ()Z +MD: net/minecraft/world/item/ItemStack/m_41754_ (I)V net/minecraft/world/item/ItemStack/setPopTime (I)V +MD: net/minecraft/world/item/ItemStack/m_41761_ (Ljava/lang/String;)Ljava/util/Collection; net/minecraft/world/item/ItemStack/expandBlockState (Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/world/item/ItemStack/m_41763_ ()Z net/minecraft/world/item/ItemStack/isDamageableItem ()Z +MD: net/minecraft/world/item/ItemStack/m_41764_ (I)V net/minecraft/world/item/ItemStack/setCount (I)V +MD: net/minecraft/world/item/ItemStack/m_41768_ ()Z net/minecraft/world/item/ItemStack/isDamaged ()Z +MD: net/minecraft/world/item/ItemStack/m_41769_ (I)V net/minecraft/world/item/ItemStack/grow (I)V +MD: net/minecraft/world/item/ItemStack/m_41773_ ()I net/minecraft/world/item/ItemStack/getDamageValue ()I +MD: net/minecraft/world/item/ItemStack/m_41774_ (I)V net/minecraft/world/item/ItemStack/shrink (I)V +MD: net/minecraft/world/item/ItemStack/m_41776_ ()I net/minecraft/world/item/ItemStack/getMaxDamage ()I +MD: net/minecraft/world/item/ItemStack/m_41777_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/copy ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41778_ ()Ljava/lang/String; net/minecraft/world/item/ItemStack/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemStack/m_41779_ ()I net/minecraft/world/item/ItemStack/getUseDuration ()I +MD: net/minecraft/world/item/ItemStack/m_41780_ ()Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/ItemStack/getUseAnimation ()Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/ItemStack/m_41781_ ()Z net/minecraft/world/item/ItemStack/useOnRelease ()Z +MD: net/minecraft/world/item/ItemStack/m_41782_ ()Z net/minecraft/world/item/ItemStack/hasTag ()Z +MD: net/minecraft/world/item/ItemStack/m_41783_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41784_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getOrCreateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41785_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/item/ItemStack/getEnchantmentTags ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/item/ItemStack/m_41786_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/ItemStack/getHoverName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/ItemStack/m_41787_ ()V net/minecraft/world/item/ItemStack/resetHoverName ()V +MD: net/minecraft/world/item/ItemStack/m_41788_ ()Z net/minecraft/world/item/ItemStack/hasCustomHoverName ()Z +MD: net/minecraft/world/item/ItemStack/m_41790_ ()Z net/minecraft/world/item/ItemStack/hasFoil ()Z +MD: net/minecraft/world/item/ItemStack/m_41791_ ()Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/ItemStack/getRarity ()Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/ItemStack/m_41792_ ()Z net/minecraft/world/item/ItemStack/isEnchantable ()Z +MD: net/minecraft/world/item/ItemStack/m_41793_ ()Z net/minecraft/world/item/ItemStack/isEnchanted ()Z +MD: net/minecraft/world/item/ItemStack/m_41794_ ()Z net/minecraft/world/item/ItemStack/isFramed ()Z +MD: net/minecraft/world/item/ItemStack/m_41795_ ()Lnet/minecraft/world/entity/decoration/ItemFrame; net/minecraft/world/item/ItemStack/getFrame ()Lnet/minecraft/world/entity/decoration/ItemFrame; +MD: net/minecraft/world/item/ItemStack/toString ()Ljava/lang/String; net/minecraft/world/item/ItemStack/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemStack$TooltipPart/ ()V net/minecraft/world/item/ItemStack$TooltipPart/ ()V +MD: net/minecraft/world/item/ItemStack$TooltipPart/ (Ljava/lang/String;I)V net/minecraft/world/item/ItemStack$TooltipPart/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/ItemStack$TooltipPart/m_150950_ ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; net/minecraft/world/item/ItemStack$TooltipPart/$values ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; +MD: net/minecraft/world/item/ItemStack$TooltipPart/m_41809_ ()I net/minecraft/world/item/ItemStack$TooltipPart/getMask ()I +MD: net/minecraft/world/item/ItemStack$TooltipPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemStack$TooltipPart; net/minecraft/world/item/ItemStack$TooltipPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemStack$TooltipPart; +MD: net/minecraft/world/item/ItemStack$TooltipPart/values ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; net/minecraft/world/item/ItemStack$TooltipPart/values ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; +MD: net/minecraft/world/item/ItemStackLinkedSet/ ()V net/minecraft/world/item/ItemStackLinkedSet/ ()V +MD: net/minecraft/world/item/ItemStackLinkedSet/ ()V net/minecraft/world/item/ItemStackLinkedSet/ ()V +MD: net/minecraft/world/item/ItemStackLinkedSet/m_260929_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/ItemStackLinkedSet/hashStackAndTag (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ItemStackLinkedSet/m_261170_ ()Ljava/util/Set; net/minecraft/world/item/ItemStackLinkedSet/createTypeAndTagSet ()Ljava/util/Set; +MD: net/minecraft/world/item/ItemStackLinkedSet$1/ ()V net/minecraft/world/item/ItemStackLinkedSet$1/ ()V +MD: net/minecraft/world/item/ItemStackLinkedSet$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/item/ItemStackLinkedSet$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/item/ItemStackLinkedSet$1/equals (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStackLinkedSet$1/equals (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Ljava/lang/Object;)I net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/world/item/ItemUtils/ ()V net/minecraft/world/item/ItemUtils/ ()V +MD: net/minecraft/world/item/ItemUtils/m_150952_ (Lnet/minecraft/world/entity/item/ItemEntity;Ljava/util/stream/Stream;)V net/minecraft/world/item/ItemUtils/onContainerDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;Ljava/util/stream/Stream;)V +MD: net/minecraft/world/item/ItemUtils/m_150959_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ItemUtils/startUsingInstantly (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ItemUtils/m_289175_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/ItemUtils/lambda$onContainerDestroyed$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/ItemUtils/m_41813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemUtils/createFilledResult (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemUtils/m_41817_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemUtils/createFilledResult (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/Items/ ()V net/minecraft/world/item/Items/ ()V +MD: net/minecraft/world/item/Items/ ()V net/minecraft/world/item/Items/ ()V +MD: net/minecraft/world/item/Items/m_245048_ (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_280247_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerItem (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42803_ (Lnet/minecraft/world/item/BlockItem;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/item/BlockItem;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42805_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42810_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42813_ (Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerItem (Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42816_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerItem (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/KnowledgeBookItem/ ()V net/minecraft/world/item/KnowledgeBookItem/ ()V +MD: net/minecraft/world/item/KnowledgeBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/KnowledgeBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/KnowledgeBookItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/KnowledgeBookItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/LeadItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/LeadItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/LeadItem/m_42829_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/LeadItem/bindPlayerMobs (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/LeadItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/LeadItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/LingeringPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/LingeringPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/LingeringPotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/LingeringPotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/LingeringPotionItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/LingeringPotionItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/MapItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MapItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MapItem/m_151108_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/MapItem/storeMapData (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/MapItem/m_151111_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/item/MapItem/createAndStoreSavedData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/item/MapItem/m_151120_ (Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)I net/minecraft/world/item/MapItem/createNewSavedData (Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)I +MD: net/minecraft/world/item/MapItem/m_151128_ (Ljava/lang/Integer;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/item/MapItem/getSavedData (Ljava/lang/Integer;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/item/MapItem/m_151131_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/Integer; net/minecraft/world/item/MapItem/getMapId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/Integer; +MD: net/minecraft/world/item/MapItem/m_212251_ ([ZII)Z net/minecraft/world/item/MapItem/isBiomeWatery ([ZII)Z +MD: net/minecraft/world/item/MapItem/m_42848_ (I)Ljava/lang/String; net/minecraft/world/item/MapItem/makeKey (I)Ljava/lang/String; +MD: net/minecraft/world/item/MapItem/m_42850_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/MapItem/renderBiomePreviewMap (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/MapItem/m_42853_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/item/MapItem/getSavedData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/item/MapItem/m_42856_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;I)V net/minecraft/world/item/MapItem/scaleMap (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;I)V +MD: net/minecraft/world/item/MapItem/m_42886_ (Lnet/minecraft/world/level/Level;IIBZZ)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/MapItem/create (Lnet/minecraft/world/level/Level;IIBZZ)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/MapItem/m_42893_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/world/item/MapItem/update (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/world/item/MapItem/m_42897_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/MapItem/lockMap (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/MapItem/m_42900_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/MapItem/getCorrectStateForFluidBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/MapItem/m_42918_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/MapItem/getColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/MapItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/MapItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/MapItem/m_6883_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/MapItem/inventoryTick (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/MapItem/m_7233_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/item/MapItem/getUpdatePacket (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/item/MapItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/MapItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/MapItem/m_7836_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/MapItem/onCraftedBy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/MilkBucketItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MilkBucketItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MilkBucketItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/MilkBucketItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/MilkBucketItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/MilkBucketItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/MilkBucketItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/MilkBucketItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/MilkBucketItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/MilkBucketItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/MinecartItem/ ()V net/minecraft/world/item/MinecartItem/ ()V +MD: net/minecraft/world/item/MinecartItem/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MinecartItem/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MinecartItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/MinecartItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/MinecartItem$1/ ()V net/minecraft/world/item/MinecartItem$1/ ()V +MD: net/minecraft/world/item/MinecartItem$1/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/world/item/MinecartItem$1/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/world/item/MinecartItem$1/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/MinecartItem$1/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/MobBucketItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MobBucketItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MobBucketItem/m_142131_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/MobBucketItem/checkExtraContent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/MobBucketItem/m_151141_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/MobBucketItem/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/MobBucketItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/MobBucketItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/MobBucketItem/m_7718_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/MobBucketItem/playEmptySound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/NameTagItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/NameTagItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/NameTagItem/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/NameTagItem/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/PickaxeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PickaxeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PlaceOnWaterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PlaceOnWaterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PlaceOnWaterBlockItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/PlaceOnWaterBlockItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/PlaceOnWaterBlockItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/PlaceOnWaterBlockItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/PlayerHeadItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PlayerHeadItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PlayerHeadItem/m_142312_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/PlayerHeadItem/verifyTagAfterLoad (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/PlayerHeadItem/m_151175_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/item/PlayerHeadItem/lambda$verifyTagAfterLoad$0 (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/item/PlayerHeadItem/m_7626_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/PlayerHeadItem/getName (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/PotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PotionItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/PotionItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/PotionItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/PotionItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/PotionItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/PotionItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/PotionItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/PotionItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/PotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/PotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/PotionItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/PotionItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/PotionItem/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/PotionItem/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/PotionItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/PotionItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ProjectileWeaponItem/ ()V net/minecraft/world/item/ProjectileWeaponItem/ ()V +MD: net/minecraft/world/item/ProjectileWeaponItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ProjectileWeaponItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ProjectileWeaponItem/m_43010_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ProjectileWeaponItem/getHeldProjectile (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ProjectileWeaponItem/m_43014_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ProjectileWeaponItem/lambda$static$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ProjectileWeaponItem/m_43016_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ProjectileWeaponItem/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6437_ ()Ljava/util/function/Predicate; net/minecraft/world/item/ProjectileWeaponItem/getAllSupportedProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6442_ ()Ljava/util/function/Predicate; net/minecraft/world/item/ProjectileWeaponItem/getSupportedHeldProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6473_ ()I net/minecraft/world/item/ProjectileWeaponItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6615_ ()I net/minecraft/world/item/ProjectileWeaponItem/getDefaultProjectileRange ()I +MD: net/minecraft/world/item/Rarity/ ()V net/minecraft/world/item/Rarity/ ()V +MD: net/minecraft/world/item/Rarity/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V net/minecraft/world/item/Rarity/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/item/Rarity/m_151181_ ()[Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Rarity/$values ()[Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/Rarity/values ()[Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Rarity/values ()[Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/RecordItem/ ()V net/minecraft/world/item/RecordItem/ ()V +MD: net/minecraft/world/item/RecordItem/ (ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V net/minecraft/world/item/RecordItem/ (ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V +MD: net/minecraft/world/item/RecordItem/m_43036_ ()I net/minecraft/world/item/RecordItem/getLengthInTicks ()I +MD: net/minecraft/world/item/RecordItem/m_43040_ (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/item/RecordItem; net/minecraft/world/item/RecordItem/getBySound (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/item/RecordItem; +MD: net/minecraft/world/item/RecordItem/m_43049_ ()I net/minecraft/world/item/RecordItem/getAnalogOutput ()I +MD: net/minecraft/world/item/RecordItem/m_43050_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/RecordItem/getDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/RecordItem/m_43051_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/RecordItem/getSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/RecordItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/RecordItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/RecordItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/RecordItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/SaddleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SaddleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SaddleItem/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/SaddleItem/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ScaffoldingBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ScaffoldingBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ScaffoldingBlockItem/m_6652_ ()Z net/minecraft/world/item/ScaffoldingBlockItem/mustSurvive ()Z +MD: net/minecraft/world/item/ScaffoldingBlockItem/m_7732_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; net/minecraft/world/item/ScaffoldingBlockItem/updatePlacementContext (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; +MD: net/minecraft/world/item/ServerItemCooldowns/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/item/ServerItemCooldowns/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/item/ServerItemCooldowns/m_6899_ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/item/ServerItemCooldowns/onCooldownStarted (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/item/ServerItemCooldowns/m_7432_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/ServerItemCooldowns/onCooldownEnded (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/ShearsItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ShearsItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ShearsItem/m_186372_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ShearsItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ShearsItem/m_43075_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/ShearsItem/lambda$mineBlock$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/ShearsItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ShearsItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ShearsItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/ShearsItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/ShearsItem/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/ShearsItem/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/ShearsItem/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/ShearsItem/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/ShieldItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ShieldItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ShieldItem/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ShieldItem/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ShieldItem/m_43102_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/ShieldItem/getColor (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/ShieldItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/ShieldItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/ShieldItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/ShieldItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/ShieldItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ShieldItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ShieldItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ShieldItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ShieldItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/ShieldItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/ShieldItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/ShieldItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ShovelItem/ ()V net/minecraft/world/item/ShovelItem/ ()V +MD: net/minecraft/world/item/ShovelItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ShovelItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ShovelItem/m_43120_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ShovelItem/lambda$useOn$0 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ShovelItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ShovelItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/SignApplicator/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/SignApplicator/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/SignApplicator/m_277072_ (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/SignApplicator/canApplyToSign (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/item/SignItem/m_7274_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/SignItem/updateCustomBlockEntityTag (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/SimpleFoiledItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SimpleFoiledItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SimpleFoiledItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/SimpleFoiledItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/SmithingTemplateItem/ ()V net/minecraft/world/item/SmithingTemplateItem/ ()V +MD: net/minecraft/world/item/SmithingTemplateItem/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/item/SmithingTemplateItem/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/item/SmithingTemplateItem/m_266165_ ()Lnet/minecraft/world/item/SmithingTemplateItem; net/minecraft/world/item/SmithingTemplateItem/createNetheriteUpgradeTemplate ()Lnet/minecraft/world/item/SmithingTemplateItem; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266172_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/item/SmithingTemplateItem; net/minecraft/world/item/SmithingTemplateItem/createArmorTrimTemplate (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/item/SmithingTemplateItem; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266212_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/SmithingTemplateItem/getBaseSlotDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266239_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createTrimmableArmorIconList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266257_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createNetheriteUpgradeIconList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266304_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/item/SmithingTemplateItem; net/minecraft/world/item/SmithingTemplateItem/createArmorTrimTemplate (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/item/SmithingTemplateItem; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266326_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/getAdditionalSlotEmptyIcons ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266346_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createTrimmableMaterialIconList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266534_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/getBaseSlotEmptyIcons ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266549_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/SmithingTemplateItem/getAdditionSlotDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266579_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createNetheriteUpgradeMaterialList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/SmithingTemplateItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/SmithingTemplateItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/SmithingTemplateItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/SnowballItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SnowballItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SnowballItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SnowballItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SolidBucketItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SolidBucketItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SolidBucketItem/m_142073_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/item/SolidBucketItem/emptyContents (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/item/SolidBucketItem/m_40587_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/SolidBucketItem/getPlaceSound (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/SolidBucketItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/SolidBucketItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/SolidBucketItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/SolidBucketItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/SpawnEggItem/ ()V net/minecraft/world/item/SpawnEggItem/ ()V +MD: net/minecraft/world/item/SpawnEggItem/ (Lnet/minecraft/world/entity/EntityType;IILnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SpawnEggItem/ (Lnet/minecraft/world/entity/EntityType;IILnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SpawnEggItem/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/SpawnEggItem/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/SpawnEggItem/m_43211_ (I)I net/minecraft/world/item/SpawnEggItem/getColor (I)I +MD: net/minecraft/world/item/SpawnEggItem/m_43213_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/item/SpawnEggItem; net/minecraft/world/item/SpawnEggItem/byId (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/item/SpawnEggItem; +MD: net/minecraft/world/item/SpawnEggItem/m_43215_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/SpawnEggItem/spawnOffspringFromSpawnEgg (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/SpawnEggItem/m_43228_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/item/SpawnEggItem/getType (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/item/SpawnEggItem/m_43230_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/item/SpawnEggItem/spawnsEntity (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/item/SpawnEggItem/m_43233_ ()Ljava/lang/Iterable; net/minecraft/world/item/SpawnEggItem/eggs ()Ljava/lang/Iterable; +MD: net/minecraft/world/item/SpawnEggItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/SpawnEggItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/SpawnEggItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SpawnEggItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SpectralArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SpectralArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SpectralArrowItem/m_6394_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/item/SpectralArrowItem/createArrow (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/item/SplashPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SplashPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SplashPotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SplashPotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SpyglassItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SpyglassItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SpyglassItem/m_151206_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/SpyglassItem/stopUsing (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/SpyglassItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/SpyglassItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/SpyglassItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/SpyglassItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/SpyglassItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/SpyglassItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/SpyglassItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SpyglassItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SpyglassItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/SpyglassItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/StandingAndWallBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/core/Direction;)V net/minecraft/world/item/StandingAndWallBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/item/StandingAndWallBlockItem/m_246210_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/StandingAndWallBlockItem/canPlace (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/StandingAndWallBlockItem/m_5965_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/StandingAndWallBlockItem/getPlacementState (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/StandingAndWallBlockItem/m_6192_ (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/StandingAndWallBlockItem/registerBlocks (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/SuspiciousStewItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SuspiciousStewItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SuspiciousStewItem/m_258054_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Consumer;)V net/minecraft/world/item/SuspiciousStewItem/listPotionEffects (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/item/SuspiciousStewItem/m_43258_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/effect/MobEffect;I)V net/minecraft/world/item/SuspiciousStewItem/saveMobEffect (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/effect/MobEffect;I)V +MD: net/minecraft/world/item/SuspiciousStewItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/SuspiciousStewItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/SuspiciousStewItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/SuspiciousStewItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/SwordItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SwordItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SwordItem/m_43275_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/SwordItem/lambda$mineBlock$1 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/SwordItem/m_43295_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/SwordItem/lambda$hurtEnemy$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/SwordItem/m_43299_ ()F net/minecraft/world/item/SwordItem/getDamage ()F +MD: net/minecraft/world/item/SwordItem/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/SwordItem/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/SwordItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/SwordItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/SwordItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/SwordItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/SwordItem/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/SwordItem/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/SwordItem/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/SwordItem/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/SwordItem/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/SwordItem/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/ThrowablePotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ThrowablePotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ThrowablePotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ThrowablePotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Tier/m_6282_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tier/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tier/m_6601_ ()I net/minecraft/world/item/Tier/getEnchantmentValue ()I +MD: net/minecraft/world/item/Tier/m_6604_ ()I net/minecraft/world/item/Tier/getLevel ()I +MD: net/minecraft/world/item/Tier/m_6609_ ()I net/minecraft/world/item/Tier/getUses ()I +MD: net/minecraft/world/item/Tier/m_6624_ ()F net/minecraft/world/item/Tier/getSpeed ()F +MD: net/minecraft/world/item/Tier/m_6631_ ()F net/minecraft/world/item/Tier/getAttackDamageBonus ()F +MD: net/minecraft/world/item/TieredItem/ (Lnet/minecraft/world/item/Tier;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/TieredItem/ (Lnet/minecraft/world/item/Tier;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/TieredItem/m_43314_ ()Lnet/minecraft/world/item/Tier; net/minecraft/world/item/TieredItem/getTier ()Lnet/minecraft/world/item/Tier; +MD: net/minecraft/world/item/TieredItem/m_6473_ ()I net/minecraft/world/item/TieredItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/TieredItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/TieredItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Tiers/ ()V net/minecraft/world/item/Tiers/ ()V +MD: net/minecraft/world/item/Tiers/ (Ljava/lang/String;IIIFFILjava/util/function/Supplier;)V net/minecraft/world/item/Tiers/ (Ljava/lang/String;IIIFFILjava/util/function/Supplier;)V +MD: net/minecraft/world/item/Tiers/m_151228_ ()[Lnet/minecraft/world/item/Tiers; net/minecraft/world/item/Tiers/$values ()[Lnet/minecraft/world/item/Tiers; +MD: net/minecraft/world/item/Tiers/m_43344_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$5 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43345_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$4 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43346_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$3 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43347_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$2 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43348_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$1 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43349_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$0 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_6282_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_6601_ ()I net/minecraft/world/item/Tiers/getEnchantmentValue ()I +MD: net/minecraft/world/item/Tiers/m_6604_ ()I net/minecraft/world/item/Tiers/getLevel ()I +MD: net/minecraft/world/item/Tiers/m_6609_ ()I net/minecraft/world/item/Tiers/getUses ()I +MD: net/minecraft/world/item/Tiers/m_6624_ ()F net/minecraft/world/item/Tiers/getSpeed ()F +MD: net/minecraft/world/item/Tiers/m_6631_ ()F net/minecraft/world/item/Tiers/getAttackDamageBonus ()F +MD: net/minecraft/world/item/Tiers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Tiers; net/minecraft/world/item/Tiers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Tiers; +MD: net/minecraft/world/item/Tiers/values ()[Lnet/minecraft/world/item/Tiers; net/minecraft/world/item/Tiers/values ()[Lnet/minecraft/world/item/Tiers; +MD: net/minecraft/world/item/TippedArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/TippedArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/TippedArrowItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/TippedArrowItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/TippedArrowItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/TippedArrowItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/TippedArrowItem/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/TippedArrowItem/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/TooltipFlag/ ()V net/minecraft/world/item/TooltipFlag/ ()V +MD: net/minecraft/world/item/TooltipFlag/m_257552_ ()Z net/minecraft/world/item/TooltipFlag/isCreative ()Z +MD: net/minecraft/world/item/TooltipFlag/m_7050_ ()Z net/minecraft/world/item/TooltipFlag/isAdvanced ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/ (ZZ)V net/minecraft/world/item/TooltipFlag$Default/ (ZZ)V +MD: net/minecraft/world/item/TooltipFlag$Default/equals (Ljava/lang/Object;)Z net/minecraft/world/item/TooltipFlag$Default/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/TooltipFlag$Default/f_257043_ ()Z net/minecraft/world/item/TooltipFlag$Default/creative ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/f_43368_ ()Z net/minecraft/world/item/TooltipFlag$Default/advanced ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/hashCode ()I net/minecraft/world/item/TooltipFlag$Default/hashCode ()I +MD: net/minecraft/world/item/TooltipFlag$Default/m_257552_ ()Z net/minecraft/world/item/TooltipFlag$Default/isCreative ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/m_257777_ ()Lnet/minecraft/world/item/TooltipFlag$Default; net/minecraft/world/item/TooltipFlag$Default/asCreative ()Lnet/minecraft/world/item/TooltipFlag$Default; +MD: net/minecraft/world/item/TooltipFlag$Default/m_7050_ ()Z net/minecraft/world/item/TooltipFlag$Default/isAdvanced ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/toString ()Ljava/lang/String; net/minecraft/world/item/TooltipFlag$Default/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/TridentItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/TridentItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/TridentItem/m_43384_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/TridentItem/lambda$mineBlock$2 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/TridentItem/m_43386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/TridentItem/lambda$releaseUsing$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/TridentItem/m_43413_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/TridentItem/lambda$hurtEnemy$1 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/TridentItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/TridentItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/TridentItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/TridentItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/TridentItem/m_6473_ ()I net/minecraft/world/item/TridentItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/TridentItem/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/TridentItem/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/TridentItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/TridentItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/TridentItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/TridentItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/TridentItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/TridentItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/TridentItem/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/TridentItem/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/TridentItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/TridentItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/UseAnim/ ()V net/minecraft/world/item/UseAnim/ ()V +MD: net/minecraft/world/item/UseAnim/ (Ljava/lang/String;I)V net/minecraft/world/item/UseAnim/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/UseAnim/m_151234_ ()[Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/UseAnim/$values ()[Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/UseAnim/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/UseAnim/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/UseAnim/values ()[Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/UseAnim/values ()[Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/WritableBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/WritableBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/WritableBookItem/m_43452_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/item/WritableBookItem/makeSureTagIsValid (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/item/WritableBookItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/WritableBookItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/WritableBookItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/WritableBookItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/WrittenBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/WrittenBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/WrittenBookItem/m_151248_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/WrittenBookItem/resolvePage (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/WrittenBookItem/m_43461_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/WrittenBookItem/resolveBookComponents (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/WrittenBookItem/m_43471_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/item/WrittenBookItem/makeSureTagIsValid (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/item/WrittenBookItem/m_43473_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/WrittenBookItem/getGeneration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/WrittenBookItem/m_43477_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/WrittenBookItem/getPageCount (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/WrittenBookItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/WrittenBookItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/WrittenBookItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/WrittenBookItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/WrittenBookItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/WrittenBookItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/WrittenBookItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/WrittenBookItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/WrittenBookItem/m_7626_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/WrittenBookItem/getName (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/alchemy/Potion/ ([Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/item/alchemy/Potion/ ([Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/item/alchemy/Potion/ (Ljava/lang/String;[Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/item/alchemy/Potion/ (Ljava/lang/String;[Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/item/alchemy/Potion/m_43488_ ()Ljava/util/List; net/minecraft/world/item/alchemy/Potion/getEffects ()Ljava/util/List; +MD: net/minecraft/world/item/alchemy/Potion/m_43489_ (Ljava/lang/String;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/Potion/byName (Ljava/lang/String;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/Potion/m_43491_ ()Z net/minecraft/world/item/alchemy/Potion/hasInstantEffects ()Z +MD: net/minecraft/world/item/alchemy/Potion/m_43492_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/alchemy/Potion/getName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/alchemy/PotionBrewing/ ()V net/minecraft/world/item/alchemy/PotionBrewing/ ()V +MD: net/minecraft/world/item/alchemy/PotionBrewing/ ()V net/minecraft/world/item/alchemy/PotionBrewing/ ()V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43499_ ()V net/minecraft/world/item/alchemy/PotionBrewing/bootStrap ()V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43500_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/alchemy/PotionBrewing/addContainer (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43502_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/alchemy/PotionBrewing/addContainerRecipe (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43506_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/isIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43508_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/hasMix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43511_ (Lnet/minecraft/world/item/alchemy/Potion;)Z net/minecraft/world/item/alchemy/PotionBrewing/isBrewablePotion (Lnet/minecraft/world/item/alchemy/Potion;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43513_ (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/item/alchemy/PotionBrewing/addMix (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43517_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/isContainerIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43519_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/hasContainerMix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43522_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/isPotionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43524_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/hasPotionMix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43527_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43529_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/alchemy/PotionBrewing/mix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/ (Ljava/lang/Object;Lnet/minecraft/world/item/crafting/Ingredient;Ljava/lang/Object;)V net/minecraft/world/item/alchemy/PotionBrewing$Mix/ (Ljava/lang/Object;Lnet/minecraft/world/item/crafting/Ingredient;Ljava/lang/Object;)V +MD: net/minecraft/world/item/alchemy/PotionUtils/ ()V net/minecraft/world/item/alchemy/PotionUtils/ ()V +MD: net/minecraft/world/item/alchemy/PotionUtils/ ()V net/minecraft/world/item/alchemy/PotionUtils/ ()V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_257410_ (Ljava/util/List;Ljava/util/List;F)V net/minecraft/world/item/alchemy/PotionUtils/addPotionTooltip (Ljava/util/List;Ljava/util/List;F)V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43547_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getMobEffects (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43549_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/alchemy/PotionUtils/setPotion (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43552_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/alchemy/PotionUtils/setCustomEffects (Lnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43555_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;F)V net/minecraft/world/item/alchemy/PotionUtils/addPotionTooltip (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;F)V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43559_ (Lnet/minecraft/world/item/alchemy/Potion;)I net/minecraft/world/item/alchemy/PotionUtils/getColor (Lnet/minecraft/world/item/alchemy/Potion;)I +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43561_ (Lnet/minecraft/world/item/alchemy/Potion;Ljava/util/Collection;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getAllEffects (Lnet/minecraft/world/item/alchemy/Potion;Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43564_ (Ljava/util/Collection;)I net/minecraft/world/item/alchemy/PotionUtils/getColor (Ljava/util/Collection;)I +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43566_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getAllEffects (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43568_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V net/minecraft/world/item/alchemy/PotionUtils/getCustomEffects (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43571_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getCustomEffects (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43573_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getCustomEffects (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43575_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/alchemy/PotionUtils/getColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43577_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/PotionUtils/getPotion (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43579_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/PotionUtils/getPotion (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/Potions/ ()V net/minecraft/world/item/alchemy/Potions/ ()V +MD: net/minecraft/world/item/alchemy/Potions/ ()V net/minecraft/world/item/alchemy/Potions/ ()V +MD: net/minecraft/world/item/alchemy/Potions/m_269156_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/Potions/register (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/Potions/m_43625_ (Ljava/lang/String;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/Potions/register (Ljava/lang/String;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/armortrim/ArmorTrim/ ()V net/minecraft/world/item/armortrim/ArmorTrim/ ()V +MD: net/minecraft/world/item/armortrim/ArmorTrim/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/armortrim/ArmorTrim/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/armortrim/ArmorTrim/equals (Ljava/lang/Object;)Z net/minecraft/world/item/armortrim/ArmorTrim/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266185_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$3 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266203_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/armortrim/ArmorTrim/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266210_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/ArmorTrim/material ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266246_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266285_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/armortrim/ArmorTrim/getTrim (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266357_ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/armortrim/ArmorTrim/hasPatternAndMaterial (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266429_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/ArmorTrim/pattern ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266563_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V net/minecraft/world/item/armortrim/ArmorTrim/appendUpgradeHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266570_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/armortrim/ArmorTrim;)Z net/minecraft/world/item/armortrim/ArmorTrim/setTrim (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/armortrim/ArmorTrim;)Z +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267561_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$4 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267562_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$2 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267606_ (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/outerTexture (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267648_ (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; net/minecraft/world/item/armortrim/ArmorTrim/getColorPaletteSuffix (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267774_ (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/innerTexture (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/TrimMaterial/ ()V net/minecraft/world/item/armortrim/TrimMaterial/ ()V +MD: net/minecraft/world/item/armortrim/TrimMaterial/ (Ljava/lang/String;Lnet/minecraft/core/Holder;FLjava/util/Map;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/item/armortrim/TrimMaterial/ (Ljava/lang/String;Lnet/minecraft/core/Holder;FLjava/util/Map;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/item/armortrim/TrimMaterial/equals (Ljava/lang/Object;)Z net/minecraft/world/item/armortrim/TrimMaterial/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_265854_ ()Ljava/lang/String; net/minecraft/world/item/armortrim/TrimMaterial/assetName ()Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_265933_ ()F net/minecraft/world/item/armortrim/TrimMaterial/itemModelIndex ()F +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_265970_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/TrimMaterial/ingredient ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_266021_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/armortrim/TrimMaterial/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_267481_ ()Ljava/util/Map; net/minecraft/world/item/armortrim/TrimMaterial/overrideArmorMaterials ()Ljava/util/Map; +MD: net/minecraft/world/item/armortrim/TrimMaterial/hashCode ()I net/minecraft/world/item/armortrim/TrimMaterial/hashCode ()I +MD: net/minecraft/world/item/armortrim/TrimMaterial/m_267563_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/armortrim/TrimMaterial/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/armortrim/TrimMaterial/m_267605_ (Ljava/lang/String;Lnet/minecraft/world/item/Item;FLnet/minecraft/network/chat/Component;Ljava/util/Map;)Lnet/minecraft/world/item/armortrim/TrimMaterial; net/minecraft/world/item/armortrim/TrimMaterial/create (Ljava/lang/String;Lnet/minecraft/world/item/Item;FLnet/minecraft/network/chat/Component;Ljava/util/Map;)Lnet/minecraft/world/item/armortrim/TrimMaterial; +MD: net/minecraft/world/item/armortrim/TrimMaterial/toString ()Ljava/lang/String; net/minecraft/world/item/armortrim/TrimMaterial/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/TrimMaterials/ ()V net/minecraft/world/item/armortrim/TrimMaterials/ ()V +MD: net/minecraft/world/item/armortrim/TrimMaterials/ ()V net/minecraft/world/item/armortrim/TrimMaterials/ ()V +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266224_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/armortrim/TrimMaterials/registryKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266279_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/item/armortrim/TrimMaterials/lambda$getFromIngredient$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266479_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/item/armortrim/TrimMaterials/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266539_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/armortrim/TrimMaterials/getFromIngredient (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_267736_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;FLjava/util/Map;)V net/minecraft/world/item/armortrim/TrimMaterials/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;FLjava/util/Map;)V +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_267802_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;F)V net/minecraft/world/item/armortrim/TrimMaterials/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;F)V +MD: net/minecraft/world/item/armortrim/TrimPattern/ ()V net/minecraft/world/item/armortrim/TrimPattern/ ()V +MD: net/minecraft/world/item/armortrim/TrimPattern/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/item/armortrim/TrimPattern/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/item/armortrim/TrimPattern/equals (Ljava/lang/Object;)Z net/minecraft/world/item/armortrim/TrimPattern/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/armortrim/TrimPattern/f_265847_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/TrimPattern/templateItem ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/TrimPattern/f_265850_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/armortrim/TrimPattern/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/armortrim/TrimPattern/f_266052_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/TrimPattern/assetId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/TrimPattern/hashCode ()I net/minecraft/world/item/armortrim/TrimPattern/hashCode ()I +MD: net/minecraft/world/item/armortrim/TrimPattern/m_266379_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/armortrim/TrimPattern/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/armortrim/TrimPattern/m_266463_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/armortrim/TrimPattern/copyWithStyle (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/armortrim/TrimPattern/toString ()Ljava/lang/String; net/minecraft/world/item/armortrim/TrimPattern/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/TrimPatterns/ ()V net/minecraft/world/item/armortrim/TrimPatterns/ ()V +MD: net/minecraft/world/item/armortrim/TrimPatterns/ ()V net/minecraft/world/item/armortrim/TrimPatterns/ ()V +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266160_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/item/armortrim/TrimPatterns/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266226_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/item/armortrim/TrimPatterns/lambda$getFromTemplate$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266400_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/item/armortrim/TrimPatterns/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266452_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/armortrim/TrimPatterns/registryKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266468_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/armortrim/TrimPatterns/getFromTemplate (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/item/context/UseOnContext;)V net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/item/context/UseOnContext;)V +MD: net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/BlockPlaceContext/m_151260_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/BlockPlaceContext/getNearestLookingVerticalDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_43644_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/context/BlockPlaceContext; net/minecraft/world/item/context/BlockPlaceContext/at (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/context/BlockPlaceContext; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_6232_ ()[Lnet/minecraft/core/Direction; net/minecraft/world/item/context/BlockPlaceContext/getNearestLookingDirections ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_7058_ ()Z net/minecraft/world/item/context/BlockPlaceContext/replacingClickedOnBlock ()Z +MD: net/minecraft/world/item/context/BlockPlaceContext/m_7059_ ()Z net/minecraft/world/item/context/BlockPlaceContext/canPlace ()Z +MD: net/minecraft/world/item/context/BlockPlaceContext/m_7820_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/BlockPlaceContext/getNearestLookingDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_8083_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/item/context/BlockPlaceContext/getClickedPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)V net/minecraft/world/item/context/DirectionalPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_6232_ ()[Lnet/minecraft/core/Direction; net/minecraft/world/item/context/DirectionalPlaceContext/getNearestLookingDirections ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7058_ ()Z net/minecraft/world/item/context/DirectionalPlaceContext/replacingClickedOnBlock ()Z +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7059_ ()Z net/minecraft/world/item/context/DirectionalPlaceContext/canPlace ()Z +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7074_ ()F net/minecraft/world/item/context/DirectionalPlaceContext/getRotation ()F +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7078_ ()Z net/minecraft/world/item/context/DirectionalPlaceContext/isSecondaryUseActive ()Z +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7820_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/DirectionalPlaceContext/getNearestLookingDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_8083_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/item/context/DirectionalPlaceContext/getClickedPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_8125_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/DirectionalPlaceContext/getHorizontalDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/DirectionalPlaceContext$1/ ()V net/minecraft/world/item/context/DirectionalPlaceContext$1/ ()V +MD: net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/UseOnContext/m_43718_ ()Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/item/context/UseOnContext/getHitResult ()Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/item/context/UseOnContext/m_43719_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/UseOnContext/getClickedFace ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/UseOnContext/m_43720_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/item/context/UseOnContext/getClickLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/item/context/UseOnContext/m_43721_ ()Z net/minecraft/world/item/context/UseOnContext/isInside ()Z +MD: net/minecraft/world/item/context/UseOnContext/m_43722_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/context/UseOnContext/getItemInHand ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/context/UseOnContext/m_43723_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/item/context/UseOnContext/getPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/item/context/UseOnContext/m_43724_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/world/item/context/UseOnContext/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/item/context/UseOnContext/m_43725_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/item/context/UseOnContext/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/item/context/UseOnContext/m_7074_ ()F net/minecraft/world/item/context/UseOnContext/getRotation ()F +MD: net/minecraft/world/item/context/UseOnContext/m_7078_ ()Z net/minecraft/world/item/context/UseOnContext/isSecondaryUseActive ()Z +MD: net/minecraft/world/item/context/UseOnContext/m_8083_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/item/context/UseOnContext/getClickedPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/item/context/UseOnContext/m_8125_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/UseOnContext/getHorizontalDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/AbstractCookingRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_245534_ ()Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/AbstractCookingRecipe/category ()Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_43750_ ()F net/minecraft/world/item/crafting/AbstractCookingRecipe/getExperience ()F +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_43753_ ()I net/minecraft/world/item/crafting/AbstractCookingRecipe/getCookingTime ()I +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/AbstractCookingRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/AbstractCookingRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/AbstractCookingRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/AbstractCookingRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/AbstractCookingRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/AbstractCookingRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/AbstractCookingRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/AbstractCookingRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/ArmorDyeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ArmorDyeRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ArmorDyeRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ArmorDyeRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ArmorDyeRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ArmorDyeRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ArmorDyeRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/BannerDuplicateRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BannerDuplicateRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BannerDuplicateRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BannerDuplicateRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BannerDuplicateRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_7457_ (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BannerDuplicateRecipe/getRemainingItems (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_7457_ (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BannerDuplicateRecipe/getRemainingItems (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/BannerDuplicateRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/BannerDuplicateRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/BlastingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/BlastingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/BlastingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/BlastingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/BlastingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BlastingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/BookCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BookCloningRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BookCloningRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BookCloningRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BookCloningRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_7457_ (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BookCloningRecipe/getRemainingItems (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_7457_ (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BookCloningRecipe/getRemainingItems (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/BookCloningRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/BookCloningRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/CampfireCookingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/CampfireCookingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/CampfireCookingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/CampfireCookingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/CampfireCookingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/CampfireCookingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/CookingBookCategory/ ()V net/minecraft/world/item/crafting/CookingBookCategory/ ()V +MD: net/minecraft/world/item/crafting/CookingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/item/crafting/CookingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/item/crafting/CookingBookCategory/m_247680_ ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/CookingBookCategory/$values ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/CookingBookCategory/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/crafting/CookingBookCategory/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/CookingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/CookingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/CookingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/CookingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/ ()V net/minecraft/world/item/crafting/CraftingBookCategory/ ()V +MD: net/minecraft/world/item/crafting/CraftingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/item/crafting/CraftingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/item/crafting/CraftingBookCategory/m_245314_ ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingBookCategory/$values ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/crafting/CraftingBookCategory/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/CraftingRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/CustomRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/CustomRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/CustomRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CustomRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CustomRecipe/m_5598_ ()Z net/minecraft/world/item/crafting/CustomRecipe/isSpecial ()Z +MD: net/minecraft/world/item/crafting/CustomRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/CustomRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/CustomRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/CustomRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/DecoratedPotRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_284234_ (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/DecoratedPotRecipe/createDecoratedPotItem (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/DecoratedPotRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/DecoratedPotRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/DecoratedPotRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/DecoratedPotRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/DecoratedPotRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/DecoratedPotRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/ ()V net/minecraft/world/item/crafting/FireworkRocketRecipe/ ()V +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/FireworkRocketRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkRocketRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkRocketRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkRocketRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkRocketRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/FireworkRocketRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/FireworkRocketRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkRocketRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ ()V net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ ()V +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarFadeRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarFadeRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarFadeRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarFadeRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/FireworkStarFadeRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/FireworkStarFadeRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/ ()V net/minecraft/world/item/crafting/FireworkStarRecipe/ ()V +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/FireworkStarRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_260791_ (Ljava/util/HashMap;)V net/minecraft/world/item/crafting/FireworkStarRecipe/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/FireworkStarRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/FireworkStarRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Ingredient/ ()V net/minecraft/world/item/crafting/Ingredient/ ()V +MD: net/minecraft/world/item/crafting/Ingredient/ (Ljava/util/stream/Stream;)V net/minecraft/world/item/crafting/Ingredient/ (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/item/crafting/Ingredient/m_151265_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_204132_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_288218_ (Lcom/google/gson/JsonElement;Z)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromJson (Lcom/google/gson/JsonElement;Z)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_289713_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient$Value; net/minecraft/world/item/crafting/Ingredient/lambda$fromJson$4 (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient$Value; +MD: net/minecraft/world/item/crafting/Ingredient/m_43908_ ()[Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Ingredient/getItems ()[Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Ingredient/m_43909_ (I)[Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Ingredient/lambda$getItems$2 (I)[Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Ingredient/m_43915_ (Lnet/minecraft/world/item/crafting/Ingredient$Value;)Ljava/util/stream/Stream; net/minecraft/world/item/crafting/Ingredient/lambda$getItems$1 (Lnet/minecraft/world/item/crafting/Ingredient$Value;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/Ingredient/m_43917_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43919_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; net/minecraft/world/item/crafting/Ingredient/valueFromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; +MD: net/minecraft/world/item/crafting/Ingredient/m_43921_ (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43923_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/item/crafting/Ingredient/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/item/crafting/Ingredient/m_43927_ ([Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of ([Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43929_ ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43931_ ()Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/world/item/crafting/Ingredient/getStackingIds ()Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/world/item/crafting/Ingredient/m_43932_ (I)[Lnet/minecraft/world/item/crafting/Ingredient$Value; net/minecraft/world/item/crafting/Ingredient/lambda$new$0 (I)[Lnet/minecraft/world/item/crafting/Ingredient$Value; +MD: net/minecraft/world/item/crafting/Ingredient/m_43938_ (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromValues (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43940_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43942_ ()Lcom/google/gson/JsonElement; net/minecraft/world/item/crafting/Ingredient/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/world/item/crafting/Ingredient/m_43943_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/Ingredient/lambda$of$3 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/Ingredient/m_43947_ ()Z net/minecraft/world/item/crafting/Ingredient/isEmpty ()Z +MD: net/minecraft/world/item/crafting/Ingredient/test (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/Ingredient/test (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/Ingredient/test (Ljava/lang/Object;)Z net/minecraft/world/item/crafting/Ingredient/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/crafting/Ingredient$ItemValue/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/Ingredient$ItemValue/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/Ingredient$ItemValue/m_6223_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/Ingredient$ItemValue/getItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/Ingredient$ItemValue/m_6544_ ()Lcom/google/gson/JsonObject; net/minecraft/world/item/crafting/Ingredient$ItemValue/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/item/crafting/Ingredient$TagValue/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/item/crafting/Ingredient$TagValue/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/item/crafting/Ingredient$TagValue/m_6223_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/Ingredient$TagValue/getItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/Ingredient$TagValue/m_6544_ ()Lcom/google/gson/JsonObject; net/minecraft/world/item/crafting/Ingredient$TagValue/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/item/crafting/Ingredient$Value/m_6223_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/Ingredient$Value/getItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/Ingredient$Value/m_6544_ ()Lcom/google/gson/JsonObject; net/minecraft/world/item/crafting/Ingredient$Value/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/MapCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapCloningRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapCloningRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapCloningRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapCloningRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/MapCloningRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/MapCloningRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/MapExtendingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_278773_ (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapExtendingRecipe/findFilledMap (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5598_ ()Z net/minecraft/world/item/crafting/MapExtendingRecipe/isSpecial ()Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapExtendingRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapExtendingRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapExtendingRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapExtendingRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/MapExtendingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/Recipe/m_142505_ ()Z net/minecraft/world/item/crafting/Recipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/Recipe/m_151267_ (Lnet/minecraft/world/item/crafting/Ingredient;)Z net/minecraft/world/item/crafting/Recipe/lambda$isIncomplete$0 (Lnet/minecraft/world/item/crafting/Ingredient;)Z +MD: net/minecraft/world/item/crafting/Recipe/m_271738_ ()Z net/minecraft/world/item/crafting/Recipe/showNotification ()Z +MD: net/minecraft/world/item/crafting/Recipe/m_5598_ ()Z net/minecraft/world/item/crafting/Recipe/isSpecial ()Z +MD: net/minecraft/world/item/crafting/Recipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/Recipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/Recipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Recipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Recipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/Recipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/Recipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/Recipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/Recipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/Recipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/Recipe/m_7457_ (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/Recipe/getRemainingItems (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/Recipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/Recipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/Recipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/Recipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/Recipe/m_8004_ (II)Z net/minecraft/world/item/crafting/Recipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/Recipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Recipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Recipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Recipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/RecipeManager/ ()V net/minecraft/world/item/crafting/RecipeManager/ ()V +MD: net/minecraft/world/item/crafting/RecipeManager/ ()V net/minecraft/world/item/crafting/RecipeManager/ ()V +MD: net/minecraft/world/item/crafting/RecipeManager/m_151269_ ()Z net/minecraft/world/item/crafting/RecipeManager/hadErrorsLoading ()Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220238_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipesFor$5 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220242_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Ljava/util/Map$Entry;)Z net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeFor$3 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220248_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager/getRecipeFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220253_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/item/crafting/RecipeManager/lambda$fromJson$9 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220255_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeFor$4 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220257_ (Ljava/util/Map;)Ljava/util/stream/Stream; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeIds$8 (Ljava/util/Map;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220259_ (Ljava/util/Map;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/RecipeManager/lambda$replaceRecipes$11 (Ljava/util/Map;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/RecipeManager/m_220263_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeFor$2 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220267_ (Lnet/minecraft/world/item/crafting/RecipeType;)Lnet/minecraft/world/item/crafting/RecipeManager$CachedCheck; net/minecraft/world/item/crafting/RecipeManager/createCheck (Lnet/minecraft/world/item/crafting/RecipeType;)Lnet/minecraft/world/item/crafting/RecipeManager$CachedCheck; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220269_ (Ljava/util/Map;)Ljava/util/stream/Stream; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipes$7 (Ljava/util/Map;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220271_ (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; net/minecraft/world/item/crafting/RecipeManager/lambda$replaceRecipes$10 (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/RecipeManager/m_268980_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/String; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipesFor$6 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/String; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44013_ (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/List; net/minecraft/world/item/crafting/RecipeManager/getAllRecipesFor (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/List; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44015_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager/getRecipeFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44024_ (Ljava/lang/Iterable;)V net/minecraft/world/item/crafting/RecipeManager/replaceRecipes (Ljava/lang/Iterable;)V +MD: net/minecraft/world/item/crafting/RecipeManager/m_44032_ (Ljava/util/Map$Entry;)Ljava/util/Map; net/minecraft/world/item/crafting/RecipeManager/lambda$apply$1 (Ljava/util/Map$Entry;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44043_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager/byKey (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44045_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/RecipeManager/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44051_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/RecipeManager/getRecipes ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44054_ (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; net/minecraft/world/item/crafting/RecipeManager/byType (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44056_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/List; net/minecraft/world/item/crafting/RecipeManager/getRecipesFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/List; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44069_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/RecipeManager/getRemainingItemsFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44073_ ()Ljava/util/stream/Stream; net/minecraft/world/item/crafting/RecipeManager/getRecipeIds ()Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44074_ (Lnet/minecraft/world/item/crafting/RecipeType;)Lcom/google/common/collect/ImmutableMap$Builder; net/minecraft/world/item/crafting/RecipeManager/lambda$apply$0 (Lnet/minecraft/world/item/crafting/RecipeType;)Lcom/google/common/collect/ImmutableMap$Builder; +MD: net/minecraft/world/item/crafting/RecipeManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/world/item/crafting/RecipeManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/world/item/crafting/RecipeManager/m_5787_ (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/world/item/crafting/RecipeManager/apply (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/world/item/crafting/RecipeManager$1/ (Lnet/minecraft/world/item/crafting/RecipeType;)V net/minecraft/world/item/crafting/RecipeManager$1/ (Lnet/minecraft/world/item/crafting/RecipeType;)V +MD: net/minecraft/world/item/crafting/RecipeManager$1/m_213657_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager$1/getRecipeFor (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager$CachedCheck/m_213657_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager$CachedCheck/getRecipeFor (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeSerializer/ ()V net/minecraft/world/item/crafting/RecipeSerializer/ ()V +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_44098_ (Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/RecipeSerializer/register (Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/RecipeSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/RecipeSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/RecipeSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/RecipeType/ ()V net/minecraft/world/item/crafting/RecipeType/ ()V +MD: net/minecraft/world/item/crafting/RecipeType/m_44119_ (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/RecipeType/register (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/RecipeType$1/ (Ljava/lang/String;)V net/minecraft/world/item/crafting/RecipeType$1/ (Ljava/lang/String;)V +MD: net/minecraft/world/item/crafting/RecipeType$1/toString ()Ljava/lang/String; net/minecraft/world/item/crafting/RecipeType$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/RepairItemRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_44140_ (Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/crafting/RepairItemRecipe/lambda$assemble$0 (Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/RepairItemRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/RepairItemRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/RepairItemRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/RepairItemRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/RepairItemRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/RepairItemRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_142505_ ()Z net/minecraft/world/item/crafting/ShapedRecipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151272_ (Lnet/minecraft/world/item/crafting/Ingredient;)Z net/minecraft/world/item/crafting/ShapedRecipe/lambda$isIncomplete$1 (Lnet/minecraft/world/item/crafting/Ingredient;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151274_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/itemStackFromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151276_ (Lnet/minecraft/world/item/crafting/Ingredient;)Z net/minecraft/world/item/crafting/ShapedRecipe/lambda$isIncomplete$0 (Lnet/minecraft/world/item/crafting/Ingredient;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151278_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/crafting/ShapedRecipe/itemFromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151280_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/item/crafting/ShapedRecipe/lambda$itemFromJson$2 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/ShapedRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_271738_ ()Z net/minecraft/world/item/crafting/ShapedRecipe/showNotification ()Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44170_ (Lnet/minecraft/world/inventory/CraftingContainer;IIZ)Z net/minecraft/world/item/crafting/ShapedRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;IIZ)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44184_ (Ljava/lang/String;)I net/minecraft/world/item/crafting/ShapedRecipe/firstNonSpace (Ljava/lang/String;)I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44186_ ([Ljava/lang/String;)[Ljava/lang/String; net/minecraft/world/item/crafting/ShapedRecipe/shrink ([Ljava/lang/String;)[Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44196_ (Lcom/google/gson/JsonArray;)[Ljava/lang/String; net/minecraft/world/item/crafting/ShapedRecipe/patternFromJson (Lcom/google/gson/JsonArray;)[Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44200_ (Ljava/lang/String;)I net/minecraft/world/item/crafting/ShapedRecipe/lastNonSpace (Ljava/lang/String;)I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44202_ ([Ljava/lang/String;Ljava/util/Map;II)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapedRecipe/dissolvePattern ([Ljava/lang/String;Ljava/util/Map;II)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44210_ (Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/world/item/crafting/ShapedRecipe/keyFromJson (Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44220_ ()I net/minecraft/world/item/crafting/ShapedRecipe/getWidth ()I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44221_ ()I net/minecraft/world/item/crafting/ShapedRecipe/getHeight ()I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapedRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapedRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/ShapedRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/ShapedRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapedRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShapedRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ShapedRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/ ()V net/minecraft/world/item/crafting/ShapedRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapedRecipe;)V net/minecraft/world/item/crafting/ShapedRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapedRecipe;)V +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/ShapedRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapedRecipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapedRecipe; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapedRecipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapedRecipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/item/crafting/ShapelessRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/ShapelessRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapelessRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapelessRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapelessRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapelessRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/ShapelessRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/ShapelessRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapelessRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShapelessRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ShapelessRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapelessRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/ ()V net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_44275_ (Lcom/google/gson/JsonArray;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/itemsFromJson (Lcom/google/gson/JsonArray;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapelessRecipe;)V net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapelessRecipe;)V +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/ShieldDecorationRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShieldDecorationRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShieldDecorationRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShieldDecorationRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShieldDecorationRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShieldDecorationRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ShieldDecorationRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/ShulkerBoxColoring/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShulkerBoxColoring/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShulkerBoxColoring/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShulkerBoxColoring/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShulkerBoxColoring/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShulkerBoxColoring/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_8004_ (II)Z net/minecraft/world/item/crafting/ShulkerBoxColoring/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker;I)V net/minecraft/world/item/crafting/SimpleCookingSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker;I)V +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_44332_ (Ljava/lang/String;)Ljava/lang/IllegalStateException; net/minecraft/world/item/crafting/SimpleCookingSerializer/lambda$fromJson$0 (Ljava/lang/String;)Ljava/lang/IllegalStateException; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/AbstractCookingRecipe;)V net/minecraft/world/item/crafting/SimpleCookingSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/AbstractCookingRecipe;)V +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SimpleCookingSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker/m_44352_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker/create (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory;)V net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory;)V +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/CraftingRecipe;)V net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/CraftingRecipe;)V +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/CraftingRecipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/CraftingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/CraftingRecipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/CraftingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory/m_247316_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)Lnet/minecraft/world/item/crafting/CraftingRecipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)Lnet/minecraft/world/item/crafting/CraftingRecipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/SingleItemRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SingleItemRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/SingleItemRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/SingleItemRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/SingleItemRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/SingleItemRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SingleItemRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/SingleItemRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SingleItemRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/ (Lnet/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker;)V net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/ (Lnet/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SingleItemRecipe;)V net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SingleItemRecipe;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker/m_44454_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker/create (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; +MD: net/minecraft/world/item/crafting/SmeltingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/SmeltingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/SmeltingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmeltingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmeltingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmeltingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_266166_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingRecipe/isTemplateIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_266253_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingRecipe/isAdditionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_266343_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingRecipe/isBaseIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/SmithingRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/SmithingRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/SmithingTransformRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_142505_ ()Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_266166_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isTemplateIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_266253_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isAdditionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_266343_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isBaseIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTransformRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/SmithingTransformRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmithingTransformRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTransformRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/ ()V net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTransformRecipe;)V net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTransformRecipe;)V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V net/minecraft/world/item/crafting/SmithingTrimRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_142505_ ()Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_266166_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isTemplateIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_266253_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isAdditionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_266343_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isBaseIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTrimRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/SmithingTrimRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmithingTrimRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTrimRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/ ()V net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTrimRecipe;)V net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTrimRecipe;)V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmokingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/SmokingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/SmokingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmokingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmokingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmokingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/StonecutterRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/StonecutterRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/StonecutterRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/StonecutterRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/StonecutterRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/StonecutterRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/SuspiciousStewRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SuspiciousStewRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SuspiciousStewRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SuspiciousStewRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SuspiciousStewRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SuspiciousStewRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/SuspiciousStewRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/TippedArrowRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/TippedArrowRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/TippedArrowRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/TippedArrowRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/TippedArrowRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/TippedArrowRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/TippedArrowRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowDamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowDamageEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowDamageEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ArrowDamageEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ArrowFireEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowFireEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowFireEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowFireEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowFireEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowFireEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/BindingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/BindingCurseEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/BindingCurseEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/BindingCurseEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6589_ ()Z net/minecraft/world/item/enchantment/BindingCurseEnchantment/isCurse ()Z +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/BindingCurseEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/DamageEnchantment/ ()V net/minecraft/world/item/enchantment/DamageEnchantment/ ()V +MD: net/minecraft/world/item/enchantment/DamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;I[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/DamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;I[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/DamageEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/DamageEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/DamageEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/DamageEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/DamageEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_7335_ (ILnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/DamageEnchantment/getDamageBonus (ILnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_7677_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/DamageEnchantment/doPostAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/DigDurabilityEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_220282_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/util/RandomSource;)Z net/minecraft/world/item/enchantment/DigDurabilityEnchantment/shouldIgnoreDurabilityDrop (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/DigDurabilityEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/DigDurabilityEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/DigDurabilityEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/DigDurabilityEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/DiggingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/DiggingEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/DiggingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/DiggingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/DiggingEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/Enchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/Enchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/Enchantment/m_44684_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map; net/minecraft/world/item/enchantment/Enchantment/getSlotItems (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44695_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/Enchantment/isCompatibleWith (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_44697_ (I)Lnet/minecraft/world/item/enchantment/Enchantment; net/minecraft/world/item/enchantment/Enchantment/byId (I)Lnet/minecraft/world/item/enchantment/Enchantment; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44699_ ()Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment/getRarity ()Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44700_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/enchantment/Enchantment/getFullname (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44702_ ()I net/minecraft/world/item/enchantment/Enchantment/getMinLevel ()I +MD: net/minecraft/world/item/enchantment/Enchantment/m_44703_ ()Ljava/lang/String; net/minecraft/world/item/enchantment/Enchantment/getOrCreateDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44704_ ()Ljava/lang/String; net/minecraft/world/item/enchantment/Enchantment/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/enchantment/Enchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/Enchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/Enchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/Enchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/Enchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/Enchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/Enchantment/m_6586_ ()I net/minecraft/world/item/enchantment/Enchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/Enchantment/m_6589_ ()Z net/minecraft/world/item/enchantment/Enchantment/isCurse ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/Enchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6592_ ()Z net/minecraft/world/item/enchantment/Enchantment/isDiscoverable ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6594_ ()Z net/minecraft/world/item/enchantment/Enchantment/isTradeable ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_7205_ (ILnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/world/item/enchantment/Enchantment/getDamageProtection (ILnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/world/item/enchantment/Enchantment/m_7335_ (ILnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/Enchantment/getDamageBonus (ILnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/Enchantment/m_7675_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/Enchantment/doPostHurt (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/Enchantment/m_7677_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/Enchantment/doPostAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/ ()V net/minecraft/world/item/enchantment/Enchantment$Rarity/ ()V +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/ (Ljava/lang/String;II)V net/minecraft/world/item/enchantment/Enchantment$Rarity/ (Ljava/lang/String;II)V +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/m_151292_ ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment$Rarity/$values ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/m_44716_ ()I net/minecraft/world/item/enchantment/Enchantment$Rarity/getWeight ()I +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment$Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/values ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment$Rarity/values ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/ ()V net/minecraft/world/item/enchantment/EnchantmentCategory/ ()V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/m_151293_ ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; net/minecraft/world/item/enchantment/EnchantmentCategory/$values ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/EnchantmentCategory; net/minecraft/world/item/enchantment/EnchantmentCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/values ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; net/minecraft/world/item/enchantment/EnchantmentCategory/values ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$1/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$1/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$1/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$10/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$10/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$10/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$10/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$11/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$11/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$11/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$11/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$12/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$12/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$12/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$12/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$13/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$13/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$13/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$13/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$14/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$14/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$14/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$14/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$2/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$2/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$2/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$3/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$3/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$3/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$4/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$4/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$4/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$4/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$5/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$5/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$5/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$5/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$6/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$6/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$6/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$6/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$7/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$7/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$7/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$7/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$8/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$8/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$8/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$8/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$9/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$9/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$9/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$9/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/ ()V net/minecraft/world/item/enchantment/EnchantmentHelper/ ()V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182432_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentId (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182434_ (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$runIterationOnItem$1 (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182438_ (Lnet/minecraft/nbt/CompoundTag;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentLevel (Lnet/minecraft/nbt/CompoundTag;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182440_ (Lnet/minecraft/nbt/CompoundTag;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/setEnchantmentLevel (Lnet/minecraft/nbt/CompoundTag;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182443_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/enchantment/EnchantmentHelper/storeEnchantment (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182446_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentId (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220287_ (Lnet/minecraft/util/RandomSource;IILnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentCost (Lnet/minecraft/util/RandomSource;IILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220292_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/enchantment/EnchantmentHelper/enchantItem (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220297_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Ljava/util/List; net/minecraft/world/item/enchantment/EnchantmentHelper/selectEnchantment (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Ljava/util/List; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220302_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/item/enchantment/EnchantmentHelper/getSneakingSpeedBonus (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_272262_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasSilkTouch (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44817_ (ILnet/minecraft/world/item/ItemStack;Z)Ljava/util/List; net/minecraft/world/item/enchantment/EnchantmentHelper/getAvailableEnchantmentResults (ILnet/minecraft/world/item/ItemStack;Z)Ljava/util/List; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44821_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/item/enchantment/EnchantmentHelper/getSweepingDamageRatio (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44823_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/enchantment/EnchantmentHelper/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44826_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$doPostDamageEffects$5 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44831_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Map; net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantments (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Map; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44833_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/EnchantmentHelper/getDamageBonus (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44836_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentLevel (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44839_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Ljava/util/Map$Entry; net/minecraft/world/item/enchantment/EnchantmentHelper/getRandomItemWith (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Ljava/util/Map$Entry; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44843_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getItemEnchantmentLevel (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44850_ (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/enchantment/EnchantmentHelper/runIterationOnItem (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44853_ (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Ljava/lang/Iterable;)V net/minecraft/world/item/enchantment/EnchantmentHelper/runIterationOnInventory (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Ljava/lang/Iterable;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44856_ (Ljava/lang/Iterable;Lnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getDamageProtection (Ljava/lang/Iterable;Lnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44859_ (Ljava/util/Collection;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/isEnchantmentCompatible (Ljava/util/Collection;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44862_ (Ljava/util/List;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V net/minecraft/world/item/enchantment/EnchantmentHelper/filterCompatibleEnchantments (Ljava/util/List;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44865_ (Ljava/util/Map;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/enchantment/EnchantmentHelper/setEnchantments (Ljava/util/Map;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44868_ (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$deserializeEnchantments$0 (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44882_ (Lnet/minecraft/nbt/ListTag;)Ljava/util/Map; net/minecraft/world/item/enchantment/EnchantmentHelper/deserializeEnchantments (Lnet/minecraft/nbt/ListTag;)Ljava/util/Map; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44884_ (Lorg/apache/commons/lang3/mutable/MutableFloat;Lnet/minecraft/world/entity/MobType;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$getDamageBonus$3 (Lorg/apache/commons/lang3/mutable/MutableFloat;Lnet/minecraft/world/entity/MobType;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44889_ (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$getDamageProtection$2 (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44894_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getKnockbackBonus (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44896_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/enchantment/EnchantmentHelper/doPostDamageEffects (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44899_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$doPostHurtEffects$4 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44904_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getFishingLuckBonus (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44906_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map$Entry; net/minecraft/world/item/enchantment/EnchantmentHelper/getRandomItemWith (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map$Entry; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44914_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getFireAspect (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44916_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getFishingSpeedBonus (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44918_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getRespiration (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44920_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasBindingCurse (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44922_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getDepthStrider (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44924_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasVanishingCurse (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44926_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getBlockEfficiency (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44928_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getLoyalty (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44930_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getMobLooting (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44932_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getRiptide (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44934_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasAquaAffinity (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44936_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasChanneling (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44938_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasFrostWalker (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44940_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$getRandomItemWith$6 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44942_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasSoulSpeed (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor/m_44944_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor/accept (Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentInstance/ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentInstance/ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/Enchantments/ ()V net/minecraft/world/item/enchantment/Enchantments/ ()V +MD: net/minecraft/world/item/enchantment/Enchantments/ ()V net/minecraft/world/item/enchantment/Enchantments/ ()V +MD: net/minecraft/world/item/enchantment/Enchantments/m_44992_ (Ljava/lang/String;Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/enchantment/Enchantment; net/minecraft/world/item/enchantment/Enchantments/register (Ljava/lang/String;Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/enchantment/Enchantment; +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/FireAspectEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/FireAspectEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/FireAspectEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/FireAspectEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/FishingSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/FishingSpeedEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/FishingSpeedEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/FishingSpeedEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/FrostWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_45018_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/item/enchantment/FrostWalkerEnchantment/onEntityMoved (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/FrostWalkerEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/FrostWalkerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/FrostWalkerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/FrostWalkerEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/FrostWalkerEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/KnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/KnockbackEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/KnockbackEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/KnockbackEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/LootBonusEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/LootBonusEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/LootBonusEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/LootBonusEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/LootBonusEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/MendingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/MendingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/MendingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/MendingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/MendingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/MendingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/MendingEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/MendingEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/MultiShotEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/MultiShotEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/MultiShotEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/MultiShotEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/OxygenEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/OxygenEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/OxygenEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/OxygenEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ProtectionEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_45135_ (Lnet/minecraft/world/entity/LivingEntity;D)D net/minecraft/world/item/enchantment/ProtectionEnchantment/getExplosionKnockbackAfterDampener (Lnet/minecraft/world/entity/LivingEntity;D)D +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_45138_ (Lnet/minecraft/world/entity/LivingEntity;I)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getFireAfterDampener (Lnet/minecraft/world/entity/LivingEntity;I)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/ProtectionEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ProtectionEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_7205_ (ILnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getDamageProtection (ILnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ ()V net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ ()V +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ (Ljava/lang/String;III)V net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ (Ljava/lang/String;III)V +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/m_151301_ ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/$values ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/m_45161_ ()I net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/getMinCost ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/m_45162_ ()I net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/getLevelCost ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/values ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/values ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/QuickChargeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/QuickChargeEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/QuickChargeEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/QuickChargeEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/SoulSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/SoulSpeedEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/SoulSpeedEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/SoulSpeedEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/SoulSpeedEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6592_ ()Z net/minecraft/world/item/enchantment/SoulSpeedEnchantment/isDiscoverable ()Z +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6594_ ()Z net/minecraft/world/item/enchantment/SoulSpeedEnchantment/isTradeable ()Z +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_45193_ (I)F net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getSweepingDamageRatio (I)F +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/SwiftSneakEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/SwiftSneakEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/SwiftSneakEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/SwiftSneakEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/SwiftSneakEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6592_ ()Z net/minecraft/world/item/enchantment/SwiftSneakEnchantment/isDiscoverable ()Z +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6594_ ()Z net/minecraft/world/item/enchantment/SwiftSneakEnchantment/isTradeable ()Z +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ThornsEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_220316_ (ILnet/minecraft/util/RandomSource;)Z net/minecraft/world/item/enchantment/ThornsEnchantment/shouldHit (ILnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_220319_ (ILnet/minecraft/util/RandomSource;)I net/minecraft/world/item/enchantment/ThornsEnchantment/getDamage (ILnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_45206_ (Ljava/util/Map$Entry;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/enchantment/ThornsEnchantment/lambda$doPostHurt$0 (Ljava/util/Map$Entry;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/ThornsEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ThornsEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ThornsEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ThornsEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_7675_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/ThornsEnchantment/doPostHurt (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/TridentChannelingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentChannelingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentChannelingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentChannelingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentChannelingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentChannelingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentImpalerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_7335_ (ILnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getDamageBonus (ILnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentRiptideEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/TridentRiptideEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentRiptideEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentRiptideEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/TridentRiptideEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/UntouchingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/UntouchingEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/UntouchingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/UntouchingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/VanishingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/VanishingCurseEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/VanishingCurseEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6589_ ()Z net/minecraft/world/item/enchantment/VanishingCurseEnchantment/isCurse ()Z +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/VanishingCurseEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/WaterWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/WaterWalkerEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/WaterWalkerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/WaterWalkerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/WaterWalkerEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/WaterWorkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/WaterWorkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/WaterWorkerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/WaterWorkerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/WaterWorkerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/WaterWorkerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/trading/Merchant/m_183595_ ()Z net/minecraft/world/item/trading/Merchant/isClientSide ()Z +MD: net/minecraft/world/item/trading/Merchant/m_45297_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/item/trading/Merchant/lambda$openTradingScreen$0 (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/item/trading/Merchant/m_45301_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;I)V net/minecraft/world/item/trading/Merchant/openTradingScreen (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/world/item/trading/Merchant/m_6255_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/item/trading/Merchant/overrideOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/item/trading/Merchant/m_6616_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/item/trading/Merchant/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/item/trading/Merchant/m_6621_ (I)V net/minecraft/world/item/trading/Merchant/overrideXp (I)V +MD: net/minecraft/world/item/trading/Merchant/m_6996_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/item/trading/Merchant/notifyTrade (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/item/trading/Merchant/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/trading/Merchant/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/trading/Merchant/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/trading/Merchant/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/trading/Merchant/m_7713_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/trading/Merchant/notifyTradeUpdated (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/trading/Merchant/m_7809_ ()I net/minecraft/world/item/trading/Merchant/getVillagerXp ()I +MD: net/minecraft/world/item/trading/Merchant/m_7826_ ()Z net/minecraft/world/item/trading/Merchant/showProgressBar ()Z +MD: net/minecraft/world/item/trading/Merchant/m_7862_ ()Z net/minecraft/world/item/trading/Merchant/canRestock ()Z +MD: net/minecraft/world/item/trading/Merchant/m_7962_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/item/trading/Merchant/getTradingPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIF)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIF)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIFI)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIFI)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45352_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getBaseCostA ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45353_ (I)V net/minecraft/world/item/trading/MerchantOffer/addToSpecialPriceDiff (I)V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45355_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/trading/MerchantOffer/satisfiedBy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45358_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getCostA ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45359_ (I)V net/minecraft/world/item/trading/MerchantOffer/setSpecialPriceDiff (I)V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45361_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/trading/MerchantOffer/take (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45364_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getCostB ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45365_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/trading/MerchantOffer/isRequiredItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45368_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45369_ ()V net/minecraft/world/item/trading/MerchantOffer/updateDemand ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45370_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/assemble ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45371_ ()I net/minecraft/world/item/trading/MerchantOffer/getUses ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45372_ ()V net/minecraft/world/item/trading/MerchantOffer/resetUses ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45373_ ()I net/minecraft/world/item/trading/MerchantOffer/getMaxUses ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45374_ ()V net/minecraft/world/item/trading/MerchantOffer/increaseUses ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45375_ ()I net/minecraft/world/item/trading/MerchantOffer/getDemand ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45376_ ()V net/minecraft/world/item/trading/MerchantOffer/resetSpecialPriceDiff ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45377_ ()I net/minecraft/world/item/trading/MerchantOffer/getSpecialPriceDiff ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45378_ ()F net/minecraft/world/item/trading/MerchantOffer/getPriceMultiplier ()F +MD: net/minecraft/world/item/trading/MerchantOffer/m_45379_ ()I net/minecraft/world/item/trading/MerchantOffer/getXp ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45380_ ()Z net/minecraft/world/item/trading/MerchantOffer/isOutOfStock ()Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45381_ ()V net/minecraft/world/item/trading/MerchantOffer/setToOutOfStock ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45382_ ()Z net/minecraft/world/item/trading/MerchantOffer/needsRestock ()Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45383_ ()Z net/minecraft/world/item/trading/MerchantOffer/shouldRewardExp ()Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45384_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/trading/MerchantOffer/createTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/trading/MerchantOffers/ (I)V net/minecraft/world/item/trading/MerchantOffers/ (I)V +MD: net/minecraft/world/item/trading/MerchantOffers/ ()V net/minecraft/world/item/trading/MerchantOffers/ ()V +MD: net/minecraft/world/item/trading/MerchantOffers/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/trading/MerchantOffers/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/trading/MerchantOffers/m_220324_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/item/trading/MerchantOffers/lambda$writeToStream$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/item/trading/MerchantOffers/m_220327_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/item/trading/MerchantOffers/lambda$createFromStream$1 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/item/trading/MerchantOffers/m_45388_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/trading/MerchantOffers/createTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/trading/MerchantOffers/m_45389_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/item/trading/MerchantOffers/getRecipeFor (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/item/trading/MerchantOffers/m_45393_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/item/trading/MerchantOffers/writeToStream (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/item/trading/MerchantOffers/m_45395_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/item/trading/MerchantOffers/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/level/BaseCommandBlock/ ()V net/minecraft/world/level/BaseCommandBlock/ ()V +MD: net/minecraft/world/level/BaseCommandBlock/ ()V net/minecraft/world/level/BaseCommandBlock/ ()V +MD: net/minecraft/world/level/BaseCommandBlock/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/BaseCommandBlock/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_288209_ ()Z net/minecraft/world/level/BaseCommandBlock/isValid ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_45410_ (I)V net/minecraft/world/level/BaseCommandBlock/setSuccessCount (I)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45412_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/BaseCommandBlock/usedBy (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/BaseCommandBlock/m_45414_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/BaseCommandBlock/performCommand (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/BaseCommandBlock/m_45416_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/world/level/BaseCommandBlock/lambda$performCommand$0 (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45421_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/BaseCommandBlock/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/BaseCommandBlock/m_45423_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/BaseCommandBlock/setName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45428_ (Z)V net/minecraft/world/level/BaseCommandBlock/setTrackOutput (Z)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45431_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/BaseCommandBlock/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45433_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/BaseCommandBlock/setLastOutput (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45435_ ()Ljava/lang/String; net/minecraft/world/level/BaseCommandBlock/lambda$performCommand$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/BaseCommandBlock/m_45436_ ()I net/minecraft/world/level/BaseCommandBlock/getSuccessCount ()I +MD: net/minecraft/world/level/BaseCommandBlock/m_45437_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/BaseCommandBlock/getLastOutput ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/BaseCommandBlock/m_45438_ ()Ljava/lang/String; net/minecraft/world/level/BaseCommandBlock/getCommand ()Ljava/lang/String; +MD: net/minecraft/world/level/BaseCommandBlock/m_45439_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/BaseCommandBlock/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/BaseCommandBlock/m_45440_ ()Z net/minecraft/world/level/BaseCommandBlock/isTrackOutput ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_5991_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/BaseCommandBlock/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/BaseCommandBlock/m_6102_ ()Z net/minecraft/world/level/BaseCommandBlock/shouldInformAdmins ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_6590_ (Ljava/lang/String;)V net/minecraft/world/level/BaseCommandBlock/setCommand (Ljava/lang/String;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_6607_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/BaseCommandBlock/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/BaseCommandBlock/m_6712_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/BaseCommandBlock/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/BaseCommandBlock/m_6999_ ()Z net/minecraft/world/level/BaseCommandBlock/acceptsSuccess ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_7028_ ()Z net/minecraft/world/level/BaseCommandBlock/acceptsFailure ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_7368_ ()V net/minecraft/world/level/BaseCommandBlock/onUpdated ()V +MD: net/minecraft/world/level/BaseSpawner/ ()V net/minecraft/world/level/BaseSpawner/ ()V +MD: net/minecraft/world/level/BaseSpawner/ ()V net/minecraft/world/level/BaseSpawner/ ()V +MD: net/minecraft/world/level/BaseSpawner/m_142523_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/BaseSpawner/broadcastEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/BaseSpawner/m_142667_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V net/minecraft/world/level/BaseSpawner/setNextSpawnData (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V +MD: net/minecraft/world/level/BaseSpawner/m_151306_ (DDDLnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/BaseSpawner/lambda$serverTick$0 (DDDLnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/BaseSpawner/m_151311_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/serverTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_151316_ (Lnet/minecraft/world/level/Level;I)Z net/minecraft/world/level/BaseSpawner/onEventTriggered (Lnet/minecraft/world/level/Level;I)Z +MD: net/minecraft/world/level/BaseSpawner/m_151319_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_151328_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/BaseSpawner/load (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/BaseSpawner/m_151343_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/BaseSpawner/isNearPlayer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/BaseSpawner/m_151350_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/delay (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_186381_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/BaseSpawner/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/BaseSpawner/m_186383_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)V net/minecraft/world/level/BaseSpawner/lambda$delay$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)V +MD: net/minecraft/world/level/BaseSpawner/m_186387_ (Ljava/lang/String;)V net/minecraft/world/level/BaseSpawner/lambda$load$3 (Ljava/lang/String;)V +MD: net/minecraft/world/level/BaseSpawner/m_186389_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/BaseSpawner/lambda$save$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/BaseSpawner/m_186390_ (Ljava/lang/String;)V net/minecraft/world/level/BaseSpawner/lambda$load$2 (Ljava/lang/String;)V +MD: net/minecraft/world/level/BaseSpawner/m_253067_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/BaseSpawner/getOrCreateDisplayEntity (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/BaseSpawner/m_253144_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/SpawnData; net/minecraft/world/level/BaseSpawner/getOrCreateNextSpawnData (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/SpawnData; +MD: net/minecraft/world/level/BaseSpawner/m_253197_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/setEntityId (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_45473_ ()D net/minecraft/world/level/BaseSpawner/getSpin ()D +MD: net/minecraft/world/level/BaseSpawner/m_45474_ ()D net/minecraft/world/level/BaseSpawner/getoSpin ()D +MD: net/minecraft/world/level/BlockAndTintGetter/m_45517_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/BlockAndTintGetter/getBrightness (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/BlockAndTintGetter/m_45524_ (Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/BlockAndTintGetter/getRawBrightness (Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/BlockAndTintGetter/m_45527_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/BlockAndTintGetter/canSeeSky (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/BlockAndTintGetter/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/world/level/BlockAndTintGetter/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/world/level/BlockAndTintGetter/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/world/level/BlockAndTintGetter/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/world/level/BlockAndTintGetter/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/world/level/BlockAndTintGetter/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/world/level/BlockCollisions/ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;ZLjava/util/function/BiFunction;)V net/minecraft/world/level/BlockCollisions/ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;ZLjava/util/function/BiFunction;)V +MD: net/minecraft/world/level/BlockCollisions/computeNext ()Ljava/lang/Object; net/minecraft/world/level/BlockCollisions/computeNext ()Ljava/lang/Object; +MD: net/minecraft/world/level/BlockCollisions/m_186411_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/BlockCollisions/getChunk (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/BlockEventData/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/world/level/BlockEventData/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/world/level/BlockEventData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/BlockEventData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/BlockEventData/f_45529_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/BlockEventData/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/BlockEventData/f_45530_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/BlockEventData/block ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/BlockEventData/f_45531_ ()I net/minecraft/world/level/BlockEventData/paramA ()I +MD: net/minecraft/world/level/BlockEventData/f_45532_ ()I net/minecraft/world/level/BlockEventData/paramB ()I +MD: net/minecraft/world/level/BlockEventData/hashCode ()I net/minecraft/world/level/BlockEventData/hashCode ()I +MD: net/minecraft/world/level/BlockEventData/toString ()Ljava/lang/String; net/minecraft/world/level/BlockEventData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/BlockGetter/m_141902_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; net/minecraft/world/level/BlockGetter/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; +MD: net/minecraft/world/level/BlockGetter/m_151353_ (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/isBlockInLine (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_151358_ (Lnet/minecraft/world/level/ClipContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$clip$2 (Lnet/minecraft/world/level/ClipContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_151361_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/world/level/BlockGetter/traverseBlocks (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/world/level/BlockGetter/m_151373_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/BlockGetter/lambda$getBlockFloorHeight$4 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/BlockGetter/m_274262_ (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$clip$3 (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_274263_ (Lnet/minecraft/world/level/ClipBlockStateContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$isBlockInLine$0 (Lnet/minecraft/world/level/ClipBlockStateContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_274264_ (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$isBlockInLine$1 (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_45547_ (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/clip (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_45556_ (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/world/level/BlockGetter/getBlockStates (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/BlockGetter/m_45558_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/clipWithInteractionOverride (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_45564_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Ljava/util/function/Supplier;)D net/minecraft/world/level/BlockGetter/getBlockFloorHeight (Lnet/minecraft/world/phys/shapes/VoxelShape;Ljava/util/function/Supplier;)D +MD: net/minecraft/world/level/BlockGetter/m_45573_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/BlockGetter/getBlockFloorHeight (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/BlockGetter/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/BlockGetter/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/BlockGetter/m_7146_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/BlockGetter/getLightEmission (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/BlockGetter/m_7469_ ()I net/minecraft/world/level/BlockGetter/getMaxLightLevel ()I +MD: net/minecraft/world/level/BlockGetter/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/BlockGetter/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/BlockGetter/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/BlockGetter/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/ChunkPos/ ()V net/minecraft/world/level/ChunkPos/ ()V +MD: net/minecraft/world/level/ChunkPos/ (J)V net/minecraft/world/level/ChunkPos/ (J)V +MD: net/minecraft/world/level/ChunkPos/ (II)V net/minecraft/world/level/ChunkPos/ (II)V +MD: net/minecraft/world/level/ChunkPos/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/ChunkPos/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/ChunkPos/equals (Ljava/lang/Object;)Z net/minecraft/world/level/ChunkPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/ChunkPos/hashCode ()I net/minecraft/world/level/ChunkPos/hashCode ()I +MD: net/minecraft/world/level/ChunkPos/m_151382_ (I)I net/minecraft/world/level/ChunkPos/getBlockX (I)I +MD: net/minecraft/world/level/ChunkPos/m_151384_ (III)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/ChunkPos/getBlockAt (III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/ChunkPos/m_151388_ (Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/ChunkPos/asLong (Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/ChunkPos/m_151390_ ()I net/minecraft/world/level/ChunkPos/getMiddleBlockX ()I +MD: net/minecraft/world/level/ChunkPos/m_151391_ (I)I net/minecraft/world/level/ChunkPos/getBlockZ (I)I +MD: net/minecraft/world/level/ChunkPos/m_151393_ ()I net/minecraft/world/level/ChunkPos/getMiddleBlockZ ()I +MD: net/minecraft/world/level/ChunkPos/m_151394_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/ChunkPos/getMiddleBlockPosition (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/ChunkPos/m_220337_ (II)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/ChunkPos/minFromRegion (II)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/ChunkPos/m_220340_ (II)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/ChunkPos/maxFromRegion (II)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/ChunkPos/m_220343_ (II)I net/minecraft/world/level/ChunkPos/hash (II)I +MD: net/minecraft/world/level/ChunkPos/m_45588_ ()J net/minecraft/world/level/ChunkPos/toLong ()J +MD: net/minecraft/world/level/ChunkPos/m_45589_ (II)J net/minecraft/world/level/ChunkPos/asLong (II)J +MD: net/minecraft/world/level/ChunkPos/m_45592_ (J)I net/minecraft/world/level/ChunkPos/getX (J)I +MD: net/minecraft/world/level/ChunkPos/m_45594_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/world/level/ChunkPos/getChessboardDistance (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/world/level/ChunkPos/m_45596_ (Lnet/minecraft/world/level/ChunkPos;I)Ljava/util/stream/Stream; net/minecraft/world/level/ChunkPos/rangeClosed (Lnet/minecraft/world/level/ChunkPos;I)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/ChunkPos/m_45599_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; net/minecraft/world/level/ChunkPos/rangeClosed (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/ChunkPos/m_45602_ (J)I net/minecraft/world/level/ChunkPos/getZ (J)I +MD: net/minecraft/world/level/ChunkPos/m_45604_ ()I net/minecraft/world/level/ChunkPos/getMinBlockX ()I +MD: net/minecraft/world/level/ChunkPos/m_45605_ ()I net/minecraft/world/level/ChunkPos/getMinBlockZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45608_ ()I net/minecraft/world/level/ChunkPos/getMaxBlockX ()I +MD: net/minecraft/world/level/ChunkPos/m_45609_ ()I net/minecraft/world/level/ChunkPos/getMaxBlockZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45610_ ()I net/minecraft/world/level/ChunkPos/getRegionX ()I +MD: net/minecraft/world/level/ChunkPos/m_45612_ ()I net/minecraft/world/level/ChunkPos/getRegionZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45613_ ()I net/minecraft/world/level/ChunkPos/getRegionLocalX ()I +MD: net/minecraft/world/level/ChunkPos/m_45614_ ()I net/minecraft/world/level/ChunkPos/getRegionLocalZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45615_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/ChunkPos/getWorldPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/ChunkPos/toString ()Ljava/lang/String; net/minecraft/world/level/ChunkPos/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/ChunkPos$1/ (JILnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;II)V net/minecraft/world/level/ChunkPos$1/ (JILnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;II)V +MD: net/minecraft/world/level/ChunkPos$1/tryAdvance (Ljava/util/function/Consumer;)Z net/minecraft/world/level/ChunkPos$1/tryAdvance (Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/ClipBlockStateContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V net/minecraft/world/level/ClipBlockStateContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/ClipBlockStateContext/m_151404_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipBlockStateContext/getTo ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipBlockStateContext/m_151405_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipBlockStateContext/getFrom ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipBlockStateContext/m_151406_ ()Ljava/util/function/Predicate; net/minecraft/world/level/ClipBlockStateContext/isTargetBlock ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/ClipContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/ClipContext$Block;Lnet/minecraft/world/level/ClipContext$Fluid;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/ClipContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/ClipContext$Block;Lnet/minecraft/world/level/ClipContext$Fluid;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/ClipContext/m_45693_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipContext/getTo ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipContext/m_45694_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext/getBlockShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext/m_45698_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext/getFluidShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext/m_45702_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipContext/getFrom ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipContext$Block/ ()V net/minecraft/world/level/ClipContext$Block/ ()V +MD: net/minecraft/world/level/ClipContext$Block/ (Ljava/lang/String;ILnet/minecraft/world/level/ClipContext$ShapeGetter;)V net/minecraft/world/level/ClipContext$Block/ (Ljava/lang/String;ILnet/minecraft/world/level/ClipContext$ShapeGetter;)V +MD: net/minecraft/world/level/ClipContext$Block/m_151407_ ()[Lnet/minecraft/world/level/ClipContext$Block; net/minecraft/world/level/ClipContext$Block/$values ()[Lnet/minecraft/world/level/ClipContext$Block; +MD: net/minecraft/world/level/ClipContext$Block/m_201981_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext$Block/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext$Block/m_7544_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext$Block/get (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext$Block/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Block; net/minecraft/world/level/ClipContext$Block/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Block; +MD: net/minecraft/world/level/ClipContext$Block/values ()[Lnet/minecraft/world/level/ClipContext$Block; net/minecraft/world/level/ClipContext$Block/values ()[Lnet/minecraft/world/level/ClipContext$Block; +MD: net/minecraft/world/level/ClipContext$Fluid/ ()V net/minecraft/world/level/ClipContext$Fluid/ ()V +MD: net/minecraft/world/level/ClipContext$Fluid/ (Ljava/lang/String;ILjava/util/function/Predicate;)V net/minecraft/world/level/ClipContext$Fluid/ (Ljava/lang/String;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/level/ClipContext$Fluid/m_151408_ ()[Lnet/minecraft/world/level/ClipContext$Fluid; net/minecraft/world/level/ClipContext$Fluid/$values ()[Lnet/minecraft/world/level/ClipContext$Fluid; +MD: net/minecraft/world/level/ClipContext$Fluid/m_201987_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/lambda$static$2 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/m_45731_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/canPick (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/m_45733_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/lambda$static$1 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/m_45735_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/lambda$static$0 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Fluid; net/minecraft/world/level/ClipContext$Fluid/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Fluid; +MD: net/minecraft/world/level/ClipContext$Fluid/values ()[Lnet/minecraft/world/level/ClipContext$Fluid; net/minecraft/world/level/ClipContext$Fluid/values ()[Lnet/minecraft/world/level/ClipContext$Fluid; +MD: net/minecraft/world/level/ClipContext$ShapeGetter/m_7544_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext$ShapeGetter/get (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_151418_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/Vec3;DDD)Ljava/util/Optional; net/minecraft/world/level/CollisionGetter/findFreePosition (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/Vec3;DDD)Ljava/util/Optional; +MD: net/minecraft/world/level/CollisionGetter/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/CollisionGetter/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/CollisionGetter/m_186420_ (DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/CollisionGetter/lambda$findFreePosition$6 (DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/CollisionGetter/m_186425_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; net/minecraft/world/level/CollisionGetter/lambda$findFreePosition$5 (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/CollisionGetter/m_186429_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/CollisionGetter/lambda$findFreePosition$4 (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/CollisionGetter/m_186431_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; net/minecraft/world/level/CollisionGetter/getCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/CollisionGetter/m_186434_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; net/minecraft/world/level/CollisionGetter/getBlockCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/CollisionGetter/m_186437_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/CollisionGetter/collidesWithSuffocatingBlock (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/CollisionGetter/m_186440_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/CollisionGetter/borderCollision (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_285727_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Iterator; net/minecraft/world/level/CollisionGetter/lambda$getBlockCollisions$1 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Iterator; +MD: net/minecraft/world/level/CollisionGetter/m_285728_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/CollisionGetter/lambda$collidesWithSuffocatingBlock$2 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_285729_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/CollisionGetter/lambda$findSupportingBlock$3 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/CollisionGetter/m_285730_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/CollisionGetter/lambda$getBlockCollisions$0 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_285750_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Optional; net/minecraft/world/level/CollisionGetter/findSupportingBlock (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Optional; +MD: net/minecraft/world/level/CollisionGetter/m_45752_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Z net/minecraft/world/level/CollisionGetter/isUnobstructed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45756_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/CollisionGetter/noCollision (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45772_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/CollisionGetter/noCollision (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45784_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/CollisionGetter/isUnobstructed (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45786_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/CollisionGetter/noCollision (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/CollisionGetter/m_5450_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/CollisionGetter/isUnobstructed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/CollisionGetter/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/world/level/CollisionGetter/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/world/level/CollisionGetter/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/CollisionGetter/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/ColorResolver/m_130045_ (Lnet/minecraft/world/level/biome/Biome;DD)I net/minecraft/world/level/ColorResolver/getColor (Lnet/minecraft/world/level/biome/Biome;DD)I +MD: net/minecraft/world/level/CommonLevelAccessor/m_141902_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; net/minecraft/world/level/CommonLevelAccessor/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; +MD: net/minecraft/world/level/CommonLevelAccessor/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/CommonLevelAccessor/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/CommonLevelAccessor/m_5450_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/CommonLevelAccessor/isUnobstructed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/CommonLevelAccessor/m_5452_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/CommonLevelAccessor/getHeightmapPos (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/CustomSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/level/CustomSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/level/DataPackConfig/ ()V net/minecraft/world/level/DataPackConfig/ ()V +MD: net/minecraft/world/level/DataPackConfig/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/DataPackConfig/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/DataPackConfig/m_151454_ (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; net/minecraft/world/level/DataPackConfig/lambda$static$1 (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; +MD: net/minecraft/world/level/DataPackConfig/m_151456_ (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; net/minecraft/world/level/DataPackConfig/lambda$static$0 (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; +MD: net/minecraft/world/level/DataPackConfig/m_45850_ ()Ljava/util/List; net/minecraft/world/level/DataPackConfig/getEnabled ()Ljava/util/List; +MD: net/minecraft/world/level/DataPackConfig/m_45853_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/DataPackConfig/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/DataPackConfig/m_45855_ ()Ljava/util/List; net/minecraft/world/level/DataPackConfig/getDisabled ()Ljava/util/List; +MD: net/minecraft/world/level/EmptyBlockGetter/ ()V net/minecraft/world/level/EmptyBlockGetter/ ()V +MD: net/minecraft/world/level/EmptyBlockGetter/ (Ljava/lang/String;I)V net/minecraft/world/level/EmptyBlockGetter/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/EmptyBlockGetter/m_141928_ ()I net/minecraft/world/level/EmptyBlockGetter/getHeight ()I +MD: net/minecraft/world/level/EmptyBlockGetter/m_141937_ ()I net/minecraft/world/level/EmptyBlockGetter/getMinBuildHeight ()I +MD: net/minecraft/world/level/EmptyBlockGetter/m_151458_ ()[Lnet/minecraft/world/level/EmptyBlockGetter; net/minecraft/world/level/EmptyBlockGetter/$values ()[Lnet/minecraft/world/level/EmptyBlockGetter; +MD: net/minecraft/world/level/EmptyBlockGetter/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/EmptyBlockGetter/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/EmptyBlockGetter/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/EmptyBlockGetter/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/EmptyBlockGetter/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/EmptyBlockGetter/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/EmptyBlockGetter/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/EmptyBlockGetter; net/minecraft/world/level/EmptyBlockGetter/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/EmptyBlockGetter; +MD: net/minecraft/world/level/EmptyBlockGetter/values ()[Lnet/minecraft/world/level/EmptyBlockGetter; net/minecraft/world/level/EmptyBlockGetter/values ()[Lnet/minecraft/world/level/EmptyBlockGetter; +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/EntityBasedExplosionDamageCalculator/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/m_45907_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Ljava/lang/Float;)Ljava/lang/Float; net/minecraft/world/level/EntityBasedExplosionDamageCalculator/lambda$getBlockExplosionResistance$0 (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Ljava/lang/Float;)Ljava/lang/Float; +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/m_6617_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; net/minecraft/world/level/EntityBasedExplosionDamageCalculator/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/m_6714_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/level/EntityBasedExplosionDamageCalculator/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/level/EntityGetter/m_142425_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_186449_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/EntityGetter/lambda$getNearbyEntities$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/EntityGetter/m_186453_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/EntityGetter/lambda$getNearestEntity$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/EntityGetter/m_45914_ (DDDD)Z net/minecraft/world/level/EntityGetter/hasNearbyAlivePlayer (DDDD)Z +MD: net/minecraft/world/level/EntityGetter/m_45924_ (DDDDZ)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (DDDDZ)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45930_ (Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45933_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45941_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;DDD)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;DDD)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45946_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45949_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45955_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getNearbyPlayers (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45963_ (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/EntityGetter/getNearestEntity (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/EntityGetter/m_45971_ (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getNearbyEntities (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45976_ (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntitiesOfClass (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45982_ (Ljava/util/List;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/EntityGetter/getNearestEntity (Ljava/util/List;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/EntityGetter/m_46003_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getPlayerByUUID (Ljava/util/UUID;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_5450_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/EntityGetter/isUnobstructed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/EntityGetter/m_5788_ (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_6249_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_6443_ (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntitiesOfClass (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_6907_ ()Ljava/util/List; net/minecraft/world/level/EntityGetter/players ()Ljava/util/List; +MD: net/minecraft/world/level/Explosion/ ()V net/minecraft/world/level/Explosion/ ()V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFLjava/util/List;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFLjava/util/List;)V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;Ljava/util/List;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;Ljava/util/List;)V +MD: net/minecraft/world/level/Explosion/m_252906_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/Explosion/getIndirectSourceEntity ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/Explosion/m_253049_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/Explosion/getDirectSourceEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/Explosion/m_254884_ ()Z net/minecraft/world/level/Explosion/interactsWithBlocks ()Z +MD: net/minecraft/world/level/Explosion/m_46061_ ()V net/minecraft/world/level/Explosion/explode ()V +MD: net/minecraft/world/level/Explosion/m_46062_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/ExplosionDamageCalculator; net/minecraft/world/level/Explosion/makeDamageCalculator (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/ExplosionDamageCalculator; +MD: net/minecraft/world/level/Explosion/m_46064_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)F net/minecraft/world/level/Explosion/getSeenPercent (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)F +MD: net/minecraft/world/level/Explosion/m_46067_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Explosion/addBlockDrops (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Explosion/m_46071_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/Explosion/lambda$finalizeExplosion$0 (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/Explosion/m_46075_ (Z)V net/minecraft/world/level/Explosion/finalizeExplosion (Z)V +MD: net/minecraft/world/level/Explosion/m_46077_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/Explosion/getDamageSource ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/Explosion/m_46078_ ()Ljava/util/Map; net/minecraft/world/level/Explosion/getHitPlayers ()Ljava/util/Map; +MD: net/minecraft/world/level/Explosion/m_46080_ ()V net/minecraft/world/level/Explosion/clearToBlow ()V +MD: net/minecraft/world/level/Explosion/m_46081_ ()Ljava/util/List; net/minecraft/world/level/Explosion/getToBlow ()Ljava/util/List; +MD: net/minecraft/world/level/Explosion$BlockInteraction/ ()V net/minecraft/world/level/Explosion$BlockInteraction/ ()V +MD: net/minecraft/world/level/Explosion$BlockInteraction/ (Ljava/lang/String;I)V net/minecraft/world/level/Explosion$BlockInteraction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/Explosion$BlockInteraction/m_151477_ ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Explosion$BlockInteraction/$values ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/Explosion$BlockInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Explosion$BlockInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/Explosion$BlockInteraction/values ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Explosion$BlockInteraction/values ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/ExplosionDamageCalculator/ ()V net/minecraft/world/level/ExplosionDamageCalculator/ ()V +MD: net/minecraft/world/level/ExplosionDamageCalculator/m_6617_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; net/minecraft/world/level/ExplosionDamageCalculator/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; +MD: net/minecraft/world/level/ExplosionDamageCalculator/m_6714_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/level/ExplosionDamageCalculator/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/level/FoliageColor/ ()V net/minecraft/world/level/FoliageColor/ ()V +MD: net/minecraft/world/level/FoliageColor/ ()V net/minecraft/world/level/FoliageColor/ ()V +MD: net/minecraft/world/level/FoliageColor/m_220346_ ()I net/minecraft/world/level/FoliageColor/getMangroveColor ()I +MD: net/minecraft/world/level/FoliageColor/m_46106_ ()I net/minecraft/world/level/FoliageColor/getEvergreenColor ()I +MD: net/minecraft/world/level/FoliageColor/m_46107_ (DD)I net/minecraft/world/level/FoliageColor/get (DD)I +MD: net/minecraft/world/level/FoliageColor/m_46110_ ([I)V net/minecraft/world/level/FoliageColor/init ([I)V +MD: net/minecraft/world/level/FoliageColor/m_46112_ ()I net/minecraft/world/level/FoliageColor/getBirchColor ()I +MD: net/minecraft/world/level/FoliageColor/m_46113_ ()I net/minecraft/world/level/FoliageColor/getDefaultColor ()I +MD: net/minecraft/world/level/ForcedChunksSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V net/minecraft/world/level/ForcedChunksSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V +MD: net/minecraft/world/level/ForcedChunksSavedData/ ()V net/minecraft/world/level/ForcedChunksSavedData/ ()V +MD: net/minecraft/world/level/ForcedChunksSavedData/m_151483_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ForcedChunksSavedData; net/minecraft/world/level/ForcedChunksSavedData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ForcedChunksSavedData; +MD: net/minecraft/world/level/ForcedChunksSavedData/m_46116_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/ForcedChunksSavedData/getChunks ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/ForcedChunksSavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/ForcedChunksSavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/GameRules/ ()V net/minecraft/world/level/GameRules/ ()V +MD: net/minecraft/world/level/GameRules/ (Lcom/mojang/serialization/DynamicLike;)V net/minecraft/world/level/GameRules/ (Lcom/mojang/serialization/DynamicLike;)V +MD: net/minecraft/world/level/GameRules/ (Ljava/util/Map;)V net/minecraft/world/level/GameRules/ (Ljava/util/Map;)V +MD: net/minecraft/world/level/GameRules/ ()V net/minecraft/world/level/GameRules/ ()V +MD: net/minecraft/world/level/GameRules/m_46163_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/GameRules/createTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/GameRules/m_46164_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;)V net/minecraft/world/level/GameRules/visitGameRuleTypes (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;)V +MD: net/minecraft/world/level/GameRules/m_46166_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules/callVisitorCap (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules/m_46170_ (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules/getRule (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules/m_46172_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules/assignCap (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules/m_46176_ (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules/assignFrom (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules/m_46179_ (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$Key;)V net/minecraft/world/level/GameRules/lambda$assignFrom$8 (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$Key;)V +MD: net/minecraft/world/level/GameRules/m_46183_ (Lcom/mojang/serialization/DynamicLike;)V net/minecraft/world/level/GameRules/loadFromTag (Lcom/mojang/serialization/DynamicLike;)V +MD: net/minecraft/world/level/GameRules/m_46185_ (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V net/minecraft/world/level/GameRules/lambda$loadFromTag$5 (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V +MD: net/minecraft/world/level/GameRules/m_46189_ (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; net/minecraft/world/level/GameRules/register (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; +MD: net/minecraft/world/level/GameRules/m_46193_ (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules/lambda$copy$6 (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules/m_46195_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V net/minecraft/world/level/GameRules/lambda$createTag$4 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V +MD: net/minecraft/world/level/GameRules/m_46199_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/world/level/GameRules/lambda$static$2 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/world/level/GameRules/m_46202_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/GameRules/copy ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/GameRules/m_46203_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules/lambda$visitGameRuleTypes$7 (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules/m_46207_ (Lnet/minecraft/world/level/GameRules$Key;)Z net/minecraft/world/level/GameRules/getBoolean (Lnet/minecraft/world/level/GameRules$Key;)Z +MD: net/minecraft/world/level/GameRules/m_46209_ (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules/lambda$new$3 (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules/m_46211_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/world/level/GameRules/lambda$static$1 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/world/level/GameRules/m_46215_ (Lnet/minecraft/world/level/GameRules$Key;)I net/minecraft/world/level/GameRules/getInt (Lnet/minecraft/world/level/GameRules$Key;)I +MD: net/minecraft/world/level/GameRules/m_46217_ (Lnet/minecraft/world/level/GameRules$Key;)Ljava/lang/String; net/minecraft/world/level/GameRules/lambda$static$0 (Lnet/minecraft/world/level/GameRules$Key;)Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$BooleanValue/ (Lnet/minecraft/world/level/GameRules$Type;Z)V net/minecraft/world/level/GameRules$BooleanValue/ (Lnet/minecraft/world/level/GameRules$Type;Z)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46223_ ()Z net/minecraft/world/level/GameRules$BooleanValue/get ()Z +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46235_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/world/level/GameRules$BooleanValue/lambda$create$1 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46240_ (ZLnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$BooleanValue; net/minecraft/world/level/GameRules$BooleanValue/lambda$create$0 (ZLnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$BooleanValue; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46246_ (ZLnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$BooleanValue/set (ZLnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46250_ (Z)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$BooleanValue/create (Z)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46252_ (ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$BooleanValue/create (ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5528_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$BooleanValue/updateFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$BooleanValue; net/minecraft/world/level/GameRules$BooleanValue/getSelf ()Lnet/minecraft/world/level/GameRules$BooleanValue; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$BooleanValue/getSelf ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$BooleanValue/copy ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$BooleanValue; net/minecraft/world/level/GameRules$BooleanValue/copy ()Lnet/minecraft/world/level/GameRules$BooleanValue; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5614_ (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$BooleanValue/setFrom (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5614_ (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$BooleanValue/setFrom (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5831_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$BooleanValue/serialize ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_6855_ ()I net/minecraft/world/level/GameRules$BooleanValue/getCommandResult ()I +MD: net/minecraft/world/level/GameRules$BooleanValue/m_7377_ (Ljava/lang/String;)V net/minecraft/world/level/GameRules$BooleanValue/deserialize (Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Category/ ()V net/minecraft/world/level/GameRules$Category/ ()V +MD: net/minecraft/world/level/GameRules$Category/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/GameRules$Category/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Category/m_151488_ ()[Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Category/$values ()[Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$Category/m_46274_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Category/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Category/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Category/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$Category/values ()[Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Category/values ()[Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$GameRuleTypeVisitor/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$GameRuleTypeVisitor/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$GameRuleTypeVisitor/m_6891_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$GameRuleTypeVisitor/visitBoolean (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$GameRuleTypeVisitor/m_6894_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$GameRuleTypeVisitor/visitInteger (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/ (Lnet/minecraft/world/level/GameRules$Type;I)V net/minecraft/world/level/GameRules$IntegerValue/ (Lnet/minecraft/world/level/GameRules$Type;I)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_151489_ (ILnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$IntegerValue/set (ILnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46288_ ()I net/minecraft/world/level/GameRules$IntegerValue/get ()I +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46291_ (ILnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$IntegerValue; net/minecraft/world/level/GameRules$IntegerValue/lambda$create$0 (ILnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$IntegerValue; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46294_ (ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$IntegerValue/create (ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46308_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$IntegerValue;)V net/minecraft/world/level/GameRules$IntegerValue/lambda$create$1 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$IntegerValue;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46312_ (I)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$IntegerValue/create (I)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46314_ (Ljava/lang/String;)Z net/minecraft/world/level/GameRules$IntegerValue/tryDeserialize (Ljava/lang/String;)Z +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46317_ (Ljava/lang/String;)I net/minecraft/world/level/GameRules$IntegerValue/safeParse (Ljava/lang/String;)I +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5528_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$IntegerValue/updateFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$IntegerValue; net/minecraft/world/level/GameRules$IntegerValue/getSelf ()Lnet/minecraft/world/level/GameRules$IntegerValue; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$IntegerValue/getSelf ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$IntegerValue/copy ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$IntegerValue; net/minecraft/world/level/GameRules$IntegerValue/copy ()Lnet/minecraft/world/level/GameRules$IntegerValue; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5614_ (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$IntegerValue/setFrom (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5614_ (Lnet/minecraft/world/level/GameRules$IntegerValue;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$IntegerValue/setFrom (Lnet/minecraft/world/level/GameRules$IntegerValue;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5831_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$IntegerValue/serialize ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_6855_ ()I net/minecraft/world/level/GameRules$IntegerValue/getCommandResult ()I +MD: net/minecraft/world/level/GameRules$IntegerValue/m_7377_ (Ljava/lang/String;)V net/minecraft/world/level/GameRules$IntegerValue/deserialize (Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Key/ (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;)V net/minecraft/world/level/GameRules$Key/ (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;)V +MD: net/minecraft/world/level/GameRules$Key/equals (Ljava/lang/Object;)Z net/minecraft/world/level/GameRules$Key/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/GameRules$Key/hashCode ()I net/minecraft/world/level/GameRules$Key/hashCode ()I +MD: net/minecraft/world/level/GameRules$Key/m_46328_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Key/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Key/m_46331_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Key/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Key/m_46332_ ()Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Key/getCategory ()Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$Key/toString ()Ljava/lang/String; net/minecraft/world/level/GameRules$Key/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Type/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/GameRules$VisitorCaller;)V net/minecraft/world/level/GameRules$Type/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/GameRules$VisitorCaller;)V +MD: net/minecraft/world/level/GameRules$Type/m_46352_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$Type/createRule ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$Type/m_46353_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;)V net/minecraft/world/level/GameRules$Type/callVisitor (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;)V +MD: net/minecraft/world/level/GameRules$Type/m_46358_ (Ljava/lang/String;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; net/minecraft/world/level/GameRules$Type/createArgument (Ljava/lang/String;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; +MD: net/minecraft/world/level/GameRules$Value/ (Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$Value/ (Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$Value/m_46368_ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$Value/onChanged (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$Value/m_46370_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$Value/setFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Value/m_5528_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$Value/updateFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Value/m_5589_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$Value/getSelf ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$Value/m_5590_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$Value/copy ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$Value/m_5614_ (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$Value/setFrom (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$Value/m_5831_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Value/serialize ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Value/m_6855_ ()I net/minecraft/world/level/GameRules$Value/getCommandResult ()I +MD: net/minecraft/world/level/GameRules$Value/m_7377_ (Ljava/lang/String;)V net/minecraft/world/level/GameRules$Value/deserialize (Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Value/toString ()Ljava/lang/String; net/minecraft/world/level/GameRules$Value/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$VisitorCaller/m_46374_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$VisitorCaller/call (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameType/ ()V net/minecraft/world/level/GameType/ ()V +MD: net/minecraft/world/level/GameType/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/level/GameType/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/level/GameType/m_151495_ (Lnet/minecraft/world/level/GameType;)I net/minecraft/world/level/GameType/getNullableId (Lnet/minecraft/world/level/GameType;)I +MD: net/minecraft/world/level/GameType/m_151497_ (I)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byNullableId (I)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_151499_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/GameType/getLongDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/GameType/m_151500_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/GameType/getShortDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/GameType/m_151501_ ()[Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/$values ()[Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46392_ ()I net/minecraft/world/level/GameType/getId ()I +MD: net/minecraft/world/level/GameType/m_46393_ (I)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byId (I)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46398_ (Lnet/minecraft/world/entity/player/Abilities;)V net/minecraft/world/level/GameType/updatePlayerAbilities (Lnet/minecraft/world/entity/player/Abilities;)V +MD: net/minecraft/world/level/GameType/m_46400_ (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byName (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46402_ (Ljava/lang/String;Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byName (Ljava/lang/String;Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46405_ ()Ljava/lang/String; net/minecraft/world/level/GameType/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/GameType/m_46407_ ()Z net/minecraft/world/level/GameType/isBlockPlacingRestricted ()Z +MD: net/minecraft/world/level/GameType/m_46408_ ()Z net/minecraft/world/level/GameType/isCreative ()Z +MD: net/minecraft/world/level/GameType/m_46409_ ()Z net/minecraft/world/level/GameType/isSurvival ()Z +MD: net/minecraft/world/level/GameType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/GameType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/GameType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/values ()[Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/values ()[Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GrassColor/ ()V net/minecraft/world/level/GrassColor/ ()V +MD: net/minecraft/world/level/GrassColor/ ()V net/minecraft/world/level/GrassColor/ ()V +MD: net/minecraft/world/level/GrassColor/m_276205_ ()I net/minecraft/world/level/GrassColor/getDefaultColor ()I +MD: net/minecraft/world/level/GrassColor/m_46415_ (DD)I net/minecraft/world/level/GrassColor/get (DD)I +MD: net/minecraft/world/level/GrassColor/m_46418_ ([I)V net/minecraft/world/level/GrassColor/init ([I)V +MD: net/minecraft/world/level/ItemLike/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/ItemLike/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/Level/ ()V net/minecraft/world/level/Level/ ()V +MD: net/minecraft/world/level/Level/ (Lnet/minecraft/world/level/storage/WritableLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/Holder;Ljava/util/function/Supplier;ZZJI)V net/minecraft/world/level/Level/ (Lnet/minecraft/world/level/storage/WritableLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/Holder;Ljava/util/function/Supplier;ZZJI)V +MD: net/minecraft/world/level/Level/close ()V net/minecraft/world/level/Level/close ()V +MD: net/minecraft/world/level/Level/m_142052_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/Level/addDestroyBlockEffect (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/Level/m_142325_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/world/level/Level/setMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/world/level/Level/m_142425_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/Level/m_142433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/Level/isFluidAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/Level/m_142646_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/world/level/Level/getEntities ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/world/level/Level/m_151518_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/Level/lambda$getEntities$1 (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/Level/m_151523_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/Level/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/Level/m_151525_ (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V net/minecraft/world/level/Level/addBlockEntityTicker (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V +MD: net/minecraft/world/level/Level/m_151543_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Level/blockEntityChanged (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Level/m_183438_ (J)Z net/minecraft/world/level/Level/shouldTickBlocksAt (J)Z +MD: net/minecraft/world/level/Level/m_183596_ ()J net/minecraft/world/level/Level/nextSubTickCount ()J +MD: net/minecraft/world/level/Level/m_183599_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/Level/shouldTickDeath (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/Level/m_204156_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/Level/dimensionTypeRegistration ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/Level/m_213683_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/Level/neighborShapeChanged (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/Level/m_213780_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/Level/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/Level/m_213890_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/world/level/Level/playSeededSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/world/level/Level/m_213960_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/Level/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/Level/m_214150_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/world/level/Level/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/world/level/Level/m_220360_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/Level/getSharedSpawnPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/Level/m_220361_ ()F net/minecraft/world/level/Level/getSharedSpawnAngle ()F +MD: net/minecraft/world/level/Level/m_220362_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/Level/dimensionTypeId ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/Level/m_220391_ (Lnet/minecraft/core/Holder;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/Level/lambda$new$0 (Lnet/minecraft/core/Holder;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/Level/m_220393_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/shouldTickBlocksAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_245747_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V net/minecraft/world/level/Level/playLocalSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V +MD: net/minecraft/world/level/Level/m_245803_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_254849_ (Lnet/minecraft/world/entity/Entity;DDDFLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;DDDFLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_254877_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_254951_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;Lnet/minecraft/world/phys/Vec3;FZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;Lnet/minecraft/world/phys/Vec3;FZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_255157_ (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Level/getDestroyType (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/Level/m_255278_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;Z)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;Z)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_255391_ (Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_260792_ (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/Level/lambda$getEntities$2 (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/Level/m_260826_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;I)V net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;I)V +MD: net/minecraft/world/level/Level/m_261153_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;)V net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;)V +MD: net/minecraft/world/level/Level/m_262808_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/world/level/Level/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/world/level/Level/m_268981_ ()Ljava/lang/String; net/minecraft/world/level/Level/lambda$fillReportDetails$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/Level/m_269111_ ()Lnet/minecraft/world/damagesource/DamageSources; net/minecraft/world/level/Level/damageSources ()Lnet/minecraft/world/damagesource/DamageSources; +MD: net/minecraft/world/level/Level/m_269196_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/level/Level/broadcastDamageEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/level/Level/m_46457_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isInWorldBoundsHorizontal (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46461_ ()Z net/minecraft/world/level/Level/isDay ()Z +MD: net/minecraft/world/level/Level/m_46462_ ()Z net/minecraft/world/level/Level/isNight ()Z +MD: net/minecraft/world/level/Level/m_46463_ ()V net/minecraft/world/level/Level/tickBlockEntities ()V +MD: net/minecraft/world/level/Level/m_46464_ ()Ljava/lang/String; net/minecraft/world/level/Level/gatherChunkSourceStats ()Ljava/lang/String; +MD: net/minecraft/world/level/Level/m_46465_ ()V net/minecraft/world/level/Level/updateSkyBrightness ()V +MD: net/minecraft/world/level/Level/m_46466_ ()V net/minecraft/world/level/Level/prepareWeather ()V +MD: net/minecraft/world/level/Level/m_46467_ ()J net/minecraft/world/level/Level/getGameTime ()J +MD: net/minecraft/world/level/Level/m_46468_ ()J net/minecraft/world/level/Level/getDayTime ()J +MD: net/minecraft/world/level/Level/m_46469_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/Level/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/Level/m_46470_ ()Z net/minecraft/world/level/Level/isThundering ()Z +MD: net/minecraft/world/level/Level/m_46471_ ()Z net/minecraft/world/level/Level/isRaining ()Z +MD: net/minecraft/world/level/Level/m_46472_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/Level/dimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/Level/m_46473_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/world/level/Level/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/world/level/Level/m_46474_ ()Ljava/lang/String; net/minecraft/world/level/Level/lambda$fillReportDetails$4 ()Ljava/lang/String; +MD: net/minecraft/world/level/Level/m_46490_ (F)F net/minecraft/world/level/Level/getSunAngle (F)F +MD: net/minecraft/world/level/Level/m_46496_ (IIII)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/Level/getBlockRandomPos (IIII)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/Level/m_46575_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/Level/loadedAndEntityCanStandOn (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/Level/m_46578_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/Level/loadedAndEntityCanStandOnFace (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/Level/m_46586_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Level/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Level/m_46590_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/Level/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/Level/m_46597_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/Level/setBlockAndUpdate (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/Level/m_46653_ (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/Level/guardEntityTick (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/Level/m_46658_ ()Ljava/util/function/Supplier; net/minecraft/world/level/Level/getProfilerSupplier ()Ljava/util/function/Supplier; +MD: net/minecraft/world/level/Level/m_46659_ ()Z net/minecraft/world/level/Level/isDebug ()Z +MD: net/minecraft/world/level/Level/m_46661_ (F)F net/minecraft/world/level/Level/getThunderLevel (F)F +MD: net/minecraft/world/level/Level/m_46672_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/Level/updateNeighborsAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/Level/m_46703_ (ZZ)V net/minecraft/world/level/Level/setSpawnSettings (ZZ)V +MD: net/minecraft/world/level/Level/m_46707_ (F)V net/minecraft/world/level/Level/setThunderLevel (F)V +MD: net/minecraft/world/level/Level/m_46717_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/Level/updateNeighbourForOutputSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/Level/m_46722_ (F)F net/minecraft/world/level/Level/getRainLevel (F)F +MD: net/minecraft/world/level/Level/m_46724_ (I)Z net/minecraft/world/level/Level/isOutsideSpawnableHeight (I)Z +MD: net/minecraft/world/level/Level/m_46734_ (F)V net/minecraft/world/level/Level/setRainLevel (F)V +MD: net/minecraft/world/level/Level/m_46739_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isInWorldBounds (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46741_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isInSpawnableBounds (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46745_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/Level/getChunkAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/Level/m_46747_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Level/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Level/m_46749_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isLoaded (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46758_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isRainingAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_5503_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/world/level/Level/sendPacketToServer (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/world/level/Level/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/world/level/Level/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/world/level/Level/m_5594_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_5736_ ()I net/minecraft/world/level/Level/getSeaLevel ()I +MD: net/minecraft/world/level/Level/m_5776_ ()Z net/minecraft/world/level/Level/isClientSide ()Z +MD: net/minecraft/world/level/Level/m_6026_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; net/minecraft/world/level/Level/fillReportDetails (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/world/level/Level/m_6042_ ()Lnet/minecraft/world/level/dimension/DimensionType; net/minecraft/world/level/Level/dimensionType ()Lnet/minecraft/world/level/dimension/DimensionType; +MD: net/minecraft/world/level/Level/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/world/level/Level/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/world/level/Level/m_6188_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/level/Level/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/level/Level/m_6249_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/Level/m_6263_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_6269_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_6325_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/Level/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/Level/m_6325_ (II)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/Level/getChunk (II)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/Level/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/Level/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/Level/m_6436_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; net/minecraft/world/level/Level/getCurrentDifficultyAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; +MD: net/minecraft/world/level/Level/m_6485_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/world/level/Level/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/world/level/Level/m_6493_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/world/level/Level/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/world/level/Level/m_6522_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/Level/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/Level/m_6550_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/Level/setBlocksDirty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/Level/m_6559_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/Level/onBlockStateChange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/Level/m_6580_ (I)V net/minecraft/world/level/Level/setSkyFlashTime (I)V +MD: net/minecraft/world/level/Level/m_6798_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/Level/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/Level/m_6801_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/Level/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/Level/m_6815_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/Level/getEntity (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/Level/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/world/level/Level/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/world/level/Level/m_6924_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/Level/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/Level/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/world/level/Level/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/world/level/Level/m_7062_ ()Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/world/level/Level/getBiomeManager ()Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/world/level/Level/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/world/level/Level/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/world/level/Level/m_7107_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/world/level/Level/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/world/level/Level/m_7228_ (DDDDDDLnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/Level/createFireworks (DDDDDDLnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/Level/m_7260_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/Level/sendBlockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/Level/m_7354_ ()I net/minecraft/world/level/Level/getFreeMapId ()I +MD: net/minecraft/world/level/Level/m_7433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/Level/isStateAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/Level/m_7441_ ()Z net/minecraft/world/level/Level/noSave ()Z +MD: net/minecraft/world/level/Level/m_7445_ ()I net/minecraft/world/level/Level/getSkyDarken ()I +MD: net/minecraft/world/level/Level/m_7462_ ()V net/minecraft/world/level/Level/disconnect ()V +MD: net/minecraft/world/level/Level/m_7465_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/world/level/Level/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/world/level/Level/m_7471_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/Level/removeBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/Level/m_7489_ (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/Level/getMapData (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/Level/m_7605_ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/world/level/Level/broadcastEntityEvent (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/world/level/Level/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/world/level/Level/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/world/level/Level/m_7696_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/world/level/Level/blockEvent (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/world/level/Level/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/Level/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/Level/m_7731_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z net/minecraft/world/level/Level/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z +MD: net/minecraft/world/level/Level/m_7740_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z net/minecraft/world/level/Level/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/world/level/Level/m_7785_ (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V net/minecraft/world/level/Level/playLocalSound (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V +MD: net/minecraft/world/level/Level/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/Level/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/Level/m_7966_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/mayInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/Level/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/Level/m_9598_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/Level/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/Level$1/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/dimension/DimensionType;)V net/minecraft/world/level/Level$1/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/dimension/DimensionType;)V +MD: net/minecraft/world/level/Level$1/m_6345_ ()D net/minecraft/world/level/Level$1/getCenterZ ()D +MD: net/minecraft/world/level/Level$1/m_6347_ ()D net/minecraft/world/level/Level$1/getCenterX ()D +MD: net/minecraft/world/level/Level$2/ ()V net/minecraft/world/level/Level$2/ ()V +MD: net/minecraft/world/level/Level$ExplosionInteraction/ ()V net/minecraft/world/level/Level$ExplosionInteraction/ ()V +MD: net/minecraft/world/level/Level$ExplosionInteraction/ (Ljava/lang/String;I)V net/minecraft/world/level/Level$ExplosionInteraction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/Level$ExplosionInteraction/m_255267_ ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; net/minecraft/world/level/Level$ExplosionInteraction/$values ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; +MD: net/minecraft/world/level/Level$ExplosionInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Level$ExplosionInteraction; net/minecraft/world/level/Level$ExplosionInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Level$ExplosionInteraction; +MD: net/minecraft/world/level/Level$ExplosionInteraction/values ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; net/minecraft/world/level/Level$ExplosionInteraction/values ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; +MD: net/minecraft/world/level/LevelAccessor/m_142346_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/LevelAccessor/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/world/level/LevelAccessor/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/world/level/LevelAccessor/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/world/level/LevelAccessor/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/world/level/LevelAccessor/m_183596_ ()J net/minecraft/world/level/LevelAccessor/nextSubTickCount ()J +MD: net/minecraft/world/level/LevelAccessor/m_186460_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;I)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;I)V +MD: net/minecraft/world/level/LevelAccessor/m_186464_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;ILnet/minecraft/world/ticks/TickPriority;)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;ILnet/minecraft/world/ticks/TickPriority;)V +MD: net/minecraft/world/level/LevelAccessor/m_186469_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;I)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;I)V +MD: net/minecraft/world/level/LevelAccessor/m_186473_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;ILnet/minecraft/world/ticks/TickPriority;)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;ILnet/minecraft/world/ticks/TickPriority;)V +MD: net/minecraft/world/level/LevelAccessor/m_186478_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;I)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/level/LevelAccessor/createTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;I)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/level/LevelAccessor/m_186482_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/level/LevelAccessor/createTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/level/LevelAccessor/m_213683_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/LevelAccessor/neighborShapeChanged (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/LevelAccessor/m_213780_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/LevelAccessor/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/LevelAccessor/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/world/level/LevelAccessor/m_220400_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/LevelAccessor/m_220407_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/world/level/LevelAccessor/m_247517_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/level/LevelAccessor/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/level/LevelAccessor/m_46791_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/LevelAccessor/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/LevelAccessor/m_46796_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/LevelAccessor/levelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/LevelAccessor/m_5594_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/LevelAccessor/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/LevelAccessor/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/LevelAccessor/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/LevelAccessor/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/world/level/LevelAccessor/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/world/level/LevelAccessor/m_6289_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/LevelAccessor/blockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/LevelAccessor/m_6436_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; net/minecraft/world/level/LevelAccessor/getCurrentDifficultyAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; +MD: net/minecraft/world/level/LevelAccessor/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/world/level/LevelAccessor/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/world/level/LevelAccessor/m_7232_ (II)Z net/minecraft/world/level/LevelAccessor/hasChunk (II)Z +MD: net/minecraft/world/level/LevelAccessor/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/world/level/LevelAccessor/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/world/level/LevelAccessor/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/world/level/LevelAccessor/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/world/level/LevelAccessor/m_8044_ ()J net/minecraft/world/level/LevelAccessor/dayTime ()J +MD: net/minecraft/world/level/LevelHeightAccessor/m_141928_ ()I net/minecraft/world/level/LevelHeightAccessor/getHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_141937_ ()I net/minecraft/world/level/LevelHeightAccessor/getMinBuildHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151558_ ()I net/minecraft/world/level/LevelHeightAccessor/getMaxBuildHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151559_ ()I net/minecraft/world/level/LevelHeightAccessor/getSectionsCount ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151560_ ()I net/minecraft/world/level/LevelHeightAccessor/getMinSection ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151561_ ()I net/minecraft/world/level/LevelHeightAccessor/getMaxSection ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151562_ (I)Z net/minecraft/world/level/LevelHeightAccessor/isOutsideBuildHeight (I)Z +MD: net/minecraft/world/level/LevelHeightAccessor/m_151564_ (I)I net/minecraft/world/level/LevelHeightAccessor/getSectionIndex (I)I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151566_ (I)I net/minecraft/world/level/LevelHeightAccessor/getSectionIndexFromSectionY (I)I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151568_ (I)I net/minecraft/world/level/LevelHeightAccessor/getSectionYFromSectionIndex (I)I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151570_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelHeightAccessor/isOutsideBuildHeight (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelHeightAccessor/m_186487_ (II)Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/LevelHeightAccessor/create (II)Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/LevelHeightAccessor$1/ (II)V net/minecraft/world/level/LevelHeightAccessor$1/ (II)V +MD: net/minecraft/world/level/LevelHeightAccessor$1/m_141928_ ()I net/minecraft/world/level/LevelHeightAccessor$1/getHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor$1/m_141937_ ()I net/minecraft/world/level/LevelHeightAccessor$1/getMinBuildHeight ()I +MD: net/minecraft/world/level/LevelReader/m_141928_ ()I net/minecraft/world/level/LevelReader/getHeight ()I +MD: net/minecraft/world/level/LevelReader/m_141937_ ()I net/minecraft/world/level/LevelReader/getMinBuildHeight ()I +MD: net/minecraft/world/level/LevelReader/m_151572_ (IIII)Z net/minecraft/world/level/LevelReader/hasChunksAt (IIII)Z +MD: net/minecraft/world/level/LevelReader/m_151577_ (II)Z net/minecraft/world/level/LevelReader/hasChunkAt (II)Z +MD: net/minecraft/world/level/LevelReader/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/LevelReader/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/LevelReader/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/LevelReader/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/LevelReader/m_204166_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; net/minecraft/world/level/LevelReader/getBiome (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/LevelReader/m_220417_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/LevelReader/getLightLevelDependentMagicValue (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/LevelReader/m_220419_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/LevelReader/getPathfindingCostFromLightLevels (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/LevelReader/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/LevelReader/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/LevelReader/m_246945_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/world/level/LevelReader/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/world/level/LevelReader/m_46801_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/isWaterAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46803_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/LevelReader/getMaxLocalRawBrightness (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/LevelReader/m_46805_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/hasChunkAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46812_ (IIIIII)Z net/minecraft/world/level/LevelReader/hasChunksAt (IIIIII)Z +MD: net/minecraft/world/level/LevelReader/m_46819_ (IILnet/minecraft/world/level/chunk/ChunkStatus;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_46832_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/hasChunksAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46847_ (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/world/level/LevelReader/getBlockStatesIfLoaded (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/LevelReader/m_46849_ (Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/LevelReader/getMaxLocalRawBrightness (Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/LevelReader/m_46855_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/LevelReader/containsAnyLiquid (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/LevelReader/m_46859_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/isEmptyBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46861_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/canSeeSkyFromBelowWater (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46865_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_5452_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/LevelReader/getHeightmapPos (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/LevelReader/m_5736_ ()I net/minecraft/world/level/LevelReader/getSeaLevel ()I +MD: net/minecraft/world/level/LevelReader/m_5776_ ()Z net/minecraft/world/level/LevelReader/isClientSide ()Z +MD: net/minecraft/world/level/LevelReader/m_6042_ ()Lnet/minecraft/world/level/dimension/DimensionType; net/minecraft/world/level/LevelReader/dimensionType ()Lnet/minecraft/world/level/dimension/DimensionType; +MD: net/minecraft/world/level/LevelReader/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/world/level/LevelReader/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/world/level/LevelReader/m_6325_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_6522_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_6924_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/LevelReader/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/LevelReader/m_7062_ ()Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/world/level/LevelReader/getBiomeManager ()Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/world/level/LevelReader/m_7232_ (II)Z net/minecraft/world/level/LevelReader/hasChunk (II)Z +MD: net/minecraft/world/level/LevelReader/m_7445_ ()I net/minecraft/world/level/LevelReader/getSkyDarken ()I +MD: net/minecraft/world/level/LevelReader/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/LevelReader/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/LevelReader/m_9598_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/LevelReader/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/LevelSettings/ (Ljava/lang/String;Lnet/minecraft/world/level/GameType;ZLnet/minecraft/world/Difficulty;ZLnet/minecraft/world/level/GameRules;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/world/level/LevelSettings/ (Ljava/lang/String;Lnet/minecraft/world/level/GameType;ZLnet/minecraft/world/Difficulty;ZLnet/minecraft/world/level/GameRules;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/world/level/LevelSettings/m_246291_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/LevelSettings/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/LevelSettings/m_247275_ (Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/withDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46917_ ()Ljava/lang/String; net/minecraft/world/level/LevelSettings/levelName ()Ljava/lang/String; +MD: net/minecraft/world/level/LevelSettings/m_46918_ (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/withDifficulty (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46922_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/withGameType (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46924_ (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/parse (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46927_ (Ljava/lang/Number;)Lnet/minecraft/world/Difficulty; net/minecraft/world/level/LevelSettings/lambda$parse$0 (Ljava/lang/Number;)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/LevelSettings/m_46929_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/LevelSettings/gameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/LevelSettings/m_46930_ ()Z net/minecraft/world/level/LevelSettings/hardcore ()Z +MD: net/minecraft/world/level/LevelSettings/m_46931_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/LevelSettings/difficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/LevelSettings/m_46932_ ()Z net/minecraft/world/level/LevelSettings/allowCommands ()Z +MD: net/minecraft/world/level/LevelSettings/m_46933_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/LevelSettings/gameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/LevelSettings/m_46935_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/copy ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSimulatedReader/m_141902_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; net/minecraft/world/level/LevelSimulatedReader/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; +MD: net/minecraft/world/level/LevelSimulatedReader/m_142433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/LevelSimulatedReader/isFluidAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/LevelSimulatedReader/m_5452_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/LevelSimulatedReader/getHeightmapPos (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/LevelSimulatedReader/m_7433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/LevelSimulatedReader/isStateAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/LevelTimeAccess/m_46940_ ()F net/minecraft/world/level/LevelTimeAccess/getMoonBrightness ()F +MD: net/minecraft/world/level/LevelTimeAccess/m_46941_ ()I net/minecraft/world/level/LevelTimeAccess/getMoonPhase ()I +MD: net/minecraft/world/level/LevelTimeAccess/m_46942_ (F)F net/minecraft/world/level/LevelTimeAccess/getTimeOfDay (F)F +MD: net/minecraft/world/level/LevelTimeAccess/m_8044_ ()J net/minecraft/world/level/LevelTimeAccess/dayTime ()J +MD: net/minecraft/world/level/LevelWriter/m_46953_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/LevelWriter/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/LevelWriter/m_46961_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/LevelWriter/destroyBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/LevelWriter/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/world/level/LevelWriter/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/world/level/LevelWriter/m_7471_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/LevelWriter/removeBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/LevelWriter/m_7731_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z net/minecraft/world/level/LevelWriter/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z +MD: net/minecraft/world/level/LevelWriter/m_7740_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z net/minecraft/world/level/LevelWriter/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/world/level/LevelWriter/m_7967_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/LevelWriter/addFreshEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/LightLayer/ ()V net/minecraft/world/level/LightLayer/ ()V +MD: net/minecraft/world/level/LightLayer/ (Ljava/lang/String;I)V net/minecraft/world/level/LightLayer/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/LightLayer/m_151586_ ()[Lnet/minecraft/world/level/LightLayer; net/minecraft/world/level/LightLayer/$values ()[Lnet/minecraft/world/level/LightLayer; +MD: net/minecraft/world/level/LightLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/LightLayer; net/minecraft/world/level/LightLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/LightLayer; +MD: net/minecraft/world/level/LightLayer/values ()[Lnet/minecraft/world/level/LightLayer; net/minecraft/world/level/LightLayer/values ()[Lnet/minecraft/world/level/LightLayer; +MD: net/minecraft/world/level/LocalMobCapCalculator/ (Lnet/minecraft/server/level/ChunkMap;)V net/minecraft/world/level/LocalMobCapCalculator/ (Lnet/minecraft/server/level/ChunkMap;)V +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186502_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/level/LocalMobCapCalculator$MobCounts; net/minecraft/world/level/LocalMobCapCalculator/lambda$addMob$1 (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/level/LocalMobCapCalculator$MobCounts; +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186504_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/LocalMobCapCalculator/canSpawn (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186507_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; net/minecraft/world/level/LocalMobCapCalculator/getPlayersNear (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186509_ (Lnet/minecraft/world/level/ChunkPos;J)Ljava/util/List; net/minecraft/world/level/LocalMobCapCalculator/lambda$getPlayersNear$0 (Lnet/minecraft/world/level/ChunkPos;J)Ljava/util/List; +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186512_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/MobCategory;)V net/minecraft/world/level/LocalMobCapCalculator/addMob (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/MobCategory;)V +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/ ()V net/minecraft/world/level/LocalMobCapCalculator$MobCounts/ ()V +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/m_186517_ (Lnet/minecraft/world/entity/MobCategory;)V net/minecraft/world/level/LocalMobCapCalculator$MobCounts/add (Lnet/minecraft/world/entity/MobCategory;)V +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/m_186519_ (Lnet/minecraft/world/entity/MobCategory;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/LocalMobCapCalculator$MobCounts/lambda$add$0 (Lnet/minecraft/world/entity/MobCategory;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/m_186522_ (Lnet/minecraft/world/entity/MobCategory;)Z net/minecraft/world/level/LocalMobCapCalculator$MobCounts/canSpawn (Lnet/minecraft/world/entity/MobCategory;)Z +MD: net/minecraft/world/level/NaturalSpawner/ ()V net/minecraft/world/level/NaturalSpawner/ ()V +MD: net/minecraft/world/level/NaturalSpawner/ ()V net/minecraft/world/level/NaturalSpawner/ ()V +MD: net/minecraft/world/level/NaturalSpawner/m_151605_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/NaturalSpawner/lambda$spawnCategoryForPosition$3 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_151609_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/NaturalSpawner/lambda$spawnCategoryForPosition$4 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/NaturalSpawner/m_151612_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/NaturalSpawner/spawnCategoryForPosition (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/NaturalSpawner/m_186524_ (ILjava/lang/Iterable;Lnet/minecraft/world/level/NaturalSpawner$ChunkGetter;Lnet/minecraft/world/level/LocalMobCapCalculator;)Lnet/minecraft/world/level/NaturalSpawner$SpawnState; net/minecraft/world/level/NaturalSpawner/createState (ILjava/lang/Iterable;Lnet/minecraft/world/level/NaturalSpawner$ChunkGetter;Lnet/minecraft/world/level/LocalMobCapCalculator;)Lnet/minecraft/world/level/NaturalSpawner$SpawnState; +MD: net/minecraft/world/level/NaturalSpawner/m_220421_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z net/minecraft/world/level/NaturalSpawner/isValidSpawnPostitionForType (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z +MD: net/minecraft/world/level/NaturalSpawner/m_220429_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/level/NaturalSpawner/getRandomSpawnMobAt (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/level/NaturalSpawner/m_220436_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/NaturalSpawner/canSpawnMobAt (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_220443_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/NaturalSpawner/mobsAt (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/NaturalSpawner/m_220450_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/NaturalSpawner/spawnMobsForChunkGeneration (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/NaturalSpawner/m_220455_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;)Z net/minecraft/world/level/NaturalSpawner/isInNetherFortressBounds (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_274265_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;Lnet/minecraft/world/entity/MobCategory;Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/NaturalSpawner/lambda$createState$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;Lnet/minecraft/world/entity/MobCategory;Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/NaturalSpawner/m_46982_ (I)[Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/level/NaturalSpawner/lambda$static$1 (I)[Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/level/NaturalSpawner/m_46988_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Mob; net/minecraft/world/level/NaturalSpawner/getMobForSpawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/world/level/NaturalSpawner/m_46991_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;D)Z net/minecraft/world/level/NaturalSpawner/isValidPositionForMob (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;D)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47024_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z net/minecraft/world/level/NaturalSpawner/isRightDistanceToPlayerAndSpawnPoint (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47029_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnState;ZZZ)V net/minecraft/world/level/NaturalSpawner/spawnForChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnState;ZZZ)V +MD: net/minecraft/world/level/NaturalSpawner/m_47036_ (Lnet/minecraft/world/entity/MobCategory;)Z net/minecraft/world/level/NaturalSpawner/lambda$static$0 (Lnet/minecraft/world/entity/MobCategory;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47038_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V net/minecraft/world/level/NaturalSpawner/spawnCategoryForPosition (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V +MD: net/minecraft/world/level/NaturalSpawner/m_47045_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V net/minecraft/world/level/NaturalSpawner/spawnCategoryForChunk (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V +MD: net/minecraft/world/level/NaturalSpawner/m_47051_ (Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/NaturalSpawner/isSpawnPositionOk (Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47056_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/NaturalSpawner/isValidEmptySpawnBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47062_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/NaturalSpawner/getRandomPosWithin (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/NaturalSpawner/m_47065_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/entity/EntityType;II)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/NaturalSpawner/getTopNonCollidingPos (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/entity/EntityType;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/NaturalSpawner/m_47095_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/world/level/NaturalSpawner/getRoughBiome (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/world/level/NaturalSpawner$1/ ()V net/minecraft/world/level/NaturalSpawner$1/ ()V +MD: net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback/m_47100_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback/run (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/NaturalSpawner$ChunkGetter/m_47103_ (JLjava/util/function/Consumer;)V net/minecraft/world/level/NaturalSpawner$ChunkGetter/query (JLjava/util/function/Consumer;)V +MD: net/minecraft/world/level/NaturalSpawner$SpawnPredicate/m_47106_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/NaturalSpawner$SpawnPredicate/test (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/ (ILit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;)V net/minecraft/world/level/NaturalSpawner$SpawnState/ (ILit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;)V +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_186548_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/NaturalSpawner$SpawnState/canSpawnForCategory (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47126_ ()I net/minecraft/world/level/NaturalSpawner$SpawnState/getSpawnableChunkCount ()I +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47127_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/NaturalSpawner$SpawnState/canSpawn (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47131_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/NaturalSpawner$SpawnState/afterSpawn (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47148_ ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/NaturalSpawner$SpawnState/getMobCategoryCounts ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/NoiseColumn/ (I[Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/NoiseColumn/ (I[Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/NoiseColumn/m_183556_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/NoiseColumn/getBlock (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/NoiseColumn/m_183639_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/NoiseColumn/setBlock (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/PathNavigationRegion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/PathNavigationRegion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/PathNavigationRegion/m_141928_ ()I net/minecraft/world/level/PathNavigationRegion/getHeight ()I +MD: net/minecraft/world/level/PathNavigationRegion/m_141937_ ()I net/minecraft/world/level/PathNavigationRegion/getMinBuildHeight ()I +MD: net/minecraft/world/level/PathNavigationRegion/m_151625_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/world/level/PathNavigationRegion/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/world/level/PathNavigationRegion/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/PathNavigationRegion/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/PathNavigationRegion/m_268982_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/Holder; net/minecraft/world/level/PathNavigationRegion/lambda$new$0 (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/PathNavigationRegion/m_47167_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/PathNavigationRegion/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/PathNavigationRegion/m_47185_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/PathNavigationRegion/getChunk (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/PathNavigationRegion/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/PathNavigationRegion/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/PathNavigationRegion/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/world/level/PathNavigationRegion/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/world/level/PathNavigationRegion/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/PathNavigationRegion/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/PathNavigationRegion/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/PathNavigationRegion/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/PathNavigationRegion/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/PathNavigationRegion/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/PotentialCalculator/ ()V net/minecraft/world/level/PotentialCalculator/ ()V +MD: net/minecraft/world/level/PotentialCalculator/m_47192_ (Lnet/minecraft/core/BlockPos;D)V net/minecraft/world/level/PotentialCalculator/addCharge (Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/world/level/PotentialCalculator/m_47195_ (Lnet/minecraft/core/BlockPos;D)D net/minecraft/world/level/PotentialCalculator/getPotentialEnergyChange (Lnet/minecraft/core/BlockPos;D)D +MD: net/minecraft/world/level/PotentialCalculator$PointCharge/ (Lnet/minecraft/core/BlockPos;D)V net/minecraft/world/level/PotentialCalculator$PointCharge/ (Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/world/level/PotentialCalculator$PointCharge/m_47203_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/PotentialCalculator$PointCharge/getPotentialChange (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/ServerLevelAccessor/m_47205_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/ServerLevelAccessor/addFreshEntityWithPassengers (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/ServerLevelAccessor/m_6018_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/ServerLevelAccessor/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/SignalGetter/ ()V net/minecraft/world/level/SignalGetter/ ()V +MD: net/minecraft/world/level/SignalGetter/m_276867_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/SignalGetter/hasNeighborSignal (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/SignalGetter/m_276987_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/SignalGetter/hasSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/SignalGetter/m_277075_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/SignalGetter/getDirectSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/SignalGetter/m_277086_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/SignalGetter/getBestNeighborSignal (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/SignalGetter/m_277094_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)I net/minecraft/world/level/SignalGetter/getControlInputSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)I +MD: net/minecraft/world/level/SignalGetter/m_277173_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/SignalGetter/getDirectSignalTo (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/SignalGetter/m_277185_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/SignalGetter/getSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/SpawnData/ ()V net/minecraft/world/level/SpawnData/ ()V +MD: net/minecraft/world/level/SpawnData/ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)V net/minecraft/world/level/SpawnData/ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)V +MD: net/minecraft/world/level/SpawnData/ ()V net/minecraft/world/level/SpawnData/ ()V +MD: net/minecraft/world/level/SpawnData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/SpawnData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/SpawnData/f_186561_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/SpawnData/entityToSpawn ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/SpawnData/f_186562_ ()Ljava/util/Optional; net/minecraft/world/level/SpawnData/customSpawnRules ()Ljava/util/Optional; +MD: net/minecraft/world/level/SpawnData/hashCode ()I net/minecraft/world/level/SpawnData/hashCode ()I +MD: net/minecraft/world/level/SpawnData/m_186567_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/SpawnData/getEntityToSpawn ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/SpawnData/m_186568_ (Lnet/minecraft/world/level/SpawnData;)Ljava/util/Optional; net/minecraft/world/level/SpawnData/lambda$static$1 (Lnet/minecraft/world/level/SpawnData;)Ljava/util/Optional; +MD: net/minecraft/world/level/SpawnData/m_186570_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/SpawnData/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/SpawnData/m_186574_ ()Ljava/util/Optional; net/minecraft/world/level/SpawnData/getCustomSpawnRules ()Ljava/util/Optional; +MD: net/minecraft/world/level/SpawnData/m_186575_ (Lnet/minecraft/world/level/SpawnData;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/SpawnData/lambda$static$0 (Lnet/minecraft/world/level/SpawnData;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/SpawnData/toString ()Ljava/lang/String; net/minecraft/world/level/SpawnData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/ ()V net/minecraft/world/level/SpawnData$CustomSpawnRules/ ()V +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/util/InclusiveRange;)V net/minecraft/world/level/SpawnData$CustomSpawnRules/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/util/InclusiveRange;)V +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/equals (Ljava/lang/Object;)Z net/minecraft/world/level/SpawnData$CustomSpawnRules/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186584_ ()Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/blockLightLimit ()Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186585_ ()Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/skyLightLimit ()Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/hashCode ()I net/minecraft/world/level/SpawnData$CustomSpawnRules/hashCode ()I +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_186592_ (Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/SpawnData$CustomSpawnRules/checkLightBoundaries (Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_186594_ (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$static$2 (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_186599_ (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$static$1 (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_274266_ ()Ljava/lang/String; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$checkLightBoundaries$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_285731_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_285810_ (Ljava/lang/String;)Lcom/mojang/serialization/MapCodec; net/minecraft/world/level/SpawnData$CustomSpawnRules/lightLimit (Ljava/lang/String;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/toString ()Ljava/lang/String; net/minecraft/world/level/SpawnData$CustomSpawnRules/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/StructureManager/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/structure/StructureCheck;)V net/minecraft/world/level/StructureManager/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/structure/StructureCheck;)V +MD: net/minecraft/world/level/StructureManager/m_220467_ ()Z net/minecraft/world/level/StructureManager/shouldGenerateStructures ()Z +MD: net/minecraft/world/level/StructureManager/m_220468_ (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/StructureManager; net/minecraft/world/level/StructureManager/forWorldGenRegion (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/StructureManager; +MD: net/minecraft/world/level/StructureManager/m_220473_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/StructureManager/checkStructurePresence (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/StructureManager/m_220477_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/StructureManager/startsForStructure (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/StructureManager/m_220480_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lit/unimi/dsi/fastutil/longs/LongSet;Ljava/util/function/Consumer;)V net/minecraft/world/level/StructureManager/fillStartsForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lit/unimi/dsi/fastutil/longs/LongSet;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/StructureManager/m_220484_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/StructureManager/addReference (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/StructureManager/m_220486_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/StructureManager/hasAnyStructureAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/StructureManager/m_220488_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureWithPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220491_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureWithPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220494_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220497_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/StructureManager/structureHasPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/StructureManager/m_220504_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; net/minecraft/world/level/StructureManager/startsForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; +MD: net/minecraft/world/level/StructureManager/m_220507_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;JLnet/minecraft/world/level/chunk/StructureAccess;)V net/minecraft/world/level/StructureManager/addReferenceForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;JLnet/minecraft/world/level/chunk/StructureAccess;)V +MD: net/minecraft/world/level/StructureManager/m_220512_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/chunk/StructureAccess;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStartForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/chunk/StructureAccess;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220516_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/world/level/chunk/StructureAccess;)V net/minecraft/world/level/StructureManager/setStartForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/world/level/chunk/StructureAccess;)V +MD: net/minecraft/world/level/StructureManager/m_220521_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/StructureManager/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/StructureManager/m_220522_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Map; net/minecraft/world/level/StructureManager/getAllStructuresAt (Lnet/minecraft/core/BlockPos;)Ljava/util/Map; +MD: net/minecraft/world/level/StructureManager/m_220524_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureWithPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_244994_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Boolean; net/minecraft/world/level/StructureManager/lambda$getStructureWithPieceAt$0 (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/StructureManager/m_257323_ (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z net/minecraft/world/level/StructureManager/lambda$getStructureWithPieceAt$1 (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z +MD: net/minecraft/world/level/WorldDataConfiguration/ ()V net/minecraft/world/level/WorldDataConfiguration/ ()V +MD: net/minecraft/world/level/WorldDataConfiguration/ (Lnet/minecraft/world/level/DataPackConfig;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/level/WorldDataConfiguration/ (Lnet/minecraft/world/level/DataPackConfig;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/level/WorldDataConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/WorldDataConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/WorldDataConfiguration/f_243973_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/WorldDataConfiguration/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/WorldDataConfiguration/f_244096_ ()Lnet/minecraft/world/level/DataPackConfig; net/minecraft/world/level/WorldDataConfiguration/dataPacks ()Lnet/minecraft/world/level/DataPackConfig; +MD: net/minecraft/world/level/WorldDataConfiguration/hashCode ()I net/minecraft/world/level/WorldDataConfiguration/hashCode ()I +MD: net/minecraft/world/level/WorldDataConfiguration/m_245801_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/WorldDataConfiguration/expandFeatures (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/WorldDataConfiguration/m_247068_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/WorldDataConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/WorldDataConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/WorldDataConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/WorldGenLevel/m_143497_ (Ljava/util/function/Supplier;)V net/minecraft/world/level/WorldGenLevel/setCurrentlyGenerating (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/WorldGenLevel/m_180807_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/WorldGenLevel/ensureCanWrite (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/WorldGenLevel/m_7328_ ()J net/minecraft/world/level/WorldGenLevel/getSeed ()J +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/ ()V net/minecraft/world/level/biome/AmbientAdditionsSettings/ ()V +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/ (Lnet/minecraft/core/Holder;D)V net/minecraft/world/level/biome/AmbientAdditionsSettings/ (Lnet/minecraft/core/Holder;D)V +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_151639_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Ljava/lang/Double; net/minecraft/world/level/biome/AmbientAdditionsSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_263164_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientAdditionsSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_263165_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/AmbientAdditionsSettings/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_263205_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientAdditionsSettings/getSoundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_47383_ ()D net/minecraft/world/level/biome/AmbientAdditionsSettings/getTickChance ()D +MD: net/minecraft/world/level/biome/AmbientMoodSettings/ ()V net/minecraft/world/level/biome/AmbientMoodSettings/ ()V +MD: net/minecraft/world/level/biome/AmbientMoodSettings/ (Lnet/minecraft/core/Holder;IID)V net/minecraft/world/level/biome/AmbientMoodSettings/ (Lnet/minecraft/core/Holder;IID)V +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_151643_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Double; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$3 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_151645_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$2 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_151647_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_263166_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_263167_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_263199_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientMoodSettings/getSoundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_47403_ ()I net/minecraft/world/level/biome/AmbientMoodSettings/getTickDelay ()I +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_47406_ ()I net/minecraft/world/level/biome/AmbientMoodSettings/getBlockSearchExtent ()I +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_47409_ ()D net/minecraft/world/level/biome/AmbientMoodSettings/getSoundPositionOffset ()D +MD: net/minecraft/world/level/biome/AmbientParticleSettings/ ()V net/minecraft/world/level/biome/AmbientParticleSettings/ ()V +MD: net/minecraft/world/level/biome/AmbientParticleSettings/ (Lnet/minecraft/core/particles/ParticleOptions;F)V net/minecraft/world/level/biome/AmbientParticleSettings/ (Lnet/minecraft/core/particles/ParticleOptions;F)V +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_151651_ (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/AmbientParticleSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_151653_ (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/biome/AmbientParticleSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_220527_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/biome/AmbientParticleSettings/canSpawn (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_47419_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/biome/AmbientParticleSettings/getOptions ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_47422_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/AmbientParticleSettings/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome/ ()V net/minecraft/world/level/biome/Biome/ ()V +MD: net/minecraft/world/level/biome/Biome/ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;Lnet/minecraft/world/level/biome/BiomeGenerationSettings;Lnet/minecraft/world/level/biome/MobSpawnSettings;)V net/minecraft/world/level/biome/Biome/ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;Lnet/minecraft/world/level/biome/BiomeGenerationSettings;Lnet/minecraft/world/level/biome/MobSpawnSettings;)V +MD: net/minecraft/world/level/biome/Biome/m_151716_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; net/minecraft/world/level/biome/Biome/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; +MD: net/minecraft/world/level/biome/Biome/m_198904_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/coldEnoughToSnow (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_198906_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/warmEnoughToRain (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_198908_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/shouldMeltFrozenOceanIcebergSlightly (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_220534_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/world/level/biome/Biome/lambda$static$7 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/world/level/biome/Biome/m_220537_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/Biome/lambda$static$6 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/Biome/m_220539_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Biome/lambda$static$8 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome/m_220541_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; net/minecraft/world/level/biome/Biome/lambda$static$5 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; +MD: net/minecraft/world/level/biome/Biome/m_220543_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Biome/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome/m_220545_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/MobSpawnSettings; net/minecraft/world/level/biome/Biome/lambda$static$3 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/MobSpawnSettings; +MD: net/minecraft/world/level/biome/Biome/m_220547_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/biome/Biome/lambda$static$2 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/biome/Biome/m_220549_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/Biome/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/Biome/m_220551_ ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; net/minecraft/world/level/biome/Biome/lambda$new$10 ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; +MD: net/minecraft/world/level/biome/Biome/m_220552_ ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; net/minecraft/world/level/biome/Biome/lambda$new$9 ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; +MD: net/minecraft/world/level/biome/Biome/m_264473_ ()Z net/minecraft/world/level/biome/Biome/hasPrecipitation ()Z +MD: net/minecraft/world/level/biome/Biome/m_264600_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome/getPrecipitationAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome/m_47463_ ()I net/minecraft/world/level/biome/Biome/getSkyColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47464_ (DD)I net/minecraft/world/level/biome/Biome/getGrassColor (DD)I +MD: net/minecraft/world/level/biome/Biome/m_47477_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/shouldFreeze (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_47480_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/biome/Biome/shouldFreeze (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/biome/Biome/m_47505_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/biome/Biome/getTemperature (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/biome/Biome/m_47518_ ()Lnet/minecraft/world/level/biome/MobSpawnSettings; net/minecraft/world/level/biome/Biome/getMobSettings ()Lnet/minecraft/world/level/biome/MobSpawnSettings; +MD: net/minecraft/world/level/biome/Biome/m_47519_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/shouldSnow (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_47528_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/biome/Biome/getHeightAdjustedTemperature (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/biome/Biome/m_47536_ ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/biome/Biome/getGenerationSettings ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/biome/Biome/m_47539_ ()I net/minecraft/world/level/biome/Biome/getFogColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47542_ ()I net/minecraft/world/level/biome/Biome/getFoliageColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47554_ ()F net/minecraft/world/level/biome/Biome/getBaseTemperature ()F +MD: net/minecraft/world/level/biome/Biome/m_47557_ ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/Biome/getSpecialEffects ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/Biome/m_47560_ ()I net/minecraft/world/level/biome/Biome/getWaterColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47561_ ()I net/minecraft/world/level/biome/Biome/getWaterFogColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47562_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientParticle ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47563_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientLoop ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47564_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientMood ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47565_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientAdditions ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47566_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getBackgroundMusic ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47570_ ()I net/minecraft/world/level/biome/Biome/getGrassColorFromTexture ()I +MD: net/minecraft/world/level/biome/Biome/m_47571_ ()I net/minecraft/world/level/biome/Biome/getFoliageColorFromTexture ()I +MD: net/minecraft/world/level/biome/Biome$1/ (Lnet/minecraft/world/level/biome/Biome;IF)V net/minecraft/world/level/biome/Biome$1/ (Lnet/minecraft/world/level/biome/Biome;IF)V +MD: net/minecraft/world/level/biome/Biome$1/rehash (I)V net/minecraft/world/level/biome/Biome$1/rehash (I)V +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/ ()V net/minecraft/world/level/biome/Biome$BiomeBuilder/ ()V +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_264558_ (Z)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/hasPrecipitation (Z)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47592_ ()Lnet/minecraft/world/level/biome/Biome; net/minecraft/world/level/biome/Biome$BiomeBuilder/build ()Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47599_ (Lnet/minecraft/world/level/biome/Biome$TemperatureModifier;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/temperatureAdjustment (Lnet/minecraft/world/level/biome/Biome$TemperatureModifier;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47601_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/generationSettings (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47603_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/specialEffects (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47605_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/mobSpawnSettings (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47609_ (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/temperature (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47611_ (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/downfall (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$BiomeBuilder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/ ()V net/minecraft/world/level/biome/Biome$ClimateSettings/ ()V +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/ (ZFLnet/minecraft/world/level/biome/Biome$TemperatureModifier;F)V net/minecraft/world/level/biome/Biome$ClimateSettings/ (ZFLnet/minecraft/world/level/biome/Biome$TemperatureModifier;F)V +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Biome$ClimateSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_263819_ ()Z net/minecraft/world/level/biome/Biome$ClimateSettings/hasPrecipitation ()Z +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47681_ ()F net/minecraft/world/level/biome/Biome$ClimateSettings/temperature ()F +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47682_ ()Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$ClimateSettings/temperatureModifier ()Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47683_ ()F net/minecraft/world/level/biome/Biome$ClimateSettings/downfall ()F +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/hashCode ()I net/minecraft/world/level/biome/Biome$ClimateSettings/hashCode ()I +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_151732_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$3 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_151734_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$2 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_151736_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_264019_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_264020_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Boolean; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$ClimateSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$Precipitation/ ()V net/minecraft/world/level/biome/Biome$Precipitation/ ()V +MD: net/minecraft/world/level/biome/Biome$Precipitation/ (Ljava/lang/String;I)V net/minecraft/world/level/biome/Biome$Precipitation/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/biome/Biome$Precipitation/m_151740_ ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome$Precipitation/$values ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome$Precipitation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome$Precipitation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome$Precipitation/values ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome$Precipitation/values ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/ ()V net/minecraft/world/level/biome/Biome$TemperatureModifier/ ()V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/Biome$TemperatureModifier/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_151741_ ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$TemperatureModifier/$values ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_47758_ ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$TemperatureModifier/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$TemperatureModifier/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_8117_ (Lnet/minecraft/core/BlockPos;F)F net/minecraft/world/level/biome/Biome$TemperatureModifier/modifyTemperature (Lnet/minecraft/core/BlockPos;F)F +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$TemperatureModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/values ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$TemperatureModifier/values ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/Biome$TemperatureModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$1/m_8117_ (Lnet/minecraft/core/BlockPos;F)F net/minecraft/world/level/biome/Biome$TemperatureModifier$1/modifyTemperature (Lnet/minecraft/core/BlockPos;F)F +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/Biome$TemperatureModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$2/m_8117_ (Lnet/minecraft/core/BlockPos;F)F net/minecraft/world/level/biome/Biome$TemperatureModifier$2/modifyTemperature (Lnet/minecraft/core/BlockPos;F)F +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/ ()V net/minecraft/world/level/biome/BiomeGenerationSettings/ ()V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/ (Ljava/util/Map;Ljava/util/List;)V net/minecraft/world/level/biome/BiomeGenerationSettings/ (Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186652_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186654_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186656_ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Z net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$new$3 (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Z +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186658_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z net/minecraft/world/level/biome/BiomeGenerationSettings/hasFeature (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186660_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/Map; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/Map; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_204187_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/lang/Iterable; net/minecraft/world/level/biome/BiomeGenerationSettings/getCarvers (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_204189_ (Ljava/util/List;)Ljava/util/Set; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$new$5 (Ljava/util/List;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_204191_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$new$4 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_47815_ ()Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/getFlowerFeatures ()Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_47818_ ()Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/features ()Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)V net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/m_255155_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/addFeature (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/m_255308_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/addCarver (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/ ()V net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/ ()V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_254863_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addCarver (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_254982_ (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addFeature (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255250_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/lambda$build$1 (Ljava/util/Map$Entry;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255276_ (I)V net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addFeatureStepsUpTo (I)V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255277_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/lambda$addCarver$0 (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255380_ ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/build ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255419_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addFeature (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +MD: net/minecraft/world/level/biome/BiomeManager/ ()V net/minecraft/world/level/biome/BiomeManager/ ()V +MD: net/minecraft/world/level/biome/BiomeManager/ (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;J)V net/minecraft/world/level/biome/BiomeManager/ (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;J)V +MD: net/minecraft/world/level/biome/BiomeManager/m_186679_ (JIIIDDD)D net/minecraft/world/level/biome/BiomeManager/getFiddledDistance (JIIIDDD)D +MD: net/minecraft/world/level/biome/BiomeManager/m_186687_ (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;)Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/world/level/biome/BiomeManager/withDifferentSource (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;)Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/world/level/biome/BiomeManager/m_186689_ (J)D net/minecraft/world/level/biome/BiomeManager/getFiddle (J)D +MD: net/minecraft/world/level/biome/BiomeManager/m_204206_ (DDD)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getNoiseBiomeAtPosition (DDD)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_204210_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getNoiseBiomeAtQuart (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_204214_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getBiome (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_204216_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getNoiseBiomeAtPosition (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_47877_ (J)J net/minecraft/world/level/biome/BiomeManager/obfuscateSeed (J)J +MD: net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeResolver/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeResolver/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeSource/ ()V net/minecraft/world/level/biome/BiomeSource/ ()V +MD: net/minecraft/world/level/biome/BiomeSource/ ()V net/minecraft/world/level/biome/BiomeSource/ ()V +MD: net/minecraft/world/level/biome/BiomeSource/m_183399_ (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; net/minecraft/world/level/biome/BiomeSource/getBiomesWithin (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeSource/m_207301_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/biome/BiomeSource/addDebugInfo (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/biome/BiomeSource/m_207840_ ()Ljava/util/Set; net/minecraft/world/level/biome/BiomeSource/possibleBiomes ()Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeSource/m_213971_ (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/BiomeSource/findBiomeHorizontal (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/BiomeSource/m_214004_ (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/BiomeSource/findClosestBiome3d (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/BiomeSource/m_220570_ (IIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/BiomeSource/findBiomeHorizontal (IIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/BiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/BiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/BiomeSource/m_274508_ ()Ljava/util/Set; net/minecraft/world/level/biome/BiomeSource/lambda$new$0 ()Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/BiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/BiomeSources/ ()V net/minecraft/world/level/biome/BiomeSources/ ()V +MD: net/minecraft/world/level/biome/BiomeSources/m_220586_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/BiomeSources/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/ ()V net/minecraft/world/level/biome/BiomeSpecialEffects/ ()V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/ (IIIILjava/util/Optional;Ljava/util/Optional;Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/world/level/biome/BiomeSpecialEffects/ (IIIILjava/util/Optional;Ljava/util/Optional;Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151759_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$11 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151761_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$10 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151763_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$9 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151765_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$8 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151767_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$7 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151769_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$6 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151771_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$5 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151773_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$4 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151775_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$3 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151777_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$2 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151779_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$1 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151781_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$0 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47967_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getFogColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47970_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$12 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47972_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getWaterColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47975_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getWaterFogColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47978_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getSkyColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47981_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getFoliageColorOverride ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47984_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getGrassColorOverride ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47987_ ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects/getGrassColorModifier ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47990_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientParticleSettings ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47993_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientLoopSoundEvent ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47996_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientMoodSettings ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47999_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientAdditionsSettings ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_48002_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getBackgroundMusic ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ ()V net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ ()V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48018_ ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/build ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48019_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/fogColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48021_ (Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/backgroundMusic (Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48023_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientLoopSound (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48025_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientAdditionsSound (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48027_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientMoodSound (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48029_ (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientParticle (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48031_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorModifier (Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48033_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$3 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48034_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48036_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48037_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterFogColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48039_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48040_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/skyColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48042_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48043_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/foliageColorOverride (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48045_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorOverride (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ ()V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ ()V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_151783_ ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/$values ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_48072_ ()Ljava/lang/String; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/values ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/values ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/Biomes/ ()V net/minecraft/world/level/biome/Biomes/ ()V +MD: net/minecraft/world/level/biome/Biomes/ ()V net/minecraft/world/level/biome/Biomes/ ()V +MD: net/minecraft/world/level/biome/Biomes/m_48228_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/Biomes/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ ()V net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ ()V +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ (Lnet/minecraft/core/HolderSet;I)V net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ (Lnet/minecraft/core/HolderSet;I)V +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_151787_ (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Ljava/lang/Integer; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/lambda$static$1 (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_204245_ (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/lambda$static$0 (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_48243_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/Climate/ ()V net/minecraft/world/level/biome/Climate/ ()V +MD: net/minecraft/world/level/biome/Climate/m_186779_ (F)J net/minecraft/world/level/biome/Climate/quantizeCoord (F)J +MD: net/minecraft/world/level/biome/Climate/m_186781_ (FFFFFF)Lnet/minecraft/world/level/biome/Climate$TargetPoint; net/minecraft/world/level/biome/Climate/target (FFFFFF)Lnet/minecraft/world/level/biome/Climate$TargetPoint; +MD: net/minecraft/world/level/biome/Climate/m_186788_ (FFFFFFF)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; net/minecraft/world/level/biome/Climate/parameters (FFFFFFF)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; +MD: net/minecraft/world/level/biome/Climate/m_186796_ (J)F net/minecraft/world/level/biome/Climate/unquantizeCoord (J)F +MD: net/minecraft/world/level/biome/Climate/m_186798_ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;F)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; net/minecraft/world/level/biome/Climate/parameters (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;F)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; +MD: net/minecraft/world/level/biome/Climate/m_207841_ ()Lnet/minecraft/world/level/biome/Climate$Sampler; net/minecraft/world/level/biome/Climate/empty ()Lnet/minecraft/world/level/biome/Climate$Sampler; +MD: net/minecraft/world/level/biome/Climate/m_207842_ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/biome/Climate/findSpawnPosition (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/biome/Climate$DistanceMetric/m_186809_ (Lnet/minecraft/world/level/biome/Climate$RTree$Node;[J)J net/minecraft/world/level/biome/Climate$DistanceMetric/distance (Lnet/minecraft/world/level/biome/Climate$RTree$Node;[J)J +MD: net/minecraft/world/level/biome/Climate$Parameter/ ()V net/minecraft/world/level/biome/Climate$Parameter/ ()V +MD: net/minecraft/world/level/biome/Climate$Parameter/ (JJ)V net/minecraft/world/level/biome/Climate$Parameter/ (JJ)V +MD: net/minecraft/world/level/biome/Climate$Parameter/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$Parameter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$Parameter/f_186813_ ()J net/minecraft/world/level/biome/Climate$Parameter/min ()J +MD: net/minecraft/world/level/biome/Climate$Parameter/f_186814_ ()J net/minecraft/world/level/biome/Climate$Parameter/max ()J +MD: net/minecraft/world/level/biome/Climate$Parameter/hashCode ()I net/minecraft/world/level/biome/Climate$Parameter/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186820_ (F)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/point (F)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186822_ (FF)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/span (FF)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186825_ (J)J net/minecraft/world/level/biome/Climate$Parameter/distance (J)J +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186827_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)J net/minecraft/world/level/biome/Climate$Parameter/distance (Lnet/minecraft/world/level/biome/Climate$Parameter;)J +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186829_ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/span (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186836_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/span (Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186838_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$3 (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186840_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$2 (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_274267_ (Ljava/lang/Float;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$1 (Ljava/lang/Float;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_274268_ (Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/String; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$0 (Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$Parameter/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$Parameter/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$ParameterList/ (Ljava/util/List;)V net/minecraft/world/level/biome/Climate$ParameterList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_186850_ ()Ljava/util/List; net/minecraft/world/level/biome/Climate$ParameterList/values ()Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_186851_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValueIndex (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_186853_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValueIndex (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_204252_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValue (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_204254_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValueBruteForce (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_274436_ (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/Climate$ParameterList/codec (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_274448_ (Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Climate$ParameterList/lambda$codec$0 (Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/ ()V net/minecraft/world/level/biome/Climate$ParameterPoint/ ()V +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;J)V net/minecraft/world/level/biome/Climate$ParameterPoint/ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;J)V +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$ParameterPoint/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186863_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/temperature ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186864_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/humidity ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186865_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/continentalness ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186866_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/erosion ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186867_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/depth ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186868_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/weirdness ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186869_ ()J net/minecraft/world/level/biome/Climate$ParameterPoint/offset ()J +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/hashCode ()I net/minecraft/world/level/biome/Climate$ParameterPoint/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186879_ ()Ljava/util/List; net/minecraft/world/level/biome/Climate$ParameterPoint/parameterSpace ()Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186880_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Ljava/lang/Long; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$6 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Ljava/lang/Long; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186882_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)J net/minecraft/world/level/biome/Climate$ParameterPoint/fitness (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)J +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186884_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186887_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$5 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186890_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$4 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186893_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$3 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186896_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$2 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186901_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$1 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186904_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$0 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$ParameterPoint/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$RTree/ (Lnet/minecraft/world/level/biome/Climate$RTree$Node;)V net/minecraft/world/level/biome/Climate$RTree/ (Lnet/minecraft/world/level/biome/Climate$RTree$Node;)V +MD: net/minecraft/world/level/biome/Climate$RTree/m_186914_ (ILnet/minecraft/world/level/biome/Climate$RTree$Node;)J net/minecraft/world/level/biome/Climate$RTree/lambda$build$1 (ILnet/minecraft/world/level/biome/Climate$RTree$Node;)J +MD: net/minecraft/world/level/biome/Climate$RTree/m_186917_ (ILnet/minecraft/world/level/biome/Climate$RTree$SubTree;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; net/minecraft/world/level/biome/Climate$RTree/lambda$build$2 (ILnet/minecraft/world/level/biome/Climate$RTree$SubTree;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186920_ (ILjava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; net/minecraft/world/level/biome/Climate$RTree/build (ILjava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186923_ (IZ)Ljava/util/Comparator; net/minecraft/world/level/biome/Climate$RTree/comparator (IZ)Ljava/util/Comparator; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186926_ (IZLnet/minecraft/world/level/biome/Climate$RTree$Node;)J net/minecraft/world/level/biome/Climate$RTree/lambda$comparator$3 (IZLnet/minecraft/world/level/biome/Climate$RTree$Node;)J +MD: net/minecraft/world/level/biome/Climate$RTree/m_186930_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$RTree/search (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186933_ (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree/lambda$create$0 (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186935_ (Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree; net/minecraft/world/level/biome/Climate$RTree/create (Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186937_ (Ljava/util/List;IIZ)V net/minecraft/world/level/biome/Climate$RTree/sort (Ljava/util/List;IIZ)V +MD: net/minecraft/world/level/biome/Climate$RTree/m_186942_ ([Lnet/minecraft/world/level/biome/Climate$Parameter;)J net/minecraft/world/level/biome/Climate$RTree/cost ([Lnet/minecraft/world/level/biome/Climate$Parameter;)J +MD: net/minecraft/world/level/biome/Climate$RTree/m_186944_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/biome/Climate$RTree/bucketize (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186946_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/biome/Climate$RTree/buildParameterSpace (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$RTree$Leaf/ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;Ljava/lang/Object;)V net/minecraft/world/level/biome/Climate$RTree$Leaf/ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;Ljava/lang/Object;)V +MD: net/minecraft/world/level/biome/Climate$RTree$Leaf/m_183370_ ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree$Leaf/search ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$RTree$Node/ (Ljava/util/List;)V net/minecraft/world/level/biome/Climate$RTree$Node/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$RTree$Node/m_183370_ ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree$Node/search ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$RTree$Node/m_186959_ ([J)J net/minecraft/world/level/biome/Climate$RTree$Node/distance ([J)J +MD: net/minecraft/world/level/biome/Climate$RTree$Node/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$RTree$Node/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;)V net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$RTree$SubTree/m_183370_ ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree$SubTree/search ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$Sampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Ljava/util/List;)V net/minecraft/world/level/biome/Climate$Sampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$Sampler/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$Sampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207845_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/temperature ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207846_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/humidity ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207847_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/continentalness ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207848_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/erosion ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207849_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/depth ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207850_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/weirdness ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207851_ ()Ljava/util/List; net/minecraft/world/level/biome/Climate$Sampler/spawnTarget ()Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$Sampler/hashCode ()I net/minecraft/world/level/biome/Climate$Sampler/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$Sampler/m_183230_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/biome/Climate$Sampler/findSpawnPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/biome/Climate$Sampler/m_183445_ (III)Lnet/minecraft/world/level/biome/Climate$TargetPoint; net/minecraft/world/level/biome/Climate$Sampler/sample (III)Lnet/minecraft/world/level/biome/Climate$TargetPoint; +MD: net/minecraft/world/level/biome/Climate$Sampler/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$Sampler/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$SpawnFinder/ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/biome/Climate$SpawnFinder/ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/biome/Climate$SpawnFinder/m_207874_ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;FF)V net/minecraft/world/level/biome/Climate$SpawnFinder/radialSearch (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;FF)V +MD: net/minecraft/world/level/biome/Climate$SpawnFinder/m_207879_ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;II)Lnet/minecraft/world/level/biome/Climate$SpawnFinder$Result; net/minecraft/world/level/biome/Climate$SpawnFinder/getSpawnPositionAndFitness (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;II)Lnet/minecraft/world/level/biome/Climate$SpawnFinder$Result; +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/ (Lnet/minecraft/core/BlockPos;J)V net/minecraft/world/level/biome/Climate$SpawnFinder$Result/ (Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$SpawnFinder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186992_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/biome/Climate$SpawnFinder$Result/location ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186993_ ()J net/minecraft/world/level/biome/Climate$SpawnFinder$Result/fitness ()J +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/hashCode ()I net/minecraft/world/level/biome/Climate$SpawnFinder$Result/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$SpawnFinder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$TargetPoint/ (JJJJJJ)V net/minecraft/world/level/biome/Climate$TargetPoint/ (JJJJJJ)V +MD: net/minecraft/world/level/biome/Climate$TargetPoint/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$TargetPoint/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187003_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/temperature ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187004_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/humidity ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187005_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/continentalness ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187006_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/erosion ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187007_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/depth ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187008_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/weirdness ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/hashCode ()I net/minecraft/world/level/biome/Climate$TargetPoint/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$TargetPoint/m_187016_ ()[J net/minecraft/world/level/biome/Climate$TargetPoint/toParameterArray ()[J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$TargetPoint/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/FeatureSorter/ ()V net/minecraft/world/level/biome/FeatureSorter/ ()V +MD: net/minecraft/world/level/biome/FeatureSorter/m_220597_ (ILnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Z net/minecraft/world/level/biome/FeatureSorter/lambda$buildFeaturesPerStep$2 (ILnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Z +MD: net/minecraft/world/level/biome/FeatureSorter/m_220600_ (Ljava/util/Comparator;Lnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Ljava/util/Set; net/minecraft/world/level/biome/FeatureSorter/lambda$buildFeaturesPerStep$1 (Ljava/util/Comparator;Lnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/FeatureSorter/m_220603_ (Ljava/util/List;Ljava/util/function/Function;Z)Ljava/util/List; net/minecraft/world/level/biome/FeatureSorter/buildFeaturesPerStep (Ljava/util/List;Ljava/util/function/Function;Z)Ljava/util/List; +MD: net/minecraft/world/level/biome/FeatureSorter/m_220607_ (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/Object;)I net/minecraft/world/level/biome/FeatureSorter/lambda$buildFeaturesPerStep$0 (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/Object;)I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/ (IILnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V net/minecraft/world/level/biome/FeatureSorter$1FeatureData/ (IILnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/FeatureSorter$1FeatureData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220610_ ()I net/minecraft/world/level/biome/FeatureSorter$1FeatureData/featureIndex ()I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220611_ ()I net/minecraft/world/level/biome/FeatureSorter$1FeatureData/step ()I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220612_ ()Lnet/minecraft/world/level/levelgen/placement/PlacedFeature; net/minecraft/world/level/biome/FeatureSorter$1FeatureData/feature ()Lnet/minecraft/world/level/levelgen/placement/PlacedFeature; +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/hashCode ()I net/minecraft/world/level/biome/FeatureSorter$1FeatureData/hashCode ()I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/toString ()Ljava/lang/String; net/minecraft/world/level/biome/FeatureSorter$1FeatureData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;Ljava/util/function/ToIntFunction;)V net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;Ljava/util/function/ToIntFunction;)V +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;)V net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220624_ ()Ljava/util/List; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/features ()Ljava/util/List; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220625_ ()Ljava/util/function/ToIntFunction; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/indexMapping ()Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/hashCode ()I net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/hashCode ()I +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/m_220632_ (I)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/lambda$new$0 (I)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/toString ()Ljava/lang/String; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/FixedBiomeSource/ ()V net/minecraft/world/level/biome/FixedBiomeSource/ ()V +MD: net/minecraft/world/level/biome/FixedBiomeSource/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/biome/FixedBiomeSource/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_183399_ (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; net/minecraft/world/level/biome/FixedBiomeSource/getBiomesWithin (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/FixedBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/FixedBiomeSource/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_204258_ (Lnet/minecraft/world/level/biome/FixedBiomeSource;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/FixedBiomeSource/lambda$static$0 (Lnet/minecraft/world/level/biome/FixedBiomeSource;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_213971_ (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/FixedBiomeSource/findBiomeHorizontal (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_214004_ (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/FixedBiomeSource/findClosestBiome3d (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/FixedBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/FixedBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/MobSpawnSettings/ ()V net/minecraft/world/level/biome/MobSpawnSettings/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings/ (FLjava/util/Map;Ljava/util/Map;)V net/minecraft/world/level/biome/MobSpawnSettings/ (FLjava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_151798_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/biome/MobSpawnSettings/getMobs (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187048_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$2 (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187050_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187052_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187054_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_48344_ ()F net/minecraft/world/level/biome/MobSpawnSettings/getCreatureProbability ()F +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_48345_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost; net/minecraft/world/level/biome/MobSpawnSettings/getMobSpawnCost (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/ ()V net/minecraft/world/level/biome/MobSpawnSettings$Builder/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_151808_ (Ljava/util/Map$Entry;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/biome/MobSpawnSettings$Builder/lambda$build$2 (Ljava/util/Map$Entry;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48368_ (F)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; net/minecraft/world/level/biome/MobSpawnSettings$Builder/creatureGenerationProbability (F)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48370_ (Lnet/minecraft/world/entity/EntityType;DD)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; net/minecraft/world/level/biome/MobSpawnSettings$Builder/addMobCharge (Lnet/minecraft/world/entity/EntityType;DD)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48374_ (Lnet/minecraft/world/entity/MobCategory;)Ljava/util/List; net/minecraft/world/level/biome/MobSpawnSettings$Builder/lambda$new$1 (Lnet/minecraft/world/entity/MobCategory;)Ljava/util/List; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48376_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; net/minecraft/world/level/biome/MobSpawnSettings$Builder/addSpawn (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48381_ ()Lnet/minecraft/world/level/biome/MobSpawnSettings; net/minecraft/world/level/biome/MobSpawnSettings$Builder/build ()Lnet/minecraft/world/level/biome/MobSpawnSettings; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48382_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/level/biome/MobSpawnSettings$Builder/lambda$new$0 (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ ()V net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ (DD)V net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ (DD)V +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48385_ ()D net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/energyBudget ()D +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48386_ ()D net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/charge ()D +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/hashCode ()I net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/hashCode ()I +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/m_151810_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/lambda$static$1 (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/m_151812_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/lambda$static$0 (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/m_48398_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/toString ()Ljava/lang/String; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ ()V net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/random/Weight;II)V net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/random/Weight;II)V +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_151819_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$2 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_151823_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$1 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_151825_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$0 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_274269_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$5 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_274270_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_274271_ ()Ljava/lang/String; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$4 ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/toString ()Ljava/lang/String; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSource/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/ (Lcom/mojang/datafixers/util/Either;)V net/minecraft/world/level/biome/MultiNoiseBiomeSource/ (Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/MultiNoiseBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_204269_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/MultiNoiseBiomeSource/getNoiseBiome (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_207301_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/biome/MultiNoiseBiomeSource/addDebugInfo (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274272_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/biome/MultiNoiseBiomeSource/lambda$static$0 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274273_ (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSource/lambda$parameters$1 (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274274_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSource/lambda$parameters$2 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/MultiNoiseBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274409_ ()Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSource/parameters ()Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274493_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/level/biome/MultiNoiseBiomeSource/stable (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274591_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; net/minecraft/world/level/biome/MultiNoiseBiomeSource/createFromPreset (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274596_ (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; net/minecraft/world/level/biome/MultiNoiseBiomeSource/createFromList (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/MultiNoiseBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/core/HolderGetter;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/core/HolderGetter;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274334_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$knownPresets$3 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274368_ ()Ljava/util/Map; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/knownPresets ()Ljava/util/Map; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274385_ ()Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/parameters ()Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274390_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$static$0 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274470_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274544_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$knownPresets$2 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274547_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$knownPresets$4 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273865_ ()Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/provider ()Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273944_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/hashCode ()I net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/hashCode ()I +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274315_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274346_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$4 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274363_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$3 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274423_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274469_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$0 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274501_ (Lcom/google/common/collect/ImmutableList$Builder;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$generateOverworldBiomes$5 (Lcom/google/common/collect/ImmutableList$Builder;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274532_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$usedBiomes$6 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274593_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/usedBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_276781_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/generateOverworldBiomes (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/toString ()Ljava/lang/String; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/m_274430_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/apply (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/m_274430_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/apply (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider/m_274430_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider/apply (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/m_274548_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/m_274553_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/ ()V net/minecraft/world/level/biome/OverworldBiomeBuilder/ ()V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187154_ ()Ljava/util/List; net/minecraft/world/level/biome/OverworldBiomeBuilder/spawnTarget ()Ljava/util/List; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187155_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForPeaksAndValleys (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187157_ (D[Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForNoiseValue (D[Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187160_ (II)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickBeachBiome (II)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187163_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickMiddleBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187172_ (ILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickBadlandsBiome (ILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187175_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187177_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addPeaks (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187180_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addSurfaceBiome (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187189_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForContinentalness (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187191_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickMiddleBiomeOrBadlandsIfHot (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187195_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addOffCoastBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187197_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addHighSlice (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187200_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addUndergroundBiome (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187209_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForErosion (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187211_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickMiddleBiomeOrBadlandsIfHotOrSlopeIfCold (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187215_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addInlandBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187217_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addMidSlice (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187220_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForTemperature (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187222_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickShatteredCoastBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187226_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addUndergroundBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187228_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addLowSlice (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187231_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForHumidity (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187233_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickPlateauBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187237_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addValleys (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187240_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickPeakBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187244_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickSlopeBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201990_ (IILnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/maybePickWindsweptSavannaBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201995_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getTemperatureThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201996_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getHumidityThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201997_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getErosionThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201998_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getContinentalnessThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201999_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getPeaksAndValleysThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_202000_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getWeirdnessThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_202001_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickShatteredBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_220668_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addBottomBiome (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_246093_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Z net/minecraft/world/level/biome/OverworldBiomeBuilder/isDeepDarkRegion (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Z +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_255158_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addDebugBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/TheEndBiomeSource/ ()V net/minecraft/world/level/biome/TheEndBiomeSource/ ()V +MD: net/minecraft/world/level/biome/TheEndBiomeSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/biome/TheEndBiomeSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/TheEndBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_254810_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/TheEndBiomeSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_254978_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/TheEndBiomeSource; net/minecraft/world/level/biome/TheEndBiomeSource/create (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/TheEndBiomeSource; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/TheEndBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/TheEndBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/AbstractBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/AbstractBannerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_187399_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V net/minecraft/world/level/block/AbstractBannerBlock/lambda$setPlacedBy$1 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_187402_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V net/minecraft/world/level/block/AbstractBannerBlock/lambda$setPlacedBy$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractBannerBlock/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_48674_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/AbstractBannerBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/AbstractBannerBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/AbstractBannerBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/AbstractCandleBlock/ ()V net/minecraft/world/level/block/AbstractCandleBlock/ ()V +MD: net/minecraft/world/level/block/AbstractCandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractCandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_142199_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; net/minecraft/world/level/block/AbstractCandleBlock/getParticleOffsets (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_142595_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCandleBlock/canBeLit (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151899_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/AbstractCandleBlock/extinguish (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151918_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/AbstractCandleBlock/setLit (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151923_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/AbstractCandleBlock/lambda$extinguish$1 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151933_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCandleBlock/isLit (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/AbstractCandleBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_220687_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/AbstractCandleBlock/addParticlesAndSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_220691_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/AbstractCandleBlock/lambda$animateTick$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/AbstractCandleBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/ ()V net/minecraft/world/level/block/AbstractCauldronBlock/ ()V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/Map;)V net/minecraft/world/level/block/AbstractCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142087_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/AbstractCauldronBlock/canReceiveStalactiteDrip (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142310_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/AbstractCauldronBlock/receiveStalactiteDrip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142446_ (Lnet/minecraft/world/level/block/state/BlockState;)D net/minecraft/world/level/block/AbstractCauldronBlock/getContentHeight (Lnet/minecraft/world/level/block/state/BlockState;)D +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_151979_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/AbstractCauldronBlock/isEntityInsideContent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/AbstractCauldronBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AbstractCauldronBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AbstractCauldronBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/AbstractCauldronBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCauldronBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/AbstractCauldronBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/AbstractChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V net/minecraft/world/level/block/AbstractChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/block/AbstractChestBlock/m_5641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/AbstractChestBlock/combine (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/ ()V net/minecraft/world/level/block/AbstractFurnaceBlock/ ()V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_151987_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/AbstractFurnaceBlock/createFurnaceTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AbstractFurnaceBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/AbstractFurnaceBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/AbstractFurnaceBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/AbstractFurnaceBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/AbstractFurnaceBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AbstractFurnaceBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AbstractFurnaceBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/AbstractFurnaceBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractFurnaceBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/AbstractFurnaceBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AbstractFurnaceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AbstractGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractGlassBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AbstractGlassBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AbstractGlassBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AbstractGlassBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AbstractGlassBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/AbstractGlassBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/AbstractSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/AbstractSkullBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/AbstractSkullBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/level/block/AbstractSkullBlock/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_48754_ ()Lnet/minecraft/world/level/block/SkullBlock$Type; net/minecraft/world/level/block/AbstractSkullBlock/getType ()Lnet/minecraft/world/level/block/SkullBlock$Type; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/AbstractSkullBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/AirBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AirBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AirBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AirBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AirBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/AirBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/AmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AmethystBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/AmethystBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/AmethystClusterBlock/ ()V net/minecraft/world/level/block/AmethystClusterBlock/ ()V +MD: net/minecraft/world/level/block/AmethystClusterBlock/ (IILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AmethystClusterBlock/ (IILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/AmethystClusterBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AmethystClusterBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AmethystClusterBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AmethystClusterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AmethystClusterBlock$1/ ()V net/minecraft/world/level/block/AmethystClusterBlock$1/ ()V +MD: net/minecraft/world/level/block/AnvilBlock/ ()V net/minecraft/world/level/block/AnvilBlock/ ()V +MD: net/minecraft/world/level/block/AnvilBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AnvilBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/AnvilBlock/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_252932_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/block/AnvilBlock/getFallDamageSource (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/block/AnvilBlock/m_48782_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/AnvilBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/AnvilBlock/m_48792_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/AnvilBlock/onLand (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_48824_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AnvilBlock/damage (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AnvilBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AnvilBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AnvilBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AnvilBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AnvilBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/AnvilBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/AnvilBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/AnvilBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/AnvilBlock/m_6788_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/AnvilBlock/falling (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AnvilBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AnvilBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/AnvilBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/AnvilBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/AnvilBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/AnvilBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AnvilBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AttachedStemBlock/ ()V net/minecraft/world/level/block/AttachedStemBlock/ ()V +MD: net/minecraft/world/level/block/AttachedStemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AttachedStemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AttachedStemBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AttachedStemBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AttachedStemBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AttachedStemBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AttachedStemBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AttachedStemBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/AttachedStemBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AttachedStemBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AttachedStemBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AzaleaBlock/ ()V net/minecraft/world/level/block/AzaleaBlock/ ()V +MD: net/minecraft/world/level/block/AzaleaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AzaleaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AzaleaBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/AzaleaBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/AzaleaBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AzaleaBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AzaleaBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AzaleaBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AzaleaBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AzaleaBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AzaleaBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/AzaleaBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BambooSaplingBlock/ ()V net/minecraft/world/level/block/BambooSaplingBlock/ ()V +MD: net/minecraft/world/level/block/BambooSaplingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BambooSaplingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BambooSaplingBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BambooSaplingBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BambooSaplingBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_48972_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BambooSaplingBlock/growBamboo (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_5880_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/BambooSaplingBlock/getDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BambooSaplingBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BambooSaplingBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BambooSaplingBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BambooSaplingBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooSaplingBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/ ()V net/minecraft/world/level/block/BambooStalkBlock/ ()V +MD: net/minecraft/world/level/block/BambooStalkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BambooStalkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_180643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooStalkBlock/isCollisionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BambooStalkBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BambooStalkBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BambooStalkBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BambooStalkBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_261076_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BambooStalkBlock/getHeightAboveUpToMax (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BambooStalkBlock/m_261132_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BambooStalkBlock/getHeightBelowUpToMax (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BambooStalkBlock/m_261305_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V net/minecraft/world/level/block/BambooStalkBlock/growBamboo (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BambooStalkBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5880_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/BambooStalkBlock/getDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BambooStalkBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BambooStalkBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BambooStalkBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BambooStalkBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BambooStalkBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BambooStalkBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooStalkBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooStalkBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BambooStalkBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BannerBlock/ ()V net/minecraft/world/level/block/BannerBlock/ ()V +MD: net/minecraft/world/level/block/BannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BannerBlock/m_49014_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/BannerBlock/byColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/BannerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BannerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BannerBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BannerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BannerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BannerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BarrelBlock/ ()V net/minecraft/world/level/block/BarrelBlock/ ()V +MD: net/minecraft/world/level/block/BarrelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BarrelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BarrelBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BarrelBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BarrelBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BarrelBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BarrelBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BarrelBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BarrelBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BarrelBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BarrelBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BarrelBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BarrelBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BarrelBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BarrelBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BarrelBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BarrelBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BarrelBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BarrelBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BarrelBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BarrelBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BarrelBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BarrelBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BarrelBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BarrelBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BarrelBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BarrierBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BarrierBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BarrierBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BarrierBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BarrierBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BarrierBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BarrierBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/BarrierBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/BaseCoralFanBlock/ ()V net/minecraft/world/level/block/BaseCoralFanBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralFanBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralFanBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralPlantBlock/ ()V net/minecraft/world/level/block/BaseCoralPlantBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralPlantBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralPlantBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ ()V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_49164_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/tryScheduleDieTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_49186_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseCoralPlantTypeBlock/scanForWater (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseCoralPlantTypeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/ ()V net/minecraft/world/level/block/BaseCoralWallFanBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralWallFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralWallFanBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseCoralWallFanBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BaseCoralWallFanBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BaseEntityBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseEntityBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseEntityBlock/m_152132_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BaseEntityBlock/createTickerHelper (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BaseEntityBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/BaseEntityBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/BaseEntityBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BaseEntityBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BaseEntityBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/BaseEntityBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/BaseFireBlock/ ()V net/minecraft/world/level/block/BaseFireBlock/ ()V +MD: net/minecraft/world/level/block/BaseFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;F)V net/minecraft/world/level/block/BaseFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;F)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_142387_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BaseFireBlock/spawnDestroyParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BaseFireBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_49245_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseFireBlock/getState (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseFireBlock/m_49248_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/BaseFireBlock/inPortalDimension (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_49255_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BaseFireBlock/canBePlacedAt (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_49269_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BaseFireBlock/isPortal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseFireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseFireBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BaseFireBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseFireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseFireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BaseFireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_7599_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BaseFireBlock/canBurn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BaseFireBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/ ()V net/minecraft/world/level/block/BasePressurePlateBlock/ ()V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/BasePressurePlateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_152143_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/block/BasePressurePlateBlock/checkPressed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BasePressurePlateBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_289607_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/AABB;Ljava/lang/Class;)I net/minecraft/world/level/block/BasePressurePlateBlock/getEntityCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/AABB;Ljava/lang/Class;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_289614_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/BasePressurePlateBlock/lambda$getEntityCount$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BasePressurePlateBlock/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_49291_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BasePressurePlateBlock/updateNeighbours (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BasePressurePlateBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6016_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/BasePressurePlateBlock/getSignalForState (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/BasePressurePlateBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/BasePressurePlateBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BasePressurePlateBlock/getSignalStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BasePressurePlateBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7342_ ()I net/minecraft/world/level/block/BasePressurePlateBlock/getPressedTime ()I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BasePressurePlateBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7422_ (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BasePressurePlateBlock/setSignalForState (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BasePressurePlateBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BasePressurePlateBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BasePressurePlateBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/ ()V net/minecraft/world/level/block/BaseRailBlock/ ()V +MD: net/minecraft/world/level/block/BaseRailBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseRailBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_49364_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseRailBlock/isRail (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_49367_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/updateDir (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_49389_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_49398_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/properties/RailShape;)Z net/minecraft/world/level/block/BaseRailBlock/shouldBeRemoved (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/properties/RailShape;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_49413_ ()Z net/minecraft/world/level/block/BaseRailBlock/isStraight ()Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_49416_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BaseRailBlock/isRail (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BaseRailBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseRailBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseRailBlock/m_6360_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/BaseRailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BaseRailBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BaseRailBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/BaseRailBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseRailBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/BaseRailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/BaseRailBlock$1/ ()V net/minecraft/world/level/block/BaseRailBlock$1/ ()V +MD: net/minecraft/world/level/block/BeaconBeamBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/BeaconBeamBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/BeaconBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BeaconBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BeaconBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BeaconBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BeaconBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BeaconBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BeaconBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BeaconBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BeaconBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BeaconBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BeaconBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BeaconBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BeaconBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/BeaconBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/BedBlock/ ()V net/minecraft/world/level/block/BedBlock/ ()V +MD: net/minecraft/world/level/block/BedBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BedBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BedBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/BedBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/BedBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BedBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BedBlock/m_260958_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;F)Ljava/util/Optional; net/minecraft/world/level/block/BedBlock/findStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;F)Ljava/util/Optional; +MD: net/minecraft/world/level/block/BedBlock/m_49456_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BedBlock/bounceUp (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BedBlock/m_49463_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/BedBlock/findBunkBedStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/BedBlock/m_49469_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;[[IZ)Ljava/util/Optional; net/minecraft/world/level/block/BedBlock/findStandUpPositionAtOffset (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;[[IZ)Ljava/util/Optional; +MD: net/minecraft/world/level/block/BedBlock/m_49475_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player$BedSleepingProblem;)V net/minecraft/world/level/block/BedBlock/lambda$use$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player$BedSleepingProblem;)V +MD: net/minecraft/world/level/block/BedBlock/m_49485_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BedBlock/getBedOrientation (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BedBlock/m_49488_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/BedBlock/canSetSpawn (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/BedBlock/m_49490_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BedBlock/kickVillagerOutOfBed (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BedBlock/m_49533_ (Lnet/minecraft/world/level/block/state/properties/BedPart;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BedBlock/getNeighbourDirection (Lnet/minecraft/world/level/block/state/properties/BedPart;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BedBlock/m_49536_ (Lnet/minecraft/core/Direction;)[[I net/minecraft/world/level/block/BedBlock/bedAboveStandUpOffsets (Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/level/block/BedBlock/m_49538_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I net/minecraft/world/level/block/BedBlock/bedStandUpOffsets (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/level/block/BedBlock/m_49541_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BedBlock/isBunkBed (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BedBlock/m_49551_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I net/minecraft/world/level/block/BedBlock/bedSurroundStandUpOffsets (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/level/block/BedBlock/m_49554_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/BedBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/BedBlock/m_49557_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BedBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BedBlock/m_49559_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/BedBlock/getBlockType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/BedBlock/m_5548_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BedBlock/updateEntityAfterFallOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BedBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BedBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BedBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BedBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BedBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BedBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BedBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BedBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BedBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BedBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BedBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BedBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BedBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BedBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BedBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BedBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BedBlock/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/BedBlock/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/BedBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BedBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BedBlock$1/ ()V net/minecraft/world/level/block/BedBlock$1/ ()V +MD: net/minecraft/world/level/block/BeehiveBlock/ ()V net/minecraft/world/level/block/BeehiveBlock/ ()V +MD: net/minecraft/world/level/block/BeehiveBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BeehiveBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BeehiveBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BeehiveBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BeehiveBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BeehiveBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BeehiveBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49569_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BeehiveBlock/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49576_ (Lnet/minecraft/world/level/Level;DDDDD)V net/minecraft/world/level/block/BeehiveBlock/spawnFluidParticle (Lnet/minecraft/world/level/Level;DDDDD)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49590_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BeehiveBlock/resetHoneyLevel (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49594_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V net/minecraft/world/level/block/BeehiveBlock/releaseBeesAndResetHoneyLevel (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49600_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BeehiveBlock/dropHoneycomb (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49603_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BeehiveBlock/trySpawnDripParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49612_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V net/minecraft/world/level/block/BeehiveBlock/spawnParticle (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/BeehiveBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/BeehiveBlock/m_49649_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BeehiveBlock/angerNearbyBees (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49654_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BeehiveBlock/hiveContainsBees (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BeehiveBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BeehiveBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BeehiveBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BeehiveBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BeehiveBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BeehiveBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BeehiveBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BeehiveBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BeehiveBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BeehiveBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BeehiveBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BeehiveBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BeehiveBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BeehiveBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BeehiveBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BeehiveBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BeetrootBlock/ ()V net/minecraft/world/level/block/BeetrootBlock/ ()V +MD: net/minecraft/world/level/block/BeetrootBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BeetrootBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BeetrootBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BeetrootBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BeetrootBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BeetrootBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BeetrootBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/BeetrootBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/BeetrootBlock/m_7125_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/level/block/BeetrootBlock/getBonemealAgeIncrease (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/level/block/BeetrootBlock/m_7419_ ()I net/minecraft/world/level/block/BeetrootBlock/getMaxAge ()I +MD: net/minecraft/world/level/block/BeetrootBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BeetrootBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BeetrootBlock/m_7959_ ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/BeetrootBlock/getAgeProperty ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/BellBlock/ ()V net/minecraft/world/level/block/BellBlock/ ()V +MD: net/minecraft/world/level/block/BellBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BellBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BellBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BellBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BellBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BellBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BellBlock/m_152188_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BellBlock/attemptToRing (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BellBlock/m_49701_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/level/block/BellBlock/onHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/level/block/BellBlock/m_49712_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BellBlock/attemptToRing (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BellBlock/m_49739_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;D)Z net/minecraft/world/level/block/BellBlock/isProperHit (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;D)Z +MD: net/minecraft/world/level/block/BellBlock/m_49766_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BellBlock/getVoxelShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BellBlock/m_49768_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BellBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BellBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BellBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BellBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/BellBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/BellBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BellBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BellBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BellBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BellBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BellBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BellBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/BellBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/BellBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BellBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BellBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BellBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BellBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BellBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BellBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BellBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BellBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BellBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BellBlock$1/ ()V net/minecraft/world/level/block/BellBlock$1/ ()V +MD: net/minecraft/world/level/block/BigDripleafBlock/ ()V net/minecraft/world/level/block/BigDripleafBlock/ ()V +MD: net/minecraft/world/level/block/BigDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BigDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152232_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/BigDripleafBlock/playTiltSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152241_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BigDripleafBlock/place (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152251_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafBlock/canPlaceAt (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152277_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;)V net/minecraft/world/level/block/BigDripleafBlock/setTilt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152282_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/BigDripleafBlock/setTiltAndScheduleTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152301_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/BigDripleafBlock/canEntityTilt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152304_ (Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;)V net/minecraft/world/level/block/BigDripleafBlock/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152313_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BigDripleafBlock/resetTilt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152317_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152319_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafBlock/canReplace (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BigDripleafBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BigDripleafBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_220792_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/BigDripleafBlock/placeWithRandomHeight (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BigDripleafBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/BigDripleafBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BigDripleafBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/BigDripleafBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BigDripleafBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BigDripleafBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BigDripleafBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BigDripleafBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BigDripleafBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/ ()V net/minecraft/world/level/block/BigDripleafStemBlock/ ()V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BigDripleafStemBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_152349_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BigDripleafStemBlock/place (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BigDripleafStemBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BigDripleafStemBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafStemBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BigDripleafStemBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafStemBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BigDripleafStemBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BigDripleafStemBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BigDripleafStemBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BigDripleafStemBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BigDripleafStemBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock$1/ ()V net/minecraft/world/level/block/BigDripleafStemBlock$1/ ()V +MD: net/minecraft/world/level/block/BlastFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BlastFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BlastFurnaceBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BlastFurnaceBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BlastFurnaceBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BlastFurnaceBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/Block/ ()V net/minecraft/world/level/block/Block/ ()V +MD: net/minecraft/world/level/block/Block/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/Block/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/Block/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/Block/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/Block/m_141997_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V net/minecraft/world/level/block/Block/handlePrecipitation (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V +MD: net/minecraft/world/level/block/Block/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/Block/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/Block/m_142387_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/Block/spawnDestroyParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/Block/m_152403_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/lambda$dropResources$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_152407_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/level/block/Block/lambda$popResource$4 (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/level/block/Block/m_152413_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/level/block/Block/lambda$popResourceFromFace$5 (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/level/block/Block/m_152435_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/popResourceFromFace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_152440_ (Lnet/minecraft/world/level/Level;Ljava/util/function/Supplier;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/popResource (Lnet/minecraft/world/level/Level;Ljava/util/function/Supplier;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_152444_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Block/shouldRenderFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Block/m_152454_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/copyProperty (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_152458_ (Ljava/util/function/Function;)Lcom/google/common/collect/ImmutableMap; net/minecraft/world/level/block/Block/getShapeForEachState (Ljava/util/function/Function;)Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/world/level/block/Block/m_152463_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/Block/isExceptionForConnection (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/Block/m_152465_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/withPropertiesOf (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_204297_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/level/block/Block/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/level/block/Block/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/Block/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/Block/m_220822_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/block/Block/tryDropExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/block/Block/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/Block/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/Block/m_49796_ (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/Block/box (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/Block/m_49803_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/stateById (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49805_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/Block/popExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/Block/m_49814_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Block/byItem (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Block/m_49840_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/popResource (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49856_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/lambda$dropResources$2 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49863_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/Block/canSupportCenter (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/Block/m_49869_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)Ljava/util/List; net/minecraft/world/level/block/Block/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)Ljava/util/List; +MD: net/minecraft/world/level/block/Block/m_49874_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/level/block/Block/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/level/block/Block/m_49881_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/dropResources (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/block/Block/dropResources (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/block/Block/m_49897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/pushEntitiesUp (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49902_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/Block/updateOrDestroy (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/Block/m_49908_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/Block/updateOrDestroy (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/Block/m_49916_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/block/Block/isShapeFullBlock (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/block/Block/m_49918_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/Block/isFaceFull (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/Block/m_49931_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/updateFromNeighbourShapes (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49935_ ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; net/minecraft/world/level/block/Block/lambda$static$0 ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; +MD: net/minecraft/world/level/block/Block/m_49936_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Block/canSupportRigidBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Block/m_49941_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/lambda$dropResources$3 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49950_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/Block/dropResources (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/Block/m_49954_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/level/block/Block/getName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/level/block/Block/m_49956_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Block/getId (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Block/m_49958_ ()F net/minecraft/world/level/block/Block/getFriction ()F +MD: net/minecraft/world/level/block/Block/m_49959_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/Block/registerDefaultState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/Block/m_49961_ ()F net/minecraft/world/level/block/Block/getSpeedFactor ()F +MD: net/minecraft/world/level/block/Block/m_49962_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/Block/getSoundType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/Block/m_49964_ ()F net/minecraft/world/level/block/Block/getJumpFactor ()F +MD: net/minecraft/world/level/block/Block/m_49965_ ()Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/world/level/block/Block/getStateDefinition ()Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/world/level/block/Block/m_49966_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/defaultBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49967_ ()Z net/minecraft/world/level/block/Block/hasDynamicShape ()Z +MD: net/minecraft/world/level/block/Block/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Block/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Block/m_5548_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/Block/updateEntityAfterFallOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/Block/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/Block/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/Block/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/Block/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/Block/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/Block/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/Block/m_6786_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/Block/destroy (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/Block/m_6903_ (Lnet/minecraft/world/level/Explosion;)Z net/minecraft/world/level/block/Block/dropFromExplosion (Lnet/minecraft/world/level/Explosion;)Z +MD: net/minecraft/world/level/block/Block/m_7325_ ()F net/minecraft/world/level/block/Block/getExplosionResistance ()F +MD: net/minecraft/world/level/block/Block/m_7374_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Block/asBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Block/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/Block/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/Block/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Block/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Block/m_7592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V net/minecraft/world/level/block/Block/wasExploded (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V +MD: net/minecraft/world/level/block/Block/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/Block/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Block/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/Block/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/Block/toString ()Ljava/lang/String; net/minecraft/world/level/block/Block/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Block$1/ ()V net/minecraft/world/level/block/Block$1/ ()V +MD: net/minecraft/world/level/block/Block$1/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/Block$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/Block$1/load (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/lang/Boolean; net/minecraft/world/level/block/Block$1/load (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Block$2/ (IF)V net/minecraft/world/level/block/Block$2/ (IF)V +MD: net/minecraft/world/level/block/Block$2/rehash (I)V net/minecraft/world/level/block/Block$2/rehash (I)V +MD: net/minecraft/world/level/block/Block$BlockStatePairKey/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/Block$BlockStatePairKey/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/Block$BlockStatePairKey/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/Block$BlockStatePairKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/Block$BlockStatePairKey/hashCode ()I net/minecraft/world/level/block/Block$BlockStatePairKey/hashCode ()I +MD: net/minecraft/world/level/block/Blocks/ ()V net/minecraft/world/level/block/Blocks/ ()V +MD: net/minecraft/world/level/block/Blocks/ ()V net/minecraft/world/level/block/Blocks/ ()V +MD: net/minecraft/world/level/block/Blocks/m_152604_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$16 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152606_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$12 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152614_ (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/LeavesBlock; net/minecraft/world/level/block/Blocks/leaves (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/LeavesBlock; +MD: net/minecraft/world/level/block/Blocks/m_152631_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$48 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152638_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$47 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152649_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$23 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_152650_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$46 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152656_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/Blocks/lambda$static$36 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/Blocks/m_152661_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$22 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_152662_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$45 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152669_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$21 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_152670_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$52 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152673_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$44 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152681_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$41 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152683_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$39 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152685_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$40 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152689_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$29 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152691_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$28 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_181165_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$10 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_181167_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$9 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_181172_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$netherStem$4 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_181175_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$log$2 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_181185_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$pistonBase$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_181206_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/Blocks/lambda$static$13 ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/Blocks/m_187405_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$50 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187408_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$49 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187411_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$static$51 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_187415_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$24 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_187416_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$static$14 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_187420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/Blocks/lambda$static$38 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/Blocks/m_187425_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/Blocks/lambda$static$15 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/Blocks/m_187430_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$43 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187432_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$42 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187434_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$35 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187436_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$25 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220866_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$7 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220868_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$55 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220870_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$54 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220872_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$53 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_246720_ ()Lnet/minecraft/world/level/block/ButtonBlock; net/minecraft/world/level/block/Blocks/stoneButton ()Lnet/minecraft/world/level/block/ButtonBlock; +MD: net/minecraft/world/level/block/Blocks/m_257326_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$log$3 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_278139_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$shulkerBox$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_278156_ (Lnet/minecraft/world/level/block/state/properties/BlockSetType;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/ButtonBlock; net/minecraft/world/level/block/Blocks/woodenButton (Lnet/minecraft/world/level/block/state/properties/BlockSetType;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/ButtonBlock; +MD: net/minecraft/world/level/block/Blocks/m_278189_ (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/FlowerPotBlock; net/minecraft/world/level/block/Blocks/flowerPot (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/FlowerPotBlock; +MD: net/minecraft/world/level/block/Blocks/m_284094_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$bed$1 (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_284204_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/RotatedPillarBlock; net/minecraft/world/level/block/Blocks/log (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/RotatedPillarBlock; +MD: net/minecraft/world/level/block/Blocks/m_284306_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/RotatedPillarBlock; net/minecraft/world/level/block/Blocks/log (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/RotatedPillarBlock; +MD: net/minecraft/world/level/block/Blocks/m_284429_ (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/CandleBlock; net/minecraft/world/level/block/Blocks/candle (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/CandleBlock; +MD: net/minecraft/world/level/block/Blocks/m_284519_ (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Blocks/netherStem (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Blocks/m_50754_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$8 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50758_ ()V net/minecraft/world/level/block/Blocks/rebuildCache ()V +MD: net/minecraft/world/level/block/Blocks/m_50759_ (I)Ljava/util/function/ToIntFunction; net/minecraft/world/level/block/Blocks/litBlockEmission (I)Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/block/Blocks/m_50761_ (ILnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$litBlockEmission$0 (ILnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50764_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/BedBlock; net/minecraft/world/level/block/Blocks/bed (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/BedBlock; +MD: net/minecraft/world/level/block/Blocks/m_50766_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)Lnet/minecraft/world/level/block/ShulkerBoxBlock; net/minecraft/world/level/block/Blocks/shulkerBox (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)Lnet/minecraft/world/level/block/ShulkerBoxBlock; +MD: net/minecraft/world/level/block/Blocks/m_50774_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/always (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_50778_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; net/minecraft/world/level/block/Blocks/never (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Blocks/m_50795_ (Ljava/lang/String;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Blocks/register (Ljava/lang/String;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Blocks/m_50798_ (Z)Lnet/minecraft/world/level/block/piston/PistonBaseBlock; net/minecraft/world/level/block/Blocks/pistonBase (Z)Lnet/minecraft/world/level/block/piston/PistonBaseBlock; +MD: net/minecraft/world/level/block/Blocks/m_50801_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/StainedGlassBlock; net/minecraft/world/level/block/Blocks/stainedGlass (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/StainedGlassBlock; +MD: net/minecraft/world/level/block/Blocks/m_50803_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$37 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50805_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/never (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_50809_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; net/minecraft/world/level/block/Blocks/always (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Blocks/m_50821_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; net/minecraft/world/level/block/Blocks/ocelotOrParrot (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Blocks/m_50827_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$34 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50839_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$33 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50846_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$32 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50853_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$30 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50855_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$31 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50857_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$26 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50859_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$27 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50871_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$20 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50873_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$19 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50875_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$18 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50877_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$17 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50885_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$11 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/BonemealableBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BonemealableBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BonemealableBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BonemealableBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BonemealableBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BonemealableBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BrewingStandBlock/ ()V net/minecraft/world/level/block/BrewingStandBlock/ ()V +MD: net/minecraft/world/level/block/BrewingStandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BrewingStandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BrewingStandBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BrewingStandBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BrewingStandBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BrewingStandBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BrewingStandBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BrewingStandBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BrewingStandBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BrewingStandBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BrewingStandBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BrewingStandBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BrewingStandBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BrewingStandBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BrushableBlock/ ()V net/minecraft/world/level/block/BrushableBlock/ ()V +MD: net/minecraft/world/level/block/BrushableBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/BrushableBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BrushableBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BrushableBlock/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/BrushableBlock/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BrushableBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BrushableBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_276856_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/BrushableBlock/getBrushSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/BrushableBlock/m_277074_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/BrushableBlock/getTurnsInto ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/BrushableBlock/m_277154_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/BrushableBlock/getBrushCompletedSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/BrushableBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BrushableBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BrushableBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BrushableBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BrushableBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BrushableBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BrushableBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BrushableBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/ ()V net/minecraft/world/level/block/BubbleColumnBlock/ ()V +MD: net/minecraft/world/level/block/BubbleColumnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BubbleColumnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/BubbleColumnBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BubbleColumnBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152702_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BubbleColumnBlock/updateColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152707_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BubbleColumnBlock/updateColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152715_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BubbleColumnBlock/canExistIn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152717_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BubbleColumnBlock/getColumnState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BubbleColumnBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BubbleColumnBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BubbleColumnBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BubbleColumnBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BubbleColumnBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BubbleColumnBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BubbleColumnBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BubbleColumnBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BubbleColumnBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BucketPickup/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/BucketPickup/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/BucketPickup/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BucketPickup/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BuddingAmethystBlock/ ()V net/minecraft/world/level/block/BuddingAmethystBlock/ ()V +MD: net/minecraft/world/level/block/BuddingAmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BuddingAmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BuddingAmethystBlock/m_152734_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BuddingAmethystBlock/canClusterGrowAtState (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BuddingAmethystBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BuddingAmethystBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BushBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BushBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BushBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BushBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BushBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BushBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BushBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BushBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BushBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BushBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ButtonBlock/ ()V net/minecraft/world/level/block/ButtonBlock/ ()V +MD: net/minecraft/world/level/block/ButtonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V net/minecraft/world/level/block/ButtonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V +MD: net/minecraft/world/level/block/ButtonBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ButtonBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51067_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/ButtonBlock/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51116_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ButtonBlock/press (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51120_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ButtonBlock/checkPressed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51124_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ButtonBlock/updateNeighbours (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_5722_ (Z)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/ButtonBlock/getSound (Z)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/ButtonBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ButtonBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ButtonBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ButtonBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ButtonBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ButtonBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ButtonBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ButtonBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ButtonBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ButtonBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ButtonBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/ButtonBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ButtonBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ButtonBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ButtonBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ButtonBlock$1/ ()V net/minecraft/world/level/block/ButtonBlock$1/ ()V +MD: net/minecraft/world/level/block/CactusBlock/ ()V net/minecraft/world/level/block/CactusBlock/ ()V +MD: net/minecraft/world/level/block/CactusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CactusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CactusBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CactusBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CactusBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CactusBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CactusBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CactusBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CactusBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CactusBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CactusBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CactusBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CactusBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CactusBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CactusBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/CactusBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/CactusBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CactusBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CactusBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CactusBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CakeBlock/ ()V net/minecraft/world/level/block/CakeBlock/ ()V +MD: net/minecraft/world/level/block/CakeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CakeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CakeBlock/m_152746_ (I)I net/minecraft/world/level/block/CakeBlock/getOutputSignal (I)I +MD: net/minecraft/world/level/block/CakeBlock/m_51185_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CakeBlock/eat (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CakeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CakeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CakeBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CakeBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CakeBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/CakeBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/CakeBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CakeBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CakeBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CakeBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CakeBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CakeBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CakeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CakeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CakeBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CakeBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/ ()V net/minecraft/world/level/block/CalibratedSculkSensorBlock/ ()V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CalibratedSculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CalibratedSculkSensorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/CalibratedSculkSensorBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_278716_ ()I net/minecraft/world/level/block/CalibratedSculkSensorBlock/getActiveTicks ()I +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_288182_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;)V net/minecraft/world/level/block/CalibratedSculkSensorBlock/lambda$getTicker$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;)V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CalibratedSculkSensorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/CalibratedSculkSensorBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CalibratedSculkSensorBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CalibratedSculkSensorBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CalibratedSculkSensorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CampfireBlock/ ()V net/minecraft/world/level/block/CampfireBlock/ ()V +MD: net/minecraft/world/level/block/CampfireBlock/ (ZILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CampfireBlock/ (ZILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CampfireBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CampfireBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/CampfireBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/CampfireBlock/m_152749_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CampfireBlock/dowse (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CampfireBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_51248_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CampfireBlock/isSmokeyPos (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51251_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZ)V net/minecraft/world/level/block/CampfireBlock/makeParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZ)V +MD: net/minecraft/world/level/block/CampfireBlock/m_51261_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/CampfireBlock/lambda$canLight$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51319_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CampfireBlock/isLitCampfire (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51321_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CampfireBlock/canLight (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51323_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CampfireBlock/isSmokeSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/CampfireBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/CampfireBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/CampfireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CampfireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CampfireBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CampfireBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CampfireBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CampfireBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CampfireBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CampfireBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/CampfireBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/CampfireBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/CampfireBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/CampfireBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CampfireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CandleBlock/ ()V net/minecraft/world/level/block/CandleBlock/ ()V +MD: net/minecraft/world/level/block/CandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CandleBlock/m_142199_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; net/minecraft/world/level/block/CandleBlock/getParticleOffsets (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/block/CandleBlock/m_142595_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleBlock/canBeLit (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_152809_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/CandleBlock/lambda$canLight$2 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_152845_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleBlock/canLight (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_152847_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CandleBlock/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CandleBlock/m_152849_ ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/world/level/block/CandleBlock/lambda$static$1 ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/world/level/block/CandleBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/CandleBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/CandleBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CandleBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CandleBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CandleBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CandleBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/CandleBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/CandleBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CandleBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CandleBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CandleCakeBlock/ ()V net/minecraft/world/level/block/CandleCakeBlock/ ()V +MD: net/minecraft/world/level/block/CandleCakeBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CandleCakeBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CandleCakeBlock/m_142199_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; net/minecraft/world/level/block/CandleCakeBlock/getParticleOffsets (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152865_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleCakeBlock/byCandle (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152894_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/CandleCakeBlock/lambda$canLight$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152906_ (Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/level/block/CandleCakeBlock/candleHit (Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152910_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleCakeBlock/canLight (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CandleCakeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CandleCakeBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/CandleCakeBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleCakeBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CandleCakeBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CandleCakeBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleCakeBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CandleCakeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CandleCakeBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CarpetBlock/ ()V net/minecraft/world/level/block/CarpetBlock/ ()V +MD: net/minecraft/world/level/block/CarpetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CarpetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CarpetBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CarpetBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CarpetBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CarpetBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CarpetBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CarpetBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CarrotBlock/ ()V net/minecraft/world/level/block/CarrotBlock/ ()V +MD: net/minecraft/world/level/block/CarrotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CarrotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CarrotBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CarrotBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CarrotBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/CarrotBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/CartographyTableBlock/ ()V net/minecraft/world/level/block/CartographyTableBlock/ ()V +MD: net/minecraft/world/level/block/CartographyTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CartographyTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CartographyTableBlock/m_51350_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/CartographyTableBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/CartographyTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CartographyTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CartographyTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/CartographyTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/ ()V net/minecraft/world/level/block/CarvedPumpkinBlock/ ()V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_245585_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V net/minecraft/world/level/block/CarvedPumpkinBlock/clearPatternBlocks (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_245952_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/CarvedPumpkinBlock/spawnGolemInWorld (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_246758_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V net/minecraft/world/level/block/CarvedPumpkinBlock/updatePatternBlocks (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_284096_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/lambda$getOrCreateIronGolemFull$2 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_284097_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/lambda$getOrCreateIronGolemBase$1 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51378_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/CarvedPumpkinBlock/trySpawnGolem (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51381_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/canSpawnGolem (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51392_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateSnowGolemBase ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51393_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateSnowGolemFull ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51394_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateIronGolemBase ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51395_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51397_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateIronGolemFull ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CarvedPumpkinBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CarvedPumpkinBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CarvedPumpkinBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CauldronBlock/m_141997_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V net/minecraft/world/level/block/CauldronBlock/handlePrecipitation (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V +MD: net/minecraft/world/level/block/CauldronBlock/m_142087_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/CauldronBlock/canReceiveStalactiteDrip (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/CauldronBlock/m_142310_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/CauldronBlock/receiveStalactiteDrip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/CauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CauldronBlock/m_182450_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z net/minecraft/world/level/block/CauldronBlock/shouldHandlePrecipitation (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z +MD: net/minecraft/world/level/block/CaveVines/ ()V net/minecraft/world/level/block/CaveVines/ ()V +MD: net/minecraft/world/level/block/CaveVines/m_152951_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVines/hasGlowBerries (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVines/m_181214_ (ILnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CaveVines/lambda$emission$0 (ILnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CaveVines/m_181217_ (I)Ljava/util/function/ToIntFunction; net/minecraft/world/level/block/CaveVines/emission (I)Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/block/CaveVines/m_269473_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CaveVines/use (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CaveVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CaveVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CaveVinesBlock/m_142643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CaveVinesBlock/updateBodyAfterConvertedFromHead (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/CaveVinesBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/CaveVinesBlock/m_214070_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CaveVinesBlock/getGrowIntoState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CaveVinesBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CaveVinesBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVinesBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVinesBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVinesBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVinesBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CaveVinesBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CaveVinesBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CaveVinesBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/CaveVinesBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CaveVinesBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CaveVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_142644_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CaveVinesPlantBlock/updateHeadAfterConvertedFromBody (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CaveVinesPlantBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVinesPlantBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CaveVinesPlantBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/CaveVinesPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CaveVinesPlantBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CaveVinesPlantBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CaveVinesPlantBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/ ()V net/minecraft/world/level/block/CeilingHangingSignBlock/ ()V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/CeilingHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CeilingHangingSignBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/CeilingHangingSignBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/CeilingHangingSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_278197_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/CeilingHangingSignBlock/shouldTryToChainAnotherHangingSign (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CeilingHangingSignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CeilingHangingSignBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CeilingHangingSignBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CeilingHangingSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CeilingHangingSignBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ChainBlock/ ()V net/minecraft/world/level/block/ChainBlock/ ()V +MD: net/minecraft/world/level/block/ChainBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChainBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChainBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChainBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChainBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ChainBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ChainBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ChainBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ChainBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ChainBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ChainBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChainBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChainBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChainBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChainBlock$1/ ()V net/minecraft/world/level/block/ChainBlock$1/ ()V +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_142123_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/ChangeOverTimeBlock/getNext (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/ChangeOverTimeBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_142377_ ()F net/minecraft/world/level/block/ChangeOverTimeBlock/getChanceModifier ()F +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_153036_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ChangeOverTimeBlock/lambda$applyChangeOverTime$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_220947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChangeOverTimeBlock/onRandomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_220952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChangeOverTimeBlock/applyChangeOverTime (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CherryLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CherryLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CherryLeavesBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CherryLeavesBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChestBlock/ ()V net/minecraft/world/level/block/ChestBlock/ ()V +MD: net/minecraft/world/level/block/ChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V net/minecraft/world/level/block/ChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/block/ChestBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ChestBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ChestBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/ChestBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/ChestBlock/m_153066_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/ChestBlock/blockEntityType ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/ChestBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChestBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChestBlock/m_51494_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/ChestBlock/candidatePartnerFacing (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/ChestBlock/m_51499_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/isBlockedChestByBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51508_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/isChestBlockedAt (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51511_ (Lnet/minecraft/world/level/block/ChestBlock;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/Container; net/minecraft/world/level/block/ChestBlock/getContainer (Lnet/minecraft/world/level/block/ChestBlock;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/ChestBlock/m_51517_ (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner; net/minecraft/world/level/block/ChestBlock/opennessCombiner (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner; +MD: net/minecraft/world/level/block/ChestBlock/m_51563_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/isCatSittingOnChest (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51577_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/lambda$combine$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51582_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/ChestBlock/getBlockType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/ChestBlock/m_51584_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/ChestBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/ChestBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_5641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/ChestBlock/combine (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/ChestBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ChestBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ChestBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ChestBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ChestBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ChestBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ChestBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ChestBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ChestBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ChestBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ChestBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ChestBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ChestBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/ChestBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/ChestBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ChestBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ChestBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ChestBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ChestBlock/m_7699_ ()Lnet/minecraft/stats/Stat; net/minecraft/world/level/block/ChestBlock/getOpenChestStat ()Lnet/minecraft/stats/Stat; +MD: net/minecraft/world/level/block/ChestBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChestBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChestBlock$1/ ()V net/minecraft/world/level/block/ChestBlock$1/ ()V +MD: net/minecraft/world/level/block/ChestBlock$1/m_6502_ ()Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$1/acceptNone ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$1/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$1/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$1/m_6959_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$1/acceptDouble (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$1/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$1/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$1/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$1/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$1/m_7693_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$1/acceptSingle (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2/ ()V net/minecraft/world/level/block/ChestBlock$2/ ()V +MD: net/minecraft/world/level/block/ChestBlock$2/m_6502_ ()Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$2/acceptNone ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$2/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$2/m_6959_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$2/acceptDouble (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$2/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$2/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$2/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$2/m_7693_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$2/acceptSingle (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2$1/ (Lnet/minecraft/world/level/block/ChestBlock$2;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/Container;)V net/minecraft/world/level/block/ChestBlock$2$1/ (Lnet/minecraft/world/level/block/ChestBlock$2;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/level/block/ChestBlock$2$1/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/ChestBlock$2$1/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/ChestBlock$2$1/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/ChestBlock$2$1/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/ChestBlock$3/ (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)V net/minecraft/world/level/block/ChestBlock$3/ (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)V +MD: net/minecraft/world/level/block/ChestBlock$3/m_51635_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;F)F net/minecraft/world/level/block/ChestBlock$3/lambda$acceptDouble$0 (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;F)F +MD: net/minecraft/world/level/block/ChestBlock$3/m_6502_ ()Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; net/minecraft/world/level/block/ChestBlock$3/acceptNone ()Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; +MD: net/minecraft/world/level/block/ChestBlock$3/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$3/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$3/m_6959_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; net/minecraft/world/level/block/ChestBlock$3/acceptDouble (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; +MD: net/minecraft/world/level/block/ChestBlock$3/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$3/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$3/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$3/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$3/m_7693_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; net/minecraft/world/level/block/ChestBlock$3/acceptSingle (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; +MD: net/minecraft/world/level/block/ChestBlock$4/ ()V net/minecraft/world/level/block/ChestBlock$4/ ()V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/ ()V net/minecraft/world/level/block/ChiseledBookShelfBlock/ ()V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChiseledBookShelfBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ChiseledBookShelfBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_260793_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/block/ChiseledBookShelfBlock/lambda$createBlockStateDefinition$0 (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_260871_ (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/ChiseledBookShelfBlock/getRelativeHitCoordinatesForBlockFace (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_261181_ (F)I net/minecraft/world/level/block/ChiseledBookShelfBlock/getSection (F)I +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_261279_ (Lnet/minecraft/world/phys/Vec2;)I net/minecraft/world/level/block/ChiseledBookShelfBlock/getHitSlot (Lnet/minecraft/world/phys/Vec2;)I +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_262380_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;I)V net/minecraft/world/level/block/ChiseledBookShelfBlock/removeBook (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;I)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_262410_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/level/block/ChiseledBookShelfBlock/addBook (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChiseledBookShelfBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ChiseledBookShelfBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ChiseledBookShelfBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ChiseledBookShelfBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChiseledBookShelfBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChiseledBookShelfBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ChiseledBookShelfBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ChiseledBookShelfBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChiseledBookShelfBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock$1/ ()V net/minecraft/world/level/block/ChiseledBookShelfBlock$1/ ()V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/ ()V net/minecraft/world/level/block/ChorusFlowerBlock/ ()V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/ (Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChorusFlowerBlock/ (Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChorusFlowerBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChorusFlowerBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_220962_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V net/minecraft/world/level/block/ChorusFlowerBlock/generatePlant (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_220967_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/ChorusFlowerBlock/growTreeRecursive (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_51658_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ChorusFlowerBlock/placeDeadFlower (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_51661_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/ChorusFlowerBlock/placeGrownFlower (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_51697_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ChorusFlowerBlock/allNeighborsEmpty (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/ChorusFlowerBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ChorusFlowerBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusFlowerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChorusFlowerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChorusFlowerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChorusPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChorusPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChorusPlantBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_51710_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusPlantBlock/getStateForPlacement (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusPlantBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ChorusPlantBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusPlantBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChorusPlantBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChorusPlantBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CocoaBlock/ ()V net/minecraft/world/level/block/CocoaBlock/ ()V +MD: net/minecraft/world/level/block/CocoaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CocoaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CocoaBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CocoaBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CocoaBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CocoaBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CocoaBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CocoaBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CocoaBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CocoaBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CocoaBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CocoaBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CocoaBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CocoaBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CocoaBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CocoaBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CocoaBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CocoaBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CocoaBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CocoaBlock$1/ ()V net/minecraft/world/level/block/CocoaBlock$1/ ()V +MD: net/minecraft/world/level/block/CommandBlock/ ()V net/minecraft/world/level/block/CommandBlock/ ()V +MD: net/minecraft/world/level/block/CommandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Z)V net/minecraft/world/level/block/CommandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Z)V +MD: net/minecraft/world/level/block/CommandBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CommandBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CommandBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CommandBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CommandBlock/m_51809_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/CommandBlock/executeChain (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/CommandBlock/m_51831_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BaseCommandBlock;Z)V net/minecraft/world/level/block/CommandBlock/execute (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BaseCommandBlock;Z)V +MD: net/minecraft/world/level/block/CommandBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CommandBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CommandBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CommandBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CommandBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/CommandBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/CommandBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/CommandBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/CommandBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CommandBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CommandBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/CommandBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/CommandBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CommandBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CommandBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CommandBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CommandBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/CommandBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/CommandBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CommandBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ComparatorBlock/ ()V net/minecraft/world/level/block/ComparatorBlock/ ()V +MD: net/minecraft/world/level/block/ComparatorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ComparatorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ComparatorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ComparatorBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ComparatorBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_289176_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ItemFrame;)Z net/minecraft/world/level/block/ComparatorBlock/lambda$getItemFrame$0 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ItemFrame;)Z +MD: net/minecraft/world/level/block/ComparatorBlock/m_51864_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/ItemFrame; net/minecraft/world/level/block/ComparatorBlock/getItemFrame (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/ItemFrame; +MD: net/minecraft/world/level/block/ComparatorBlock/m_51903_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/calculateOutputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_51907_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ComparatorBlock/refreshOutputState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_5968_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/getOutputSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_6112_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/getDelay (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ComparatorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ComparatorBlock/m_7312_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/getInputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_7320_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ComparatorBlock/shouldTurnOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ComparatorBlock/m_7321_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ComparatorBlock/checkTickOnNeighbor (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ComparatorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/ComparatorBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/ComposterBlock/ ()V net/minecraft/world/level/block/ComposterBlock/ ()V +MD: net/minecraft/world/level/block/ComposterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ComposterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ComposterBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_268990_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/insertItem (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_269330_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/addItem (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_269590_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/empty (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_51920_ (FLnet/minecraft/world/level/ItemLike;)V net/minecraft/world/level/block/ComposterBlock/add (FLnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_51923_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/ComposterBlock/handleFill (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/ComposterBlock/m_51966_ ([Lnet/minecraft/world/phys/shapes/VoxelShape;)V net/minecraft/world/level/block/ComposterBlock/lambda$static$0 ([Lnet/minecraft/world/phys/shapes/VoxelShape;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_51988_ ()V net/minecraft/world/level/block/ComposterBlock/bootStrap ()V +MD: net/minecraft/world/level/block/ComposterBlock/m_51998_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/extractProduce (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_5840_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; net/minecraft/world/level/block/ComposterBlock/getContainer (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; +MD: net/minecraft/world/level/block/ComposterBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ComposterBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ComposterBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ComposterBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ComposterBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ComposterBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ComposterBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ComposterBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ComposterBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ComposterBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ComposterBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ComposterBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ComposterBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ComposterBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ComposterBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ComposterBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ComposterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ComposterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/ ()V net/minecraft/world/level/block/ComposterBlock$EmptyContainer/ ()V +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/ComposterBlock$EmptyContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$EmptyContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$EmptyContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ComposterBlock$InputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_6596_ ()V net/minecraft/world/level/block/ComposterBlock$InputContainer/setChanged ()V +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_6893_ ()I net/minecraft/world/level/block/ComposterBlock$InputContainer/getMaxStackSize ()I +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/ComposterBlock$InputContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$InputContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$InputContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ComposterBlock$OutputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_6596_ ()V net/minecraft/world/level/block/ComposterBlock$OutputContainer/setChanged ()V +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_6893_ ()I net/minecraft/world/level/block/ComposterBlock$OutputContainer/getMaxStackSize ()I +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/ComposterBlock$OutputContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$OutputContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$OutputContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ConcretePowderBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_48792_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/ConcretePowderBlock/onLand (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_52064_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ConcretePowderBlock/touchesLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_52080_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ConcretePowderBlock/shouldSolidify (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_52088_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ConcretePowderBlock/canSolidify (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConcretePowderBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ConcretePowderBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConcretePowderBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConduitBlock/ ()V net/minecraft/world/level/block/ConduitBlock/ ()V +MD: net/minecraft/world/level/block/ConduitBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ConduitBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ConduitBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ConduitBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ConduitBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/ConduitBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/ConduitBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConduitBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConduitBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ConduitBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ConduitBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ConduitBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ConduitBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ConduitBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ConduitBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ConduitBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ConduitBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConduitBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConduitBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ConduitBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ConduitBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ConduitBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CoralBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralBlock/m_52134_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CoralBlock/scanForWater (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CoralBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralFanBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralFanBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralFanBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CoralFanBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CoralFanBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralFanBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralPlantBlock/ ()V net/minecraft/world/level/block/CoralPlantBlock/ ()V +MD: net/minecraft/world/level/block/CoralPlantBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralPlantBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralPlantBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralPlantBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralPlantBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CoralPlantBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CoralPlantBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CoralPlantBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CoralPlantBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralPlantBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralWallFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralWallFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralWallFanBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralWallFanBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralWallFanBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CoralWallFanBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CoralWallFanBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralWallFanBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CraftingTableBlock/ ()V net/minecraft/world/level/block/CraftingTableBlock/ ()V +MD: net/minecraft/world/level/block/CraftingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CraftingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CraftingTableBlock/m_52226_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/CraftingTableBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/CraftingTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CraftingTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CraftingTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/CraftingTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/CropBlock/ ()V net/minecraft/world/level/block/CropBlock/ ()V +MD: net/minecraft/world/level/block/CropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CropBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CropBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CropBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CropBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CropBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CropBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CropBlock/m_52263_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CropBlock/growCrops (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CropBlock/m_52272_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/CropBlock/getGrowthSpeed (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/CropBlock/m_52289_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CropBlock/getStateForAge (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CropBlock/m_52305_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CropBlock/getAge (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CropBlock/m_52307_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CropBlock/isMaxAge (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CropBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CropBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CropBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CropBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CropBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/CropBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/CropBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CropBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CropBlock/m_7125_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/level/block/CropBlock/getBonemealAgeIncrease (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/level/block/CropBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CropBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CropBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CropBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CropBlock/m_7419_ ()I net/minecraft/world/level/block/CropBlock/getMaxAge ()I +MD: net/minecraft/world/level/block/CropBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/CropBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/CropBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CropBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CropBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CropBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CropBlock/m_7959_ ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/CropBlock/getAgeProperty ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/CrossCollisionBlock/ ()V net/minecraft/world/level/block/CrossCollisionBlock/ ()V +MD: net/minecraft/world/level/block/CrossCollisionBlock/ (FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CrossCollisionBlock/ (FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52326_ (FFFFF)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CrossCollisionBlock/makeShapes (FFFFF)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52343_ (Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/CrossCollisionBlock/indexFor (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52345_ (Ljava/util/Map$Entry;)Z net/minecraft/world/level/block/CrossCollisionBlock/lambda$static$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52363_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CrossCollisionBlock/getAABBIndex (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52365_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CrossCollisionBlock/lambda$getAABBIndex$1 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/CrossCollisionBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CrossCollisionBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CrossCollisionBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CrossCollisionBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CrossCollisionBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CrossCollisionBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CrossCollisionBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CrossCollisionBlock$1/ ()V net/minecraft/world/level/block/CrossCollisionBlock$1/ ()V +MD: net/minecraft/world/level/block/CryingObsidianBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CryingObsidianBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CryingObsidianBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CryingObsidianBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/ ()V net/minecraft/world/level/block/DaylightDetectorBlock/ ()V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DaylightDetectorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DaylightDetectorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/DaylightDetectorBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_153112_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/DaylightDetectorBlockEntity;)V net/minecraft/world/level/block/DaylightDetectorBlock/tickEntity (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/DaylightDetectorBlockEntity;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_52410_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DaylightDetectorBlock/updateSignalStrength (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DaylightDetectorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DaylightDetectorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DaylightDetectorBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/DaylightDetectorBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DaylightDetectorBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DaylightDetectorBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DaylightDetectorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DeadBushBlock/ ()V net/minecraft/world/level/block/DeadBushBlock/ ()V +MD: net/minecraft/world/level/block/DeadBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DeadBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DeadBushBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DeadBushBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DeadBushBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DeadBushBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DecoratedPotBlock/ ()V net/minecraft/world/level/block/DecoratedPotBlock/ ()V +MD: net/minecraft/world/level/block/DecoratedPotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DecoratedPotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DecoratedPotBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_284099_ (Ljava/util/List;Lnet/minecraft/world/item/Item;)V net/minecraft/world/level/block/DecoratedPotBlock/lambda$appendHoverText$1 (Ljava/util/List;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_284100_ (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/DecoratedPotBlock/lambda$getDrops$0 (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/DecoratedPotBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_49962_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/DecoratedPotBlock/getSoundType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DecoratedPotBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DecoratedPotBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/DecoratedPotBlock/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/DecoratedPotBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DecoratedPotBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DecoratedPotBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DecoratedPotBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DecoratedPotBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/ ()V net/minecraft/world/level/block/DetectorRailBlock/ ()V +MD: net/minecraft/world/level/block/DetectorRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DetectorRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_153122_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/DetectorRailBlock/lambda$getAnalogOutputSignal$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_153124_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/DetectorRailBlock/lambda$checkPressed$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DetectorRailBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52432_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/DetectorRailBlock/checkPressed (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52436_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/lang/Class;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/block/DetectorRailBlock/getInteractingMinecartOfType (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/lang/Class;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52470_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/DetectorRailBlock/getSearchBB (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52472_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DetectorRailBlock/updatePowerToConnected (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DetectorRailBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DetectorRailBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/DetectorRailBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DetectorRailBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DetectorRailBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DetectorRailBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DetectorRailBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/DetectorRailBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DetectorRailBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DetectorRailBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/DetectorRailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/DetectorRailBlock$1/ ()V net/minecraft/world/level/block/DetectorRailBlock$1/ ()V +MD: net/minecraft/world/level/block/DiodeBlock/ ()V net/minecraft/world/level/block/DiodeBlock/ ()V +MD: net/minecraft/world/level/block/DiodeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DiodeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DiodeBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_276835_ (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getAlternateSignal (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_276978_ ()Z net/minecraft/world/level/block/DiodeBlock/sideInputDiodesOnly ()Z +MD: net/minecraft/world/level/block/DiodeBlock/m_52573_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/shouldPrioritize (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_52580_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/DiodeBlock/updateNeighborsInFront (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_52586_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/isDiode (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DiodeBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DiodeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DiodeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DiodeBlock/m_5968_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getOutputSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6112_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getDelay (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DiodeBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DiodeBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DiodeBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DiodeBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DiodeBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DiodeBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DiodeBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DiodeBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DiodeBlock/m_7312_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getInputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_7320_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/shouldTurnOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_7321_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/DiodeBlock/checkTickOnNeighbor (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_7346_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/isLocked (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DiodeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DirectionalBlock/ ()V net/minecraft/world/level/block/DirectionalBlock/ ()V +MD: net/minecraft/world/level/block/DirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DirtPathBlock/ ()V net/minecraft/world/level/block/DirtPathBlock/ ()V +MD: net/minecraft/world/level/block/DirtPathBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DirtPathBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DirtPathBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DirtPathBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DirtPathBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DirtPathBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DirtPathBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DirtPathBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DirtPathBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DirtPathBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DirtPathBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DirtPathBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DirtPathBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DirtPathBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DirtPathBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DirtPathBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DispenserBlock/ ()V net/minecraft/world/level/block/DispenserBlock/ ()V +MD: net/minecraft/world/level/block/DispenserBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DispenserBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DispenserBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DispenserBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DispenserBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_52672_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/core/dispenser/DispenseItemBehavior;)V net/minecraft/world/level/block/DispenserBlock/registerBehavior (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/core/dispenser/DispenseItemBehavior;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_52720_ (Lnet/minecraft/core/BlockSource;)Lnet/minecraft/core/Position; net/minecraft/world/level/block/DispenserBlock/getDispensePosition (Lnet/minecraft/core/BlockSource;)Lnet/minecraft/core/Position; +MD: net/minecraft/world/level/block/DispenserBlock/m_52722_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V net/minecraft/world/level/block/DispenserBlock/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DispenserBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DispenserBlock/m_5824_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DispenserBlock/dispenseFrom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DispenserBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DispenserBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DispenserBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/DispenserBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/DispenserBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DispenserBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DispenserBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DispenserBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DispenserBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DispenserBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DispenserBlock/m_7216_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; net/minecraft/world/level/block/DispenserBlock/getDispenseMethod (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; +MD: net/minecraft/world/level/block/DispenserBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DispenserBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DispenserBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/DispenserBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/DispenserBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DispenserBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DoorBlock/ ()V net/minecraft/world/level/block/DoorBlock/ ()V +MD: net/minecraft/world/level/block/DoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/DoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/DoorBlock/m_153165_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DoorBlock/setOpen (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DoorBlock/m_245755_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DoorBlock/playSound (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DoorBlock/m_278711_ ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; net/minecraft/world/level/block/DoorBlock/type ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; +MD: net/minecraft/world/level/block/DoorBlock/m_52745_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DoorBlock/isWoodenDoor (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_52804_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/DoorBlock/getHinge (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/DoorBlock/m_52815_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DoorBlock/isOpen (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_52817_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DoorBlock/isWoodenDoor (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DoorBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DoorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DoorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DoorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DoorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DoorBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DoorBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DoorBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DoorBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DoorBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DoorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/DoorBlock/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/DoorBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DoorBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DoorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DoorBlock$1/ ()V net/minecraft/world/level/block/DoorBlock$1/ ()V +MD: net/minecraft/world/level/block/DoubleBlockCombiner/ ()V net/minecraft/world/level/block/DoubleBlockCombiner/ ()V +MD: net/minecraft/world/level/block/DoubleBlockCombiner/m_52822_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/properties/DirectionProperty;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiPredicate;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/DoubleBlockCombiner/combineWithNeigbour (Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/properties/DirectionProperty;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiPredicate;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ ()V net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ ()V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/m_153172_ ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/$values ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/values ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/values ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult/m_5649_ (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult/apply (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/ (Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/ (Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/m_5649_ (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/apply (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/ (Ljava/lang/Object;)V net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/ (Ljava/lang/Object;)V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/m_5649_ (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/apply (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoublePlantBlock/ ()V net/minecraft/world/level/block/DoublePlantBlock/ ()V +MD: net/minecraft/world/level/block/DoublePlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DoublePlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_153173_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/DoublePlantBlock/placeAt (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_182453_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoublePlantBlock/copyWaterloggedFrom (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoublePlantBlock/m_52903_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DoublePlantBlock/preventCreativeDropFromBottomPart (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoublePlantBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoublePlantBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DoublePlantBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DoublePlantBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DoublePlantBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoublePlantBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/DoublePlantBlock/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DoublePlantBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DoublePlantBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DragonEggBlock/ ()V net/minecraft/world/level/block/DragonEggBlock/ ()V +MD: net/minecraft/world/level/block/DragonEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DragonEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DragonEggBlock/m_52935_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DragonEggBlock/teleport (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DragonEggBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DragonEggBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DragonEggBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DragonEggBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DragonEggBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DragonEggBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DragonEggBlock/m_7198_ ()I net/minecraft/world/level/block/DragonEggBlock/getDelayAfterPlace ()I +MD: net/minecraft/world/level/block/DragonEggBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DragonEggBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DropExperienceBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/DropExperienceBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/DropperBlock/ ()V net/minecraft/world/level/block/DropperBlock/ ()V +MD: net/minecraft/world/level/block/DropperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DropperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DropperBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DropperBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DropperBlock/m_5824_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DropperBlock/dispenseFrom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DropperBlock/m_7216_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; net/minecraft/world/level/block/DropperBlock/getDispenseMethod (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/ ()V net/minecraft/world/level/block/EnchantmentTableBlock/ ()V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EnchantmentTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EnchantmentTableBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EnchantmentTableBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_207903_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/EnchantmentTableBlock/lambda$getMenuProvider$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_207909_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/EnchantmentTableBlock/isValidBookShelf (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_207913_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/EnchantmentTableBlock/lambda$static$0 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EnchantmentTableBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EnchantmentTableBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/EnchantmentTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/EnchantmentTableBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/EnchantmentTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/EnchantmentTableBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/EnchantmentTableBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/EnchantmentTableBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/EndGatewayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndGatewayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndGatewayBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EndGatewayBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EndGatewayBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EndGatewayBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EndGatewayBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EndGatewayBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EndGatewayBlock/m_5946_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/EndGatewayBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/EndGatewayBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/EndGatewayBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/EndPortalBlock/ ()V net/minecraft/world/level/block/EndPortalBlock/ ()V +MD: net/minecraft/world/level/block/EndPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndPortalBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EndPortalBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EndPortalBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EndPortalBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EndPortalBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EndPortalBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EndPortalBlock/m_5946_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/EndPortalBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/EndPortalBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/EndPortalBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/EndPortalBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/EndPortalBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/EndPortalFrameBlock/ ()V net/minecraft/world/level/block/EndPortalFrameBlock/ ()V +MD: net/minecraft/world/level/block/EndPortalFrameBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndPortalFrameBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_53077_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/EndPortalFrameBlock/getOrCreatePortalShape ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndPortalFrameBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EndPortalFrameBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/EndPortalFrameBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndPortalFrameBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndPortalFrameBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/EndPortalFrameBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/EndPortalFrameBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/EndPortalFrameBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/EndPortalFrameBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/EndRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndRodBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EndRodBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EndRodBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndRodBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndRodBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/EndRodBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/EnderChestBlock/ ()V net/minecraft/world/level/block/EnderChestBlock/ ()V +MD: net/minecraft/world/level/block/EnderChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EnderChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EnderChestBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EnderChestBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EnderChestBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EnderChestBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EnderChestBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EnderChestBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EnderChestBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EnderChestBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EnderChestBlock/m_53122_ (Lnet/minecraft/world/inventory/PlayerEnderChestContainer;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/EnderChestBlock/lambda$use$1 (Lnet/minecraft/world/inventory/PlayerEnderChestContainer;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/EnderChestBlock/m_53175_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/EnderChestBlock/lambda$new$0 ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/EnderChestBlock/combine (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/EnderChestBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EnderChestBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EnderChestBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/EnderChestBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/EnderChestBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/EnderChestBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/EnderChestBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/EnderChestBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/EnderChestBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/EnderChestBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/EntityBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EntityBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EntityBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EntityBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EntityBlock/m_214009_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/EntityBlock/getListener (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ ()V net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ ()V +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_53196_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/canAttach (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_53200_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/ ()V net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/ ()V +MD: net/minecraft/world/level/block/Fallable/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/Fallable/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/Fallable/m_252932_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/block/Fallable/getFallDamageSource (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/block/Fallable/m_48792_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/Fallable/onLand (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/FallingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FallingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FallingBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FallingBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FallingBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FallingBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FallingBlock/m_53241_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FallingBlock/isFree (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FallingBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/FallingBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/FallingBlock/m_6788_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/FallingBlock/falling (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/FallingBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/FallingBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/FallingBlock/m_7198_ ()I net/minecraft/world/level/block/FallingBlock/getDelayAfterPlace ()I +MD: net/minecraft/world/level/block/FallingBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FallingBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FarmBlock/ ()V net/minecraft/world/level/block/FarmBlock/ ()V +MD: net/minecraft/world/level/block/FarmBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FarmBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FarmBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/FarmBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/FarmBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FarmBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FarmBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FarmBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FarmBlock/m_269406_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/FarmBlock/turnToDirt (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/FarmBlock/m_53250_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FarmBlock/shouldMaintainFarmland (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_53258_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FarmBlock/isNearWater (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FarmBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FarmBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FarmBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FarmBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FarmBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FarmBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FarmBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FarmBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FarmBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FarmBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FenceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FenceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FenceBlock/m_153254_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FenceBlock/isSameFence (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FenceBlock/m_53329_ (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/FenceBlock/connectsTo (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/FenceBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FenceBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FenceBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FenceBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FenceBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FenceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FenceBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/ ()V net/minecraft/world/level/block/FenceGateBlock/ ()V +MD: net/minecraft/world/level/block/FenceGateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/FenceGateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/FenceGateBlock/m_53378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/FenceGateBlock/connectsToDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/FenceGateBlock/m_53404_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FenceGateBlock/isWall (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FenceGateBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceGateBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceGateBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FenceGateBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FenceGateBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/FenceGateBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/FenceGateBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FenceGateBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FenceGateBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceGateBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceGateBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FenceGateBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FenceGateBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock$1/ ()V net/minecraft/world/level/block/FenceGateBlock$1/ ()V +MD: net/minecraft/world/level/block/FireBlock/ ()V net/minecraft/world/level/block/FireBlock/ ()V +MD: net/minecraft/world/level/block/FireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FireBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FireBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FireBlock/m_221148_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/FireBlock/getFireTickDelay (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/FireBlock/m_221150_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;I)V net/minecraft/world/level/block/FireBlock/checkBurnOut (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/level/block/FireBlock/m_221156_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/FireBlock/getIgniteOdds (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/FireBlock/m_221164_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/FireBlock/getBurnOdds (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/FireBlock/m_221166_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/FireBlock/getIgniteOdds (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/FireBlock/m_53428_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FireBlock/isNearRain (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FireBlock/m_53437_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/getStateWithAge (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_53444_ (Lnet/minecraft/world/level/block/Block;II)V net/minecraft/world/level/block/FireBlock/setFlammable (Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/world/level/block/FireBlock/m_53466_ (Ljava/util/Map$Entry;)Z net/minecraft/world/level/block/FireBlock/lambda$static$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/level/block/FireBlock/m_53470_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/getStateForPlacement (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_53484_ ()V net/minecraft/world/level/block/FireBlock/bootStrap ()V +MD: net/minecraft/world/level/block/FireBlock/m_53485_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FireBlock/isValidFireLocation (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FireBlock/m_53490_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FireBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FireBlock/m_53496_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FireBlock/lambda$new$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/FireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/FireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_7599_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FireBlock/canBurn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FireBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FireBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FletchingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FletchingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FletchingTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FletchingTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FlowerBlock/ ()V net/minecraft/world/level/block/FlowerBlock/ ()V +MD: net/minecraft/world/level/block/FlowerBlock/ (Lnet/minecraft/world/effect/MobEffect;ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FlowerBlock/ (Lnet/minecraft/world/effect/MobEffect;ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FlowerBlock/m_53521_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/level/block/FlowerBlock/getSuspiciousEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/level/block/FlowerBlock/m_53522_ ()I net/minecraft/world/level/block/FlowerBlock/getEffectDuration ()I +MD: net/minecraft/world/level/block/FlowerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FlowerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FlowerPotBlock/ ()V net/minecraft/world/level/block/FlowerPotBlock/ ()V +MD: net/minecraft/world/level/block/FlowerPotBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FlowerPotBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FlowerPotBlock/m_153267_ ()Z net/minecraft/world/level/block/FlowerPotBlock/isEmpty ()Z +MD: net/minecraft/world/level/block/FlowerPotBlock/m_53560_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/FlowerPotBlock/getContent ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FlowerPotBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FlowerPotBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FlowerPotBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/FlowerPotBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FlowerPotBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/FlowerPotBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/FrogspawnBlock/ ()V net/minecraft/world/level/block/FrogspawnBlock/ ()V +MD: net/minecraft/world/level/block/FrogspawnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FrogspawnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrogspawnBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221178_ (II)V net/minecraft/world/level/block/FrogspawnBlock/setHatchDelay (II)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221181_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrogspawnBlock/hatchFrogspawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221185_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/FrogspawnBlock/getFrogspawnHatchDelay (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221187_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FrogspawnBlock/mayPlaceOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221190_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/FrogspawnBlock/destroyBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221219_ ()V net/minecraft/world/level/block/FrogspawnBlock/setDefaultHatchDelay ()V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221220_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrogspawnBlock/spawnTadpoles (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221224_ (Lnet/minecraft/util/RandomSource;)D net/minecraft/world/level/block/FrogspawnBlock/getRandomTadpolePositionOffset (Lnet/minecraft/util/RandomSource;)D +MD: net/minecraft/world/level/block/FrogspawnBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FrogspawnBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FrogspawnBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/FrogspawnBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FrogspawnBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FrogspawnBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/FrogspawnBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FrogspawnBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FrostedIceBlock/ ()V net/minecraft/world/level/block/FrostedIceBlock/ ()V +MD: net/minecraft/world/level/block/FrostedIceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FrostedIceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrostedIceBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrostedIceBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_53565_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/level/block/FrostedIceBlock/fewerNeigboursThan (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/level/block/FrostedIceBlock/m_53592_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FrostedIceBlock/slightlyMelt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FrostedIceBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/FrostedIceBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/FrostedIceBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/FrostedIceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FrostedIceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FungusBlock/ ()V net/minecraft/world/level/block/FungusBlock/ ()V +MD: net/minecraft/world/level/block/FungusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/FungusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/FungusBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/FungusBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/FungusBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FungusBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FungusBlock/m_254840_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/block/FungusBlock/lambda$performBonemeal$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/block/FungusBlock/m_255216_ (Lnet/minecraft/world/level/LevelReader;)Ljava/util/Optional; net/minecraft/world/level/block/FungusBlock/getFeature (Lnet/minecraft/world/level/LevelReader;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/FungusBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FungusBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FungusBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FungusBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FungusBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/FungusBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/FurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FurnaceBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/FurnaceBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/FurnaceBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/FurnaceBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/FurnaceBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FurnaceBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FurnaceBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/FurnaceBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/GlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GlazedTerracottaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GlazedTerracottaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GlazedTerracottaBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GlazedTerracottaBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GlazedTerracottaBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GlazedTerracottaBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/GlowLichenBlock/ ()V net/minecraft/world/level/block/GlowLichenBlock/ ()V +MD: net/minecraft/world/level/block/GlowLichenBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GlowLichenBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GlowLichenBlock/m_181219_ (ILnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/GlowLichenBlock/lambda$emission$0 (ILnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/GlowLichenBlock/m_181222_ (I)Ljava/util/function/ToIntFunction; net/minecraft/world/level/block/GlowLichenBlock/emission (I)Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_181228_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/GlowLichenBlock/lambda$isValidBonemealTarget$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_213612_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/GlowLichenBlock/getSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GlowLichenBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GlowLichenBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GlowLichenBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/GlowLichenBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/GlowLichenBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GlowLichenBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GlowLichenBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/GlowLichenBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GlowLichenBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/GrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GrassBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GrassBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GrassBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrassBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrassBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GrassBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GravelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GravelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GravelBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/GravelBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/GrindstoneBlock/ ()V net/minecraft/world/level/block/GrindstoneBlock/ ()V +MD: net/minecraft/world/level/block/GrindstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GrindstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GrindstoneBlock/m_53809_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/GrindstoneBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_53855_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrindstoneBlock/getVoxelShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrindstoneBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrindstoneBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/GrindstoneBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrindstoneBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrindstoneBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/GrindstoneBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/GrindstoneBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/GrindstoneBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/GrindstoneBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GrindstoneBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/GrindstoneBlock$1/ ()V net/minecraft/world/level/block/GrindstoneBlock$1/ ()V +MD: net/minecraft/world/level/block/GrowingPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V net/minecraft/world/level/block/GrowingPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_142209_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantBlock/canAttachTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/GrowingPlantBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrowingPlantBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/GrowingPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7722_ (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBlock/getStateForPlacement (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/GrowingPlantBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/GrowingPlantBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V net/minecraft/world/level/block/GrowingPlantBodyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_142644_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBodyBlock/updateHeadAfterConvertedFromBody (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_153322_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/world/level/block/GrowingPlantBodyBlock/getHeadPos (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GrowingPlantBodyBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantBodyBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/GrowingPlantBodyBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GrowingPlantBodyBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/GrowingPlantBodyBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBodyBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/GrowingPlantBodyBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/ ()V net/minecraft/world/level/block/GrowingPlantHeadBlock/ ()V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;ZD)V net/minecraft/world/level/block/GrowingPlantHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;ZD)V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_142643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/updateBodyAfterConvertedFromHead (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_187438_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/getMaxAgeState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_187440_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isMaxAge (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/GrowingPlantHeadBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/GrowingPlantHeadBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_214070_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/getGrowIntoState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GrowingPlantHeadBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/GrowingPlantHeadBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7722_ (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/getStateForPlacement (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GrowingPlantHeadBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/HalfTransparentBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HalfTransparentBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HalfTransparentBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/HalfTransparentBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/HangingRootsBlock/ ()V net/minecraft/world/level/block/HangingRootsBlock/ ()V +MD: net/minecraft/world/level/block/HangingRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HangingRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HangingRootsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HangingRootsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/HangingRootsBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HangingRootsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HangingRootsBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/HangingRootsBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/HangingRootsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/HangingRootsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/HayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HayBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/HayBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/HoneyBlock/ ()V net/minecraft/world/level/block/HoneyBlock/ ()V +MD: net/minecraft/world/level/block/HoneyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HoneyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/HoneyBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53986_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/showSlideParticles (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53988_ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/level/block/HoneyBlock/showParticles (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53991_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/HoneyBlock/maybeDoSlideAchievement (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53994_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/maybeDoSlideEffects (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_54007_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/HoneyBlock/isSlidingDown (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/HoneyBlock/m_54010_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/showJumpParticles (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_54012_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/HoneyBlock/doesEntityDoHoneyBlockSlideEffects (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/HoneyBlock/m_54019_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/doSlideMovement (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HoneyBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HoneyBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HopperBlock/ ()V net/minecraft/world/level/block/HopperBlock/ ()V +MD: net/minecraft/world/level/block/HopperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HopperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HopperBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/HopperBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/HopperBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/HopperBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/HopperBlock/m_274306_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/block/HopperBlock/checkPoweredState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/block/HopperBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HopperBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HopperBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HopperBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HopperBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HopperBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HopperBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/HopperBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/HopperBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/HopperBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/HopperBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/HopperBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/HopperBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/HopperBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/HopperBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/HopperBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/HopperBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HopperBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HopperBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/HopperBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/HopperBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HopperBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HopperBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/HopperBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/HopperBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/HopperBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/HopperBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/HopperBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/HopperBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HopperBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HopperBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/HopperBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/HopperBlock$1/ ()V net/minecraft/world/level/block/HopperBlock$1/ ()V +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/ ()V net/minecraft/world/level/block/HorizontalDirectionalBlock/ ()V +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HorizontalDirectionalBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HorizontalDirectionalBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/ ()V net/minecraft/world/level/block/HugeMushroomBlock/ ()V +MD: net/minecraft/world/level/block/HugeMushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HugeMushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/HugeMushroomBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/IceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/IceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/IceBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/IceBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/IceBlock/m_278844_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/IceBlock/meltsInto ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/IceBlock/m_54168_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/IceBlock/melt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/IceBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/IceBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/InfestedBlock/ ()V net/minecraft/world/level/block/InfestedBlock/ ()V +MD: net/minecraft/world/level/block/InfestedBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/InfestedBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/InfestedBlock/m_153423_ (Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/getNewStateWithProperties (Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153427_ (Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/lambda$getNewStateWithProperties$2 (Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153430_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/infestedStateByHost (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153432_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/hostStateByInfested (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153434_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/lambda$infestedStateByHost$0 (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153436_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/lambda$hostStateByInfested$1 ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/InfestedBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/InfestedBlock/m_54180_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/InfestedBlock/spawnInfestation (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/InfestedBlock/m_54192_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/InfestedBlock/getHostBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/InfestedBlock/m_54195_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/InfestedBlock/isCompatibleHostBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/InfestedRotatedPillarBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedRotatedPillarBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedRotatedPillarBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/InfestedRotatedPillarBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/IronBarsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/IronBarsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/IronBarsBlock/m_54217_ (Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/IronBarsBlock/attachsTo (Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/IronBarsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/IronBarsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/IronBarsBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/IronBarsBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/IronBarsBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/IronBarsBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/IronBarsBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/IronBarsBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/IronBarsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/IronBarsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/JigsawBlock/ ()V net/minecraft/world/level/block/JigsawBlock/ ()V +MD: net/minecraft/world/level/block/JigsawBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/JigsawBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/JigsawBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/JigsawBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/JigsawBlock/m_54245_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z net/minecraft/world/level/block/JigsawBlock/canAttach (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z +MD: net/minecraft/world/level/block/JigsawBlock/m_54248_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/JigsawBlock/lambda$canAttach$0 (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/JigsawBlock/m_54250_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/JigsawBlock/getFrontFacing (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/JigsawBlock/m_54252_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/JigsawBlock/getTopFacing (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/JigsawBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/JigsawBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/JigsawBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/JigsawBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/JigsawBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/JigsawBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/JigsawBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/JigsawBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/JigsawBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/JigsawBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/JukeboxBlock/ ()V net/minecraft/world/level/block/JukeboxBlock/ ()V +MD: net/minecraft/world/level/block/JukeboxBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/JukeboxBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/JukeboxBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/JukeboxBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/JukeboxBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/JukeboxBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/JukeboxBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/JukeboxBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/JukeboxBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/JukeboxBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/JukeboxBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/JukeboxBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/JukeboxBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/JukeboxBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/JukeboxBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/JukeboxBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/JukeboxBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/JukeboxBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/JukeboxBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/JukeboxBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/JukeboxBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/JukeboxBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/JukeboxBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/JukeboxBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/KelpBlock/ ()V net/minecraft/world/level/block/KelpBlock/ ()V +MD: net/minecraft/world/level/block/KelpBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/KelpBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/KelpBlock/m_142209_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/KelpBlock/canAttachTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/KelpBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/KelpBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/KelpBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/KelpBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/KelpBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/KelpBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/KelpBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/KelpBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/KelpBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/KelpBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/KelpPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/KelpPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/KelpPlantBlock/m_142209_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/KelpPlantBlock/canAttachTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/KelpPlantBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/KelpPlantBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/KelpPlantBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/KelpPlantBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/KelpPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/KelpPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/KelpPlantBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/KelpPlantBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/LadderBlock/ ()V net/minecraft/world/level/block/LadderBlock/ ()V +MD: net/minecraft/world/level/block/LadderBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LadderBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LadderBlock/m_54348_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/LadderBlock/canAttachTo (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/LadderBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LadderBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LadderBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LadderBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LadderBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LadderBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LadderBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LadderBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LadderBlock$1/ ()V net/minecraft/world/level/block/LadderBlock$1/ ()V +MD: net/minecraft/world/level/block/LanternBlock/ ()V net/minecraft/world/level/block/LanternBlock/ ()V +MD: net/minecraft/world/level/block/LanternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LanternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LanternBlock/m_153495_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/LanternBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/LanternBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LanternBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LanternBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LanternBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LanternBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LanternBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LanternBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/LanternBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/LanternBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LanternBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LanternBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LanternBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LanternBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LanternBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LavaCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LavaCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_142446_ (Lnet/minecraft/world/level/block/state/BlockState;)D net/minecraft/world/level/block/LavaCauldronBlock/getContentHeight (Lnet/minecraft/world/level/block/state/BlockState;)D +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LavaCauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LavaCauldronBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/LavaCauldronBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/ ()V net/minecraft/world/level/block/LayeredCauldronBlock/ ()V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V net/minecraft/world/level/block/LayeredCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_141997_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V net/minecraft/world/level/block/LayeredCauldronBlock/handlePrecipitation (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142087_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/LayeredCauldronBlock/canReceiveStalactiteDrip (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LayeredCauldronBlock/handleEntityOnFireInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142310_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/LayeredCauldronBlock/receiveStalactiteDrip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142446_ (Lnet/minecraft/world/level/block/state/BlockState;)D net/minecraft/world/level/block/LayeredCauldronBlock/getContentHeight (Lnet/minecraft/world/level/block/state/BlockState;)D +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LayeredCauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_153525_ (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z net/minecraft/world/level/block/LayeredCauldronBlock/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_153552_ (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z net/minecraft/world/level/block/LayeredCauldronBlock/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_153559_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LayeredCauldronBlock/lowerFillLevel (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LayeredCauldronBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/LayeredCauldronBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LayeredCauldronBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LeavesBlock/ ()V net/minecraft/world/level/block/LeavesBlock/ ()V +MD: net/minecraft/world/level/block/LeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeavesBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeavesBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeavesBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_221385_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LeavesBlock/decaying (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LeavesBlock/m_277200_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/OptionalInt; net/minecraft/world/level/block/LeavesBlock/getOptionalDistanceAt (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/block/LeavesBlock/m_54435_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeavesBlock/updateDistance (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeavesBlock/m_54463_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/LeavesBlock/getDistanceAt (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/LeavesBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeavesBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeavesBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LeavesBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LeavesBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LeavesBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LeavesBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeavesBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeavesBlock/m_7753_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LeavesBlock/getLightBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LeavesBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LeavesBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LeavesBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock/ ()V net/minecraft/world/level/block/LecternBlock/ ()V +MD: net/minecraft/world/level/block/LecternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LecternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LecternBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/LecternBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/LecternBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LecternBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LecternBlock/m_269116_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/LecternBlock/placeBook (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/LecternBlock/m_269125_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/LecternBlock/tryPlaceBook (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_269306_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LecternBlock/resetBookState (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LecternBlock/m_54484_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/LecternBlock/openScreen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/LecternBlock/m_54488_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/LecternBlock/signalPageChange (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/LecternBlock/m_54544_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/LecternBlock/updateBelow (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/LecternBlock/m_54553_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LecternBlock/changePowered (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LecternBlock/m_54587_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LecternBlock/popBook (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LecternBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LecternBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LecternBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LecternBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LecternBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LecternBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LecternBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LecternBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LecternBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LecternBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LecternBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LecternBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LecternBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LecternBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LecternBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LecternBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LecternBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LecternBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LecternBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/LecternBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/LecternBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LecternBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/LecternBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/LecternBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/LecternBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LecternBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LecternBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LecternBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LecternBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LecternBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock$1/ ()V net/minecraft/world/level/block/LecternBlock$1/ ()V +MD: net/minecraft/world/level/block/LevelEvent/ ()V net/minecraft/world/level/block/LevelEvent/ ()V +MD: net/minecraft/world/level/block/LeverBlock/ ()V net/minecraft/world/level/block/LeverBlock/ ()V +MD: net/minecraft/world/level/block/LeverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LeverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LeverBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeverBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeverBlock/m_54657_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/block/LeverBlock/makeParticle (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/block/LeverBlock/m_54676_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeverBlock/pull (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeverBlock/m_54680_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LeverBlock/updateNeighbours (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LeverBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LeverBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LeverBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LeverBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LeverBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LeverBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LeverBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LeverBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LeverBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LeverBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LeverBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LeverBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LeverBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LeverBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LeverBlock$1/ ()V net/minecraft/world/level/block/LeverBlock$1/ ()V +MD: net/minecraft/world/level/block/LightBlock/ ()V net/minecraft/world/level/block/LightBlock/ ()V +MD: net/minecraft/world/level/block/LightBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LightBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LightBlock/m_153700_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/LightBlock/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/LightBlock/m_257398_ (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/LightBlock/setLightOnStack (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/LightBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LightBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LightBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LightBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LightBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LightBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LightBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/LightBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/LightBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LightBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LightBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LightBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LightBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/LightBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/LightBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/LightBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/LightBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LightBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LightningRodBlock/ ()V net/minecraft/world/level/block/LightningRodBlock/ ()V +MD: net/minecraft/world/level/block/LightningRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LightningRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_153760_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LightningRodBlock/onLightningStrike (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_153764_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LightningRodBlock/updateNeighbours (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LightningRodBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LightningRodBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LightningRodBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LightningRodBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/LightningRodBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LightningRodBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LightningRodBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LightningRodBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LightningRodBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LightningRodBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LightningRodBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LightningRodBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LightningRodBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LightningRodBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LightningRodBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LightningRodBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LightningRodBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LightningRodBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LiquidBlock/ ()V net/minecraft/world/level/block/LiquidBlock/ ()V +MD: net/minecraft/world/level/block/LiquidBlock/ (Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LiquidBlock/ (Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LiquidBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/LiquidBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/LiquidBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/LiquidBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/LiquidBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LiquidBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LiquidBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/LiquidBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/LiquidBlock/m_54696_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LiquidBlock/shouldSpreadLiquid (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_54700_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LiquidBlock/fizz (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LiquidBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LiquidBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LiquidBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LiquidBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LiquidBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LiquidBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LiquidBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/LiquidBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LiquidBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LiquidBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LiquidBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/LiquidBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/LiquidBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/LiquidBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LiquidBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LiquidBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LiquidBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/LiquidBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/LiquidBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LiquidBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LiquidBlockContainer/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/LiquidBlockContainer/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/LiquidBlockContainer/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/LiquidBlockContainer/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/LoomBlock/ ()V net/minecraft/world/level/block/LoomBlock/ ()V +MD: net/minecraft/world/level/block/LoomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LoomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LoomBlock/m_54780_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/LoomBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/LoomBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LoomBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LoomBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LoomBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LoomBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/LoomBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/LoomBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LoomBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MagmaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MagmaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MagmaBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/MagmaBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/MagmaBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MagmaBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/MagmaBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/MagmaBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/MagmaBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MagmaBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangroveLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MangroveLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MangroveLeavesBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MangroveLeavesBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MangroveLeavesBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangroveLeavesBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangroveLeavesBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MangroveLeavesBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/ ()V net/minecraft/world/level/block/MangrovePropaguleBlock/ ()V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MangrovePropaguleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MangrovePropaguleBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MangrovePropaguleBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221485_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/createNewHangingPropagule (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221492_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/createNewHangingPropagule ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221499_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isHanging (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221501_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isFullyGrown (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/MangrovePropaguleBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MangrovePropaguleBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/MangrovePropaguleBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MangroveRootsBlock/ ()V net/minecraft/world/level/block/MangroveRootsBlock/ ()V +MD: net/minecraft/world/level/block/MangroveRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MangroveRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangroveRootsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/MangroveRootsBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MangroveRootsBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangroveRootsBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/MangroveRootsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MelonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MelonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MelonBlock/m_7161_ ()Lnet/minecraft/world/level/block/StemBlock; net/minecraft/world/level/block/MelonBlock/getStem ()Lnet/minecraft/world/level/block/StemBlock; +MD: net/minecraft/world/level/block/MelonBlock/m_7810_ ()Lnet/minecraft/world/level/block/AttachedStemBlock; net/minecraft/world/level/block/MelonBlock/getAttachedStem ()Lnet/minecraft/world/level/block/AttachedStemBlock; +MD: net/minecraft/world/level/block/Mirror/ ()V net/minecraft/world/level/block/Mirror/ ()V +MD: net/minecraft/world/level/block/Mirror/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V net/minecraft/world/level/block/Mirror/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V +MD: net/minecraft/world/level/block/Mirror/m_153787_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/Mirror/symbol ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/Mirror/m_153788_ ()[Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/Mirror/$values ()[Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/Mirror/m_54842_ ()Lcom/mojang/math/OctahedralGroup; net/minecraft/world/level/block/Mirror/rotation ()Lcom/mojang/math/OctahedralGroup; +MD: net/minecraft/world/level/block/Mirror/m_54843_ (II)I net/minecraft/world/level/block/Mirror/mirror (II)I +MD: net/minecraft/world/level/block/Mirror/m_54846_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Mirror/getRotation (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Mirror/m_54848_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/Mirror/mirror (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/Mirror/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/Mirror/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Mirror/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/Mirror/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/Mirror/values ()[Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/Mirror/values ()[Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/Mirror$1/ ()V net/minecraft/world/level/block/Mirror$1/ ()V +MD: net/minecraft/world/level/block/MossBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MossBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MossBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MossBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MossBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MossBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MossBlock/m_255306_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/block/MossBlock/lambda$performBonemeal$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/block/MossBlock/m_257327_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/block/MossBlock/lambda$performBonemeal$0 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MossBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MossBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MudBlock/ ()V net/minecraft/world/level/block/MudBlock/ ()V +MD: net/minecraft/world/level/block/MudBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MudBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MudBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MudBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MudBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MudBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MudBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/MudBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/MudBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/MudBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/MudBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MudBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MultifaceBlock/ ()V net/minecraft/world/level/block/MultifaceBlock/ ()V +MD: net/minecraft/world/level/block/MultifaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MultifaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MultifaceBlock/m_153829_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceBlock/canAttachTo (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/lambda$getStateForPlacement$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/removeFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153900_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/hasFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153910_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/mapDirections (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153918_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/getDefaultMultifaceState (Lnet/minecraft/world/level/block/state/StateDefinition;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153920_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/isFaceSupported (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153922_ (Ljava/util/EnumMap;)V net/minecraft/world/level/block/MultifaceBlock/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/level/block/MultifaceBlock/m_153933_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; net/minecraft/world/level/block/MultifaceBlock/getFaceProperty (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/getStateForPlacement (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153958_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MultifaceBlock/calculateMultifaceShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153960_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceBlock/hasAnyFace (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153962_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceBlock/hasAnyVacantFace (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153964_ ()Z net/minecraft/world/level/block/MultifaceBlock/isWaterloggable ()Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_213612_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/MultifaceBlock/getSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/MultifaceBlock/m_221569_ (B)Ljava/util/Set; net/minecraft/world/level/block/MultifaceBlock/unpack (B)Ljava/util/Set; +MD: net/minecraft/world/level/block/MultifaceBlock/m_221571_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/isValidStateForPlacement (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_221576_ (Ljava/util/Collection;)B net/minecraft/world/level/block/MultifaceBlock/pack (Ljava/util/Collection;)B +MD: net/minecraft/world/level/block/MultifaceBlock/m_221578_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/lambda$hasAnyVacantFace$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_221581_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/lambda$hasAnyFace$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_221584_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Set; net/minecraft/world/level/block/MultifaceBlock/availableFaces (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Set; +MD: net/minecraft/world/level/block/MultifaceBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MultifaceBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MultifaceBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/MultifaceBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MultifaceBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/MultifaceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MultifaceSpreader/ ()V net/minecraft/world/level/block/MultifaceSpreader/ ()V +MD: net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadConfig;)V net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadConfig;)V +MD: net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221593_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Z)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadToFace (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221597_ (Lnet/minecraft/world/level/LevelAccessor;ZLnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromFaceTowardDirection$7 (Lnet/minecraft/world/level/LevelAccessor;ZLnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/canSpreadInAnyDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221606_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/lambda$canSpreadInAnyDirection$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221612_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/getSpreadFromFaceTowardDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221619_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadFromRandomFaceTowardRandomDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221624_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromRandomFaceTowardRandomDirection$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221630_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Z)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadFromFaceTowardRandomDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadFromFaceTowardDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221644_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)J net/minecraft/world/level/block/MultifaceSpreader/spreadFromFaceTowardAllDirections (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)J +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221650_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromFaceTowardAllDirections$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221657_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)J net/minecraft/world/level/block/MultifaceSpreader/spreadAll (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)J +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221662_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/core/Direction;)Ljava/lang/Long; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadAll$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/core/Direction;)Ljava/lang/Long; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221668_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadAll$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221671_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromFaceTowardRandomDirection$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221678_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromRandomFaceTowardRandomDirection$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/m_213938_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/stateCanBeReplaced (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/m_213973_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/canSpreadInto (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/m_214136_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/getStateForPlacement (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_213973_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/canSpreadInto (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_214107_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/isOtherBlockValidAsSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_214109_ ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/getSpreadTypes ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_214136_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/getStateForPlacement (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_221701_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/placeBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_221711_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/hasFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_221714_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/canSpreadFrom (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221717_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221718_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/face ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/hashCode ()I net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/hashCode ()I +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/toString ()Ljava/lang/String; net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate/m_221728_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate/test (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ ()V net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ ()V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/m_221740_ ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/$values ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/values ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/values ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MushroomBlock/ ()V net/minecraft/world/level/block/MushroomBlock/ ()V +MD: net/minecraft/world/level/block/MushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/block/MushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/block/MushroomBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MushroomBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/MushroomBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MushroomBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MushroomBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MushroomBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_221773_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/MushroomBlock/growMushroom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MushroomBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MushroomBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MushroomBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MushroomBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MushroomBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MyceliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MyceliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MyceliumBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MyceliumBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/ ()V net/minecraft/world/level/block/NetherPortalBlock/ ()V +MD: net/minecraft/world/level/block/NetherPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NetherPortalBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NetherPortalBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/NetherPortalBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NetherPortalBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/NetherPortalBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NetherPortalBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/NetherPortalBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/NetherPortalBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/NetherPortalBlock$1/ ()V net/minecraft/world/level/block/NetherPortalBlock$1/ ()V +MD: net/minecraft/world/level/block/NetherSproutsBlock/ ()V net/minecraft/world/level/block/NetherSproutsBlock/ ()V +MD: net/minecraft/world/level/block/NetherSproutsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherSproutsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherSproutsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/NetherSproutsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/NetherSproutsBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/NetherSproutsBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/NetherVines/ ()V net/minecraft/world/level/block/NetherVines/ ()V +MD: net/minecraft/world/level/block/NetherVines/m_221803_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/NetherVines/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/NetherVines/m_54963_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NetherVines/isValidGrowthState (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NetherWartBlock/ ()V net/minecraft/world/level/block/NetherWartBlock/ ()V +MD: net/minecraft/world/level/block/NetherWartBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherWartBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherWartBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NetherWartBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherWartBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/NetherWartBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/NetherWartBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/NetherWartBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/NetherWartBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NetherWartBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NetherWartBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/NetherWartBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/NetherWartBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/NetherWartBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/NetherrackBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherrackBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherrackBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/NetherrackBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/NetherrackBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NetherrackBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NetherrackBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/NetherrackBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/NoteBlock/ ()V net/minecraft/world/level/block/NoteBlock/ ()V +MD: net/minecraft/world/level/block/NoteBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NoteBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NoteBlock/m_260916_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/NoteBlock/playNote (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/NoteBlock/m_261136_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NoteBlock/setInstrument (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NoteBlock/m_262851_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/NoteBlock/getCustomSoundId (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/NoteBlock/m_276981_ (I)F net/minecraft/world/level/block/NoteBlock/getPitchFromNote (I)F +MD: net/minecraft/world/level/block/NoteBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NoteBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NoteBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/NoteBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/NoteBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/NoteBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/NoteBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/NoteBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/NoteBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NoteBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NoteBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/NoteBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/NoteBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/NoteBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/NyliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NyliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NyliumBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/NyliumBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NyliumBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NyliumBlock/m_255256_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/block/NyliumBlock/lambda$place$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_255258_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/NyliumBlock/place (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_55078_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/NyliumBlock/canBeNylium (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/NyliumBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/NyliumBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/ObserverBlock/ ()V net/minecraft/world/level/block/ObserverBlock/ ()V +MD: net/minecraft/world/level/block/ObserverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ObserverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ObserverBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_55088_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ObserverBlock/updateNeighborsInFront (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_55092_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ObserverBlock/startSignal (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ObserverBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ObserverBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ObserverBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ObserverBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ObserverBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ObserverBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ObserverBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ObserverBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ObserverBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ObserverBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ObserverBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PiglinWallSkullBlock/ ()V net/minecraft/world/level/block/PiglinWallSkullBlock/ ()V +MD: net/minecraft/world/level/block/PiglinWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PiglinWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PiglinWallSkullBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PiglinWallSkullBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PinkPetalsBlock/ ()V net/minecraft/world/level/block/PinkPetalsBlock/ ()V +MD: net/minecraft/world/level/block/PinkPetalsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PinkPetalsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PinkPetalsBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PinkPetalsBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PinkPetalsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PinkPetalsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PinkPetalsBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/PinkPetalsBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PinkPetalsBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/PinkPetalsBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PinkPetalsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PipeBlock/ ()V net/minecraft/world/level/block/PipeBlock/ ()V +MD: net/minecraft/world/level/block/PipeBlock/ (FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PipeBlock/ (FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PipeBlock/m_55161_ (F)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PipeBlock/makeShapes (F)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PipeBlock/m_55163_ (Ljava/util/EnumMap;)V net/minecraft/world/level/block/PipeBlock/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/level/block/PipeBlock/m_55174_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/PipeBlock/getAABBIndex (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/PipeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PipeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PipeBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PipeBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/ ()V net/minecraft/world/level/block/PitcherCropBlock/ ()V +MD: net/minecraft/world/level/block/PitcherCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PitcherCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PitcherCropBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PitcherCropBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_276876_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isMaxAge (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_276898_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/PitcherCropBlock/grow (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_277165_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/canGrowInto (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_278754_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isLower (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_289996_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z net/minecraft/world/level/block/PitcherCropBlock/canGrow (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_289999_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/PitcherCropBlock$PosAndState; net/minecraft/world/level/block/PitcherCropBlock/getLowerHalf (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/PitcherCropBlock$PosAndState; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_290001_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isUpper (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_290004_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/sufficientLight (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PitcherCropBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PitcherCropBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PitcherCropBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/PitcherCropBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/PitcherCropBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/PitcherCropBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PitcherCropBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/PitcherCropBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PitcherCropBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PitcherCropBlock$PosAndState/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/PitcherCropBlock$PosAndState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289993_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PitcherCropBlock$PosAndState/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289994_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PitcherCropBlock$PosAndState/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/hashCode ()I net/minecraft/world/level/block/PitcherCropBlock$PosAndState/hashCode ()I +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/toString ()Ljava/lang/String; net/minecraft/world/level/block/PitcherCropBlock$PosAndState/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/PlayerHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PlayerHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PlayerHeadBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/PlayerHeadBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/PlayerWallHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PlayerWallHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PlayerWallHeadBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/PlayerWallHeadBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/PlayerWallHeadBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/PlayerWallHeadBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/ ()V net/minecraft/world/level/block/PointedDripstoneBlock/ ()V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PointedDripstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/PointedDripstoneBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/PointedDripstoneBlock/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_142740_ ()F net/minecraft/world/level/block/PointedDripstoneBlock/getMaxHorizontalOffset ()F +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154032_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PointedDripstoneBlock/growStalagmiteBelow (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154035_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/PointedDripstoneBlock/grow (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154052_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock/getDripFluid (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154055_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock/findStalactiteTipAboveCauldron (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154062_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PointedDripstoneBlock/spawnDripParticle (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154066_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Ljava/util/Optional; net/minecraft/world/level/block/PointedDripstoneBlock/findRootBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Ljava/util/Optional; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154071_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/PointedDripstoneBlock/spawnDripParticle (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154076_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock/findFillableCauldronBelowStalactiteTip (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154087_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)V net/minecraft/world/level/block/PointedDripstoneBlock/createDripstone (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154092_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/PointedDripstoneBlock/calculateDripstoneThickness (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154097_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PointedDripstoneBlock/spawnFallingStalactite (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154130_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock/findTip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154140_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canGrow (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154143_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isUnmergedTipWithDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154153_ (Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/PointedDripstoneBlock/isTip (Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154158_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canFillCauldron (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154160_ (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findFillableCauldronBelowStalactiteTip$7 (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154166_ (ZLnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findTip$4 (ZLnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154181_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/PointedDripstoneBlock/getFluidAboveStalactite (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154190_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/PointedDripstoneBlock/calculateTipDirection (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154194_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canTipGrow (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154203_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isStalactiteStartPos (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154207_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isPointedDripstoneWithDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154221_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isValidPointedDripstonePlacement (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154230_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PointedDripstoneBlock/createMergedTips (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154238_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canDrip (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154240_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isStalactite (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154242_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isStalagmite (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154244_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findRootBlock$6 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_180643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isCollisionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202006_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$AxisDirection;Ljava/util/function/BiPredicate;Ljava/util/function/Predicate;I)Ljava/util/Optional; net/minecraft/world/level/block/PointedDripstoneBlock/findBlockVertical (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$AxisDirection;Ljava/util/function/BiPredicate;Ljava/util/function/Predicate;I)Ljava/util/Optional; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202013_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findRootBlock$5 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202017_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canDripThrough (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202021_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findTip$3 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202028_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findStalactiteTipAboveCauldron$9 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202032_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findFillableCauldronBelowStalactiteTip$8 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221846_ (FLnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$animateTick$0 (FLnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221849_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock/getCauldronFillFluidType (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221852_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V net/minecraft/world/level/block/PointedDripstoneBlock/lambda$spawnDripParticle$2 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221857_ (Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock/lambda$getCauldronFillFluidType$10 (Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221859_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/block/PointedDripstoneBlock/maybeTransferFluid (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221874_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo; net/minecraft/world/level/block/PointedDripstoneBlock/lambda$getFluidAboveStalactite$11 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221877_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V net/minecraft/world/level/block/PointedDripstoneBlock/lambda$animateTick$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221887_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/growStalactiteOrStalagmiteIfPossible (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_252932_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/block/PointedDripstoneBlock/getFallDamageSource (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PointedDripstoneBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/PointedDripstoneBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/PointedDripstoneBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PointedDripstoneBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PointedDripstoneBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PointedDripstoneBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PointedDripstoneBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221892_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221893_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/fluid ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221894_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/sourceState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/hashCode ()I net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/hashCode ()I +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/toString ()Ljava/lang/String; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/PotatoBlock/ ()V net/minecraft/world/level/block/PotatoBlock/ ()V +MD: net/minecraft/world/level/block/PotatoBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PotatoBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PotatoBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PotatoBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PotatoBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/PotatoBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/PowderSnowBlock/ ()V net/minecraft/world/level/block/PowderSnowBlock/ ()V +MD: net/minecraft/world/level/block/PowderSnowBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PowderSnowBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PowderSnowBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/PowderSnowBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/PowderSnowBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/PowderSnowBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/PowderSnowBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_154255_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/PowderSnowBlock/canEntityWalkOnPowderSnow (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/PowderSnowBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PowderSnowBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PowderSnowBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PowderSnowBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PowderSnowBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/PowderSnowBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/PowderSnowBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/PowderSnowBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/PowderSnowBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PowderSnowBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PowderSnowCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V net/minecraft/world/level/block/PowderSnowCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/PowderSnowCauldronBlock/m_142266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PowderSnowCauldronBlock/handleEntityOnFireInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PoweredBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PoweredBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PoweredBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/PoweredBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/PoweredBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PoweredBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PoweredRailBlock/ ()V net/minecraft/world/level/block/PoweredRailBlock/ ()V +MD: net/minecraft/world/level/block/PoweredRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PoweredRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PoweredRailBlock/m_55219_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZI)Z net/minecraft/world/level/block/PoweredRailBlock/findPoweredRailSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZI)Z +MD: net/minecraft/world/level/block/PoweredRailBlock/m_55225_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZILnet/minecraft/world/level/block/state/properties/RailShape;)Z net/minecraft/world/level/block/PoweredRailBlock/isSameRailWithPower (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZILnet/minecraft/world/level/block/state/properties/RailShape;)Z +MD: net/minecraft/world/level/block/PoweredRailBlock/m_6360_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/PoweredRailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/PoweredRailBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PoweredRailBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PoweredRailBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PoweredRailBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PoweredRailBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PoweredRailBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PoweredRailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/PoweredRailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/PoweredRailBlock$1/ ()V net/minecraft/world/level/block/PoweredRailBlock$1/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock/ ()V net/minecraft/world/level/block/PressurePlateBlock/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock/ (Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/PressurePlateBlock/ (Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/PressurePlateBlock/m_6016_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/PressurePlateBlock/getSignalForState (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/PressurePlateBlock/m_6693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/PressurePlateBlock/getSignalStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/PressurePlateBlock/m_7422_ (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PressurePlateBlock/setSignalForState (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PressurePlateBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PressurePlateBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PressurePlateBlock$1/ ()V net/minecraft/world/level/block/PressurePlateBlock$1/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ ()V net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ (Ljava/lang/String;I)V net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/m_154297_ ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/$values ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/values ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/values ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +MD: net/minecraft/world/level/block/PumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PumpkinBlock/m_55285_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/PumpkinBlock/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/PumpkinBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/PumpkinBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/PumpkinBlock/m_7161_ ()Lnet/minecraft/world/level/block/StemBlock; net/minecraft/world/level/block/PumpkinBlock/getStem ()Lnet/minecraft/world/level/block/StemBlock; +MD: net/minecraft/world/level/block/PumpkinBlock/m_7810_ ()Lnet/minecraft/world/level/block/AttachedStemBlock; net/minecraft/world/level/block/PumpkinBlock/getAttachedStem ()Lnet/minecraft/world/level/block/AttachedStemBlock; +MD: net/minecraft/world/level/block/RailBlock/ ()V net/minecraft/world/level/block/RailBlock/ ()V +MD: net/minecraft/world/level/block/RailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RailBlock/m_6360_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/RailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/RailBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RailBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RailBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RailBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RailBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RailBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/RailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/RailBlock$1/ ()V net/minecraft/world/level/block/RailBlock$1/ ()V +MD: net/minecraft/world/level/block/RailState/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RailState/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RailState/m_55424_ ()Ljava/util/List; net/minecraft/world/level/block/RailState/getConnections ()Ljava/util/List; +MD: net/minecraft/world/level/block/RailState/m_55425_ (Lnet/minecraft/world/level/block/RailState;)Z net/minecraft/world/level/block/RailState/connectsTo (Lnet/minecraft/world/level/block/RailState;)Z +MD: net/minecraft/world/level/block/RailState/m_55427_ (Lnet/minecraft/world/level/block/state/properties/RailShape;)V net/minecraft/world/level/block/RailState/updateConnections (Lnet/minecraft/world/level/block/state/properties/RailShape;)V +MD: net/minecraft/world/level/block/RailState/m_55429_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RailState/hasRail (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RailState/m_55431_ (ZZLnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/world/level/block/RailState; net/minecraft/world/level/block/RailState/place (ZZLnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/world/level/block/RailState; +MD: net/minecraft/world/level/block/RailState/m_55435_ ()I net/minecraft/world/level/block/RailState/countPotentialConnections ()I +MD: net/minecraft/world/level/block/RailState/m_55436_ (Lnet/minecraft/world/level/block/RailState;)Z net/minecraft/world/level/block/RailState/canConnectTo (Lnet/minecraft/world/level/block/RailState;)Z +MD: net/minecraft/world/level/block/RailState/m_55438_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/RailState; net/minecraft/world/level/block/RailState/getRail (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/RailState; +MD: net/minecraft/world/level/block/RailState/m_55440_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RailState/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RailState/m_55441_ (Lnet/minecraft/world/level/block/RailState;)V net/minecraft/world/level/block/RailState/connectTo (Lnet/minecraft/world/level/block/RailState;)V +MD: net/minecraft/world/level/block/RailState/m_55443_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RailState/hasConnection (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RailState/m_55445_ ()V net/minecraft/world/level/block/RailState/removeSoftConnections ()V +MD: net/minecraft/world/level/block/RailState/m_55446_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RailState/hasNeighborRail (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RailState$1/ ()V net/minecraft/world/level/block/RailState$1/ ()V +MD: net/minecraft/world/level/block/RedStoneOreBlock/ ()V net/minecraft/world/level/block/RedStoneOreBlock/ ()V +MD: net/minecraft/world/level/block/RedStoneOreBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedStoneOreBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/RedStoneOreBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/RedStoneOreBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedStoneOreBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedStoneOreBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_55454_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneOreBlock/spawnParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_55492_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneOreBlock/interact (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RedStoneOreBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/RedStoneOreBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneOreBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedStoneOreBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/ ()V net/minecraft/world/level/block/RedStoneWireBlock/ ()V +MD: net/minecraft/world/level/block/RedStoneWireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedStoneWireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_154318_ ([Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/RedStoneWireBlock/lambda$static$0 ([Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedStoneWireBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_221922_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;FF)V net/minecraft/world/level/block/RedStoneWireBlock/spawnParticlesAlongLine (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;FF)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55514_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/getConnectionState (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55518_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/RedStoneWireBlock/getConnectingSide (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55522_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/RedStoneWireBlock/getConnectingSide (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55527_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/RedStoneWireBlock/calculateTargetStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55530_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RedStoneWireBlock/updatePowerStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55534_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RedStoneWireBlock/updatesOnShapeChange (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55594_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/RedStoneWireBlock/shouldConnectTo (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55606_ (I)I net/minecraft/world/level/block/RedStoneWireBlock/getColorForPower (I)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55608_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/getMissingConnections (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55612_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/canSurviveOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55616_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneWireBlock/checkCornerChangeAt (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55637_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneWireBlock/updateNeighborsOfNeighboringWires (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55640_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/shouldConnectTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55642_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RedStoneWireBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55644_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/isCross (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55646_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/isDot (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55648_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/RedStoneWireBlock/getWireSignal (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RedStoneWireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RedStoneWireBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedStoneWireBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedStoneWireBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedStoneWireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedStoneWireBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RedStoneWireBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7742_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/RedStoneWireBlock/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RedStoneWireBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedStoneWireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock$1/ ()V net/minecraft/world/level/block/RedStoneWireBlock$1/ ()V +MD: net/minecraft/world/level/block/RedstoneLampBlock/ ()V net/minecraft/world/level/block/RedstoneLampBlock/ ()V +MD: net/minecraft/world/level/block/RedstoneLampBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedstoneLampBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneLampBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneLampBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RedstoneLampBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedstoneLampBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/ ()V net/minecraft/world/level/block/RedstoneTorchBlock/ ()V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedstoneTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneTorchBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneTorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_55679_ (Lnet/minecraft/world/level/BlockGetter;)Ljava/util/List; net/minecraft/world/level/block/RedstoneTorchBlock/lambda$isToggledTooFrequently$0 (Lnet/minecraft/world/level/BlockGetter;)Ljava/util/List; +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_55684_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/block/RedstoneTorchBlock/isToggledTooFrequently (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedstoneTorchBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedstoneTorchBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedstoneTorchBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedstoneTorchBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RedstoneTorchBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6918_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedstoneTorchBlock/hasNeighborSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedstoneTorchBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedstoneTorchBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/ (Lnet/minecraft/core/BlockPos;J)V net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/ (Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/ ()V net/minecraft/world/level/block/RedstoneWallTorchBlock/ ()V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedstoneWallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneWallTorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RedstoneWallTorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedstoneWallTorchBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6918_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedstoneWallTorchBlock/hasNeighborSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/RedstoneWallTorchBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RedstoneWallTorchBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedstoneWallTorchBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RenderShape/ ()V net/minecraft/world/level/block/RenderShape/ ()V +MD: net/minecraft/world/level/block/RenderShape/ (Ljava/lang/String;I)V net/minecraft/world/level/block/RenderShape/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/RenderShape/m_154329_ ()[Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/RenderShape/$values ()[Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/RenderShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/RenderShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/RenderShape/values ()[Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/RenderShape/values ()[Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/RepeaterBlock/ ()V net/minecraft/world/level/block/RepeaterBlock/ ()V +MD: net/minecraft/world/level/block/RepeaterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RepeaterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RepeaterBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RepeaterBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RepeaterBlock/m_276978_ ()Z net/minecraft/world/level/block/RepeaterBlock/sideInputDiodesOnly ()Z +MD: net/minecraft/world/level/block/RepeaterBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RepeaterBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RepeaterBlock/m_6112_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/RepeaterBlock/getDelay (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/RepeaterBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RepeaterBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RepeaterBlock/m_7346_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RepeaterBlock/isLocked (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RepeaterBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RepeaterBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RepeaterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RepeaterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/ ()V net/minecraft/world/level/block/RespawnAnchorBlock/ ()V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RespawnAnchorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RespawnAnchorBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_269573_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RespawnAnchorBlock/charge (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55839_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/level/block/RespawnAnchorBlock/findStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55843_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; net/minecraft/world/level/block/RespawnAnchorBlock/findStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55848_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/RespawnAnchorBlock/isRespawnFuel (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55850_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/RespawnAnchorBlock/canSetSpawn (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55852_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RespawnAnchorBlock/lambda$explode$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55861_ (Lnet/minecraft/world/level/block/state/BlockState;I)I net/minecraft/world/level/block/RespawnAnchorBlock/getScaledChargeLevel (Lnet/minecraft/world/level/block/state/BlockState;I)I +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55887_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/RespawnAnchorBlock/isWaterThatWouldFlow (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55890_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RespawnAnchorBlock/explode (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55894_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RespawnAnchorBlock/canBeCharged (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RespawnAnchorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/RespawnAnchorBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RespawnAnchorBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/RespawnAnchorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RespawnAnchorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock$1/ (Lnet/minecraft/world/level/block/RespawnAnchorBlock;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RespawnAnchorBlock$1/ (Lnet/minecraft/world/level/block/RespawnAnchorBlock;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock$1/m_6617_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; net/minecraft/world/level/block/RespawnAnchorBlock$1/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/RodBlock/ ()V net/minecraft/world/level/block/RodBlock/ ()V +MD: net/minecraft/world/level/block/RodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RodBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RodBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RodBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RodBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RodBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RodBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RodBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/RodBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/RodBlock$1/ ()V net/minecraft/world/level/block/RodBlock$1/ ()V +MD: net/minecraft/world/level/block/RootedDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RootedDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RootedDirtBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RootedDirtBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RootedDirtBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RootedDirtBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RootedDirtBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/RootedDirtBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/RootsBlock/ ()V net/minecraft/world/level/block/RootsBlock/ ()V +MD: net/minecraft/world/level/block/RootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RootsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RootsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RootsBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RootsBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RotatedPillarBlock/ ()V net/minecraft/world/level/block/RotatedPillarBlock/ ()V +MD: net/minecraft/world/level/block/RotatedPillarBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RotatedPillarBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_154376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RotatedPillarBlock/rotatePillar (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RotatedPillarBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RotatedPillarBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RotatedPillarBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RotatedPillarBlock$1/ ()V net/minecraft/world/level/block/RotatedPillarBlock$1/ ()V +MD: net/minecraft/world/level/block/Rotation/ ()V net/minecraft/world/level/block/Rotation/ ()V +MD: net/minecraft/world/level/block/Rotation/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V net/minecraft/world/level/block/Rotation/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V +MD: net/minecraft/world/level/block/Rotation/m_154379_ ()[Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/$values ()[Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/m_221990_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/m_221992_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/block/Rotation/getShuffled (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/block/Rotation/m_55948_ ()Lcom/mojang/math/OctahedralGroup; net/minecraft/world/level/block/Rotation/rotation ()Lcom/mojang/math/OctahedralGroup; +MD: net/minecraft/world/level/block/Rotation/m_55949_ (II)I net/minecraft/world/level/block/Rotation/rotate (II)I +MD: net/minecraft/world/level/block/Rotation/m_55952_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/getRotated (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/m_55954_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/Rotation/rotate (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/Rotation/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/Rotation/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/values ()[Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/values ()[Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation$1/ ()V net/minecraft/world/level/block/Rotation$1/ ()V +MD: net/minecraft/world/level/block/SandBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SandBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SandBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/SandBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/SaplingBlock/ ()V net/minecraft/world/level/block/SaplingBlock/ ()V +MD: net/minecraft/world/level/block/SaplingBlock/ (Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SaplingBlock/ (Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SaplingBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SaplingBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SaplingBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SaplingBlock/m_222000_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SaplingBlock/advanceTree (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SaplingBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SaplingBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SaplingBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SaplingBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SaplingBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/ ()V net/minecraft/world/level/block/ScaffoldingBlock/ ()V +MD: net/minecraft/world/level/block/ScaffoldingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ScaffoldingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ScaffoldingBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ScaffoldingBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_56024_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ScaffoldingBlock/getDistance (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_56027_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/level/block/ScaffoldingBlock/isBottom (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ScaffoldingBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ScaffoldingBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ScaffoldingBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ScaffoldingBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ScaffoldingBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/ScaffoldingBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ScaffoldingBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ScaffoldingBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ScaffoldingBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkBehaviour/ ()V net/minecraft/world/level/block/SculkBehaviour/ ()V +MD: net/minecraft/world/level/block/SculkBehaviour/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkBehaviour/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkBehaviour/m_213670_ (I)I net/minecraft/world/level/block/SculkBehaviour/updateDecayDelay (I)I +MD: net/minecraft/world/level/block/SculkBehaviour/m_213805_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkBehaviour/onDischarged (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkBehaviour/m_213999_ ()Z net/minecraft/world/level/block/SculkBehaviour/canChangeBlockStateOnSpread ()Z +MD: net/minecraft/world/level/block/SculkBehaviour/m_214094_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z net/minecraft/world/level/block/SculkBehaviour/attemptSpreadVein (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z +MD: net/minecraft/world/level/block/SculkBehaviour/m_222025_ ()B net/minecraft/world/level/block/SculkBehaviour/getSculkSpreadDelay ()B +MD: net/minecraft/world/level/block/SculkBehaviour/m_222030_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/SculkBehaviour/depositCharge (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/SculkBehaviour$1/ ()V net/minecraft/world/level/block/SculkBehaviour$1/ ()V +MD: net/minecraft/world/level/block/SculkBehaviour$1/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkBehaviour$1/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkBehaviour$1/m_213670_ (I)I net/minecraft/world/level/block/SculkBehaviour$1/updateDecayDelay (I)I +MD: net/minecraft/world/level/block/SculkBehaviour$1/m_214094_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z net/minecraft/world/level/block/SculkBehaviour$1/attemptSpreadVein (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z +MD: net/minecraft/world/level/block/SculkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkBlock/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkBlock/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkBlock/m_213999_ ()Z net/minecraft/world/level/block/SculkBlock/canChangeBlockStateOnSpread ()Z +MD: net/minecraft/world/level/block/SculkBlock/m_222064_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkBlock/canPlaceGrowth (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkBlock/m_222067_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkBlock/getRandomGrowthState (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkBlock/m_222079_ (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/block/SculkBlock/getDecayPenalty (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/block/SculkCatalystBlock/ ()V net/minecraft/world/level/block/SculkCatalystBlock/ ()V +MD: net/minecraft/world/level/block/SculkCatalystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkCatalystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SculkCatalystBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SculkCatalystBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SculkCatalystBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkCatalystBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SculkCatalystBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkCatalystBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/ ()V net/minecraft/world/level/block/SculkSensorBlock/ ()V +MD: net/minecraft/world/level/block/SculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SculkSensorBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SculkSensorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SculkSensorBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_154407_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SculkSensorBlock/deactivate (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_154487_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/SculkSensorBlock/getPhase (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_154489_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/canActivate (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SculkSensorBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkSensorBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkSensorBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_276749_ ([F)V net/minecraft/world/level/block/SculkSensorBlock/lambda$static$0 ([F)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_276869_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SculkSensorBlock/updateNeighbours (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_277033_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/SculkSensorBlock/activate (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_277083_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/SculkSensorBlock/tryResonateVibration (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_278716_ ()I net/minecraft/world/level/block/SculkSensorBlock/getActiveTicks ()I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_279962_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;)V net/minecraft/world/level/block/SculkSensorBlock/lambda$getTicker$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkSensorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SculkSensorBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SculkSensorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/SculkSensorBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/SculkSensorBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/SculkSensorBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SculkSensorBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SculkSensorBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SculkSensorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkSensorBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SculkSensorBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkSensorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/ ()V net/minecraft/world/level/block/SculkShriekerBlock/ ()V +MD: net/minecraft/world/level/block/SculkShriekerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkShriekerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SculkShriekerBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SculkShriekerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SculkShriekerBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SculkShriekerBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkShriekerBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_222160_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$stepOn$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_222167_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$tick$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_222215_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$onRemove$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_279963_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$getTicker$3 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkShriekerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SculkShriekerBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SculkShriekerBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SculkShriekerBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkShriekerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SculkShriekerBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkShriekerBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkShriekerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SculkShriekerBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SculkSpreader/ ()V net/minecraft/world/level/block/SculkSpreader/ ()V +MD: net/minecraft/world/level/block/SculkSpreader/ (ZLnet/minecraft/tags/TagKey;IIII)V net/minecraft/world/level/block/SculkSpreader/ (ZLnet/minecraft/tags/TagKey;IIII)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222254_ ()Lnet/minecraft/world/level/block/SculkSpreader; net/minecraft/world/level/block/SculkSpreader/createLevelSpreader ()Lnet/minecraft/world/level/block/SculkSpreader; +MD: net/minecraft/world/level/block/SculkSpreader/m_222255_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)V net/minecraft/world/level/block/SculkSpreader/updateCursors (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222260_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V net/minecraft/world/level/block/SculkSpreader/addCursor (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222262_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/core/BlockPos;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/block/SculkSpreader/lambda$updateCursors$2 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/core/BlockPos;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/block/SculkSpreader/m_222266_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/SculkSpreader/addCursors (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222269_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/SculkSpreader/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222271_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/SculkSpreader/lambda$save$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222274_ ()Lnet/minecraft/world/level/block/SculkSpreader; net/minecraft/world/level/block/SculkSpreader/createWorldGenSpreader ()Lnet/minecraft/world/level/block/SculkSpreader; +MD: net/minecraft/world/level/block/SculkSpreader/m_222275_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/SculkSpreader/save (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222277_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/block/SculkSpreader/replaceableBlocks ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/block/SculkSpreader/m_222278_ ()I net/minecraft/world/level/block/SculkSpreader/growthSpawnCost ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222279_ ()I net/minecraft/world/level/block/SculkSpreader/noGrowthRadius ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222280_ ()I net/minecraft/world/level/block/SculkSpreader/chargeDecayRate ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222281_ ()I net/minecraft/world/level/block/SculkSpreader/additionalDecayRate ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222282_ ()Z net/minecraft/world/level/block/SculkSpreader/isWorldGeneration ()Z +MD: net/minecraft/world/level/block/SculkSpreader/m_222283_ ()Ljava/util/List; net/minecraft/world/level/block/SculkSpreader/getCursors ()Ljava/util/List; +MD: net/minecraft/world/level/block/SculkSpreader/m_222284_ ()V net/minecraft/world/level/block/SculkSpreader/clear ()V +MD: net/minecraft/world/level/block/SculkSpreader/m_279964_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; net/minecraft/world/level/block/SculkSpreader/lambda$save$1 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ ()V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ ()V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;IIILjava/util/Optional;)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;IIILjava/util/Optional;)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222304_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222305_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getRandomizedNonCornerNeighbourOffsets (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222307_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getValidMovementPos (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222311_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/update (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222317_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/isMovementUnobstructed (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222321_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/isUnobstructed (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222325_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/shouldUpdate (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222329_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222331_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/mergeWith (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222333_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SculkBehaviour; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getBlockBehaviour (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SculkBehaviour; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222335_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$0 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222337_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$1 (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222339_ (Ljava/util/List;)Ljava/util/Set; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$2 (Ljava/util/List;)Ljava/util/Set; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222341_ ()I net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getCharge ()I +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222342_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/util/Optional; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$4 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222344_ ()I net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getDecayDelay ()I +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222345_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$3 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222347_ ()Ljava/util/Set; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getFacingData ()Ljava/util/Set; +MD: net/minecraft/world/level/block/SculkVeinBlock/ ()V net/minecraft/world/level/block/SculkVeinBlock/ ()V +MD: net/minecraft/world/level/block/SculkVeinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkVeinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkVeinBlock/m_213612_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/SculkVeinBlock/getSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkVeinBlock/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkVeinBlock/m_213805_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkVeinBlock/onDischarged (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222354_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkVeinBlock/hasSubstrateAccess (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222363_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Z net/minecraft/world/level/block/SculkVeinBlock/regrow (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222375_ (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/SculkVeinBlock/attemptPlaceSculk (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222395_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/SculkVeinBlock/getSameSpaceSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SculkVeinBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SculkVeinBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkVeinBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkVeinBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/ (Lnet/minecraft/world/level/block/SculkVeinBlock;[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType;)V net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/ (Lnet/minecraft/world/level/block/SculkVeinBlock;[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType;)V +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/m_213938_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/stateCanBeReplaced (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/m_214107_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/isOtherBlockValidAsSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/m_214109_ ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/getSpreadTypes ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/SeaPickleBlock/ ()V net/minecraft/world/level/block/SeaPickleBlock/ ()V +MD: net/minecraft/world/level/block/SeaPickleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SeaPickleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SeaPickleBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SeaPickleBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SeaPickleBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SeaPickleBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeaPickleBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_56132_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SeaPickleBlock/isDead (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SeaPickleBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SeaPickleBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SeaPickleBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SeaPickleBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SeaPickleBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SeaPickleBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeaPickleBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SeaPickleBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SeaPickleBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SeagrassBlock/ ()V net/minecraft/world/level/block/SeagrassBlock/ ()V +MD: net/minecraft/world/level/block/SeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SeagrassBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SeagrassBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SeagrassBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SeagrassBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeagrassBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SeagrassBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SeagrassBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SeagrassBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SeagrassBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SeagrassBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/SeagrassBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SeagrassBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/SeagrassBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SeagrassBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeagrassBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/ ()V net/minecraft/world/level/block/ShulkerBoxBlock/ ()V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ShulkerBoxBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ShulkerBoxBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/ShulkerBoxBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_154546_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)Z net/minecraft/world/level/block/ShulkerBoxBlock/canOpen (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)Z +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_187444_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V net/minecraft/world/level/block/ShulkerBoxBlock/lambda$getCloneItemStack$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_257328_ (Ljava/util/EnumMap;)V net/minecraft/world/level/block/ShulkerBoxBlock/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/ShulkerBoxBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ShulkerBoxBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56190_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/ShulkerBoxBlock/getBlockByColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56216_ (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/ShulkerBoxBlock/lambda$getDrops$1 (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56250_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/ShulkerBoxBlock/getColoredItemStack (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56252_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/ShulkerBoxBlock/getColorFromItem (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56261_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/ShulkerBoxBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56262_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/ShulkerBoxBlock/getColorFromBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/ShulkerBoxBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/ShulkerBoxBlock/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ShulkerBoxBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ShulkerBoxBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ShulkerBoxBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ShulkerBoxBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ShulkerBoxBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ShulkerBoxBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ShulkerBoxBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ShulkerBoxBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/ShulkerBoxBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ShulkerBoxBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ShulkerBoxBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ShulkerBoxBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ShulkerBoxBlock$1/ ()V net/minecraft/world/level/block/ShulkerBoxBlock$1/ ()V +MD: net/minecraft/world/level/block/SignBlock/ ()V net/minecraft/world/level/block/SignBlock/ ()V +MD: net/minecraft/world/level/block/SignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/SignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/SignBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SignBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SignBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SignBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SignBlock/m_247329_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/world/level/block/SignBlock/getWoodType (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/world/level/block/SignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/SignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/SignBlock/m_276926_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/world/level/block/SignBlock/openTextEdit (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/world/level/block/SignBlock/m_277189_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)Z net/minecraft/world/level/block/SignBlock/otherPlayerIsEditingSign (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)Z +MD: net/minecraft/world/level/block/SignBlock/m_278172_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/SignBlock/getSignHitboxCenterPosition (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/SignBlock/m_278656_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)Z net/minecraft/world/level/block/SignBlock/hasEditableText (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)Z +MD: net/minecraft/world/level/block/SignBlock/m_278727_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/world/level/block/SignBlock/lambda$hasEditableText$0 (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/world/level/block/SignBlock/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SignBlock/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SignBlock/m_56297_ ()Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/world/level/block/SignBlock/type ()Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/world/level/block/SignBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SignBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SignBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/SignBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/SignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/SimpleWaterloggedBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/SimpleWaterloggedBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/SimpleWaterloggedBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/SimpleWaterloggedBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/SkullBlock/ ()V net/minecraft/world/level/block/SkullBlock/ ()V +MD: net/minecraft/world/level/block/SkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SkullBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SkullBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SkullBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SkullBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SkullBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SkullBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SkullBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SkullBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SkullBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SkullBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SkullBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SkullBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SkullBlock$Types/ ()V net/minecraft/world/level/block/SkullBlock$Types/ ()V +MD: net/minecraft/world/level/block/SkullBlock$Types/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SkullBlock$Types/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SkullBlock$Types/m_154565_ ()[Lnet/minecraft/world/level/block/SkullBlock$Types; net/minecraft/world/level/block/SkullBlock$Types/$values ()[Lnet/minecraft/world/level/block/SkullBlock$Types; +MD: net/minecraft/world/level/block/SkullBlock$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SkullBlock$Types; net/minecraft/world/level/block/SkullBlock$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SkullBlock$Types; +MD: net/minecraft/world/level/block/SkullBlock$Types/values ()[Lnet/minecraft/world/level/block/SkullBlock$Types; net/minecraft/world/level/block/SkullBlock$Types/values ()[Lnet/minecraft/world/level/block/SkullBlock$Types; +MD: net/minecraft/world/level/block/SlabBlock/ ()V net/minecraft/world/level/block/SlabBlock/ ()V +MD: net/minecraft/world/level/block/SlabBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SlabBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SlabBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SlabBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SlabBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SlabBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SlabBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SlabBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SlabBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/SlabBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SlabBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SlabBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/SlabBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SlabBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SlabBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SlabBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SlabBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SlabBlock$1/ ()V net/minecraft/world/level/block/SlabBlock$1/ ()V +MD: net/minecraft/world/level/block/SlimeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SlimeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SlimeBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SlimeBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SlimeBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/SlimeBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/SlimeBlock/m_5548_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SlimeBlock/updateEntityAfterFallOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SlimeBlock/m_56403_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SlimeBlock/bounceUp (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/ ()V net/minecraft/world/level/block/SmallDripleafBlock/ ()V +MD: net/minecraft/world/level/block/SmallDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SmallDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_142627_ ()F net/minecraft/world/level/block/SmallDripleafBlock/getMaxVerticalOffset ()F +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SmallDripleafBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SmallDripleafBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SmallDripleafBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SmallDripleafBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SmallDripleafBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/SmallDripleafBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SmallDripleafBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SmallDripleafBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SmallDripleafBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SmithingTableBlock/ ()V net/minecraft/world/level/block/SmithingTableBlock/ ()V +MD: net/minecraft/world/level/block/SmithingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SmithingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SmithingTableBlock/m_276750_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/SmithingTableBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/SmithingTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/SmithingTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/SmithingTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/SmithingTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/SmokerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SmokerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SmokerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SmokerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SmokerBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SmokerBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SmokerBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SmokerBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SmokerBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/SmokerBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/SnifferEggBlock/ ()V net/minecraft/world/level/block/SnifferEggBlock/ ()V +MD: net/minecraft/world/level/block/SnifferEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SnifferEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SnifferEggBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SnifferEggBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SnifferEggBlock/m_276851_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SnifferEggBlock/isReadyToHatch (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SnifferEggBlock/m_277163_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SnifferEggBlock/hatchBoost (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SnifferEggBlock/m_278758_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/SnifferEggBlock/getHatchLevel (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/SnifferEggBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnifferEggBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnifferEggBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SnifferEggBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SnifferEggBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SnifferEggBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SnifferEggBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SnifferEggBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/ ()V net/minecraft/world/level/block/SnowLayerBlock/ ()V +MD: net/minecraft/world/level/block/SnowLayerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SnowLayerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SnowLayerBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowLayerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SnowLayerBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SnowLayerBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowLayerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/SnowLayerBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SnowLayerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SnowLayerBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SnowLayerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock$1/ ()V net/minecraft/world/level/block/SnowLayerBlock$1/ ()V +MD: net/minecraft/world/level/block/SnowyDirtBlock/ ()V net/minecraft/world/level/block/SnowyDirtBlock/ ()V +MD: net/minecraft/world/level/block/SnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_154648_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SnowyDirtBlock/isSnowySetting (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowyDirtBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowyDirtBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SnowyDirtBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SoulFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SoulFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SoulFireBlock/m_154650_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SoulFireBlock/canSurviveOnBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SoulFireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SoulFireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SoulFireBlock/m_7599_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SoulFireBlock/canBurn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SoulFireBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SoulFireBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SoulSandBlock/ ()V net/minecraft/world/level/block/SoulSandBlock/ ()V +MD: net/minecraft/world/level/block/SoulSandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SoulSandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SoulSandBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SoulSandBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SoulSandBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SoulSandBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SoulSandBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SoulSandBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SoulSandBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SoulSandBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SoulSandBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SoulSandBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SoulSandBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SoulSandBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SoulSandBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/SoulSandBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/SoulSandBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SoulSandBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SoundType/ ()V net/minecraft/world/level/block/SoundType/ ()V +MD: net/minecraft/world/level/block/SoundType/ (FFLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/SoundType/ (FFLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/SoundType/m_56773_ ()F net/minecraft/world/level/block/SoundType/getVolume ()F +MD: net/minecraft/world/level/block/SoundType/m_56774_ ()F net/minecraft/world/level/block/SoundType/getPitch ()F +MD: net/minecraft/world/level/block/SoundType/m_56775_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getBreakSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56776_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56777_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getPlaceSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56778_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getHitSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56779_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getFallSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SpawnerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SpawnerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SpawnerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SpawnerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SpawnerBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SpawnerBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SpawnerBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SpawnerBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SpawnerBlock/m_254931_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/level/block/SpawnerBlock/getSpawnEntityDisplayName (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/SpawnerBlock/m_255429_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/SpawnerBlock/lambda$getSpawnEntityDisplayName$0 (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/SpawnerBlock/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/SpawnerBlock/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/SpawnerBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SpawnerBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SpongeBlock/ ()V net/minecraft/world/level/block/SpongeBlock/ ()V +MD: net/minecraft/world/level/block/SpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SpongeBlock/m_277124_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/SpongeBlock/lambda$removeWaterBreadthFirstSearch$0 (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/SpongeBlock/m_278593_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpongeBlock/lambda$removeWaterBreadthFirstSearch$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpongeBlock/m_56797_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/SpongeBlock/tryAbsorbWater (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/SpongeBlock/m_56807_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpongeBlock/removeWaterBreadthFirstSearch (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpongeBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SpongeBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SpongeBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/SpongeBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/SporeBlossomBlock/ ()V net/minecraft/world/level/block/SporeBlossomBlock/ ()V +MD: net/minecraft/world/level/block/SporeBlossomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SporeBlossomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SporeBlossomBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SporeBlossomBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SporeBlossomBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SporeBlossomBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SpreadingSnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SpreadingSnowyDirtBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/m_56823_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpreadingSnowyDirtBlock/canBeGrass (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/m_56827_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpreadingSnowyDirtBlock/canPropagate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/StainedGlassBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StainedGlassBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StainedGlassBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/StainedGlassBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/StainedGlassPaneBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StainedGlassPaneBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StainedGlassPaneBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/StainedGlassPaneBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/StairBlock/ ()V net/minecraft/world/level/block/StairBlock/ ()V +MD: net/minecraft/world/level/block/StairBlock/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StairBlock/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StairBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/StairBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/StairBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StairBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StairBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StairBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StairBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StairBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StairBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_56864_ (ILnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/makeStairShape (ILnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56933_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/makeShapes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56939_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;I)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/lambda$makeShapes$0 (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;I)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56948_ (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/lambda$makeShapes$1 (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56970_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/StairBlock/canTakeShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/StairBlock/m_56976_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/StairBlock/getStairsShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/StairBlock/m_56980_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StairBlock/isStairs (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StairBlock/m_56982_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/StairBlock/getShapeIndex (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/StairBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/StairBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/StairBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/StairBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/StairBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/StairBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/StairBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StairBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StairBlock/m_6786_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/StairBlock/destroy (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/StairBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/StairBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/StairBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/StairBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/StairBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_7325_ ()F net/minecraft/world/level/block/StairBlock/getExplosionResistance ()F +MD: net/minecraft/world/level/block/StairBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/StairBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/StairBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_7592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V net/minecraft/world/level/block/StairBlock/wasExploded (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V +MD: net/minecraft/world/level/block/StairBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StairBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StairBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StairBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StairBlock$1/ ()V net/minecraft/world/level/block/StairBlock$1/ ()V +MD: net/minecraft/world/level/block/StandingSignBlock/ ()V net/minecraft/world/level/block/StandingSignBlock/ ()V +MD: net/minecraft/world/level/block/StandingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/StandingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/StandingSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/StandingSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/StandingSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/StandingSignBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/StandingSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StandingSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StemBlock/ ()V net/minecraft/world/level/block/StemBlock/ ()V +MD: net/minecraft/world/level/block/StemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StemBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StemBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StemBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/StemBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/StemBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StemBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StemBlock/m_57056_ ()Lnet/minecraft/world/level/block/StemGrownBlock; net/minecraft/world/level/block/StemBlock/getFruit ()Lnet/minecraft/world/level/block/StemGrownBlock; +MD: net/minecraft/world/level/block/StemBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StemBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StemBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/StemBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/StemBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/StemBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/StemBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/StemBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/StemBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StemBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StemGrownBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StemGrownBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StemGrownBlock/m_7161_ ()Lnet/minecraft/world/level/block/StemBlock; net/minecraft/world/level/block/StemGrownBlock/getStem ()Lnet/minecraft/world/level/block/StemBlock; +MD: net/minecraft/world/level/block/StemGrownBlock/m_7810_ ()Lnet/minecraft/world/level/block/AttachedStemBlock; net/minecraft/world/level/block/StemGrownBlock/getAttachedStem ()Lnet/minecraft/world/level/block/AttachedStemBlock; +MD: net/minecraft/world/level/block/StonecutterBlock/ ()V net/minecraft/world/level/block/StonecutterBlock/ ()V +MD: net/minecraft/world/level/block/StonecutterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StonecutterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StonecutterBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StonecutterBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StonecutterBlock/m_57071_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/StonecutterBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/StonecutterBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StonecutterBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StonecutterBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/StonecutterBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/StonecutterBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StonecutterBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StonecutterBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StonecutterBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StonecutterBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/StonecutterBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/StonecutterBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/StonecutterBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/StonecutterBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/StonecutterBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/StonecutterBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StonecutterBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StonecutterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StonecutterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StructureBlock/ ()V net/minecraft/world/level/block/StructureBlock/ ()V +MD: net/minecraft/world/level/block/StructureBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StructureBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StructureBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/StructureBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/StructureBlock/m_57114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/world/level/block/StructureBlock/trigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/world/level/block/StructureBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/StructureBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/StructureBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/StructureBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/StructureBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/StructureBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/StructureBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/StructureBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/StructureBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StructureBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StructureBlock$1/ ()V net/minecraft/world/level/block/StructureBlock$1/ ()V +MD: net/minecraft/world/level/block/StructureVoidBlock/ ()V net/minecraft/world/level/block/StructureVoidBlock/ ()V +MD: net/minecraft/world/level/block/StructureVoidBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StructureVoidBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StructureVoidBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StructureVoidBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StructureVoidBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/StructureVoidBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/StructureVoidBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/StructureVoidBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/SugarCaneBlock/ ()V net/minecraft/world/level/block/SugarCaneBlock/ ()V +MD: net/minecraft/world/level/block/SugarCaneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SugarCaneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SugarCaneBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SugarCaneBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SugarCaneBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SugarCaneBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SugarCaneBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SugarCaneBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SugarCaneBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SugarCaneBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SugarCaneBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SugarCaneBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SugarCaneBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SugarCaneBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SupportType/ ()V net/minecraft/world/level/block/SupportType/ ()V +MD: net/minecraft/world/level/block/SupportType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType/m_154736_ ()[Lnet/minecraft/world/level/block/SupportType; net/minecraft/world/level/block/SupportType/$values ()[Lnet/minecraft/world/level/block/SupportType; +MD: net/minecraft/world/level/block/SupportType/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SupportType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SupportType; net/minecraft/world/level/block/SupportType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SupportType; +MD: net/minecraft/world/level/block/SupportType/values ()[Lnet/minecraft/world/level/block/SupportType; net/minecraft/world/level/block/SupportType/values ()[Lnet/minecraft/world/level/block/SupportType; +MD: net/minecraft/world/level/block/SupportType$1/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType$1/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType$1/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SupportType$2/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType$2/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType$2/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SupportType$3/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType$3/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType$3/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_257904_ ()Ljava/util/List; net/minecraft/world/level/block/SuspiciousEffectHolder/getAllEffectHolders ()Ljava/util/List; +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_257980_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/block/SuspiciousEffectHolder; net/minecraft/world/level/block/SuspiciousEffectHolder/tryGet (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/block/SuspiciousEffectHolder; +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_53521_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/level/block/SuspiciousEffectHolder/getSuspiciousEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_53522_ ()I net/minecraft/world/level/block/SuspiciousEffectHolder/getEffectDuration ()I +MD: net/minecraft/world/level/block/SweetBerryBushBlock/ ()V net/minecraft/world/level/block/SweetBerryBushBlock/ ()V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SweetBerryBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SweetBerryBushBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SweetBerryBushBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SweetBerryBushBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SweetBerryBushBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/SweetBerryBushBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SweetBerryBushBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SweetBerryBushBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/SweetBerryBushBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SweetBerryBushBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SweetBerryBushBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TallFlowerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TallFlowerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TallFlowerBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TallFlowerBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TallFlowerBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TallFlowerBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TallFlowerBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/TallFlowerBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/TallGrassBlock/ ()V net/minecraft/world/level/block/TallGrassBlock/ ()V +MD: net/minecraft/world/level/block/TallGrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TallGrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TallGrassBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TallGrassBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TallGrassBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TallGrassBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TallGrassBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TallGrassBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TallGrassBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/TallGrassBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/ ()V net/minecraft/world/level/block/TallSeagrassBlock/ ()V +MD: net/minecraft/world/level/block/TallSeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TallSeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TallSeagrassBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/TallSeagrassBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TallSeagrassBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/TallSeagrassBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TallSeagrassBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/TallSeagrassBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/TallSeagrassBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TallSeagrassBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TargetBlock/ ()V net/minecraft/world/level/block/TargetBlock/ ()V +MD: net/minecraft/world/level/block/TargetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TargetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TargetBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TargetBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TargetBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/TargetBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/TargetBlock/m_57385_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/TargetBlock/setOutputPower (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/TargetBlock/m_57391_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/Entity;)I net/minecraft/world/level/block/TargetBlock/updateRedstoneOutput (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/world/level/block/TargetBlock/m_57408_ (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/phys/Vec3;)I net/minecraft/world/level/block/TargetBlock/getRedstoneStrength (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/phys/Vec3;)I +MD: net/minecraft/world/level/block/TargetBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TargetBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TargetBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TargetBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TargetBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TargetBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TargetBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TargetBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TintedGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TintedGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TintedGlassBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TintedGlassBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TintedGlassBlock/m_7753_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/TintedGlassBlock/getLightBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/TntBlock/ ()V net/minecraft/world/level/block/TntBlock/ ()V +MD: net/minecraft/world/level/block/TntBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TntBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TntBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/TntBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/TntBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/TntBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/TntBlock/m_57423_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/TntBlock/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/TntBlock/m_57433_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/TntBlock/explode (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/TntBlock/m_57436_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/TntBlock/explode (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/TntBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/TntBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/TntBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TntBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TntBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/TntBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/TntBlock/m_6903_ (Lnet/minecraft/world/level/Explosion;)Z net/minecraft/world/level/block/TntBlock/dropFromExplosion (Lnet/minecraft/world/level/Explosion;)Z +MD: net/minecraft/world/level/block/TntBlock/m_7592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V net/minecraft/world/level/block/TntBlock/wasExploded (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V +MD: net/minecraft/world/level/block/TntBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TntBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TorchBlock/ ()V net/minecraft/world/level/block/TorchBlock/ ()V +MD: net/minecraft/world/level/block/TorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/level/block/TorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/level/block/TorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TorchBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TorchBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TorchBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TorchBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TorchBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TorchflowerCropBlock/ ()V net/minecraft/world/level/block/TorchflowerCropBlock/ ()V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TorchflowerCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TorchflowerCropBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_52289_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TorchflowerCropBlock/getStateForAge (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TorchflowerCropBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/TorchflowerCropBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7125_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/level/block/TorchflowerCropBlock/getBonemealAgeIncrease (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7419_ ()I net/minecraft/world/level/block/TorchflowerCropBlock/getMaxAge ()I +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TorchflowerCropBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7959_ ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/TorchflowerCropBlock/getAgeProperty ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/TrapDoorBlock/ ()V net/minecraft/world/level/block/TrapDoorBlock/ ()V +MD: net/minecraft/world/level/block/TrapDoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/TrapDoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/TrapDoorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TrapDoorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_57527_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/TrapDoorBlock/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/TrapDoorBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/TrapDoorBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TrapDoorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/TrapDoorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/TrapDoorBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/TrapDoorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/TrapDoorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/TrapDoorBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TrapDoorBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TrapDoorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TrapDoorBlock$1/ ()V net/minecraft/world/level/block/TrapDoorBlock$1/ ()V +MD: net/minecraft/world/level/block/TrappedChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TrappedChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TrappedChestBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/TrappedChestBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/TrappedChestBlock/m_57589_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/TrappedChestBlock/lambda$new$0 ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/TrappedChestBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TrappedChestBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TrappedChestBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TrappedChestBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TrappedChestBlock/m_7699_ ()Lnet/minecraft/stats/Stat; net/minecraft/world/level/block/TrappedChestBlock/getOpenChestStat ()Lnet/minecraft/stats/Stat; +MD: net/minecraft/world/level/block/TrappedChestBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TrappedChestBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TripWireBlock/ ()V net/minecraft/world/level/block/TripWireBlock/ ()V +MD: net/minecraft/world/level/block/TripWireBlock/ (Lnet/minecraft/world/level/block/TripWireHookBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TripWireBlock/ (Lnet/minecraft/world/level/block/TripWireHookBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TripWireBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/TripWireBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_57607_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/TripWireBlock/checkPressed (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_57610_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TripWireBlock/updateSource (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_57641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/TripWireBlock/shouldConnectTo (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/TripWireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TripWireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TripWireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TripWireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TripWireBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TripWireBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TripWireBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/TripWireBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TripWireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TripWireBlock$1/ ()V net/minecraft/world/level/block/TripWireBlock$1/ ()V +MD: net/minecraft/world/level/block/TripWireHookBlock/ ()V net/minecraft/world/level/block/TripWireHookBlock/ ()V +MD: net/minecraft/world/level/block/TripWireHookBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TripWireHookBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TripWireHookBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_222602_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZZZ)V net/minecraft/world/level/block/TripWireHookBlock/emitState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZZZ)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_57685_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TripWireHookBlock/calculateState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_57693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/TripWireHookBlock/notifyNeighbors (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TripWireHookBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TripWireHookBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TripWireHookBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/TripWireHookBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TripWireHookBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TripWireHookBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TripWireHookBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TripWireHookBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TripWireHookBlock$1/ ()V net/minecraft/world/level/block/TripWireHookBlock$1/ ()V +MD: net/minecraft/world/level/block/TurtleEggBlock/ ()V net/minecraft/world/level/block/TurtleEggBlock/ ()V +MD: net/minecraft/world/level/block/TurtleEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TurtleEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/TurtleEggBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/TurtleEggBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_154850_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/level/block/TurtleEggBlock/destroyEgg (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TurtleEggBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TurtleEggBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57762_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TurtleEggBlock/onSand (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57765_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/TurtleEggBlock/shouldUpdateHatchLevel (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57767_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/TurtleEggBlock/canDestroyEgg (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57791_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TurtleEggBlock/decreaseEggs (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57800_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TurtleEggBlock/isSand (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TurtleEggBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TurtleEggBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/TurtleEggBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TurtleEggBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/TurtleEggBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TurtleEggBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TwistingVinesBlock/ ()V net/minecraft/world/level/block/TwistingVinesBlock/ ()V +MD: net/minecraft/world/level/block/TwistingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TwistingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TwistingVinesBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/TwistingVinesBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/TwistingVinesBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TwistingVinesBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TwistingVinesBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/TwistingVinesBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/TwistingVinesPlantBlock/ ()V net/minecraft/world/level/block/TwistingVinesPlantBlock/ ()V +MD: net/minecraft/world/level/block/TwistingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TwistingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TwistingVinesPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/TwistingVinesPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/VineBlock/ ()V net/minecraft/world/level/block/VineBlock/ ()V +MD: net/minecraft/world/level/block/VineBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/VineBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/VineBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/VineBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/VineBlock/m_222650_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/copyRandomFaces (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_57850_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/VineBlock/canSpread (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57853_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/VineBlock/isAcceptableNeighbour (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57883_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; net/minecraft/world/level/block/VineBlock/getPropertyForFace (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +MD: net/minecraft/world/level/block/VineBlock/m_57885_ (Ljava/util/Map$Entry;)Z net/minecraft/world/level/block/VineBlock/lambda$static$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57887_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/VineBlock/canSupportAtFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57901_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/getUpdatedState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_57905_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/VineBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/VineBlock/m_57907_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/VineBlock/hasFaces (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57909_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/VineBlock/countFaces (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/VineBlock/m_57911_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/VineBlock/hasHorizontalConnection (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/VineBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/VineBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/VineBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/VineBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/VineBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/VineBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/VineBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/VineBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/VineBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/VineBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/VineBlock$1/ ()V net/minecraft/world/level/block/VineBlock$1/ ()V +MD: net/minecraft/world/level/block/WallBannerBlock/ ()V net/minecraft/world/level/block/WallBannerBlock/ ()V +MD: net/minecraft/world/level/block/WallBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WallBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WallBannerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBannerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBannerBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallBannerBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallBannerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallBannerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallBannerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallBannerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallBlock/ ()V net/minecraft/world/level/block/WallBlock/ ()V +MD: net/minecraft/world/level/block/WallBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WallBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WallBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_57965_ (FFFFFF)Ljava/util/Map; net/minecraft/world/level/block/WallBlock/makeShapes (FFFFFF)Ljava/util/Map; +MD: net/minecraft/world/level/block/WallBlock/m_57974_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/topUpdate (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_57979_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZZZ)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/updateShape (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZZZ)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_57988_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/sideUpdate (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_58006_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/block/WallBlock/shouldRaisePost (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58010_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/block/WallBlock/isConnected (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58020_ (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/WallBlock/connectsTo (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58024_ (Lnet/minecraft/world/level/block/state/BlockState;ZZZZLnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/updateSides (Lnet/minecraft/world/level/block/state/BlockState;ZZZZLnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_58033_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/properties/WallSide;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBlock/applyWallShape (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/properties/WallSide;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBlock/m_58038_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/block/WallBlock/isCovered (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58041_ (ZLnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/WallBlock/makeWallState (ZLnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/WallBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/WallBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/WallBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/WallBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/WallBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallBlock$1/ ()V net/minecraft/world/level/block/WallBlock$1/ ()V +MD: net/minecraft/world/level/block/WallHangingSignBlock/ ()V net/minecraft/world/level/block/WallHangingSignBlock/ ()V +MD: net/minecraft/world/level/block/WallHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/WallHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/WallHangingSignBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/WallHangingSignBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_246366_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/WallHangingSignBlock/canAttachTo (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_247551_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallHangingSignBlock/canPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/WallHangingSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_278152_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/WallHangingSignBlock/shouldTryToChainAnotherHangingSign (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_278170_ (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WallHangingSignBlock/isHittingEditableSide (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallHangingSignBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallHangingSignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/WallHangingSignBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/WallHangingSignBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallHangingSignBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallHangingSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallHangingSignBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallHangingSignBlock$1/ ()V net/minecraft/world/level/block/WallHangingSignBlock$1/ ()V +MD: net/minecraft/world/level/block/WallSignBlock/ ()V net/minecraft/world/level/block/WallSignBlock/ ()V +MD: net/minecraft/world/level/block/WallSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/WallSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/WallSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/WallSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/WallSignBlock/m_278172_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/WallSignBlock/getSignHitboxCenterPosition (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/WallSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallSignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallSignBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallSignBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallSignBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallSkullBlock/ ()V net/minecraft/world/level/block/WallSkullBlock/ ()V +MD: net/minecraft/world/level/block/WallSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WallSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WallSkullBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSkullBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSkullBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallSkullBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallSkullBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSkullBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSkullBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSkullBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSkullBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallSkullBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallSkullBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallSkullBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallTorchBlock/ ()V net/minecraft/world/level/block/WallTorchBlock/ ()V +MD: net/minecraft/world/level/block/WallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/level/block/WallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/level/block/WallTorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WallTorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WallTorchBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_58156_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallTorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallTorchBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallTorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallTorchBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallTorchBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallTorchBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallTorchBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallTorchBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallTorchBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WaterlilyBlock/ ()V net/minecraft/world/level/block/WaterlilyBlock/ ()V +MD: net/minecraft/world/level/block/WaterlilyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WaterlilyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WaterlilyBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WaterlilyBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WaterlilyBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WaterlilyBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WaterlilyBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/WaterlilyBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/WeatheringCopper/ ()V net/minecraft/world/level/block/WeatheringCopper/ ()V +MD: net/minecraft/world/level/block/WeatheringCopper/m_142123_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getNext (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_142377_ ()F net/minecraft/world/level/block/WeatheringCopper/getChanceModifier ()F +MD: net/minecraft/world/level/block/WeatheringCopper/m_154890_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getPrevious (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154894_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeatheringCopper/lambda$getNext$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154897_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/WeatheringCopper/getFirst (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154899_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getPrevious (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154901_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeatheringCopper/lambda$getPrevious$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154904_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getNext (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154906_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeatheringCopper/getFirst (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154908_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/level/block/WeatheringCopper/lambda$static$1 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154909_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/level/block/WeatheringCopper/lambda$static$0 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/ ()V net/minecraft/world/level/block/WeatheringCopper$WeatherState/ ()V +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/ (Ljava/lang/String;I)V net/minecraft/world/level/block/WeatheringCopper$WeatherState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/m_154919_ ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopper$WeatherState/$values ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopper$WeatherState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/values ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopper$WeatherState/values ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeatheringCopperFullBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_142297_ ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopperFullBlock/getAge ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/WeatheringCopperFullBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WeatheringCopperFullBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeatheringCopperFullBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeatheringCopperSlabBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_142297_ ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopperSlabBlock/getAge ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/WeatheringCopperSlabBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WeatheringCopperSlabBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeatheringCopperSlabBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeatheringCopperStairBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_142297_ ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopperStairBlock/getAge ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/WeatheringCopperStairBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WeatheringCopperStairBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeatheringCopperStairBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WebBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WebBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WebBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/WebBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/WeepingVinesBlock/ ()V net/minecraft/world/level/block/WeepingVinesBlock/ ()V +MD: net/minecraft/world/level/block/WeepingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeepingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeepingVinesBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/WeepingVinesBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/WeepingVinesBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeepingVinesBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WeepingVinesBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/WeepingVinesBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/WeepingVinesPlantBlock/ ()V net/minecraft/world/level/block/WeepingVinesPlantBlock/ ()V +MD: net/minecraft/world/level/block/WeepingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeepingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeepingVinesPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/WeepingVinesPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/ ()V net/minecraft/world/level/block/WeightedPressurePlateBlock/ ()V +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/WeightedPressurePlateBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_6016_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/WeightedPressurePlateBlock/getSignalForState (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_6693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/WeightedPressurePlateBlock/getSignalStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_7342_ ()I net/minecraft/world/level/block/WeightedPressurePlateBlock/getPressedTime ()I +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_7422_ (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeightedPressurePlateBlock/setSignalForState (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WeightedPressurePlateBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WetSpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WetSpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WetSpongeBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WetSpongeBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WetSpongeBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/WetSpongeBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/WitherRoseBlock/ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WitherRoseBlock/ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WitherRoseBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WitherRoseBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WitherRoseBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WitherRoseBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WitherRoseBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/WitherRoseBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/WitherSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WitherSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WitherSkullBlock/m_284101_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherFull$1 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_284102_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherBase$3 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58255_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V net/minecraft/world/level/block/WitherSkullBlock/checkSpawn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58265_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherBase$2 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58267_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/WitherSkullBlock/canSpawnMob (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58271_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherFull$0 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58273_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/WitherSkullBlock/getOrCreateWitherFull ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58274_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/WitherSkullBlock/getOrCreateWitherBase ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/WitherSkullBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/WitherSkullBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/WitherWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WitherWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WitherWallSkullBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/WitherWallSkullBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/WoolCarpetBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WoolCarpetBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WoolCarpetBlock/m_58309_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/WoolCarpetBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ ()V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/crafting/RecipeType;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/crafting/RecipeType;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_154995_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getRecipesToAwardAndPopExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_154998_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;IF)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/createExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;IF)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155003_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/awardUsedRecipesAndPopExperience (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155005_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canBurn (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155013_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155018_ (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/lambda$getRecipesToAwardAndPopExperience$1 (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_187447_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/lambda$saveAdditional$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_204302_ (Ljava/util/Map;Lnet/minecraft/tags/TagKey;I)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/add (Ljava/util/Map;Lnet/minecraft/tags/TagKey;I)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_222692_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getTotalCookTime (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_266209_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/burn (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58374_ (Ljava/util/Map;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/add (Ljava/util/Map;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58395_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/awardUsedRecipes (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58397_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isNeverAFurnaceFuel (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58399_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isFuel (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58423_ ()Ljava/util/Map; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getFuel ()Ljava/util/Map; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58425_ ()Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isLit ()Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6029_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/setRecipeUsed (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7743_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getBurnDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7928_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getRecipeUsed ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/m_6413_ (I)I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/get (I)I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/m_6499_ ()I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/getCount ()I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/m_8050_ (II)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/set (II)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BannerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_155043_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BannerBlockEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_155044_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/BannerBlockEntity/getBaseColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BannerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_187453_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BannerBlockEntity/fromItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BannerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BannerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58484_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/nbt/ListTag;)Ljava/util/List; net/minecraft/world/level/block/entity/BannerBlockEntity/createPatterns (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/nbt/ListTag;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58487_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/block/entity/BannerBlockEntity/getItemPatterns (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58489_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BannerBlockEntity/fromItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58501_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/BannerBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58504_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/BannerBlockEntity/getPatternCount (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58508_ ()Ljava/util/List; net/minecraft/world/level/block/entity/BannerBlockEntity/getPatterns ()Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58509_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BannerBlockEntity/removeLastPattern (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BannerBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BannerBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BannerBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BannerPattern/ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/BannerPattern/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/BannerPattern/m_222697_ (Lnet/minecraft/resources/ResourceKey;Z)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/BannerPattern/location (Lnet/minecraft/resources/ResourceKey;Z)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/BannerPattern/m_222700_ (Ljava/lang/String;)Lnet/minecraft/core/Holder; net/minecraft/world/level/block/entity/BannerPattern/byHash (Ljava/lang/String;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/block/entity/BannerPattern/m_222702_ (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/level/block/entity/BannerPattern/lambda$byHash$0 (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/level/block/entity/BannerPattern/m_58579_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/BannerPattern/getHashname ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/ ()V net/minecraft/world/level/block/entity/BannerPattern$Builder/ ()V +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_155048_ (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; net/minecraft/world/level/block/entity/BannerPattern$Builder/addPattern (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_222705_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; net/minecraft/world/level/block/entity/BannerPattern$Builder/addPattern (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_222708_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; net/minecraft/world/level/block/entity/BannerPattern$Builder/addPattern (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_58587_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/block/entity/BannerPattern$Builder/toListTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/block/entity/BannerPatterns/ ()V net/minecraft/world/level/block/entity/BannerPatterns/ ()V +MD: net/minecraft/world/level/block/entity/BannerPatterns/ ()V net/minecraft/world/level/block/entity/BannerPatterns/ ()V +MD: net/minecraft/world/level/block/entity/BannerPatterns/m_222754_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BannerPattern; net/minecraft/world/level/block/entity/BannerPatterns/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BannerPattern; +MD: net/minecraft/world/level/block/entity/BannerPatterns/m_222756_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/BannerPatterns/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_58600_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/playSound (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_58606_ (Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/entity/BarrelBlockEntity/updateBlockState (Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_58619_ ()V net/minecraft/world/level/block/entity/BarrelBlockEntity/recheckOpen ()V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BarrelBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/BarrelBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BarrelBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/BarrelBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BarrelBlockEntity;)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BarrelBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/BarrelBlockEntity$1/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_58629_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/LockCode;Lnet/minecraft/network/chat/Component;)Z net/minecraft/world/level/block/entity/BaseContainerBlockEntity/canUnlock (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/LockCode;Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_58638_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7525_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/BaseContainerBlockEntity/canOpen (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/ ()V net/minecraft/world/level/block/entity/BeaconBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_142339_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155092_ (Lnet/minecraft/world/level/Level;III)I net/minecraft/world/level/block/entity/BeaconBlockEntity/updateBase (Lnet/minecraft/world/level/Level;III)I +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155097_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/applyEffects (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155103_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/playSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155107_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BeaconBlockEntity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BeaconBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BeaconBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58681_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58686_ (I)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/level/block/entity/BeaconBlockEntity/getValidEffectById (I)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58702_ ()Ljava/util/List; net/minecraft/world/level/block/entity/BeaconBlockEntity/getBeamSections ()Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BeaconBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BeaconBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7651_ ()V net/minecraft/world/level/block/entity/BeaconBlockEntity/setRemoved ()V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BeaconBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BeaconBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V net/minecraft/world/level/block/entity/BeaconBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/m_6413_ (I)I net/minecraft/world/level/block/entity/BeaconBlockEntity$1/get (I)I +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/m_6499_ ()I net/minecraft/world/level/block/entity/BeaconBlockEntity$1/getCount ()I +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/m_8050_ (II)V net/minecraft/world/level/block/entity/BeaconBlockEntity$1/set (II)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/ ([F)V net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/ ([F)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/m_58719_ ()V net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/increaseHeight ()V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/m_58722_ ()[F net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/getColor ()[F +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/m_58723_ ()I net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/getHeight ()I +MD: net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BedBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BedBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58729_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BedBlockEntity/setColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58731_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/BedBlockEntity/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/ ()V net/minecraft/world/level/block/entity/BeehiveBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155136_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/releaseOccupant (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155144_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155149_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/tickOccupants (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155157_ (Lnet/minecraft/nbt/CompoundTag;IZ)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/storeBee (Lnet/minecraft/nbt/CompoundTag;IZ)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155161_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/removeIgnoredBeeTags (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_202036_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/lambda$releaseOccupant$2 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_271670_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;)Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/lambda$releaseAllOccupants$0 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;)Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58736_ (ILnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/setBeeReleaseData (ILnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58739_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/block/entity/BeehiveBlockEntity/lambda$releaseOccupant$1 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58741_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/addOccupant (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58744_ (Lnet/minecraft/world/entity/Entity;ZI)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/addOccupantWithPresetTicks (Lnet/minecraft/world/entity/Entity;ZI)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58748_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/emptyAllLivingFromHive (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58752_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/entity/BeehiveBlockEntity/getHoneyLevel (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58759_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)Ljava/util/List; net/minecraft/world/level/block/entity/BeehiveBlockEntity/releaseAllOccupants (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58773_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isFireNearby ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58774_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58775_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isFull ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58776_ ()I net/minecraft/world/level/block/entity/BeehiveBlockEntity/getOccupantCount ()I +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58777_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isSedated ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58779_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/block/entity/BeehiveBlockEntity/writeBees ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58780_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/hasSavedFlowerPos ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_6596_ ()V net/minecraft/world/level/block/entity/BeehiveBlockEntity/setChanged ()V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/ (Lnet/minecraft/nbt/CompoundTag;II)V net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/ (Lnet/minecraft/nbt/CompoundTag;II)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ ()V net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ ()V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/m_155163_ ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/$values ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/values ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/values ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +MD: net/minecraft/world/level/block/entity/BellBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BellBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155175_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155180_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;Lnet/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction;)V net/minecraft/world/level/block/entity/BellBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;Lnet/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155186_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/BellBlockEntity/makeRaidersGlow (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155190_ (Lnet/minecraft/core/BlockPos;ILorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/lambda$showBellParticles$3 (Lnet/minecraft/core/BlockPos;ILorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155196_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/isRaiderWithinRange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155199_ (Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z net/minecraft/world/level/block/entity/BellBlockEntity/areRaidersNearby (Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155202_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155207_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/BellBlockEntity/showBellParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155211_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/lambda$showBellParticles$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155217_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/lambda$makeRaidersGlow$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_289177_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/lambda$showBellParticles$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_58834_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/entity/BellBlockEntity/onHit (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_58840_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/glow (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_58845_ ()V net/minecraft/world/level/block/entity/BellBlockEntity/updateEntities ()V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/BellBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction/m_155220_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction/run (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/m_7743_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/getBurnDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/BlockEntity/ ()V net/minecraft/world/level/block/entity/BlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_142339_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/entity/BlockEntity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155232_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlockEntity/setChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155236_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/lambda$loadStatic$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155241_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/loadStatic (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155246_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/lambda$loadStatic$1 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155250_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlockEntity/setBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187468_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/entity/BlockEntityType;)V net/minecraft/world/level/block/entity/BlockEntity/addEntityType (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/entity/BlockEntityType;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187472_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/BlockEntity/getPosFromTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187474_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/saveId (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187476_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BlockEntity/saveToItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187478_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/saveMetadata (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187480_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/saveWithFullMetadata ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187481_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/saveWithId ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187482_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/saveWithoutMetadata ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_257329_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/BlockEntity/lambda$fillCrashReportCategory$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58881_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/lambda$loadStatic$2 (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58886_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/level/block/entity/BlockEntity/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58898_ ()Z net/minecraft/world/level/block/entity/BlockEntity/hasLevel ()Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58899_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/BlockEntity/getBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58900_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/entity/BlockEntity/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58901_ ()Z net/minecraft/world/level/block/entity/BlockEntity/isRemoved ()Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58903_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/entity/BlockEntity/getType ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58904_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/level/block/entity/BlockEntity/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/BlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_6339_ ()V net/minecraft/world/level/block/entity/BlockEntity/clearRemoved ()V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_6596_ ()V net/minecraft/world/level/block/entity/BlockEntity/setChanged ()V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/BlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_7651_ ()V net/minecraft/world/level/block/entity/BlockEntity/setRemoved ()V +MD: net/minecraft/world/level/block/entity/BlockEntityTicker/m_155252_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/block/entity/BlockEntityTicker/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/block/entity/BlockEntityType/ ()V net/minecraft/world/level/block/entity/BlockEntityType/ ()V +MD: net/minecraft/world/level/block/entity/BlockEntityType/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;Lcom/mojang/datafixers/types/Type;)V net/minecraft/world/level/block/entity/BlockEntityType/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;Lcom/mojang/datafixers/types/Type;)V +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_155262_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/entity/BlockEntityType/isValid (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_155264_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntityType/create (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_58949_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntityType/getBlockEntity (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_58954_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/BlockEntityType/getKey (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_58956_ (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder;)Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/entity/BlockEntityType/register (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder;)Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier/m_155267_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier/create (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;)V net/minecraft/world/level/block/entity/BlockEntityType$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;)V +MD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/m_155273_ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder; net/minecraft/world/level/block/entity/BlockEntityType$Builder/of (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder; +MD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/m_58966_ (Lcom/mojang/datafixers/types/Type;)Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/entity/BlockEntityType$Builder/build (Lcom/mojang/datafixers/types/Type;)Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ ()V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_155285_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_155290_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/doBrew (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_155294_ (Lnet/minecraft/core/NonNullList;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/isBrewable (Lnet/minecraft/core/NonNullList;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_59029_ ()[Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getPotionBits ()[Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/m_6413_ (I)I net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/get (I)I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/m_6499_ ()I net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/getCount ()I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/m_8050_ (II)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/set (II)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/ ()V net/minecraft/world/level/block/entity/BrushableBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276797_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/unpackLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276923_ (JLnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/BrushableBlockEntity/brush (JLnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276934_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/dropContent (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276942_ ()I net/minecraft/world/level/block/entity/BrushableBlockEntity/getCompletionState ()I +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276980_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/brushingCompleted (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276996_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/BrushableBlockEntity/tryLoadLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277014_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/BrushableBlockEntity/trySaveLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277042_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/entity/BrushableBlockEntity/getHitDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277047_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrushableBlockEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277049_ (Lnet/minecraft/resources/ResourceLocation;J)V net/minecraft/world/level/block/entity/BrushableBlockEntity/setLootTable (Lnet/minecraft/resources/ResourceLocation;J)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277175_ ()V net/minecraft/world/level/block/entity/BrushableBlockEntity/checkReset ()V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BrushableBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BrushableBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BrushableBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/m_280175_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/createVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/m_280214_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/getBackSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/m_280351_ ()I net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_155306_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/cookTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_155313_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/cooldownTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_155318_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/particleTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_238284_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/world/level/block/entity/CampfireBlockEntity/placeFood (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_268985_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/CampfireCookingRecipe;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/CampfireBlockEntity/lambda$cookTick$0 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/CampfireCookingRecipe;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/CampfireBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/CampfireBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59051_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/level/block/entity/CampfireBlockEntity/getCookableRecipe (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59065_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/CampfireBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59066_ ()V net/minecraft/world/level/block/entity/CampfireBlockEntity/dowse ()V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59069_ ()V net/minecraft/world/level/block/entity/CampfireBlockEntity/markUpdated ()V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/CampfireBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/CampfireBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_142151_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/ChestBlockEntity/signalOpenCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChestBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_155338_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/entity/ChestBlockEntity/playSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_155343_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V net/minecraft/world/level/block/entity/ChestBlockEntity/lidAnimateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_155350_ ()V net/minecraft/world/level/block/entity/ChestBlockEntity/recheckOpen ()V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChestBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ChestBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ChestBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_59086_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/entity/ChestBlockEntity/getOpenCount (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_59103_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V net/minecraft/world/level/block/entity/ChestBlockEntity/swapContents (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/ChestBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/ChestBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/ChestBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6683_ (F)F net/minecraft/world/level/block/entity/ChestBlockEntity/getOpenNess (F)F +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/ChestBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/ChestBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/ChestBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/ChestBlockEntity$1/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/ChestLidController/ ()V net/minecraft/world/level/block/entity/ChestLidController/ ()V +MD: net/minecraft/world/level/block/entity/ChestLidController/m_155374_ ()V net/minecraft/world/level/block/entity/ChestLidController/tickLid ()V +MD: net/minecraft/world/level/block/entity/ChestLidController/m_155375_ (F)F net/minecraft/world/level/block/entity/ChestLidController/getOpenness (F)F +MD: net/minecraft/world/level/block/entity/ChestLidController/m_155377_ (Z)V net/minecraft/world/level/block/entity/ChestLidController/shouldBeOpen (Z)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ ()V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_260842_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/count ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_261204_ (I)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/updateState (I)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_262444_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getLastInteractedSlot ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_271862_ (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/canTakeItem (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_280244_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/lambda$canTakeItem$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6893_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getMaxStackSize ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/CommandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CommandBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CommandBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59135_ (Z)V net/minecraft/world/level/block/entity/CommandBlockEntity/setPowered (Z)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59137_ (Z)V net/minecraft/world/level/block/entity/CommandBlockEntity/setAutomatic (Z)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59141_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/world/level/block/entity/CommandBlockEntity/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59142_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/isPowered ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59143_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/isAutomatic ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59144_ ()V net/minecraft/world/level/block/entity/CommandBlockEntity/onModeSwitch ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59145_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/wasConditionMet ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59146_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/markConditionMet ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59148_ ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity/getMode ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59151_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/isConditional ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59152_ ()V net/minecraft/world/level/block/entity/CommandBlockEntity/scheduleTick ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/world/level/block/entity/CommandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_288209_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity$1/isValid ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_5991_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/block/entity/CommandBlockEntity$1/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_6590_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/CommandBlockEntity$1/setCommand (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_6607_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/entity/CommandBlockEntity$1/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_6712_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/block/entity/CommandBlockEntity$1/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_7368_ ()V net/minecraft/world/level/block/entity/CommandBlockEntity$1/onUpdated ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ ()V net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/m_155384_ ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/$values ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/values ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/values ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_59175_ (I)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/setOutputSignal (I)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_59182_ ()I net/minecraft/world/level/block/entity/ComparatorBlockEntity/getOutputSignal ()I +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/ ()V net/minecraft/world/level/block/entity/ConduitBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155399_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/updateClientTarget (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155403_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155408_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/updateDestroyTarget (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155414_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z net/minecraft/world/level/block/entity/ConduitBlockEntity/updateShape (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155418_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/level/block/entity/ConduitBlockEntity/animationTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155424_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/UUID;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/block/entity/ConduitBlockEntity/findDestroyTarget (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/UUID;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155428_ (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;Ljava/util/List;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/updateHunting (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155431_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/entity/ConduitBlockEntity/getDestroyRangeAABB (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155438_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155443_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/applyEffects (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_289178_ (Ljava/util/UUID;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/ConduitBlockEntity/lambda$findDestroyTarget$1 (Ljava/util/UUID;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_289179_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/ConduitBlockEntity/lambda$updateDestroyTarget$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/ConduitBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/ConduitBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59197_ (F)F net/minecraft/world/level/block/entity/ConduitBlockEntity/getActiveRotation (F)F +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59214_ (Z)V net/minecraft/world/level/block/entity/ConduitBlockEntity/setHunting (Z)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59216_ ()Z net/minecraft/world/level/block/entity/ConduitBlockEntity/isActive ()Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59217_ ()Z net/minecraft/world/level/block/entity/ConduitBlockEntity/isHunting ()Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/ConduitBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/ ()V net/minecraft/world/level/block/entity/ContainerOpenersCounter/ ()V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/ContainerOpenersCounter/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155450_ ()I net/minecraft/world/level/block/entity/ContainerOpenersCounter/getOpenerCount ()I +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155452_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/incrementOpeners (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155457_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/entity/ContainerOpenersCounter/getOpenCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155468_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/decrementOpeners (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155476_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/recheckOpeners (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155480_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/scheduleRecheck (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_271870_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/setFromItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_271886_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_284296_ ()Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getDecorations ()Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ ()V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ ()V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283809_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/left ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283810_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/front ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283873_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/right ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283886_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/back ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/hashCode ()I net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/hashCode ()I +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284135_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284195_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/sorted ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284207_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284442_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/item/Item;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/lambda$save$0 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284538_ (Lnet/minecraft/nbt/ListTag;I)Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/itemFromTag (Lnet/minecraft/nbt/ListTag;I)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/toString ()Ljava/lang/String; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271696_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/DecoratedPotPatterns/getResourceKey (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271723_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/DecoratedPotPatterns/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271757_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/DecoratedPotPatterns/location (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271825_ (Lnet/minecraft/core/Registry;)Ljava/lang/String; net/minecraft/world/level/block/entity/DecoratedPotPatterns/bootstrap (Lnet/minecraft/core/Registry;)Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_222761_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/entity/DispenserBlockEntity/getRandomSlot (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_59237_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/DispenserBlockEntity/addItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/DispenserBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/DispenserBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/DispenserBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/DispenserBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/DropperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DropperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DropperBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/DropperBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ ()V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_155503_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/bookAnimationTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_59272_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155515_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155517_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/lidAnimateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155522_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155524_ ()V net/minecraft/world/level/block/entity/EnderChestBlockEntity/recheckOpen ()V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_59282_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/EnderChestBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_6683_ (F)F net/minecraft/world/level/block/entity/EnderChestBlockEntity/getOpenNess (F)F +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/EnderChestBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/FurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/FurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/FurnaceBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/FurnaceBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/FurnaceBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/FurnaceBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/HangingSignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/m_245065_ ()I net/minecraft/world/level/block/entity/HangingSignBlockEntity/getTextLineHeight ()I +MD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/m_245123_ ()I net/minecraft/world/level/block/entity/HangingSignBlockEntity/getMaxTextLineWidth ()I +MD: net/minecraft/world/level/block/entity/Hopper/ ()V net/minecraft/world/level/block/entity/Hopper/ ()V +MD: net/minecraft/world/level/block/entity/Hopper/m_59300_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/entity/Hopper/getSuckShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/entity/Hopper/m_6343_ ()D net/minecraft/world/level/block/entity/Hopper/getLevelX ()D +MD: net/minecraft/world/level/block/entity/Hopper/m_6358_ ()D net/minecraft/world/level/block/entity/Hopper/getLevelY ()D +MD: net/minecraft/world/level/block/entity/Hopper/m_6446_ ()D net/minecraft/world/level/block/entity/Hopper/getLevelZ ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/HopperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/HopperBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155552_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/suckInItems (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155555_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$getItemsAtAndAbove$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155559_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$pushItemsTick$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155562_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/Container;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/ejectItems (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/Container;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155567_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V net/minecraft/world/level/block/entity/HopperBlockEntity/entityInside (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155573_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V net/minecraft/world/level/block/entity/HopperBlockEntity/pushItemsTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155578_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Ljava/util/function/BooleanSupplier;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/tryMoveItems (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Ljava/util/function/BooleanSupplier;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155584_ (Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$entityInside$5 (Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155589_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Ljava/util/List; net/minecraft/world/level/block/entity/HopperBlockEntity/getItemsAtAndAbove (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getAttachedContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155596_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getSourceContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/HopperBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_271906_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/canTakeItemFromContainer (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59317_ (Lnet/minecraft/world/Container;I)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$isEmptyContainer$2 (Lnet/minecraft/world/Container;I)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59320_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/HopperBlockEntity/tryMoveInItem (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59326_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/HopperBlockEntity/addItem (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59331_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/addItem (Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59334_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/canPlaceItemInContainer (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59339_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Ljava/util/stream/IntStream; net/minecraft/world/level/block/entity/HopperBlockEntity/getSlots (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Ljava/util/stream/IntStream; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59344_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/canMergeItems (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59347_ (Lnet/minecraft/world/level/Level;DDD)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getContainerAt (Lnet/minecraft/world/level/Level;DDD)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59354_ (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;ILnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/tryTakeInItemFromSlot (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;ILnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59359_ (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;I)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$suckInItems$3 (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;I)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59377_ (Lnet/minecraft/world/Container;I)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$isFullContainer$1 (Lnet/minecraft/world/Container;I)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59385_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/isFullContainer (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59390_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getContainerAt (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59395_ (I)V net/minecraft/world/level/block/entity/HopperBlockEntity/setCooldown (I)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59397_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/isEmptyContainer (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59404_ ()Z net/minecraft/world/level/block/entity/HopperBlockEntity/inventoryFull ()Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59407_ ()Z net/minecraft/world/level/block/entity/HopperBlockEntity/isOnCooldown ()Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59409_ ()Z net/minecraft/world/level/block/entity/HopperBlockEntity/isOnCustomCooldown ()Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6343_ ()D net/minecraft/world/level/block/entity/HopperBlockEntity/getLevelX ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6358_ ()D net/minecraft/world/level/block/entity/HopperBlockEntity/getLevelY ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6446_ ()D net/minecraft/world/level/block/entity/HopperBlockEntity/getLevelZ ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/HopperBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/HopperBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/HopperBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/HopperBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/HopperBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/HopperBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/HopperBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_155609_ ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity/lambda$load$0 ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_222763_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setPool (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_222765_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/JigsawBlockEntity/getPool ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/JigsawBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/JigsawBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59420_ (Lnet/minecraft/server/level/ServerLevel;IZ)V net/minecraft/world/level/block/entity/JigsawBlockEntity/generate (Lnet/minecraft/server/level/ServerLevel;IZ)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59424_ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setJoint (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59431_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setFinalState (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59435_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setName (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59438_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setTarget (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59442_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/JigsawBlockEntity/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59443_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/JigsawBlockEntity/getTarget ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59445_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/JigsawBlockEntity/getFinalState ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59446_ ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity/getJoint ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/JigsawBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ ()V net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ ()V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_155610_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/getTranslatedName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_155611_ ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/$values ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_59457_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/byName (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_59459_ (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)Z net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/lambda$byName$0 (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)Z +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/values ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/values ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_239365_ ()Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/shouldSendJukeboxPlayingEvent ()Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_239937_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/JukeboxBlockEntity;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/playRecordTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/JukeboxBlockEntity;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_269320_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/spawnMusicParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271687_ ()V net/minecraft/world/level/block/entity/JukeboxBlockEntity/startPlaying ()V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271713_ (Lnet/minecraft/world/item/RecordItem;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/shouldRecordStopPlaying (Lnet/minecraft/world/item/RecordItem;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271862_ (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/canTakeItem (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271871_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/setHasRecordBlockState (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272025_ ()Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/isRecordPlaying ()Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272088_ ()V net/minecraft/world/level/block/entity/JukeboxBlockEntity/stopPlaying ()V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272139_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/setRecordWithoutPlaying (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272252_ ()V net/minecraft/world/level/block/entity/JukeboxBlockEntity/popOutRecord ()V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272276_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_6893_ ()I net/minecraft/world/level/block/entity/JukeboxBlockEntity/getMaxStackSize ()I +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/JukeboxBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/JukeboxBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/LecternBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/LecternBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/LecternBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/LecternBlockEntity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59532_ (I)V net/minecraft/world/level/block/entity/LecternBlockEntity/setPage (I)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59534_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/block/entity/LecternBlockEntity/createCommandSourceStack (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59536_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/LecternBlockEntity/setBook (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59538_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/LecternBlockEntity/setBook (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59554_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity/resolveBook (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59566_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity/getBook ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59567_ ()Z net/minecraft/world/level/block/entity/LecternBlockEntity/hasBook ()Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59568_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity/getPage ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59569_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity/getRedstoneSignal ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59570_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity/onBookItemRemove ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/LecternBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/LecternBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V net/minecraft/world/level/block/entity/LecternBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6211_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity$1/clearContent ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/LecternBlockEntity$1/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6596_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity$1/setChanged ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6643_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity$1/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/LecternBlockEntity$1/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6893_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity$1/getMaxStackSize ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/LecternBlockEntity$1/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity$1/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_7983_ ()Z net/minecraft/world/level/block/entity/LecternBlockEntity$1/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity$1/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity$1/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V net/minecraft/world/level/block/entity/LecternBlockEntity$2/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/m_6413_ (I)I net/minecraft/world/level/block/entity/LecternBlockEntity$2/get (I)I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/m_6499_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity$2/getCount ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/m_8050_ (II)V net/minecraft/world/level/block/entity/LecternBlockEntity$2/set (II)V +MD: net/minecraft/world/level/block/entity/LidBlockEntity/m_6683_ (F)F net/minecraft/world/level/block/entity/LidBlockEntity/getOpenNess (F)F +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_222766_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setLootTable (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59626_ (Lnet/minecraft/resources/ResourceLocation;J)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setLootTable (Lnet/minecraft/resources/ResourceLocation;J)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59631_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/tryLoadLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59634_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/trySaveLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59640_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/unpackLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7525_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/canOpen (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_222779_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_280052_ ()Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/getListener ()Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_142078_ ()I net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_247514_ ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getDeliveryMode ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_280309_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/bloom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_280407_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/tryAwardItSpreadsAdvancement (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_280490_ ()Lnet/minecraft/world/level/block/SculkSpreader; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getSculkSpreader ()Lnet/minecraft/world/level/block/SculkSpreader; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_289180_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/lambda$handleGameEvent$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ ()V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_155656_ ()I net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getLastVibrationFrequency ()I +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_222800_ (I)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/setLastVibrationFrequency (I)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_222818_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/lambda$saveAdditional$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_279970_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/lambda$load$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280175_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/createVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280022_ ()V net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/onDataChanged ()V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280076_ ()Z net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/canTriggerAvoidVibration ()Z +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280215_ ()Z net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/requiresAdjacentChunksToBeTicking ()Z +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280351_ ()I net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ ()V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222837_ (I)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$tryToWarn$3 (I)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222839_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryRespond (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222841_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryShriek (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222844_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/shriek (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222861_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryGetPlayer (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222865_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222869_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$saveAdditional$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222872_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/canRespond (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222874_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryToWarn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222880_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/trySummonWarden (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_279971_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$load$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280188_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/playWardenReplySound (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280022_ ()V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/onDataChanged ()V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280215_ ()Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/requiresAdjacentChunksToBeTicking ()Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280351_ ()I net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ ()V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155672_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155679_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/updateAnimation (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155683_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/moveCollidedEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155687_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/doNeighborUpdates (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59657_ (F)F net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getProgress (F)F +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59666_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getBoundingBox (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59693_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/loadFromTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59700_ ()Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getAnimationStatus ()Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59701_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59702_ ()Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/isClosed ()Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/ ()V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/ ()V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ ()V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ ()V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/m_155691_ ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/$values ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/values ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/values ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/ ()V net/minecraft/world/level/block/entity/SignBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SignBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_155713_ (Ljava/util/UUID;)V net/minecraft/world/level/block/entity/SignBlockEntity/setAllowedPlayerEditor (Ljava/util/UUID;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_155726_ ()Ljava/util/UUID; net/minecraft/world/level/block/entity/SignBlockEntity/getPlayerWhoMayEdit ()Ljava/util/UUID; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_155728_ ()V net/minecraft/world/level/block/entity/SignBlockEntity/markUpdated ()V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SignBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_245065_ ()I net/minecraft/world/level/block/entity/SignBlockEntity/getTextLineHeight ()I +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_245123_ ()I net/minecraft/world/level/block/entity/SignBlockEntity/getMaxTextLineWidth ()I +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276813_ (Ljava/util/UUID;)Z net/minecraft/world/level/block/entity/SignBlockEntity/playerIsTooFarAwayToEdit (Ljava/util/UUID;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276836_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)V net/minecraft/world/level/block/entity/SignBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276838_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$saveAdditional$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276884_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/lambda$updateSignText$4 (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276929_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/setMessages (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276956_ (Lnet/minecraft/world/level/block/entity/SignText;Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/setText (Lnet/minecraft/world/level/block/entity/SignText;Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276964_ (Lnet/minecraft/world/level/block/entity/SignText;)Z net/minecraft/world/level/block/entity/SignBlockEntity/setFrontText (Lnet/minecraft/world/level/block/entity/SignText;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276965_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/level/Level;Ljava/util/UUID;)V net/minecraft/world/level/block/entity/SignBlockEntity/clearInvalidPlayerWhoMayEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/level/Level;Ljava/util/UUID;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277006_ ()Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/createDefaultSignText ()Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277031_ (Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/setWaxed (Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277073_ (Ljava/util/function/UnaryOperator;Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/updateText (Ljava/util/function/UnaryOperator;Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277084_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$saveAdditional$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277118_ ()Z net/minecraft/world/level/block/entity/SignBlockEntity/isWaxed ()Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277134_ (Lnet/minecraft/world/entity/player/Player;ZLjava/util/List;)V net/minecraft/world/level/block/entity/SignBlockEntity/updateSignText (Lnet/minecraft/world/entity/player/Player;ZLjava/util/List;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277142_ ()Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getFrontText ()Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277157_ (Z)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getText (Z)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277159_ ()Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getBackText ()Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277170_ (Lnet/minecraft/world/level/block/entity/SignText;)Z net/minecraft/world/level/block/entity/SignBlockEntity/setBackText (Lnet/minecraft/world/level/block/entity/SignText;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277176_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getTextFacingPlayer (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277202_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignBlockEntity/isFacingFrontText (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278140_ (Lnet/minecraft/world/level/block/entity/SignText;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$load$2 (Lnet/minecraft/world/level/block/entity/SignText;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278141_ (Lnet/minecraft/world/level/block/entity/SignText;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$load$3 (Lnet/minecraft/world/level/block/entity/SignText;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278155_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/executeClickCommandsIfPresent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278157_ (ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignBlockEntity/canExecuteClickCommands (ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278165_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignBlockEntity/loadLine (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278182_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/loadLines (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278808_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/block/entity/SignBlockEntity/createCommandSourceStack (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/SignBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/SignBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/SignBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/SignBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/SignText/ ()V net/minecraft/world/level/block/entity/SignText/ ()V +MD: net/minecraft/world/level/block/entity/SignText/ ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/item/DyeColor;Z)V net/minecraft/world/level/block/entity/SignText/ ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/item/DyeColor;Z)V +MD: net/minecraft/world/level/block/entity/SignText/ ()V net/minecraft/world/level/block/entity/SignText/ ()V +MD: net/minecraft/world/level/block/entity/SignText/m_276773_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/SignText/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/SignText/m_276776_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignText/hasMessage (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignText/m_276780_ (Lnet/minecraft/world/level/block/entity/SignText;)Ljava/lang/Boolean; net/minecraft/world/level/block/entity/SignText/lambda$static$5 (Lnet/minecraft/world/level/block/entity/SignText;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/entity/SignText/m_276784_ ()[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/emptyMessages ()[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_276807_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignText/hasAnyClickCommands (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignText/m_276814_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/world/level/block/entity/SignText/lambda$hasMessage$7 (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/world/level/block/entity/SignText/m_276843_ ()Z net/minecraft/world/level/block/entity/SignText/hasGlowingText ()Z +MD: net/minecraft/world/level/block/entity/SignText/m_276901_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_276913_ (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setMessage (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_276932_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/SignText/lambda$static$4 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/SignText/m_276933_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/block/entity/SignText/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/block/entity/SignText/m_276937_ (Lnet/minecraft/world/level/block/entity/SignText;)[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/lambda$static$3 (Lnet/minecraft/world/level/block/entity/SignText;)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_276943_ ([Lnet/minecraft/network/chat/Component;)Ljava/util/List; net/minecraft/world/level/block/entity/SignText/lambda$static$2 ([Lnet/minecraft/network/chat/Component;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/SignText/m_276945_ (Z)[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/getMessages (Z)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_276946_ ()Ljava/util/Optional; net/minecraft/world/level/block/entity/SignText/getOnlyFilteredMessages ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/SignText/m_276948_ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setMessage (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_276973_ ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/SignText/populateFilteredMessagesWithRawMessages ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/SignText/m_277020_ ([Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Lnet/minecraft/world/item/DyeColor;Z)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/load ([Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Lnet/minecraft/world/item/DyeColor;Z)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_277088_ (Ljava/util/List;)[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/lambda$static$0 (Ljava/util/List;)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_277130_ (ZLjava/util/function/Function;)[Lnet/minecraft/util/FormattedCharSequence; net/minecraft/world/level/block/entity/SignText/getRenderMessages (ZLjava/util/function/Function;)[Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/world/level/block/entity/SignText/m_277132_ (Z)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setHasGlowingText (Z)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_277138_ (IZ)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/getMessage (IZ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_277164_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/entity/SignText/lambda$static$1 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SkullBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SkullBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_155738_ (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/entity/SkullBlockEntity/updateGameprofile (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_155746_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateOwnerProfile$0 (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_182458_ (Ljava/util/Optional;Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$5 (Ljava/util/Optional;Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_182467_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;Ljava/util/Optional;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$6 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;Ljava/util/Optional;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_182474_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$3 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SkullBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_196704_ ()V net/minecraft/world/level/block/entity/SkullBlockEntity/clear ()V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_222885_ (Lnet/minecraft/server/Services;Ljava/util/concurrent/Executor;)V net/minecraft/world/level/block/entity/SkullBlockEntity/setup (Lnet/minecraft/server/Services;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_261082_ (F)F net/minecraft/world/level/block/entity/SkullBlockEntity/getAnimation (F)F +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_261318_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V net/minecraft/world/level/block/entity/SkullBlockEntity/animation (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_262374_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/SkullBlockEntity/getNoteBlockSound ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_276179_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$2 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_276180_ (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$1 (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_276181_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$4 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/SkullBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/SkullBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_59769_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/setOwner (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_59779_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/world/level/block/entity/SkullBlockEntity/getOwnerProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_59780_ ()V net/minecraft/world/level/block/entity/SkullBlockEntity/updateOwnerProfile ()V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/SkullBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SmokerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/SmokerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SmokerBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/m_7743_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/SmokerBlockEntity/getBurnDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_155754_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_155761_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_252803_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/setEntityId (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_59801_ ()Lnet/minecraft/world/level/BaseSpawner; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getSpawner ()Lnet/minecraft/world/level/BaseSpawner; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/SpawnerBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/SpawnerBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/m_142523_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/broadcastEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/m_142667_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/setNextSpawnData (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/StructureBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/StructureBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155781_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$loadStructure$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155784_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$3 (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155786_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$4 (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155788_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$detectSize$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155791_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/block/entity/StructureBlockEntity/getRelatedCorners (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155794_ (Lnet/minecraft/core/BlockPos;Ljava/util/stream/Stream;)Ljava/util/Optional; net/minecraft/world/level/block/entity/StructureBlockEntity/calculateEnclosingBoundingBox (Lnet/minecraft/core/BlockPos;Ljava/util/stream/Stream;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155797_ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructureSize (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155801_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$2 (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155805_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructureSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/StructureBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_222888_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/block/entity/StructureBlockEntity/createRandom (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_271673_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/StructureBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/StructureBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59827_ ()F net/minecraft/world/level/block/entity/StructureBlockEntity/getIntegrity ()F +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59828_ ()J net/minecraft/world/level/block/entity/StructureBlockEntity/getSeed ()J +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59829_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/detectSize ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59830_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/saveStructure ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59831_ ()V net/minecraft/world/level/block/entity/StructureBlockEntity/unloadStructure ()V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59832_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/isStructureLoadable ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59833_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/isPowered ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59834_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/getShowAir ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59835_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/getShowBoundingBox ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59836_ ()V net/minecraft/world/level/block/entity/StructureBlockEntity/updateBlockState ()V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59838_ (F)V net/minecraft/world/level/block/entity/StructureBlockEntity/setIntegrity (F)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59840_ (J)V net/minecraft/world/level/block/entity/StructureBlockEntity/setSeed (J)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59842_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/loadStructure (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59844_ (Lnet/minecraft/server/level/ServerLevel;Z)Z net/minecraft/world/level/block/entity/StructureBlockEntity/loadStructure (Lnet/minecraft/server/level/ServerLevel;Z)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59847_ (Lnet/minecraft/server/level/ServerLevel;ZLnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/loadStructure (Lnet/minecraft/server/level/ServerLevel;ZLnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59851_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/StructureBlockEntity/createdBy (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59853_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/usedBy (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59860_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setMode (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59868_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructureName (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59874_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructureName (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59876_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setIgnoreEntities (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59881_ (Lnet/minecraft/world/level/block/Mirror;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setMirror (Lnet/minecraft/world/level/block/Mirror;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59883_ (Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setRotation (Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59885_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructurePos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59887_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setMetaData (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59889_ (Z)Z net/minecraft/world/level/block/entity/StructureBlockEntity/saveStructure (Z)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59893_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setPowered (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59895_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructureName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59896_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setShowAir (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59898_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setShowBoundingBox (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59900_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructurePath ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59901_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/hasStructureName ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59902_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructurePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59905_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/entity/StructureBlockEntity/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59906_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/entity/StructureBlockEntity/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59907_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/StructureBlockEntity/getMetaData ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59908_ ()Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/entity/StructureBlockEntity/getMode ()Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59910_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/isIgnoreEntities ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/StructureBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ ()V net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ ()V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/m_155806_ ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/$values ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/values ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/values ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ ()V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155815_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/isChunkEmpty (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155818_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findOrCreateValidTeleportPos (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155821_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/spawnGatewayPortal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155825_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findExitPosition (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155828_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/teleportEntity (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155834_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/beamAnimationTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155841_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findExitPortalXZPosTentative (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155844_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/teleportTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155849_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/triggerCooldown (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_255321_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/lambda$findOrCreateValidTeleportPos$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_257330_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/lambda$findOrCreateValidTeleportPos$0 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59933_ (F)F net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getSpawnPercent (F)F +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59940_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/canEntityTeleport (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59942_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findTallestBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getChunk (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59953_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findValidSpawnInChunk (Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59955_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/setExitPosition (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59967_ (F)F net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getCooldownPercent (F)F +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59971_ ()Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/isSpawning ()Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59972_ ()Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/isCoolingDown ()Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59975_ ()I net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getParticleAmount ()I +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_6665_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/shouldRenderFace (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/m_6665_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/shouldRenderFace (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142220_ ()Z net/minecraft/world/level/block/entity/TickingBlockEntity/isRemoved ()Z +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142224_ ()V net/minecraft/world/level/block/entity/TickingBlockEntity/tick ()V +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/TickingBlockEntity/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TickingBlockEntity/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TrappedChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TrappedChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TrappedChestBlockEntity/m_142151_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/TrappedChestBlockEntity/signalOpenCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/ ()V net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_213817_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/growTree (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_222896_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;II)Z net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/placeMega (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;II)Z +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_59998_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/isTwoByTwoSapling (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/ ()V net/minecraft/world/level/block/grower/AbstractTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/m_213817_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/grower/AbstractTreeGrower/growTree (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AbstractTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/m_60011_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/grower/AbstractTreeGrower/hasFlowers (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/grower/AcaciaTreeGrower/ ()V net/minecraft/world/level/block/grower/AcaciaTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AcaciaTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AcaciaTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/AzaleaTreeGrower/ ()V net/minecraft/world/level/block/grower/AzaleaTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AzaleaTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AzaleaTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/BirchTreeGrower/ ()V net/minecraft/world/level/block/grower/BirchTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/BirchTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/BirchTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/CherryTreeGrower/ ()V net/minecraft/world/level/block/grower/CherryTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/CherryTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/CherryTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/DarkOakTreeGrower/ ()V net/minecraft/world/level/block/grower/DarkOakTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/DarkOakTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/DarkOakTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/DarkOakTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/DarkOakTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/JungleTreeGrower/ ()V net/minecraft/world/level/block/grower/JungleTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/JungleTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/JungleTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/JungleTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/JungleTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/MangroveTreeGrower/ (F)V net/minecraft/world/level/block/grower/MangroveTreeGrower/ (F)V +MD: net/minecraft/world/level/block/grower/MangroveTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/MangroveTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/OakTreeGrower/ ()V net/minecraft/world/level/block/grower/OakTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/OakTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/OakTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/SpruceTreeGrower/ ()V net/minecraft/world/level/block/grower/SpruceTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/SpruceTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/SpruceTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/SpruceTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/SpruceTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/ ()V net/minecraft/world/level/block/piston/MovingPistonBlock/ ()V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/piston/MovingPistonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/piston/MovingPistonBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/piston/MovingPistonBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_155881_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/piston/MovingPistonBlock/newMovingBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/piston/MovingPistonBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/MovingPistonBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/MovingPistonBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_60053_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity; net/minecraft/world/level/block/piston/MovingPistonBlock/getBlockEntity (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/piston/MovingPistonBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6786_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/piston/MovingPistonBlock/destroy (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/piston/MovingPistonBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/MovingPistonBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/MovingPistonBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/piston/MovingPistonBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/piston/MovingPistonBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/piston/MovingPistonBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/ ()V net/minecraft/world/level/block/piston/PistonBaseBlock/ ()V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/piston/PistonBaseBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonBaseBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonBaseBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/piston/PistonBaseBlock/checkIfExtend (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60177_ (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/getNeighborSignal (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60181_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Z net/minecraft/world/level/block/piston/PistonBaseBlock/moveBlocks (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60204_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/isPushable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/piston/PistonBaseBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/piston/PistonBaseBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonBaseBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/piston/PistonBaseBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonBaseBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/piston/PistonBaseBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/piston/PistonBaseBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock$1/ ()V net/minecraft/world/level/block/piston/PistonBaseBlock$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/ ()V net/minecraft/world/level/block/piston/PistonHeadBlock/ ()V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/piston/PistonHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/piston/PistonHeadBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60297_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/isFittingBase (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60309_ (Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/calculateShape (Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60312_ (Z)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/makeShapes (Z)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60314_ (ZLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/lambda$makeShapes$0 (ZLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60317_ (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/lambda$makeShapes$1 (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/piston/PistonHeadBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonHeadBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/piston/PistonHeadBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonHeadBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/piston/PistonHeadBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonHeadBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/piston/PistonHeadBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock$1/ ()V net/minecraft/world/level/block/piston/PistonHeadBlock$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonMath/ ()V net/minecraft/world/level/block/piston/PistonMath/ ()V +MD: net/minecraft/world/level/block/piston/PistonMath/m_60328_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/piston/PistonMath/getMovementArea (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/piston/PistonMath$1/ ()V net/minecraft/world/level/block/piston/PistonMath$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ ()V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ ()V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_142339_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155910_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveCollidedEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155915_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155920_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;D)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/fixEntityWithinPistonBase (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;D)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155925_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveByPositionAndProgress (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155931_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveStuckEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_287130_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/lambda$moveStuckEntities$1 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_287216_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/matchesStickyCritera (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60350_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getProgress (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60356_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getCollisionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60367_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/AABB;)D net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getMovement (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/AABB;)D +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60371_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/Entity;DLnet/minecraft/core/Direction;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveEntityByPiston (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/Entity;DLnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60380_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getXOff (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60385_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getYOff (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60387_ ()Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isExtending ()Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60388_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getZOff (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60390_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getExtendedProgress (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60392_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60397_ ()Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isSourcePiston ()Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60399_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getMovementDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60400_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getMovedState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60401_ ()V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/finalTick ()V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60402_ ()J net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getLastTicked ()J +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60403_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getCollisionRelatedBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60404_ ()Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isStickyForEntities ()Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60405_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/lambda$static$0 ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/ ()V net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)V net/minecraft/world/level/block/piston/PistonStructureResolver/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)V +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_155937_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/isSticky (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_155939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/canStickToEachOther (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_155942_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonStructureResolver/getPushDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60422_ ()Z net/minecraft/world/level/block/piston/PistonStructureResolver/resolve ()Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60423_ (II)V net/minecraft/world/level/block/piston/PistonStructureResolver/reorderListAtCollision (II)V +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60431_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/addBranchingBlocks (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60433_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/addBlockLine (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60436_ ()Ljava/util/List; net/minecraft/world/level/block/piston/PistonStructureResolver/getToPush ()Ljava/util/List; +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60437_ ()Ljava/util/List; net/minecraft/world/level/block/piston/PistonStructureResolver/getToDestroy ()Ljava/util/List; +MD: net/minecraft/world/level/block/state/BlockBehaviour/ ()V net/minecraft/world/level/block/state/BlockBehaviour/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/state/BlockBehaviour/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_142627_ ()F net/minecraft/world/level/block/state/BlockBehaviour/getMaxVerticalOffset ()F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_142740_ ()F net/minecraft/world/level/block/state/BlockBehaviour/getMaxHorizontalOffset ()F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_155943_ ()F net/minecraft/world/level/block/state/BlockBehaviour/defaultDestroyTime ()F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_180643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour/isCollisionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/state/BlockBehaviour/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_222958_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour/isOcclusionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/block/state/BlockBehaviour/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_284356_ ()Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour/defaultMapColor ()Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/state/BlockBehaviour/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/state/BlockBehaviour/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/state/BlockBehaviour/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5880_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour/getDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/state/BlockBehaviour/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5946_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/state/BlockBehaviour/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_60589_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/state/BlockBehaviour/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/state/BlockBehaviour/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/state/BlockBehaviour/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/state/BlockBehaviour/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/state/BlockBehaviour/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/state/BlockBehaviour/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/BlockBehaviour/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/state/BlockBehaviour/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7374_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/state/BlockBehaviour/asBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/state/BlockBehaviour/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7742_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/state/BlockBehaviour/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7753_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/state/BlockBehaviour/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/state/BlockBehaviour/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/BlockBehaviour/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/BlockBehaviour/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/state/BlockBehaviour/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$1/ ()V net/minecraft/world/level/block/state/BlockBehaviour$1/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_155944_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_155947_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasBlockEntity ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204336_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204338_ (Lnet/minecraft/tags/TagKey;Ljava/util/function/Predicate;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/tags/TagKey;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204341_ (Lnet/minecraft/core/HolderSet;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/core/HolderSet;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204343_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222963_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222967_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/spawnAfterBreak (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222972_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/randomTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222976_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getBlockHolder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_245147_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/shouldSpawnParticlesOnBreak ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_247087_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canBeReplaced ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_271730_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasOffsetFunction ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_272178_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/lambda$getOffset$0 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_278200_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ignitedByLava ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_278721_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/liquid ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280210_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/calculateSolid ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280296_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSolid ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280555_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/blocksMotion ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280603_ ()Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/instrument ()Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_284242_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getMapColor (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_287290_ (Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDrops (Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60611_ ()V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/initCache ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60625_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDestroyProgress (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60629_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canBeReplaced (Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60631_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/propagatesSkylightDown (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60634_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/entityCanStandOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60638_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/entityCanStandOnFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60643_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isValidSpawn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60647_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isPathfindable (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60651_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60655_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getFaceOcclusionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60659_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isFaceSturdy (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60664_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60669_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60674_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getAnalogOutputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60677_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/triggerEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60682_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/entityInside (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60686_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/attack (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60690_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/neighborChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60696_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/onPlace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60701_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60705_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60710_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canSurvive (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60713_ (Lnet/minecraft/world/level/block/Block;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60715_ (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/mirror (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60717_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/rotate (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60719_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60722_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canBeReplaced (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60726_ (Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getSeed (Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60728_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateShape (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60734_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60739_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getLightBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60742_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getCollisionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60746_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60750_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getMenuProvider (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60753_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/onRemove (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60758_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60762_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60768_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getOcclusionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60771_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getVisualShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60775_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDirectSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60779_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasLargeCollisionShape ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60783_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isFaceSturdy (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60787_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/useShapeForLightOcclusion ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60788_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/emissiveRendering (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60791_ ()I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getLightEmission ()I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60792_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getShadeBrightness (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60795_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isAir ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60796_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRedstoneConductor (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60799_ ()Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getRenderShape ()Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60800_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDestroySpeed (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60803_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSignalSource ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60804_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSolidRender (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60807_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasAnalogOutputSignal ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60808_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60811_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60812_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getCollisionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60815_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canOcclude ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60816_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getBlockSupportShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60819_ ()Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getFluidState ()Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60820_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getInteractionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60823_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRandomlyTicking ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60824_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getOffset (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60827_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getSoundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60828_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSuffocating (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60831_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isViewBlocking (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60834_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/requiresCorrectToolForDrops ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60835_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasPostProcess (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60838_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isCollisionShapeFullBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_7160_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/asState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ ()V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/m_60859_ (Lnet/minecraft/core/Direction$Axis;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/lambda$new$0 (Lnet/minecraft/core/Direction$Axis;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/m_60861_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/isFaceSturdy (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/m_60866_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/getFaceSupportIndex (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction/m_271794_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction/evaluate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ ()V net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/m_155948_ ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/$values ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/values ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/values ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/ ()V net/minecraft/world/level/block/state/BlockBehaviour$Properties/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_155954_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/destroyTime (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_155956_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/explosionResistance (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_222979_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/offsetType (Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_222986_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$mapColor$8 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_222994_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noLootTable ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_246721_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noParticlesOnBreak ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_246843_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiredFeatures ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_271674_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$offsetType$9 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_271675_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$offsetType$10 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_278166_ (Lnet/minecraft/world/level/material/PushReaction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/pushReaction (Lnet/minecraft/world/level/material/PushReaction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_278183_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/ignitedByLava ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_278788_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/liquid ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280170_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/replaceable ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280574_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOff ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280606_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOn ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280658_ (Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/instrument (Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284106_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$0 (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284107_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284108_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284109_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$mapColor$7 (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284110_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284180_ (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284268_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284310_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/of ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284495_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor (Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60910_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noCollission ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60911_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/friction (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60913_ (FF)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/strength (FF)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60916_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/dropsLike (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60918_ (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/sound (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60922_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isValidSpawn (Lnet/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60924_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isRedstoneConductor (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60926_ (Lnet/minecraft/world/level/block/state/BlockBehaviour;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/copy (Lnet/minecraft/world/level/block/state/BlockBehaviour;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60928_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$1 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60930_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60953_ (Ljava/util/function/ToIntFunction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lightLevel (Ljava/util/function/ToIntFunction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60955_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noOcclusion ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60956_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/speedFactor (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60960_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isSuffocating (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60962_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60966_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/instabreak ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60967_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/jumpFactor (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60971_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isViewBlocking (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60977_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/randomTicks ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60978_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/strength (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60982_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/hasPostProcess (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60988_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/dynamicShape ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60991_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/emissiveRendering (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60996_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/air ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60999_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiresCorrectToolForDrops ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate/m_61030_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate/m_61035_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockState/ ()V net/minecraft/world/level/block/state/BlockState/ ()V +MD: net/minecraft/world/level/block/state/BlockState/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/block/state/BlockState/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/block/state/BlockState/m_7160_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockState/asState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/StateDefinition/ ()V net/minecraft/world/level/block/state/StateDefinition/ ()V +MD: net/minecraft/world/level/block/state/StateDefinition/ (Ljava/util/function/Function;Ljava/lang/Object;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/util/Map;)V net/minecraft/world/level/block/state/StateDefinition/ (Ljava/util/function/Function;Ljava/lang/Object;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/state/StateDefinition/m_155958_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/List; net/minecraft/world/level/block/state/StateDefinition/lambda$new$1 (Ljava/util/List;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/List; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187531_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/StateHolder;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$7 (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/StateHolder;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187534_ (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$6 (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187537_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/properties/Property$Value; net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$5 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/properties/Property$Value; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187540_ (Ljava/lang/String;)V net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$4 (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/state/StateDefinition/m_61056_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/level/block/state/StateDefinition/getPossibleStates ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61057_ (Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/lang/Object;Lcom/mojang/serialization/MapCodec;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/block/state/StateDefinition/lambda$new$3 (Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/lang/Object;Lcom/mojang/serialization/MapCodec;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/block/state/StateDefinition/m_61070_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/List;)Ljava/util/stream/Stream; net/minecraft/world/level/block/state/StateDefinition/lambda$new$2 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/List;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61076_ (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/serialization/MapCodec; net/minecraft/world/level/block/state/StateDefinition/appendPropertyCodec (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61081_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/state/StateDefinition/getProperty (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61087_ (Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateDefinition/lambda$new$0 (Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61090_ ()Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateDefinition/any ()Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61091_ ()Ljava/lang/Object; net/minecraft/world/level/block/state/StateDefinition/getOwner ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61092_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/StateDefinition/getProperties ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/StateDefinition/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/StateDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/ (Ljava/lang/Object;)V net/minecraft/world/level/block/state/StateDefinition$Builder/ (Ljava/lang/Object;)V +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/m_61099_ (Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/block/state/StateDefinition$Builder/validateProperty (Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/m_61101_ (Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;)Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/world/level/block/state/StateDefinition$Builder/create (Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;)Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/m_61104_ ([Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/StateDefinition$Builder; net/minecraft/world/level/block/state/StateDefinition$Builder/add ([Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/StateDefinition$Builder; +MD: net/minecraft/world/level/block/state/StateDefinition$Factory/m_61106_ (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateDefinition$Factory/create (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/ ()V net/minecraft/world/level/block/state/StateHolder/ ()V +MD: net/minecraft/world/level/block/state/StateHolder/ (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/block/state/StateHolder/ (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/block/state/StateHolder/m_187542_ (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/util/Optional;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateHolder/lambda$codec$1 (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/util/Optional;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateHolder/m_187545_ (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/StateHolder/lambda$codec$2 (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/StateHolder/m_263224_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/trySetValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61120_ (Lnet/minecraft/world/level/block/state/StateHolder;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/lambda$codec$0 (Lnet/minecraft/world/level/block/state/StateHolder;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61122_ (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/cycle (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61124_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/setValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61127_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/StateHolder/codec (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/StateHolder/m_61130_ (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/findNextInCollection (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61133_ (Ljava/util/Map;)V net/minecraft/world/level/block/state/StateHolder/populateNeighbours (Ljava/util/Map;)V +MD: net/minecraft/world/level/block/state/StateHolder/m_61138_ (Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/block/state/StateHolder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/block/state/StateHolder/m_61140_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/Map; net/minecraft/world/level/block/state/StateHolder/makeNeighbourValues (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/Map; +MD: net/minecraft/world/level/block/state/StateHolder/m_61143_ (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Comparable; net/minecraft/world/level/block/state/StateHolder/getValue (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Comparable; +MD: net/minecraft/world/level/block/state/StateHolder/m_61145_ (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/util/Optional; net/minecraft/world/level/block/state/StateHolder/getOptionalValue (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/StateHolder/m_61147_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/StateHolder/getProperties ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/StateHolder/m_61148_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/world/level/block/state/StateHolder/getValues ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/world/level/block/state/StateHolder/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/StateHolder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/StateHolder$1/ ()V net/minecraft/world/level/block/state/StateHolder$1/ ()V +MD: net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/StateHolder$1/m_61151_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/StateHolder$1/getName (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/state/pattern/BlockInWorld/ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61168_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/pattern/BlockInWorld/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61169_ (Ljava/util/function/Predicate;)Ljava/util/function/Predicate; net/minecraft/world/level/block/state/pattern/BlockInWorld/hasState (Ljava/util/function/Predicate;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61171_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/state/pattern/BlockInWorld/lambda$hasState$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61174_ ()Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/state/pattern/BlockInWorld/getEntity ()Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61175_ ()Lnet/minecraft/world/level/LevelReader; net/minecraft/world/level/block/state/pattern/BlockInWorld/getLevel ()Lnet/minecraft/world/level/LevelReader; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61176_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/state/pattern/BlockInWorld/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/ ([[[Ljava/util/function/Predicate;)V net/minecraft/world/level/block/state/pattern/BlockPattern/ ([[[Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_155964_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/block/state/pattern/BlockPattern/matches (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_155969_ ()[[[Ljava/util/function/Predicate; net/minecraft/world/level/block/state/pattern/BlockPattern/getPattern ()[[[Ljava/util/function/Predicate; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61183_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern/getDepth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61184_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/block/state/pattern/BlockPattern/find (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61187_ (Lnet/minecraft/world/level/LevelReader;Z)Lcom/google/common/cache/LoadingCache; net/minecraft/world/level/block/state/pattern/BlockPattern/createLevelCache (Lnet/minecraft/world/level/LevelReader;Z)Lcom/google/common/cache/LoadingCache; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61190_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;III)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/state/pattern/BlockPattern/translateAndRotate (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61197_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/block/state/pattern/BlockPattern/matches (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61202_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern/getHeight ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61203_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern/getWidth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/ (Lnet/minecraft/world/level/LevelReader;Z)V net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/ (Lnet/minecraft/world/level/LevelReader;Z)V +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;III)V net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;III)V +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_155970_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getWidth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_155971_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getHeight ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_155972_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getDepth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61228_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getFrontTopLeft ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61229_ (III)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getBlock (III)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61233_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getForwards ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61234_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getUp ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_187548_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/lambda$new$0 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61243_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/start ()Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61244_ (CLjava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/where (CLjava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61247_ ([Ljava/lang/String;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/aisle ([Ljava/lang/String;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61249_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/build ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61250_ ()[[[Ljava/util/function/Predicate; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/createPattern ()[[[Ljava/util/function/Predicate; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61251_ ()V net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ensureAllCharactersMatched ()V +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/state/predicate/BlockPredicate/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/m_61275_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockPredicate; net/minecraft/world/level/block/state/predicate/BlockPredicate/forBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockPredicate; +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ ()V net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ ()V +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61287_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; net/minecraft/world/level/block/state/predicate/BlockStatePredicate/forBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61291_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/applies (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61295_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; net/minecraft/world/level/block/state/predicate/BlockStatePredicate/where (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61298_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/properties/AttachFace/ ()V net/minecraft/world/level/block/state/properties/AttachFace/ ()V +MD: net/minecraft/world/level/block/state/properties/AttachFace/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/AttachFace/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/AttachFace/m_155973_ ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; net/minecraft/world/level/block/state/properties/AttachFace/$values ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; +MD: net/minecraft/world/level/block/state/properties/AttachFace/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/AttachFace/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/AttachFace/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/AttachFace; net/minecraft/world/level/block/state/properties/AttachFace/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/AttachFace; +MD: net/minecraft/world/level/block/state/properties/AttachFace/values ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; net/minecraft/world/level/block/state/properties/AttachFace/values ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/ ()V net/minecraft/world/level/block/state/properties/BambooLeaves/ ()V +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/BambooLeaves/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/m_155974_ ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; net/minecraft/world/level/block/state/properties/BambooLeaves/$values ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BambooLeaves/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BambooLeaves/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BambooLeaves; net/minecraft/world/level/block/state/properties/BambooLeaves/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/values ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; net/minecraft/world/level/block/state/properties/BambooLeaves/values ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +MD: net/minecraft/world/level/block/state/properties/BedPart/ ()V net/minecraft/world/level/block/state/properties/BedPart/ ()V +MD: net/minecraft/world/level/block/state/properties/BedPart/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/BedPart/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BedPart/m_155975_ ()[Lnet/minecraft/world/level/block/state/properties/BedPart; net/minecraft/world/level/block/state/properties/BedPart/$values ()[Lnet/minecraft/world/level/block/state/properties/BedPart; +MD: net/minecraft/world/level/block/state/properties/BedPart/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BedPart/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BedPart/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BedPart/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BedPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BedPart; net/minecraft/world/level/block/state/properties/BedPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BedPart; +MD: net/minecraft/world/level/block/state/properties/BedPart/values ()[Lnet/minecraft/world/level/block/state/properties/BedPart; net/minecraft/world/level/block/state/properties/BedPart/values ()[Lnet/minecraft/world/level/block/state/properties/BedPart; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/ ()V net/minecraft/world/level/block/state/properties/BellAttachType/ ()V +MD: net/minecraft/world/level/block/state/properties/BellAttachType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/BellAttachType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BellAttachType/m_155976_ ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; net/minecraft/world/level/block/state/properties/BellAttachType/$values ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BellAttachType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BellAttachType; net/minecraft/world/level/block/state/properties/BellAttachType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BellAttachType; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/values ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; net/minecraft/world/level/block/state/properties/BellAttachType/values ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/ ()V net/minecraft/world/level/block/state/properties/BlockSetType/ ()V +MD: net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;ZLnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;ZLnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;)V net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BlockSetType/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/BlockSetType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271136_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/properties/BlockSetType/soundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271141_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/doorOpen ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271194_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOff ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271234_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOff ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271253_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BlockSetType/name ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271258_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorOpen ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271394_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOn ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271425_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorClose ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271481_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOn ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271502_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/doorClose ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_278463_ ()Z net/minecraft/world/level/block/state/properties/BlockSetType/canOpenByHand ()Z +MD: net/minecraft/world/level/block/state/properties/BlockSetType/hashCode ()I net/minecraft/world/level/block/state/properties/BlockSetType/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/BlockSetType/m_271801_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/properties/BlockSetType/values ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/m_272115_ (Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; net/minecraft/world/level/block/state/properties/BlockSetType/register (Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BlockSetType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/m_61453_ (Lnet/minecraft/world/level/block/state/properties/RailShape;)Z net/minecraft/world/level/block/state/properties/BlockStateProperties/lambda$static$1 (Lnet/minecraft/world/level/block/state/properties/RailShape;)Z +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/m_61455_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/properties/BlockStateProperties/lambda$static$0 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/ (Ljava/lang/String;)V net/minecraft/world/level/block/state/properties/BooleanProperty/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/BooleanProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_61465_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; net/minecraft/world/level/block/state/properties/BooleanProperty/create (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/BooleanProperty/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6310_ ()I net/minecraft/world/level/block/state/properties/BooleanProperty/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/BooleanProperty/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/BooleanProperty/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6940_ (Ljava/lang/Boolean;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/BooleanProperty/getName (Ljava/lang/Boolean;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ChestType/ ()V net/minecraft/world/level/block/state/properties/ChestType/ ()V +MD: net/minecraft/world/level/block/state/properties/ChestType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/ChestType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/ChestType/m_156001_ ()[Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/$values ()[Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType/m_61486_ ()Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/getOpposite ()Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/ChestType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ChestType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType/values ()[Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/values ()[Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType$1/ ()V net/minecraft/world/level/block/state/properties/ChestType$1/ ()V +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/ ()V net/minecraft/world/level/block/state/properties/ComparatorMode/ ()V +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/ComparatorMode/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/m_156002_ ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; net/minecraft/world/level/block/state/properties/ComparatorMode/$values ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/ComparatorMode/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/ComparatorMode/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ComparatorMode; net/minecraft/world/level/block/state/properties/ComparatorMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/values ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; net/minecraft/world/level/block/state/properties/ComparatorMode/values ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/ (Ljava/lang/String;Ljava/util/Collection;)V net/minecraft/world/level/block/state/properties/DirectionProperty/ (Ljava/lang/String;Ljava/util/Collection;)V +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_156003_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_187557_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/properties/DirectionProperty/lambda$create$0 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_61543_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_61546_ (Ljava/lang/String;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_61549_ (Ljava/lang/String;[Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;[Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/ ()V net/minecraft/world/level/block/state/properties/DoorHingeSide/ ()V +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/properties/DoorHingeSide/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/m_156005_ ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/state/properties/DoorHingeSide/$values ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoorHingeSide/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoorHingeSide/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/state/properties/DoorHingeSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/values ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/state/properties/DoorHingeSide/values ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ ()V net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ ()V +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/m_156006_ ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/$values ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/values ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/values ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/ ()V net/minecraft/world/level/block/state/properties/DripstoneThickness/ ()V +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/DripstoneThickness/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/m_156019_ ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/state/properties/DripstoneThickness/$values ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DripstoneThickness/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DripstoneThickness/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/state/properties/DripstoneThickness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/values ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/state/properties/DripstoneThickness/values ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V net/minecraft/world/level/block/state/properties/EnumProperty/ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V +MD: net/minecraft/world/level/block/state/properties/EnumProperty/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/EnumProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_187559_ (Ljava/lang/Enum;)Z net/minecraft/world/level/block/state/properties/EnumProperty/lambda$create$0 (Ljava/lang/Enum;)Z +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61587_ (Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61590_ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61594_ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61598_ (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/EnumProperty/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6310_ ()I net/minecraft/world/level/block/state/properties/EnumProperty/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/EnumProperty/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/EnumProperty/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6940_ (Ljava/lang/Enum;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/EnumProperty/getName (Ljava/lang/Enum;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Half/ ()V net/minecraft/world/level/block/state/properties/Half/ ()V +MD: net/minecraft/world/level/block/state/properties/Half/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/Half/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/Half/m_156025_ ()[Lnet/minecraft/world/level/block/state/properties/Half; net/minecraft/world/level/block/state/properties/Half/$values ()[Lnet/minecraft/world/level/block/state/properties/Half; +MD: net/minecraft/world/level/block/state/properties/Half/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Half/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Half/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Half/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Half/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Half; net/minecraft/world/level/block/state/properties/Half/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Half; +MD: net/minecraft/world/level/block/state/properties/Half/values ()[Lnet/minecraft/world/level/block/state/properties/Half; net/minecraft/world/level/block/state/properties/Half/values ()[Lnet/minecraft/world/level/block/state/properties/Half; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/ (Ljava/lang/String;II)V net/minecraft/world/level/block/state/properties/IntegerProperty/ (Ljava/lang/String;II)V +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/IntegerProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_61631_ (Ljava/lang/String;II)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/state/properties/IntegerProperty/create (Ljava/lang/String;II)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/IntegerProperty/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6310_ ()I net/minecraft/world/level/block/state/properties/IntegerProperty/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/IntegerProperty/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/IntegerProperty/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6940_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/IntegerProperty/getName (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ ()V net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ ()V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type;)V net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type;)V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_156026_ ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/$values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_262394_ ()Z net/minecraft/world/level/block/state/properties/NoteBlockInstrument/hasCustomSound ()Z +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_262503_ ()Z net/minecraft/world/level/block/state/properties/NoteBlockInstrument/isTunable ()Z +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_263188_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/getSoundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_280504_ ()Z net/minecraft/world/level/block/state/properties/NoteBlockInstrument/worksAboveNoteBlock ()Z +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ ()V net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ ()V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/m_262420_ ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/$values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +MD: net/minecraft/world/level/block/state/properties/PistonType/ ()V net/minecraft/world/level/block/state/properties/PistonType/ ()V +MD: net/minecraft/world/level/block/state/properties/PistonType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/PistonType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/PistonType/m_156027_ ()[Lnet/minecraft/world/level/block/state/properties/PistonType; net/minecraft/world/level/block/state/properties/PistonType/$values ()[Lnet/minecraft/world/level/block/state/properties/PistonType; +MD: net/minecraft/world/level/block/state/properties/PistonType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/PistonType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/PistonType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/PistonType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/PistonType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/PistonType; net/minecraft/world/level/block/state/properties/PistonType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/PistonType; +MD: net/minecraft/world/level/block/state/properties/PistonType/values ()[Lnet/minecraft/world/level/block/state/properties/PistonType; net/minecraft/world/level/block/state/properties/PistonType/values ()[Lnet/minecraft/world/level/block/state/properties/PistonType; +MD: net/minecraft/world/level/block/state/properties/Property/ (Ljava/lang/String;Ljava/lang/Class;)V net/minecraft/world/level/block/state/properties/Property/ (Ljava/lang/String;Ljava/lang/Class;)V +MD: net/minecraft/world/level/block/state/properties/Property/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/Property/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/Property/hashCode ()I net/minecraft/world/level/block/state/properties/Property/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/Property/m_156028_ (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/properties/Property/lambda$parseValue$3 (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/properties/Property/m_156031_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/state/properties/Property/parseValue (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/state/properties/Property/m_156037_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/properties/Property/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/properties/Property/m_274277_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/lambda$new$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property/m_274278_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/state/properties/Property/lambda$new$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/state/properties/Property/m_61694_ (Lnet/minecraft/world/level/block/state/StateHolder;)Lnet/minecraft/world/level/block/state/properties/Property$Value; net/minecraft/world/level/block/state/properties/Property/value (Lnet/minecraft/world/level/block/state/StateHolder;)Lnet/minecraft/world/level/block/state/properties/Property$Value; +MD: net/minecraft/world/level/block/state/properties/Property/m_61697_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/state/properties/Property/lambda$new$2 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/state/properties/Property/m_61699_ (Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/properties/Property$Value; net/minecraft/world/level/block/state/properties/Property/value (Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/properties/Property$Value; +MD: net/minecraft/world/level/block/state/properties/Property/m_61702_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/properties/Property/getAllValues ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/properties/Property/m_61705_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/properties/Property/valueCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/properties/Property/m_61708_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property/m_61709_ ()Ljava/lang/Class; net/minecraft/world/level/block/state/properties/Property/getValueClass ()Ljava/lang/Class; +MD: net/minecraft/world/level/block/state/properties/Property/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/Property/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/Property/m_6310_ ()I net/minecraft/world/level/block/state/properties/Property/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/Property/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/Property/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/Property/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property$Value/ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V net/minecraft/world/level/block/state/properties/Property$Value/ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V +MD: net/minecraft/world/level/block/state/properties/Property$Value/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/Property$Value/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/Property$Value/f_61712_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/state/properties/Property$Value/property ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/state/properties/Property$Value/f_61713_ ()Ljava/lang/Comparable; net/minecraft/world/level/block/state/properties/Property$Value/value ()Ljava/lang/Comparable; +MD: net/minecraft/world/level/block/state/properties/Property$Value/hashCode ()I net/minecraft/world/level/block/state/properties/Property$Value/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/Property$Value/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property$Value/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/ ()V net/minecraft/world/level/block/state/properties/RailShape/ ()V +MD: net/minecraft/world/level/block/state/properties/RailShape/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/RailShape/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/RailShape/m_156038_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RailShape/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/m_156039_ ()[Lnet/minecraft/world/level/block/state/properties/RailShape; net/minecraft/world/level/block/state/properties/RailShape/$values ()[Lnet/minecraft/world/level/block/state/properties/RailShape; +MD: net/minecraft/world/level/block/state/properties/RailShape/m_61745_ ()Z net/minecraft/world/level/block/state/properties/RailShape/isAscending ()Z +MD: net/minecraft/world/level/block/state/properties/RailShape/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RailShape/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RailShape/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RailShape; net/minecraft/world/level/block/state/properties/RailShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RailShape; +MD: net/minecraft/world/level/block/state/properties/RailShape/values ()[Lnet/minecraft/world/level/block/state/properties/RailShape; net/minecraft/world/level/block/state/properties/RailShape/values ()[Lnet/minecraft/world/level/block/state/properties/RailShape; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/ ()V net/minecraft/world/level/block/state/properties/RedstoneSide/ ()V +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/RedstoneSide/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/m_156040_ ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/state/properties/RedstoneSide/$values ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/m_61761_ ()Z net/minecraft/world/level/block/state/properties/RedstoneSide/isConnected ()Z +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RedstoneSide/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RedstoneSide/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/state/properties/RedstoneSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/values ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/state/properties/RedstoneSide/values ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/state/properties/RotationSegment/ ()V net/minecraft/world/level/block/state/properties/RotationSegment/ ()V +MD: net/minecraft/world/level/block/state/properties/RotationSegment/ ()V net/minecraft/world/level/block/state/properties/RotationSegment/ ()V +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_245107_ (I)F net/minecraft/world/level/block/state/properties/RotationSegment/convertToDegrees (I)F +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_245225_ (Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/properties/RotationSegment/convertToSegment (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_246374_ (F)I net/minecraft/world/level/block/state/properties/RotationSegment/convertToSegment (F)I +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_247348_ ()I net/minecraft/world/level/block/state/properties/RotationSegment/getMaxSegmentIndex ()I +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_247487_ (I)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/RotationSegment/convertToDirection (I)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/ ()V net/minecraft/world/level/block/state/properties/SculkSensorPhase/ ()V +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/SculkSensorPhase/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/m_156051_ ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/state/properties/SculkSensorPhase/$values ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SculkSensorPhase/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SculkSensorPhase/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/state/properties/SculkSensorPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/values ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/state/properties/SculkSensorPhase/values ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/state/properties/SlabType/ ()V net/minecraft/world/level/block/state/properties/SlabType/ ()V +MD: net/minecraft/world/level/block/state/properties/SlabType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/SlabType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/SlabType/m_156057_ ()[Lnet/minecraft/world/level/block/state/properties/SlabType; net/minecraft/world/level/block/state/properties/SlabType/$values ()[Lnet/minecraft/world/level/block/state/properties/SlabType; +MD: net/minecraft/world/level/block/state/properties/SlabType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SlabType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SlabType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SlabType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SlabType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SlabType; net/minecraft/world/level/block/state/properties/SlabType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SlabType; +MD: net/minecraft/world/level/block/state/properties/SlabType/values ()[Lnet/minecraft/world/level/block/state/properties/SlabType; net/minecraft/world/level/block/state/properties/SlabType/values ()[Lnet/minecraft/world/level/block/state/properties/SlabType; +MD: net/minecraft/world/level/block/state/properties/StairsShape/ ()V net/minecraft/world/level/block/state/properties/StairsShape/ ()V +MD: net/minecraft/world/level/block/state/properties/StairsShape/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/StairsShape/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/StairsShape/m_156069_ ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/state/properties/StairsShape/$values ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/state/properties/StairsShape/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/StairsShape/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/StairsShape/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/StairsShape/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/StairsShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/state/properties/StairsShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/state/properties/StairsShape/values ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/state/properties/StairsShape/values ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/state/properties/StructureMode/ ()V net/minecraft/world/level/block/state/properties/StructureMode/ ()V +MD: net/minecraft/world/level/block/state/properties/StructureMode/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/StructureMode/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/StructureMode/m_156070_ ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/state/properties/StructureMode/$values ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/state/properties/StructureMode/m_61811_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/state/properties/StructureMode/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/state/properties/StructureMode/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/StructureMode/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/StructureMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/state/properties/StructureMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/state/properties/StructureMode/values ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/state/properties/StructureMode/values ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/state/properties/Tilt/ ()V net/minecraft/world/level/block/state/properties/Tilt/ ()V +MD: net/minecraft/world/level/block/state/properties/Tilt/ (Ljava/lang/String;ILjava/lang/String;Z)V net/minecraft/world/level/block/state/properties/Tilt/ (Ljava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/world/level/block/state/properties/Tilt/m_156084_ ()Z net/minecraft/world/level/block/state/properties/Tilt/causesVibration ()Z +MD: net/minecraft/world/level/block/state/properties/Tilt/m_156085_ ()[Lnet/minecraft/world/level/block/state/properties/Tilt; net/minecraft/world/level/block/state/properties/Tilt/$values ()[Lnet/minecraft/world/level/block/state/properties/Tilt; +MD: net/minecraft/world/level/block/state/properties/Tilt/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Tilt/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Tilt/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Tilt; net/minecraft/world/level/block/state/properties/Tilt/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Tilt; +MD: net/minecraft/world/level/block/state/properties/Tilt/values ()[Lnet/minecraft/world/level/block/state/properties/Tilt; net/minecraft/world/level/block/state/properties/Tilt/values ()[Lnet/minecraft/world/level/block/state/properties/Tilt; +MD: net/minecraft/world/level/block/state/properties/WallSide/ ()V net/minecraft/world/level/block/state/properties/WallSide/ ()V +MD: net/minecraft/world/level/block/state/properties/WallSide/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/WallSide/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/WallSide/m_156090_ ()[Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/state/properties/WallSide/$values ()[Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/state/properties/WallSide/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WallSide/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/WallSide/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WallSide/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/WallSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/state/properties/WallSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/state/properties/WallSide/values ()[Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/state/properties/WallSide/values ()[Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/state/properties/WoodType/ ()V net/minecraft/world/level/block/state/properties/WoodType/ ()V +MD: net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/state/properties/WoodType/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/WoodType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271162_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/WoodType/fenceGateOpen ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271309_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/properties/WoodType/hangingSignSoundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271317_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/properties/WoodType/soundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271340_ ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; net/minecraft/world/level/block/state/properties/WoodType/setType ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271365_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/WoodType/fenceGateClose ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_61839_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WoodType/name ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/WoodType/hashCode ()I net/minecraft/world/level/block/state/properties/WoodType/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/WoodType/m_61843_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/properties/WoodType/values ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/properties/WoodType/m_61844_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/world/level/block/state/properties/WoodType/register (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/world/level/block/state/properties/WoodType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WoodType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/border/BorderChangeListener/m_5903_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetWarningBlocks (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_5904_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetWarningTime (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6312_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener/onBorderSizeSet (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6313_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetDamageSafeZOne (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6315_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetDamagePerBlock (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6689_ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/world/level/border/BorderChangeListener/onBorderSizeLerping (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_7721_ (Lnet/minecraft/world/level/border/WorldBorder;DD)V net/minecraft/world/level/border/BorderChangeListener/onBorderCenterSet (Lnet/minecraft/world/level/border/WorldBorder;DD)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_5903_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetWarningBlocks (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_5904_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetWarningTime (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6312_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSizeSet (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6313_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetDamageSafeZOne (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6315_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetDamagePerBlock (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6689_ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSizeLerping (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_7721_ (Lnet/minecraft/world/level/border/WorldBorder;DD)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderCenterSet (Lnet/minecraft/world/level/border/WorldBorder;DD)V +MD: net/minecraft/world/level/border/BorderStatus/ ()V net/minecraft/world/level/border/BorderStatus/ ()V +MD: net/minecraft/world/level/border/BorderStatus/ (Ljava/lang/String;II)V net/minecraft/world/level/border/BorderStatus/ (Ljava/lang/String;II)V +MD: net/minecraft/world/level/border/BorderStatus/m_156091_ ()[Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/BorderStatus/$values ()[Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/BorderStatus/m_61901_ ()I net/minecraft/world/level/border/BorderStatus/getColor ()I +MD: net/minecraft/world/level/border/BorderStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/BorderStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/BorderStatus/values ()[Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/BorderStatus/values ()[Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder/ ()V net/minecraft/world/level/border/WorldBorder/ ()V +MD: net/minecraft/world/level/border/WorldBorder/ ()V net/minecraft/world/level/border/WorldBorder/ ()V +MD: net/minecraft/world/level/border/WorldBorder/m_156093_ (DD)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (DD)Z +MD: net/minecraft/world/level/border/WorldBorder/m_156096_ (Lnet/minecraft/world/level/border/BorderChangeListener;)V net/minecraft/world/level/border/WorldBorder/removeListener (Lnet/minecraft/world/level/border/BorderChangeListener;)V +MD: net/minecraft/world/level/border/WorldBorder/m_187562_ (DDD)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (DDD)Z +MD: net/minecraft/world/level/border/WorldBorder/m_187566_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/border/WorldBorder/isInsideCloseToBorder (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_187569_ (DDD)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/border/WorldBorder/clampToBounds (DDD)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/border/WorldBorder/m_61917_ (D)V net/minecraft/world/level/border/WorldBorder/setSize (D)V +MD: net/minecraft/world/level/border/WorldBorder/m_61919_ (DDJ)V net/minecraft/world/level/border/WorldBorder/lerpSizeBetween (DDJ)V +MD: net/minecraft/world/level/border/WorldBorder/m_61923_ (I)V net/minecraft/world/level/border/WorldBorder/setAbsoluteMaxSize (I)V +MD: net/minecraft/world/level/border/WorldBorder/m_61925_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/level/border/WorldBorder/getDistanceToBorder (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/level/border/WorldBorder/m_61927_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_61929_ (Lnet/minecraft/world/level/border/BorderChangeListener;)V net/minecraft/world/level/border/WorldBorder/addListener (Lnet/minecraft/world/level/border/BorderChangeListener;)V +MD: net/minecraft/world/level/border/WorldBorder/m_61931_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/border/WorldBorder/applySettings (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/border/WorldBorder/m_61935_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_61937_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_61939_ (D)V net/minecraft/world/level/border/WorldBorder/setDamageSafeZone (D)V +MD: net/minecraft/world/level/border/WorldBorder/m_61941_ (DD)D net/minecraft/world/level/border/WorldBorder/getDistanceToBorder (DD)D +MD: net/minecraft/world/level/border/WorldBorder/m_61944_ (I)V net/minecraft/world/level/border/WorldBorder/setWarningTime (I)V +MD: net/minecraft/world/level/border/WorldBorder/m_61946_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder/m_61947_ (D)V net/minecraft/world/level/border/WorldBorder/setDamagePerBlock (D)V +MD: net/minecraft/world/level/border/WorldBorder/m_61949_ (DD)V net/minecraft/world/level/border/WorldBorder/setCenter (DD)V +MD: net/minecraft/world/level/border/WorldBorder/m_61952_ (I)V net/minecraft/world/level/border/WorldBorder/setWarningBlocks (I)V +MD: net/minecraft/world/level/border/WorldBorder/m_61954_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder/m_61955_ ()D net/minecraft/world/level/border/WorldBorder/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61956_ ()D net/minecraft/world/level/border/WorldBorder/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61957_ ()D net/minecraft/world/level/border/WorldBorder/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61958_ ()D net/minecraft/world/level/border/WorldBorder/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61959_ ()D net/minecraft/world/level/border/WorldBorder/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61960_ ()J net/minecraft/world/level/border/WorldBorder/getLerpRemainingTime ()J +MD: net/minecraft/world/level/border/WorldBorder/m_61961_ ()D net/minecraft/world/level/border/WorldBorder/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61962_ ()Ljava/util/List; net/minecraft/world/level/border/WorldBorder/getListeners ()Ljava/util/List; +MD: net/minecraft/world/level/border/WorldBorder/m_61963_ ()I net/minecraft/world/level/border/WorldBorder/getAbsoluteMaxSize ()I +MD: net/minecraft/world/level/border/WorldBorder/m_61964_ ()D net/minecraft/world/level/border/WorldBorder/getDamageSafeZone ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61965_ ()D net/minecraft/world/level/border/WorldBorder/getDamagePerBlock ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61966_ ()D net/minecraft/world/level/border/WorldBorder/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61967_ ()I net/minecraft/world/level/border/WorldBorder/getWarningTime ()I +MD: net/minecraft/world/level/border/WorldBorder/m_61968_ ()I net/minecraft/world/level/border/WorldBorder/getWarningBlocks ()I +MD: net/minecraft/world/level/border/WorldBorder/m_61969_ ()V net/minecraft/world/level/border/WorldBorder/tick ()V +MD: net/minecraft/world/level/border/WorldBorder/m_61970_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/border/WorldBorder/createSettings ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/border/WorldBorder/m_6345_ ()D net/minecraft/world/level/border/WorldBorder/getCenterZ ()D +MD: net/minecraft/world/level/border/WorldBorder/m_6347_ ()D net/minecraft/world/level/border/WorldBorder/getCenterX ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_5570_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder$BorderExtent/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_5794_ ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; net/minecraft/world/level/border/WorldBorder$BorderExtent/update ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6186_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder$BorderExtent/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6605_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6606_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6608_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6611_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6613_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6618_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6619_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6622_ ()V net/minecraft/world/level/border/WorldBorder$BorderExtent/onCenterChange ()V +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6623_ ()V net/minecraft/world/level/border/WorldBorder$BorderExtent/onAbsoluteMaxSizeChange ()V +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6738_ ()J net/minecraft/world/level/border/WorldBorder$BorderExtent/getLerpRemainingTime ()J +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_5570_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_5794_ ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/update ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6186_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6605_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6606_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6608_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6611_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6613_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6618_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6619_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6622_ ()V net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/onCenterChange ()V +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6623_ ()V net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/onAbsoluteMaxSizeChange ()V +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6738_ ()J net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getLerpRemainingTime ()J +MD: net/minecraft/world/level/border/WorldBorder$Settings/ (DDDDIIDJD)V net/minecraft/world/level/border/WorldBorder$Settings/ (DDDDIIDJD)V +MD: net/minecraft/world/level/border/WorldBorder$Settings/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/world/level/border/WorldBorder$Settings/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62036_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getCenterX ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62037_ (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/border/WorldBorder$Settings;)Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/border/WorldBorder$Settings/read (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/border/WorldBorder$Settings;)Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62040_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/border/WorldBorder$Settings/write (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62042_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getCenterZ ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62043_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getDamagePerBlock ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62044_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getSafeZone ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62045_ ()I net/minecraft/world/level/border/WorldBorder$Settings/getWarningBlocks ()I +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62046_ ()I net/minecraft/world/level/border/WorldBorder$Settings/getWarningTime ()I +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62047_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62048_ ()J net/minecraft/world/level/border/WorldBorder$Settings/getSizeLerpTime ()J +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62049_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getSizeLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_5570_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_5794_ ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/update ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6186_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_62073_ ()V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/updateBox ()V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6605_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6606_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6608_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6611_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6613_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6618_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6619_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6622_ ()V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/onCenterChange ()V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6623_ ()V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/onAbsoluteMaxSizeChange ()V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6738_ ()J net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getLerpRemainingTime ()J +MD: net/minecraft/world/level/chunk/BlockColumn/m_183556_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/BlockColumn/getBlock (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/BlockColumn/m_183639_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/chunk/BlockColumn/setBlock (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/chunk/BulkSectionAccess/ (Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/chunk/BulkSectionAccess/ (Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/chunk/BulkSectionAccess/close ()V net/minecraft/world/level/chunk/BulkSectionAccess/close ()V +MD: net/minecraft/world/level/chunk/BulkSectionAccess/m_156104_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/BulkSectionAccess/getSection (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/BulkSectionAccess/m_156106_ (Lnet/minecraft/core/BlockPos;IJ)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/BulkSectionAccess/lambda$getSection$0 (Lnet/minecraft/core/BlockPos;IJ)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/BulkSectionAccess/m_156110_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/BulkSectionAccess/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/CarvingMask/ ([JI)V net/minecraft/world/level/chunk/CarvingMask/ ([JI)V +MD: net/minecraft/world/level/chunk/CarvingMask/ (II)V net/minecraft/world/level/chunk/CarvingMask/ (II)V +MD: net/minecraft/world/level/chunk/CarvingMask/m_187584_ ()[J net/minecraft/world/level/chunk/CarvingMask/toArray ()[J +MD: net/minecraft/world/level/chunk/CarvingMask/m_187585_ (III)V net/minecraft/world/level/chunk/CarvingMask/set (III)V +MD: net/minecraft/world/level/chunk/CarvingMask/m_187589_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; net/minecraft/world/level/chunk/CarvingMask/stream (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/chunk/CarvingMask/m_187594_ (III)Z net/minecraft/world/level/chunk/CarvingMask/get (III)Z +MD: net/minecraft/world/level/chunk/CarvingMask/m_187598_ (III)I net/minecraft/world/level/chunk/CarvingMask/getIndex (III)I +MD: net/minecraft/world/level/chunk/CarvingMask/m_196707_ (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/CarvingMask/lambda$stream$1 (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/CarvingMask/m_196710_ (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;)V net/minecraft/world/level/chunk/CarvingMask/setAdditionalMask (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;)V +MD: net/minecraft/world/level/chunk/CarvingMask/m_196712_ (III)Z net/minecraft/world/level/chunk/CarvingMask/lambda$new$0 (III)Z +MD: net/minecraft/world/level/chunk/CarvingMask$Mask/m_196716_ (III)Z net/minecraft/world/level/chunk/CarvingMask$Mask/test (III)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/ ()V net/minecraft/world/level/chunk/ChunkAccess/ ()V +MD: net/minecraft/world/level/chunk/ChunkAccess/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ChunkAccess/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_141928_ ()I net/minecraft/world/level/chunk/ChunkAccess/getHeight ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_141937_ ()I net/minecraft/world/level/chunk/ChunkAccess/getMinBuildHeight ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/ChunkAccess/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183278_ (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ChunkAccess/getSection (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183376_ ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; net/minecraft/world/level/chunk/ChunkAccess/getBelowZeroRetrogen ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183400_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ChunkAccess/setBlendingData (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183407_ ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; net/minecraft/world/level/chunk/ChunkAccess/getBlendingData ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183442_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/chunk/ChunkAccess/fillBiomesFromNoise (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ChunkAccess/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ChunkAccess/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/ChunkAccess/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183618_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/chunk/ChunkAccess/getHeightAccessorForGeneration ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187632_ (J)V net/minecraft/world/level/chunk/ChunkAccess/incrementInhabitedTime (J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187658_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z net/minecraft/world/level/chunk/ChunkAccess/hasPrimedHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187664_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; net/minecraft/world/level/chunk/ChunkAccess/lambda$getOrCreateHeightmapUnprimed$0 (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187675_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isOldNoiseGeneration ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187678_ ()Z net/minecraft/world/level/chunk/ChunkAccess/hasAnyStructureReferences ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187679_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isUpgrading ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/ChunkAccess/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_207933_ (III)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkAccess/lambda$getNoiseBiome$3 (III)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213649_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/ChunkAccess/getReferencesForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213652_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/chunk/ChunkAccess/getStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ChunkAccess/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213843_ (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V net/minecraft/world/level/chunk/ChunkAccess/addReferenceForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_223012_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/chunk/ChunkAccess/getOrCreateNoiseChunk (Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_223014_ (Ljava/util/function/Supplier;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/chunk/ChunkAccess/carverBiome (Ljava/util/function/Supplier;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_223018_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/ChunkAccess/lambda$addReferenceForStructure$1 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_246686_ (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; net/minecraft/world/level/chunk/ChunkAccess/getListenerRegistry (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_280116_ (Lnet/minecraft/core/Registry;[Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/world/level/chunk/ChunkAccess/replaceMissingSections (Lnet/minecraft/core/Registry;[Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_280525_ ()I net/minecraft/world/level/chunk/ChunkAccess/getHighestFilledSectionIndex ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284111_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/chunk/ChunkAccess/lambda$findBlockLightSources$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284190_ ()V net/minecraft/world/level/chunk/ChunkAccess/initializeLightSources ()V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284254_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/ChunkAccess/findBlockLightSources (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284331_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkAccess/getHighestGeneratedStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284400_ ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/chunk/ChunkAccess/getSkyLightSources ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284478_ (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/ChunkAccess/findBlocks (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5566_ (II)Z net/minecraft/world/level/chunk/ChunkAccess/isYSpaceEmpty (II)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5604_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/ChunkAccess/setBlockEntityNbt (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5885_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/chunk/ChunkAccess/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5928_ ()Ljava/util/Set; net/minecraft/world/level/chunk/ChunkAccess/getBlockEntitiesPos ()Ljava/util/Set; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6005_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; net/minecraft/world/level/chunk/ChunkAccess/getOrCreateHeightmapUnprimed (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6141_ (J)V net/minecraft/world/level/chunk/ChunkAccess/setInhabitedTime (J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62095_ ([Lit/unimi/dsi/fastutil/shorts/ShortList;I)Lit/unimi/dsi/fastutil/shorts/ShortList; net/minecraft/world/level/chunk/ChunkAccess/getOrCreateOffsetList ([Lit/unimi/dsi/fastutil/shorts/ShortList;I)Lit/unimi/dsi/fastutil/shorts/ShortList; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62098_ ()I net/minecraft/world/level/chunk/ChunkAccess/getHighestSectionPosition ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62737_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ChunkAccess/setAllReferences (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62769_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ChunkAccess/getAllReferences ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/ChunkAccess/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6319_ ()J net/minecraft/world/level/chunk/ChunkAccess/getInhabitedTime ()J +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6332_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isLightCorrect ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6344_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isUnsaved ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkAccess/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6511_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V net/minecraft/world/level/chunk/ChunkAccess/setHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6561_ (SI)V net/minecraft/world/level/chunk/ChunkAccess/addPackedPostProcess (SI)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6633_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ChunkAccess/getAllStarts ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6720_ ()[Lit/unimi/dsi/fastutil/shorts/ShortList; net/minecraft/world/level/chunk/ChunkAccess/getPostProcessing ()[Lit/unimi/dsi/fastutil/shorts/ShortList; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6890_ ()Ljava/util/Collection; net/minecraft/world/level/chunk/ChunkAccess/getHeightmaps ()Ljava/util/Collection; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ChunkAccess/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_7103_ ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ChunkAccess/getSections ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_7387_ ()Lnet/minecraft/world/level/chunk/UpgradeData; net/minecraft/world/level/chunk/ChunkAccess/getUpgradeData ()Lnet/minecraft/world/level/chunk/UpgradeData; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_7697_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/ChunkAccess/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8040_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ChunkAccess/setAllStarts (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8049_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ChunkAccess/getBlockEntityNbt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ChunkAccess/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8092_ (Z)V net/minecraft/world/level/chunk/ChunkAccess/setUnsaved (Z)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8094_ (Z)V net/minecraft/world/level/chunk/ChunkAccess/setLightCorrect (Z)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8113_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ChunkAccess/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ChunkAccess/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/ (Lnet/minecraft/world/ticks/SerializableTickContainer;Lnet/minecraft/world/ticks/SerializableTickContainer;)V net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/ (Lnet/minecraft/world/ticks/SerializableTickContainer;Lnet/minecraft/world/ticks/SerializableTickContainer;)V +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187680_ ()Lnet/minecraft/world/ticks/SerializableTickContainer; net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/blocks ()Lnet/minecraft/world/ticks/SerializableTickContainer; +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187681_ ()Lnet/minecraft/world/ticks/SerializableTickContainer; net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/fluids ()Lnet/minecraft/world/ticks/SerializableTickContainer; +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/hashCode ()I net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/hashCode ()I +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/ ()V net/minecraft/world/level/chunk/ChunkGenerator/ ()V +MD: net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;)V net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)V net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_142051_ (Lnet/minecraft/world/level/LevelHeightAccessor;)I net/minecraft/world/level/chunk/ChunkGenerator/getSpawnHeight (Lnet/minecraft/world/level/LevelHeightAccessor;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_142062_ ()I net/minecraft/world/level/chunk/ChunkGenerator/getMinY ()I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_187717_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/chunk/ChunkGenerator/getWritableArea (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_187743_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/ChunkGenerator/getTypeNameForDataFixer ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ChunkGenerator/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213609_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V net/minecraft/world/level/chunk/ChunkGenerator/applyBiomeDecoration (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/chunk/ChunkGenerator/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213908_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkGenerator/createBiomes (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkGenerator/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/chunk/ChunkGenerator/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/chunk/ChunkGenerator/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkGenerator/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223037_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/BlockPos;IZ)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/findNearestMapStructure (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/BlockPos;IZ)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223054_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)I net/minecraft/world/level/chunk/ChunkGenerator/fetchReferences (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223059_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/chunk/ChunkGenerator/tryAddReference (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223062_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/chunk/ChunkGenerator/lambda$getMobsAt$11 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223076_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkGenerator/createReferences (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223080_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$8 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223090_ (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$6 (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223094_ (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGenerator/lambda$new$2 (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223097_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createBiomes$3 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223102_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/Integer; net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$5 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/Integer; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223104_ (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/SectionPos;)Z net/minecraft/world/level/chunk/ChunkGenerator/tryGenerateStructure (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223114_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$18 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223126_ (Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)Ljava/util/Set; net/minecraft/world/level/chunk/ChunkGenerator/lambda$findNearestMapStructure$4 (Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)Ljava/util/Set; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223128_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/chunk/ChunkGenerator/lambda$getMobsAt$12 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223131_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/chunk/ChunkGenerator/getBiomeGenerationSettings (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223133_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/chunk/ChunkGenerator/getMobsAt (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223171_ (Lit/unimi/dsi/fastutil/ints/IntSet;Lnet/minecraft/world/level/biome/FeatureSorter$StepFeatureData;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$9 (Lit/unimi/dsi/fastutil/ints/IntSet;Lnet/minecraft/world/level/biome/FeatureSorter$StepFeatureData;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223178_ (Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$16 (Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223181_ (Ljava/util/Set;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/getNearestGeneratedStructure (Ljava/util/Set;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223188_ (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;IIIZJLnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/getNearestGeneratedStructure (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;IIIZJLnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223198_ (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;ZLnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/getStructureGeneratingAt (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;ZLnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223214_ (Ljava/util/function/Function;Lnet/minecraft/core/Holder;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGenerator/lambda$new$1 (Ljava/util/function/Function;Lnet/minecraft/core/Holder;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223217_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$getMobsAt$13 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223221_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/chunk/ChunkGenerator/getFirstFreeHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223233_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/chunk/ChunkGenerator/lambda$new$0 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223235_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/chunk/ChunkGenerator/getFirstOccupiedHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_254811_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$createStructures$14 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_255037_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V net/minecraft/world/level/chunk/ChunkGenerator/createStructures (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_255169_ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/chunk/ChunkGenerator/createState (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257331_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/core/Registry;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$15 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/core/Registry;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257332_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$10 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257333_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$17 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257334_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$7 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_62218_ ()Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/chunk/ChunkGenerator/getBiomeSource ()Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6331_ ()I net/minecraft/world/level/chunk/ChunkGenerator/getGenDepth ()I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6337_ ()I net/minecraft/world/level/chunk/ChunkGenerator/getSeaLevel ()I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/ChunkGenerator/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/chunk/ChunkGenerator/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ ()V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ ()V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeSource;JJLjava/util/List;)V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeSource;JJLjava/util/List;)V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254876_ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$createForNormal$1 (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254887_ ()J net/minecraft/world/level/chunk/ChunkGeneratorStructureState/getLevelSeed ()J +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254933_ (Lcom/google/common/base/Stopwatch;Lnet/minecraft/core/Holder;Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generateRingPositions$6 (Lcom/google/common/base/Stopwatch;Lnet/minecraft/core/Holder;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254936_ (Lnet/minecraft/core/Holder;III)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/hasStructureChunkInRange (Lnet/minecraft/core/Holder;III)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254937_ (IILnet/minecraft/core/HolderSet;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generateRingPositions$5 (IILnet/minecraft/core/HolderSet;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254958_ ()V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ensureStructuresGenerated ()V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255018_ (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;)Ljava/util/stream/Stream; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$hasBiomesForStructureSet$2 (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255046_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255081_ (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/createForNormal (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255138_ ()V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/generatePositions ()V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255168_ (Ljava/util/Set;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generatePositions$4 (Ljava/util/Set;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255180_ (Lnet/minecraft/world/level/levelgen/structure/StructureSet;Lnet/minecraft/world/level/biome/BiomeSource;)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/hasBiomesForStructureSet (Lnet/minecraft/world/level/levelgen/structure/StructureSet;Lnet/minecraft/world/level/biome/BiomeSource;)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255182_ (Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/getRingPositionsFor (Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255187_ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$createForFlat$0 (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255252_ ()Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/possibleStructureSets ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255260_ (Lnet/minecraft/core/Holder;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/getPlacementsForStructure (Lnet/minecraft/core/Holder;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255294_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/generateRingPositions (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255343_ (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Ljava/util/stream/Stream;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/createForFlat (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Ljava/util/stream/Stream;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255431_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generatePositions$3 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGenerators/ ()V net/minecraft/world/level/chunk/ChunkGenerators/ ()V +MD: net/minecraft/world/level/chunk/ChunkGenerators/m_223242_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/ChunkGenerators/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/ChunkSource/ ()V net/minecraft/world/level/chunk/ChunkSource/ ()V +MD: net/minecraft/world/level/chunk/ChunkSource/close ()V net/minecraft/world/level/chunk/ChunkSource/close ()V +MD: net/minecraft/world/level/chunk/ChunkSource/m_201698_ (Ljava/util/function/BooleanSupplier;Z)V net/minecraft/world/level/chunk/ChunkSource/tick (Ljava/util/function/BooleanSupplier;Z)V +MD: net/minecraft/world/level/chunk/ChunkSource/m_5563_ (II)Z net/minecraft/world/level/chunk/ChunkSource/hasChunk (II)Z +MD: net/minecraft/world/level/chunk/ChunkSource/m_6196_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/world/level/chunk/ChunkSource/getChunkForLighting (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/world/level/chunk/ChunkSource/m_62227_ (IIZ)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/chunk/ChunkSource/getChunk (IIZ)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/chunk/ChunkSource/m_6692_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/chunk/ChunkSource/updateChunkForced (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/chunk/ChunkSource/m_6707_ (ZZ)V net/minecraft/world/level/chunk/ChunkSource/setSpawnSettings (ZZ)V +MD: net/minecraft/world/level/chunk/ChunkSource/m_6754_ ()Ljava/lang/String; net/minecraft/world/level/chunk/ChunkSource/gatherStats ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkSource/m_7131_ (II)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/chunk/ChunkSource/getChunkNow (II)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/chunk/ChunkSource/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/chunk/ChunkSource/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/chunk/ChunkSource/m_7827_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/world/level/chunk/ChunkSource/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/world/level/chunk/ChunkSource/m_8482_ ()I net/minecraft/world/level/chunk/ChunkSource/getLoadedChunksCount ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/ ()V net/minecraft/world/level/chunk/ChunkStatus/ ()V +MD: net/minecraft/world/level/chunk/ChunkStatus/ (Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V net/minecraft/world/level/chunk/ChunkStatus/ (Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_156185_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/getStatusAroundFullChunk (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_156246_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$9 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_156306_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$1 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_196757_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$16 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_196842_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$4 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223244_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/load (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223259_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$18 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223266_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$17 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223313_ (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$19 (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279974_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$13 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279975_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$8 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279977_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$12 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279978_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$11 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279979_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279980_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$0 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279981_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$6 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279982_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$3 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279984_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$7 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280108_ (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/register (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280141_ (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/initializeLight (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280148_ ()Z net/minecraft/world/level/chunk/ChunkStatus/hasLoadDependencies ()Z +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280308_ (Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/generate (Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284112_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$15 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284113_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$14 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284159_ (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lightChunk (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284462_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/chunk/ChunkStatus/isLighted (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/chunk/ChunkStatus/m_289181_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$2 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_289182_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$10 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_290023_ (Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/ChunkStatus/lambda$generate$21 (Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_290024_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$generate$20 (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62349_ ()Ljava/util/List; net/minecraft/world/level/chunk/ChunkStatus/getStatusList ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62370_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)I net/minecraft/world/level/chunk/ChunkStatus/getDistance (Lnet/minecraft/world/level/chunk/ChunkStatus;)I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62397_ (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/byName (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62399_ (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/register (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62414_ (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/registerSimple (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62421_ ()I net/minecraft/world/level/chunk/ChunkStatus/maxDistance ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62427_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Z net/minecraft/world/level/chunk/ChunkStatus/isOrAfter (Lnet/minecraft/world/level/chunk/ChunkStatus;)Z +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62445_ ()I net/minecraft/world/level/chunk/ChunkStatus/getIndex ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62482_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/getParent ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62488_ ()I net/minecraft/world/level/chunk/ChunkStatus/getRange ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62494_ ()Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus/getChunkType ()Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62500_ ()Ljava/util/EnumSet; net/minecraft/world/level/chunk/ChunkStatus/heightmapsAfter ()Ljava/util/EnumSet; +MD: net/minecraft/world/level/chunk/ChunkStatus/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/ChunkStatus/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ ()V net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ ()V +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ (Ljava/lang/String;I)V net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/m_156312_ ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus$ChunkType/$values ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus$ChunkType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/values ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus$ChunkType/values ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus$GenerationTask/m_214024_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus$GenerationTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus$LoadingTask/m_223381_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus$LoadingTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/m_156322_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/m_214024_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/DataLayer/ (I)V net/minecraft/world/level/chunk/DataLayer/ (I)V +MD: net/minecraft/world/level/chunk/DataLayer/ ([B)V net/minecraft/world/level/chunk/DataLayer/ ([B)V +MD: net/minecraft/world/level/chunk/DataLayer/ ()V net/minecraft/world/level/chunk/DataLayer/ ()V +MD: net/minecraft/world/level/chunk/DataLayer/m_156341_ (I)Ljava/lang/String; net/minecraft/world/level/chunk/DataLayer/layerToString (I)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/DataLayer/m_182481_ (I)I net/minecraft/world/level/chunk/DataLayer/getNibbleIndex (I)I +MD: net/minecraft/world/level/chunk/DataLayer/m_280098_ ()Z net/minecraft/world/level/chunk/DataLayer/isDefinitelyHomogenous ()Z +MD: net/minecraft/world/level/chunk/DataLayer/m_280353_ (I)B net/minecraft/world/level/chunk/DataLayer/packFilled (I)B +MD: net/minecraft/world/level/chunk/DataLayer/m_280484_ (I)Z net/minecraft/world/level/chunk/DataLayer/isDefinitelyFilledWith (I)Z +MD: net/minecraft/world/level/chunk/DataLayer/m_284173_ (I)V net/minecraft/world/level/chunk/DataLayer/fill (I)V +MD: net/minecraft/world/level/chunk/DataLayer/m_62557_ (II)V net/minecraft/world/level/chunk/DataLayer/set (II)V +MD: net/minecraft/world/level/chunk/DataLayer/m_62560_ (III)I net/minecraft/world/level/chunk/DataLayer/get (III)I +MD: net/minecraft/world/level/chunk/DataLayer/m_62564_ (IIII)V net/minecraft/world/level/chunk/DataLayer/set (IIII)V +MD: net/minecraft/world/level/chunk/DataLayer/m_62569_ ()Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/chunk/DataLayer/copy ()Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/chunk/DataLayer/m_62570_ (I)I net/minecraft/world/level/chunk/DataLayer/get (I)I +MD: net/minecraft/world/level/chunk/DataLayer/m_62575_ ()Z net/minecraft/world/level/chunk/DataLayer/isEmpty ()Z +MD: net/minecraft/world/level/chunk/DataLayer/m_62578_ (I)I net/minecraft/world/level/chunk/DataLayer/getByteIndex (I)I +MD: net/minecraft/world/level/chunk/DataLayer/m_6406_ (III)I net/minecraft/world/level/chunk/DataLayer/getIndex (III)I +MD: net/minecraft/world/level/chunk/DataLayer/m_7877_ ()[B net/minecraft/world/level/chunk/DataLayer/getData ()[B +MD: net/minecraft/world/level/chunk/DataLayer/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/DataLayer/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/chunk/EmptyLevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/EmptyLevelChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_142170_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/EmptyLevelChunk/addAndRegisterBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/EmptyLevelChunk/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_287138_ ()Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/world/level/chunk/EmptyLevelChunk/getFullStatus ()Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_5566_ (II)Z net/minecraft/world/level/chunk/EmptyLevelChunk/isYSpaceEmpty (II)Z +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_5685_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/EmptyLevelChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/EmptyLevelChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_6430_ ()Z net/minecraft/world/level/chunk/EmptyLevelChunk/isEmpty ()Z +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/EmptyLevelChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_7146_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/chunk/EmptyLevelChunk/getLightEmission (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/EmptyLevelChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/EmptyLevelChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/ (Lnet/minecraft/core/IdMap;)V net/minecraft/world/level/chunk/GlobalPalette/ (Lnet/minecraft/core/IdMap;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/m_187898_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/GlobalPalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/GlobalPalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/GlobalPalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/GlobalPalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/GlobalPalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/GlobalPalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/GlobalPalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/GlobalPalette/m_62680_ ()I net/minecraft/world/level/chunk/GlobalPalette/getSize ()I +MD: net/minecraft/world/level/chunk/GlobalPalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/GlobalPalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/GlobalPalette/m_6429_ ()I net/minecraft/world/level/chunk/GlobalPalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/GlobalPalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/GlobalPalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;)V net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;)V net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/m_187912_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/HashMapPalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_187917_ ()Ljava/util/List; net/minecraft/world/level/chunk/HashMapPalette/getEntries ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/HashMapPalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/HashMapPalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/HashMapPalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/HashMapPalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_62680_ ()I net/minecraft/world/level/chunk/HashMapPalette/getSize ()I +MD: net/minecraft/world/level/chunk/HashMapPalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/HashMapPalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/HashMapPalette/m_6429_ ()I net/minecraft/world/level/chunk/HashMapPalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/HashMapPalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/HashMapPalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;Z)V net/minecraft/world/level/chunk/ImposterProtoChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;Z)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183278_ (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ImposterProtoChunk/getSection (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183400_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setBlendingData (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183407_ ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlendingData ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183442_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/chunk/ImposterProtoChunk/fillBiomesFromNoise (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ImposterProtoChunk/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/ImposterProtoChunk/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183612_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ImposterProtoChunk/getCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183613_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ImposterProtoChunk/getOrCreateCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/ImposterProtoChunk/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213649_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/ImposterProtoChunk/getReferencesForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213652_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/chunk/ImposterProtoChunk/getStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213843_ (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V net/minecraft/world/level/chunk/ImposterProtoChunk/addReferenceForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_284190_ ()V net/minecraft/world/level/chunk/ImposterProtoChunk/initializeLightSources ()V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_284400_ ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/chunk/ImposterProtoChunk/getSkyLightSources ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_284478_ (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/ImposterProtoChunk/findBlocks (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_5604_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setBlockEntityNbt (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_5885_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/chunk/ImposterProtoChunk/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6005_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; net/minecraft/world/level/chunk/ImposterProtoChunk/getOrCreateHeightmapUnprimed (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62737_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setAllReferences (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62741_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/chunk/ImposterProtoChunk/fixType (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62768_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/chunk/ImposterProtoChunk/getWrapped ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62769_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ImposterProtoChunk/getAllReferences ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/ImposterProtoChunk/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6332_ ()Z net/minecraft/world/level/chunk/ImposterProtoChunk/isLightCorrect ()Z +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6344_ ()Z net/minecraft/world/level/chunk/ImposterProtoChunk/isUnsaved ()Z +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ImposterProtoChunk/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/ImposterProtoChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6511_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V net/minecraft/world/level/chunk/ImposterProtoChunk/setHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6633_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ImposterProtoChunk/getAllStarts ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ImposterProtoChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7103_ ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ImposterProtoChunk/getSections ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7150_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7469_ ()I net/minecraft/world/level/chunk/ImposterProtoChunk/getMaxLightLevel ()I +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7697_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/ImposterProtoChunk/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8040_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setAllStarts (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8049_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockEntityNbt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8092_ (Z)V net/minecraft/world/level/chunk/ImposterProtoChunk/setUnsaved (Z)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8094_ (Z)V net/minecraft/world/level/chunk/ImposterProtoChunk/setLightCorrect (Z)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8113_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ImposterProtoChunk/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ImposterProtoChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk/ ()V net/minecraft/world/level/chunk/LevelChunk/ ()V +MD: net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;)V net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;)V +MD: net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_142170_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/addAndRegisterBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_156369_ ()V net/minecraft/world/level/chunk/LevelChunk/registerAllBlockEntitiesAfterLevelLoad ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_156370_ ()Z net/minecraft/world/level/chunk/LevelChunk/isInLevel ()Z +MD: net/minecraft/world/level/chunk/LevelChunk/m_156375_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/TickingBlockEntity; net/minecraft/world/level/chunk/LevelChunk/createTicker (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/TickingBlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_156406_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/updateBlockEntityTicker (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_156410_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/chunk/LevelChunk/isTicking (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/chunk/LevelChunk/m_156412_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/LevelChunk/removeBlockEntityTicker (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/LevelChunk/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/LevelChunk/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/LevelChunk/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/LevelChunk/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/LevelChunk/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187957_ ()V net/minecraft/world/level/chunk/LevelChunk/clearAllBlockEntities ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187958_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/registerTickContainerInLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187960_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper; net/minecraft/world/level/chunk/LevelChunk/lambda$updateBlockEntityTicker$6 (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187965_ (Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)V net/minecraft/world/level/chunk/LevelChunk/lambda$clearAllBlockEntities$4 (Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187967_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/LevelChunk/lambda$replaceWithPacketData$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187971_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V net/minecraft/world/level/chunk/LevelChunk/replaceWithPacketData (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187975_ (III)Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk/lambda$getFluidState$2 (III)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187979_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/unregisterTickContainerFromLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187981_ (III)Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk/lambda$getBlockState$1 (III)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187985_ (J)V net/minecraft/world/level/chunk/LevelChunk/unpackTicks (J)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187987_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/lambda$registerAllBlockEntitiesAfterLevelLoad$5 (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_223412_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/removeGameEventListener (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_223415_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/addGameEventListener (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_246686_ (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; net/minecraft/world/level/chunk/LevelChunk/getListenerRegistry (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +MD: net/minecraft/world/level/chunk/LevelChunk/m_274381_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunk/replaceBiomes (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_279985_ (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; net/minecraft/world/level/chunk/LevelChunk/lambda$getListenerRegistry$0 (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +MD: net/minecraft/world/level/chunk/LevelChunk/m_280642_ (I)V net/minecraft/world/level/chunk/LevelChunk/removeGameEventListenerRegistry (I)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_287138_ ()Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/world/level/chunk/LevelChunk/getFullStatus ()Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/world/level/chunk/LevelChunk/m_5685_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62812_ ()V net/minecraft/world/level/chunk/LevelChunk/postProcessGeneration ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62814_ (III)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/LevelChunk/getFluidState (III)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/LevelChunk/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62870_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/promotePendingBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62879_ (Ljava/util/function/Supplier;)V net/minecraft/world/level/chunk/LevelChunk/setFullStatus (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62913_ (Z)V net/minecraft/world/level/chunk/LevelChunk/setLoaded (Z)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62934_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/createBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62952_ ()V net/minecraft/world/level/chunk/LevelChunk/runPostLoad ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62953_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/level/chunk/LevelChunk/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62954_ ()Ljava/util/Map; net/minecraft/world/level/chunk/LevelChunk/getBlockEntities ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/LevelChunk/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/LevelChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6430_ ()Z net/minecraft/world/level/chunk/LevelChunk/isEmpty ()Z +MD: net/minecraft/world/level/chunk/LevelChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/LevelChunk/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/LevelChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/LevelChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk$1/ ()V net/minecraft/world/level/chunk/LevelChunk$1/ ()V +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142220_ ()Z net/minecraft/world/level/chunk/LevelChunk$1/isRemoved ()Z +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142224_ ()V net/minecraft/world/level/chunk/LevelChunk$1/tick ()V +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$1/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/LevelChunk$1/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)V net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)V +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142220_ ()Z net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/isRemoved ()Z +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142224_ ()V net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/tick ()V +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ ()V net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ ()V +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ (Ljava/lang/String;I)V net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/m_156442_ ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/$values ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/values ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/values ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +MD: net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor/m_196866_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor/run (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142220_ ()Z net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/isRemoved ()Z +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142224_ ()V net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/tick ()V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_156449_ (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/rebind (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/core/Registry;)V net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/world/level/chunk/PalettedContainer;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)V net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/world/level/chunk/PalettedContainer;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_187996_ ()Lnet/minecraft/world/level/chunk/PalettedContainerRO; net/minecraft/world/level/chunk/LevelChunkSection/getBiomes ()Lnet/minecraft/world/level/chunk/PalettedContainerRO; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_188008_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/hasOnlyAir ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_204433_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/LevelChunkSection/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_274599_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunkSection/readBiomes (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_280631_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;III)V net/minecraft/world/level/chunk/LevelChunkSection/fillBiomesFromNoise (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;III)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62981_ ()V net/minecraft/world/level/chunk/LevelChunkSection/acquire ()V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62982_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunkSection/getBlockState (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62986_ (IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunkSection/setBlockState (IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62991_ (IIILnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunkSection/setBlockState (IIILnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63002_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/LevelChunkSection/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63004_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunkSection/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63006_ ()V net/minecraft/world/level/chunk/LevelChunkSection/release ()V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63007_ (III)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/LevelChunkSection/getFluidState (III)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63011_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunkSection/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63014_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/isRandomlyTicking ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63015_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/isRandomlyTickingBlocks ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63016_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/isRandomlyTickingFluids ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63018_ ()V net/minecraft/world/level/chunk/LevelChunkSection/recalcBlockCounts ()V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63019_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/LevelChunkSection/getStates ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63020_ ()I net/minecraft/world/level/chunk/LevelChunkSection/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/ (Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/ (Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/m_63144_ (Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/accept (Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/m_63144_ (Ljava/lang/Object;I)V net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/accept (Ljava/lang/Object;I)V +MD: net/minecraft/world/level/chunk/LightChunk/m_284254_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/LightChunk/findBlockLightSources (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/LightChunk/m_284400_ ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/chunk/LightChunk/getSkyLightSources ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/chunk/LightChunkGetter/m_6196_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/world/level/chunk/LightChunkGetter/getChunkForLighting (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/world/level/chunk/LightChunkGetter/m_6506_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V net/minecraft/world/level/chunk/LightChunkGetter/onLightUpdate (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/world/level/chunk/LightChunkGetter/m_7653_ ()Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/chunk/LightChunkGetter/getLevel ()Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;[Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PaletteResize;II)V net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;[Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PaletteResize;II)V +MD: net/minecraft/world/level/chunk/LinearPalette/m_188019_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/LinearPalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/LinearPalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/LinearPalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/LinearPalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LinearPalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LinearPalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LinearPalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LinearPalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/LinearPalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/LinearPalette/m_62680_ ()I net/minecraft/world/level/chunk/LinearPalette/getSize ()I +MD: net/minecraft/world/level/chunk/LinearPalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/LinearPalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/LinearPalette/m_6429_ ()I net/minecraft/world/level/chunk/LinearPalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/LinearPalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/LinearPalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/MissingPaletteEntryException/ (I)V net/minecraft/world/level/chunk/MissingPaletteEntryException/ (I)V +MD: net/minecraft/world/level/chunk/Palette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/Palette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/Palette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/Palette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/Palette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/Palette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/Palette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/Palette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/Palette/m_62680_ ()I net/minecraft/world/level/chunk/Palette/getSize ()I +MD: net/minecraft/world/level/chunk/Palette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/Palette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/Palette/m_6429_ ()I net/minecraft/world/level/chunk/Palette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/Palette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/Palette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/Palette$Factory/m_188026_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/Palette$Factory/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/PaletteResize/m_7248_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PaletteResize/onResize (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Data;)V net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Data;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Ljava/util/List;)V net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)V net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_156470_ (IIILjava/lang/Object;)V net/minecraft/world/level/chunk/PalettedContainer/set (IIILjava/lang/Object;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188044_ (Lcom/mojang/serialization/Codec;Ljava/lang/Object;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/chunk/PalettedContainer/lambda$codec$3 (Lcom/mojang/serialization/Codec;Ljava/lang/Object;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188051_ (Lnet/minecraft/world/level/chunk/PalettedContainer$Data;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; net/minecraft/world/level/chunk/PalettedContainer/createOrReuseData (Lnet/minecraft/world/level/chunk/PalettedContainer$Data;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188064_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; net/minecraft/world/level/chunk/PalettedContainer/pack (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188067_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainer/unpack (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188071_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; net/minecraft/world/level/chunk/PalettedContainer/lambda$codec$5 (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188078_ (Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainer/lambda$codec$4 (Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_196879_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/chunk/PalettedContainer/getAll (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_196881_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainer/lambda$codecRO$2 (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_196885_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/chunk/Palette;I)V net/minecraft/world/level/chunk/PalettedContainer/lambda$getAll$6 (Ljava/util/function/Consumer;Lnet/minecraft/world/level/chunk/Palette;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198176_ (Lnet/minecraft/world/level/chunk/HashMapPalette;I)I net/minecraft/world/level/chunk/PalettedContainer/lambda$pack$11 (Lnet/minecraft/world/level/chunk/HashMapPalette;I)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198179_ (Lit/unimi/dsi/fastutil/ints/Int2IntOpenHashMap;I)V net/minecraft/world/level/chunk/PalettedContainer/lambda$count$12 (Lit/unimi/dsi/fastutil/ints/Int2IntOpenHashMap;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198182_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PalettedContainer/lambda$new$0 (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198189_ ([ILjava/util/function/IntUnaryOperator;)V net/minecraft/world/level/chunk/PalettedContainer/swapPalette ([ILjava/util/function/IntUnaryOperator;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_199931_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/PalettedContainer/copy ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_200428_ (Lnet/minecraft/world/level/chunk/PalettedContainer;)Lnet/minecraft/world/level/chunk/PalettedContainerRO; net/minecraft/world/level/chunk/PalettedContainer/lambda$codecRO$1 (Lnet/minecraft/world/level/chunk/PalettedContainer;)Lnet/minecraft/world/level/chunk/PalettedContainerRO; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238277_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$8 (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238280_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/Palette;I)I net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$9 (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/Palette;I)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238334_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/PalettedContainer/recreate ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238371_ (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/PalettedContainer/codecRW (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238418_ (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/PalettedContainer/codecRO (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238427_ (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/PalettedContainer/codec (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_274279_ (Lnet/minecraft/util/SimpleBitStorage$InitializationException;)Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$10 (Lnet/minecraft/util/SimpleBitStorage$InitializationException;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_274280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$7 ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63084_ ()V net/minecraft/world/level/chunk/PalettedContainer/acquire ()V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63085_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/get (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63087_ (III)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/get (III)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63091_ (IIILjava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/getAndSet (IIILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63096_ (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/getAndSet (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63099_ (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V net/minecraft/world/level/chunk/PalettedContainer/count (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63109_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/PalettedContainer/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63118_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainer/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63120_ ()V net/minecraft/world/level/chunk/PalettedContainer/release ()V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63127_ (IIILjava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/getAndSetUnchecked (IIILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63132_ (ILjava/lang/Object;)V net/minecraft/world/level/chunk/PalettedContainer/set (ILjava/lang/Object;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63135_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainer/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63137_ ()I net/minecraft/world/level/chunk/PalettedContainer/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63138_ (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;Lit/unimi/dsi/fastutil/ints/Int2IntMap$Entry;)V net/minecraft/world/level/chunk/PalettedContainer/lambda$count$13 (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;Lit/unimi/dsi/fastutil/ints/Int2IntMap$Entry;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_7248_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PalettedContainer/onResize (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/ (Lnet/minecraft/world/level/chunk/Palette$Factory;I)V net/minecraft/world/level/chunk/PalettedContainer$Configuration/ (Lnet/minecraft/world/level/chunk/Palette$Factory;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/PalettedContainer$Configuration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188085_ ()Lnet/minecraft/world/level/chunk/Palette$Factory; net/minecraft/world/level/chunk/PalettedContainer$Configuration/factory ()Lnet/minecraft/world/level/chunk/Palette$Factory; +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188086_ ()I net/minecraft/world/level/chunk/PalettedContainer$Configuration/bits ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/hashCode ()I net/minecraft/world/level/chunk/PalettedContainer$Configuration/hashCode ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/m_188091_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; net/minecraft/world/level/chunk/PalettedContainer$Configuration/createData (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer$Configuration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer$CountConsumer/m_63144_ (Ljava/lang/Object;I)V net/minecraft/world/level/chunk/PalettedContainer$CountConsumer/accept (Ljava/lang/Object;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/ (Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Lnet/minecraft/world/level/chunk/Palette;)V net/minecraft/world/level/chunk/PalettedContainer$Data/ (Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Lnet/minecraft/world/level/chunk/Palette;)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/PalettedContainer$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188100_ ()Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Data/configuration ()Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188101_ ()Lnet/minecraft/util/BitStorage; net/minecraft/world/level/chunk/PalettedContainer$Data/storage ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188102_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/PalettedContainer$Data/palette ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/hashCode ()I net/minecraft/world/level/chunk/PalettedContainer$Data/hashCode ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_188107_ ()I net/minecraft/world/level/chunk/PalettedContainer$Data/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_188111_ (Lnet/minecraft/world/level/chunk/Palette;Lnet/minecraft/util/BitStorage;)V net/minecraft/world/level/chunk/PalettedContainer$Data/copyFrom (Lnet/minecraft/world/level/chunk/Palette;Lnet/minecraft/util/BitStorage;)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_188114_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainer$Data/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_238361_ ()Lnet/minecraft/world/level/chunk/PalettedContainer$Data; net/minecraft/world/level/chunk/PalettedContainer$Data/copy ()Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer$Data/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/ ()V net/minecraft/world/level/chunk/PalettedContainer$Strategy/ ()V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/ (I)V net/minecraft/world/level/chunk/PalettedContainer$Strategy/ (I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_183248_ (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Strategy/getConfiguration (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_188144_ ()I net/minecraft/world/level/chunk/PalettedContainer$Strategy/size ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_188145_ (III)I net/minecraft/world/level/chunk/PalettedContainer$Strategy/getIndex (III)I +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_188151_ (Lnet/minecraft/core/IdMap;I)I net/minecraft/world/level/chunk/PalettedContainer$Strategy/calculateBitsForSerialization (Lnet/minecraft/core/IdMap;I)I +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/ (I)V net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/ (I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/m_183248_ (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/getConfiguration (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/ (I)V net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/ (I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/m_183248_ (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/getConfiguration (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_188064_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; net/minecraft/world/level/chunk/PalettedContainerRO/pack (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_196879_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/chunk/PalettedContainerRO/getAll (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_238334_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/PalettedContainerRO/recreate ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63087_ (III)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainerRO/get (III)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63099_ (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V net/minecraft/world/level/chunk/PalettedContainerRO/count (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63109_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/PalettedContainerRO/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63135_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainerRO/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63137_ ()I net/minecraft/world/level/chunk/PalettedContainerRO/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/ (Ljava/util/List;Ljava/util/Optional;)V net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/ (Ljava/util/List;Ljava/util/Optional;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238179_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/storage ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238184_ ()Ljava/util/List; net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/paletteEntries ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/hashCode ()I net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/hashCode ()I +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker/m_238363_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker/read (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/ProtoChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183376_ ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; net/minecraft/world/level/chunk/ProtoChunk/getBelowZeroRetrogen ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ProtoChunk/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ProtoChunk/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/ProtoChunk/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183612_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ProtoChunk/getCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183613_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ProtoChunk/getOrCreateCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183618_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/chunk/ProtoChunk/getHeightAccessorForGeneration ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188181_ ()Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/level/chunk/ProtoChunk/unpackBlockTicks ()Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188182_ ()Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/level/chunk/ProtoChunk/unpackFluidTicks ()Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188183_ (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)V net/minecraft/world/level/chunk/ProtoChunk/setBelowZeroRetrogen (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188186_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/world/level/chunk/CarvingMask;)V net/minecraft/world/level/chunk/ProtoChunk/setCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/world/level/chunk/CarvingMask;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188189_ (Lnet/minecraft/world/ticks/ProtoChunkTicks;)Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/level/chunk/ProtoChunk/unpackTicks (Lnet/minecraft/world/ticks/ProtoChunkTicks;)Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/ProtoChunk/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ProtoChunk/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_289183_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ProtoChunk/lambda$getOrCreateCarvingMask$0 (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/ProtoChunk/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63209_ (Lnet/minecraft/world/level/lighting/LevelLightEngine;)V net/minecraft/world/level/chunk/ProtoChunk/setLightEngine (Lnet/minecraft/world/level/lighting/LevelLightEngine;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63227_ (SILnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/ProtoChunk/unpackOffsetCoordinates (SILnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63242_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/ProtoChunk/addEntity (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63280_ (Lnet/minecraft/core/BlockPos;)S net/minecraft/world/level/chunk/ProtoChunk/packOffsetCoordinates (Lnet/minecraft/core/BlockPos;)S +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63292_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntities ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63293_ ()Ljava/util/List; net/minecraft/world/level/chunk/ProtoChunk/getEntities ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63294_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntityNbts ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ProtoChunk/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/ProtoChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6561_ (SI)V net/minecraft/world/level/chunk/ProtoChunk/addPackedPostProcess (SI)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ProtoChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_7150_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/world/level/chunk/ProtoChunk/setStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ProtoChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8113_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ProtoChunk/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ProtoChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V net/minecraft/world/level/chunk/SingleValuePalette/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_188213_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/SingleValuePalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/SingleValuePalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/SingleValuePalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/SingleValuePalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/SingleValuePalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_62680_ ()I net/minecraft/world/level/chunk/SingleValuePalette/getSize ()I +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/SingleValuePalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_6429_ ()I net/minecraft/world/level/chunk/SingleValuePalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/SingleValuePalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/StructureAccess/m_213649_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/StructureAccess/getReferencesForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/StructureAccess/m_213652_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/chunk/StructureAccess/getStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/chunk/StructureAccess/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/StructureAccess/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/StructureAccess/m_213843_ (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V net/minecraft/world/level/chunk/StructureAccess/addReferenceForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V +MD: net/minecraft/world/level/chunk/StructureAccess/m_62737_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/StructureAccess/setAllReferences (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/StructureAccess/m_62769_ ()Ljava/util/Map; net/minecraft/world/level/chunk/StructureAccess/getAllReferences ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/UpgradeData/ ()V net/minecraft/world/level/chunk/UpgradeData/ ()V +MD: net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208120_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixer;)V net/minecraft/world/level/chunk/UpgradeData/lambda$upgrade$6 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixer;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208123_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$upgrade$5 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208132_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/List;)V net/minecraft/world/level/chunk/UpgradeData/loadTicks (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208137_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$write$10 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208140_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$upgrade$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208145_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$write$8 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208148_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$2 ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_208149_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$0 ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257335_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$1 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257336_ (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; net/minecraft/world/level/chunk/UpgradeData/lambda$write$7 (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257337_ (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; net/minecraft/world/level/chunk/UpgradeData/lambda$write$9 (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257338_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$3 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_63331_ ()Z net/minecraft/world/level/chunk/UpgradeData/isEmpty ()Z +MD: net/minecraft/world/level/chunk/UpgradeData/m_63335_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData/m_63341_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/UpgradeData/upgrade (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_63343_ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/core/Direction8;)V net/minecraft/world/level/chunk/UpgradeData/upgradeSides (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/core/Direction8;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_63346_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/UpgradeData/write ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/UpgradeData/m_63347_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/UpgradeData/upgradeInside (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixer/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixer/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixer/m_5870_ (Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixer/processChunk (Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ ()V net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ ()V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/m_156510_ ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; net/minecraft/world/level/chunk/UpgradeData$BlockFixers/$values ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; net/minecraft/world/level/chunk/UpgradeData$BlockFixers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/values ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; net/minecraft/world/level/chunk/UpgradeData$BlockFixers/values ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/m_5870_ (Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/processChunk (Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/m_63428_ ()Ljava/util/List; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/lambda$$0 ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/storage/ChunkScanAccess/m_196358_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/ChunkScanAccess/scanChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188230_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ProtoChunk; net/minecraft/world/level/chunk/storage/ChunkSerializer/read (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ProtoChunk; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188235_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/saveTicks (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188239_ (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/logErrors (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188249_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/packStructureData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188254_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Ljava/util/Map; net/minecraft/world/level/chunk/storage/ChunkSerializer/unpackStructureStart (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Ljava/util/Map; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188260_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/storage/ChunkSerializer/makeBiomeCodec (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188271_ (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$1 (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188277_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$write$7 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188280_ (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$0 (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196890_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor; net/minecraft/world/level/chunk/storage/ChunkSerializer/postLoadChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196897_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/getListOfCompoundsOrNull (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196900_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$postLoadChunk$10 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196907_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$write$6 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_208150_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceLocation;J)Z net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$unpackStructureReferences$11 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceLocation;J)Z +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_208154_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Map; net/minecraft/world/level/chunk/storage/ChunkSerializer/unpackStructureReferences (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Map; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257339_ (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$saveTicks$8 (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257340_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$2 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257341_ (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$saveTicks$9 (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257342_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$3 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257343_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$5 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257344_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$4 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_63454_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/write (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_63485_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/storage/ChunkSerializer/getChunkTypeFromTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_63490_ ([Lit/unimi/dsi/fastutil/shorts/ShortList;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/packOffsets ([Lit/unimi/dsi/fastutil/shorts/ShortList;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;Z)V net/minecraft/world/level/chunk/storage/ChunkStorage/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;Z)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/close ()V net/minecraft/world/level/chunk/storage/ChunkStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_188288_ (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/ChunkStorage/upgradeChunkTag (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_196915_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/chunk/storage/ChunkStorage/lambda$injectDatafixingContext$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_196918_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;Ljava/util/Optional;)V net/minecraft/world/level/chunk/storage/ChunkStorage/injectDatafixingContext (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;Ljava/util/Optional;)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_196922_ ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; net/minecraft/world/level/chunk/storage/ChunkStorage/chunkScanner ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_223448_ (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; net/minecraft/world/level/chunk/storage/ChunkStorage/getLegacyStructureHandler (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_223451_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/world/level/chunk/storage/ChunkStorage/isOldChunkAround (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_223454_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/ChunkStorage/read (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_63502_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/storage/ChunkStorage/write (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_63505_ (Lnet/minecraft/nbt/CompoundTag;)I net/minecraft/world/level/chunk/storage/ChunkStorage/getVersion (Lnet/minecraft/nbt/CompoundTag;)I +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_63514_ ()V net/minecraft/world/level/chunk/storage/ChunkStorage/flushWorker ()V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/ ()V net/minecraft/world/level/chunk/storage/EntityStorage/ ()V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/ (Lnet/minecraft/server/level/ServerLevel;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLjava/util/concurrent/Executor;)V net/minecraft/world/level/chunk/storage/EntityStorage/ (Lnet/minecraft/server/level/ServerLevel;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLjava/util/concurrent/Executor;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/close ()V net/minecraft/world/level/chunk/storage/EntityStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_141930_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/EntityStorage/loadEntities (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_141971_ (Lnet/minecraft/world/level/entity/ChunkEntities;)V net/minecraft/world/level/chunk/storage/EntityStorage/storeEntities (Lnet/minecraft/world/level/entity/ChunkEntities;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156552_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/world/level/chunk/storage/EntityStorage/lambda$storeEntities$2 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156562_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/EntityStorage/writeChunkPos (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156565_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/storage/EntityStorage/lambda$storeEntities$1 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156568_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/entity/ChunkEntities; net/minecraft/world/level/chunk/storage/EntityStorage/emptyChunk (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/entity/ChunkEntities; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156570_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/storage/EntityStorage/readChunkPos (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156572_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/EntityStorage/upgradeChunkTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_182219_ (Z)V net/minecraft/world/level/chunk/storage/EntityStorage/flush (Z)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_223456_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lnet/minecraft/world/level/entity/ChunkEntities; net/minecraft/world/level/chunk/storage/EntityStorage/lambda$loadEntities$0 (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lnet/minecraft/world/level/entity/ChunkEntities; +MD: net/minecraft/world/level/chunk/storage/IOWorker/ ()V net/minecraft/world/level/chunk/storage/IOWorker/ ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker/ (Ljava/nio/file/Path;ZLjava/lang/String;)V net/minecraft/world/level/chunk/storage/IOWorker/ (Ljava/nio/file/Path;ZLjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/close ()V net/minecraft/world/level/chunk/storage/IOWorker/close ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_156587_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/loadAsync (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_182493_ (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$9 (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_182498_ (Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/synchronize (Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_182502_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$8 ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_196358_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/scanChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223461_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223463_ (II)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/getOrCreateOldDataForRegion (II)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223466_ (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/world/level/chunk/storage/IOWorker/lambda$close$16 (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223468_ (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Supplier;)V net/minecraft/world/level/chunk/storage/IOWorker/lambda$submitTask$13 (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223471_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/world/level/chunk/storage/IOWorker/isOldChunkAround (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223474_ (Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$5 (Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223476_ (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$11 (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223478_ (Ljava/util/BitSet;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/IOWorker/lambda$createOldDataForRegion$0 (Ljava/util/BitSet;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223481_ (Ljava/util/function/Supplier;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/world/level/chunk/storage/IOWorker/lambda$submitTask$14 (Ljava/util/function/Supplier;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223484_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/chunk/storage/IOWorker/isOldChunk (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223486_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore; net/minecraft/world/level/chunk/storage/IOWorker/lambda$store$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223489_ (II)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/createOldDataForRegion (II)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223492_ (Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/world/level/chunk/storage/IOWorker/lambda$close$15 (Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223494_ (Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$loadAsync$4 (Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223496_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$store$3 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223499_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$scanChunk$12 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223502_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$10 ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223503_ (II)Ljava/util/BitSet; net/minecraft/world/level/chunk/storage/IOWorker/lambda$createOldDataForRegion$1 (II)Ljava/util/BitSet; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223506_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$7 ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63535_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)V net/minecraft/world/level/chunk/storage/IOWorker/runStore (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63538_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/store (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63545_ (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/submitTask (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63553_ ()V net/minecraft/world/level/chunk/storage/IOWorker/storePendingChunk ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63561_ ()V net/minecraft/world/level/chunk/storage/IOWorker/tellStorePending ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/ ()V net/minecraft/world/level/chunk/storage/IOWorker$Priority/ ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/ (Ljava/lang/String;I)V net/minecraft/world/level/chunk/storage/IOWorker$Priority/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/m_156595_ ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; net/minecraft/world/level/chunk/storage/IOWorker$Priority/$values ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; net/minecraft/world/level/chunk/storage/IOWorker$Priority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/values ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; net/minecraft/world/level/chunk/storage/IOWorker$Priority/values ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/ ()V net/minecraft/world/level/chunk/storage/RegionBitmap/ ()V +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_156603_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/world/level/chunk/storage/RegionBitmap/getUsed ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_63610_ (I)I net/minecraft/world/level/chunk/storage/RegionBitmap/allocate (I)I +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_63612_ (II)V net/minecraft/world/level/chunk/storage/RegionBitmap/force (II)V +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_63615_ (II)V net/minecraft/world/level/chunk/storage/RegionBitmap/free (II)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/ ()V net/minecraft/world/level/chunk/storage/RegionFile/ ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;Z)V net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;Z)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/close ()V net/minecraft/world/level/chunk/storage/RegionFile/close ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_156612_ ()I net/minecraft/world/level/chunk/storage/RegionFile/getTimestamp ()I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_156613_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/RegionFile/clear (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63637_ ()V net/minecraft/world/level/chunk/storage/RegionFile/flush ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63638_ (B)Z net/minecraft/world/level/chunk/storage/RegionFile/isExternalStreamChunk (B)Z +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63640_ (I)I net/minecraft/world/level/chunk/storage/RegionFile/getNumSectors (I)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63642_ (II)I net/minecraft/world/level/chunk/storage/RegionFile/packSectorOffset (II)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63645_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataInputStream; net/minecraft/world/level/chunk/storage/RegionFile/getChunkDataInputStream (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63647_ (Lnet/minecraft/world/level/ChunkPos;B)Ljava/io/DataInputStream; net/minecraft/world/level/chunk/storage/RegionFile/createExternalChunkInputStream (Lnet/minecraft/world/level/ChunkPos;B)Ljava/io/DataInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63650_ (Lnet/minecraft/world/level/ChunkPos;BLjava/io/InputStream;)Ljava/io/DataInputStream; net/minecraft/world/level/chunk/storage/RegionFile/createChunkInputStream (Lnet/minecraft/world/level/ChunkPos;BLjava/io/InputStream;)Ljava/io/DataInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63654_ (Lnet/minecraft/world/level/ChunkPos;Ljava/nio/ByteBuffer;)V net/minecraft/world/level/chunk/storage/RegionFile/write (Lnet/minecraft/world/level/ChunkPos;Ljava/nio/ByteBuffer;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63659_ (Ljava/nio/ByteBuffer;I)Ljava/io/ByteArrayInputStream; net/minecraft/world/level/chunk/storage/RegionFile/createStream (Ljava/nio/ByteBuffer;I)Ljava/io/ByteArrayInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63662_ (Ljava/nio/file/Path;Ljava/nio/ByteBuffer;)Lnet/minecraft/world/level/chunk/storage/RegionFile$CommitOp; net/minecraft/world/level/chunk/storage/RegionFile/writeToExternalFile (Ljava/nio/file/Path;Ljava/nio/ByteBuffer;)Lnet/minecraft/world/level/chunk/storage/RegionFile$CommitOp; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63665_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/world/level/chunk/storage/RegionFile/lambda$writeToExternalFile$1 (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63668_ ()Ljava/nio/ByteBuffer; net/minecraft/world/level/chunk/storage/RegionFile/createExternalStub ()Ljava/nio/ByteBuffer; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63669_ (B)B net/minecraft/world/level/chunk/storage/RegionFile/getExternalChunkVersion (B)B +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63671_ (I)I net/minecraft/world/level/chunk/storage/RegionFile/getSectorNumber (I)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63673_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/chunk/storage/RegionFile/doesChunkExist (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63675_ ()V net/minecraft/world/level/chunk/storage/RegionFile/writeHeader ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63676_ (I)I net/minecraft/world/level/chunk/storage/RegionFile/sizeToSectors (I)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63678_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataOutputStream; net/minecraft/world/level/chunk/storage/RegionFile/getChunkDataOutputStream (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataOutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63681_ ()V net/minecraft/world/level/chunk/storage/RegionFile/padToFullSector ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63682_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/chunk/storage/RegionFile/hasChunk (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63684_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/nio/file/Path; net/minecraft/world/level/chunk/storage/RegionFile/getExternalChunkPath (Lnet/minecraft/world/level/ChunkPos;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63686_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/world/level/chunk/storage/RegionFile/getOffset (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63688_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/world/level/chunk/storage/RegionFile/getOffsetIndex (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63690_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/RegionFile/lambda$write$0 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/ (Lnet/minecraft/world/level/chunk/storage/RegionFile;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/ (Lnet/minecraft/world/level/chunk/storage/RegionFile;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/close ()V net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/close ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile$CommitOp/m_63698_ ()V net/minecraft/world/level/chunk/storage/RegionFile$CommitOp/run ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/ (Ljava/nio/file/Path;Z)V net/minecraft/world/level/chunk/storage/RegionFileStorage/ (Ljava/nio/file/Path;Z)V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/close ()V net/minecraft/world/level/chunk/storage/RegionFileStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_196956_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/world/level/chunk/storage/RegionFileStorage/scanChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63705_ ()V net/minecraft/world/level/chunk/storage/RegionFileStorage/flush ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63706_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/RegionFileStorage/read (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63708_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/storage/RegionFileStorage/write (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63711_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/RegionFile; net/minecraft/world/level/chunk/storage/RegionFileStorage/getRegionFile (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/RegionFile; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/ ()V net/minecraft/world/level/chunk/storage/RegionFileVersion/ ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/ (ILnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;)V net/minecraft/world/level/chunk/storage/RegionFileVersion/ (ILnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;)V +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196959_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$4 (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196961_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$5 (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196963_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$2 (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196965_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$3 (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63755_ ()I net/minecraft/world/level/chunk/storage/RegionFileVersion/getId ()I +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63756_ (I)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; net/minecraft/world/level/chunk/storage/RegionFileVersion/fromId (I)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63758_ (Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; net/minecraft/world/level/chunk/storage/RegionFileVersion/register (Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63760_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/wrap (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63762_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/wrap (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63764_ (I)Z net/minecraft/world/level/chunk/storage/RegionFileVersion/isValidVersion (I)Z +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63766_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$0 (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63768_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$1 (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper/m_63770_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper/wrap (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/ ()V net/minecraft/world/level/chunk/storage/SectionStorage/ ()V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/ (Ljava/nio/file/Path;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/util/datafix/DataFixTypes;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/chunk/storage/SectionStorage/ (Ljava/nio/file/Path;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/util/datafix/DataFixTypes;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/close ()V net/minecraft/world/level/chunk/storage/SectionStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_156627_ (Lnet/minecraft/world/level/ChunkPos;I)J net/minecraft/world/level/chunk/storage/SectionStorage/getKey (Lnet/minecraft/world/level/ChunkPos;I)J +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_156630_ (J)Z net/minecraft/world/level/chunk/storage/SectionStorage/outsideStoredRange (J)Z +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_202164_ ()Z net/minecraft/world/level/chunk/storage/SectionStorage/hasWork ()Z +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223517_ (JLcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/lambda$readColumn$3 (JLcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223520_ (JZLjava/lang/Object;)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$readColumn$4 (JZLjava/lang/Object;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223524_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/lambda$tryRead$1 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223527_ (Ljava/util/Map;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$writeColumn$6 (Ljava/util/Map;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223532_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/SectionStorage/tryRead (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223534_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$writeColumn$5 (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223536_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$readColumn$2 (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_5838_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/setDirty (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_5839_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/onSectionLoad (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_6202_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/world/level/chunk/storage/SectionStorage/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63796_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/SectionStorage/flush (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63798_ (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/world/level/chunk/storage/SectionStorage/writeColumn (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63801_ (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)V net/minecraft/world/level/chunk/storage/SectionStorage/readColumn (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63805_ (Lcom/mojang/serialization/Dynamic;)I net/minecraft/world/level/chunk/storage/SectionStorage/getVersion (Lcom/mojang/serialization/Dynamic;)I +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63814_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/SectionStorage/readColumn (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63818_ (J)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/get (J)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63823_ (J)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/getOrLoad (J)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63825_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/SectionStorage/writeColumn (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63827_ (J)Ljava/lang/Object; net/minecraft/world/level/chunk/storage/SectionStorage/getOrCreate (J)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63833_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$getOrCreate$0 (J)V +MD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V +MD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V +MD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/m_223547_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/dimension/BuiltinDimensionTypes/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/dimension/DimensionDefaults/ ()V net/minecraft/world/level/dimension/DimensionDefaults/ ()V +MD: net/minecraft/world/level/dimension/DimensionType/ ()V net/minecraft/world/level/dimension/DimensionType/ ()V +MD: net/minecraft/world/level/dimension/DimensionType/ (Ljava/util/OptionalLong;ZZZZDZZIIILnet/minecraft/tags/TagKey;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/world/level/dimension/DimensionType$MonsterSettings;)V net/minecraft/world/level/dimension/DimensionType/ (Ljava/util/OptionalLong;ZZZZDZZIIILnet/minecraft/tags/TagKey;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/world/level/dimension/DimensionType$MonsterSettings;)V +MD: net/minecraft/world/level/dimension/DimensionType/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/DimensionType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/DimensionType/f_156647_ ()I net/minecraft/world/level/dimension/DimensionType/minY ()I +MD: net/minecraft/world/level/dimension/DimensionType/f_156648_ ()I net/minecraft/world/level/dimension/DimensionType/height ()I +MD: net/minecraft/world/level/dimension/DimensionType/f_223549_ ()Z net/minecraft/world/level/dimension/DimensionType/hasSkyLight ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_223550_ ()Lnet/minecraft/world/level/dimension/DimensionType$MonsterSettings; net/minecraft/world/level/dimension/DimensionType/monsterSettings ()Lnet/minecraft/world/level/dimension/DimensionType$MonsterSettings; +MD: net/minecraft/world/level/dimension/DimensionType/f_63836_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/dimension/DimensionType/infiniburn ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/dimension/DimensionType/f_63837_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/dimension/DimensionType/effectsLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/dimension/DimensionType/f_63838_ ()F net/minecraft/world/level/dimension/DimensionType/ambientLight ()F +MD: net/minecraft/world/level/dimension/DimensionType/f_63854_ ()Ljava/util/OptionalLong; net/minecraft/world/level/dimension/DimensionType/fixedTime ()Ljava/util/OptionalLong; +MD: net/minecraft/world/level/dimension/DimensionType/f_63856_ ()Z net/minecraft/world/level/dimension/DimensionType/hasCeiling ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63857_ ()Z net/minecraft/world/level/dimension/DimensionType/ultraWarm ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63858_ ()Z net/minecraft/world/level/dimension/DimensionType/natural ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63859_ ()D net/minecraft/world/level/dimension/DimensionType/coordinateScale ()D +MD: net/minecraft/world/level/dimension/DimensionType/f_63862_ ()Z net/minecraft/world/level/dimension/DimensionType/bedWorks ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63863_ ()Z net/minecraft/world/level/dimension/DimensionType/respawnAnchorWorks ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63865_ ()I net/minecraft/world/level/dimension/DimensionType/logicalHeight ()I +MD: net/minecraft/world/level/dimension/DimensionType/hashCode ()I net/minecraft/world/level/dimension/DimensionType/hashCode ()I +MD: net/minecraft/world/level/dimension/DimensionType/m_196975_ (Lnet/minecraft/resources/ResourceKey;Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/world/level/dimension/DimensionType/getStorageFolder (Lnet/minecraft/resources/ResourceKey;Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/dimension/DimensionType/m_223567_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/DimensionType/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/DimensionType/m_223569_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/dimension/DimensionType/monsterSpawnLightTest ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/dimension/DimensionType/m_223570_ ()I net/minecraft/world/level/dimension/DimensionType/monsterSpawnBlockLightLimit ()I +MD: net/minecraft/world/level/dimension/DimensionType/m_63904_ (J)F net/minecraft/world/level/dimension/DimensionType/timeOfDay (J)F +MD: net/minecraft/world/level/dimension/DimensionType/m_63908_ (Lnet/minecraft/world/level/dimension/DimensionType;Lnet/minecraft/world/level/dimension/DimensionType;)D net/minecraft/world/level/dimension/DimensionType/getTeleportationScale (Lnet/minecraft/world/level/dimension/DimensionType;Lnet/minecraft/world/level/dimension/DimensionType;)D +MD: net/minecraft/world/level/dimension/DimensionType/m_63911_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/dimension/DimensionType/parseLegacy (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/dimension/DimensionType/m_63936_ (J)I net/minecraft/world/level/dimension/DimensionType/moonPhase (J)I +MD: net/minecraft/world/level/dimension/DimensionType/m_63960_ ()Z net/minecraft/world/level/dimension/DimensionType/piglinSafe ()Z +MD: net/minecraft/world/level/dimension/DimensionType/m_63963_ ()Z net/minecraft/world/level/dimension/DimensionType/hasRaids ()Z +MD: net/minecraft/world/level/dimension/DimensionType/m_63967_ ()Z net/minecraft/world/level/dimension/DimensionType/hasFixedTime ()Z +MD: net/minecraft/world/level/dimension/DimensionType/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/DimensionType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ ()V net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ ()V +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ (ZZLnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ (ZZLnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/DimensionType$MonsterSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223579_ ()Z net/minecraft/world/level/dimension/DimensionType$MonsterSettings/piglinSafe ()Z +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223580_ ()Z net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hasRaids ()Z +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223581_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnLightTest ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223582_ ()I net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnBlockLightLimit ()I +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hashCode ()I net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hashCode ()I +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/m_223590_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/DimensionType$MonsterSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/DimensionType$MonsterSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/dimension/LevelStem/ ()V net/minecraft/world/level/dimension/LevelStem/ ()V +MD: net/minecraft/world/level/dimension/LevelStem/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)V net/minecraft/world/level/dimension/LevelStem/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)V +MD: net/minecraft/world/level/dimension/LevelStem/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/LevelStem/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/LevelStem/f_63975_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/dimension/LevelStem/type ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/dimension/LevelStem/f_63976_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/dimension/LevelStem/generator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/dimension/LevelStem/hashCode ()I net/minecraft/world/level/dimension/LevelStem/hashCode ()I +MD: net/minecraft/world/level/dimension/LevelStem/m_63985_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/LevelStem/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/LevelStem/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/LevelStem/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ ()V net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ ()V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/m_156734_ ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; net/minecraft/world/level/dimension/end/DragonRespawnAnimation/$values ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; net/minecraft/world/level/dimension/end/DragonRespawnAnimation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/values ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; net/minecraft/world/level/dimension/end/DragonRespawnAnimation/values ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/ ()V net/minecraft/world/level/dimension/end/EndDragonFight/ ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_255387_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/dimension/end/EndDragonFight/lambda$spawnNewGateway$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_257345_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight/lambda$spawnNewGateway$1 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_287238_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/removeAllGateways ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_287277_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/skipArenaLoadedCheck ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_288211_ ()Ljava/util/UUID; net/minecraft/world/level/dimension/end/EndDragonFight/getDragonUUID ()Ljava/util/UUID; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_289714_ (J)Ljava/util/List; net/minecraft/world/level/dimension/end/EndDragonFight/lambda$new$0 (J)Ljava/util/List; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_289745_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; net/minecraft/world/level/dimension/end/EndDragonFight/saveData ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64082_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/level/dimension/end/EndDragonFight/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64085_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/level/dimension/end/EndDragonFight/setDragonKilled (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64087_ (Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation;)V net/minecraft/world/level/dimension/end/EndDragonFight/setRespawnStage (Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64089_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/EndDragonFight/spawnNewGateway (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64091_ (Ljava/util/List;)V net/minecraft/world/level/dimension/end/EndDragonFight/respawnDragon (Ljava/util/List;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64093_ (Z)V net/minecraft/world/level/dimension/end/EndDragonFight/spawnExitPortal (Z)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64095_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/tick ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64096_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/level/dimension/end/EndDragonFight/updateDragon (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64098_ ()I net/minecraft/world/level/dimension/end/EndDragonFight/getCrystalsAlive ()I +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64099_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight/hasPreviouslyKilledDragon ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64100_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/tryRespawn ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64101_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/resetSpikeCrystals ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64102_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/scanState ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64103_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/findOrCreateDragon ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64104_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight/hasActiveExitPortal ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64105_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/dimension/end/EndDragonFight/findExitPortal ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64106_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight/isArenaLoaded ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64107_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/updatePlayers ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64108_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/updateCrystalCount ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64109_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/spawnNewGateway ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64110_ ()Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon; net/minecraft/world/level/dimension/end/EndDragonFight/createNewDragon ()Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/ ()V net/minecraft/world/level/dimension/end/EndDragonFight$Data/ ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/ (ZZZZLjava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/world/level/dimension/end/EndDragonFight$Data/ (ZZZZLjava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289702_ ()Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonUUID ()Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289703_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/isRespawning ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289704_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/previouslyKilled ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289705_ ()Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight$Data/gateways ()Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289708_ ()Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight$Data/exitPortalLocation ()Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289710_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/needsStateScanning ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289711_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonKilled ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/hashCode ()I net/minecraft/world/level/dimension/end/EndDragonFight$Data/hashCode ()I +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/m_289715_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/end/EndDragonFight$Data/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/end/EndDragonFight$Data/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/entity/ChunkEntities/ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/List;)V net/minecraft/world/level/entity/ChunkEntities/ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/List;)V +MD: net/minecraft/world/level/entity/ChunkEntities/m_156791_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/entity/ChunkEntities/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/entity/ChunkEntities/m_156792_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/ChunkEntities/getEntities ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/ChunkEntities/m_156793_ ()Z net/minecraft/world/level/entity/ChunkEntities/isEmpty ()Z +MD: net/minecraft/world/level/entity/ChunkStatusUpdateListener/m_156794_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/world/level/entity/ChunkStatusUpdateListener/onChunkStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/world/level/entity/EntityAccess/m_141960_ (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V net/minecraft/world/level/entity/EntityAccess/setLevelCallback (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V +MD: net/minecraft/world/level/entity/EntityAccess/m_142389_ ()Z net/minecraft/world/level/entity/EntityAccess/isAlwaysTicking ()Z +MD: net/minecraft/world/level/entity/EntityAccess/m_142391_ ()Z net/minecraft/world/level/entity/EntityAccess/shouldBeSaved ()Z +MD: net/minecraft/world/level/entity/EntityAccess/m_142429_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntityAccess/getPassengersAndSelf ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntityAccess/m_142467_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/EntityAccess/setRemoved (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/EntityAccess/m_19879_ ()I net/minecraft/world/level/entity/EntityAccess/getId ()I +MD: net/minecraft/world/level/entity/EntityAccess/m_20148_ ()Ljava/util/UUID; net/minecraft/world/level/entity/EntityAccess/getUUID ()Ljava/util/UUID; +MD: net/minecraft/world/level/entity/EntityAccess/m_20183_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/entity/EntityAccess/blockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/entity/EntityAccess/m_20191_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/entity/EntityAccess/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/entity/EntityAccess/m_20199_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntityAccess/getSelfAndPassengers ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntityInLevelCallback/ ()V net/minecraft/world/level/entity/EntityInLevelCallback/ ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback/m_142044_ ()V net/minecraft/world/level/entity/EntityInLevelCallback/onMove ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/EntityInLevelCallback/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/EntityInLevelCallback$1/ ()V net/minecraft/world/level/entity/EntityInLevelCallback$1/ ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback$1/m_142044_ ()V net/minecraft/world/level/entity/EntityInLevelCallback$1/onMove ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback$1/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/EntityInLevelCallback$1/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/EntityLookup/ ()V net/minecraft/world/level/entity/EntityLookup/ ()V +MD: net/minecraft/world/level/entity/EntityLookup/ ()V net/minecraft/world/level/entity/EntityLookup/ ()V +MD: net/minecraft/world/level/entity/EntityLookup/m_156811_ ()Ljava/lang/Iterable; net/minecraft/world/level/entity/EntityLookup/getAllEntities ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/entity/EntityLookup/m_156812_ (I)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/EntityLookup/getEntity (I)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/EntityLookup/m_156814_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/EntityLookup/add (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/EntityLookup/m_156819_ (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/EntityLookup/getEntity (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/EntityLookup/m_156821_ ()I net/minecraft/world/level/entity/EntityLookup/count ()I +MD: net/minecraft/world/level/entity/EntityLookup/m_156822_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/EntityLookup/remove (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/EntityLookup/m_260822_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntityLookup/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntityPersistentStorage/close ()V net/minecraft/world/level/entity/EntityPersistentStorage/close ()V +MD: net/minecraft/world/level/entity/EntityPersistentStorage/m_141930_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/entity/EntityPersistentStorage/loadEntities (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/entity/EntityPersistentStorage/m_141971_ (Lnet/minecraft/world/level/entity/ChunkEntities;)V net/minecraft/world/level/entity/EntityPersistentStorage/storeEntities (Lnet/minecraft/world/level/entity/ChunkEntities;)V +MD: net/minecraft/world/level/entity/EntityPersistentStorage/m_182219_ (Z)V net/minecraft/world/level/entity/EntityPersistentStorage/flush (Z)V +MD: net/minecraft/world/level/entity/EntitySection/ ()V net/minecraft/world/level/entity/EntitySection/ ()V +MD: net/minecraft/world/level/entity/EntitySection/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/Visibility;)V net/minecraft/world/level/entity/EntitySection/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/Visibility;)V +MD: net/minecraft/world/level/entity/EntitySection/m_156833_ ()Z net/minecraft/world/level/entity/EntitySection/isEmpty ()Z +MD: net/minecraft/world/level/entity/EntitySection/m_156838_ (Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/EntitySection/updateChunkStatus (Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/EntitySection/m_156845_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntitySection/getEntities ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntitySection/m_156848_ ()Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/EntitySection/getStatus ()Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/EntitySection/m_156849_ ()I net/minecraft/world/level/entity/EntitySection/size ()I +MD: net/minecraft/world/level/entity/EntitySection/m_188346_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/EntitySection/add (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/EntitySection/m_188348_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySection/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySection/m_188355_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/EntitySection/remove (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/EntitySection/m_260830_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySection/getEntities (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySectionStorage/ (Ljava/lang/Class;Lit/unimi/dsi/fastutil/longs/Long2ObjectFunction;)V net/minecraft/world/level/entity/EntitySectionStorage/ (Ljava/lang/Class;Lit/unimi/dsi/fastutil/longs/Long2ObjectFunction;)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156857_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/entity/EntitySectionStorage/getAllChunksWithExistingSections ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156858_ (II)Lit/unimi/dsi/fastutil/longs/LongSortedSet; net/minecraft/world/level/entity/EntitySectionStorage/getChunkSections (II)Lit/unimi/dsi/fastutil/longs/LongSortedSet; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156861_ (J)Ljava/util/stream/LongStream; net/minecraft/world/level/entity/EntitySectionStorage/getExistingSectionPositionsInChunk (J)Ljava/util/stream/LongStream; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156884_ (Lit/unimi/dsi/fastutil/longs/LongSet;J)V net/minecraft/world/level/entity/EntitySectionStorage/lambda$getAllChunksWithExistingSections$0 (Lit/unimi/dsi/fastutil/longs/LongSet;J)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156887_ ()I net/minecraft/world/level/entity/EntitySectionStorage/count ()I +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156888_ (J)Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntitySectionStorage/getExistingSectionsInChunk (J)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156893_ (J)Lnet/minecraft/world/level/entity/EntitySection; net/minecraft/world/level/entity/EntitySectionStorage/getOrCreateSection (J)Lnet/minecraft/world/level/entity/EntitySection; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156895_ (J)Lnet/minecraft/world/level/entity/EntitySection; net/minecraft/world/level/entity/EntitySectionStorage/getSection (J)Lnet/minecraft/world/level/entity/EntitySection; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156897_ (J)V net/minecraft/world/level/entity/EntitySectionStorage/remove (J)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156899_ (J)J net/minecraft/world/level/entity/EntitySectionStorage/getChunkKeyFromSectionKey (J)J +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156901_ (J)Lnet/minecraft/world/level/entity/EntitySection; net/minecraft/world/level/entity/EntitySectionStorage/createSection (J)Lnet/minecraft/world/level/entity/EntitySection; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_188362_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntitySectionStorage/forEachAccessibleNonEmptySection (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_260794_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySectionStorage/lambda$getEntities$1 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_260795_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySectionStorage/lambda$getEntities$2 (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_261111_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntitySectionStorage/getEntities (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_261191_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntitySectionStorage/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntityTickList/ ()V net/minecraft/world/level/entity/EntityTickList/ ()V +MD: net/minecraft/world/level/entity/EntityTickList/m_156907_ ()V net/minecraft/world/level/entity/EntityTickList/ensureActiveIsNotIterated ()V +MD: net/minecraft/world/level/entity/EntityTickList/m_156908_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/entity/EntityTickList/add (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/entity/EntityTickList/m_156910_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/entity/EntityTickList/forEach (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/entity/EntityTickList/m_156912_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/entity/EntityTickList/remove (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/entity/EntityTickList/m_156914_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/entity/EntityTickList/contains (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/entity/EntityTypeTest/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/entity/EntityTypeTest/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/entity/EntityTypeTest/m_142225_ ()Ljava/lang/Class; net/minecraft/world/level/entity/EntityTypeTest/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/world/level/entity/EntityTypeTest/m_156916_ (Ljava/lang/Class;)Lnet/minecraft/world/level/entity/EntityTypeTest; net/minecraft/world/level/entity/EntityTypeTest/forClass (Ljava/lang/Class;)Lnet/minecraft/world/level/entity/EntityTypeTest; +MD: net/minecraft/world/level/entity/EntityTypeTest$1/ (Ljava/lang/Class;)V net/minecraft/world/level/entity/EntityTypeTest$1/ (Ljava/lang/Class;)V +MD: net/minecraft/world/level/entity/EntityTypeTest$1/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/entity/EntityTypeTest$1/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/entity/EntityTypeTest$1/m_142225_ ()Ljava/lang/Class; net/minecraft/world/level/entity/EntityTypeTest$1/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/world/level/entity/LevelCallback/m_141981_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTrackingEnd (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141983_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTickingEnd (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141985_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTrackingStart (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141986_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onDestroyed (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141987_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTickingStart (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141989_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onCreated (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_214006_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onSectionChange (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142137_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142232_ (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V net/minecraft/world/level/entity/LevelEntityGetter/get (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142273_ ()Ljava/lang/Iterable; net/minecraft/world/level/entity/LevelEntityGetter/getAll ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142597_ (I)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetter/get (I)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142690_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142694_ (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetter/get (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/ (Lnet/minecraft/world/level/entity/EntityLookup;Lnet/minecraft/world/level/entity/EntitySectionStorage;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/ (Lnet/minecraft/world/level/entity/EntityLookup;Lnet/minecraft/world/level/entity/EntitySectionStorage;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142137_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142232_ (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142273_ ()Ljava/lang/Iterable; net/minecraft/world/level/entity/LevelEntityGetterAdapter/getAll ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142597_ (I)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (I)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142690_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142694_ (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/ ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;Lnet/minecraft/world/level/entity/EntityPersistentStorage;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;Lnet/minecraft/world/level/entity/EntityPersistentStorage;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/close ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/close ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157506_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/tick ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157507_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/areEntitiesLoaded (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157509_ (JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/removeSectionIfEmpty (JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157512_ (JLjava/util/function/Consumer;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/storeChunkSections (JLjava/util/function/Consumer;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157515_ (Lnet/minecraft/util/CsvOutput;J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$dumpSections$17 (Lnet/minecraft/util/CsvOutput;J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157518_ (Lnet/minecraft/util/CsvOutput;Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus;J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$dumpSections$16 (Lnet/minecraft/util/CsvOutput;Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus;J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157527_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/entity/Visibility;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/updateChunkStatus (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/entity/Visibility;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157530_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$requestChunkLoad$8 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157533_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/addNewEntity (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157535_ (Lnet/minecraft/world/level/entity/EntityAccess;Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/PersistentEntitySectionManager/getEffectiveStatus (Lnet/minecraft/world/level/entity/EntityAccess;Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157538_ (Lnet/minecraft/world/level/entity/EntityAccess;Z)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/addEntity (Lnet/minecraft/world/level/entity/EntityAccess;Z)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157541_ (Lnet/minecraft/world/level/entity/EntitySection;)Ljava/util/stream/Stream; net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$storeChunkSections$7 (Lnet/minecraft/world/level/entity/EntitySection;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157543_ (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$6 (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157548_ (Ljava/io/Writer;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/dumpSections (Ljava/io/Writer;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157550_ (Ljava/util/UUID;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/isLoaded (Ljava/util/UUID;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157552_ (Ljava/util/stream/Stream;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/addLegacyChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157554_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/autoSave ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157555_ (J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/ensureChunkQueuedForLoad (J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157557_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/addEntityUuid (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157559_ (Ljava/util/stream/Stream;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/addWorldGenChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157561_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/saveAll ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157562_ (J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/requestChunkLoad (J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157564_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/startTicking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157567_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/world/level/entity/PersistentEntitySectionManager/getEntityGetter ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157568_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/processChunkUnload (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157570_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/stopTicking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157572_ ()Ljava/lang/String; net/minecraft/world/level/entity/PersistentEntitySectionManager/gatherStats ()Ljava/lang/String; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157573_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$saveAll$15 (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157575_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/startTracking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157577_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/processUnloads ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157578_ (J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$autoSave$13 (J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157580_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/stopTracking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157582_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/processPendingLoads ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157583_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$processUnloads$10 (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157585_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/unloadEntity (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157587_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/entity/PersistentEntitySectionManager/getAllChunksToSave ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157588_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$saveAll$14 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157590_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$autoSave$12 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157592_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$processPendingLoads$11 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157594_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$processChunkUnload$9 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157596_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$5 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157598_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$4 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157600_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$3 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157602_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$2 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157604_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$addWorldGenChunkEntities$1 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157606_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$addLegacyChunkEntities$0 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_202165_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/canPositionTick (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_202167_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/canPositionTick (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_287207_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/updateChunkStatus (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/PersistentEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/PersistentEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/m_142044_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/onMove ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/m_157620_ (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/Visibility;)V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/updateStatus (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/Visibility;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ (Ljava/lang/String;I)V net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/m_157631_ ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/$values ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/values ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/values ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/ ()V net/minecraft/world/level/entity/TransientEntitySectionManager/ ()V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;)V net/minecraft/world/level/entity/TransientEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157645_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/world/level/entity/TransientEntitySectionManager/getEntityGetter ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157646_ (J)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$new$0 (J)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157648_ (JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager/removeSectionIfEmpty (JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157651_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/entity/TransientEntitySectionManager/startTicking (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157653_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/TransientEntitySectionManager/addEntity (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157655_ (Lnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$stopTicking$4 (Lnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157657_ ()I net/minecraft/world/level/entity/TransientEntitySectionManager/count ()I +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157658_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/entity/TransientEntitySectionManager/stopTicking (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157660_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$stopTicking$3 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157662_ (Lnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$startTicking$2 (Lnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157664_ ()Ljava/lang/String; net/minecraft/world/level/entity/TransientEntitySectionManager/gatherStats ()Ljava/lang/String; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157665_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$startTicking$1 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/TransientEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/TransientEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/m_142044_ ()V net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/onMove ()V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/Visibility/ ()V net/minecraft/world/level/entity/Visibility/ ()V +MD: net/minecraft/world/level/entity/Visibility/ (Ljava/lang/String;IZZ)V net/minecraft/world/level/entity/Visibility/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/level/entity/Visibility/m_157691_ ()Z net/minecraft/world/level/entity/Visibility/isTicking ()Z +MD: net/minecraft/world/level/entity/Visibility/m_157694_ ()Z net/minecraft/world/level/entity/Visibility/isAccessible ()Z +MD: net/minecraft/world/level/entity/Visibility/m_157695_ ()[Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/$values ()[Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/Visibility/m_287140_ (Lnet/minecraft/server/level/FullChunkStatus;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/fromFullChunkStatus (Lnet/minecraft/server/level/FullChunkStatus;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/Visibility/values ()[Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/values ()[Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/ ()V net/minecraft/world/level/gameevent/BlockPositionSource/ ()V +MD: net/minecraft/world/level/gameevent/BlockPositionSource/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/gameevent/BlockPositionSource/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_142502_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/level/gameevent/BlockPositionSource/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_142510_ ()Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/BlockPositionSource/getType ()Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_157709_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/BlockPositionSource/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_223610_ (Lnet/minecraft/world/level/gameevent/BlockPositionSource;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/gameevent/BlockPositionSource/lambda$static$0 (Lnet/minecraft/world/level/gameevent/BlockPositionSource;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/ ()V net/minecraft/world/level/gameevent/BlockPositionSource$Type/ ()V +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/BlockPositionSource;)V net/minecraft/world/level/gameevent/BlockPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/BlockPositionSource;)V +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/gameevent/BlockPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/BlockPositionSource; net/minecraft/world/level/gameevent/BlockPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/BlockPositionSource; +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/BlockPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142341_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/gameevent/BlockPositionSource$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223616_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/gameevent/DynamicGameEventListener/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223617_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/add (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223619_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$move$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223622_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/SectionPos;Ljava/util/function/Consumer;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/ifChunkExists (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/SectionPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223634_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/remove (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223641_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/move (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_245008_ (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$move$2 (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_245009_ (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$move$1 (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_245010_ (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$remove$0 (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/ ()V net/minecraft/world/level/gameevent/EntityPositionSource/ ()V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/ (Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/gameevent/EntityPositionSource/ (Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/ (Lcom/mojang/datafixers/util/Either;F)V net/minecraft/world/level/gameevent/EntityPositionSource/ (Lcom/mojang/datafixers/util/Either;F)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_142502_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/level/gameevent/EntityPositionSource/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_142510_ ()Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/EntityPositionSource/getType ()Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223653_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/gameevent/EntityPositionSource/lambda$resolveEntity$6 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223655_ (Lnet/minecraft/world/level/Level;Lcom/mojang/datafixers/util/Either;)Ljava/util/Optional; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$resolveEntity$5 (Lnet/minecraft/world/level/Level;Lcom/mojang/datafixers/util/Either;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223658_ (Lnet/minecraft/world/level/Level;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$resolveEntity$4 (Lnet/minecraft/world/level/Level;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223661_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Integer; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getId$10 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Integer; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223665_ (Lnet/minecraft/world/level/gameevent/EntityPositionSource;)Ljava/lang/Float; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$static$0 (Lnet/minecraft/world/level/gameevent/EntityPositionSource;)Ljava/lang/Float; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223667_ (Ljava/lang/Integer;)Ljava/util/UUID; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getUuid$7 (Ljava/lang/Integer;)Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223669_ (Ljava/util/UUID;)Ljava/lang/Integer; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getId$9 (Ljava/util/UUID;)Ljava/lang/Integer; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223671_ (Ljava/util/UUID;Ljava/lang/Float;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$static$1 (Ljava/util/UUID;Ljava/lang/Float;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223674_ ()Ljava/util/UUID; net/minecraft/world/level/gameevent/EntityPositionSource/getUuid ()Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223675_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getPosition$3 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223677_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/gameevent/EntityPositionSource/resolveEntity (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223679_ (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getUuid$8 (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223681_ ()I net/minecraft/world/level/gameevent/EntityPositionSource/getId ()I +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_252733_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/ ()V net/minecraft/world/level/gameevent/EntityPositionSource$Type/ ()V +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/EntityPositionSource;)V net/minecraft/world/level/gameevent/EntityPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/EntityPositionSource;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/gameevent/EntityPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; net/minecraft/world/level/gameevent/EntityPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/EntityPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142341_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/gameevent/EntityPositionSource$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction;)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction;)V +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_245428_ ()Z net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/isEmpty ()Z +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_245521_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/visitInRangeListeners (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_245531_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/register (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_246052_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/unregister (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_247048_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEventListener;)Ljava/util/Optional; net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/getPostableListenerPosition (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEventListener;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction/m_280077_ (I)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction/apply (I)V +MD: net/minecraft/world/level/gameevent/GameEvent/ ()V net/minecraft/world/level/gameevent/GameEvent/ ()V +MD: net/minecraft/world/level/gameevent/GameEvent/ (Ljava/lang/String;I)V net/minecraft/world/level/gameevent/GameEvent/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/gameevent/GameEvent/m_157821_ ()Ljava/lang/String; net/minecraft/world/level/gameevent/GameEvent/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/GameEvent/m_157822_ (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/GameEvent/register (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/GameEvent/m_157824_ (Ljava/lang/String;I)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/GameEvent/register (Ljava/lang/String;I)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/GameEvent/m_157827_ ()I net/minecraft/world/level/gameevent/GameEvent/getNotificationRadius ()I +MD: net/minecraft/world/level/gameevent/GameEvent/m_204528_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/gameevent/GameEvent/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/gameevent/GameEvent/m_204530_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/level/gameevent/GameEvent/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/level/gameevent/GameEvent/toString ()Ljava/lang/String; net/minecraft/world/level/gameevent/GameEvent/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/gameevent/GameEvent$Context/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/gameevent/GameEvent$Context/equals (Ljava/lang/Object;)Z net/minecraft/world/level/gameevent/GameEvent$Context/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223711_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/gameevent/GameEvent$Context/sourceEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223712_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/gameevent/GameEvent$Context/affectedState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/hashCode ()I net/minecraft/world/level/gameevent/GameEvent$Context/hashCode ()I +MD: net/minecraft/world/level/gameevent/GameEvent$Context/m_223717_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$Context/of (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/m_223719_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$Context/of (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/m_223722_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$Context/of (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/toString ()Ljava/lang/String; net/minecraft/world/level/gameevent/GameEvent$Context/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Lnet/minecraft/world/level/gameevent/GameEvent$ListenerInfo;)I net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Lnet/minecraft/world/level/gameevent/GameEvent$ListenerInfo;)I +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Ljava/lang/Object;)I net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_246300_ ()Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/context ()Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_247093_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/recipient ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_247303_ ()Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/gameEvent ()Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_247585_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/source ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/GameEventDispatcher/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/m_245095_ (Ljava/util/List;)V net/minecraft/world/level/gameevent/GameEventDispatcher/handleGameEventMessagesInQueue (Ljava/util/List;)V +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/m_245905_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/world/level/gameevent/GameEventDispatcher/post (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/m_246660_ (Ljava/util/List;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/GameEventDispatcher/lambda$post$0 (Ljava/util/List;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/GameEventListener/m_142078_ ()I net/minecraft/world/level/gameevent/GameEventListener/getListenerRadius ()I +MD: net/minecraft/world/level/gameevent/GameEventListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/GameEventListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/GameEventListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/gameevent/GameEventListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/gameevent/GameEventListener/m_247514_ ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener/getDeliveryMode ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ ()V net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ ()V +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ (Ljava/lang/String;I)V net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/m_245393_ ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/$values ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/values ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/values ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$Holder/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/gameevent/GameEventListener$Holder/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/ ()V net/minecraft/world/level/gameevent/GameEventListenerRegistry/ ()V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_245428_ ()Z net/minecraft/world/level/gameevent/GameEventListenerRegistry/isEmpty ()Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_245521_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z net/minecraft/world/level/gameevent/GameEventListenerRegistry/visitInRangeListeners (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_245531_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry/register (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_246052_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry/unregister (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/ ()V net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/ ()V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_245428_ ()Z net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/isEmpty ()Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_245521_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/visitInRangeListeners (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_245531_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/register (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_246052_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/unregister (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor/m_247726_ (Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor/visit (Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/PositionSource/ ()V net/minecraft/world/level/gameevent/PositionSource/ ()V +MD: net/minecraft/world/level/gameevent/PositionSource/m_142502_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/level/gameevent/PositionSource/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/PositionSource/m_142510_ ()Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/PositionSource/getType ()Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/PositionSourceType/ ()V net/minecraft/world/level/gameevent/PositionSourceType/ ()V +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/gameevent/PositionSourceType/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/PositionSourceType/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_142341_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/gameevent/PositionSourceType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157874_ (Lnet/minecraft/world/level/gameevent/PositionSource;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/gameevent/PositionSourceType/toNetwork (Lnet/minecraft/world/level/gameevent/PositionSource;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157877_ (Ljava/lang/String;Lnet/minecraft/world/level/gameevent/PositionSourceType;)Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/PositionSourceType/register (Ljava/lang/String;Lnet/minecraft/world/level/gameevent/PositionSourceType;)Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157882_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/gameevent/PositionSourceType/lambda$fromNetwork$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157885_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/PositionSourceType/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;)V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/gameevent/vibrations/VibrationInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243709_ ()Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/gameEvent ()Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243776_ ()F net/minecraft/world/level/gameevent/vibrations/VibrationInfo/distance ()F +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243797_ ()Ljava/util/UUID; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/uuid ()Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243906_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/pos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243913_ ()Ljava/util/UUID; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/projectileOwnerUuid ()Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_244048_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/entity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/hashCode ()I net/minecraft/world/level/gameevent/vibrations/VibrationInfo/hashCode ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_245851_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getEntity$4 (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246457_ (Lnet/minecraft/world/level/gameevent/GameEvent;Ljava/lang/Float;Lnet/minecraft/world/phys/Vec3;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$2 (Lnet/minecraft/world/level/gameevent/GameEvent;Ljava/lang/Float;Lnet/minecraft/world/phys/Vec3;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246490_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getProjectileOwner$5 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246642_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getProjectileOwner$6 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246794_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/getEntity (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247126_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/getProjectileOwner (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247210_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getProjectileOwner$7 (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247424_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247491_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247625_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/UUID; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/getProjectileOwner (Lnet/minecraft/world/entity/Entity;)Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_257346_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/toString ()Ljava/lang/String; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ (Ljava/util/Optional;J)V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ (Ljava/util/Optional;J)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_245156_ (J)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/chosenCandidate (J)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_245756_ (JLnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Lorg/apache/commons/lang3/tuple/Pair; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$new$3 (JLnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Lorg/apache/commons/lang3/tuple/Pair; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246022_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/lang/Long; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$static$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/lang/Long; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246080_ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/startOver ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246604_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$static$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246723_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_247012_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)Z net/minecraft/world/level/gameevent/vibrations/VibrationSelector/shouldReplaceVibration (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_247691_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/addCandidate (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280007_ (FI)I net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getRedstoneStrengthForDistance (FI)I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280122_ (Lnet/minecraft/world/level/gameevent/GameEvent;)I net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getGameEventFrequency (Lnet/minecraft/world/level/gameevent/GameEvent;)I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280224_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280393_ (I)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getResonanceEventByFrequency (I)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;IZ)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;IZ)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280036_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/setCurrentVibration (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280067_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280178_ (I)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/setTravelTimeInTicks (I)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280274_ ()I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/getTravelTimeInTicks ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280457_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/getSelectionStrategy ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280502_ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/decrementTravelTime ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280562_ (Ljava/util/Optional;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;Ljava/lang/Integer;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/lambda$static$1 (Ljava/util/Optional;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;Ljava/lang/Integer;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280602_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/getCurrentVibration ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280609_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/lambda$static$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280616_ ()Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/shouldReloadVibrationParticle ()Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280671_ (Z)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/setReloadVibrationParticle (Z)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_142078_ ()I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/getListenerRadius ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280099_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/scheduleVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280258_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/isOccluded (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280268_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/lambda$forceScheduleVibration$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280275_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/forceScheduleVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280466_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/lambda$isOccluded$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280659_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/distanceBetweenInBlocks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280174_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/receiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280257_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/lambda$trySelectAndScheduleVibration$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280259_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280404_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/tryReloadVibrationParticle (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280446_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/areAdjacentChunksTicking (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280634_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/trySelectAndScheduleVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280022_ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/onDataChanged ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280076_ ()Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/canTriggerAvoidVibration ()Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280215_ ()Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/requiresAdjacentChunksToBeTicking ()Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280351_ ()I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/getListenerRadius ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280576_ (F)I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/calculateTravelTimeInTicks (F)I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280612_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/isValidVibration (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/levelgen/Aquifer/m_142203_ ()Z net/minecraft/world/level/levelgen/Aquifer/shouldScheduleFluidUpdate ()Z +MD: net/minecraft/world/level/levelgen/Aquifer/m_188374_ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; net/minecraft/world/level/levelgen/Aquifer/createDisabled (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; +MD: net/minecraft/world/level/levelgen/Aquifer/m_207104_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer/computeSubstance (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer/m_223880_ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; net/minecraft/world/level/levelgen/Aquifer/create (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; +MD: net/minecraft/world/level/levelgen/Aquifer$1/ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V net/minecraft/world/level/levelgen/Aquifer$1/ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V +MD: net/minecraft/world/level/levelgen/Aquifer$1/m_142203_ ()Z net/minecraft/world/level/levelgen/Aquifer$1/shouldScheduleFluidUpdate ()Z +MD: net/minecraft/world/level/levelgen/Aquifer$1/m_207104_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$1/computeSubstance (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$FluidPicker/m_183538_ (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/Aquifer$FluidPicker/computeFluid (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/Aquifer$FluidStatus/ (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/m_188405_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$FluidStatus/at (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ ()V net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ ()V +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_142203_ ()Z net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/shouldScheduleFluidUpdate ()Z +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158024_ (II)D net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/similarity (II)D +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158027_ (III)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/getIndex (III)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158039_ (I)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridX (I)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158045_ (I)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridY (I)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158047_ (I)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridZ (I)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_188445_ (J)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/getAquiferStatus (J)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_188447_ (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeFluid (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_207104_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeSubstance (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_208188_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;Lorg/apache/commons/lang3/mutable/MutableDouble;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;)D net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/calculatePressure (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;Lorg/apache/commons/lang3/mutable/MutableDouble;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;)D +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_223898_ (IIII)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeRandomizedFluidSurfaceLevel (IIII)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_223903_ (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeFluidType (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_223909_ (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;IZ)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeSurfaceLevel (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;IZ)I +MD: net/minecraft/world/level/levelgen/Beardifier/ ()V net/minecraft/world/level/levelgen/Beardifier/ ()V +MD: net/minecraft/world/level/levelgen/Beardifier/ (Lit/unimi/dsi/fastutil/objects/ObjectListIterator;Lit/unimi/dsi/fastutil/objects/ObjectListIterator;)V net/minecraft/world/level/levelgen/Beardifier/ (Lit/unimi/dsi/fastutil/objects/ObjectListIterator;Lit/unimi/dsi/fastutil/objects/ObjectListIterator;)V +MD: net/minecraft/world/level/levelgen/Beardifier/m_158081_ ([F)V net/minecraft/world/level/levelgen/Beardifier/lambda$static$0 ([F)V +MD: net/minecraft/world/level/levelgen/Beardifier/m_158083_ (III)D net/minecraft/world/level/levelgen/Beardifier/getBuryContribution (III)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_158091_ (III)D net/minecraft/world/level/levelgen/Beardifier/computeBeardContribution (III)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/Beardifier/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_207401_ ()D net/minecraft/world/level/levelgen/Beardifier/maxValue ()D +MD: net/minecraft/world/level/levelgen/Beardifier/m_207402_ ()D net/minecraft/world/level/levelgen/Beardifier/minValue ()D +MD: net/minecraft/world/level/levelgen/Beardifier/m_223919_ (I)Z net/minecraft/world/level/levelgen/Beardifier/isInKernelRange (I)Z +MD: net/minecraft/world/level/levelgen/Beardifier/m_223921_ (IDI)D net/minecraft/world/level/levelgen/Beardifier/computeBeardContribution (IDI)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_223925_ (IIII)D net/minecraft/world/level/levelgen/Beardifier/getBeardContribution (IIII)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_223930_ (Lnet/minecraft/world/level/ChunkPos;Lit/unimi/dsi/fastutil/objects/ObjectList;IILit/unimi/dsi/fastutil/objects/ObjectList;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/levelgen/Beardifier/lambda$forStructuresInChunk$2 (Lnet/minecraft/world/level/ChunkPos;Lit/unimi/dsi/fastutil/objects/ObjectList;IILit/unimi/dsi/fastutil/objects/ObjectList;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/levelgen/Beardifier/m_223937_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/Beardifier; net/minecraft/world/level/levelgen/Beardifier/forStructuresInChunk (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/Beardifier; +MD: net/minecraft/world/level/levelgen/Beardifier/m_223940_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Z net/minecraft/world/level/levelgen/Beardifier/lambda$forStructuresInChunk$1 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Z +MD: net/minecraft/world/level/levelgen/Beardifier$1/ ()V net/minecraft/world/level/levelgen/Beardifier$1/ ()V +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;I)V net/minecraft/world/level/levelgen/Beardifier$Rigid/ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;I)V +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/Beardifier$Rigid/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223944_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/Beardifier$Rigid/box ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223945_ ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/Beardifier$Rigid/terrainAdjustment ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223946_ ()I net/minecraft/world/level/levelgen/Beardifier$Rigid/groundLevelDelta ()I +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/hashCode ()I net/minecraft/world/level/levelgen/Beardifier$Rigid/hashCode ()I +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Beardifier$Rigid/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/ ()V net/minecraft/world/level/levelgen/BelowZeroRetrogen/ ()V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188466_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/levelgen/BelowZeroRetrogen/targetStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188470_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188474_ (Lnet/minecraft/world/level/chunk/ProtoChunk;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/replaceOldBedrock (Lnet/minecraft/world/level/chunk/ProtoChunk;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188479_ (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)Ljava/util/Optional; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$4 (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188481_ (Ljava/util/BitSet;)Ljava/util/stream/LongStream; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$1 (Ljava/util/BitSet;)Ljava/util/stream/LongStream; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188483_ (Ljava/util/stream/LongStream;)Ljava/util/BitSet; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$0 (Ljava/util/stream/LongStream;)Ljava/util/BitSet; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188485_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; net/minecraft/world/level/levelgen/BelowZeroRetrogen/read (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188490_ (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$replaceOldBedrock$6 (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198214_ (II)Z net/minecraft/world/level/levelgen/BelowZeroRetrogen/hasBedrockHole (II)Z +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198217_ (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$applyBedrockMask$7 (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198220_ ()Z net/minecraft/world/level/levelgen/BelowZeroRetrogen/hasBedrockHoles ()Z +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198221_ (Lnet/minecraft/world/level/chunk/ProtoChunk;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/applyBedrockMask (Lnet/minecraft/world/level/chunk/ProtoChunk;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_204531_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/world/level/levelgen/BelowZeroRetrogen/getBiomeResolver (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_204534_ (Lnet/minecraft/world/level/biome/BiomeResolver;Ljava/util/function/Predicate;Lnet/minecraft/world/level/chunk/ChunkAccess;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$getBiomeResolver$8 (Lnet/minecraft/world/level/biome/BiomeResolver;Ljava/util/function/Predicate;Lnet/minecraft/world/level/chunk/ChunkAccess;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_274282_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$3 (Lnet/minecraft/world/level/chunk/ChunkStatus;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_274283_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$2 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/ ()V net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/ ()V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/m_141928_ ()I net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/getHeight ()I +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/m_141937_ ()I net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/getMinBuildHeight ()I +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188499_ ()Z net/minecraft/world/level/levelgen/BitRandomSource/nextBoolean ()Z +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188500_ ()D net/minecraft/world/level/levelgen/BitRandomSource/nextDouble ()D +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188501_ ()F net/minecraft/world/level/levelgen/BitRandomSource/nextFloat ()F +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188502_ ()I net/minecraft/world/level/levelgen/BitRandomSource/nextInt ()I +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188503_ (I)I net/minecraft/world/level/levelgen/BitRandomSource/nextInt (I)I +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188505_ ()J net/minecraft/world/level/levelgen/BitRandomSource/nextLong ()J +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/BitRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/Column/ ()V net/minecraft/world/level/levelgen/Column/ ()V +MD: net/minecraft/world/level/levelgen/Column/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_158161_ ()Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/line ()Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158162_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/below (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158164_ (II)Lnet/minecraft/world/level/levelgen/Column$Range; net/minecraft/world/level/levelgen/Column/around (II)Lnet/minecraft/world/level/levelgen/Column$Range; +MD: net/minecraft/world/level/levelgen/Column/m_158167_ (Lnet/minecraft/world/level/LevelSimulatedReader;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/scanDirection (Lnet/minecraft/world/level/LevelSimulatedReader;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_158175_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;Ljava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/world/level/levelgen/Column/scan (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;Ljava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/Column/m_158181_ (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/withFloor (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158183_ (Ljava/util/OptionalInt;Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/create (Ljava/util/OptionalInt;Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158186_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/fromHighest (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158188_ (II)Lnet/minecraft/world/level/levelgen/Column$Range; net/minecraft/world/level/levelgen/Column/inside (II)Lnet/minecraft/world/level/levelgen/Column$Range; +MD: net/minecraft/world/level/levelgen/Column/m_158191_ (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/withCeiling (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158193_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/above (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158195_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/fromLowest (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column$Line/ ()V net/minecraft/world/level/levelgen/Column$Line/ ()V +MD: net/minecraft/world/level/levelgen/Column$Line/ ()V net/minecraft/world/level/levelgen/Column$Line/ ()V +MD: net/minecraft/world/level/levelgen/Column$Line/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Line/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Line/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Line/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Line/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Line/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Line/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Column$Line/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Column$Range/ (II)V net/minecraft/world/level/levelgen/Column$Range/ (II)V +MD: net/minecraft/world/level/levelgen/Column$Range/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Range/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Range/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Range/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Range/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Range/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Range/m_158212_ ()I net/minecraft/world/level/levelgen/Column$Range/ceiling ()I +MD: net/minecraft/world/level/levelgen/Column$Range/m_158213_ ()I net/minecraft/world/level/levelgen/Column$Range/floor ()I +MD: net/minecraft/world/level/levelgen/Column$Range/m_158214_ ()I net/minecraft/world/level/levelgen/Column$Range/height ()I +MD: net/minecraft/world/level/levelgen/Column$Range/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Column$Range/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Column$Ray/ (IZ)V net/minecraft/world/level/levelgen/Column$Ray/ (IZ)V +MD: net/minecraft/world/level/levelgen/Column$Ray/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Ray/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Ray/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Ray/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Ray/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Ray/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Ray/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Column$Ray/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/ ()V net/minecraft/world/level/levelgen/DebugLevelSource/ ()V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/levelgen/DebugLevelSource/ (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_142062_ ()I net/minecraft/world/level/levelgen/DebugLevelSource/getMinY ()I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_208207_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/DebugLevelSource/lambda$static$1 (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/DebugLevelSource/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213609_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V net/minecraft/world/level/levelgen/DebugLevelSource/applyBiomeDecoration (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/DebugLevelSource/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/DebugLevelSource/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/DebugLevelSource/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/DebugLevelSource/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/DebugLevelSource/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_254814_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DebugLevelSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6331_ ()I net/minecraft/world/level/levelgen/DebugLevelSource/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6337_ ()I net/minecraft/world/level/levelgen/DebugLevelSource/getSeaLevel ()I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_64148_ (II)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/DebugLevelSource/getBlockStateFor (II)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DebugLevelSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/levelgen/DebugLevelSource/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/levelgen/Density/ ()V net/minecraft/world/level/levelgen/Density/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunction/ ()V net/minecraft/world/level/levelgen/DensityFunction/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunction/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunction/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunction/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunction/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208220_ (DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/clamp (DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208225_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunction/lambda$static$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208229_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/abs ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208230_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/square ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208231_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/cube ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208232_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/halfNegative ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208233_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/quarterNegative ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208234_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/squeeze ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunction/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/m_207207_ ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/fillAllDirectly ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/m_207263_ (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/forIndex (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_188743_ ()Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/getBlender ()Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_207113_ ()I net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/blockZ ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_207114_ ()I net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/blockY ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_207115_ ()I net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/blockX ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ ()V net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223997_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noiseData ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223998_ ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noise ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/hashCode ()I net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/m_224005_ ()D net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/m_224006_ (DDD)D net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/m_224010_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/lambda$static$0 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/ (III)V net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/ (III)V +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/hashCode ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/m_207113_ ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockZ ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/m_207114_ ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockY ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/m_207115_ ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockX ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunction$Visitor/m_213918_ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunction$Visitor/visitNoise (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunction$Visitor/m_214017_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction$Visitor/apply (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/ ()V net/minecraft/world/level/levelgen/DensityFunctions/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions/ ()V net/minecraft/world/level/levelgen/DensityFunctions/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208263_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/zero ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208264_ (D)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/constant (D)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208266_ (IIDD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/yClampedGradient (IIDD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208271_ (J)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/endIslands (J)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208281_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/interpolated (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208283_ (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mapFromUnitTo (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208287_ (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/rangeChoice (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208293_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/add (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208296_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shiftedNoise2d (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208301_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/lerp (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208312_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/map (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208315_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/weirdScaledSampler (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208322_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/noise (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208324_ (Lnet/minecraft/core/Holder;D)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/noise (Lnet/minecraft/core/Holder;D)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208327_ (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mappedNoise (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208331_ (Lnet/minecraft/core/Holder;DDD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mappedNoise (Lnet/minecraft/core/Holder;DDD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208336_ (Lnet/minecraft/core/Holder;DDDD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mappedNoise (Lnet/minecraft/core/Holder;DDDD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208342_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DensityFunctions/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208360_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/blendAlpha ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208361_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/flatCache (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208363_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mul (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208366_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shiftA (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208368_ (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/noise (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208372_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/blendOffset ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208373_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/cache2d (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208375_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/min (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208378_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shiftB (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208380_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/cacheOnce (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208382_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/max (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208385_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shift (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208387_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/cacheAllInCell (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208389_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/blendDensity (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224020_ (Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/spline (Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224022_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224024_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/singleArgumentCodec (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224028_ (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/makeCodec (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224030_ (Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/lerp (Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224034_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DensityFunctions/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224038_ (Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/doubleFunctionArgumentCodec (Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224042_ (Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/singleFunctionArgumentCodec (Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224045_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BiFunction;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions/lambda$doubleFunctionArgumentCodec$3 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BiFunction;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224050_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/DensityFunctions/lambda$static$2 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224052_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DensityFunctions/lambda$static$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$1/ ()V net/minecraft/world/level/levelgen/DensityFunctions$1/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Ap2/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Ap2/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Ap2/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207119_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207185_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument1 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207190_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument2 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Ap2/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Ap2/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Ap2/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Ap2/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_208520_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_208542_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207189_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207219_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/transform (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_208579_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Clamp/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Clamp/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$Clamp/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Clamp/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Clamp/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_208596_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Constant/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/ (D)V net/minecraft/world/level/levelgen/DensityFunctions$Constant/ (D)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Constant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208607_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Constant/value ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Constant/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Constant/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Constant/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Constant/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Constant/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Constant/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Constant/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ ()V net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ (J)V net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ (J)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_224062_ (Lnet/minecraft/world/level/levelgen/synth/SimplexNoise;II)F net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/getHeightValue (Lnet/minecraft/world/level/levelgen/synth/SimplexNoise;II)F +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/f_208636_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/function ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Mapped/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Mapped/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208654_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Mapped/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_208668_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;D)D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/transform (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_208671_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/create (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/m_208698_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/m_208699_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunctions$Marker/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Marker/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Marker/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Marker/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Marker/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Marker/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Marker/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Marker/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Marker/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/m_208738_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/m_208739_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DDD)V net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DDD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208746_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/specificType ()Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208750_ ()D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207119_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207185_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument1 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207190_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument2 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/m_208780_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Noise/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Noise/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Noise/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208787_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$Noise/noise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208788_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/xzScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208789_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/yScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Noise/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Noise/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Noise/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Noise/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_208797_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$Noise/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Noise/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Noise/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ ()V net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208823_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208824_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/minInclusive ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208825_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/maxExclusive ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208826_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenInRange ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208827_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenOutOfRange ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_208836_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Shift/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$Shift/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Shift/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Shift/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Shift/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Shift/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Shift/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$Shift/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Shift/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ ()V net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ ()V net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_208917_ (DDD)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/compute (DDD)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ ()V net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208924_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftX ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208925_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftY ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208926_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftZ ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208927_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/xzScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208928_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/yScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208930_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/noise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_208942_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Spline/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/ (Lnet/minecraft/util/CubicSpline;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline/ (Lnet/minecraft/util/CubicSpline;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Spline/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211702_ ()Lnet/minecraft/util/CubicSpline; net/minecraft/world/level/levelgen/DensityFunctions$Spline/spline ()Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Spline/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Spline/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Spline/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Spline/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Spline/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Spline/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_224117_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; net/minecraft/world/level/levelgen/DensityFunctions$Spline/lambda$mapAll$0 (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Spline/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/f_224122_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/function ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_183321_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Point;)F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/apply (Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Point;)F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_183321_ (Ljava/lang/Object;)F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/apply (Ljava/lang/Object;)F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_213849_ ()F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/maxValue ()F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_213850_ ()F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/minValue ()F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_224127_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/f_224139_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/context ()Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207189_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207219_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/transform (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/ ()V net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_207119_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_207185_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/argument1 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_207190_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/argument2 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_209073_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/create (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/m_209090_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/m_209091_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ ()V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208427_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/noise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208428_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/rarityValueMapper ()Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207189_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207219_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/transform (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_208437_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ ()V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ (Ljava/lang/String;ILjava/lang/String;Lit/unimi/dsi/fastutil/doubles/Double2DoubleFunction;D)V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ (Ljava/lang/String;ILjava/lang/String;Lit/unimi/dsi/fastutil/doubles/Double2DoubleFunction;D)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/m_208473_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ ()V net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ (IIDD)V net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ (IIDD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208481_ ()I net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromY ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208482_ ()I net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toY ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208483_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208484_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_208493_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/ ()V net/minecraft/world/level/levelgen/FlatLevelSource/ ()V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/world/level/levelgen/FlatLevelSource/ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_142051_ (Lnet/minecraft/world/level/LevelHeightAccessor;)I net/minecraft/world/level/levelgen/FlatLevelSource/getSpawnHeight (Lnet/minecraft/world/level/LevelHeightAccessor;)I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_142062_ ()I net/minecraft/world/level/levelgen/FlatLevelSource/getMinY ()I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_204542_ (I)[Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$getBaseColumn$4 (I)[Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_204548_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$getBaseColumn$3 (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/FlatLevelSource/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/FlatLevelSource/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/FlatLevelSource/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/FlatLevelSource/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/FlatLevelSource/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/FlatLevelSource/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_254815_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_254816_ (Lnet/minecraft/core/HolderLookup;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$createState$2 (Lnet/minecraft/core/HolderLookup;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_254817_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$createState$1 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_255169_ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/levelgen/FlatLevelSource/createState (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6331_ ()I net/minecraft/world/level/levelgen/FlatLevelSource/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6337_ ()I net/minecraft/world/level/levelgen/FlatLevelSource/getSeaLevel ()I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_64191_ ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/FlatLevelSource/settings ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/FlatLevelSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/levelgen/FlatLevelSource/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/levelgen/GenerationStep/ ()V net/minecraft/world/level/levelgen/GenerationStep/ ()V +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/ ()V net/minecraft/world/level/levelgen/GenerationStep$Carving/ ()V +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/GenerationStep$Carving/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/m_158285_ ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/GenerationStep$Carving/$values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/m_64208_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Carving/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Carving/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/GenerationStep$Carving/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/GenerationStep$Carving/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/ ()V net/minecraft/world/level/levelgen/GenerationStep$Decoration/ ()V +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/GenerationStep$Decoration/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/m_158286_ ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/GenerationStep$Decoration/$values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/m_224194_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Decoration/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Decoration/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/GenerationStep$Decoration/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/GenerationStep$Decoration/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/ ()V net/minecraft/world/level/levelgen/GeodeBlockSettings/ ()V +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/GeodeBlockSettings/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158306_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$8 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158312_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Ljava/util/List; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$5 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158314_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$4 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158316_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$3 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158318_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158320_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158322_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_204563_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$7 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_204565_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$6 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/ ()V net/minecraft/world/level/levelgen/GeodeCrackSettings/ ()V +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/ (DDI)V net/minecraft/world/level/levelgen/GeodeCrackSettings/ (DDI)V +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158333_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158335_ (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158337_ (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158339_ (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/ ()V net/minecraft/world/level/levelgen/GeodeLayerSettings/ ()V +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/ (DDDD)V net/minecraft/world/level/levelgen/GeodeLayerSettings/ (DDDD)V +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158353_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158355_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$3 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158357_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158359_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158361_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/Heightmap/ ()V net/minecraft/world/level/levelgen/Heightmap/ ()V +MD: net/minecraft/world/level/levelgen/Heightmap/ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V net/minecraft/world/level/levelgen/Heightmap/ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_158364_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V net/minecraft/world/level/levelgen/Heightmap/setRawData (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_158368_ (II)I net/minecraft/world/level/levelgen/Heightmap/getHighestTaken (II)I +MD: net/minecraft/world/level/levelgen/Heightmap/m_284114_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap/m_64239_ ()[J net/minecraft/world/level/levelgen/Heightmap/getRawData ()[J +MD: net/minecraft/world/level/levelgen/Heightmap/m_64240_ (I)I net/minecraft/world/level/levelgen/Heightmap/getFirstAvailable (I)I +MD: net/minecraft/world/level/levelgen/Heightmap/m_64242_ (II)I net/minecraft/world/level/levelgen/Heightmap/getFirstAvailable (II)I +MD: net/minecraft/world/level/levelgen/Heightmap/m_64245_ (III)V net/minecraft/world/level/levelgen/Heightmap/setHeight (III)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_64249_ (IIILnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap/update (IIILnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap/m_64256_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V net/minecraft/world/level/levelgen/Heightmap/primeHeightmaps (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_64265_ (II)I net/minecraft/world/level/levelgen/Heightmap/getIndex (II)I +MD: net/minecraft/world/level/levelgen/Heightmap$Types/ ()V net/minecraft/world/level/levelgen/Heightmap$Types/ ()V +MD: net/minecraft/world/level/levelgen/Heightmap$Types/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/Heightmap$Usage;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/Heightmap$Types/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/Heightmap$Usage;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_158371_ ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/Heightmap$Types/$values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_284115_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap$Types/lambda$static$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_284116_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap$Types/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64294_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/Heightmap$Types/getSerializationKey ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64297_ ()Z net/minecraft/world/level/levelgen/Heightmap$Types/sendToClient ()Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64298_ ()Z net/minecraft/world/level/levelgen/Heightmap$Types/keepAfterWorldgen ()Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64299_ ()Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/Heightmap$Types/isOpaque ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/Heightmap$Types/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/Heightmap$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/Heightmap$Types/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/ ()V net/minecraft/world/level/levelgen/Heightmap$Usage/ ()V +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/Heightmap$Usage/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/m_158372_ ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; net/minecraft/world/level/levelgen/Heightmap$Usage/$values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Usage; net/minecraft/world/level/levelgen/Heightmap$Usage/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; net/minecraft/world/level/levelgen/Heightmap$Usage/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/ (J)V net/minecraft/world/level/levelgen/LegacyRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/LegacyRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/LegacyRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/LegacyRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/LegacyRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/LegacyRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/ (J)V net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/ (J)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/m_183502_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/m_213715_ (III)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/at (III)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/m_214111_ (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/fromHashOf (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/m_188602_ ()V net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/reset ()V +MD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/m_188603_ ()D net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ ()V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ ()V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_142062_ ()I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getMinY ()I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_198231_ (Lnet/minecraft/world/level/levelgen/NoiseChunk;IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/debugPreliminarySurfaceLevel (Lnet/minecraft/world/level/levelgen/NoiseChunk;IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213908_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/createBiomes (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224221_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/stable (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224239_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/iterateNoiseColumn (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224246_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$applyCarvers$9 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224251_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$doFill$13 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224256_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/createNoiseChunk (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224261_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/Blender;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/buildSurface (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/Blender;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224269_ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;ILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$createFluidPicker$4 (Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;ILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224277_ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$static$1 (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224284_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/doFill (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224291_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/doCreateBiomes (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224307_ (Ljava/util/Set;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Throwable;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$fillFromNoise$12 (Ljava/util/Set;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Throwable;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224317_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$buildSurface$7 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224324_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$fillFromNoise$11 (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224331_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$createBiomes$5 (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224336_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$doCreateBiomes$6 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224341_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/generatorSettings ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_245021_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$new$3 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_247703_ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/createFluidPicker (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254818_ (Lnet/minecraft/world/level/levelgen/RandomState;III)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$applyCarvers$8 (Lnet/minecraft/world/level/levelgen/RandomState;III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254819_ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254820_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254821_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$applyCarvers$10 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6331_ ()I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6337_ ()I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getSeaLevel ()I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/ (ILnet/minecraft/world/level/levelgen/RandomState;IILnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)V net/minecraft/world/level/levelgen/NoiseChunk/ (ILnet/minecraft/world/level/levelgen/RandomState;IILnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188743_ ()Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/NoiseChunk/getBlender ()Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188749_ (I)V net/minecraft/world/level/levelgen/NoiseChunk/advanceCellX (I)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188791_ ()V net/minecraft/world/level/levelgen/NoiseChunk/initializeForFirstCellX ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188804_ ()V net/minecraft/world/level/levelgen/NoiseChunk/swapSlices ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188810_ (II)V net/minecraft/world/level/levelgen/NoiseChunk/selectCellYZ (II)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188817_ ()Lnet/minecraft/world/level/levelgen/Aquifer; net/minecraft/world/level/levelgen/NoiseChunk/aquifer ()Lnet/minecraft/world/level/levelgen/Aquifer; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_198249_ (J)I net/minecraft/world/level/levelgen/NoiseChunk/computePreliminarySurfaceLevel (J)I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_198256_ (II)I net/minecraft/world/level/levelgen/NoiseChunk/preliminarySurfaceLevel (II)I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207113_ ()I net/minecraft/world/level/levelgen/NoiseChunk/blockZ ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207114_ ()I net/minecraft/world/level/levelgen/NoiseChunk/blockY ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207115_ ()I net/minecraft/world/level/levelgen/NoiseChunk/blockX ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207207_ ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk/fillAllDirectly ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207263_ (I)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseChunk/forIndex (I)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207263_ (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/NoiseChunk/forIndex (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209186_ (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$updateForZ$4 (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209191_ (ID)V net/minecraft/world/level/levelgen/NoiseChunk/updateForY (ID)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209202_ (IILnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$selectCellYZ$1 (IILnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209213_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk/wrap (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209215_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseChunk/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209220_ (ZI)V net/minecraft/world/level/levelgen/NoiseChunk/fillSlice (ZI)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209227_ (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$updateForX$3 (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209230_ (ID)V net/minecraft/world/level/levelgen/NoiseChunk/updateForX (ID)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209233_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk/wrapNew (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209236_ (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$updateForY$2 (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209241_ (ID)V net/minecraft/world/level/levelgen/NoiseChunk/updateForZ (ID)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209244_ (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; net/minecraft/world/level/levelgen/NoiseChunk/getOrComputeBlendingOutput (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209247_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseChunk/getInterpolatedState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209248_ ()V net/minecraft/world/level/levelgen/NoiseChunk/stopInterpolation ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224352_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseChunk/forChunk (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224359_ (Lnet/minecraft/world/level/levelgen/NoiseRouter;Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$Sampler; net/minecraft/world/level/levelgen/NoiseChunk/cachedClimateSampler (Lnet/minecraft/world/level/levelgen/NoiseRouter;Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$Sampler; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224362_ ()I net/minecraft/world/level/levelgen/NoiseChunk/cellWidth ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224363_ ()I net/minecraft/world/level/levelgen/NoiseChunk/cellHeight ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk$1/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V net/minecraft/world/level/levelgen/NoiseChunk$1/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$1/m_207207_ ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$1/fillAllDirectly ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$1/m_207263_ (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/NoiseChunk$1/forIndex (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/NoiseChunk$2/ ()V net/minecraft/world/level/levelgen/NoiseChunk$2/ ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207401_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/maxValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207402_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/minValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207401_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/maxValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207402_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/minValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller/m_207387_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller/calculate (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;Z)V net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;Z)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/m_207401_ ()D net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/maxValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/m_207402_ ()D net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/minValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188850_ (D)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/updateForY (D)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188854_ (II)[[D net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/allocateSlice (II)[[D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188860_ ()V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/swapSlices ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188861_ (D)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/updateForX (D)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188863_ (II)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/selectCellYZ (II)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188866_ (D)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/updateForZ (D)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ ()V net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ ()V +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ (Lnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Ljava/util/List;IZZZZ)V net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ (Lnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Ljava/util/List;IZZZZ)V +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_158533_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/aquifersEnabled ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_188871_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/surfaceRule ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209353_ ()Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseRouter ()Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209354_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/useLegacyRandomSource ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_224370_ ()Ljava/util/List; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/spawnTarget ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64439_ ()Lnet/minecraft/world/level/levelgen/NoiseSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseSettings ()Lnet/minecraft/world/level/levelgen/NoiseSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64440_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultBlock ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64441_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultFluid ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64444_ ()I net/minecraft/world/level/levelgen/NoiseGeneratorSettings/seaLevel ()I +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64445_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/disableMobGeneration ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/hashCode ()I net/minecraft/world/level/levelgen/NoiseGeneratorSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_158567_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/isAquifersEnabled ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_188893_ ()Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/getRandomSource ()Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_209369_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/oreVeinsEnabled ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_238396_ ()Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/dummy ()Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_254959_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/NoiseGeneratorSettings/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255038_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/caves (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255186_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/end (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255226_ (Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/overworld (Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255230_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/floatingIslands (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255410_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/nether (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_64474_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseRouter/ ()V net/minecraft/world/level/levelgen/NoiseRouter/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouter/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseRouter/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseRouter/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/NoiseRouter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209378_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/barrierNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209379_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelFloodednessNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209380_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelSpreadNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209381_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/lavaNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209384_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/temperature ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209386_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/continents ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209387_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/erosion ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209388_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/depth ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209389_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/ridges ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209390_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/initialDensityWithoutJaggedness ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209391_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/finalDensity ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209392_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/veinToggle ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209393_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/veinRidged ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209394_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/veinGap ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_224392_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/vegetation ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/hashCode ()I net/minecraft/world/level/levelgen/NoiseRouter/hashCode ()I +MD: net/minecraft/world/level/levelgen/NoiseRouter/m_224410_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseRouter/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseRouter/m_224412_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouter/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouter/m_224414_ (Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/NoiseRouter/field (Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/NoiseRouter/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseRouter/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/ ()V net/minecraft/world/level/levelgen/NoiseRouterData/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouterData/ ()V net/minecraft/world/level/levelgen/NoiseRouterData/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_209471_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;III)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/yLimitedInterpolatable (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;III)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_209536_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/NoiseRouterData/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_212271_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/noiseGradientDensity (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224435_ (F)F net/minecraft/world/level/levelgen/NoiseRouterData/peaksAndValleys (F)F +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224437_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/peaksAndValleys (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224439_ (Lnet/minecraft/world/level/levelgen/DensityFunction;II)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideEndLike (Lnet/minecraft/world/level/levelgen/DensityFunction;II)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224443_ (Lnet/minecraft/world/level/levelgen/DensityFunction;IIIIDIID)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slide (Lnet/minecraft/world/level/levelgen/DensityFunction;IIIIDIID)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224453_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/splineWithBlending (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224456_ (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I net/minecraft/world/level/levelgen/NoiseRouterData/lambda$overworld$1 (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224474_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Z)V net/minecraft/world/level/levelgen/NoiseRouterData/registerTerrainNoises (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Z)V +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224489_ (ZLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideOverworld (ZLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224492_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/postProcess (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224494_ (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I net/minecraft/world/level/levelgen/NoiseRouterData/lambda$overworld$0 (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224505_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideEnd (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_238384_ ()Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/none ()Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254847_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/spaghettiRoughnessFunction (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254860_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/floatingIslands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254915_ (Lnet/minecraft/core/HolderGetter;II)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideNetherLike (Lnet/minecraft/core/HolderGetter;II)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254999_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/noNewCaves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255020_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/caves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255104_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/end (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255105_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/registerAndWrap (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255130_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/spaghetti2D (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255167_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/pillars (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255262_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/overworld (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255275_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/entrances (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255288_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseRouterData/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255300_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/noodle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255355_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/underground (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255403_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/getFunction (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255404_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/nether (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/ ()V net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/m_209563_ (D)D net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/getSphaghettiRarity2D (D)D +MD: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/m_209565_ (D)D net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/getSpaghettiRarity3D (D)D +MD: net/minecraft/world/level/levelgen/NoiseSettings/ ()V net/minecraft/world/level/levelgen/NoiseSettings/ ()V +MD: net/minecraft/world/level/levelgen/NoiseSettings/ (IIII)V net/minecraft/world/level/levelgen/NoiseSettings/ (IIII)V +MD: net/minecraft/world/level/levelgen/NoiseSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/NoiseSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_158688_ ()I net/minecraft/world/level/levelgen/NoiseSettings/minY ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_64508_ ()I net/minecraft/world/level/levelgen/NoiseSettings/height ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_64512_ ()I net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeHorizontal ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_64513_ ()I net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeVertical ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/hashCode ()I net/minecraft/world/level/levelgen/NoiseSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_158718_ (Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/world/level/levelgen/NoiseSettings/lambda$create$4 (Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_158720_ (Lnet/minecraft/world/level/levelgen/NoiseSettings;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/NoiseSettings/guardY (Lnet/minecraft/world/level/levelgen/NoiseSettings;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_189212_ ()I net/minecraft/world/level/levelgen/NoiseSettings/getCellHeight ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_189213_ ()I net/minecraft/world/level/levelgen/NoiseSettings/getCellWidth ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_224525_ (IIII)Lnet/minecraft/world/level/levelgen/NoiseSettings; net/minecraft/world/level/levelgen/NoiseSettings/create (IIII)Lnet/minecraft/world/level/levelgen/NoiseSettings; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_224530_ (Lnet/minecraft/world/level/LevelHeightAccessor;)Lnet/minecraft/world/level/levelgen/NoiseSettings; net/minecraft/world/level/levelgen/NoiseSettings/clampToHeightAccessor (Lnet/minecraft/world/level/LevelHeightAccessor;)Lnet/minecraft/world/level/levelgen/NoiseSettings; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_274284_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/lambda$guardY$2 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_274285_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/lambda$guardY$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_274286_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/lambda$guardY$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_64535_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Noises/ ()V net/minecraft/world/level/levelgen/Noises/ ()V +MD: net/minecraft/world/level/levelgen/Noises/ ()V net/minecraft/world/level/levelgen/Noises/ ()V +MD: net/minecraft/world/level/levelgen/Noises/m_189309_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/Noises/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/Noises/m_255421_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/Noises/instantiate (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/OreVeinifier/ ()V net/minecraft/world/level/levelgen/OreVeinifier/ ()V +MD: net/minecraft/world/level/levelgen/OreVeinifier/m_209660_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/OreVeinifier/lambda$create$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/OreVeinifier/m_209667_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;)Lnet/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller; net/minecraft/world/level/levelgen/OreVeinifier/create (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;)Lnet/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller; +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ ()V net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ ()V +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ (Ljava/lang/String;ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ (Ljava/lang/String;ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/m_209689_ ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; net/minecraft/world/level/levelgen/OreVeinifier$VeinType/$values ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; net/minecraft/world/level/levelgen/OreVeinifier$VeinType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/values ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; net/minecraft/world/level/levelgen/OreVeinifier$VeinType/values ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +MD: net/minecraft/world/level/levelgen/PatrolSpawner/ ()V net/minecraft/world/level/levelgen/PatrolSpawner/ ()V +MD: net/minecraft/world/level/levelgen/PatrolSpawner/m_224532_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/PatrolSpawner/spawnPatrolMember (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/PatrolSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/level/levelgen/PatrolSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/level/levelgen/PhantomSpawner/ ()V net/minecraft/world/level/levelgen/PhantomSpawner/ ()V +MD: net/minecraft/world/level/levelgen/PhantomSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/level/levelgen/PhantomSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_183502_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/PositionalRandomFactory/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_213715_ (III)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/at (III)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_214111_ (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/fromHashOf (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_224540_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/fromHashOf (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_224542_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/at (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/RandomState/ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)V net/minecraft/world/level/levelgen/RandomState/ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)V +MD: net/minecraft/world/level/levelgen/RandomState/m_224560_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/RandomState/getOrCreateNoise (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/RandomState/m_224565_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/getOrCreateRandomFactory (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_224567_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/lambda$getOrCreateRandomFactory$1 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_224578_ ()Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/RandomState/router ()Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/RandomState/m_224579_ ()Lnet/minecraft/world/level/biome/Climate$Sampler; net/minecraft/world/level/levelgen/RandomState/sampler ()Lnet/minecraft/world/level/biome/Climate$Sampler; +MD: net/minecraft/world/level/levelgen/RandomState/m_224580_ ()Lnet/minecraft/world/level/levelgen/SurfaceSystem; net/minecraft/world/level/levelgen/RandomState/surfaceSystem ()Lnet/minecraft/world/level/levelgen/SurfaceSystem; +MD: net/minecraft/world/level/levelgen/RandomState/m_224581_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/aquiferRandom ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_224582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/oreRandom ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_254822_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/RandomState/lambda$getOrCreateNoise$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/RandomState/m_255077_ (Lnet/minecraft/core/HolderGetter$Provider;Lnet/minecraft/resources/ResourceKey;J)Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/RandomState/create (Lnet/minecraft/core/HolderGetter$Provider;Lnet/minecraft/resources/ResourceKey;J)Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/RandomState/m_255302_ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/RandomState/create (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/RandomState$1/ (Lnet/minecraft/world/level/levelgen/RandomState;)V net/minecraft/world/level/levelgen/RandomState$1/ (Lnet/minecraft/world/level/levelgen/RandomState;)V +MD: net/minecraft/world/level/levelgen/RandomState$1/m_214017_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1/apply (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomState$1/m_246139_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1/wrapNew (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/ (Lnet/minecraft/world/level/levelgen/RandomState;JZ)V net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/ (Lnet/minecraft/world/level/levelgen/RandomState;JZ)V +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_213918_ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/visitNoise (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_214017_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/apply (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_224591_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/newLegacyInstance (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_224595_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/wrapNew (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomSupport/ ()V net/minecraft/world/level/levelgen/RandomSupport/ ()V +MD: net/minecraft/world/level/levelgen/RandomSupport/ ()V net/minecraft/world/level/levelgen/RandomSupport/ ()V +MD: net/minecraft/world/level/levelgen/RandomSupport/m_189329_ (J)J net/minecraft/world/level/levelgen/RandomSupport/mixStafford13 (J)J +MD: net/minecraft/world/level/levelgen/RandomSupport/m_189331_ (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport/upgradeSeedTo128bit (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport/m_224599_ ()J net/minecraft/world/level/levelgen/RandomSupport/generateUniqueSeed ()J +MD: net/minecraft/world/level/levelgen/RandomSupport/m_224600_ (J)J net/minecraft/world/level/levelgen/RandomSupport/lambda$generateUniqueSeed$0 (J)J +MD: net/minecraft/world/level/levelgen/RandomSupport/m_288212_ (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport/seedFromHashOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport/m_289611_ (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport/upgradeSeedTo128bitUnmixed (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/ (JJ)V net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/ (JJ)V +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189335_ ()J net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedLo ()J +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189336_ ()J net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedHi ()J +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/hashCode ()I net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/hashCode ()I +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/m_288194_ (JJ)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/xor (JJ)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/m_288205_ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/xor (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/m_289608_ ()Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/mixed ()Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/ (J)V net/minecraft/world/level/levelgen/SingleThreadedRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/SingleThreadedRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/SingleThreadedRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/SingleThreadedRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/SingleThreadedRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/SingleThreadedRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/SurfaceRules/ ()V net/minecraft/world/level/levelgen/SurfaceRules/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules/ ()V net/minecraft/world/level/levelgen/SurfaceRules/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189381_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/steep ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189382_ (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/waterBlockCheck (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189390_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/state (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189392_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/not (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189394_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/ifTrue (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189400_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/yBlockCheck (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189403_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/verticalGradient (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189407_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/isBiome (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189409_ (Lnet/minecraft/resources/ResourceKey;D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/noiseCondition (Lnet/minecraft/resources/ResourceKey;D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189412_ (Lnet/minecraft/resources/ResourceKey;DD)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/noiseCondition (Lnet/minecraft/resources/ResourceKey;DD)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189416_ ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/isBiome ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189418_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/hole ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189419_ (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/waterStartCheck (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189422_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/yStartCheck (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189425_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/abovePreliminarySurface ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189426_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/temperature ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189427_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/bandlands ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_198272_ ([Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/sequence ([Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_202171_ (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/stoneDepthCheck (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_202176_ (IZLnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/stoneDepthCheck (IZLnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_224603_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ ()V net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/m_189440_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/m_189485_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/m_204619_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;)Ljava/util/List; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule;)V net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189512_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/resultState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189513_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/rule ()Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Condition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Condition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/m_204624_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/m_224612_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Ljava/util/function/Function;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)V net/minecraft/world/level/levelgen/SurfaceRules$Context/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Ljava/util/function/Function;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_189569_ (II)V net/minecraft/world/level/levelgen/SurfaceRules$Context/updateXZ (II)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_189576_ (IIIIII)V net/minecraft/world/level/levelgen/SurfaceRules$Context/updateY (IIIIII)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_189583_ ()I net/minecraft/world/level/levelgen/SurfaceRules$Context/getMinSurfaceLevel ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_198280_ (I)I net/minecraft/world/level/levelgen/SurfaceRules$Context/blockCoordToSurfaceCell (I)I +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_198282_ (I)I net/minecraft/world/level/levelgen/SurfaceRules$Context/surfaceCellToBlockCoord (I)I +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_202181_ ()D net/minecraft/world/level/levelgen/SurfaceRules$Context/getSurfaceSecondary ()D +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_204626_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/SurfaceRules$Context/lambda$updateY$0 (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Hole/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Hole/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/m_189611_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; net/minecraft/world/level/levelgen/SurfaceRules$Hole/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Hole/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; net/minecraft/world/level/levelgen/SurfaceRules$Hole/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; net/minecraft/world/level/levelgen/SurfaceRules$Hole/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/m_183477_ ()J net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/getContextLastUpdate ()J +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/m_183477_ ()J net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/getContextLastUpdate ()J +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/m_183477_ ()J net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/getContextLastUpdate ()J +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ (Lnet/minecraft/resources/ResourceKey;DD)V net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ (Lnet/minecraft/resources/ResourceKey;DD)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189627_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/noise ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189628_ ()D net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/minThreshold ()D +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189629_ ()D net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/maxThreshold ()D +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/m_257347_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;)V net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/f_189658_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/target ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)V net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/f_189667_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/target ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/m_204630_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/m_224626_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/f_189685_ ()Ljava/util/List; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/rules ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/f_189697_ ()Ljava/util/List; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/sequence ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceRules$StateRule/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$StateRule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/f_189712_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$StateRule/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$StateRule/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$StateRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$StateRule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Steep/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Steep/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/m_189736_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; net/minecraft/world/level/levelgen/SurfaceRules$Steep/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Steep/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; net/minecraft/world/level/levelgen/SurfaceRules$Steep/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; net/minecraft/world/level/levelgen/SurfaceRules$Steep/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ ()V net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)V net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189740_ ()I net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/offset ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189741_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/addSurfaceDepth ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189743_ ()Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/surfaceType ()Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_202182_ ()I net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/secondaryDepthRange ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/m_189752_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Z)V net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Z)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/m_189789_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule;)V net/minecraft/world/level/levelgen/SurfaceRules$TestRule/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$TestRule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189793_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/condition ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189794_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/followup ()Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$TestRule/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189808_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ifTrue ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189809_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/thenRun ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/m_189816_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189828_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/randomName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189829_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/trueAtAndBelow ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189830_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/falseAtAndAbove ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/m_189838_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;IILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;IILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ (IIZ)V net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ (IIZ)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189863_ ()I net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/offset ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189864_ ()I net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/surfaceDepthMultiplier ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189865_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/addStoneDepth ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/m_189873_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;IZ)V net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;IZ)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189444_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/anchor ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189445_ ()I net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/surfaceDepthMultiplier ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189446_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/addStoneDepth ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/m_189454_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$YConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$YConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceSystem/ ()V net/minecraft/world/level/levelgen/SurfaceSystem/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V net/minecraft/world/level/levelgen/SurfaceSystem/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189927_ (II)I net/minecraft/world/level/levelgen/SurfaceSystem/getSurfaceDepth (II)I +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189930_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceSystem/getBand (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189934_ (ILnet/minecraft/world/level/biome/Biome;Lnet/minecraft/world/level/chunk/BlockColumn;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V net/minecraft/world/level/levelgen/SurfaceSystem/frozenOceanExtension (ILnet/minecraft/world/level/biome/Biome;Lnet/minecraft/world/level/chunk/BlockColumn;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189952_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/SurfaceSystem/isStone (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189954_ (Lnet/minecraft/world/level/chunk/BlockColumn;IIILnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/levelgen/SurfaceSystem/erodedBadlandsExtension (Lnet/minecraft/world/level/chunk/BlockColumn;IIILnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189971_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; net/minecraft/world/level/levelgen/SurfaceSystem/topMaterial (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_202189_ (II)D net/minecraft/world/level/levelgen/SurfaceSystem/getSurfaceSecondary (II)D +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_224641_ (Lnet/minecraft/util/RandomSource;)[Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceSystem/generateBands (Lnet/minecraft/util/RandomSource;)[Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_224643_ (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceSystem/makeBands (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_224648_ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;ZLnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V net/minecraft/world/level/levelgen/SurfaceSystem/buildSurface (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;ZLnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/levelgen/SurfaceSystem$1/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/m_183556_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceSystem$1/getBlock (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/m_183639_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceSystem$1/setBlock (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceSystem$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/ (J)V net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor/ ()V net/minecraft/world/level/levelgen/VerticalAnchor/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158921_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/bottom ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158922_ (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/absolute (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158924_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/merge (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158926_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/VerticalAnchor/split (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158929_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/top ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158930_ (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/aboveBottom (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158935_ (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/belowTop (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_209697_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Record; net/minecraft/world/level/levelgen/VerticalAnchor/lambda$merge$0 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Record; +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ ()V net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ (I)V net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ (I)V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/f_209699_ ()I net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/offset ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/hashCode ()I net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/hashCode ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ ()V net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ (I)V net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ (I)V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/f_209704_ ()I net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/y ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/hashCode ()I net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/hashCode ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ ()V net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ (I)V net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ (I)V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/f_209709_ ()I net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/offset ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/hashCode ()I net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/hashCode ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldDimensions/ ()V net/minecraft/world/level/levelgen/WorldDimensions/ ()V +MD: net/minecraft/world/level/levelgen/WorldDimensions/ (Lnet/minecraft/core/Registry;)V net/minecraft/world/level/levelgen/WorldDimensions/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldDimensions/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/f_243948_ ()Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions/dimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions/hashCode ()I net/minecraft/world/level/levelgen/WorldDimensions/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245300_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete; net/minecraft/world/level/levelgen/WorldDimensions/bake (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245357_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/levelgen/WorldDimensions/checkStability (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245587_ (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/levelgen/WorldDimensions/lambda$specialWorldProperty$2 (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245847_ (Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isStableOverworld (Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245858_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isVanillaLike (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245957_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/world/level/levelgen/WorldDimensions/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246477_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions/withOverworld (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246533_ (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$4 (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246615_ (Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isStableNether (Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246737_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/WorldDimensions/overworld ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246739_ ()Z net/minecraft/world/level/levelgen/WorldDimensions/isDebug ()Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246747_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/WorldDimensions/replaceOverworldGenerator (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246830_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/levelgen/WorldDimensions/specialWorldProperty (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246921_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/level/levelgen/WorldDimensions/lambda$keysInOrder$1 (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247421_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/WorldDimensions/keysInOrder (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247534_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions/withOverworld (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247539_ ()Lcom/google/common/collect/ImmutableSet; net/minecraft/world/level/levelgen/WorldDimensions/levels ()Lcom/google/common/collect/ImmutableSet; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247592_ (Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isStableEnd (Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257348_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/WorldDimensions/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257349_ (Lnet/minecraft/core/Registry;Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$5 (Lnet/minecraft/core/Registry;Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257350_ (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/world/level/levelgen/WorldDimensions$1Entry;)V net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$6 (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/world/level/levelgen/WorldDimensions$1Entry;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257351_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$3 (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/WorldDimensions/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldDimensions/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V net/minecraft/world/level/levelgen/WorldDimensions$1Entry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldDimensions$1Entry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_243758_ ()Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/value ()Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_244236_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/hashCode ()I net/minecraft/world/level/levelgen/WorldDimensions$1Entry/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/m_246583_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;)V net/minecraft/world/level/levelgen/WorldDimensions$Complete/ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldDimensions$Complete/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244049_ ()Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions$Complete/dimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244634_ ()Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/levelgen/WorldDimensions$Complete/specialWorldProperty ()Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/hashCode ()I net/minecraft/world/level/levelgen/WorldDimensions$Complete/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/m_245593_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/world/level/levelgen/WorldDimensions$Complete/dimensionsRegistryAccess ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/m_245945_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/levelgen/WorldDimensions$Complete/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldDimensions$Complete/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/ ()V net/minecraft/world/level/levelgen/WorldGenSettings/ ()V +MD: net/minecraft/world/level/levelgen/WorldGenSettings/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)V net/minecraft/world/level/levelgen/WorldGenSettings/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)V +MD: net/minecraft/world/level/levelgen/WorldGenSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldGenSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldGenSettings/f_243992_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldGenSettings/options ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/f_64605_ ()Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/WorldGenSettings/dimensions ()Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/hashCode ()I net/minecraft/world/level/levelgen/WorldGenSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldGenSettings/m_245022_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/WorldGenSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/m_245563_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/RegistryAccess;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/WorldGenSettings/encode (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/RegistryAccess;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/m_246823_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/WorldGenSettings/encode (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldGenSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldGenerationContext/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/levelgen/WorldGenerationContext/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/levelgen/WorldGenerationContext/m_142201_ ()I net/minecraft/world/level/levelgen/WorldGenerationContext/getMinGenY ()I +MD: net/minecraft/world/level/levelgen/WorldGenerationContext/m_142208_ ()I net/minecraft/world/level/levelgen/WorldGenerationContext/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/WorldOptions/ ()V net/minecraft/world/level/levelgen/WorldOptions/ ()V +MD: net/minecraft/world/level/levelgen/WorldOptions/ (JZZLjava/util/Optional;)V net/minecraft/world/level/levelgen/WorldOptions/ (JZZLjava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/WorldOptions/ (JZZ)V net/minecraft/world/level/levelgen/WorldOptions/ (JZZ)V +MD: net/minecraft/world/level/levelgen/WorldOptions/m_245056_ (Lnet/minecraft/world/level/levelgen/WorldOptions;)Ljava/util/Optional; net/minecraft/world/level/levelgen/WorldOptions/lambda$static$0 (Lnet/minecraft/world/level/levelgen/WorldOptions;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_245100_ ()Z net/minecraft/world/level/levelgen/WorldOptions/generateBonusChest ()Z +MD: net/minecraft/world/level/levelgen/WorldOptions/m_245499_ ()J net/minecraft/world/level/levelgen/WorldOptions/seed ()J +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247070_ ()Z net/minecraft/world/level/levelgen/WorldOptions/isOldCustomizedWorld ()Z +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247237_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/WorldOptions/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247283_ (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/withStructures (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247325_ (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/withBonusChest (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247394_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/defaultWithRandomSeed ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247749_ ()Z net/minecraft/world/level/levelgen/WorldOptions/generateStructures ()Z +MD: net/minecraft/world/level/levelgen/WorldOptions/m_255240_ ()J net/minecraft/world/level/levelgen/WorldOptions/randomSeed ()J +MD: net/minecraft/world/level/levelgen/WorldOptions/m_261051_ (Ljava/util/OptionalLong;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/withSeed (Ljava/util/OptionalLong;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_261063_ (Ljava/lang/String;)Ljava/util/OptionalLong; net/minecraft/world/level/levelgen/WorldOptions/parseSeed (Ljava/lang/String;)Ljava/util/OptionalLong; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/WorldgenRandom/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_158960_ ()I net/minecraft/world/level/levelgen/WorldgenRandom/getCount ()I +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/WorldgenRandom/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_188584_ (J)V net/minecraft/world/level/levelgen/WorldgenRandom/setSeed (J)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_190058_ (JIII)V net/minecraft/world/level/levelgen/WorldgenRandom/setLargeFeatureWithSalt (JIII)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_190064_ (JII)V net/minecraft/world/level/levelgen/WorldgenRandom/setFeatureSeed (JII)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_190068_ (JII)V net/minecraft/world/level/levelgen/WorldgenRandom/setLargeFeatureSeed (JII)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/WorldgenRandom/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_224681_ (IIJJ)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/WorldgenRandom/seedSlimeChunk (IIJJ)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_64690_ (JII)J net/minecraft/world/level/levelgen/WorldgenRandom/setDecorationSeed (JII)J +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_64707_ (I)I net/minecraft/world/level/levelgen/WorldgenRandom/next (I)I +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ ()V net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ ()V +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ (Ljava/lang/String;ILjava/util/function/LongFunction;)V net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ (Ljava/lang/String;ILjava/util/function/LongFunction;)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/m_190083_ ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/$values ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/m_224687_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/newInstance (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/values ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/values ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ ()V net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ ()V +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (JJ)V net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (JJ)V +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_190096_ ()J net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/nextLong ()J +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_287194_ (Ljava/util/stream/LongStream;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/lambda$static$1 (Ljava/util/stream/LongStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_287249_ ([J)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/lambda$static$0 ([J)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_287273_ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Ljava/util/stream/LongStream; net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/lambda$static$2 (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Ljava/util/stream/LongStream; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ ()V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ ()V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (J)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (JJ)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (JJ)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188499_ ()Z net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextBoolean ()Z +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188500_ ()D net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextDouble ()D +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188501_ ()F net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextFloat ()F +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188502_ ()I net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextInt ()I +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188503_ (I)I net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextInt (I)I +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188505_ ()J net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextLong ()J +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/XoroshiroRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_190107_ (I)J net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextBits (I)J +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_190110_ (I)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/consumeCount (I)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_287168_ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_287215_ (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; net/minecraft/world/level/levelgen/XoroshiroRandomSource/lambda$static$1 (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/ (JJ)V net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/ (JJ)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/m_183502_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/m_213715_ (III)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/at (III)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/m_214111_ (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/fromHashOf (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/blending/Blender/ ()V net/minecraft/world/level/levelgen/blending/Blender/ ()V +MD: net/minecraft/world/level/levelgen/blending/Blender/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/levelgen/blending/Blender/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_183383_ (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/world/level/levelgen/blending/Blender/getBiomeResolver (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190153_ ()Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/blending/Blender/empty ()Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190154_ (D)D net/minecraft/world/level/levelgen/blending/Blender/heightToOffset (D)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190174_ (IIILnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;)D net/minecraft/world/level/levelgen/blending/Blender/getBlendingDataValue (IIILnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190193_ (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IID)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendOffsetAndFactor$0 (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IID)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190202_ (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/blending/Blender/of (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190211_ (Lnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;IIIII)D net/minecraft/world/level/levelgen/blending/Blender/getBlendingDataValue (Lnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;IIIII)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197024_ (DDDDDD)D net/minecraft/world/level/levelgen/blending/Blender/distanceToCube (DDDDDD)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197031_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/blending/Blender/generateBorderTicks (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197034_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;)V net/minecraft/world/level/levelgen/blending/Blender/addAroundOldChunksCarvingMaskFilter (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197040_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/blending/Blender/generateBorderTick (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202223_ (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IIID)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendDensity$2 (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IIID)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202234_ (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendDensity$3 (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202243_ (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendOffsetAndFactor$1 (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202257_ (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;Lnet/minecraft/world/level/chunk/CarvingMask;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$addAroundOldChunksCarvingMaskFilter$8 (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;Lnet/minecraft/world/level/chunk/CarvingMask;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202260_ (Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter;III)Z net/minecraft/world/level/levelgen/blending/Blender/lambda$addAroundOldChunksCarvingMaskFilter$7 (Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter;III)Z +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202265_ (Ljava/util/List;DDD)D net/minecraft/world/level/levelgen/blending/Blender/lambda$makeOldChunkDistanceGetter$10 (Ljava/util/List;DDD)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_204667_ (Lnet/minecraft/world/level/biome/BiomeResolver;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/blending/Blender/lambda$getBiomeResolver$4 (Lnet/minecraft/world/level/biome/BiomeResolver;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_207103_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/blending/Blender/blendDensity (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_207242_ (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; net/minecraft/world/level/levelgen/blending/Blender/blendOffsetAndFactor (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224698_ (DDDDDDD)D net/minecraft/world/level/levelgen/blending/Blender/lambda$makeOffsetOldChunkDistanceGetter$11 (DDDDDDD)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224706_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/blending/Blender/blendBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224710_ (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendBiome$6 (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224718_ (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;IILnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendBiome$5 (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;IILnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224726_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;Ljava/util/Map;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; net/minecraft/world/level/levelgen/blending/Blender/makeOldChunkDistanceGetter (Lnet/minecraft/world/level/levelgen/blending/BlendingData;Ljava/util/Map;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224729_ (Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; net/minecraft/world/level/levelgen/blending/Blender/makeOffsetOldChunkDistanceGetter (Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224732_ (Ljava/util/List;Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$makeOldChunkDistanceGetter$9 (Ljava/util/List;Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender$1/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/levelgen/blending/Blender$1/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/levelgen/blending/Blender$1/m_183383_ (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/world/level/levelgen/blending/Blender$1/getBiomeResolver (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/world/level/levelgen/blending/Blender$1/m_207103_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/blending/Blender$1/blendDensity (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/blending/Blender$1/m_207242_ (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; net/minecraft/world/level/levelgen/blending/Blender$1/blendOffsetAndFactor (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/ (DD)V net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/ (DD)V +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209729_ ()D net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/alpha ()D +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209730_ ()D net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/blendingOffset ()D +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/hashCode ()I net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/hashCode ()I +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter/m_190233_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;III)D net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter/get (Lnet/minecraft/world/level/levelgen/blending/BlendingData;III)D +MD: net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter/m_197061_ (DDD)D net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter/getDistance (DDD)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/ ()V net/minecraft/world/level/levelgen/blending/BlendingData/ ()V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/ (IILjava/util/Optional;)V net/minecraft/world/level/levelgen/blending/BlendingData/ (IILjava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190285_ (III)D net/minecraft/world/level/levelgen/blending/BlendingData/getHeight (III)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190289_ (IIIILnet/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer;)V net/minecraft/world/level/levelgen/blending/BlendingData/iterateDensities (IIIILnet/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190295_ (IILnet/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer;)V net/minecraft/world/level/levelgen/blending/BlendingData/iterateHeights (IILnet/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190299_ (ILnet/minecraft/world/level/chunk/ChunkAccess;II)V net/minecraft/world/level/levelgen/blending/BlendingData/addValuesForColumn (ILnet/minecraft/world/level/chunk/ChunkAccess;II)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190304_ (Lnet/minecraft/server/level/WorldGenRegion;II)Lnet/minecraft/world/level/levelgen/blending/BlendingData; net/minecraft/world/level/levelgen/blending/BlendingData/getOrUpdateBlendingData (Lnet/minecraft/server/level/WorldGenRegion;II)Lnet/minecraft/world/level/levelgen/blending/BlendingData; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190310_ (Lnet/minecraft/world/level/chunk/ChunkAccess;II)I net/minecraft/world/level/levelgen/blending/BlendingData/getHeightAtXZ (Lnet/minecraft/world/level/chunk/ChunkAccess;II)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190314_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blending/BlendingData/isGround (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190317_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V net/minecraft/world/level/levelgen/blending/BlendingData/calculateData (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190320_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/blending/BlendingData/validateArraySize (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190324_ ([DI)D net/minecraft/world/level/levelgen/blending/BlendingData/getDensity ([DI)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190327_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/cellCountPerColumn ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190330_ (II)I net/minecraft/world/level/levelgen/blending/BlendingData/getInsideIndex (II)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190333_ (III)D net/minecraft/world/level/levelgen/blending/BlendingData/getDensity (III)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190347_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/getColumnMinY ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190348_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/getX (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190350_ (II)I net/minecraft/world/level/levelgen/blending/BlendingData/getOutsideIndex (II)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190353_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/getMinY ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190354_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/getZ (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190356_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/zeroIfNegative (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_197065_ (Lnet/minecraft/world/level/WorldGenLevel;IIZ)Ljava/util/Set; net/minecraft/world/level/levelgen/blending/BlendingData/sideByGenerationAge (Lnet/minecraft/world/level/WorldGenLevel;IIZ)Ljava/util/Set; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_198292_ (Lnet/minecraft/world/level/chunk/ChunkAccess;III)[D net/minecraft/world/level/levelgen/blending/BlendingData/getDensityColumn (Lnet/minecraft/world/level/chunk/ChunkAccess;III)[D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_198297_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D net/minecraft/world/level/levelgen/blending/BlendingData/read1 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_198300_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D net/minecraft/world/level/levelgen/blending/BlendingData/read7 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224743_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/blending/BlendingData/getAreaWithOldGeneration ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224744_ (D)Z net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$2 (D)Z +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224746_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/getCellYIndex (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224748_ (IIILnet/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer;)V net/minecraft/world/level/levelgen/blending/BlendingData/iterateBiomes (IIILnet/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224753_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224755_ ([D)V net/minecraft/world/level/levelgen/blending/BlendingData/lambda$new$6 ([D)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224757_ (Lnet/minecraft/world/level/chunk/ChunkAccess;II)Ljava/util/List; net/minecraft/world/level/levelgen/blending/BlendingData/getBiomeColumn (Lnet/minecraft/world/level/chunk/ChunkAccess;II)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224761_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/util/Optional; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$3 (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224763_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/quartCountPerColumn ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224764_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$1 (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224766_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_274287_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$validateArraySize$5 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer/m_204673_ (IILnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer/consume (IILnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer/m_190361_ (IIID)V net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer/consume (IIID)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer/m_190366_ (IID)V net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer/consume (IID)V +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190399_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/wouldSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190402_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/not (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190404_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/allOf (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190410_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/replaceable (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190412_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/allOf (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190417_ ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/allOf ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190419_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/replaceable ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190420_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/anyOf (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190423_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/solid (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190425_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/anyOf (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190430_ ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/anyOf ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190432_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/solid ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190433_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/insideWorld (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190435_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/alwaysTrue ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_198308_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/hasSturdyFace (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_198311_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_198913_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/hasSturdyFace (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_204677_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224768_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesTag (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224771_ (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224774_ (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224777_ (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesFluids (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224780_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224782_ ([Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesFluids ([Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224784_ (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesFluids (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_245833_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/noFluid (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_246848_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/noFluid ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ ()V net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/m_190447_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/m_190449_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/m_190452_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/m_190456_ (Lnet/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate;)Ljava/util/List; net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/lambda$codec$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/m_190458_ (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/codec (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/m_190460_ (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/lambda$codec$1 (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_198326_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_198328_ (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/lambda$static$1 (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_198330_ (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/m_190472_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/m_190474_ (Lnet/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_204685_ (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_257352_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_204692_ (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_257353_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_204697_ (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_257354_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/m_190514_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/m_190516_ (Lnet/minecraft/world/level/levelgen/blockpredicates/NotPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/NotPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/m_190528_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/m_190537_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/m_190546_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P1; net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/stateTestingCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P1; +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/m_190548_ (Lnet/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/lambda$stateTestingCodec$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/m_190561_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_190576_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_190578_ (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/lambda$static$1 (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_190580_ (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158983_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158985_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158987_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158989_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ (Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;ILnet/minecraft/util/valueproviders/FloatProvider;FF)V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ (Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;ILnet/minecraft/util/valueproviders/FloatProvider;FF)V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159006_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159008_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159010_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159012_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159014_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159016_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159018_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_159073_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;[FDDDI)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/shouldSkip (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;[FDDDI)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_159080_ ([FLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/lambda$doCarve$0 ([FLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_190593_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;)V net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/doCarve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_224799_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;DFF)D net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/updateVerticalRadius (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;DFF)D +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_224808_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)[F net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/initWidthFactors (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)[F +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CarverConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/carver/CarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159106_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159108_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159110_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159112_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_190636_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_224838_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_224840_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ ()V net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ ()V +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159128_ ()Z net/minecraft/world/level/levelgen/carver/CarverDebugSettings/isDebugMode ()Z +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159129_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/of (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159134_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159136_ (ZLnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/of (ZLnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159139_ (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/of (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159145_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getAirState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159146_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getWaterState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159147_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getLavaState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159148_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getBarrierState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V net/minecraft/world/level/levelgen/carver/CarvingContext/ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/m_190646_ (Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; net/minecraft/world/level/levelgen/carver/CarvingContext/topMaterial (Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/m_190651_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/carver/CarvingContext/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/m_224851_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/carver/CarvingContext/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159183_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159185_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159187_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159189_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159191_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/CaveWorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_159195_ (DDDD)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/shouldSkip (DDDD)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_159200_ (DLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/lambda$carve$0 (DLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_190670_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V net/minecraft/world/level/levelgen/carver/CaveWorldCarver/createTunnel (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_190690_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDFDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V net/minecraft/world/level/levelgen/carver/CaveWorldCarver/createRoom (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDFDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_213592_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/world/level/levelgen/carver/CaveWorldCarver/getThickness (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_6203_ ()D net/minecraft/world/level/levelgen/carver/CaveWorldCarver/getYScale ()D +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_6208_ ()I net/minecraft/world/level/levelgen/carver/CaveWorldCarver/getCaveBound ()I +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ ()V net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ ()V +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ (Lnet/minecraft/world/level/levelgen/carver/WorldCarver;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)V net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ (Lnet/minecraft/world/level/levelgen/carver/WorldCarver;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)V +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64849_ ()Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/worldCarver ()Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64850_ ()Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/config ()Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/hashCode ()I net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/hashCode ()I +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/m_224896_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/isStartChunk (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/m_224898_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/m_64866_ (Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/NetherWorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_183633_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z net/minecraft/world/level/levelgen/carver/NetherWorldCarver/carveBlock (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_183633_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z net/minecraft/world/level/levelgen/carver/NetherWorldCarver/carveBlock (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_213592_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/world/level/levelgen/carver/NetherWorldCarver/getThickness (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_6203_ ()D net/minecraft/world/level/levelgen/carver/NetherWorldCarver/getYScale ()D +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_6208_ ()I net/minecraft/world/level/levelgen/carver/NetherWorldCarver/getCaveBound ()I +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/ ()V net/minecraft/world/level/levelgen/carver/WorldCarver/ ()V +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/WorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159367_ (Lnet/minecraft/world/level/ChunkPos;DDIIF)Z net/minecraft/world/level/levelgen/carver/WorldCarver/canReach (Lnet/minecraft/world/level/ChunkPos;DDIIF)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159381_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/WorldCarver/getDebugState (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159418_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/WorldCarver/getCarveState (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159423_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/isDebugEnabled (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_183633_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/carveBlock (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_190753_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDDDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/carveEllipsoid (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDDDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_224910_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/canReplaceBlock (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_284117_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/carver/WorldCarver/lambda$carveBlock$0 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65063_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver; net/minecraft/world/level/levelgen/carver/WorldCarver/configured (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65065_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/carver/WorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/world/level/levelgen/carver/WorldCarver/register (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/carver/WorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65072_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/carver/WorldCarver/configuredCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65073_ ()I net/minecraft/world/level/levelgen/carver/WorldCarver/getRange ()I +MD: net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker/m_159425_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker/shouldSkip (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_213950_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/makeCap (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_224921_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/getTreeHeight (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_224929_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;ILnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/placeTrunk (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;ILnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_65098_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Z net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/isValidPosition (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_6794_ (IIII)I net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/getTreeRadiusForHeight (IIII)I +MD: net/minecraft/world/level/levelgen/feature/BambooFeature/ ()V net/minecraft/world/level/levelgen/feature/BambooFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/BambooFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BambooFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BambooFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BambooFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ ()V net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65154_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/canPlaceAt (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65158_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/findSurface (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65163_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/isAirOrLavaOcean (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65167_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/placeColumn (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65173_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/findAir (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/m_224936_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/placeBaseHangOff (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/m_224940_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/placeHangOff (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockBlobFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlockBlobFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlockBlobFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlockBlobFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockColumnFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlockColumnFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlockColumnFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlockColumnFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockColumnFeature/m_190792_ ([IIIZ)V net/minecraft/world/level/levelgen/feature/BlockColumnFeature/truncate ([IIIZ)V +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlockPileFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlockPileFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/m_224944_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/feature/BlockPileFeature/mayPlaceOn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/m_224948_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)V net/minecraft/world/level/levelgen/feature/BlockPileFeature/tryPlaceBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/BlueIceFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlueIceFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlueIceFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlueIceFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BonusChestFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BonusChestFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BonusChestFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BonusChestFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ ()V net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/ConfiguredFeature/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65377_ ()Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/feature ()Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65378_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/hashCode ()I net/minecraft/world/level/levelgen/feature/ConfiguredFeature/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/m_224953_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/ConfiguredFeature/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/m_65390_ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/m_65398_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/CoralClawFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralClawFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralClawFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralClawFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/CoralFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_204717_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$2 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_204721_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$4 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224963_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$3 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224970_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$1 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224973_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralFeature/placeCoralBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224978_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$place$0 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralTreeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralTreeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralTreeFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralTreeFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/ ()V net/minecraft/world/level/levelgen/feature/DeltaFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DeltaFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DeltaFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/m_65551_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Z net/minecraft/world/level/levelgen/feature/DeltaFeature/isClear (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/ ()V net/minecraft/world/level/levelgen/feature/DesertWellFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DesertWellFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DesertWellFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/m_276756_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V net/minecraft/world/level/levelgen/feature/DesertWellFeature/lambda$placeSusSand$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/m_277210_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/DesertWellFeature/placeSusSand (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/DiskFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DiskFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DiskFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DiskFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DiskFeature/m_224995_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/DiskFeature/placeColumn (Lnet/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159576_ (IIIILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)D net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/getChanceOfStalagmiteOrStalactite (IIIILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)D +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159582_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/canBeAdjacentToWater (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159585_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/isLava (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159588_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/replaceBlocksWithDripstoneBlocks (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159619_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/canPlacePool (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_225002_ (Lnet/minecraft/util/RandomSource;FFFF)F net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/randomBetweenBiased (Lnet/minecraft/util/RandomSource;FFFF)F +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_225008_ (Lnet/minecraft/util/RandomSource;IIFILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)I net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/getDripstoneHeight (Lnet/minecraft/util/RandomSource;IIFILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_225015_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIFDIFLnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)V net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/placeColumn (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIFDIFLnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/ ()V net/minecraft/world/level/levelgen/feature/DripstoneUtils/ ()V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159623_ (DDDD)D net/minecraft/world/level/levelgen/feature/DripstoneUtils/getDripstoneHeight (DDDD)D +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159628_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWater (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159639_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isCircleMostlyEmbeddedInStone (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159649_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isDripstoneBaseOrLava (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159651_ (Lnet/minecraft/core/Direction;IZLjava/util/function/Consumer;)V net/minecraft/world/level/levelgen/feature/DripstoneUtils/buildBaseToTipColumn (Lnet/minecraft/core/Direction;IZLjava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159656_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/DripstoneUtils/createPointedDripstone (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159659_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWaterOrLava (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159662_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isDripstoneBase (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159664_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWater (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159666_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWaterOrLava (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_190847_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;IZ)V net/minecraft/world/level/levelgen/feature/DripstoneUtils/growPointedDripstone (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;IZ)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_190853_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/placeDripstoneBlockIfPossible (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_203130_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isNeitherEmptyNorWater (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_276757_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/DripstoneUtils/lambda$growPointedDripstone$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/EndGatewayFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/EndGatewayFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/EndGatewayFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/EndGatewayFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/EndGatewayFeature/m_65695_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/EndGatewayFeature/lambda$place$0 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/EndIslandFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/EndIslandFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/EndIslandFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/EndIslandFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ ()V net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ (Z)V net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ (Z)V +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/EndPodiumFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/m_287210_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/EndPodiumFeature/getLocation (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/Feature/ ()V net/minecraft/world/level/levelgen/feature/Feature/ ()V +MD: net/minecraft/world/level/levelgen/feature/Feature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/Feature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/Feature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159739_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/Feature/markAboveForPostProcessing (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159742_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/feature/Feature/safeSetBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159747_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/Feature/isStone (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159750_ (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/Feature/isAdjacentToAir (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159753_ (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/levelgen/feature/Feature/checkNeighbors (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159759_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/Feature/isDirt (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_204735_ (Lnet/minecraft/tags/TagKey;)Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/feature/Feature/isReplaceable (Lnet/minecraft/tags/TagKey;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/feature/Feature/m_204737_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/Feature/lambda$isReplaceable$1 (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_225028_ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/Feature/place (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_5974_ (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/Feature/setBlock (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65787_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/Feature/configuredCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65788_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/Feature/isGrassOrDirt (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65805_ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; net/minecraft/world/level/levelgen/feature/Feature/lambda$new$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65807_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/feature/Feature;)Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/world/level/levelgen/feature/Feature/register (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/feature/Feature;)Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190880_ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/clearCounts ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190881_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/chunkDecorated (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190883_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/featurePlaced (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190887_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/lambda$logCounts$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190890_ (Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/FeatureCountTracker/lambda$featurePlaced$0 (Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190899_ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/logCounts ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_241761_ (Ljava/lang/String;Ljava/lang/Integer;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/lambda$logCounts$1 (Ljava/lang/String;Ljava/lang/Integer;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/ ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190905_ ()Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/feature ()Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190906_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/topFeature ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/hashCode ()I net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lorg/apache/commons/lang3/mutable/MutableInt;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lorg/apache/commons/lang3/mutable/MutableInt;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190916_ ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/featureData ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190917_ ()Lorg/apache/commons/lang3/mutable/MutableInt; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/chunksWithFeatures ()Lorg/apache/commons/lang3/mutable/MutableInt; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/hashCode ()I net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/ (Ljava/util/Optional;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/ (Ljava/util/Optional;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159774_ ()Lnet/minecraft/world/level/WorldGenLevel; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/level ()Lnet/minecraft/world/level/WorldGenLevel; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159775_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159777_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/origin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159778_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_190935_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/topFeature ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_225041_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/random ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/feature/FillLayerFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/FillLayerFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/FillLayerFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/FillLayerFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/FossilFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/FossilFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/m_159781_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)I net/minecraft/world/level/levelgen/feature/FossilFeature/countEmptyCorners (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)I +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/m_284118_ (Lnet/minecraft/world/level/WorldGenLevel;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/FossilFeature/lambda$countEmptyCorners$0 (Lnet/minecraft/world/level/WorldGenLevel;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ (Ljava/util/List;Ljava/util/List;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;I)V net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ (Ljava/util/List;Ljava/util/List;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159815_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159817_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159827_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159829_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_204756_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_204758_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/GeodeFeature/ ()V net/minecraft/world/level/levelgen/feature/GeodeFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/GeodeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/GeodeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/GeodeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/GeodeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/GlowstoneFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/GlowstoneFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/GlowstoneFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/GlowstoneFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/m_213950_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/makeCap (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/m_6794_ (IIII)I net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/getTreeRadiusForHeight (IIII)I +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ ()V net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159866_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159868_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159870_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159872_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159874_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_284119_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_284120_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/HugeFungusFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_225049_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos$MutableBlockPos;FFF)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeHatBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos$MutableBlockPos;FFF)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_225064_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeHatDropBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_225070_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/tryPlaceWeepingVines (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_284273_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeStem (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_284325_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeHat (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_284534_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Z)Z net/minecraft/world/level/levelgen/feature/HugeFungusFeature/isReplaceable (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Z)Z +MD: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/m_213950_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/makeCap (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/m_6794_ (IIII)I net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/getTreeRadiusForHeight (IIII)I +MD: net/minecraft/world/level/levelgen/feature/IceSpikeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/IceSpikeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/IceSpikeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/IceSpikeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/IcebergFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_159885_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/IcebergFeature/isIcebergState (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225088_ (IILnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)D net/minecraft/world/level/levelgen/feature/IcebergFeature/signedDistanceCircle (IILnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)D +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225094_ (Lnet/minecraft/util/RandomSource;III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/heightDependentRadiusRound (Lnet/minecraft/util/RandomSource;III)I +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225099_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/core/BlockPos;ZIDI)V net/minecraft/world/level/levelgen/feature/IcebergFeature/generateCutOut (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/core/BlockPos;ZIDI)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225109_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIIIIIZIDZLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/generateIcebergBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIIIIIZIDZLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225124_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;IIZZLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/setIcebergBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;IIZZLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225133_ (Lnet/minecraft/util/RandomSource;III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/heightDependentRadiusSteep (Lnet/minecraft/util/RandomSource;III)I +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66018_ (III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/getEllipseC (III)I +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66022_ (IILnet/minecraft/core/BlockPos;IID)D net/minecraft/world/level/levelgen/feature/IcebergFeature/signedDistanceEllipse (IILnet/minecraft/core/BlockPos;IID)D +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66035_ (IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;ZDLnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/levelgen/feature/IcebergFeature/carve (IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;ZDLnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66045_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/IcebergFeature/belowIsAir (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66048_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/removeFloatingSnowLayer (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66051_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IIZI)V net/minecraft/world/level/levelgen/feature/IcebergFeature/smooth (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IIZI)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66109_ (III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/heightDependentRadiusEllipse (III)I +MD: net/minecraft/world/level/levelgen/feature/KelpFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/KelpFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/KelpFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/KelpFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/ ()V net/minecraft/world/level/levelgen/feature/LakeFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/LakeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/LakeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/m_190951_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/LakeFeature/canReplaceBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ ()V net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ ()V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190954_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/fluid ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190955_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/barrier ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/hashCode ()I net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/m_190961_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/m_159961_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Column$Range;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/placeDebugMarkers (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Column$Range;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/m_225138_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/util/RandomSource;ILnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone; net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/makeDripstone (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/util/RandomSource;ILnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone; +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/ (Lnet/minecraft/core/BlockPos;ZIDD)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/ (Lnet/minecraft/core/BlockPos;ZIDD)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159986_ ()I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getHeight ()I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159987_ (F)I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getHeightAtRadius (F)I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159989_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)Z net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/moveBackUntilBaseIsInsideStoneAndShrinkRadiusIfNecessary (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)Z +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159996_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Z net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/isSuitableForWind (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159998_ ()I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getMinY ()I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159999_ ()I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getMaxY ()I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_225145_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/placeBlocks (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ ()V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ ()V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/m_160007_ ()Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter; net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/noWind ()Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter; +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/m_160008_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/offset (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ ()V net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/m_225153_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/randomEntityId (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/m_225157_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/List;)Z net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/placeGrowthIfPossible (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/List;)Z +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/m_225166_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/isAirOrWater (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/NoOpFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/NoOpFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/NoOpFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/NoOpFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/OreFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/OreFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_225168_ (Lnet/minecraft/util/RandomSource;F)Z net/minecraft/world/level/levelgen/feature/OreFeature/shouldSkipAirCheck (Lnet/minecraft/util/RandomSource;F)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_225171_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;DDDDDDIIIII)Z net/minecraft/world/level/levelgen/feature/OreFeature/doPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;DDDDDDIIIII)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_225186_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/OreFeature/canPlaceOre (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/m_225193_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)V net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/createPatchOfDripstoneBlocks (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/m_225198_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/getTipDirection (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RandomPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RandomPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RandomPatchFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RandomPatchFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/m_66634_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/findTarget (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_160235_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/spaceForTree (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_160252_ (Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/isAllowedTreeSpace (Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_204760_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/lambda$placeRootedDirt$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225202_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeDirtAndTree (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225209_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeRootedDirt (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225216_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeRoots (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225222_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeDirt (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/m_225228_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/getRandomPlacementInOneAxisRelativeToOrigin (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/m_225231_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/offsetTargetPos (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SculkPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SculkPatchFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/m_225238_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/SculkPatchFeature/canSpreadFrom (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/m_225243_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/SculkPatchFeature/lambda$canSpreadFrom$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/SeaPickleFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SeaPickleFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SeaPickleFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SeaPickleFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SeagrassFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SeagrassFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SeagrassFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SeagrassFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/ ()V net/minecraft/world/level/levelgen/feature/SpikeFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SpikeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SpikeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/m_225246_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)V net/minecraft/world/level/levelgen/feature/SpikeFeature/placeSpike (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/m_66858_ (Lnet/minecraft/world/level/WorldGenLevel;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/SpikeFeature/getSpikesForLevel (Lnet/minecraft/world/level/WorldGenLevel;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ ()V net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ ()V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ (IIIIZ)V net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ (IIIIZ)V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160373_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160375_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160377_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160379_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160381_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66886_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getCenterX ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66889_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66891_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/isCenterWithinChunk (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66893_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getCenterZ ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66896_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getRadius ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66899_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getHeight ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66902_ ()Z net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/isGuarded ()Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66905_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getTopBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/ ()V net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/ ()V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Long;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Long;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/feature/SpringFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SpringFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SpringFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SpringFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/TreeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_160540_ (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$7 (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_160545_ (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$6 (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_160552_ (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$5 (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225251_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; net/minecraft/world/level/levelgen/feature/TreeFeature/updateLeaves (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225257_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/doPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225265_ (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$9 (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225280_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$8 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225283_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$doPlace$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225298_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$isVine$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_271680_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$doPlace$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_284121_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$isAirOrLeaves$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_284122_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$validTreePos$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_5974_ (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/setBlock (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67215_ (Lnet/minecraft/world/level/LevelSimulatedReader;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/TreeFeature/getMaxFreeTreeHeight (Lnet/minecraft/world/level/LevelSimulatedReader;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67256_ (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/setBlockKnownShape (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67267_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/isAirOrLeaves (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67272_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/validTreePos (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67277_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/isVine (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/ (Lnet/minecraft/world/level/levelgen/feature/TreeFeature;Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;)V net/minecraft/world/level/levelgen/feature/TreeFeature$1/ (Lnet/minecraft/world/level/levelgen/feature/TreeFeature;Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/m_271808_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature$1/isSet (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/m_271838_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature$1/set (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_225300_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/placeWeepingVinesColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_67293_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/findFirstAirBlockAboveGround (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_67296_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/isInvalidPlacementLocation (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160561_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/isWaterOrAir (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160564_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/getFloorY (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160574_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/isValidPlacement (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160577_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$place$2 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160580_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$getFloorY$4 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160582_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$place$1 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160585_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$getFloorY$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_225307_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$place$0 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_204780_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/lambda$place$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_213555_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/placeVegetation (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_213631_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/placeGroundPatch (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_225323_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Ljava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/placeGround (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Ljava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_225330_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/Set;II)V net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/distributeVegetation (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/Set;II)V +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_284123_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/lambda$placeGroundPatch$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/VinesFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/VinesFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/VinesFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/VinesFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ ()V net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/m_67355_ (IIII)I net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/checkerboardDistance (IIII)I +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_160650_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/isExposedDirection (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_160655_ (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/isExposed (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_213555_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/placeVegetation (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_213631_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/placeGroundPatch (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ ()V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_225352_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/placeWeepingVinesColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_225359_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/placeRoofNetherWart (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_225363_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/placeRoofWeepingVines (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ ()V net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ (Lnet/minecraft/core/Holder;F)V net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ (Lnet/minecraft/core/Holder;F)V +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_191186_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_191188_ (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_204788_ (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_225367_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191207_ ()Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/layers ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191208_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/direction ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191209_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/allowedPlacement ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191210_ ()Z net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/prioritizeTip ()Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/m_191218_ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/layer (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/m_191221_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/m_191224_ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/simple (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191234_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/height ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191235_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/state ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/m_191241_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/m_67544_ (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/m_67551_ (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160717_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/reach ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160718_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160720_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/height ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160721_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_67562_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (I)V net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/m_160725_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/count ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160735_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160737_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160739_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160741_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/size ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160742_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160744_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rimSize ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_67606_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_67608_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/contents ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_67611_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rim ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225372_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/stateProvider ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225373_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/target ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67620_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/radius ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67621_ ()I net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/halfHeight ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/m_191249_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FII)V net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FII)V +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160783_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$11 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160785_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$10 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160787_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160789_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160791_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160793_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160795_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160797_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160799_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160801_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160803_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160805_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ (Ljava/util/Optional;Z)V net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ (Ljava/util/Optional;Z)V +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_160807_ (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_160809_ (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67648_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67650_ (Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/knownExit (Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67653_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/delayedExitSearch ()Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67656_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/getExit ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67657_ ()Z net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/isExitExact ()Z +MD: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;DDZLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IIDI)V net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;DDZLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IIDI)V +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160841_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$13 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160843_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$12 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160845_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$11 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160847_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$10 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160849_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160851_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160853_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160855_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160857_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160859_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160861_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160863_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeCrackSettings; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeCrackSettings; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160865_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeLayerSettings; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeLayerSettings; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160867_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeBlockSettings; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeBlockSettings; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)V net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_160938_ (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_160940_ (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_160942_ (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_67750_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FLnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;IF)V net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FLnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;IF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160965_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$9 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160967_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160969_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160971_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160973_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160975_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160977_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160979_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160981_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160983_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/m_160985_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/m_160987_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/m_67776_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ (Lnet/minecraft/world/level/block/MultifaceBlock;IZZZFLnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ (Lnet/minecraft/world/level/block/MultifaceBlock;IZZZFLnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225399_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/getShuffledDirections (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225401_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/getShuffledDirectionsExcept (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225404_ (Lnet/minecraft/world/level/block/Block;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/apply (Lnet/minecraft/world/level/block/Block;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225406_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225408_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225410_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$getShuffledDirectionsExcept$9 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225413_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225415_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225417_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225419_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225421_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225423_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/world/level/block/MultifaceBlock; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/world/level/block/MultifaceBlock; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_274288_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$apply$8 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ ()V net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;II)V net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;II)V +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191266_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191268_ (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191270_ (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191272_ (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/m_67819_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration; net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;IF)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;IF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;I)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;IF)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;IF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161019_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161021_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/target (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161024_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161026_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_67848_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ ()V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/m_161038_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/m_161040_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/m_161042_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ (FFFF)V net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ (FFFF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191285_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191287_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191289_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191291_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191293_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ (F)V net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ (F)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/m_161044_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/m_67865_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_204806_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_204808_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_67876_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_161052_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_204813_ (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$getFeatures$3 (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_204815_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_67897_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ (IIILnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ (IIILnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191302_ ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/xzSpread ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191303_ ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ySpread ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191304_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/feature ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_67907_ ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/tries ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/m_191311_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/m_161086_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/m_161088_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161094_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161096_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/radius ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161097_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161099_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_68047_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ (Lnet/minecraft/core/Holder;IILnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IILnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ (Lnet/minecraft/core/Holder;IILnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IILnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161130_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$11 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161132_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$10 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161134_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161136_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161138_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161140_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161142_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161144_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161148_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161150_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_198370_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$13 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_198372_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$12 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_204837_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_204839_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ (IIIIILnet/minecraft/util/valueproviders/IntProvider;F)V net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ (IIIIILnet/minecraft/util/valueproviders/IntProvider;F)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225426_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/chargeCount ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225427_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/amountPerCharge ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225428_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadAttempts ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225429_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/growthRounds ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225430_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadRounds ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225431_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/extraRareGrowths ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225432_ ()F net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/catalystChance ()F +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/m_225443_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/f_68069_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toPlace ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/m_161167_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/m_191330_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ (Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ (Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/m_204843_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/m_204845_ (Lnet/minecraft/core/Holder;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/lambda$getFeatures$1 (Lnet/minecraft/core/Holder;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_161190_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_161192_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_161194_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68114_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68116_ ()Z net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/isCrystalInvulnerable ()Z +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68119_ ()Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/getSpikes ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68122_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/getCrystalBeamTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ (Lnet/minecraft/world/level/material/FluidState;ZIILnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ (Lnet/minecraft/world/level/material/FluidState;ZIILnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161198_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161200_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161202_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161204_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_204853_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_68138_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;Ljava/util/List;ZZ)V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;Ljava/util/List;ZZ)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161231_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161243_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161245_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161247_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_191356_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225467_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$10 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225469_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225471_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225473_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225475_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225477_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_161260_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/dirt (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_161262_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/forceDirt ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_68244_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ignoreVines ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_68249_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/decorators (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_68251_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/build ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ ()V net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ (III)V net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ (III)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191365_ ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadWidth ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191366_ ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadHeight ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191367_ ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/maxHeight ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/m_191374_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ (IIF)V net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ (IIF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161272_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161274_ (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161276_ (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161278_ (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/placement/CaveSurface;Lnet/minecraft/util/valueproviders/IntProvider;FIFLnet/minecraft/util/valueproviders/IntProvider;F)V net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/placement/CaveSurface;Lnet/minecraft/util/valueproviders/IntProvider;FIFLnet/minecraft/util/valueproviders/IntProvider;F)V +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161303_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$10 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161305_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161307_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161309_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161311_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161313_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161315_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161317_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161321_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_204866_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_204868_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ ()V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ (Ljava/util/OptionalInt;)V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ (Ljava/util/OptionalInt;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_6133_ (II)I net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/getSizeAtHeight (II)I +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68286_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/minClippedHeightCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68289_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/lambda$minClippedHeightCodec$2 (Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68291_ (Ljava/util/Optional;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/lambda$minClippedHeightCodec$0 (Ljava/util/Optional;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68293_ (Ljava/util/OptionalInt;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/lambda$minClippedHeightCodec$1 (Ljava/util/OptionalInt;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68295_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/minClippedHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_7612_ ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/type ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ ()V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/m_68302_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/m_68303_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ ()V net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ (IIIIILjava/util/OptionalInt;)V net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ (IIIIILjava/util/OptionalInt;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161326_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161328_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161330_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161332_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161334_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_6133_ (II)I net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/getSizeAtHeight (II)I +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_68325_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_7612_ ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/type ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ ()V net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (III)V net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (III)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (IIILjava/util/OptionalInt;)V net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (IIILjava/util/OptionalInt;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_161336_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_161338_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_161340_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_6133_ (II)I net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/getSizeAtHeight (II)I +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_68355_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_7612_ ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/type ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_68379_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_68411_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/lambda$blobParts$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_68413_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/blobParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_68426_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_68453_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;FFFF)V net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;FFFF)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_271778_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_271820_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272111_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272122_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272124_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272211_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_214202_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/shouldSkipLocationSigned (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_68472_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_68517_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_161446_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/lambda$foliagePlacerParts$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_161448_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/lambda$foliagePlacerParts$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214117_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/foliageRadius (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214202_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/shouldSkipLocationSigned (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_225591_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/offset (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_225628_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZ)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/placeLeavesRow (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZ)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_225637_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/lambda$tryPlaceLeaf$2 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_271927_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;II)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;II)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_272160_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZFF)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/placeLeavesRowWithHangingLeavesBelow (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZFF)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_272253_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/tryPlaceLeaf (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_277091_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;FLnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/tryPlaceExtension (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;FLnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_68573_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P2; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/foliagePlacerParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P2; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/ (Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/ (Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/m_161451_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/m_68589_ ()I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/radiusOffset ()I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/m_68590_ ()Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/doubleTrunk ()Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/m_271808_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/isSet (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/m_271838_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/set (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/m_68604_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/m_68605_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_161467_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_68629_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_161483_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_68663_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_161499_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_214117_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/foliageRadius (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_68697_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_161521_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_161523_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_161536_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_161552_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_68734_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;F)V net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;F)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225754_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootProvider ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225755_ ()F net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootPlacementChance ()F +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/hashCode ()I net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/m_225761_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/m_225763_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/m_225766_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIF)V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIF)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225773_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/canGrowThrough ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225774_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsIn ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225775_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsProvider ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225776_ ()I net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootWidth ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225777_ ()I net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootLength ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225778_ ()F net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/randomSkewChance ()F +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/hashCode ()I net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225788_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225790_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225793_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225796_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225799_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225802_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225807_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213551_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/canPlaceRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213654_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/placeRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213684_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/placeRoots (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213745_ ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225822_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Ljava/util/List;I)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/simulateRoots (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Ljava/util/List;I)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225846_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$placeRoot$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225848_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225850_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/potentialRootPositions (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225855_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225857_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$canPlaceRoot$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213551_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/canPlaceRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213654_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/placeRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213684_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/placeRoots (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213745_ ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225870_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/getPotentiallyWaterloggedState (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225885_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/rootPlacerParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225887_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$rootPlacerParts$2 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225889_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$getPotentiallyWaterloggedState$3 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225891_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/getTrunkOrigin (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225894_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$rootPlacerParts$1 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225896_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$rootPlacerParts$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/m_225903_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/m_225904_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_191382_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/simple (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_191384_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/simple (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/m_68761_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/m_68762_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FJLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FJLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191404_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191406_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/getSlowNoiseValue (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191411_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191413_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191415_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;F)V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;F)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191425_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/noiseCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191427_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/lambda$noiseCodec$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191429_ (Lnet/minecraft/core/BlockPos;D)D net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/getNoiseValue (Lnet/minecraft/core/BlockPos;D)D +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191432_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/lambda$noiseCodec$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191434_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Long; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/lambda$noiseCodec$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Long; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191447_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/lambda$noiseProviderCodec$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191449_ (Ljava/util/List;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/getRandomState (Ljava/util/List;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191452_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/getRandomState (Ljava/util/List;Lnet/minecraft/core/BlockPos;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191459_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P4; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/noiseProviderCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P4; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191461_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FFFLnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FFFLnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191480_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191485_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191487_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191489_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191491_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191493_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/block/state/properties/IntegerProperty;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/block/state/properties/IntegerProperty;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/lang/String;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/lang/String;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161570_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/findProperty (Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161573_ (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$6 (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161575_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161577_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161579_ (Ljava/lang/String;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$7 (Ljava/lang/String;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161581_ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$4 (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161587_ (Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$5 (Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161589_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161591_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/m_68792_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225925_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/fallback ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225926_ ()Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/rules ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/hashCode ()I net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225932_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/getState (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225936_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/simple (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225938_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225940_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/simple (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225948_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ifTrue ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225949_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/then ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/hashCode ()I net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/m_225955_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/m_68803_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder;)V net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_161597_ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/create (Lnet/minecraft/util/random/SimpleWeightedRandomList;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_161599_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_274289_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/lambda$create$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_225970_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/placeCircle (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_225973_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/placeBlockAt (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_225976_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/lambda$place$2 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_69308_ (ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/lambda$place$1 (ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_69326_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ (FIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;ILjava/util/List;)V net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ (FIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;ILjava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_225995_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_225997_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226001_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/hasRequiredEmptyBlocks (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226005_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226007_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226009_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226011_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226013_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ (F)V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ (F)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202296_ (I)[Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$static$2 (I)[Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202298_ (ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$3 (ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202304_ (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$4 (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202306_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$static$1 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_226020_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$5 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_257355_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$6 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_69970_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ (F)V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ (F)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_226023_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/lambda$place$2 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_69978_ (ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/lambda$place$1 (ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_69988_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ (F)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ (F)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_226032_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/lambda$place$1 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_226036_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_226040_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/addHangingVine (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226058_ ()Lnet/minecraft/world/level/LevelSimulatedReader; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/level ()Lnet/minecraft/world/level/LevelSimulatedReader; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226059_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/isAir (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226061_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226064_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/placeVine (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226067_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/random ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226068_ ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/logs ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226069_ ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/leaves ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226070_ ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/roots ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/m_70051_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/m_70052_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_226072_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/lambda$place$1 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_70073_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator; net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ (IIIILnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ (IIIILnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_161783_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_161785_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_161787_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_271878_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_271967_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$placeTrunk$7 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_271969_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;Lnet/minecraft/core/Direction;IZLnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/generateBranch (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;Lnet/minecraft/core/Direction;IZLnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272093_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272118_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272205_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272249_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_274290_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_274291_ (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$1 (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/m_70089_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_226099_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/makeBranches (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_226107_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/makeLimb (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_263170_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/lambda$makeLimb$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70098_ (II)Z net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/trimBranches (II)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70127_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/getSteps (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70129_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction$Axis; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/getLogAxis (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70132_ (II)F net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/treeShape (II)F +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70135_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/ (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/m_70142_ ()I net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/getBranchBase ()I +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/m_70160_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_226129_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;III)V net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/placeLogIfFreeWithOffset (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_70188_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/m_70205_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/m_70260_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_213554_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/validTreePos (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226153_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/getTreeHeight (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226163_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeLogIfFree (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226169_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/setDirtAt (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226175_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeLog (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226182_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$isFree$4 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226184_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/isFree (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226187_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeLog (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70295_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/isDirt (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70303_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$isDirt$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70305_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/trunkPlacerParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70307_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$trunkPlacerParts$2 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70311_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$trunkPlacerParts$1 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70313_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$trunkPlacerParts$0 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/m_70325_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/m_70326_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;FLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;FLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_213554_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/validTreePos (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226212_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/List;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;II)V net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/placeBranch (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/List;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;II)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226231_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$validTreePos$5 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226233_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226237_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226239_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226241_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_257356_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ ()V net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ (ILnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ (ILnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_161901_ (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/lambda$static$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_257357_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_70337_ ()I net/minecraft/world/level/levelgen/flat/FlatLayerInfo/getHeight ()I +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_70344_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226245_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/displayItem ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226246_ ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/settings ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/hashCode ()I net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/hashCode ()I +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/m_226254_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/lambda$static$1 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/m_226257_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/lambda$static$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/m_257358_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/m_226276_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/m_254848_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/m_226283_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/run ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/m_255284_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;ZZ[Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/register (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;ZZ[Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Ljava/util/List;ZZLjava/util/Optional;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Ljava/util/List;ZZLjava/util/Optional;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_161905_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/validateHeight (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_161911_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_161917_ ()Ljava/util/List; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getLayers ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_204921_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getBiome ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209801_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$updateLayers$6 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209806_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$3 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209808_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209810_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/structureOverrides ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209811_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_226294_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/adjustGenerationSettings (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_254825_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_254853_ (Ljava/util/List;Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/withBiomeAndLayers (Ljava/util/List;Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_254980_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getDefault (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_255047_ (Lnet/minecraft/core/HolderGetter;)Ljava/util/List; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/createLakesList (Lnet/minecraft/core/HolderGetter;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_255268_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getDefaultBiome (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_255287_ (Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getBiome (Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_274292_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$validateHeight$5 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70369_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/setDecoration ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70385_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/setAddLakes ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70401_ ()Ljava/util/List; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getLayersInfo ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70403_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/updateLayers ()V +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161929_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161931_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161935_ (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161940_ (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161942_ (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161952_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$3 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161954_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161956_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161958_ (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$4 (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161963_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/getValue ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161964_ (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161966_ (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_161973_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_161975_ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_161979_ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/HeightProvider/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/ ()V net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/m_161987_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/m_161989_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/m_161992_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162004_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162006_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162009_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162013_ (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162018_ (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162020_ (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162032_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162034_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162037_ (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162042_ (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/UniformHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162056_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162058_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162062_ (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162067_ (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162069_ (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_191538_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_191540_ (Lnet/minecraft/world/level/levelgen/heightproviders/WeightedListHeight;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/WeightedListHeight;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/material/MaterialRuleList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/material/MaterialRuleList/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/f_191545_ ()Ljava/util/List; net/minecraft/world/level/levelgen/material/MaterialRuleList/materialRuleList ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/hashCode ()I net/minecraft/world/level/levelgen/material/MaterialRuleList/hashCode ()I +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/m_207387_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/material/MaterialRuleList/calculate (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/material/MaterialRuleList/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/material/WorldGenMaterialRule/m_183577_ (Lnet/minecraft/world/level/levelgen/NoiseChunk;III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/material/WorldGenMaterialRule/apply (Lnet/minecraft/world/level/levelgen/NoiseChunk;III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/BiomeFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_191561_ ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; net/minecraft/world/level/levelgen/placement/BiomeFilter/biome ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_191567_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/placement/BiomeFilter/lambda$shouldPlace$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_191568_ ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; net/minecraft/world/level/levelgen/placement/BiomeFilter/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/BiomeFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ ()V net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_191574_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_191576_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/forPredicate (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_191578_ (Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ ()V net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_191590_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/forStep (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement; +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_191592_ (Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/ ()V net/minecraft/world/level/levelgen/placement/CaveSurface/ ()V +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/ (Ljava/lang/String;ILnet/minecraft/core/Direction;ILjava/lang/String;)V net/minecraft/world/level/levelgen/placement/CaveSurface/ (Ljava/lang/String;ILnet/minecraft/core/Direction;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_162107_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/placement/CaveSurface/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_162110_ ()I net/minecraft/world/level/levelgen/placement/CaveSurface/getY ()I +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_162112_ ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/placement/CaveSurface/$values ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/placement/CaveSurface/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/placement/CaveSurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/values ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/placement/CaveSurface/values ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ ()V net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191604_ (I)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/of (I)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191606_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/of (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191608_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/isEmpty (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191610_ (Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191612_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;IIII)I net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/findOnGroundYPosition (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;IIII)I +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/ ()V net/minecraft/world/level/levelgen/placement/CountPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/placement/CountPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/CountPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_191628_ (I)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; net/minecraft/world/level/levelgen/placement/CountPlacement/of (I)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_191630_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; net/minecraft/world/level/levelgen/placement/CountPlacement/of (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_191632_ (Lnet/minecraft/world/level/levelgen/placement/CountPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/CountPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/CountPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/CountPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ ()V net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)V net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)V +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191649_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191651_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$3 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191653_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/scanningFor (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191657_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/scanningFor (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191667_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191669_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191671_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ ()V net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191678_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191680_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/uniform (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191683_ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/of (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191685_ (Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191692_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/triangle (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ ()V net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_191700_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_191702_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/onHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_191704_ (Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/InSquarePlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_191715_ ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; net/minecraft/world/level/levelgen/placement/InSquarePlacement/spread ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_191721_ ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; net/minecraft/world/level/levelgen/placement/InSquarePlacement/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/InSquarePlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ ()V net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ (IDD)V net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ (IDD)V +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191731_ (IDD)Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/of (IDD)Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191735_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191737_ (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191743_ (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191745_ (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ ()V net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ (DII)V net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ (DII)V +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191756_ (DII)Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/of (DII)Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191760_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191762_ (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191768_ (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191770_ (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Double; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/ ()V net/minecraft/world/level/levelgen/placement/PlacedFeature/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/world/level/levelgen/placement/PlacedFeature/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191775_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/placement/PlacedFeature/feature ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191776_ ()Ljava/util/List; net/minecraft/world/level/levelgen/placement/PlacedFeature/placement ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/hashCode ()I net/minecraft/world/level/levelgen/placement/PlacedFeature/hashCode ()I +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_191781_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacedFeature/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_191787_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_191795_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/util/List; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_204927_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226357_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226362_ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$placeWithContext$4 (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226368_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/placeWithContext (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226372_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$placeWithContext$3 (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226377_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/placeWithBiomeCheck (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/placement/PlacedFeature/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/placement/PlacementContext/ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191821_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/levelgen/placement/PlacementContext/getCarvingMask (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191824_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/levelgen/placement/PlacementContext/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191828_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/placement/PlacementContext/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191830_ ()I net/minecraft/world/level/levelgen/placement/PlacementContext/getMinBuildHeight ()I +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191831_ ()Lnet/minecraft/world/level/WorldGenLevel; net/minecraft/world/level/levelgen/placement/PlacementContext/getLevel ()Lnet/minecraft/world/level/WorldGenLevel; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191832_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/placement/PlacementContext/topFeature ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191833_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/placement/PlacementContext/generator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/placement/PlacementFilter/ ()V net/minecraft/world/level/levelgen/placement/PlacementFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementFilter/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacementFilter/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacementFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacementFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/PlacementModifier/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacementModifier/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/ ()V net/minecraft/world/level/levelgen/placement/PlacementModifierType/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/m_191864_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/placement/PlacementModifierType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/m_191866_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/PlacementModifierType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/m_191869_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/placement/PlacementModifierType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ ()V net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191877_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/vertical (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191879_ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/of (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191882_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191884_ (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191891_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/horizontal (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191893_ (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/ ()V net/minecraft/world/level/levelgen/placement/RarityFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/ (I)V net/minecraft/world/level/levelgen/placement/RarityFilter/ (I)V +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/RarityFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_191900_ (I)Lnet/minecraft/world/level/levelgen/placement/RarityFilter; net/minecraft/world/level/levelgen/placement/RarityFilter/onAverageOnceEvery (I)Lnet/minecraft/world/level/levelgen/placement/RarityFilter; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_191906_ (Lnet/minecraft/world/level/levelgen/placement/RarityFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/RarityFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/RarityFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/RarityFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/ ()V net/minecraft/world/level/levelgen/placement/RepeatingPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/m_191910_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/placement/RepeatingPlacement/lambda$getPositions$0 (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/RepeatingPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/RepeatingPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ ()V net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)V net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)V +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191928_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191930_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/of (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191938_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191941_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191943_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ ()V net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ (I)V net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ (I)V +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_191950_ (I)Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/forMaxDepth (I)Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_191952_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_191958_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/ ()V net/minecraft/world/level/levelgen/presets/WorldPreset/ ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/ (Ljava/util/Map;)V net/minecraft/world/level/levelgen/presets/WorldPreset/ (Ljava/util/Map;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_226420_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/presets/WorldPreset/overworld ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_226429_ (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Ljava/util/Map; net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$static$0 (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Ljava/util/Map; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_226435_ ()Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/presets/WorldPreset/createRegistry ()Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_238378_ (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/presets/WorldPreset/requireOverworld (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_247748_ ()Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/presets/WorldPreset/createWorldDimensions ()Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_257359_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_257360_ (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$createRegistry$2 (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_274293_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$requireOverworld$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_226459_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/presets/WorldPresets/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_226463_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/presets/WorldPresets/getNormalOverworld (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_246029_ (Lnet/minecraft/world/level/dimension/LevelStem;)Ljava/util/Optional; net/minecraft/world/level/levelgen/presets/WorldPresets/lambda$fromSettings$0 (Lnet/minecraft/world/level/dimension/LevelStem;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_246552_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/presets/WorldPresets/createNormalWorldDimensions (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_246618_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/levelgen/presets/WorldPresets/fromSettings (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_254897_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/presets/WorldPresets/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_226484_ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/makeNoiseBasedOverworld (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_226487_ (Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/makeOverworld (Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_226489_ (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/levelgen/presets/WorldPreset; net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/createPresetWithCustomOverworld (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/levelgen/presets/WorldPreset; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_254854_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/registerCustomOverworldPreset (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_271735_ ()V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/bootstrap ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_271739_ (Lnet/minecraft/world/level/biome/BiomeSource;)V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/registerOverworlds (Lnet/minecraft/world/level/biome/BiomeSource;)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/ ()V net/minecraft/world/level/levelgen/structure/BoundingBox/ ()V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/ (IIIIII)V net/minecraft/world/level/levelgen/structure/BoundingBox/ (IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/BoundingBox/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/BoundingBox/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/hashCode ()I net/minecraft/world/level/levelgen/structure/BoundingBox/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162367_ (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/move (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162371_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulate (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162373_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/move (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162375_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/fromCorners (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162378_ (Ljava/lang/Iterable;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulatingPositions (Ljava/lang/Iterable;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162380_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/levelgen/structure/BoundingBox/forAllCorners (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162382_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/BoundingBox/lambda$static$1 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162384_ ([I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/lambda$static$0 ([I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162386_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulate (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162388_ (Ljava/lang/Iterable;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulatingBoxes (Ljava/lang/Iterable;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162390_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/IntStream; net/minecraft/world/level/levelgen/structure/BoundingBox/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/IntStream; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162394_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/BoundingBox/getCenter ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162395_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/minX ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162396_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/minY ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162398_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/minZ ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162399_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/maxX ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162400_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/maxY ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162401_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/maxZ ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_191961_ (I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/inflatedBy (I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_260866_ (III)Z net/minecraft/world/level/levelgen/structure/BoundingBox/isInside (III)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71019_ (IIII)Z net/minecraft/world/level/levelgen/structure/BoundingBox/intersects (IIII)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71031_ (IIIIIIIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/orientBox (IIIIIIIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71044_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/infinite ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71045_ (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/moved (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71049_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/BoundingBox/intersects (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71051_ (Lnet/minecraft/core/Vec3i;)Z net/minecraft/world/level/levelgen/structure/BoundingBox/isInside (Lnet/minecraft/core/Vec3i;)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71053_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/BoundingBox/getLength ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71056_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/getXSpan ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71057_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/getYSpan ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71058_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/getZSpan ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/BoundingBox/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox$1/ ()V net/minecraft/world/level/levelgen/structure/BoundingBox$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/ ()V net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/ ()V +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/m_209838_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/ ()V net/minecraft/world/level/levelgen/structure/BuiltinStructures/ ()V +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/m_209872_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/structure/BuiltinStructures/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ ()V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ ()V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71311_ (II)Z net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/isUnhandledStructureStart (II)Z +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71314_ (IILjava/lang/String;)Z net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/hasLegacyStart (IILjava/lang/String;)Z +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71318_ (J)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/removeIndex (J)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71320_ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/populateCaches (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71324_ (Ljava/util/HashMap;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71326_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/updateFromLegacy (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71328_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/updateStructureStart (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71331_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/storage/DimensionDataStorage;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/getLegacyStructureHandler (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/storage/DimensionDataStorage;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71334_ (Ljava/lang/String;)Lit/unimi/dsi/fastutil/longs/Long2ObjectMap; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/lambda$populateCaches$2 (Ljava/lang/String;)Lit/unimi/dsi/fastutil/longs/Long2ObjectMap; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71336_ (Ljava/util/HashMap;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ ()V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_163123_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_163129_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/lambda$new$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_204941_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/lambda$new$1 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_209916_ (Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/addJunction (Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_209918_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getElement ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_226509_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/move (III)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_6830_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_72646_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_72647_ ()I net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getGroundLevelDelta ()I +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_72648_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getJunctions ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/ ()V net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/m_226517_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/lambda$static$0 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/m_226525_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIIIIILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIIIIILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/m_192467_ (Lnet/minecraft/world/level/LevelAccessor;I)Z net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/updateHeightPositionToLowestGroundHeight (Lnet/minecraft/world/level/LevelAccessor;I)Z +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/m_72803_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)Z net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/updateAverageGroundHeight (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)Z +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/ (Lnet/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor;IILnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/SinglePieceStructure/ (Lnet/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor;IILnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/SinglePieceStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/m_226543_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/SinglePieceStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/m_226546_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/SinglePieceStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor/m_226549_ (Lnet/minecraft/world/level/levelgen/WorldgenRandom;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor/construct (Lnet/minecraft/world/level/levelgen/WorldgenRandom;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/Structure/ ()V net/minecraft/world/level/levelgen/structure/Structure/ ()V +MD: net/minecraft/world/level/levelgen/structure/Structure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/Structure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/Structure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/Structure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/Structure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_214110_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/Structure/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226559_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/structure/Structure/biomes ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226567_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/Structure/settingsCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226569_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/Structure/adjustBoundingBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226572_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;II)I net/minecraft/world/level/levelgen/structure/Structure/getLowestY (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;II)I +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226576_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)I net/minecraft/world/level/levelgen/structure/Structure/getLowestY (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)I +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226582_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/Structure/getLowestYIn5by5BoxOffset7Blocks (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226585_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Ljava/util/function/Consumer;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/Structure/onTopOfChunkCenter (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Ljava/util/function/Consumer;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226594_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/world/level/levelgen/structure/Structure/lambda$settingsCodec$0 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226596_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/levelgen/structure/Structure/generate (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226607_ (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/Structure/simpleCodec (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226609_ (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/Structure/lambda$simpleCodec$1 (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226612_ ()Ljava/util/Map; net/minecraft/world/level/levelgen/structure/Structure/spawnOverrides ()Ljava/util/Map; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226613_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)[I net/minecraft/world/level/levelgen/structure/Structure/getCornerHeights (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)[I +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226619_ ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/structure/Structure/step ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226620_ ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/Structure/terrainAdaptation ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_262787_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;)Z net/minecraft/world/level/levelgen/structure/Structure/lambda$findValidGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure/m_262828_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Z net/minecraft/world/level/levelgen/structure/Structure/isValidBiome (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure/m_262864_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/Structure/findValidGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226621_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226622_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226623_ ()Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/biomeSource ()Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226624_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226625_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226626_ ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/random ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226627_ ()J net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/seed ()J +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226628_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226629_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/heightAccessor ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226630_ ()Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/validBiome ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/hashCode ()I net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/m_226653_ (JLnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/WorldgenRandom; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/makeRandom (JLnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/WorldgenRandom; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Either;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226669_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/position ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226670_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/generator ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/hashCode ()I net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/m_226677_ ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/getPiecesBuilder ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/m_226678_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/lambda$getPiecesBuilder$1 (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/m_226680_ (Ljava/util/function/Consumer;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/lambda$getPiecesBuilder$0 (Ljava/util/function/Consumer;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ ()V net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ ()V +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)V net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226689_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/biomes ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226690_ ()Ljava/util/Map; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/spawnOverrides ()Ljava/util/Map; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226691_ ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/step ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226692_ ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/terrainAdaptation ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/hashCode ()I net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/m_257361_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/ ()V net/minecraft/world/level/levelgen/structure/StructureCheck/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/ (Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/biome/BiomeSource;JLcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/levelgen/structure/StructureCheck/ (Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/biome/BiomeSource;JLcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197263_ (JLit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/world/level/levelgen/structure/StructureCheck/storeFullResults (JLit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197282_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;)V net/minecraft/world/level/levelgen/structure/StructureCheck/onStructureLoad (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197298_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/structure/StructureCheck/deduplicateEmptyMap (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197311_ (Lnet/minecraft/nbt/CompoundTag;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/structure/StructureCheck/loadStructures (Lnet/minecraft/nbt/CompoundTag;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_209954_ (JLit/unimi/dsi/fastutil/longs/Long2BooleanMap;)V net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$storeFullResults$3 (JLit/unimi/dsi/fastutil/longs/Long2BooleanMap;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226722_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)V net/minecraft/world/level/levelgen/structure/StructureCheck/incrementReference (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226725_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;J)Z net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$checkStart$1 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;J)Z +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226729_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheck/checkStart (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226733_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;ZJ)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheck/tryLoadFromStorage (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;ZJ)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226738_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/Long2BooleanMap; net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$checkStart$0 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/Long2BooleanMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226740_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$incrementReference$4 (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226743_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Long;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$incrementReference$5 (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Long;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226747_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$onStructureLoad$2 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226751_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheck/checkStructureInfo (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226755_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z net/minecraft/world/level/levelgen/structure/StructureCheck/canCreateStructure (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/ ()V net/minecraft/world/level/levelgen/structure/StructureCheckResult/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/structure/StructureCheckResult/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/m_197321_ ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheckResult/$values ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheckResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheckResult/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;Lit/unimi/dsi/fastutil/longs/LongSet;)V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;Lit/unimi/dsi/fastutil/longs/LongSet;)V +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ ()V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_163534_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData; net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73364_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/getAll ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73365_ (J)V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/addIndex (J)V +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73369_ (J)Z net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/hasStartIndex (J)Z +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73373_ (J)Z net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/hasUnhandledIndex (J)Z +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73375_ (J)V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/removeIndex (J)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/ ()V net/minecraft/world/level/levelgen/structure/StructurePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_142085_ (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/canBeReplaced (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_142171_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/StructurePiece/getLocatorPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163541_ (IIILnet/minecraft/core/Direction;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructurePiece/makeBoundingBox (IIILnet/minecraft/core/Direction;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163558_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163572_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/isReplaceableByStructures (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163577_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/StructurePiece/lambda$createTag$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163582_ (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldPos (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163586_ ()Ljava/lang/IllegalArgumentException; net/minecraft/world/level/levelgen/structure/StructurePiece/lambda$new$0 ()Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163587_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/levelgen/structure/StructurePiece/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/StructurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192644_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/StructurePiece/createTag (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192648_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/StructurePiece/findCollisionPiece (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192651_ (Ljava/util/stream/Stream;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructurePiece/createBoundingBox (Ljava/util/stream/Stream;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192653_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/structure/StructurePiece/lambda$createBoundingBox$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_210000_ ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/StructurePiece/getType ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/StructurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_213787_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/createChest (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/StructurePiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226758_ (I)V net/minecraft/world/level/levelgen/structure/StructurePiece/setGenDepth (I)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226760_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/structure/StructurePiece/getRandomHorizontalDirection (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226762_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/createChest (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226776_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIIZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIIZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226788_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;ZZ)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateMaybeBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;ZZ)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226803_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/StructurePiece/maybeGenerateBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226819_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/createDispenser (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226828_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/StructurePiece/move (III)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_6830_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/StructurePiece/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73392_ (II)I net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldX (II)I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73398_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/StructurePiece/getBlock (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73407_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/StructurePiece/reorient (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73411_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/world/level/levelgen/structure/StructurePiece/isCloseToChunk (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73414_ (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/isInterior (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73434_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/StructurePiece/placeBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73441_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73453_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateUpperHalfSphere (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73519_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/StructurePiece/setOrientation (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73525_ (II)I net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldZ (II)I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73528_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/StructurePiece/fillColumnDown (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73535_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateAirBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73544_ (I)I net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldY (I)I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73547_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructurePiece/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73548_ ()I net/minecraft/world/level/levelgen/structure/StructurePiece/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73549_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/structure/StructurePiece/getOrientation ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$1/ ()V net/minecraft/world/level/levelgen/structure/StructurePiece$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/ ()V net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/m_213766_ (Lnet/minecraft/util/RandomSource;IIIZ)V net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/next (Lnet/minecraft/util/RandomSource;IIIZ)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/m_73555_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/getNext ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/m_141921_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/findCollisionPiece (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/m_142679_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/addPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/ ()V net/minecraft/world/level/levelgen/structure/StructureSet/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V net/minecraft/world/level/levelgen/structure/StructureSet/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V net/minecraft/world/level/levelgen/structure/StructureSet/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/StructureSet/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210003_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/StructureSet/structures ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210004_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement; net/minecraft/world/level/levelgen/structure/StructureSet/placement ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/hashCode ()I net/minecraft/world/level/levelgen/structure/StructureSet/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSet/m_210013_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/StructureSet/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/m_210015_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; net/minecraft/world/level/levelgen/structure/StructureSet/entry (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/m_210017_ (Lnet/minecraft/core/Holder;I)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; net/minecraft/world/level/levelgen/structure/StructureSet/entry (Lnet/minecraft/core/Holder;I)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSet/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ ()V net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ (Lnet/minecraft/core/Holder;I)V net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ (Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210026_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/structure ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210027_ ()I net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/weight ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/hashCode ()I net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/m_210033_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ ()V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ (Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType;Lnet/minecraft/util/random/WeightedRandomList;)V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ (Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType;Lnet/minecraft/util/random/WeightedRandomList;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210043_ ()Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/boundingBox ()Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210044_ ()Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/spawns ()Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/hashCode ()I net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/m_210050_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ ()V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/m_210071_ ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/$values ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/ ()V net/minecraft/world/level/levelgen/structure/StructureStart/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/StructureStart/ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_163625_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/StructureStart/getChunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_192660_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/StructureStart/createTag (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_226850_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/levelgen/structure/StructureStart/placeInChunk (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_226857_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/levelgen/structure/StructureStart/loadStaticStart (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_226861_ ()Lnet/minecraft/world/level/levelgen/structure/Structure; net/minecraft/world/level/levelgen/structure/StructureStart/getStructure ()Lnet/minecraft/world/level/levelgen/structure/Structure; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73601_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructureStart/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73602_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/StructureStart/getPieces ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73603_ ()Z net/minecraft/world/level/levelgen/structure/StructureStart/isValid ()Z +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73606_ ()Z net/minecraft/world/level/levelgen/structure/StructureStart/canBeReferenced ()Z +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73607_ ()V net/minecraft/world/level/levelgen/structure/StructureStart/addReference ()V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73608_ ()I net/minecraft/world/level/levelgen/structure/StructureStart/getReferences ()I +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73609_ ()I net/minecraft/world/level/levelgen/structure/StructureStart/getMaxReferences ()I +MD: net/minecraft/world/level/levelgen/structure/StructureType/ ()V net/minecraft/world/level/levelgen/structure/StructureType/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureType/m_226879_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/StructureType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/StructureType/m_226881_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/StructureType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/StructureType/m_226884_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/StructureType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ ()V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/function/Function;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/function/Function;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_142415_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/makeTemplateLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_226911_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/template ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_226912_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/templatePosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_226913_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/placeSettings ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/move (III)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_6830_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ ()V net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ ()V +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/m_226926_ ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/$values ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/values ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/values ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator/m_197325_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context;)V net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;J)V net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;J)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192703_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192705_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192707_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/heightAccessor ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192708_ ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/random ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192709_ ()J net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/seed ()J +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_197328_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_226931_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197338_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/lambda$checkForBiomeOnTop$1 (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197341_ (Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/lambda$simple$0 (Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197345_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/checkForBiomeOnTop (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197347_ (Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/createGenerator (Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197349_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator;)Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/simple (Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator;)Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/RegistryAccess;)V net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197352_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197353_ ()Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/biomeSource ()Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197354_ ()J net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/seed ()J +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197355_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197356_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197357_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/heightAccessor ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197358_ ()Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/validBiome ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197360_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226941_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226942_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/m_197380_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/validBiomeOnTop (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ ()V net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192741_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/pieces ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192748_ ()Z net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/isEmpty ()Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192749_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/save (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192751_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/isInsidePiece (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192753_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/load (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192756_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/calculateBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192762_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/resourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192763_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_226956_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/m_192770_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/fromLevel (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/ ()V net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/ ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_207333_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/load (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_210152_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/setPieceId (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_210155_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/setTemplatePieceId (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_210158_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/setFullContextPieceId (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/m_207333_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/load (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/m_210166_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/m_207333_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/load (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/m_226962_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/load (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/ ()V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/ ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_141921_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/findCollisionPiece (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_142679_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/addPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192780_ ()Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/build ()Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192781_ (I)V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/offsetPiecesVertically (I)V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192796_ ()V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/clear ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192797_ ()Z net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/isEmpty ()Z +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192798_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_226965_ (IILnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/moveBelowSeaLevel (IILnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_226970_ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/moveInsideHeights (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ ()V net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IIILnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IIILnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (IIILnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (IIILnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_203443_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/type ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204959_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204965_ ()I net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/distance ()I +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204966_ ()I net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/spread ()I +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204967_ ()I net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/count ()I +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_214090_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/isPlacementChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_226996_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P9; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/codec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P9; +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_226998_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/preferredBiomes ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ ()V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;I)V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;I)V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;)V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;)V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_203443_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/type ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_204995_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_205003_ ()I net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spacing ()I +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_205004_ ()I net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/separation ()I +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_205005_ ()Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spreadType ()Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_214090_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/isPlacementChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_227008_ (JII)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/getPotentialStructureChunk (JII)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_274295_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/lambda$validate$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_285838_ (Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/validate (Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ ()V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/m_205029_ ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/$values ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/m_227018_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/evaluate (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/ ()V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;)V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_203443_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/type ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_214090_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/isPlacementChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227033_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/probabilityReducer (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227039_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/getLocatePos (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227041_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P5; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/placementCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P5; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227048_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/legacyProbabilityReducerWithDouble (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227060_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/legacyArbitrarySaltProbabilityReducer (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227066_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/legacyPillagerOutpostReducer (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227072_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/locateOffset ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227073_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequencyReductionMethod ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227074_ ()F net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequency ()F +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227075_ ()I net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/salt ()I +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227076_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/exclusionZone ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_255071_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/isStructureChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ (Lnet/minecraft/core/Holder;I)V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ (Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227078_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/otherSet ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227079_ ()I net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/chunkCount ()I +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/hashCode ()I net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/m_254908_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/isPlacementForbidden (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/m_257362_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer/m_227098_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer/shouldGenerate (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer;)V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer;)V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/m_227118_ ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/$values ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/m_227119_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/shouldGenerate (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/m_205044_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/m_205046_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/m_205049_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_210202_ ()Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_210212_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_210214_ (Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_210239_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/fillDefaultJigsawNBT ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/ (IIIILnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/ (IIIILnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/hashCode ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210252_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getSourceX ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210253_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/deserialize (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210255_ (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/serialize (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210257_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getSourceGroundY ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210258_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getSourceZ ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210259_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getDeltaY ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210260_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getDestProjection ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227203_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/generateJigsaw (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227210_ (Lnet/minecraft/world/level/levelgen/RandomState;IZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Ljava/util/List;Lnet/minecraft/world/phys/shapes/VoxelShape;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/addPieces (Lnet/minecraft/world/level/levelgen/RandomState;IZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Ljava/util/List;Lnet/minecraft/world/phys/shapes/VoxelShape;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227222_ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;IIIIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;ZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/lambda$addPieces$1 (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;IIIIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;ZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227238_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/core/BlockPos;ZLjava/util/Optional;I)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/addPieces (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/core/BlockPos;ZLjava/util/Optional;I)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227247_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/getRandomNamedJigsaw (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227254_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/lambda$generateJigsaw$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_245026_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/lambda$addPieces$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;I)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;I)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/ (Lnet/minecraft/core/Registry;ILnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/ (Lnet/minecraft/core/Registry;ILnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_227264_ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;IZLnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/tryPlacingChildren (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;IZLnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254827_ (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$2 (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254828_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$4 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254829_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254830_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$1 (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254831_ (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$3 (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254924_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/readPoolName (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/m_207169_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/getSettings (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/m_210356_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_207247_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/setProjection (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210366_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210368_ (Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210370_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$getBoundingBox$2 (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210374_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$setProjectionOnEachElement$5 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210405_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$getBoundingBox$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210406_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/setProjectionOnEachElement (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_227294_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$getBoundingBox$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_207169_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getSettings (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210424_ (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/encodeTemplate (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210428_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210430_ (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$templateCodec$3 (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210462_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/processorsCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210463_ (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$processorsCodec$2 (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210465_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/templateCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_227299_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getTemplate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_227324_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getDataMarkers (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_274296_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$encodeTemplate$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_207247_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/setProjection (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210480_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$list$6 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210502_ (Lnet/minecraft/core/Holder;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/feature (Lnet/minecraft/core/Holder;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210504_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$feature$5 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210507_ (Ljava/lang/String;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/legacy (Ljava/lang/String;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210512_ (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/legacy (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210515_ (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$single$4 (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210519_ (Ljava/util/List;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/list (Ljava/util/List;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210521_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$list$7 (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210524_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$empty$0 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210526_ (Ljava/lang/String;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/single (Ljava/lang/String;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210531_ (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/single (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210534_ (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$legacy$2 (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210538_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/projectionCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210539_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getProjection ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210540_ ()I net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getGroundLevelDelta ()I +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210541_ ()Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/empty ()Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_227329_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/handleDataMarker (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_254832_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$single$3 (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_254833_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$legacy$1 (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/ ()V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/m_210548_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/m_210550_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/m_210553_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ ()V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_210576_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$getMaxSize$2 (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_210578_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_210590_ ()I net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/size ()I +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227355_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getRandomTemplate (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227357_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)I net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getMaxSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)I +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227359_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)I net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$getMaxSize$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)I +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227362_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getShuffledTemplates (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_254834_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_254935_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getFallback ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ ()V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ (Ljava/lang/String;ILjava/lang/String;Lcom/google/common/collect/ImmutableList;)V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ (Ljava/lang/String;ILjava/lang/String;Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210604_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210607_ (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/byName (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210609_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/getProcessors ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210611_ ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/$values ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/values ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/values ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces/ ()V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/m_227380_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/isLiquid (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_227388_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_227391_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271833_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIII)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeCollapsedRoof (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271881_ (Lnet/minecraft/world/level/WorldGenLevel;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeCollapsedRoofPiece (Lnet/minecraft/world/level/WorldGenLevel;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271901_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addCellarStairs (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271942_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/getPotentialSuspiciousSandWorldPositions ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_272053_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addCellar (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_272212_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addCellarRoom (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_278617_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/getRandomCollapsedRoofPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_278669_ (IIIIII)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeSandBox (IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_278861_ (III)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeSand (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_214110_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_276758_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/lambda$placeSuspiciousSand$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_278858_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/placeSuspiciousSand (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227429_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;Z)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/addPiece (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;Z)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227436_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/recursiveChildren (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227444_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/startHouseTower (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227450_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/addHelper (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_142415_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/makeTemplateLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_227502_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/makeResourceLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_227510_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_227513_ (ZLnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/makeSettings (ZLnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_227529_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_227534_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/m_227548_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;I)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_227563_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/makePosition (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_227575_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_227587_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/IglooStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/IglooStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_227596_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_227599_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLnet/minecraft/world/level/levelgen/Heightmap$Types;)V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLnet/minecraft/world/level/levelgen/Heightmap$Types;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Z)V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLjava/util/Optional;I)V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLjava/util/Optional;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227639_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227641_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$6 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227643_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$5 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227645_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227648_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227651_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227653_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227655_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_274297_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$verifyRange$8 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_286028_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/verifyRange (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/ ()V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ ()V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/ ()V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/m_213766_ (Lnet/minecraft/util/RandomSource;IIIZ)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/next (Lnet/minecraft/util/RandomSource;IIIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/m_227706_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/generateAndAddPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/m_227715_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/createRandomShaftPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_213787_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/createChest (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227738_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/canPlaceColumnOnTopOf (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227750_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;II)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/fillColumnBetween (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227756_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/placeDoubleLowerOrUpperSupport (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227762_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/hasSturdyNeighbours (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227769_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIILnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/placeSupport (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIILnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227778_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIII)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/maybePlaceCobWeb (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227798_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/findCorridorSize (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227808_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/canHangChainBelow (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227819_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/fillPillarDownOrChainUp (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_73528_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/fillColumnDown (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_227843_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/placeSupportPillar (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_227854_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/findCrossing (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_142085_ (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/canBeReplaced (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_227874_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/isSupportingBox (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_227881_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/isInInvalidLocation (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_227890_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;III)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/setPlanksBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (ILnet/minecraft/util/RandomSource;IILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (ILnet/minecraft/util/RandomSource;IILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_227928_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/move (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/m_227950_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/findStairs (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_227965_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)I net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/generatePiecesAndAdjust (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)I +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_227968_ (Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_227970_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227989_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227990_ (I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/byId (I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227992_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getWoodState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227994_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getPlanksState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227995_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getFenceState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227996_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/m_228007_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/findAndCreateBridgePieceFactory (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (IILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (IILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/m_228046_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/m_228072_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/m_228105_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/m_228134_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/m_228162_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/m_228191_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/m_228220_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_228250_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/m_228282_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_228312_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/m_228344_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/m_228369_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228386_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/isOkBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228391_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;IZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateAndAddPiece (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;IZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228401_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateChildForward (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228408_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generatePiece (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228418_ (Ljava/util/List;)I net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/updatePieceWeight (Ljava/util/List;)I +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228420_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateChildLeft (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228427_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateChildRight (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;IIZ)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;IIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/m_228448_ ()Z net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/isValid ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/m_228449_ (I)Z net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/m_228472_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/m_228500_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_228524_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_228527_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/m_228534_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_228555_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_228566_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_228577_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/lambda$findGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_228582_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_228584_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228654_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateEntranceArchs (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228666_ (ZILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateWing (ZILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228672_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateRoomGraph (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228674_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateEntranceWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228678_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateRoofPiece (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228682_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateLowerWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228686_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateMiddleWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228690_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateUpperWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228849_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/generateBoxOnFillOnly (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228859_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIZ)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/generateDefaultFloor (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228865_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/chunkIntersects (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228874_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/makeBoundingBox (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228880_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/generateWaterBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228889_ (III)I net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/getRoomIndex (III)I +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_247483_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/spawnElder (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/ (I)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/ (I)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228944_ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/updateOpenings ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228945_ (I)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/findSource (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228947_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/setConnection (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228950_ ()Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/isSpecial ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228951_ ()I net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/countOpenings ()I +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228956_ (Lnet/minecraft/world/level/ChunkPos;JLnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/regeneratePiecesAfterLoad (Lnet/minecraft/world/level/ChunkPos;JLnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228960_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/createTopPiece (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228965_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228968_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228982_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/getSmallWarmRuin (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228984_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/allPositions (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228987_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/addClusterRuins (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228994_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_229001_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;ZF)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/addPiece (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;ZF)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_229010_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/getBigWarmRuin (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_277092_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/archyRuleProcessor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_229041_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/getHeight (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_276759_ (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/lambda$new$0 (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_277007_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/create (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_277082_ (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;FF)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;FF)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229066_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$findGenerationPoint$4 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229069_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229072_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229074_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229076_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229078_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/m_229091_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/m_229092_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229117_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/addNetherrackDripColumnsBelowPortal (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229120_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/maybeAddVines (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229124_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/lambda$postProcess$2 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229128_ (Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getSurfaceY (Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229133_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/canBlockBeReplacedByNetherrackOrMagma (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229144_ (Lnet/minecraft/world/level/block/Block;FLnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getBlockReplaceRule (Lnet/minecraft/world/level/block/Block;FLnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229148_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getBlockReplaceRule (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229151_ (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/makeSettings (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229160_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getHeightMapType (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229162_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getLavaProcessorRule (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229165_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/makeSettings (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229175_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229178_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/spreadNetherrack (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229181_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/maybeAddLeavesAbove (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229185_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/lambda$new$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229189_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/addNetherrackDripColumn (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229193_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/placeNetherrackOrMagma (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ (ZFZZZZ)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ (ZFZZZZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229213_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229215_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$5 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229217_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229219_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229221_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229223_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229225_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_229241_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_229242_ (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/byName (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_229244_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229262_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/getRandomWithinInterval (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229266_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;ZIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/findSuitableY (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;ZIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229276_ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$findSuitableY$3 (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229281_ (Lnet/minecraft/world/level/levelgen/WorldgenRandom;F)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/sample (Lnet/minecraft/world/level/levelgen/WorldgenRandom;F)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229286_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$findGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229298_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229300_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/isCold (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229303_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;FFZZZZF)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;FFZZZZF)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229307_ ()Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/placement ()Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229308_ ()F net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/airPocketProbability ()F +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229309_ ()F net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/mossiness ()F +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229310_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/overgrown ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229311_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/vines ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229312_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/canBeCold ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229313_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/replaceWithBlackstone ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229314_ ()F net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/weight ()F +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/hashCode ()I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/m_229326_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/m_229345_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Z)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_229370_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_229381_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Z)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229392_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/lambda$findGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229395_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229398_ (Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229400_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229416_ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/resetPieces ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229417_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/generatePieceFromSmallDoor (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229426_ (Ljava/lang/Class;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/findAndCreatePieceFactory (Ljava/lang/Class;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229435_ ()Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/updatePieceWeight ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229436_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/generateAndAddPiece (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/m_214198_ (I)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/m_214198_ (I)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_229483_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/m_229509_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/findPieceBox (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_229545_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/m_229575_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/m_229603_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/m_214198_ (I)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/m_229622_ ()Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/isValid ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_229646_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/m_229678_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/m_229705_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_229736_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/m_213766_ (Lnet/minecraft/util/RandomSource;IIIZ)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/next (Lnet/minecraft/util/RandomSource;IIIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_229786_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/m_142171_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/getLocatorPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_229831_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/m_229864_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229880_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType;III)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoor (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229888_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/isOkBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229893_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoorChildForward (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229899_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/randomSmallDoor (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229901_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoorChildLeft (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229907_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoorChildRight (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/m_229922_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_229942_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_229945_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/m_229957_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/spawnCat (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_229977_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_229980_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/m_229985_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/generateMansion (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/main ([Ljava/lang/String;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/main ([Ljava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_213985_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x2FrontEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_213986_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x2SideEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214124_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get2x2 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214125_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get2x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214126_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x1 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214127_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x1Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214128_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_213985_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x2FrontEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_213986_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x2SideEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214124_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get2x2 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214125_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get2x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214126_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x1 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214127_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x1Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214128_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230044_ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/print ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230045_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/cleanEdges (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230047_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;II)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/isHouse (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;II)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230051_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/isRoomId (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230057_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IILnet/minecraft/core/Direction;I)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/recursiveCorridor (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IILnet/minecraft/core/Direction;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230063_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/identifyRooms (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230066_ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/setupThirdFloor ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230067_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/get1x2RoomDirection (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230080_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/createMansion (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230085_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/entrance (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230088_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/core/Direction;IIII)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseOuterWalls (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/core/Direction;IIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230097_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom2x2Secret (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230102_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/createRoof (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230108_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom1x1 (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230114_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom2x2 (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230121_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;Z)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom1x2 (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230129_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseWallPiece (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230132_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseTurn (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230135_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseInnerTurn (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_213985_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x2FrontEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_213986_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x2SideEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214124_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get2x2 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214125_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get2x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214126_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x1 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214127_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x1Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214128_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/ (III)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/ (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230167_ (II)I net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/get (II)I +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230170_ (III)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/set (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230174_ (IIII)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/setif (IIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230179_ (IIIII)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/set (IIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230185_ (III)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/edgesTo (III)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_142415_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/makeTemplateLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_230204_ (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/makeSettings (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_230210_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/makeLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_230218_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_214110_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_230236_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_230241_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/m_73961_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest; net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ (FFIILnet/minecraft/core/Direction$Axis;)V net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ (FFIILnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163710_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Lnet/minecraft/core/Direction$Axis; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163712_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163714_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163716_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163718_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_73976_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_74006_ (Ljava/util/HashMap;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/lambda$new$1 (Ljava/util/HashMap;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_74008_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ (F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ (F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230255_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceFullStoneBlock (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230257_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getRandomFacingStairs (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230260_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceStairs (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230263_ (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getRandomBlock (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230266_ (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getRandomBlock (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230270_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceSlab (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230272_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceWall (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230274_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceObsidian (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_74022_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/m_74061_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/m_74072_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Ljava/util/Optional;F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Ljava/util/Optional;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Lnet/minecraft/core/HolderSet;F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Lnet/minecraft/core/HolderSet;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_230288_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_230290_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_257363_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/m_74098_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_276769_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_276771_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_276976_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/finalizeProcessing (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_277153_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;I)V net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;I)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_163726_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_163728_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_74115_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/m_74133_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/m_74146_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ (FFII)V net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ (FFII)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163730_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163732_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163734_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163736_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_74159_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/m_74186_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/m_74197_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest; net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/m_74209_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/m_74211_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/m_74214_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163740_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163742_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163744_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163746_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_230309_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_276760_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_276761_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_276991_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/getOutputTag (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_74237_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/getOutputState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/m_205052_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ (Lnet/minecraft/world/level/block/Block;F)V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ (Lnet/minecraft/world/level/block/Block;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_163763_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_163765_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_257364_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_163767_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_163769_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_74286_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/m_74305_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/m_74319_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/m_74321_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/m_74324_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_163782_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setKeepLiquids (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_230324_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_230326_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRandom (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74374_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/copy ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74377_ (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setMirror (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74379_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setRotation (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74381_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setBoundingBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74383_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/addProcessor (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74385_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setRotationPivot (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74387_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRandomPalette (Ljava/util/List;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74392_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setIgnoreEntities (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74394_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/clearProcessors ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74397_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/popProcessor (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74401_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74402_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setKnownShape (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74404_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74405_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setFinalizeEntities (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74407_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRotationPivot ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74408_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/isIgnoreEntities ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74409_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74410_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getKnownShape ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74411_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getProcessors ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74413_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/shouldKeepLiquids ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74414_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/shouldFinalizeEntities ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/m_276976_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/finalizeProcessing (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/m_74425_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/list ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_163785_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_163787_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74470_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$static$2 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74472_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$register$3 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74476_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74481_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163801_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163802_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;ZLnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/fillFromWorld (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;ZLnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163808_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getSize (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163810_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getBoundingBox (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_230328_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/util/RandomSource;I)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/placeInWorld (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/util/RandomSource;I)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_230335_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;Z)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/filterBlocks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;Z)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_246595_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/load (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_247272_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/loadPalette (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_274299_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/phys/Vec3;ZLnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$placeEntities$5 (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/phys/Vec3;ZLnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74488_ (IIILnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/Direction;III)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$updateShapeAtEdge$4 (IIILnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/Direction;III)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74498_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$fillEntityList$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74500_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/fillEntityList (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74510_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/updateShapeAtEdge (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74517_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/processBlockInfos (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74523_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/placeEntities (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74543_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/createEntityIgnoreException (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74563_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/calculateRelativePosition (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74566_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/calculateConnectedPosition (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74571_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$buildInfoList$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74573_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/addToLists (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74578_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/transform (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74583_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getZeroPositionWithTransform (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74587_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;II)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getZeroPositionWithTransform (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74593_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/transform (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74598_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getBoundingBox (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74603_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/filterBlocks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74612_ (Ljava/lang/String;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/setAuthor (Ljava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74614_ (Ljava/util/List;Ljava/util/List;Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/buildInfoList (Ljava/util/List;Ljava/util/List;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74618_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74623_ ([D)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/newDoubleList ([D)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74625_ ([I)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/newIntegerList ([I)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74627_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getAuthor ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74633_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74636_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$buildInfoList$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74640_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$buildInfoList$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_163816_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/lambda$blocks$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_74652_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/blocks ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_74653_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/blocks (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_74658_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/lambda$blocks$1 (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/iterator ()Ljava/util/Iterator; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/iterator ()Ljava/util/Iterator; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/m_74667_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/stateFor (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/m_74669_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/idFor (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/m_74671_ (Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/addMapping (Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74676_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74677_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/hashCode ()I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/HolderGetter;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/HolderGetter;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230355_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listTemplates ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230356_ (ILjava/lang/String;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listFolderContents$7 (ILjava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230359_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/getOrCreate (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230361_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/getPathToGeneratedStructure (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230364_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Throwable;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromResource$2 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Throwable;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230367_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromSnbt (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230370_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230372_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener;Ljava/util/function/Consumer;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/load (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener;Ljava/util/function/Consumer;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230375_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listTemplates$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230377_ (Ljava/io/InputStream;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/readStructure (Ljava/io/InputStream;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230379_ (Ljava/lang/String;Ljava/nio/file/Path;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listFolderContents$8 (Ljava/lang/String;Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230382_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/util/function/Consumer;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listFolderContents$9 (Ljava/lang/String;Ljava/util/function/Function;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230388_ (Ljava/nio/file/Path;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listGeneratedInNamespace (Ljava/nio/file/Path;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230390_ (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/createPathToStructure (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230394_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listFolderContents (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230398_ (Ljava/nio/file/Path;Ljava/lang/Throwable;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromGenerated$4 (Ljava/nio/file/Path;Ljava/lang/Throwable;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230401_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/relativize (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230404_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/readStructure (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230406_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listResources ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230407_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230409_ (Ljava/nio/file/Path;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listGenerated$6 (Ljava/nio/file/Path;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230411_ (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/createAndValidatePathToStructure (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230415_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listTestStructures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230416_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/save (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230418_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listGenerated$5 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230420_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listGenerated ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230421_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/remove (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230423_ (Ljava/nio/file/Path;)Ljava/io/InputStream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromGenerated$3 (Ljava/nio/file/Path;)Ljava/io/InputStream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230425_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/tryLoad (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230427_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230429_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromTestStructures (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230431_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromGenerated (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230437_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromResource$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener/m_230439_ ()Ljava/io/InputStream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener/open ()Ljava/io/InputStream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/ (Ljava/util/function/Function;Ljava/util/function/Supplier;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/ (Ljava/util/function/Function;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230440_ ()Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/loader ()Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230441_ ()Ljava/util/function/Supplier; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/lister ()Ljava/util/function/Supplier; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/hashCode ()I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/m_205064_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276930_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276970_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276972_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lambda$apply$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_276792_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_277045_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/m_276888_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/m_276894_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/m_276912_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/ ()V net/minecraft/world/level/levelgen/synth/BlendedNoise/ ()V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/util/RandomSource;DDDDD)V net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/util/RandomSource;DDDDD)V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;DDDDD)V net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;DDDDD)V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_192817_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/BlendedNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/synth/BlendedNoise/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_207401_ ()D net/minecraft/world/level/levelgen/synth/BlendedNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_207402_ ()D net/minecraft/world/level/levelgen/synth/BlendedNoise/minValue ()D +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/synth/BlendedNoise/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230477_ (DDDDD)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; net/minecraft/world/level/levelgen/synth/BlendedNoise/createUnseeded (DDDDD)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230483_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; net/minecraft/world/level/levelgen/synth/BlendedNoise/withNewRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230485_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230487_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$4 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230489_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$3 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230492_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$2 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230494_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$1 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230496_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$0 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/synth/ImprovedNoise/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164308_ (DDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/noise (DDD)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164312_ (DDD[D)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/noiseWithDerivative (DDD[D)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164317_ (IIIDDDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/sampleAndLerp (IIIDDDD)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164325_ (IIIDDD[D)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/sampleWithDerivative (IIIDDD[D)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_192823_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/ImprovedNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_75327_ (DDDDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/noise (DDDDD)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_75333_ (I)I net/minecraft/world/level/levelgen/synth/ImprovedNoise/p (I)I +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_75335_ (IDDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/gradDot (IDDD)D +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/ ()V net/minecraft/world/level/levelgen/synth/NoiseUtils/ ()V +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/m_164334_ (DD)D net/minecraft/world/level/levelgen/synth/NoiseUtils/biasTowardsExtreme (DD)D +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/m_192825_ (Ljava/lang/StringBuilder;DDD[B)V net/minecraft/world/level/levelgen/synth/NoiseUtils/parityNoiseOctaveConfigString (Ljava/lang/StringBuilder;DDD[B)V +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/m_192831_ (Ljava/lang/StringBuilder;DDD[I)V net/minecraft/world/level/levelgen/synth/NoiseUtils/parityNoiseOctaveConfigString (Ljava/lang/StringBuilder;DDD[I)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;Z)V net/minecraft/world/level/levelgen/synth/NormalNoise/ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;Z)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_192842_ ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; net/minecraft/world/level/levelgen/synth/NormalNoise/parameters ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_192846_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/NormalNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_210630_ ()D net/minecraft/world/level/levelgen/synth/NormalNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_230504_ (Lnet/minecraft/util/RandomSource;I[D)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/synth/NormalNoise/create (Lnet/minecraft/util/RandomSource;I[D)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_230508_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/synth/NormalNoise/createLegacyNetherBiome (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_230511_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/synth/NormalNoise/create (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_75380_ (DDD)D net/minecraft/world/level/levelgen/synth/NormalNoise/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_75384_ (I)D net/minecraft/world/level/levelgen/synth/NormalNoise/expectedDeviation (I)D +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ ()V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ ()V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ID[D)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ID[D)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILjava/util/List;)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILjava/util/List;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILit/unimi/dsi/fastutil/doubles/DoubleList;)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILit/unimi/dsi/fastutil/doubles/DoubleList;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192853_ ()I net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/firstOctave ()I +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192854_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/amplitudes ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/hashCode ()I net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/hashCode ()I +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/m_192864_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/m_210634_ (DLit/unimi/dsi/fastutil/doubles/DoubleArrayList;)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/lambda$new$1 (DLit/unimi/dsi/fastutil/doubles/DoubleArrayList;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/ (Lnet/minecraft/util/RandomSource;Lcom/mojang/datafixers/util/Pair;Z)V net/minecraft/world/level/levelgen/synth/PerlinNoise/ (Lnet/minecraft/util/RandomSource;Lcom/mojang/datafixers/util/Pair;Z)V +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192872_ ()I net/minecraft/world/level/levelgen/synth/PerlinNoise/firstOctave ()I +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192890_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/PerlinNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192892_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/level/levelgen/synth/PerlinNoise/amplitudes ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192896_ (Ljava/lang/Double;)Z net/minecraft/world/level/levelgen/synth/PerlinNoise/lambda$new$0 (Ljava/lang/Double;)Z +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_210642_ ()D net/minecraft/world/level/levelgen/synth/PerlinNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_210643_ (D)D net/minecraft/world/level/levelgen/synth/PerlinNoise/maxBrokenValue (D)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_210649_ (D)D net/minecraft/world/level/levelgen/synth/PerlinNoise/edgeValue (D)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230518_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/synth/PerlinNoise/skipOctave (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230520_ (Lnet/minecraft/util/RandomSource;ID[D)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;ID[D)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230525_ (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/createLegacyForLegacyNetherBiome (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230529_ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230532_ (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/createLegacyForBlendedNoise (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230535_ (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230539_ (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_241762_ (Ljava/lang/Double;)Ljava/lang/String; net/minecraft/world/level/levelgen/synth/PerlinNoise/lambda$parityConfigString$1 (Ljava/lang/Double;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75406_ (D)D net/minecraft/world/level/levelgen/synth/PerlinNoise/wrap (D)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75408_ (DDD)D net/minecraft/world/level/levelgen/synth/PerlinNoise/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75417_ (DDDDDZ)D net/minecraft/world/level/levelgen/synth/PerlinNoise/getValue (DDDDDZ)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75424_ (I)Lnet/minecraft/world/level/levelgen/synth/ImprovedNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/getOctaveNoise (I)Lnet/minecraft/world/level/levelgen/synth/ImprovedNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75430_ (Lit/unimi/dsi/fastutil/ints/IntSortedSet;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/levelgen/synth/PerlinNoise/makeAmplitudes (Lit/unimi/dsi/fastutil/ints/IntSortedSet;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Lit/unimi/dsi/fastutil/ints/IntSortedSet;)V net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Lit/unimi/dsi/fastutil/ints/IntSortedSet;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)V net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/m_75449_ (DDZ)D net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/getValue (DDZ)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/ ()V net/minecraft/world/level/levelgen/synth/SimplexNoise/ ()V +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/synth/SimplexNoise/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75464_ (DD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/getValue (DD)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75467_ (DDD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75471_ (I)I net/minecraft/world/level/levelgen/synth/SimplexNoise/p (I)I +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75473_ (IDDDD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/getCornerNoise3D (IDDDD)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75479_ ([IDDD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/dot ([IDDD)D +MD: net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/BlockLightSectionStorage;)V net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/BlockLightSectionStorage;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/BlockLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284140_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/lighting/BlockLightEngine/lambda$propagateLightSources$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284316_ (JJI)V net/minecraft/world/level/lighting/BlockLightEngine/propagateIncrease (JJI)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284321_ (JJ)V net/minecraft/world/level/lighting/BlockLightEngine/propagateDecrease (JJ)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284436_ (JLnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/lighting/BlockLightEngine/getEmission (JLnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_75858_ (J)V net/minecraft/world/level/lighting/BlockLightEngine/checkNode (J)V +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/BlockLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage/m_6181_ (J)I net/minecraft/world/level/lighting/BlockLightSectionStorage/getLightValue (J)I +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap; net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap; +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/lighting/ChunkSkyLightSources/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284134_ (I)V net/minecraft/world/level/lighting/ChunkSkyLightSources/fill (I)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284186_ (II)I net/minecraft/world/level/lighting/ChunkSkyLightSources/index (II)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284191_ ()I net/minecraft/world/level/lighting/ChunkSkyLightSources/getHighestLowestSourceY ()I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284264_ (Lnet/minecraft/world/level/chunk/ChunkAccess;III)I net/minecraft/world/level/lighting/ChunkSkyLightSources/findLowestSourceY (Lnet/minecraft/world/level/chunk/ChunkAccess;III)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284271_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/lighting/ChunkSkyLightSources/fillFrom (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284300_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/lighting/ChunkSkyLightSources/findLowestSourceBelow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284301_ (Lnet/minecraft/world/level/BlockGetter;IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/ChunkSkyLightSources/updateEdge (Lnet/minecraft/world/level/BlockGetter;IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284402_ (II)I net/minecraft/world/level/lighting/ChunkSkyLightSources/getLowestSourceY (II)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284474_ (I)I net/minecraft/world/level/lighting/ChunkSkyLightSources/get (I)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284514_ (II)V net/minecraft/world/level/lighting/ChunkSkyLightSources/set (II)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284521_ (Lnet/minecraft/world/level/BlockGetter;III)Z net/minecraft/world/level/lighting/ChunkSkyLightSources/update (Lnet/minecraft/world/level/BlockGetter;III)Z +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284529_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/ChunkSkyLightSources/isEdgeOccluded (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284557_ (I)I net/minecraft/world/level/lighting/ChunkSkyLightSources/extendSourcesBelowWorld (I)I +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/lighting/DataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; net/minecraft/world/level/lighting/DataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75524_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/DataLayerStorageMap/copyDataLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75526_ (JLnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/DataLayerStorageMap/setLayer (JLnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75529_ (J)Z net/minecraft/world/level/lighting/DataLayerStorageMap/hasLayer (J)Z +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75531_ ()V net/minecraft/world/level/lighting/DataLayerStorageMap/clearCache ()V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75532_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/DataLayerStorageMap/getLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75534_ ()V net/minecraft/world/level/lighting/DataLayerStorageMap/disableCache ()V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75535_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/DataLayerStorageMap/removeLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/ (III)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/ (III)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_278160_ (II)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/calculatePriority (II)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6163_ (J)Z net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/isSource (J)Z +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6172_ (J)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/getLevel (J)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6185_ (J)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkNode (J)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6357_ (JJI)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/getComputedLevel (JJI)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6359_ (JJI)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/computeLevelFromNeighbor (JJI)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_7351_ (JI)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/setLevel (JI)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75569_ (JJIIIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkEdge (JJIIIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75576_ (JJIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkEdge (JJIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75581_ (Ljava/util/function/LongPredicate;)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/removeIf (Ljava/util/function/LongPredicate;)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75583_ (Ljava/util/function/LongPredicate;Lit/unimi/dsi/fastutil/longs/LongList;J)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/lambda$removeIf$0 (Ljava/util/function/LongPredicate;Lit/unimi/dsi/fastutil/longs/LongList;J)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75587_ ()Z net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/hasWork ()Z +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75588_ (I)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/runUpdates (I)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75593_ (JJIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkNeighbor (JJIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75598_ ()I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/getQueueSize ()I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75600_ (J)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/removeFromQueue (J)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_7900_ (JIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkNeighborsAfterUpdate (JIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/ (Lnet/minecraft/world/level/lighting/DynamicGraphMinFixedPoint;IFI)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/ (Lnet/minecraft/world/level/lighting/DynamicGraphMinFixedPoint;IFI)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/rehash (I)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/rehash (I)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener/m_7768_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LayerLightEventListener/getLightValue (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LayerLightEventListener/m_8079_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightEventListener/getDataLayerData (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ ()V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ ()V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ (Ljava/lang/String;I)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_164438_ ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/$values ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_75808_ ()Z net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_7768_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/getLightValue (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_8079_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/getDataLayerData (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_9323_ ()I net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/values ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/values ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/DataLayerStorageMap;)V net/minecraft/world/level/lighting/LayerLightSectionStorage/ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/DataLayerStorageMap;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_280483_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/markSectionAndNeighborsAsAffected (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284157_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayerToWrite (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284259_ (JZ)V net/minecraft/world/level/lighting/LayerLightSectionStorage/setLightEnabled (JZ)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284283_ (Lnet/minecraft/world/level/lighting/LightEngine;)V net/minecraft/world/level/lighting/LayerLightSectionStorage/markNewInconsistencies (Lnet/minecraft/world/level/lighting/LightEngine;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284291_ (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDebugSectionType (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284336_ (JB)V net/minecraft/world/level/lighting/LayerLightSectionStorage/putSectionState (JB)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284382_ (J)Z net/minecraft/world/level/lighting/LayerLightSectionStorage/lightOnInSection (J)Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284475_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/removeSection (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284497_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/initializeSection (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284542_ (JLnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/LayerLightSectionStorage/queueSectionData (JLnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6177_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/onNodeAdded (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6181_ (J)I net/minecraft/world/level/lighting/LayerLightSectionStorage/getLightValue (J)I +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6187_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/onNodeRemoved (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6808_ ()Z net/minecraft/world/level/lighting/LayerLightSectionStorage/hasInconsistencies ()Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75758_ (JZ)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayer (JZ)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75761_ (Lnet/minecraft/world/level/lighting/DataLayerStorageMap;J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayer (Lnet/minecraft/world/level/lighting/DataLayerStorageMap;J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75772_ (JI)V net/minecraft/world/level/lighting/LayerLightSectionStorage/setStoredLevel (JI)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75782_ (JZ)V net/minecraft/world/level/lighting/LayerLightSectionStorage/retainData (JZ)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75787_ (JZ)V net/minecraft/world/level/lighting/LayerLightSectionStorage/updateSectionStatus (JZ)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75790_ ()V net/minecraft/world/level/lighting/LayerLightSectionStorage/swapSectionMap ()V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75791_ (J)Z net/minecraft/world/level/lighting/LayerLightSectionStorage/storingLightForSection (J)Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75793_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayerData (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75795_ (J)I net/minecraft/world/level/lighting/LayerLightSectionStorage/getStoredLevel (J)I +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_7667_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/createDataLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/ ()V net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/ ()V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284236_ (BI)B net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/neighborCount (BI)B +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284365_ (BZ)B net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/hasData (BZ)B +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284376_ (B)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/type (B)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284490_ (B)Z net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/hasData (B)Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284522_ (B)I net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/neighborCount (B)I +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ ()V net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ ()V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/m_284377_ ()Ljava/lang/String; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/display ()Ljava/lang/String; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/m_284484_ ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/$values ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/values ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/values ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;ZZ)V net/minecraft/world/level/lighting/LevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;ZZ)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/LevelLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_164446_ ()I net/minecraft/world/level/lighting/LevelLightEngine/getLightSectionCount ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_164447_ ()I net/minecraft/world/level/lighting/LevelLightEngine/getMinLightSection ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_164448_ ()I net/minecraft/world/level/lighting/LevelLightEngine/getMaxLightSection ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_284126_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/LevelLightEngine/queueSectionData (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_284439_ (Lnet/minecraft/core/SectionPos;)Z net/minecraft/world/level/lighting/LevelLightEngine/lightOnInSection (Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_284493_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LevelLightEngine/getDebugSectionType (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LevelLightEngine/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_6462_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LevelLightEngine/retainData (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LevelLightEngine/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75808_ ()Z net/minecraft/world/level/lighting/LevelLightEngine/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75814_ (Lnet/minecraft/world/level/LightLayer;)Lnet/minecraft/world/level/lighting/LayerLightEventListener; net/minecraft/world/level/lighting/LevelLightEngine/getLayerListener (Lnet/minecraft/world/level/LightLayer;)Lnet/minecraft/world/level/lighting/LayerLightEventListener; +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75816_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Ljava/lang/String; net/minecraft/world/level/lighting/LevelLightEngine/getDebugData (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Ljava/lang/String; +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75831_ (Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/lighting/LevelLightEngine/getRawBrightness (Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_9323_ ()I net/minecraft/world/level/lighting/LevelLightEngine/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LevelLightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/ (II)V net/minecraft/world/level/lighting/LeveledPriorityQueue/ (II)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278149_ (I)V net/minecraft/world/level/lighting/LeveledPriorityQueue/checkFirstQueuedLevel (I)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278178_ ()J net/minecraft/world/level/lighting/LeveledPriorityQueue/removeFirstLong ()J +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278192_ ()Z net/minecraft/world/level/lighting/LeveledPriorityQueue/isEmpty ()Z +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278202_ (JI)V net/minecraft/world/level/lighting/LeveledPriorityQueue/enqueue (JI)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278203_ (JII)V net/minecraft/world/level/lighting/LeveledPriorityQueue/dequeue (JII)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/ (Lnet/minecraft/world/level/lighting/LeveledPriorityQueue;IFI)V net/minecraft/world/level/lighting/LeveledPriorityQueue$1/ (Lnet/minecraft/world/level/lighting/LeveledPriorityQueue;IFI)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/rehash (I)V net/minecraft/world/level/lighting/LeveledPriorityQueue$1/rehash (I)V +MD: net/minecraft/world/level/lighting/LightEngine/ ()V net/minecraft/world/level/lighting/LightEngine/ ()V +MD: net/minecraft/world/level/lighting/LightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/LayerLightSectionStorage;)V net/minecraft/world/level/lighting/LightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/LayerLightSectionStorage;)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284187_ (JLnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/lighting/LightEngine/shapeOccludes (JLnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/lighting/LightEngine/m_284189_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/lighting/LightEngine/getOcclusionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/lighting/LightEngine/m_284203_ (JLnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/LightEngine/queueSectionData (JLnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284216_ (J)Ljava/lang/String; net/minecraft/world/level/lighting/LightEngine/getDebugData (J)Ljava/lang/String; +MD: net/minecraft/world/level/lighting/LightEngine/m_284218_ (JJ)V net/minecraft/world/level/lighting/LightEngine/enqueueIncrease (JJ)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284245_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LightEngine/retainData (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284265_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/LightEngine/isEmptyShape (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/LightEngine/m_284282_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)I net/minecraft/world/level/lighting/LightEngine/getLightBlockInto (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)I +MD: net/minecraft/world/level/lighting/LightEngine/m_284303_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/world/level/lighting/LightEngine/getChunk (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/world/level/lighting/LightEngine/m_284316_ (JJI)V net/minecraft/world/level/lighting/LightEngine/propagateIncrease (JJI)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284321_ (JJ)V net/minecraft/world/level/lighting/LightEngine/propagateDecrease (JJ)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284343_ (JJ)V net/minecraft/world/level/lighting/LightEngine/enqueueDecrease (JJ)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284361_ ()I net/minecraft/world/level/lighting/LightEngine/propagateIncreases ()I +MD: net/minecraft/world/level/lighting/LightEngine/m_284387_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/LightEngine/hasDifferentLightProperties (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/LightEngine/m_284399_ ()I net/minecraft/world/level/lighting/LightEngine/propagateDecreases ()I +MD: net/minecraft/world/level/lighting/LightEngine/m_284404_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LightEngine/getOpacity (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LightEngine/m_284428_ (Lnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/lighting/LightEngine/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/lighting/LightEngine/m_284437_ (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LightEngine/getDebugSectionType (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LightEngine/m_284512_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/lighting/LightEngine/getState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/lighting/LightEngine/m_284550_ ()V net/minecraft/world/level/lighting/LightEngine/clearChunkCache ()V +MD: net/minecraft/world/level/lighting/LightEngine/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LightEngine/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LightEngine/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LightEngine/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LightEngine/m_75808_ ()Z net/minecraft/world/level/lighting/LightEngine/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LightEngine/m_75858_ (J)V net/minecraft/world/level/lighting/LightEngine/checkNode (J)V +MD: net/minecraft/world/level/lighting/LightEngine/m_7768_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LightEngine/getLightValue (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LightEngine/m_8079_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LightEngine/getDataLayerData (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LightEngine/m_9323_ ()I net/minecraft/world/level/lighting/LightEngine/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/ ()V net/minecraft/world/level/lighting/LightEngine$QueueEntry/ ()V +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284128_ (IZLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseOnlyOneDirection (IZLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284170_ (J)I net/minecraft/world/level/lighting/LightEngine$QueueEntry/getFromLevel (J)I +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284185_ (IZ)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseLightFromEmission (IZ)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284188_ (IZLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseSkipOneDirection (IZLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284290_ (I)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/decreaseAllDirections (I)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284312_ (J)Z net/minecraft/world/level/lighting/LightEngine$QueueEntry/isIncreaseFromEmission (J)Z +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284335_ (JLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/withDirection (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284390_ (J)Z net/minecraft/world/level/lighting/LightEngine$QueueEntry/isFromEmptyShape (J)Z +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284416_ (JLnet/minecraft/core/Direction;)Z net/minecraft/world/level/lighting/LightEngine$QueueEntry/shouldPropagateInDirection (JLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284441_ (JLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/withoutDirection (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284455_ (JI)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/withLevel (JI)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284543_ (ZZZZZ)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseSkySourceInDirections (ZZZZZ)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284546_ (ILnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/decreaseSkipOneDirection (ILnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEventListener/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/LightEventListener/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LightEventListener/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LightEventListener/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_75808_ ()Z net/minecraft/world/level/lighting/LightEventListener/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LightEventListener/m_75834_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/lighting/LightEventListener/updateSectionStatus (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_9323_ ()I net/minecraft/world/level/lighting/LightEventListener/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LightEventListener/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LightEventListener/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/ ()V net/minecraft/world/level/lighting/SkyLightEngine/ ()V +MD: net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/SkyLightSectionStorage;)V net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/SkyLightSectionStorage;)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/SkyLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284181_ (JLnet/minecraft/core/Direction;IZI)V net/minecraft/world/level/lighting/SkyLightEngine/propagateFromEmptySections (JLnet/minecraft/core/Direction;IZI)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284202_ (Lnet/minecraft/core/Direction;II)Z net/minecraft/world/level/lighting/SkyLightEngine/crossedSectionEdge (Lnet/minecraft/core/Direction;II)Z +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284210_ (J)I net/minecraft/world/level/lighting/SkyLightEngine/countEmptySectionsBelowIfAtBorder (J)I +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284231_ (II)Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/lighting/SkyLightEngine/getChunkSources (II)Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284316_ (JJI)V net/minecraft/world/level/lighting/SkyLightEngine/propagateIncrease (JJI)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284317_ (IIII)V net/minecraft/world/level/lighting/SkyLightEngine/removeSourcesBelow (IIII)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284321_ (JJ)V net/minecraft/world/level/lighting/SkyLightEngine/propagateDecrease (JJ)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284344_ (III)I net/minecraft/world/level/lighting/SkyLightEngine/getLowestSourceY (III)I +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284375_ (IIII)V net/minecraft/world/level/lighting/SkyLightEngine/addSourcesAbove (IIII)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284427_ (III)V net/minecraft/world/level/lighting/SkyLightEngine/updateSourcesInColumn (III)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284444_ (I)Z net/minecraft/world/level/lighting/SkyLightEngine/isSourceLevel (I)Z +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_75858_ (J)V net/minecraft/world/level/lighting/SkyLightEngine/checkNode (J)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/SkyLightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/SkyLightEngine$1/ ()V net/minecraft/world/level/lighting/SkyLightEngine$1/ ()V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/SkyLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_164457_ (JZ)I net/minecraft/world/level/lighting/SkyLightSectionStorage/getLightValue (JZ)I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_182512_ (Lnet/minecraft/world/level/chunk/DataLayer;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/SkyLightSectionStorage/repeatFirstLayer (Lnet/minecraft/world/level/chunk/DataLayer;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_284293_ ()I net/minecraft/world/level/lighting/SkyLightSectionStorage/getBottomSectionY ()I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_284384_ (J)I net/minecraft/world/level/lighting/SkyLightSectionStorage/getTopSectionY (J)I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_6177_ (J)V net/minecraft/world/level/lighting/SkyLightSectionStorage/onNodeAdded (J)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_6181_ (J)I net/minecraft/world/level/lighting/SkyLightSectionStorage/getLightValue (J)I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_6187_ (J)V net/minecraft/world/level/lighting/SkyLightSectionStorage/onNodeRemoved (J)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_75870_ (I)Z net/minecraft/world/level/lighting/SkyLightSectionStorage/hasLightDataAtOrBelow (I)Z +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_75890_ (J)Z net/minecraft/world/level/lighting/SkyLightSectionStorage/isAboveData (J)Z +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_7667_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/SkyLightSectionStorage/createDataLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2IntOpenHashMap;I)V net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2IntOpenHashMap;I)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap; net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap; +MD: net/minecraft/world/level/lighting/SpatialLongSet/ (IF)V net/minecraft/world/level/lighting/SpatialLongSet/ (IF)V +MD: net/minecraft/world/level/lighting/SpatialLongSet/add (J)Z net/minecraft/world/level/lighting/SpatialLongSet/add (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet/isEmpty ()Z net/minecraft/world/level/lighting/SpatialLongSet/isEmpty ()Z +MD: net/minecraft/world/level/lighting/SpatialLongSet/rem (J)Z net/minecraft/world/level/lighting/SpatialLongSet/rem (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet/removeFirstLong ()J net/minecraft/world/level/lighting/SpatialLongSet/removeFirstLong ()J +MD: net/minecraft/world/level/lighting/SpatialLongSet/size ()I net/minecraft/world/level/lighting/SpatialLongSet/size ()I +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ ()V net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ ()V +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ (IF)V net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ (IF)V +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164485_ ()J net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeFirstBit ()J +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164486_ (IJ)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/replaceBit (IJ)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164489_ (J)J net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/getOuterKey (J)J +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164491_ (JI)J net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/getFullKey (JI)J +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164494_ (IJ)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeFromEntry (IJ)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164497_ (J)I net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/getInnerKey (J)I +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164499_ (J)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/addBit (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164501_ (J)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeBit (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164503_ (J)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeFromNullEntry (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/rehash (I)V net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/rehash (I)V +MD: net/minecraft/world/level/material/EmptyFluid/ ()V net/minecraft/world/level/material/EmptyFluid/ ()V +MD: net/minecraft/world/level/material/EmptyFluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/EmptyFluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/EmptyFluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/EmptyFluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/EmptyFluid/m_6098_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/EmptyFluid/getHeight (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/EmptyFluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/EmptyFluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/EmptyFluid/m_6752_ ()F net/minecraft/world/level/material/EmptyFluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/EmptyFluid/m_6759_ ()Z net/minecraft/world/level/material/EmptyFluid/isEmpty ()Z +MD: net/minecraft/world/level/material/EmptyFluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/EmptyFluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/EmptyFluid/m_7000_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/EmptyFluid/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/EmptyFluid/m_7427_ (Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/world/level/material/EmptyFluid/getOwnHeight (Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/world/level/material/EmptyFluid/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/EmptyFluid/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/EmptyFluid/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/EmptyFluid/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/EmptyFluid/m_7999_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/EmptyFluid/getShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FlowingFluid/ ()V net/minecraft/world/level/material/FlowingFluid/ ()V +MD: net/minecraft/world/level/material/FlowingFluid/ ()V net/minecraft/world/level/material/FlowingFluid/ ()V +MD: net/minecraft/world/level/material/FlowingFluid/m_192908_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;S)Z net/minecraft/world/level/material/FlowingFluid/lambda$getSlopeDistance$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;S)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_254836_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;S)Z net/minecraft/world/level/material/FlowingFluid/lambda$getSpread$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;S)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_284124_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/material/FlowingFluid/lambda$getSpread$3 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/material/FlowingFluid/m_284125_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/material/FlowingFluid/lambda$getSlopeDistance$1 (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/material/FlowingFluid/m_5613_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/FlowingFluid/getSource ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FlowingFluid/m_5615_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/FlowingFluid/getFlowing ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FlowingFluid/m_6098_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/FlowingFluid/getHeight (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/FlowingFluid/m_6292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/FlowingFluid/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_6364_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/FlowingFluid/spreadTo (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_6713_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/FlowingFluid/getDropOff (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_6719_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/FlowingFluid/getSlopeFindDistance (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_6760_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/material/FlowingFluid/canConvertToSource (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_6886_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/FlowingFluid/getSpreadDelay (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_7000_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/FlowingFluid/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/FlowingFluid/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/FlowingFluid/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_7427_ (Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/world/level/material/FlowingFluid/getOwnHeight (Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/world/level/material/FlowingFluid/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/FlowingFluid/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_7456_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/FlowingFluid/beforeDestroyingBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_75953_ (IZ)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/FlowingFluid/getFlowing (IZ)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/FlowingFluid/m_75956_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/material/FlowingFluid/isWaterHole (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75963_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/FlowingFluid/canPassThrough (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75972_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FlowingFluid/canHoldFluid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75977_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FlowingFluid/canSpreadTo (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75990_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/FlowingFluid/isSolidFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76010_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/FlowingFluid/spread (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_76014_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/FlowingFluid/spreadToSides (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_76019_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/material/FlowingFluid/sourceNeighborCount (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_76026_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lit/unimi/dsi/fastutil/shorts/Short2BooleanMap;)I net/minecraft/world/level/material/FlowingFluid/getSlopeDistance (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lit/unimi/dsi/fastutil/shorts/Short2BooleanMap;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_76035_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/FlowingFluid/getNewLiquid (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/FlowingFluid/m_76058_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)S net/minecraft/world/level/material/FlowingFluid/getCacheKey (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)S +MD: net/minecraft/world/level/material/FlowingFluid/m_76061_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/material/FlowingFluid/canPassThroughWall (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76068_ (Z)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/FlowingFluid/getSource (Z)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/FlowingFluid/m_76070_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/FlowingFluid/lambda$getShape$5 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FlowingFluid/m_76079_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Map; net/minecraft/world/level/material/FlowingFluid/getSpread (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Map; +MD: net/minecraft/world/level/material/FlowingFluid/m_76088_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/FlowingFluid/hasSameAbove (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76092_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/FlowingFluid/getLegacyLevel (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_76094_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/FlowingFluid/affectsFlow (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76096_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/FlowingFluid/isSourceBlockOfThisType (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76098_ ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; net/minecraft/world/level/material/FlowingFluid/lambda$static$0 ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; +MD: net/minecraft/world/level/material/FlowingFluid/m_7999_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/FlowingFluid/getShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FlowingFluid$1/ (I)V net/minecraft/world/level/material/FlowingFluid$1/ (I)V +MD: net/minecraft/world/level/material/FlowingFluid$1/rehash (I)V net/minecraft/world/level/material/FlowingFluid$1/rehash (I)V +MD: net/minecraft/world/level/material/Fluid/ ()V net/minecraft/world/level/material/Fluid/ ()V +MD: net/minecraft/world/level/material/Fluid/ ()V net/minecraft/world/level/material/Fluid/ ()V +MD: net/minecraft/world/level/material/Fluid/m_142520_ ()Ljava/util/Optional; net/minecraft/world/level/material/Fluid/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/material/Fluid/m_205067_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/material/Fluid/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/material/Fluid/m_205069_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/level/material/Fluid/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/level/material/Fluid/m_213811_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/Fluid/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/Fluid/m_213812_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/Fluid/randomTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/Fluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/Fluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/Fluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/Fluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/Fluid/m_6098_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/Fluid/getHeight (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/Fluid/m_6212_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/Fluid/isSame (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/Fluid/m_6292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/Fluid/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/Fluid/m_6685_ ()Z net/minecraft/world/level/material/Fluid/isRandomlyTicking ()Z +MD: net/minecraft/world/level/material/Fluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/Fluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/Fluid/m_6752_ ()F net/minecraft/world/level/material/Fluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/Fluid/m_6759_ ()Z net/minecraft/world/level/material/Fluid/isEmpty ()Z +MD: net/minecraft/world/level/material/Fluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/Fluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/Fluid/m_7000_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/Fluid/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/Fluid/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/Fluid/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/Fluid/m_7427_ (Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/world/level/material/Fluid/getOwnHeight (Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/world/level/material/Fluid/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/Fluid/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/Fluid/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/Fluid/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/Fluid/m_76142_ (Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/Fluid/registerDefaultState (Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/Fluid/m_76144_ ()Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/world/level/material/Fluid/getStateDefinition ()Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/world/level/material/Fluid/m_76145_ ()Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/Fluid/defaultFluidState ()Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/Fluid/m_7792_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/Fluid/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/Fluid/m_7999_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/Fluid/getShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FluidState/ ()V net/minecraft/world/level/material/FluidState/ ()V +MD: net/minecraft/world/level/material/FluidState/ (Lnet/minecraft/world/level/material/Fluid;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/material/FluidState/ (Lnet/minecraft/world/level/material/Fluid;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/material/FluidState/m_164512_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FluidState/isSourceOfType (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FluidState/m_192917_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FluidState/is (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FluidState/m_205070_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/material/FluidState/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/material/FluidState/m_205072_ (Lnet/minecraft/core/HolderSet;)Z net/minecraft/world/level/material/FluidState/is (Lnet/minecraft/core/HolderSet;)Z +MD: net/minecraft/world/level/material/FluidState/m_205074_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/material/FluidState/holder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/material/FluidState/m_205075_ ()Ljava/util/stream/Stream; net/minecraft/world/level/material/FluidState/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/material/FluidState/m_230558_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/FluidState/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/FluidState/m_230562_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/FluidState/randomTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/FluidState/m_76152_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/FluidState/getType ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FluidState/m_76155_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/FluidState/getHeight (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/FluidState/m_76158_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/FluidState/canBeReplacedWith (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/FluidState/m_76163_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/material/FluidState/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/material/FluidState/m_76170_ ()Z net/minecraft/world/level/material/FluidState/isSource ()Z +MD: net/minecraft/world/level/material/FluidState/m_76171_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/FluidState/shouldRenderBackwardUpFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/FluidState/m_76178_ ()Z net/minecraft/world/level/material/FluidState/isEmpty ()Z +MD: net/minecraft/world/level/material/FluidState/m_76179_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/FluidState/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/FluidState/m_76182_ ()F net/minecraft/world/level/material/FluidState/getOwnHeight ()F +MD: net/minecraft/world/level/material/FluidState/m_76183_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/FluidState/getShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FluidState/m_76186_ ()I net/minecraft/world/level/material/FluidState/getAmount ()I +MD: net/minecraft/world/level/material/FluidState/m_76187_ ()Z net/minecraft/world/level/material/FluidState/isRandomlyTicking ()Z +MD: net/minecraft/world/level/material/FluidState/m_76188_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/FluidState/createLegacyBlock ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/FluidState/m_76189_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/FluidState/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/FluidState/m_76190_ ()F net/minecraft/world/level/material/FluidState/getExplosionResistance ()F +MD: net/minecraft/world/level/material/Fluids/ ()V net/minecraft/world/level/material/Fluids/ ()V +MD: net/minecraft/world/level/material/Fluids/ ()V net/minecraft/world/level/material/Fluids/ ()V +MD: net/minecraft/world/level/material/Fluids/m_76197_ (Ljava/lang/String;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/Fluids/register (Ljava/lang/String;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FogType/ ()V net/minecraft/world/level/material/FogType/ ()V +MD: net/minecraft/world/level/material/FogType/ (Ljava/lang/String;I)V net/minecraft/world/level/material/FogType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/material/FogType/m_164524_ ()[Lnet/minecraft/world/level/material/FogType; net/minecraft/world/level/material/FogType/$values ()[Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/world/level/material/FogType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/FogType; net/minecraft/world/level/material/FogType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/world/level/material/FogType/values ()[Lnet/minecraft/world/level/material/FogType; net/minecraft/world/level/material/FogType/values ()[Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/world/level/material/LavaFluid/ ()V net/minecraft/world/level/material/LavaFluid/ ()V +MD: net/minecraft/world/level/material/LavaFluid/m_142520_ ()Ljava/util/Optional; net/minecraft/world/level/material/LavaFluid/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/material/LavaFluid/m_213811_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/LavaFluid/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/LavaFluid/m_213812_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/LavaFluid/randomTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/LavaFluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/LavaFluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_5613_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/LavaFluid/getSource ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/LavaFluid/m_5615_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/LavaFluid/getFlowing ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/LavaFluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/LavaFluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/LavaFluid/m_6212_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/LavaFluid/isSame (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_6364_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/LavaFluid/spreadTo (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/LavaFluid/m_6685_ ()Z net/minecraft/world/level/material/LavaFluid/isRandomlyTicking ()Z +MD: net/minecraft/world/level/material/LavaFluid/m_6713_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/LavaFluid/getDropOff (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/LavaFluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/LavaFluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/LavaFluid/m_6719_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/LavaFluid/getSlopeFindDistance (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/LavaFluid/m_6752_ ()F net/minecraft/world/level/material/LavaFluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/LavaFluid/m_6760_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/material/LavaFluid/canConvertToSource (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/LavaFluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/LavaFluid/m_6886_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/LavaFluid/getSpreadDelay (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/LavaFluid/m_7456_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/LavaFluid/beforeDestroyingBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/LavaFluid/m_76212_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/material/LavaFluid/fizz (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/material/LavaFluid/m_76227_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/LavaFluid/hasFlammableNeighbours (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_76245_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/LavaFluid/isFlammable (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_7792_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/LavaFluid/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/LavaFluid$Flowing/ ()V net/minecraft/world/level/material/LavaFluid$Flowing/ ()V +MD: net/minecraft/world/level/material/LavaFluid$Flowing/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/LavaFluid$Flowing/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/LavaFluid$Flowing/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/LavaFluid$Flowing/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/LavaFluid$Flowing/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/LavaFluid$Flowing/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/LavaFluid$Source/ ()V net/minecraft/world/level/material/LavaFluid$Source/ ()V +MD: net/minecraft/world/level/material/LavaFluid$Source/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/LavaFluid$Source/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/LavaFluid$Source/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/LavaFluid$Source/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/MapColor/ ()V net/minecraft/world/level/material/MapColor/ ()V +MD: net/minecraft/world/level/material/MapColor/ (II)V net/minecraft/world/level/material/MapColor/ (II)V +MD: net/minecraft/world/level/material/MapColor/m_284175_ (I)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/material/MapColor/byId (I)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/material/MapColor/m_284280_ (Lnet/minecraft/world/level/material/MapColor$Brightness;)I net/minecraft/world/level/material/MapColor/calculateRGBColor (Lnet/minecraft/world/level/material/MapColor$Brightness;)I +MD: net/minecraft/world/level/material/MapColor/m_284315_ (I)I net/minecraft/world/level/material/MapColor/getColorFromPackedId (I)I +MD: net/minecraft/world/level/material/MapColor/m_284381_ (I)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/material/MapColor/byIdUnsafe (I)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/material/MapColor/m_284523_ (Lnet/minecraft/world/level/material/MapColor$Brightness;)B net/minecraft/world/level/material/MapColor/getPackedId (Lnet/minecraft/world/level/material/MapColor$Brightness;)B +MD: net/minecraft/world/level/material/MapColor$Brightness/ ()V net/minecraft/world/level/material/MapColor$Brightness/ ()V +MD: net/minecraft/world/level/material/MapColor$Brightness/ (Ljava/lang/String;III)V net/minecraft/world/level/material/MapColor$Brightness/ (Ljava/lang/String;III)V +MD: net/minecraft/world/level/material/MapColor$Brightness/m_284351_ (I)Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/byId (I)Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/m_284371_ ()[Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/$values ()[Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/m_284389_ (I)Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/byIdUnsafe (I)Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/values ()[Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/values ()[Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/PushReaction/ ()V net/minecraft/world/level/material/PushReaction/ ()V +MD: net/minecraft/world/level/material/PushReaction/ (Ljava/lang/String;I)V net/minecraft/world/level/material/PushReaction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/material/PushReaction/m_164537_ ()[Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/material/PushReaction/$values ()[Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/material/PushReaction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/material/PushReaction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/material/PushReaction/values ()[Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/material/PushReaction/values ()[Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/material/WaterFluid/ ()V net/minecraft/world/level/material/WaterFluid/ ()V +MD: net/minecraft/world/level/material/WaterFluid/m_142520_ ()Ljava/util/Optional; net/minecraft/world/level/material/WaterFluid/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/material/WaterFluid/m_213811_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/WaterFluid/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/WaterFluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/WaterFluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/WaterFluid/m_5613_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/WaterFluid/getSource ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/WaterFluid/m_5615_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/WaterFluid/getFlowing ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/WaterFluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/WaterFluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/WaterFluid/m_6212_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/WaterFluid/isSame (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/WaterFluid/m_6713_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/WaterFluid/getDropOff (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/WaterFluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/WaterFluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/WaterFluid/m_6719_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/WaterFluid/getSlopeFindDistance (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/WaterFluid/m_6752_ ()F net/minecraft/world/level/material/WaterFluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/WaterFluid/m_6760_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/material/WaterFluid/canConvertToSource (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/material/WaterFluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/WaterFluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/WaterFluid/m_7456_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/WaterFluid/beforeDestroyingBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/WaterFluid/m_7792_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/WaterFluid/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/WaterFluid$Flowing/ ()V net/minecraft/world/level/material/WaterFluid$Flowing/ ()V +MD: net/minecraft/world/level/material/WaterFluid$Flowing/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/WaterFluid$Flowing/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/WaterFluid$Flowing/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/WaterFluid$Flowing/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/WaterFluid$Flowing/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/WaterFluid$Flowing/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/WaterFluid$Source/ ()V net/minecraft/world/level/material/WaterFluid$Source/ ()V +MD: net/minecraft/world/level/material/WaterFluid$Source/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/WaterFluid$Source/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/WaterFluid$Source/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/WaterFluid$Source/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/ (Z)V net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/ (Z)V +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_141974_ ()Z net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/isAmphibious ()Z +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_230610_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/isVerticalNeighborValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/ ()V net/minecraft/world/level/pathfinder/BinaryHeap/ ()V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164680_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/peek ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164681_ (Lnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/BinaryHeap/remove (Lnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164683_ ()I net/minecraft/world/level/pathfinder/BinaryHeap/size ()I +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164684_ ()[Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/getHeap ()[Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77081_ ()V net/minecraft/world/level/pathfinder/BinaryHeap/clear ()V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77082_ (I)V net/minecraft/world/level/pathfinder/BinaryHeap/upHeap (I)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77084_ (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/insert (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77086_ (Lnet/minecraft/world/level/pathfinder/Node;F)V net/minecraft/world/level/pathfinder/BinaryHeap/changeCost (Lnet/minecraft/world/level/pathfinder/Node;F)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77089_ (I)V net/minecraft/world/level/pathfinder/BinaryHeap/downHeap (I)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77091_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/pop ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77092_ ()Z net/minecraft/world/level/pathfinder/BinaryHeap/isEmpty ()Z +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/ ()V net/minecraft/world/level/pathfinder/BlockPathTypes/ ()V +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/ (Ljava/lang/String;IF)V net/minecraft/world/level/pathfinder/BlockPathTypes/ (Ljava/lang/String;IF)V +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/m_164686_ ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/BlockPathTypes/$values ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/m_77124_ ()F net/minecraft/world/level/pathfinder/BlockPathTypes/getMalus ()F +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/BlockPathTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/values ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/BlockPathTypes/values ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/ ()V net/minecraft/world/level/pathfinder/FlyNodeEvaluator/ ()V +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_164693_ (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getCachedBlockPathType (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_262494_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/pathfinder/FlyNodeEvaluator/canStartAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_262834_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/findAcceptedNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_262869_ (Lnet/minecraft/world/entity/Mob;)Ljava/lang/Iterable; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/iteratePathfindingStartNodeCandidatePositions (Lnet/minecraft/world/entity/Mob;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_264025_ (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/lambda$getCachedBlockPathType$0 (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/FlyNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/FlyNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_77263_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/FlyNodeEvaluator/hasMalus (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_77269_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/FlyNodeEvaluator/isOpen (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/Node/ (III)V net/minecraft/world/level/pathfinder/Node/ (III)V +MD: net/minecraft/world/level/pathfinder/Node/equals (Ljava/lang/Object;)Z net/minecraft/world/level/pathfinder/Node/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/pathfinder/Node/hashCode ()I net/minecraft/world/level/pathfinder/Node/hashCode ()I +MD: net/minecraft/world/level/pathfinder/Node/m_164697_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/pathfinder/Node/distanceTo (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/pathfinder/Node/m_164699_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/pathfinder/Node/writeToStream (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/pathfinder/Node/m_164701_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/pathfinder/Node/asVec3 ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/pathfinder/Node/m_164702_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/pathfinder/Node/distanceToSqr (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/pathfinder/Node/m_230613_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceToXZ (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_262841_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Node/readContents (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Node/m_77288_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Node/asBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Node/m_77289_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Node/cloneAndMove (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Node/m_77293_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceTo (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_77295_ (III)I net/minecraft/world/level/pathfinder/Node/createHash (III)I +MD: net/minecraft/world/level/pathfinder/Node/m_77299_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceToSqr (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_77301_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Node/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Node/m_77303_ ()Z net/minecraft/world/level/pathfinder/Node/inOpenSet ()Z +MD: net/minecraft/world/level/pathfinder/Node/m_77304_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceManhattan (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_77306_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/pathfinder/Node/distanceManhattan (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/pathfinder/Node/toString ()Ljava/lang/String; net/minecraft/world/level/pathfinder/Node/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/ ()V net/minecraft/world/level/pathfinder/NodeEvaluator/ ()V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_230615_ (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/NodeEvaluator/getTargetFromNode (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_254850_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanWalkOverFences (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_255100_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canWalkOverFences ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_5676_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/getNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/NodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/NodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/NodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/NodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/NodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77328_ (IIII)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/lambda$getNode$0 (IIII)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77349_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/getNode (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77351_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanPassDoors (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77355_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanOpenDoors (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77357_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canPassDoors ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77358_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanFloat (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77360_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canOpenDoors ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77361_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canFloat ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/NodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/Path/ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/pathfinder/Path/ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/pathfinder/Path/m_164704_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/pathfinder/Path/writeToStream (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/pathfinder/Path/m_164706_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Target;)V net/minecraft/world/level/pathfinder/Path/lambda$writeToStream$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Target;)V +MD: net/minecraft/world/level/pathfinder/Path/m_164709_ ([Lnet/minecraft/world/level/pathfinder/Node;[Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)V net/minecraft/world/level/pathfinder/Path/setDebug ([Lnet/minecraft/world/level/pathfinder/Node;[Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)V +MD: net/minecraft/world/level/pathfinder/Path/m_77374_ ()V net/minecraft/world/level/pathfinder/Path/advance ()V +MD: net/minecraft/world/level/pathfinder/Path/m_77375_ (I)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getNode (I)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77377_ (ILnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Path/replaceNode (ILnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Path/m_77380_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/pathfinder/Path/getNextEntityPos (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/pathfinder/Path/m_77382_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/pathfinder/Path/getEntityPosAtNode (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/pathfinder/Path/m_77385_ (Lnet/minecraft/world/level/pathfinder/Path;)Z net/minecraft/world/level/pathfinder/Path/sameAs (Lnet/minecraft/world/level/pathfinder/Path;)Z +MD: net/minecraft/world/level/pathfinder/Path/m_77387_ ()Z net/minecraft/world/level/pathfinder/Path/notStarted ()Z +MD: net/minecraft/world/level/pathfinder/Path/m_77388_ (I)V net/minecraft/world/level/pathfinder/Path/truncateNodes (I)V +MD: net/minecraft/world/level/pathfinder/Path/m_77390_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/Path/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/Path/m_77392_ ()Z net/minecraft/world/level/pathfinder/Path/isDone ()Z +MD: net/minecraft/world/level/pathfinder/Path/m_77393_ (I)V net/minecraft/world/level/pathfinder/Path/setNextNodeIndex (I)V +MD: net/minecraft/world/level/pathfinder/Path/m_77395_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getEndNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77396_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Path/getNodePos (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Path/m_77398_ ()I net/minecraft/world/level/pathfinder/Path/getNodeCount ()I +MD: net/minecraft/world/level/pathfinder/Path/m_77399_ ()I net/minecraft/world/level/pathfinder/Path/getNextNodeIndex ()I +MD: net/minecraft/world/level/pathfinder/Path/m_77400_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Path/getNextNodePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Path/m_77401_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getNextNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77402_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getPreviousNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77403_ ()Z net/minecraft/world/level/pathfinder/Path/canReach ()Z +MD: net/minecraft/world/level/pathfinder/Path/m_77404_ ()[Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getOpenSet ()[Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77405_ ()[Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getClosedSet ()[Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77406_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Path/getTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Path/m_77407_ ()F net/minecraft/world/level/pathfinder/Path/getDistToTarget ()F +MD: net/minecraft/world/level/pathfinder/Path/toString ()Ljava/lang/String; net/minecraft/world/level/pathfinder/Path/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/pathfinder/PathComputationType/ ()V net/minecraft/world/level/pathfinder/PathComputationType/ ()V +MD: net/minecraft/world/level/pathfinder/PathComputationType/ (Ljava/lang/String;I)V net/minecraft/world/level/pathfinder/PathComputationType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/pathfinder/PathComputationType/m_164713_ ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; net/minecraft/world/level/pathfinder/PathComputationType/$values ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; +MD: net/minecraft/world/level/pathfinder/PathComputationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/PathComputationType; net/minecraft/world/level/pathfinder/PathComputationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/PathComputationType; +MD: net/minecraft/world/level/pathfinder/PathComputationType/values ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; net/minecraft/world/level/pathfinder/PathComputationType/values ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; +MD: net/minecraft/world/level/pathfinder/PathFinder/ (Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V net/minecraft/world/level/pathfinder/PathFinder/ (Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V +MD: net/minecraft/world/level/pathfinder/PathFinder/m_164716_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Map;FIF)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/findPath (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Map;FIF)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_214208_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/PathFinder/distance (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77427_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;Ljava/util/Set;FIF)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/findPath (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;Ljava/util/Set;FIF)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77434_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/reconstructPath (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77444_ (Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)F net/minecraft/world/level/pathfinder/PathFinder/getBestH (Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)F +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77447_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/PathFinder/lambda$findPath$0 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77449_ (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/lambda$findPath$2 (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77452_ (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/lambda$findPath$1 (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/ (Z)V net/minecraft/world/level/pathfinder/SwimNodeEvaluator/ (Z)V +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192953_ (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/lambda$getCachedBlockType$0 (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192961_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/SwimNodeEvaluator/isNodeValid (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192963_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/SwimNodeEvaluator/isDiagonalNodeValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192967_ (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getCachedBlockType (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_262844_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/findAcceptedNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/SwimNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/SwimNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/Target/ (III)V net/minecraft/world/level/pathfinder/Target/ (III)V +MD: net/minecraft/world/level/pathfinder/Target/ (Lnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Target/ (Lnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Target/m_164723_ ()Z net/minecraft/world/level/pathfinder/Target/isReached ()Z +MD: net/minecraft/world/level/pathfinder/Target/m_77503_ (FLnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Target/updateBest (FLnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Target/m_77506_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/Target/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/Target/m_77508_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Target/getBestNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Target/m_77509_ ()V net/minecraft/world/level/pathfinder/Target/setReached ()V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/ ()V net/minecraft/world/level/pathfinder/WalkNodeEvaluator/ ()V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_141974_ ()Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isAmphibious ()Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_142213_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getFloorLevel (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_164725_ (IIIIDLnet/minecraft/core/Direction;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/findAcceptedNode (IIIIDLnet/minecraft/core/Direction;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_192971_ (Lnet/minecraft/world/phys/AABB;Ljava/lang/Object;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/lambda$hasCollisions$0 (Lnet/minecraft/world/phys/AABB;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230619_ (IIILnet/minecraft/world/level/pathfinder/BlockPathTypes;F)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getNodeAndUpdateCostToMax (IIILnet/minecraft/world/level/pathfinder/BlockPathTypes;F)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230625_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/doesBlockHavePartialCollision (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230627_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockedNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230631_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getStartNode (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_255203_ ()D net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getMobJumpHeight ()D +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_262494_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/canStartAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_264026_ (IIILnet/minecraft/world/entity/Mob;J)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/lambda$getCachedBlockType$1 (IIILnet/minecraft/world/entity/Mob;J)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_264405_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/evaluateBlockPathType (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_264561_ (Lnet/minecraft/world/level/BlockGetter;IIILjava/util/EnumSet;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathTypes (Lnet/minecraft/world/level/BlockGetter;IIILjava/util/EnumSet;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/WalkNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/WalkNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77567_ (Lnet/minecraft/world/entity/Mob;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getCachedBlockType (Lnet/minecraft/world/entity/Mob;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77572_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathType (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77604_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathTypeStatic (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77607_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/checkNeighbourBlocks (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77611_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getFloorLevel (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77622_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isBurningBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77624_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/canReachWithoutCollision (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77626_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isNeighborValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77629_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isDiagonalValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77634_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/hasCollisions (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77643_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathTypeRaw (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/portal/PortalForcer/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/portal/PortalForcer/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/portal/PortalForcer/m_192974_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/BlockUtil$FoundRectangle; net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$6 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/BlockUtil$FoundRectangle; +MD: net/minecraft/world/level/portal/PortalForcer/m_192976_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_192979_ (Lnet/minecraft/world/level/border/WorldBorder;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$1 (Lnet/minecraft/world/level/border/WorldBorder;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_192982_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D +MD: net/minecraft/world/level/portal/PortalForcer/m_192985_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalForcer/findPortalAround (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalForcer/m_192989_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$4 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_192991_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)I net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$3 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)I +MD: net/minecraft/world/level/portal/PortalForcer/m_230633_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_245373_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/portal/PortalForcer/canPortalReplaceBlock (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_77661_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)Z net/minecraft/world/level/portal/PortalForcer/canHostFrame (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_77666_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalForcer/createPortal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FF)V net/minecraft/world/level/portal/PortalInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FF)V +MD: net/minecraft/world/level/portal/PortalShape/ ()V net/minecraft/world/level/portal/PortalShape/ ()V +MD: net/minecraft/world/level/portal/PortalShape/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)V net/minecraft/world/level/portal/PortalShape/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/level/portal/PortalShape/m_257365_ (DLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/portal/PortalShape/lambda$findCollisionFreePosition$3 (DLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/portal/PortalShape/m_257963_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/portal/PortalShape/findCollisionFreePosition (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/portal/PortalShape/m_257966_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/world/level/portal/PortalShape/createPortalInfo (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/world/level/portal/PortalShape/m_77698_ ()Z net/minecraft/world/level/portal/PortalShape/isValid ()Z +MD: net/minecraft/world/level/portal/PortalShape/m_77708_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalShape/findEmptyPortalShape (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalShape/m_77712_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalShape/findPortalShape (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalShape/m_77717_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/portal/PortalShape/isEmpty (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77719_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/portal/PortalShape/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77723_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/portal/PortalShape/lambda$createPortalBlocks$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/portal/PortalShape/m_77726_ (Lnet/minecraft/world/level/portal/PortalShape;)Z net/minecraft/world/level/portal/PortalShape/lambda$findEmptyPortalShape$1 (Lnet/minecraft/world/level/portal/PortalShape;)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77728_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;)I net/minecraft/world/level/portal/PortalShape/getDistanceUntilTop (Lnet/minecraft/core/BlockPos$MutableBlockPos;)I +MD: net/minecraft/world/level/portal/PortalShape/m_77730_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z net/minecraft/world/level/portal/PortalShape/hasTopFrame (Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77733_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/portal/PortalShape/calculateBottomLeft (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/portal/PortalShape/m_77735_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/portal/PortalShape/getDistanceUntilEdgeAboveFrame (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/portal/PortalShape/m_77738_ (Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/portal/PortalShape/getRelativePosition (Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/portal/PortalShape/m_77743_ ()V net/minecraft/world/level/portal/PortalShape/createPortalBlocks ()V +MD: net/minecraft/world/level/portal/PortalShape/m_77744_ ()Z net/minecraft/world/level/portal/PortalShape/isComplete ()Z +MD: net/minecraft/world/level/portal/PortalShape/m_77745_ ()I net/minecraft/world/level/portal/PortalShape/calculateWidth ()I +MD: net/minecraft/world/level/portal/PortalShape/m_77746_ ()I net/minecraft/world/level/portal/PortalShape/calculateHeight ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/ ()V net/minecraft/world/level/redstone/CollectingNeighborUpdater/ ()V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/ (Lnet/minecraft/world/level/Level;I)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/ (Lnet/minecraft/world/level/Level;I)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_213547_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/shapeUpdate (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_213858_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_214026_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_214152_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_230645_ ()V net/minecraft/world/level/redstone/CollectingNeighborUpdater/runUpdates ()V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_230660_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/addAndRun (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230670_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230671_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230672_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/block ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230673_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/neighborPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230674_ ()Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/movedByPiston ()Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/hashCode ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/hashCode ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/toString ()Ljava/lang/String; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230703_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/direction ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230704_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230705_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230706_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/neighborPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230707_ ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateFlags ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_276599_ ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateLimit ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/hashCode ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/hashCode ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/toString ()Ljava/lang/String; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230725_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230726_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/block ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230727_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/neighborPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/hashCode ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/hashCode ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/toString ()Ljava/lang/String; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/redstone/InstantNeighborUpdater/ (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/m_213547_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/InstantNeighborUpdater/shapeUpdate (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/m_213858_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/InstantNeighborUpdater/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/m_214026_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/InstantNeighborUpdater/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/ ()V net/minecraft/world/level/redstone/NeighborUpdater/ ()V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_213547_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/NeighborUpdater/shapeUpdate (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_213858_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/NeighborUpdater/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_214026_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/NeighborUpdater/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_214152_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/redstone/NeighborUpdater/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_230763_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/NeighborUpdater/executeUpdate (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_230770_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/NeighborUpdater/executeShapeUpdate (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_257366_ (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; net/minecraft/world/level/redstone/NeighborUpdater/lambda$executeUpdate$0 (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; +MD: net/minecraft/world/level/redstone/Redstone/ ()V net/minecraft/world/level/redstone/Redstone/ ()V +MD: net/minecraft/world/level/saveddata/SavedData/ ()V net/minecraft/world/level/saveddata/SavedData/ ()V +MD: net/minecraft/world/level/saveddata/SavedData/ ()V net/minecraft/world/level/saveddata/SavedData/ ()V +MD: net/minecraft/world/level/saveddata/SavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/SavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/SavedData/m_77757_ (Ljava/io/File;)V net/minecraft/world/level/saveddata/SavedData/save (Ljava/io/File;)V +MD: net/minecraft/world/level/saveddata/SavedData/m_77760_ (Z)V net/minecraft/world/level/saveddata/SavedData/setDirty (Z)V +MD: net/minecraft/world/level/saveddata/SavedData/m_77762_ ()V net/minecraft/world/level/saveddata/SavedData/setDirty ()V +MD: net/minecraft/world/level/saveddata/SavedData/m_77764_ ()Z net/minecraft/world/level/saveddata/SavedData/isDirty ()Z +MD: net/minecraft/world/level/saveddata/maps/MapBanner/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/saveddata/maps/MapBanner/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/saveddata/maps/MapBanner/equals (Ljava/lang/Object;)Z net/minecraft/world/level/saveddata/maps/MapBanner/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/saveddata/maps/MapBanner/hashCode ()I net/minecraft/world/level/saveddata/maps/MapBanner/hashCode ()I +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_164759_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/saveddata/maps/MapBanner/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77773_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/saveddata/maps/MapBanner/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77774_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; net/minecraft/world/level/saveddata/maps/MapBanner/fromWorld (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77777_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; net/minecraft/world/level/saveddata/maps/MapBanner/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77782_ ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapBanner/getDecoration ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77783_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/saveddata/maps/MapBanner/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77784_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapBanner/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77787_ ()Ljava/lang/String; net/minecraft/world/level/saveddata/maps/MapBanner/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/saveddata/maps/MapBanner$1/ ()V net/minecraft/world/level/saveddata/maps/MapBanner$1/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BBBLnet/minecraft/network/chat/Component;)V net/minecraft/world/level/saveddata/maps/MapDecoration/ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BBBLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/saveddata/maps/MapDecoration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/hashCode ()I net/minecraft/world/level/saveddata/maps/MapDecoration/hashCode ()I +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77802_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getImage ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77803_ ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration/getType ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77804_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getX ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77805_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getY ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77806_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getRot ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77809_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration/renderOnFrame ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77810_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/saveddata/maps/MapDecoration/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ ()V net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZZ)V net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZIZ)V net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZIZ)V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_164760_ ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/$values ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_181306_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration$Type/shouldTrackCount ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77853_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration$Type/getIcon ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77854_ (B)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/byIcon (B)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77856_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration$Type/isRenderedOnFrame ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77857_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration$Type/hasMapColor ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77858_ ()I net/minecraft/world/level/saveddata/maps/MapDecoration$Type/getMapColor ()I +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/values ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/values ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/ (Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/saveddata/maps/MapFrame/ (Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77869_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapFrame/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77870_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/world/level/saveddata/maps/MapFrame/frameId (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77872_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapFrame; net/minecraft/world/level/saveddata/maps/MapFrame/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapFrame; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77874_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/saveddata/maps/MapFrame/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77875_ ()I net/minecraft/world/level/saveddata/maps/MapFrame/getRotation ()I +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77876_ ()I net/minecraft/world/level/saveddata/maps/MapFrame/getEntityId ()I +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77877_ ()Ljava/lang/String; net/minecraft/world/level/saveddata/maps/MapFrame/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/saveddata/maps/MapIndex/ ()V net/minecraft/world/level/saveddata/maps/MapIndex/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapIndex/m_164762_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapIndex; net/minecraft/world/level/saveddata/maps/MapIndex/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapIndex; +MD: net/minecraft/world/level/saveddata/maps/MapIndex/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapIndex/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapIndex/m_77880_ ()I net/minecraft/world/level/saveddata/maps/MapIndex/getFreeAuxValueForMap ()I +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/ ()V net/minecraft/world/level/saveddata/maps/MapItemSavedData/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/ (IIBZZZLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/ (IIBZZZLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164775_ ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/locked ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164776_ (BZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/createForClient (BZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164780_ (DDBZZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/createFresh (DDBZZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164787_ (I)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/scaled (I)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164789_ (II)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/setColorsDirty (II)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164792_ (IIB)Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/updateColor (IIB)Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164796_ (ILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getUpdatePacket (ILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164799_ (Ljava/lang/String;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/removeDecoration (Ljava/lang/String;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164801_ (Ljava/util/List;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/addClientSideDecorations (Ljava/util/List;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164803_ (IIB)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/setColor (IIB)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164807_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164809_ ()Ljava/util/Collection; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getBanners ()Ljava/util/Collection; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164810_ ()Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/isExplorationMap ()Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164811_ ()Ljava/lang/Iterable; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getDecorations ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164812_ ()V net/minecraft/world/level/saveddata/maps/MapItemSavedData/setDecorationsDirty ()V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_181312_ (I)Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/isTrackedCountOverLimit (I)Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapItemSavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77916_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getHoldingPlayer (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77918_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/tickCarriedBy (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77925_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/addTargetDecoration (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77930_ (Lnet/minecraft/world/level/BlockGetter;II)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/checkBanners (Lnet/minecraft/world/level/BlockGetter;II)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77934_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/toggleBanner (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77937_ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;Lnet/minecraft/world/level/LevelAccessor;Ljava/lang/String;DDDLnet/minecraft/network/chat/Component;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/addDecoration (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;Lnet/minecraft/world/level/LevelAccessor;Ljava/lang/String;DDDLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77947_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/removedFromFrame (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77952_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/lambda$save$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77957_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/saveddata/maps/MapItemSavedData/lambda$load$0 (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164814_ ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch; net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/createPatch ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164815_ (I)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/nextUpdatePacket (I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164817_ (II)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/markColorsDirty (II)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164820_ ()V net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/markDecorationsDirty ()V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/ (IIII[B)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/ (IIII[B)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/m_164832_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/applyToMap (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/world/level/storage/CommandStorage/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V net/minecraft/world/level/storage/CommandStorage/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V +MD: net/minecraft/world/level/storage/CommandStorage/m_164835_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/newStorage (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_164837_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/lambda$set$1 (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_164840_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/CommandStorage/lambda$keys$3 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/CommandStorage/m_164842_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/lambda$get$0 (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_164845_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/lambda$set$2 (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_78036_ ()Ljava/util/stream/Stream; net/minecraft/world/level/storage/CommandStorage/keys ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/CommandStorage/m_78037_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/storage/CommandStorage/createId (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/CommandStorage/m_78044_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/CommandStorage/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/CommandStorage/m_78046_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/CommandStorage/set (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/CommandStorage$Container/ ()V net/minecraft/world/level/storage/CommandStorage$Container/ ()V +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_164849_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage$Container/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/CommandStorage$Container/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78058_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/CommandStorage$Container/get (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78060_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/CommandStorage$Container/lambda$getKeys$1 (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78063_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/CommandStorage$Container/put (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78068_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/CommandStorage$Container/lambda$save$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78072_ (Ljava/lang/String;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/CommandStorage$Container/getKeys (Ljava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/DataVersion/ ()V net/minecraft/world/level/storage/DataVersion/ ()V +MD: net/minecraft/world/level/storage/DataVersion/ (I)V net/minecraft/world/level/storage/DataVersion/ (I)V +MD: net/minecraft/world/level/storage/DataVersion/ (ILjava/lang/String;)V net/minecraft/world/level/storage/DataVersion/ (ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/DataVersion/m_193002_ ()Z net/minecraft/world/level/storage/DataVersion/isSideSeries ()Z +MD: net/minecraft/world/level/storage/DataVersion/m_193003_ (Lnet/minecraft/world/level/storage/DataVersion;)Z net/minecraft/world/level/storage/DataVersion/isCompatible (Lnet/minecraft/world/level/storage/DataVersion;)Z +MD: net/minecraft/world/level/storage/DataVersion/m_193005_ ()Ljava/lang/String; net/minecraft/world/level/storage/DataVersion/getSeries ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/DataVersion/m_193006_ ()I net/minecraft/world/level/storage/DataVersion/getVersion ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/ (Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/world/level/storage/ServerLevelData;)V net/minecraft/world/level/storage/DerivedLevelData/ (Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/world/level/storage/ServerLevelData;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_142403_ ()Ljava/util/UUID; net/minecraft/world/level/storage/DerivedLevelData/getWanderingTraderId ()Ljava/util/UUID; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/DerivedLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/DerivedLevelData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/DerivedLevelData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/DerivedLevelData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5466_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isHardcore ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5468_ ()Z net/minecraft/world/level/storage/DerivedLevelData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/DerivedLevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/DerivedLevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5474_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5555_ (Z)V net/minecraft/world/level/storage/DerivedLevelData/setInitialized (Z)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5557_ (Z)V net/minecraft/world/level/storage/DerivedLevelData/setThundering (Z)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5565_ (Z)V net/minecraft/world/level/storage/DerivedLevelData/setRaining (Z)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5813_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/storage/DerivedLevelData/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6247_ (J)V net/minecraft/world/level/storage/DerivedLevelData/setDayTime (J)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6253_ (J)V net/minecraft/world/level/storage/DerivedLevelData/setGameTime (J)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6387_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setWanderingTraderSpawnChance (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6391_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setWanderingTraderSpawnDelay (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6393_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setClearWeatherTime (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6395_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setXSpawn (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6397_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setYSpawn (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6398_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setThunderTime (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6399_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setRainTime (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6400_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setZSpawn (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6526_ ()I net/minecraft/world/level/storage/DerivedLevelData/getZSpawn ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6527_ ()I net/minecraft/world/level/storage/DerivedLevelData/getYSpawn ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6528_ ()I net/minecraft/world/level/storage/DerivedLevelData/getWanderingTraderSpawnChance ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6530_ ()I net/minecraft/world/level/storage/DerivedLevelData/getWanderingTraderSpawnDelay ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6531_ ()I net/minecraft/world/level/storage/DerivedLevelData/getRainTime ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6533_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isRaining ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6534_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isThundering ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6535_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isInitialized ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6537_ ()I net/minecraft/world/level/storage/DerivedLevelData/getClearWeatherTime ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6558_ ()I net/minecraft/world/level/storage/DerivedLevelData/getThunderTime ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6789_ ()I net/minecraft/world/level/storage/DerivedLevelData/getXSpawn ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6790_ ()F net/minecraft/world/level/storage/DerivedLevelData/getSpawnAngle ()F +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6792_ ()J net/minecraft/world/level/storage/DerivedLevelData/getDayTime ()J +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6793_ ()J net/minecraft/world/level/storage/DerivedLevelData/getGameTime ()J +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7113_ (F)V net/minecraft/world/level/storage/DerivedLevelData/setSpawnAngle (F)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/storage/DerivedLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7540_ ()Lnet/minecraft/world/level/timers/TimerQueue; net/minecraft/world/level/storage/DerivedLevelData/getScheduledEvents ()Lnet/minecraft/world/level/timers/TimerQueue; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7831_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/storage/DerivedLevelData/setWorldBorder (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_8115_ (Ljava/util/UUID;)V net/minecraft/world/level/storage/DerivedLevelData/setWanderingTraderId (Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/ ()V net/minecraft/world/level/storage/DimensionDataStorage/ ()V +MD: net/minecraft/world/level/storage/DimensionDataStorage/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/storage/DimensionDataStorage/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164855_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V net/minecraft/world/level/storage/DimensionDataStorage/set (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164858_ (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; net/minecraft/world/level/storage/DimensionDataStorage/get (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164861_ (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; net/minecraft/world/level/storage/DimensionDataStorage/computeIfAbsent (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164865_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V net/minecraft/world/level/storage/DimensionDataStorage/lambda$save$0 (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164868_ (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; net/minecraft/world/level/storage/DimensionDataStorage/readSavedData (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78151_ ()V net/minecraft/world/level/storage/DimensionDataStorage/save ()V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78154_ (Ljava/io/PushbackInputStream;)Z net/minecraft/world/level/storage/DimensionDataStorage/isGzip (Ljava/io/PushbackInputStream;)Z +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78156_ (Ljava/lang/String;)Ljava/io/File; net/minecraft/world/level/storage/DimensionDataStorage/getDataFile (Ljava/lang/String;)Ljava/io/File; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78158_ (Ljava/lang/String;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/DimensionDataStorage/readTagFromDisk (Ljava/lang/String;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/LevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/LevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/LevelData/m_164871_ (Lnet/minecraft/world/level/LevelHeightAccessor;)Ljava/lang/String; net/minecraft/world/level/storage/LevelData/lambda$fillCrashReportCategory$0 (Lnet/minecraft/world/level/LevelHeightAccessor;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelData/m_241764_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelData/lambda$fillCrashReportCategory$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelData/m_5466_ ()Z net/minecraft/world/level/storage/LevelData/isHardcore ()Z +MD: net/minecraft/world/level/storage/LevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/LevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/LevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/LevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/LevelData/m_5474_ ()Z net/minecraft/world/level/storage/LevelData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/LevelData/m_5565_ (Z)V net/minecraft/world/level/storage/LevelData/setRaining (Z)V +MD: net/minecraft/world/level/storage/LevelData/m_6526_ ()I net/minecraft/world/level/storage/LevelData/getZSpawn ()I +MD: net/minecraft/world/level/storage/LevelData/m_6527_ ()I net/minecraft/world/level/storage/LevelData/getYSpawn ()I +MD: net/minecraft/world/level/storage/LevelData/m_6533_ ()Z net/minecraft/world/level/storage/LevelData/isRaining ()Z +MD: net/minecraft/world/level/storage/LevelData/m_6534_ ()Z net/minecraft/world/level/storage/LevelData/isThundering ()Z +MD: net/minecraft/world/level/storage/LevelData/m_6789_ ()I net/minecraft/world/level/storage/LevelData/getXSpawn ()I +MD: net/minecraft/world/level/storage/LevelData/m_6790_ ()F net/minecraft/world/level/storage/LevelData/getSpawnAngle ()F +MD: net/minecraft/world/level/storage/LevelData/m_6792_ ()J net/minecraft/world/level/storage/LevelData/getDayTime ()J +MD: net/minecraft/world/level/storage/LevelData/m_6793_ ()J net/minecraft/world/level/storage/LevelData/getGameTime ()J +MD: net/minecraft/world/level/storage/LevelResource/ ()V net/minecraft/world/level/storage/LevelResource/ ()V +MD: net/minecraft/world/level/storage/LevelResource/ (Ljava/lang/String;)V net/minecraft/world/level/storage/LevelResource/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/LevelResource/m_78187_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelResource/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelResource/toString ()Ljava/lang/String; net/minecraft/world/level/storage/LevelResource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageException/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/storage/LevelStorageException/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/storage/LevelStorageException/m_230806_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelStorageException/getMessageComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelStorageSource/ ()V net/minecraft/world/level/storage/LevelStorageSource/ ()V +MD: net/minecraft/world/level/storage/LevelStorageSource/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/validation/DirectoryValidator;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/storage/LevelStorageSource/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/validation/DirectoryValidator;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/storage/LevelStorageSource/m_164909_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230813_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/LevelStorageSource/loadLevelSummaries (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230815_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Lnet/minecraft/world/level/storage/LevelSummary; net/minecraft/world/level/storage/LevelStorageSource/lambda$loadLevelSummaries$2 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Lnet/minecraft/world/level/storage/LevelSummary; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230817_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Ljava/util/function/BiFunction;)Ljava/lang/Object; net/minecraft/world/level/storage/LevelStorageSource/readLevelData (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Ljava/util/function/BiFunction;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230820_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Z)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/LevelStorageSource/levelSummaryReader (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Z)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230828_ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/LevelStorageSource/getDataConfiguration (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230831_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/storage/LevelStorageSource/lambda$loadLevelSummaries$3 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230833_ ()Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates; net/minecraft/world/level/storage/LevelStorageSource/findLevelCandidates ()Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230834_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Z net/minecraft/world/level/storage/LevelStorageSource/lambda$findLevelCandidates$1 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230836_ (Ljava/nio/file/Path;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/LevelStorageSource/readLightweightData (Ljava/nio/file/Path;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230838_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/storage/LevelStorageSource/lambda$findLevelCandidates$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245030_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/LevelStorageSource/lambda$parseFeatureFlagsFromSummary$6 (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245033_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/LevelStorageSource/lambda$parseFeatureFlagsFromSummary$7 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245503_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/LevelStorageSource/getLevelData (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245610_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/LevelStorageSource/readDataConfig (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_247076_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/storage/LevelStorageSource/parseFeatureFlagsFromSummary (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_247212_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;I)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/storage/LevelStorageSource/readWorldGenSettings (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_264027_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/storage/LevelStorageSource/lambda$getLevelData$4 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289842_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;ZLjava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/storage/LevelSummary; net/minecraft/world/level/storage/LevelStorageSource/lambda$levelSummaryReader$5 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;ZLjava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/storage/LevelSummary; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289863_ ()Lnet/minecraft/world/level/validation/DirectoryValidator; net/minecraft/world/level/storage/LevelStorageSource/getWorldDirValidator ()Lnet/minecraft/world/level/validation/DirectoryValidator; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289864_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; net/minecraft/world/level/storage/LevelStorageSource/validateAndCreateAccess (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289874_ (Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource/getLevelPath (Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289881_ (Ljava/nio/file/Path;)Lnet/minecraft/world/level/validation/DirectoryValidator; net/minecraft/world/level/storage/LevelStorageSource/parseValidator (Ljava/nio/file/Path;)Lnet/minecraft/world/level/validation/DirectoryValidator; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78240_ (Ljava/lang/String;)Z net/minecraft/world/level/storage/LevelStorageSource/isNewLevelIdAcceptable (Ljava/lang/String;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78242_ (Ljava/nio/file/Path;)Lnet/minecraft/world/level/storage/LevelStorageSource; net/minecraft/world/level/storage/LevelStorageSource/createDefault (Ljava/nio/file/Path;)Lnet/minecraft/world/level/storage/LevelStorageSource; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78255_ (Ljava/lang/String;)Z net/minecraft/world/level/storage/LevelStorageSource/levelExists (Ljava/lang/String;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78257_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource/getBaseDir ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78260_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; net/minecraft/world/level/storage/LevelStorageSource/createAccess (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78262_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource/getBackupPath ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78265_ ()I net/minecraft/world/level/storage/LevelStorageSource/getStorageVersion ()I +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/ (Ljava/util/List;)V net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/ (Ljava/util/List;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/f_230840_ ()Ljava/util/List; net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/levels ()Ljava/util/List; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/hashCode ()I net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/hashCode ()I +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/iterator ()Ljava/util/Iterator; net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/iterator ()Ljava/util/Iterator; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/m_230843_ ()Z net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/isEmpty ()Z +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/toString ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/ (Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/ (Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/f_230850_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/path ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/hashCode ()I net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/hashCode ()I +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230853_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/directoryName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230854_ (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/resourcePath (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230856_ (Ljava/time/LocalDateTime;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/corruptedDataFile (Ljava/time/LocalDateTime;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230858_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/dataFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230859_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/oldDataFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230860_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/iconFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230861_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/lockFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/toString ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/ (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/ (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/close ()V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/close ()V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_182514_ ()Ljava/util/Optional; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getIconFile ()Ljava/util/Optional; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_197394_ (Lnet/minecraft/resources/ResourceKey;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getDimensionPath (Lnet/minecraft/resources/ResourceKey;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_246049_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getDataTag (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_247706_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78277_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getLevelId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78283_ (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getLevelPath (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78287_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/saveDataTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78290_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/saveDataTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78297_ (Ljava/lang/String;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/renameLevel (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78301_ ()Lnet/minecraft/world/level/storage/PlayerDataStorage; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/createPlayerStorage ()Lnet/minecraft/world/level/storage/PlayerDataStorage; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78308_ ()Lnet/minecraft/world/level/storage/LevelSummary; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getSummary ()Lnet/minecraft/world/level/storage/LevelSummary; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78311_ ()V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/deleteLevel ()V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78312_ ()J net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/makeWorldBackup ()J +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78313_ ()V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/checkLock ()V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/nio/file/Path;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/nio/file/Path;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;Ljava/util/zip/ZipOutputStream;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;Ljava/util/zip/ZipOutputStream;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelSummary/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Ljava/lang/String;ZZZLjava/nio/file/Path;)V net/minecraft/world/level/storage/LevelSummary/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Ljava/lang/String;ZZZLjava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelSummary/compareTo (Lnet/minecraft/world/level/storage/LevelSummary;)I net/minecraft/world/level/storage/LevelSummary/compareTo (Lnet/minecraft/world/level/storage/LevelSummary;)I +MD: net/minecraft/world/level/storage/LevelSummary/compareTo (Ljava/lang/Object;)I net/minecraft/world/level/storage/LevelSummary/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/level/storage/LevelSummary/m_164913_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/storage/LevelSummary/getSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/storage/LevelSummary/m_164914_ ()Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary/backupStatus ()Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary/m_164916_ ()Z net/minecraft/world/level/storage/LevelSummary/isDisabled ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_193020_ ()Z net/minecraft/world/level/storage/LevelSummary/requiresManualConversion ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_193021_ ()Z net/minecraft/world/level/storage/LevelSummary/isCompatible ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_230875_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelSummary/getIcon ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelSummary/m_246454_ ()Z net/minecraft/world/level/storage/LevelSummary/isExperimental ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_264381_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/level/storage/LevelSummary/lambda$createInfo$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/level/storage/LevelSummary/m_78358_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary/getLevelId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary/m_78361_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary/m_78366_ ()J net/minecraft/world/level/storage/LevelSummary/getLastPlayed ()J +MD: net/minecraft/world/level/storage/LevelSummary/m_78367_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/LevelSummary/getGameMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/LevelSummary/m_78368_ ()Z net/minecraft/world/level/storage/LevelSummary/isHardcore ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78369_ ()Z net/minecraft/world/level/storage/LevelSummary/hasCheats ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78370_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/level/storage/LevelSummary/getWorldVersionName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/level/storage/LevelSummary/m_78371_ ()Lnet/minecraft/world/level/storage/LevelVersion; net/minecraft/world/level/storage/LevelSummary/levelVersion ()Lnet/minecraft/world/level/storage/LevelVersion; +MD: net/minecraft/world/level/storage/LevelSummary/m_78372_ ()Z net/minecraft/world/level/storage/LevelSummary/markVersionInList ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78373_ ()Z net/minecraft/world/level/storage/LevelSummary/askToOpenWorld ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78375_ ()Z net/minecraft/world/level/storage/LevelSummary/isLocked ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78376_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelSummary/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelSummary/m_78377_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelSummary/createInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/ ()V net/minecraft/world/level/storage/LevelSummary$BackupStatus/ ()V +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/ (Ljava/lang/String;IZZLjava/lang/String;)V net/minecraft/world/level/storage/LevelSummary$BackupStatus/ (Ljava/lang/String;IZZLjava/lang/String;)V +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164931_ ()Z net/minecraft/world/level/storage/LevelSummary$BackupStatus/shouldBackup ()Z +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164932_ ()Z net/minecraft/world/level/storage/LevelSummary$BackupStatus/isSevere ()Z +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164933_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary$BackupStatus/getTranslationKey ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164934_ ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary$BackupStatus/$values ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary$BackupStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/values ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary$BackupStatus/values ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/ (Ljava/lang/String;Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/ (Ljava/lang/String;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/compareTo (Ljava/lang/Object;)I net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_164916_ ()Z net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/isDisabled ()Z +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_289857_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/lambda$getInfo$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_78361_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_78366_ ()J net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/getLastPlayed ()J +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_78376_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelVersion/ (IJLjava/lang/String;ILjava/lang/String;Z)V net/minecraft/world/level/storage/LevelVersion/ (IJLjava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/world/level/storage/LevelVersion/m_193029_ ()Lnet/minecraft/world/level/storage/DataVersion; net/minecraft/world/level/storage/LevelVersion/minecraftVersion ()Lnet/minecraft/world/level/storage/DataVersion; +MD: net/minecraft/world/level/storage/LevelVersion/m_78389_ ()I net/minecraft/world/level/storage/LevelVersion/levelDataVersion ()I +MD: net/minecraft/world/level/storage/LevelVersion/m_78390_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/storage/LevelVersion; net/minecraft/world/level/storage/LevelVersion/parse (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/storage/LevelVersion; +MD: net/minecraft/world/level/storage/LevelVersion/m_78392_ ()J net/minecraft/world/level/storage/LevelVersion/lastPlayed ()J +MD: net/minecraft/world/level/storage/LevelVersion/m_78393_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelVersion/minecraftVersionName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelVersion/m_78395_ ()Z net/minecraft/world/level/storage/LevelVersion/snapshot ()Z +MD: net/minecraft/world/level/storage/PlayerDataStorage/ ()V net/minecraft/world/level/storage/PlayerDataStorage/ ()V +MD: net/minecraft/world/level/storage/PlayerDataStorage/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/storage/PlayerDataStorage/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/storage/PlayerDataStorage/m_78432_ ()[Ljava/lang/String; net/minecraft/world/level/storage/PlayerDataStorage/getSeenPlayers ()[Ljava/lang/String; +MD: net/minecraft/world/level/storage/PlayerDataStorage/m_78433_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/storage/PlayerDataStorage/save (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/storage/PlayerDataStorage/m_78435_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PlayerDataStorage/load (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/ ()V net/minecraft/world/level/storage/PrimaryLevelData/ ()V +MD: net/minecraft/world/level/storage/PrimaryLevelData/ (Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;ZIIIFJJIIIZIZZZLnet/minecraft/world/level/border/WorldBorder$Settings;IILjava/util/UUID;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/timers/TimerQueue;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/world/level/storage/PrimaryLevelData/ (Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;ZIIIFJJIIIZIZZZLnet/minecraft/world/level/border/WorldBorder$Settings;IILjava/util/UUID;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/timers/TimerQueue;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/world/level/storage/PrimaryLevelData/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_142403_ ()Ljava/util/UUID; net/minecraft/world/level/storage/PrimaryLevelData/getWanderingTraderId ()Ljava/util/UUID; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/PrimaryLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_245034_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/PrimaryLevelData/lambda$setTagData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_245035_ (Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/world/level/storage/PrimaryLevelData/lambda$setTagData$4 (Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_245843_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/world/level/storage/PrimaryLevelData/setDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_246337_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/storage/PrimaryLevelData/worldGenOptions ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_276762_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/PrimaryLevelData/lambda$parse$1 (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_276907_ ()Ljava/util/Set; net/minecraft/world/level/storage/PrimaryLevelData/getRemovedFeatureFlags ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_277055_ (Ljava/util/Set;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/storage/PrimaryLevelData/stringCollectionToTag (Ljava/util/Set;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/PrimaryLevelData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/PrimaryLevelData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/PrimaryLevelData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5466_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isHardcore ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5468_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/PrimaryLevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/PrimaryLevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5474_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5555_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setInitialized (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5557_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setThundering (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5560_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setDifficultyLocked (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5565_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setRaining (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5754_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/storage/PrimaryLevelData/worldGenSettingsLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5813_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/storage/PrimaryLevelData/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5915_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V net/minecraft/world/level/storage/PrimaryLevelData/setEndDragonFightData (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5917_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/PrimaryLevelData/setCustomBossEvents (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5926_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/storage/PrimaryLevelData/getLevelSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5961_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isFlatWorld ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5996_ ()Lnet/minecraft/world/level/storage/ServerLevelData; net/minecraft/world/level/storage/PrimaryLevelData/overworldData ()Lnet/minecraft/world/level/storage/ServerLevelData; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6161_ ()Ljava/util/Set; net/minecraft/world/level/storage/PrimaryLevelData/getKnownServerBrands ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6166_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/world/level/storage/PrimaryLevelData/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6247_ (J)V net/minecraft/world/level/storage/PrimaryLevelData/setDayTime (J)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6253_ (J)V net/minecraft/world/level/storage/PrimaryLevelData/setGameTime (J)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6387_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setWanderingTraderSpawnChance (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6391_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setWanderingTraderSpawnDelay (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6393_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setClearWeatherTime (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6395_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setXSpawn (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6397_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setYSpawn (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6398_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setThunderTime (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6399_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setRainTime (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6400_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setZSpawn (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6517_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getVersion ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6526_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getZSpawn ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6527_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getYSpawn ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6528_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getWanderingTraderSpawnChance ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6530_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getWanderingTraderSpawnDelay ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6531_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getRainTime ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6533_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isRaining ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6534_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isThundering ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6535_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isInitialized ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6537_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getClearWeatherTime ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6558_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getThunderTime ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6564_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; net/minecraft/world/level/storage/PrimaryLevelData/endDragonFightData ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6565_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/wasModded ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6587_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PrimaryLevelData/getCustomBossEvents ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6614_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PrimaryLevelData/getLoadedPlayerTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6626_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PrimaryLevelData/createTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6645_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/PrimaryLevelData/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6789_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getXSpawn ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6790_ ()F net/minecraft/world/level/storage/PrimaryLevelData/getSpawnAngle ()F +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6792_ ()J net/minecraft/world/level/storage/PrimaryLevelData/getDayTime ()J +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6793_ ()J net/minecraft/world/level/storage/PrimaryLevelData/getGameTime ()J +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7113_ (F)V net/minecraft/world/level/storage/PrimaryLevelData/setSpawnAngle (F)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/storage/PrimaryLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7513_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isDebugWorld ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7540_ ()Lnet/minecraft/world/level/timers/TimerQueue; net/minecraft/world/level/storage/PrimaryLevelData/getScheduledEvents ()Lnet/minecraft/world/level/timers/TimerQueue; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7831_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/storage/PrimaryLevelData/setWorldBorder (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78512_ ()V net/minecraft/world/level/storage/PrimaryLevelData/updatePlayerTag ()V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78528_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/PrimaryLevelData/lambda$parse$0 (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78530_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/world/level/levelgen/WorldOptions;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/world/level/storage/PrimaryLevelData; net/minecraft/world/level/storage/PrimaryLevelData/parse (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/world/level/levelgen/WorldOptions;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/world/level/storage/PrimaryLevelData; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78545_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/PrimaryLevelData/setTagData (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78572_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/PrimaryLevelData/lambda$setTagData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7955_ (Ljava/lang/String;Z)V net/minecraft/world/level/storage/PrimaryLevelData/setModdedInfo (Ljava/lang/String;Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_8115_ (Ljava/util/UUID;)V net/minecraft/world/level/storage/PrimaryLevelData/setWanderingTraderId (Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ ()V net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ ()V +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ (Ljava/lang/String;I)V net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/m_245155_ ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/$values ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/values ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/values ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/storage/ServerLevelData/m_142403_ ()Ljava/util/UUID; net/minecraft/world/level/storage/ServerLevelData/getWanderingTraderId ()Ljava/util/UUID; +MD: net/minecraft/world/level/storage/ServerLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/ServerLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_241765_ ()Ljava/lang/String; net/minecraft/world/level/storage/ServerLevelData/lambda$fillCrashReportCategory$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/ServerLevelData/m_241766_ ()Ljava/lang/String; net/minecraft/world/level/storage/ServerLevelData/lambda$fillCrashReportCategory$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/ServerLevelData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/ServerLevelData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/ServerLevelData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/ServerLevelData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/ServerLevelData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/ServerLevelData/m_5468_ ()Z net/minecraft/world/level/storage/ServerLevelData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/ServerLevelData/m_5555_ (Z)V net/minecraft/world/level/storage/ServerLevelData/setInitialized (Z)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_5557_ (Z)V net/minecraft/world/level/storage/ServerLevelData/setThundering (Z)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_5813_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/storage/ServerLevelData/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/storage/ServerLevelData/m_6247_ (J)V net/minecraft/world/level/storage/ServerLevelData/setDayTime (J)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6253_ (J)V net/minecraft/world/level/storage/ServerLevelData/setGameTime (J)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6387_ (I)V net/minecraft/world/level/storage/ServerLevelData/setWanderingTraderSpawnChance (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6391_ (I)V net/minecraft/world/level/storage/ServerLevelData/setWanderingTraderSpawnDelay (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6393_ (I)V net/minecraft/world/level/storage/ServerLevelData/setClearWeatherTime (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6398_ (I)V net/minecraft/world/level/storage/ServerLevelData/setThunderTime (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6399_ (I)V net/minecraft/world/level/storage/ServerLevelData/setRainTime (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6528_ ()I net/minecraft/world/level/storage/ServerLevelData/getWanderingTraderSpawnChance ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6530_ ()I net/minecraft/world/level/storage/ServerLevelData/getWanderingTraderSpawnDelay ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6531_ ()I net/minecraft/world/level/storage/ServerLevelData/getRainTime ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6535_ ()Z net/minecraft/world/level/storage/ServerLevelData/isInitialized ()Z +MD: net/minecraft/world/level/storage/ServerLevelData/m_6537_ ()I net/minecraft/world/level/storage/ServerLevelData/getClearWeatherTime ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6558_ ()I net/minecraft/world/level/storage/ServerLevelData/getThunderTime ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_7540_ ()Lnet/minecraft/world/level/timers/TimerQueue; net/minecraft/world/level/storage/ServerLevelData/getScheduledEvents ()Lnet/minecraft/world/level/timers/TimerQueue; +MD: net/minecraft/world/level/storage/ServerLevelData/m_7831_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/storage/ServerLevelData/setWorldBorder (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_8115_ (Ljava/util/UUID;)V net/minecraft/world/level/storage/ServerLevelData/setWanderingTraderId (Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/WorldData/m_241767_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_245843_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/world/level/storage/WorldData/setDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/world/level/storage/WorldData/m_246337_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/storage/WorldData/worldGenOptions ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/storage/WorldData/m_247623_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/storage/WorldData/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/storage/WorldData/m_276763_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_276907_ ()Ljava/util/Set; net/minecraft/world/level/storage/WorldData/getRemovedFeatureFlags ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/WorldData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/WorldData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/WorldData/m_5461_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/level/storage/WorldData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/level/storage/WorldData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/WorldData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/WorldData/m_5466_ ()Z net/minecraft/world/level/storage/WorldData/isHardcore ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5468_ ()Z net/minecraft/world/level/storage/WorldData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/WorldData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/WorldData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/WorldData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/WorldData/m_5474_ ()Z net/minecraft/world/level/storage/WorldData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5560_ (Z)V net/minecraft/world/level/storage/WorldData/setDifficultyLocked (Z)V +MD: net/minecraft/world/level/storage/WorldData/m_5754_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/storage/WorldData/worldGenSettingsLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/storage/WorldData/m_5915_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V net/minecraft/world/level/storage/WorldData/setEndDragonFightData (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V +MD: net/minecraft/world/level/storage/WorldData/m_5917_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/WorldData/setCustomBossEvents (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/WorldData/m_5926_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/storage/WorldData/getLevelSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/storage/WorldData/m_5961_ ()Z net/minecraft/world/level/storage/WorldData/isFlatWorld ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5996_ ()Lnet/minecraft/world/level/storage/ServerLevelData; net/minecraft/world/level/storage/WorldData/overworldData ()Lnet/minecraft/world/level/storage/ServerLevelData; +MD: net/minecraft/world/level/storage/WorldData/m_6161_ ()Ljava/util/Set; net/minecraft/world/level/storage/WorldData/getKnownServerBrands ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/WorldData/m_6166_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/world/level/storage/WorldData/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/world/level/storage/WorldData/m_6517_ ()I net/minecraft/world/level/storage/WorldData/getVersion ()I +MD: net/minecraft/world/level/storage/WorldData/m_6564_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; net/minecraft/world/level/storage/WorldData/endDragonFightData ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +MD: net/minecraft/world/level/storage/WorldData/m_6565_ ()Z net/minecraft/world/level/storage/WorldData/wasModded ()Z +MD: net/minecraft/world/level/storage/WorldData/m_6587_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/WorldData/getCustomBossEvents ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/WorldData/m_6614_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/WorldData/getLoadedPlayerTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/WorldData/m_6626_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/WorldData/createTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/WorldData/m_6645_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/WorldData/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/WorldData/m_7513_ ()Z net/minecraft/world/level/storage/WorldData/isDebugWorld ()Z +MD: net/minecraft/world/level/storage/WorldData/m_78642_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$2 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_78644_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_78646_ (I)Ljava/lang/String; net/minecraft/world/level/storage/WorldData/getStorageVersionName (I)Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_7955_ (Ljava/lang/String;Z)V net/minecraft/world/level/storage/WorldData/setModdedInfo (Ljava/lang/String;Z)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_6395_ (I)V net/minecraft/world/level/storage/WritableLevelData/setXSpawn (I)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_6397_ (I)V net/minecraft/world/level/storage/WritableLevelData/setYSpawn (I)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_6400_ (I)V net/minecraft/world/level/storage/WritableLevelData/setZSpawn (I)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_7113_ (F)V net/minecraft/world/level/storage/WritableLevelData/setSpawnAngle (F)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/storage/WritableLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/m_78766_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/BuiltInLootTables/all ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/m_78767_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/BuiltInLootTables/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/m_78769_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/BuiltInLootTables/register (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/Deserializers/ ()V net/minecraft/world/level/storage/loot/Deserializers/ ()V +MD: net/minecraft/world/level/storage/loot/Deserializers/m_78798_ ()Lcom/google/gson/GsonBuilder; net/minecraft/world/level/storage/loot/Deserializers/createConditionSerializer ()Lcom/google/gson/GsonBuilder; +MD: net/minecraft/world/level/storage/loot/Deserializers/m_78799_ ()Lcom/google/gson/GsonBuilder; net/minecraft/world/level/storage/loot/Deserializers/createFunctionSerializer ()Lcom/google/gson/GsonBuilder; +MD: net/minecraft/world/level/storage/loot/Deserializers/m_78800_ ()Lcom/google/gson/GsonBuilder; net/minecraft/world/level/storage/loot/Deserializers/createLootTableSerializer ()Lcom/google/gson/GsonBuilder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory/ ()V net/minecraft/world/level/storage/loot/GsonAdapterFactory/ ()V +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory/m_78801_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; net/minecraft/world/level/storage/loot/GsonAdapterFactory/builder (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/m_164984_ (Lnet/minecraft/world/level/storage/loot/SerializerType;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/withDefaultType (Lnet/minecraft/world/level/storage/loot/SerializerType;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/m_164986_ (Lnet/minecraft/world/level/storage/loot/SerializerType;Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/withInlineSerializer (Lnet/minecraft/world/level/storage/loot/SerializerType;Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/m_78822_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/build ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Lnet/minecraft/world/level/storage/loot/SerializerType;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Lnet/minecraft/world/level/storage/loot/SerializerType;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/IntRange/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/IntRange/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/IntRange/m_165008_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/IntRange/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165009_ (I)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/exact (I)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165011_ (II)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/range (II)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165014_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/clamp (Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165017_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$5 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165021_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$7 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165026_ (I)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/lowerBound (I)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165028_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/test (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165031_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$4 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165035_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$6 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165040_ (I)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/upperBound (I)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165042_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$1 (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165045_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$3 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165049_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$0 (Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165052_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$2 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange$IntChecker/m_165056_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange$IntChecker/test (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange$IntLimiter/m_165059_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange$IntLimiter/apply (Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/ ()V net/minecraft/world/level/storage/loot/IntRange$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/IntRange;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/IntRange;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootContext/ (Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V net/minecraft/world/level/storage/loot/LootContext/ (Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V +MD: net/minecraft/world/level/storage/loot/LootContext/m_165124_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext/getParam (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext/m_230907_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/storage/loot/LootContext/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278628_ (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z net/minecraft/world/level/storage/loot/LootContext/hasVisitedElement (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z +MD: net/minecraft/world/level/storage/loot/LootContext/m_278639_ (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)V net/minecraft/world/level/storage/loot/LootContext/popVisitedElement (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)V +MD: net/minecraft/world/level/storage/loot/LootContext/m_278643_ ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; net/minecraft/world/level/storage/loot/LootContext/getResolver ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278759_ (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z net/minecraft/world/level/storage/loot/LootContext/pushVisitedElement (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z +MD: net/minecraft/world/level/storage/loot/LootContext/m_278785_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; net/minecraft/world/level/storage/loot/LootContext/createVisitedEntry (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278811_ (Lnet/minecraft/world/level/storage/loot/LootTable;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; net/minecraft/world/level/storage/loot/LootContext/createVisitedEntry (Lnet/minecraft/world/level/storage/loot/LootTable;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278853_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; net/minecraft/world/level/storage/loot/LootContext/createVisitedEntry (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +MD: net/minecraft/world/level/storage/loot/LootContext/m_78936_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z net/minecraft/world/level/storage/loot/LootContext/hasParam (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z +MD: net/minecraft/world/level/storage/loot/LootContext/m_78942_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootContext/addDynamicDrops (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootContext/m_78945_ ()F net/minecraft/world/level/storage/loot/LootContext/getLuck ()F +MD: net/minecraft/world/level/storage/loot/LootContext/m_78952_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootContext/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootContext/m_78953_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext/getParamOrNull (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/ (Lnet/minecraft/world/level/storage/loot/LootParams;)V net/minecraft/world/level/storage/loot/LootContext$Builder/ (Lnet/minecraft/world/level/storage/loot/LootParams;)V +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/m_287259_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/world/level/storage/loot/LootContext$Builder/create (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/m_78962_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootContext$Builder/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/m_78965_ (J)Lnet/minecraft/world/level/storage/loot/LootContext$Builder; net/minecraft/world/level/storage/loot/LootContext$Builder/withOptionalRandomSeed (J)Lnet/minecraft/world/level/storage/loot/LootContext$Builder; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ ()V net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ ()V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/m_165126_ ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/$values ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/m_79003_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/getParam ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/m_79006_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/getByName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/values ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/values ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/ ()V net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278374_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/value ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278478_ ()Lnet/minecraft/world/level/storage/loot/LootDataType; net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/type ()Lnet/minecraft/world/level/storage/loot/LootDataType; +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/hashCode ()I net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/hashCode ()I +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/LootContextUser/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootContextUser/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootContextUser/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/LootContextUser/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/LootDataId/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/LootDataId/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/LootDataId/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/LootDataId/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/LootDataId/f_278383_ ()Lnet/minecraft/world/level/storage/loot/LootDataType; net/minecraft/world/level/storage/loot/LootDataId/type ()Lnet/minecraft/world/level/storage/loot/LootDataType; +MD: net/minecraft/world/level/storage/loot/LootDataId/f_278500_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/LootDataId/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/LootDataId/hashCode ()I net/minecraft/world/level/storage/loot/LootDataId/hashCode ()I +MD: net/minecraft/world/level/storage/loot/LootDataId/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/LootDataId/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/LootDataManager/ ()V net/minecraft/world/level/storage/loot/LootDataManager/ ()V +MD: net/minecraft/world/level/storage/loot/LootDataManager/ ()V net/minecraft/world/level/storage/loot/LootDataManager/ ()V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278621_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/castAndValidate (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278638_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/lambda$reload$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278659_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$9 (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278660_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$scheduleElementParse$5 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataManager/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278668_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$scheduleElementParse$3 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278675_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278704_ ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/LootDataManager/createComposite ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278706_ (Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/Collection; net/minecraft/world/level/storage/loot/LootDataManager/getKeys (Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/Collection; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278719_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$8 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278729_ (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$7 (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278738_ (Ljava/util/Map;Ljava/lang/Void;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$reload$2 (Ljava/util/Map;Ljava/lang/Void;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278755_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/LootDataManager/createComposite ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278787_ (Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager/apply (Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278800_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/scheduleElementParse (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278807_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$scheduleElementParse$4 (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278819_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$6 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager$1/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager$1/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$1/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataManager$1/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/ ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/ ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278615_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataResolver/getElementOptional (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataResolver/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278676_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable; net/minecraft/world/level/storage/loot/LootDataResolver/getLootTable (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278739_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataResolver/getElementOptional (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278789_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataResolver/getElement (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataType/ ()V net/minecraft/world/level/storage/loot/LootDataType/ ()V +MD: net/minecraft/world/level/storage/loot/LootDataType/ (Lcom/google/gson/Gson;Ljava/util/function/BiFunction;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataType$Validator;)V net/minecraft/world/level/storage/loot/LootDataType/ (Lcom/google/gson/Gson;Ljava/util/function/BiFunction;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataType$Validator;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278624_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/LootDataType/directory ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278629_ (Ljava/lang/Class;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/createSingleDeserialiser (Ljava/lang/Class;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278634_ (Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleDeserialiser$1 (Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278664_ (Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleOrMultipleDeserialiser$3 (Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278672_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V net/minecraft/world/level/storage/loot/LootDataType/lambda$createSimpleValidator$4 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278693_ ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; net/minecraft/world/level/storage/loot/LootDataType/createSimpleValidator ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278701_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataType/runValidation (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278728_ (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleDeserialiser$0 (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278763_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataType/deserialize (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278779_ ()Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/LootDataType/values ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278813_ (Ljava/lang/Class;Ljava/util/function/Function;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/createSingleOrMultipleDeserialiser (Ljava/lang/Class;Ljava/util/function/Function;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278814_ (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleOrMultipleDeserialiser$2 (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278846_ ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; net/minecraft/world/level/storage/loot/LootDataType/createLootTableValidator ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278847_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V net/minecraft/world/level/storage/loot/LootDataType/lambda$createLootTableValidator$5 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278857_ ()Lcom/google/gson/Gson; net/minecraft/world/level/storage/loot/LootDataType/parser ()Lcom/google/gson/Gson; +MD: net/minecraft/world/level/storage/loot/LootDataType$Validator/m_278714_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataType$Validator/run (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootParams/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Map;Ljava/util/Map;F)V net/minecraft/world/level/storage/loot/LootParams/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Map;Ljava/util/Map;F)V +MD: net/minecraft/world/level/storage/loot/LootParams/m_287156_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams/getParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams/m_287164_ ()F net/minecraft/world/level/storage/loot/LootParams/getLuck ()F +MD: net/minecraft/world/level/storage/loot/LootParams/m_287166_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z net/minecraft/world/level/storage/loot/LootParams/hasParam (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z +MD: net/minecraft/world/level/storage/loot/LootParams/m_287182_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootParams/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootParams/m_287251_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams/getOptionalParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams/m_287256_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootParams/addDynamicDrops (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootParams/m_287267_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams/getParamOrNull (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/storage/loot/LootParams$Builder/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287145_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams$DynamicDrop;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withDynamicDrop (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams$DynamicDrop;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287159_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams$Builder/getOptionalParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287235_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootParams; net/minecraft/world/level/storage/loot/LootParams$Builder/create (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootParams; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287239_ (F)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withLuck (F)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287258_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootParams$Builder/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287261_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams$Builder/getParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287286_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287289_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withOptionalParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$DynamicDrop/m_287291_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootParams$DynamicDrop/add (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootPool/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/LootPool/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79043_ ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool/lootPool ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool/m_79044_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V net/minecraft/world/level/storage/loot/LootPool/lambda$addRandomItem$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79051_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootPool/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79053_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/LootPool/addRandomItems (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79058_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/LootPool/addRandomItem (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/ ()V net/minecraft/world/level/storage/loot/LootPool$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_165133_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/setRolls (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_165135_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/setBonusRolls (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79076_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/add (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79082_ ()Lnet/minecraft/world/level/storage/loot/LootPool; net/minecraft/world/level/storage/loot/LootPool$Builder/build ()Lnet/minecraft/world/level/storage/loot/LootPool; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/ ()V net/minecraft/world/level/storage/loot/LootPool$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootPool; net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootPool; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootPool;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootPool;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootTable/ ()V net/minecraft/world/level/storage/loot/LootTable/ ()V +MD: net/minecraft/world/level/storage/loot/LootTable/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/LootPool;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/LootTable/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/LootPool;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_230919_ (Lnet/minecraft/world/Container;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/storage/loot/LootTable/getAvailableSlots (Lnet/minecraft/world/Container;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/storage/loot/LootTable/m_230922_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootContext;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/storage/loot/LootTable/m_230924_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;ILnet/minecraft/util/RandomSource;)V net/minecraft/world/level/storage/loot/LootTable/shuffleAndSplitItems (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;ILnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_246283_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; net/minecraft/world/level/storage/loot/LootTable/createStackSplitter (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; +MD: net/minecraft/world/level/storage/loot/LootTable/m_287134_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/storage/loot/LootTable/lambda$createStackSplitter$0 (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287188_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/storage/loot/LootParams;J)V net/minecraft/world/level/storage/loot/LootTable/fill (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/storage/loot/LootParams;J)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287190_ (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItemsRaw (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287195_ (Lnet/minecraft/world/level/storage/loot/LootParams;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/storage/loot/LootTable/m_287214_ (Lnet/minecraft/world/level/storage/loot/LootParams;J)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;J)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/storage/loot/LootTable/m_287228_ (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287276_ (Lnet/minecraft/world/level/storage/loot/LootParams;JLjava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;JLjava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_79122_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/LootTable/getParamSet ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/LootTable/m_79131_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItemsRaw (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_79136_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootTable/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_79147_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable/lootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable/m_79148_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/ ()V net/minecraft/world/level/storage/loot/LootTable$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_287223_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/setRandomSequence (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootTable$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootTable$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79161_ (Lnet/minecraft/world/level/storage/loot/LootPool$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/withPool (Lnet/minecraft/world/level/storage/loot/LootPool$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79165_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/setParamSet (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79167_ ()Lnet/minecraft/world/level/storage/loot/LootTable; net/minecraft/world/level/storage/loot/LootTable$Builder/build ()Lnet/minecraft/world/level/storage/loot/LootTable; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/ ()V net/minecraft/world/level/storage/loot/LootTable$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootTable; net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootTable; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootTable;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootTable;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/SerializerType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/SerializerType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/SerializerType/m_79331_ ()Lnet/minecraft/world/level/storage/loot/Serializer; net/minecraft/world/level/storage/loot/SerializerType/getSerializer ()Lnet/minecraft/world/level/storage/loot/Serializer; +MD: net/minecraft/world/level/storage/loot/ValidationContext/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V net/minecraft/world/level/storage/loot/ValidationContext/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/ (Lcom/google/common/collect/Multimap;Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;Ljava/util/Set;)V net/minecraft/world/level/storage/loot/ValidationContext/ (Lcom/google/common/collect/Multimap;Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;Ljava/util/Set;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_278632_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataId;)Lnet/minecraft/world/level/storage/loot/ValidationContext; net/minecraft/world/level/storage/loot/ValidationContext/enterElement (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataId;)Lnet/minecraft/world/level/storage/loot/ValidationContext; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_278720_ ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; net/minecraft/world/level/storage/loot/ValidationContext/resolver ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_278820_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Z net/minecraft/world/level/storage/loot/ValidationContext/hasVisitedElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Z +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79352_ ()Lcom/google/common/collect/Multimap; net/minecraft/world/level/storage/loot/ValidationContext/getProblems ()Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79353_ (Lnet/minecraft/world/level/storage/loot/LootContextUser;)V net/minecraft/world/level/storage/loot/ValidationContext/validateUser (Lnet/minecraft/world/level/storage/loot/LootContextUser;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79355_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/ValidationContext; net/minecraft/world/level/storage/loot/ValidationContext/setParams (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/ValidationContext; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79357_ (Ljava/lang/String;)V net/minecraft/world/level/storage/loot/ValidationContext/reportProblem (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79364_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/getContext ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79365_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/ValidationContext; net/minecraft/world/level/storage/loot/ValidationContext/forChild (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/ValidationContext; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79372_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/lambda$new$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79373_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/lambda$enterElement$2 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79377_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/lambda$forChild$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/AlternativesEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_230931_ (I)[Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/lambda$alternatives$1 (I)[Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_230933_ (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/alternatives (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/AlternativesEntry/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_79391_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/AlternativesEntry/lambda$compose$0 ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_79395_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/alternatives ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_7170_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/otherwise (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ ()V net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79408_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$static$1 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79411_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/and (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79413_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$or$3 (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79417_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$static$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79420_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/or (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79422_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$and$2 (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_79435_ (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/createSerializer (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/ (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/ (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor/m_79460_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor/create ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/DynamicLoot/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_79483_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/DynamicLoot/dynamicEntry (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_79485_ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/DynamicLoot/lambda$dynamicEntry$0 (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot; net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/EmptyLootItem/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/EmptyLootItem/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/EmptyLootItem/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/m_79533_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/EmptyLootItem/emptyItem ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/EmptyLootItem; net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/EmptyLootItem; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/EntryGroup/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_165137_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup/list ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/EntryGroup/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/EntryGroup/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_79553_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/EntryGroup/lambda$compose$0 (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_79560_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/EntryGroup/lambda$compose$1 ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_142719_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/append (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootItem/ (Lnet/minecraft/world/item/Item;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/LootItem/ (Lnet/minecraft/world/item/Item;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootItem/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootItem/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_79579_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootItem/lootTableItem (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_79581_ (Lnet/minecraft/world/level/ItemLike;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootItem/lambda$lootTableItem$0 (Lnet/minecraft/world/level/ItemLike;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootItem;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootItem;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootItem; net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootItem; +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/m_79628_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/entries/LootPoolEntries/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/m_79629_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootPoolEntries/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntry/m_6941_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntry/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntry/m_7067_ (F)I net/minecraft/world/level/storage/loot/entries/LootPoolEntry/getWeight (F)I +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/m_79639_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/canRun (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_142639_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/then (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_142719_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/append (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_7170_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/otherwise (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79651_ ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/getConditions ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_79687_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/simpleBuilder (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/m_6941_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79706_ ()[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/getFunctions ()[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79707_ (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/setWeight (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79711_ (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/setQuality (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/m_7067_ (F)I net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/getWeight (F)I +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor/m_79726_ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor/build (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_278605_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/lambda$validate$0 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_278606_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/lambda$validate$1 (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootTableReference/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_79776_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootTableReference/lootTableReference (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_79778_ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootTableReference/lambda$lootTableReference$2 (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootTableReference;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootTableReference;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootTableReference; net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootTableReference; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/SequentialEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_165152_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry/sequential ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/SequentialEntry/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/SequentialEntry/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_79817_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/SequentialEntry/lambda$compose$0 ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_142639_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/then (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/ (Lnet/minecraft/tags/TagKey;ZII[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/TagEntry/ (Lnet/minecraft/tags/TagKey;ZII[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205084_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/TagEntry/tagContents (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205086_ (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/TagEntry/lambda$expandTag$2 (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205092_ (Ljava/util/function/Consumer;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/storage/loot/entries/TagEntry/lambda$createItemStack$0 (Ljava/util/function/Consumer;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205095_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/TagEntry/expandTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205097_ (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/TagEntry/lambda$tagContents$1 (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/TagEntry/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/TagEntry/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_79845_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/TagEntry/expandTag (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/ (Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/storage/loot/entries/TagEntry$1/ (Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/m_6941_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$1/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/TagEntry; net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/TagEntry; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79915_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addOreBonusCount (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79917_ (Lnet/minecraft/world/item/enchantment/Enchantment;FI)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addBonusBinomialDistributionCount (Lnet/minecraft/world/item/enchantment/Enchantment;FI)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79921_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addUniformBonusCount (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79924_ (Lnet/minecraft/world/item/enchantment/Enchantment;IF[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addBonusBinomialDistributionCount$0 (Lnet/minecraft/world/item/enchantment/Enchantment;IF[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79929_ (Lnet/minecraft/world/item/enchantment/Enchantment;I[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addUniformBonusCount$3 (Lnet/minecraft/world/item/enchantment/Enchantment;I[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79933_ (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addUniformBonusCount$2 (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79939_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addUniformBonusCount (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79941_ (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addOreBonusCount$1 (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ (IF)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ (IF)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_79955_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer/m_79970_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_79979_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_80006_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ (I)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ (I)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_80018_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/m_80037_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/explosionDecay ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/Block;Ljava/util/Set;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/Block;Ljava/util/Set;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/CopyBlockState/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/CopyBlockState/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/CopyBlockState/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_80062_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState/copyState (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_80064_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; net/minecraft/world/level/storage/loot/functions/CopyBlockState/serialize (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_80069_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState/lambda$run$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_80084_ (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/copy (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_80089_ (Lcom/google/gson/JsonArray;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/lambda$serialize$0 (Lcom/google/gson/JsonArray;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_80108_ (Ljava/util/Set;Lnet/minecraft/world/level/block/state/StateDefinition;Lcom/google/gson/JsonElement;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/lambda$deserialize$2 (Ljava/util/Set;Lnet/minecraft/world/level/block/state/StateDefinition;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_80112_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/lambda$deserialize$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_80187_ (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/copyName (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_80189_ (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/lambda$copyName$0 (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ ()V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/m_165173_ ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/$values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/m_80208_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/getByName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_165178_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/copyData (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_165180_ (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/copyData (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_80252_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/Tag;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/lambda$run$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/Tag;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_80267_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/compileNbtPath (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_80279_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/copy (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_80282_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/copy (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/m_80302_ ()Lcom/google/gson/JsonObject; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/toJson ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/m_80303_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/m_80305_ (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/apply (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ ()V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/m_165184_ ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/$values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/m_80349_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/getByName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/m_165185_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/lambda$merge$0 (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/m_80369_ (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/lambda$merge$1 (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/m_165188_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/lambda$merge$0 (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/m_80383_ (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/lambda$merge$1 (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ()V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Collection;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Collection;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_165191_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/randomEnchantment ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_230979_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/enchantItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_80433_ (ZLnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/lambda$run$0 (ZLnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_80437_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/lambda$randomApplicableEnchantment$1 ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_80440_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/randomApplicableEnchantment ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_80444_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/withEnchantment (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_80465_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/lambda$deserialize$0 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_165196_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/enchantWithLevels (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_80499_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/allowTreasure ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ()V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BIZ)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BIZ)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_80554_ ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/makeExplorationMap ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_165205_ (I)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setSearchRadius (I)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_210658_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setDestination (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_80569_ (B)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setZoom (B)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_80573_ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setMapDecoration (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_80575_ (Z)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setSkipKnownStructures (Z)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_210660_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/readStructure (Lcom/google/gson/JsonObject;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_165207_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/fillPlayerHead (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_165209_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/lambda$fillPlayerHead$0 (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead; net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/ ()V net/minecraft/world/level/storage/loot/functions/FunctionReference/ ()V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278647_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/FunctionReference/functionReference (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278670_ (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/FunctionReference/lambda$functionReference$2 (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278678_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/lambda$validate$0 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278708_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/lambda$validate$1 (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/FunctionReference/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/FunctionReference/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FunctionReference;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FunctionReference;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FunctionReference; net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FunctionReference; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_230984_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/apply (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_230987_ ([Ljava/lang/Object;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/apply ([Ljava/lang/Object;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/functions/LimitCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_165215_ (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LimitCount/limitCount (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_165217_ (Lnet/minecraft/world/level/storage/loot/IntRange;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LimitCount/lambda$limitCount$0 (Lnet/minecraft/world/level/storage/loot/IntRange;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/LimitCount/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LimitCount/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LimitCount/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LimitCount;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LimitCount;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LimitCount; net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LimitCount; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/m_80683_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/simpleBuilder (Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_80699_ ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/getConditions ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/ (Ljava/util/function/Function;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/ (Ljava/util/function/Function;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LootItemFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction/m_80724_ (Ljava/util/function/BiFunction;Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/util/function/Consumer; net/minecraft/world/level/storage/loot/functions/LootItemFunction/decorate (Ljava/util/function/BiFunction;Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/util/function/Consumer; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction/m_80728_ (Ljava/util/function/Consumer;Ljava/util/function/BiFunction;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/storage/loot/functions/LootItemFunction/lambda$decorate$0 (Ljava/util/function/Consumer;Ljava/util/function/BiFunction;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/functions/LootItemFunctionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80758_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80759_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80762_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80765_ (Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/lambda$compose$1 (Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80770_ ([Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/compose ([Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80772_ ([Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/lambda$compose$2 ([Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;I)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;I)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_165229_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/lootingMultiplier (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_80798_ ()Z net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/hasLimit ()Z +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_80806_ (I)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/setLimit (I)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_165235_ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/modifier (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_165241_ ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/setAttributes ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_278607_ (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/ ()V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_165245_ (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/withModifier (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/UUID;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80860_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/lang/String; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/operationToString (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80862_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80865_ (Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/serialize (Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80869_ (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/operationFromString (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/m_165267_ ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/build ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/m_165268_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/forSlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/m_165270_ (Ljava/util/UUID;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/withUuid (Ljava/util/UUID;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;Z)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/m_165282_ (Z)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/setBannerPattern (Z)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/ (Z)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/ (Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_230995_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/addPattern (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_230998_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/addPattern (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_231001_ (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/lambda$serialize$1 (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_231004_ (Lcom/mojang/datafixers/util/Pair;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/lambda$serialize$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_193036_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents/setContents (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_287135_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/lambda$run$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetContainerContents/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetContainerContents/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_80913_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/lambda$run$1 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_80930_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/withEntry (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_193041_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193049_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/withLootTable (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193052_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;J)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/withLootTable (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;J)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193056_ (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/lambda$withLootTable$1 (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193061_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/lambda$withLootTable$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_193065_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;Z)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165341_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165350_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$1 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165355_ (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/updateEnchantment (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165359_ (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$4 (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165364_ (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$3 (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_278608_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ (Z)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ (Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_165374_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/withEnchantment (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_165401_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/lambda$deserialize$1 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_257367_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/lambda$serialize$0 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_231011_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/setInstrumentOptions (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_231013_ (Lnet/minecraft/tags/TagKey;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/lambda$setInstrumentOptions$0 (Lnet/minecraft/tags/TagKey;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165412_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/setCount (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165414_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/setCount (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165417_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/lambda$setCount$1 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165421_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/lambda$setCount$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ()V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165430_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/setDamage (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165432_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/setDamage (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165435_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/lambda$setDamage$1 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165439_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/lambda$setDamage$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;ZLjava/util/List;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;ZLjava/util/List;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_165443_ ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/setLore ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_81091_ (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/getLoreTag (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_165449_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/setResolutionContext (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_165451_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/addLine (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_165453_ (Z)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/setReplace (Z)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ()V net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165457_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetNameFunction/setName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165459_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetNameFunction/setName (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165462_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$setName$3 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165466_ (Lnet/minecraft/network/chat/Component;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$setName$2 (Lnet/minecraft/network/chat/Component;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetNameFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetNameFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetNameFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_81139_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Ljava/util/function/UnaryOperator; net/minecraft/world/level/storage/loot/functions/SetNameFunction/createResolver (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_81144_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$createResolver$0 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_81151_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$createResolver$1 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_81187_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/setTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_81189_ (Lnet/minecraft/nbt/CompoundTag;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/lambda$setTag$0 (Lnet/minecraft/nbt/CompoundTag;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction; net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_193075_ (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/setPotion (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_193077_ (Lnet/minecraft/world/item/alchemy/Potion;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/lambda$setPotion$0 (Lnet/minecraft/world/item/alchemy/Potion;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_193097_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/lambda$deserialize$0 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction; net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_278609_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_81228_ ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/stewEffect ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_165472_ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/withEffect (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_81254_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/lambda$deserialize$0 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ()V net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/m_81271_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/smelted ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SmeltItemFunction; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SmeltItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/parameters/LootContextParam/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/m_81284_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/parameters/LootContextParam/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/parameters/LootContextParam/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/ (Ljava/util/Set;Ljava/util/Set;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/ (Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_165475_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/isAllowed (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_165477_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/builder ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81394_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/getRequired ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81395_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/validateUser (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81398_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/getAllowed ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81399_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/String; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/lambda$toString$0 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/m_81405_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/build ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/m_81406_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/required (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/m_81408_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/optional (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_271683_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$6 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_285732_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$11 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81424_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$13 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81426_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/getKey (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81428_ (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/register (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81431_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81433_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$12 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81435_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$9 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81437_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$10 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81439_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$8 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81441_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$7 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81443_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$5 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81445_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$4 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81447_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$3 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81449_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$2 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81451_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$1 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81453_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$0 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/m_81466_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; net/minecraft/world/level/storage/loot/parameters/LootContextParams/create (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/AllOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition/m_285871_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AllOfCondition/allOf ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/AllOfCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/m_285747_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/and (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/m_285950_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/m_285758_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/anyOf ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/m_285888_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/or (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/m_285950_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_81517_ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/bonusLevelFlatChance (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_81525_ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/lambda$bonusLevelFlatChance$0 (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_81544_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/function/Predicate;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_285756_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/lambda$build$0 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_285950_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_286010_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/addTerm (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/ ()V net/minecraft/world/level/storage/loot/predicates/ConditionReference/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_165480_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/ConditionReference/conditionReference (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_165482_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/ConditionReference/lambda$conditionReference$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_278610_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/lambda$validate$0 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_278611_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/lambda$validate$1 (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/ConditionReference/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference; net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/m_231040_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/when (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_81589_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/hasDamageSource (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_81596_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/lambda$hasDamageSource$0 (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/ (Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/ (Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_165486_ (Lnet/minecraft/world/level/storage/loot/IntRange;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/IntRange;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_165488_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/hasScores (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_165490_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Z net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/hasScore (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Z +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/m_165500_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/withScore (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_81661_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/survivesExplosion ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_81663_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/lambda$survivesExplosion$0 ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_81694_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/invert (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_81697_ (Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/lambda$invert$0 (Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/ (Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/storage/loot/predicates/LocationCheck/ (Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LocationCheck/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81725_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LocationCheck/checkLocation (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81727_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LocationCheck/checkLocation (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81735_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LocationCheck/lambda$checkLocation$0 (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81737_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LocationCheck/lambda$checkLocation$1 (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck; net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/m_81769_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/hasBlockStateProperties (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/m_81784_ (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/setProperties (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_81788_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/lambda$deserialize$1 (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_81802_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_285747_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/and (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_285888_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/or (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_81807_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/invert ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/predicates/LootItemConditionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81828_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81829_ (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$orConditions$2 (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81831_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81834_ ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/andConditions ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81836_ ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$orConditions$3 ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81839_ (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$andConditions$0 (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81841_ ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/orConditions ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81843_ ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$andConditions$1 ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81856_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/lambda$hasProperties$0 (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81859_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/lambda$hasProperties$1 (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81862_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/entityPresent (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81864_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/hasProperties (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81867_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/hasProperties (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_81901_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/killedByPlayer ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_81903_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/lambda$killedByPlayer$0 ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/ (F)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/ (F)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/m_81927_ (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/randomChance (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/m_81934_ (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/lambda$randomChance$0 (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/ (FF)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/ (FF)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_81963_ (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/randomChanceAndLootingBoost (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_81971_ (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/lambda$randomChanceAndLootingBoost$0 (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/ (Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/world/level/storage/loot/predicates/MatchTool/ (Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/MatchTool/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/MatchTool/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_81997_ (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/MatchTool/toolMatches (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_82004_ (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/MatchTool/lambda$toolMatches$0 (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/MatchTool;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/MatchTool;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/MatchTool; net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/MatchTool; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/ (Ljava/lang/Long;Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck/ (Ljava/lang/Long;Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/m_165509_ (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; net/minecraft/world/level/storage/loot/predicates/TimeCheck/time (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/TimeCheck/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/TimeCheck/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/ (Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/ (Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/m_165516_ (J)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/setPeriod (J)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_165528_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/hasValue (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_165532_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/lambda$hasValue$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/ (Ljava/lang/Boolean;Ljava/lang/Boolean;)V net/minecraft/world/level/storage/loot/predicates/WeatherCheck/ (Ljava/lang/Boolean;Ljava/lang/Boolean;)V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/m_165552_ ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; net/minecraft/world/level/storage/loot/predicates/WeatherCheck/weather ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/WeatherCheck/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/ ()V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_165556_ (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/setRaining (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_165559_ (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/setThundering (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_142301_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_142624_ ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_142677_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_165570_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/forContextEntity (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_165574_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/createFromContext (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_165577_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/forEntity (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/m_142016_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/m_142135_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/m_142524_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/m_142016_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/m_142135_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/m_142524_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/m_142016_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/m_142135_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/m_142524_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142413_ (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/serialize (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/m_142301_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/m_142624_ ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/m_142677_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/m_165627_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/m_165628_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/m_142301_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/m_142624_ ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/m_142677_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_142683_ (Lnet/minecraft/world/level/storage/loot/LootContext;)I net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getInt (Lnet/minecraft/world/level/storage/loot/LootContext;)I +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_165659_ (IF)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/binomial (IF)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/ (F)V net/minecraft/world/level/storage/loot/providers/number/ConstantValue/ (F)V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/providers/number/ConstantValue/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/hashCode ()I net/minecraft/world/level/storage/loot/providers/number/ConstantValue/hashCode ()I +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/ConstantValue/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/ConstantValue/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/m_165692_ (F)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; net/minecraft/world/level/storage/loot/providers/number/ConstantValue/exactly (F)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/ ()V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142413_ (Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/serialize (Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +MD: net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProvider/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/NumberProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProvider/m_142683_ (Lnet/minecraft/world/level/storage/loot/LootContext;)I net/minecraft/world/level/storage/loot/providers/number/NumberProvider/getInt (Lnet/minecraft/world/level/storage/loot/LootContext;)I +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProvider/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/NumberProvider/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/m_165737_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/NumberProviders/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/m_165738_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/NumberProviders/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/ (Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider;Ljava/lang/String;F)V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/ (Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider;Ljava/lang/String;F)V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_165749_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/fromScoreboard (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_165752_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;F)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/fromScoreboard (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;F)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_142683_ (Lnet/minecraft/world/level/storage/loot/LootContext;)I net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getInt (Lnet/minecraft/world/level/storage/loot/LootContext;)I +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_165780_ (FF)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/between (FF)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_142600_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/getScoreboardName (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_142636_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_142680_ ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_165807_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/forTarget (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/ ()V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142413_ (Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/serialize (Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/ (Ljava/lang/String;)V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_142600_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getScoreboardName (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_142636_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_142680_ ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_165846_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/forName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_165849_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/m_142600_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/getScoreboardName (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/m_142636_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/m_142680_ ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/m_165872_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/m_165873_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/timers/FunctionCallback/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/timers/FunctionCallback/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/timers/FunctionCallback/m_5821_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionCallback/handle (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionCallback/m_5821_ (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionCallback/handle (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionCallback/m_82175_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandFunction;)V net/minecraft/world/level/timers/FunctionCallback/lambda$handle$0 (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/ ()V net/minecraft/world/level/timers/FunctionCallback$Serializer/ ()V +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionCallback; net/minecraft/world/level/timers/FunctionCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionCallback; +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/FunctionCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/FunctionCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionCallback;)V net/minecraft/world/level/timers/FunctionCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionCallback;)V +MD: net/minecraft/world/level/timers/FunctionTagCallback/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/timers/FunctionTagCallback/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/timers/FunctionTagCallback/m_5821_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionTagCallback/handle (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionTagCallback/m_5821_ (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionTagCallback/handle (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/ ()V net/minecraft/world/level/timers/FunctionTagCallback$Serializer/ ()V +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/FunctionTagCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionTagCallback; net/minecraft/world/level/timers/FunctionTagCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionTagCallback; +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionTagCallback;)V net/minecraft/world/level/timers/FunctionTagCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionTagCallback;)V +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/FunctionTagCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/TimerCallback/m_5821_ (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/TimerCallback/handle (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Class;)V net/minecraft/world/level/timers/TimerCallback$Serializer/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Class;)V +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/TimerCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/TimerCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_82221_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/timers/TimerCallback$Serializer/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_82224_ ()Ljava/lang/Class; net/minecraft/world/level/timers/TimerCallback$Serializer/getCls ()Ljava/lang/Class; +MD: net/minecraft/world/level/timers/TimerCallbacks/ ()V net/minecraft/world/level/timers/TimerCallbacks/ ()V +MD: net/minecraft/world/level/timers/TimerCallbacks/ ()V net/minecraft/world/level/timers/TimerCallbacks/ ()V +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82232_ (Lnet/minecraft/world/level/timers/TimerCallback$Serializer;)Lnet/minecraft/world/level/timers/TimerCallbacks; net/minecraft/world/level/timers/TimerCallbacks/register (Lnet/minecraft/world/level/timers/TimerCallback$Serializer;)Lnet/minecraft/world/level/timers/TimerCallbacks; +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82234_ (Lnet/minecraft/world/level/timers/TimerCallback;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/timers/TimerCallbacks/serialize (Lnet/minecraft/world/level/timers/TimerCallback;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82236_ (Ljava/lang/Class;)Lnet/minecraft/world/level/timers/TimerCallback$Serializer; net/minecraft/world/level/timers/TimerCallbacks/getSerializer (Ljava/lang/Class;)Lnet/minecraft/world/level/timers/TimerCallback$Serializer; +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82238_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/TimerCallbacks/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/TimerQueue/ ()V net/minecraft/world/level/timers/TimerQueue/ ()V +MD: net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;)V net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;)V +MD: net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;Ljava/util/stream/Stream;)V net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;Ljava/util/stream/Stream;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_264030_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/world/level/timers/TimerQueue/lambda$new$2 (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82251_ ()Ljava/util/Set; net/minecraft/world/level/timers/TimerQueue/getEventsIds ()Ljava/util/Set; +MD: net/minecraft/world/level/timers/TimerQueue/m_82254_ (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/timers/TimerQueue/storeEvent (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/timers/TimerQueue/m_82256_ (Ljava/lang/Object;J)V net/minecraft/world/level/timers/TimerQueue/tick (Ljava/lang/Object;J)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82259_ (Ljava/lang/String;)I net/minecraft/world/level/timers/TimerQueue/remove (Ljava/lang/String;)I +MD: net/minecraft/world/level/timers/TimerQueue/m_82261_ (Ljava/lang/String;JLnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/TimerQueue/schedule (Ljava/lang/String;JLnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82265_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/timers/TimerQueue/loadEvent (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82267_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/timers/TimerQueue/store ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/timers/TimerQueue/m_82268_ (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lcom/google/common/primitives/UnsignedLong; net/minecraft/world/level/timers/TimerQueue/lambda$createComparator$1 (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lcom/google/common/primitives/UnsignedLong; +MD: net/minecraft/world/level/timers/TimerQueue/m_82270_ ()Ljava/util/Comparator; net/minecraft/world/level/timers/TimerQueue/createComparator ()Ljava/util/Comparator; +MD: net/minecraft/world/level/timers/TimerQueue/m_82271_ (Lnet/minecraft/world/level/timers/TimerQueue$Event;)J net/minecraft/world/level/timers/TimerQueue/lambda$createComparator$0 (Lnet/minecraft/world/level/timers/TimerQueue$Event;)J +MD: net/minecraft/world/level/timers/TimerQueue$Event/ (JLcom/google/common/primitives/UnsignedLong;Ljava/lang/String;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/TimerQueue$Event/ (JLcom/google/common/primitives/UnsignedLong;Ljava/lang/String;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/validation/ContentValidationException/ (Ljava/nio/file/Path;Ljava/util/List;)V net/minecraft/world/level/validation/ContentValidationException/ (Ljava/nio/file/Path;Ljava/util/List;)V +MD: net/minecraft/world/level/validation/ContentValidationException/getMessage ()Ljava/lang/String; net/minecraft/world/level/validation/ContentValidationException/getMessage ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/ContentValidationException/m_289904_ (Lnet/minecraft/world/level/validation/ForbiddenSymlinkInfo;)Ljava/lang/String; net/minecraft/world/level/validation/ContentValidationException/lambda$getMessage$0 (Lnet/minecraft/world/level/validation/ForbiddenSymlinkInfo;)Ljava/lang/String; +MD: net/minecraft/world/level/validation/ContentValidationException/m_289907_ (Ljava/nio/file/Path;Ljava/util/List;)Ljava/lang/String; net/minecraft/world/level/validation/ContentValidationException/getMessage (Ljava/nio/file/Path;Ljava/util/List;)Ljava/lang/String; +MD: net/minecraft/world/level/validation/DirectoryValidator/ (Lnet/minecraft/world/level/validation/PathAllowList;)V net/minecraft/world/level/validation/DirectoryValidator/ (Lnet/minecraft/world/level/validation/PathAllowList;)V +MD: net/minecraft/world/level/validation/DirectoryValidator/m_289885_ (Ljava/nio/file/Path;Z)Ljava/util/List; net/minecraft/world/level/validation/DirectoryValidator/validateSave (Ljava/nio/file/Path;Z)Ljava/util/List; +MD: net/minecraft/world/level/validation/DirectoryValidator/m_289900_ (Ljava/nio/file/Path;Ljava/util/List;)V net/minecraft/world/level/validation/DirectoryValidator/validateSymlink (Ljava/nio/file/Path;Ljava/util/List;)V +MD: net/minecraft/world/level/validation/DirectoryValidator$1/ (Lnet/minecraft/world/level/validation/DirectoryValidator;Ljava/util/List;)V net/minecraft/world/level/validation/DirectoryValidator$1/ (Lnet/minecraft/world/level/validation/DirectoryValidator;Ljava/util/List;)V +MD: net/minecraft/world/level/validation/DirectoryValidator$1/m_289903_ (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)V net/minecraft/world/level/validation/DirectoryValidator$1/validateSymlink (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)V +MD: net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/world/level/validation/ForbiddenSymlinkInfo/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/validation/ForbiddenSymlinkInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289826_ ()Ljava/nio/file/Path; net/minecraft/world/level/validation/ForbiddenSymlinkInfo/link ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289840_ ()Ljava/nio/file/Path; net/minecraft/world/level/validation/ForbiddenSymlinkInfo/target ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/hashCode ()I net/minecraft/world/level/validation/ForbiddenSymlinkInfo/hashCode ()I +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/toString ()Ljava/lang/String; net/minecraft/world/level/validation/ForbiddenSymlinkInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/PathAllowList/ ()V net/minecraft/world/level/validation/PathAllowList/ ()V +MD: net/minecraft/world/level/validation/PathAllowList/ (Ljava/util/List;)V net/minecraft/world/level/validation/PathAllowList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/validation/PathAllowList/m_289846_ (Ljava/lang/String;)Ljava/util/stream/Stream; net/minecraft/world/level/validation/PathAllowList/lambda$readPlain$5 (Ljava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/validation/PathAllowList/m_289847_ (Ljava/nio/file/FileSystem;Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$0 (Ljava/nio/file/FileSystem;Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList/m_289852_ (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList/getForFileSystem (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList/m_289878_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$1 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList/m_289888_ (Ljava/io/BufferedReader;)Lnet/minecraft/world/level/validation/PathAllowList; net/minecraft/world/level/validation/PathAllowList/readPlain (Ljava/io/BufferedReader;)Lnet/minecraft/world/level/validation/PathAllowList; +MD: net/minecraft/world/level/validation/PathAllowList/m_289896_ (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$4 (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList/m_289899_ (Ljava/util/List;Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$3 (Ljava/util/List;Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList/m_289909_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$2 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList/matches (Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/matches (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/ (Lnet/minecraft/world/level/validation/PathAllowList$EntryType;Ljava/lang/String;)V net/minecraft/world/level/validation/PathAllowList$ConfigEntry/ (Lnet/minecraft/world/level/validation/PathAllowList$EntryType;Ljava/lang/String;)V +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/validation/PathAllowList$ConfigEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289830_ ()Lnet/minecraft/world/level/validation/PathAllowList$EntryType; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/type ()Lnet/minecraft/world/level/validation/PathAllowList$EntryType; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289839_ ()Ljava/lang/String; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/pattern ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/hashCode ()I net/minecraft/world/level/validation/PathAllowList$ConfigEntry/hashCode ()I +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289843_ (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/glob (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289845_ (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/prefix (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289870_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/parse (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289886_ (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/regex (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289895_ (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/compile (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/toString ()Ljava/lang/String; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/ ()V net/minecraft/world/level/validation/PathAllowList$EntryType/ ()V +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/m_289851_ (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList$EntryType/lambda$static$1 (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/m_289860_ (Ljava/lang/String;Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList$EntryType/lambda$static$0 (Ljava/lang/String;Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/m_289905_ (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList$EntryType/compile (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/phys/AABB/ (DDDDDD)V net/minecraft/world/phys/AABB/ (DDDDDD)V +MD: net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/phys/AABB/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/phys/AABB/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/phys/AABB/equals (Ljava/lang/Object;)Z net/minecraft/world/phys/AABB/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/phys/AABB/hashCode ()I net/minecraft/world/phys/AABB/hashCode ()I +MD: net/minecraft/world/phys/AABB/m_165880_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMinX (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165882_ (Lnet/minecraft/world/phys/Vec3;DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/ofSize (Lnet/minecraft/world/phys/Vec3;DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165887_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMinY (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165889_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMinZ (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165891_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMaxX (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165893_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMaxY (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165895_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMaxZ (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165897_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/deflate (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_272282_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/AABB/distanceToSqr (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/AABB/m_82309_ ()D net/minecraft/world/phys/AABB/getSize ()D +MD: net/minecraft/world/phys/AABB/m_82310_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/contract (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82314_ (DDDDDD)Z net/minecraft/world/phys/AABB/intersects (DDDDDD)Z +MD: net/minecraft/world/phys/AABB/m_82321_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/of (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82323_ (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/intersect (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82325_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/Vec3;[DLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; net/minecraft/world/phys/AABB/getDirection (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/Vec3;[DLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/phys/AABB/m_82333_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/unitCubeFromLowerCorner (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82335_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/phys/AABB/intersects (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/phys/AABB/m_82338_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/move (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82340_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/AABB/min (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/AABB/m_82342_ (Ljava/lang/Iterable;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/AABB/clip (Ljava/lang/Iterable;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/AABB/m_82347_ ([DLnet/minecraft/core/Direction;DDDDDDDDLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; net/minecraft/world/phys/AABB/clipPoint ([DLnet/minecraft/core/Direction;DDDDDDDDLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/phys/AABB/m_82362_ ()D net/minecraft/world/phys/AABB/getXsize ()D +MD: net/minecraft/world/phys/AABB/m_82363_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/expandTowards (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82367_ (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/minmax (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82369_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/expandTowards (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82371_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; net/minecraft/world/phys/AABB/clip (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; +MD: net/minecraft/world/phys/AABB/m_82374_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/AABB/max (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/AABB/m_82376_ ()D net/minecraft/world/phys/AABB/getYsize ()D +MD: net/minecraft/world/phys/AABB/m_82377_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/inflate (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82381_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/phys/AABB/intersects (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/phys/AABB/m_82383_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/move (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82385_ ()D net/minecraft/world/phys/AABB/getZsize ()D +MD: net/minecraft/world/phys/AABB/m_82386_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/move (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82390_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/phys/AABB/contains (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/phys/AABB/m_82392_ ()Z net/minecraft/world/phys/AABB/hasNaN ()Z +MD: net/minecraft/world/phys/AABB/m_82393_ (DDD)Z net/minecraft/world/phys/AABB/contains (DDD)Z +MD: net/minecraft/world/phys/AABB/m_82399_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/AABB/getCenter ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/AABB/m_82400_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/inflate (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82406_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/deflate (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/toString ()Ljava/lang/String; net/minecraft/world/phys/AABB/toString ()Ljava/lang/String; +MD: net/minecraft/world/phys/BlockHitResult/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/phys/BlockHitResult/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/phys/BlockHitResult/ (ZLnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/phys/BlockHitResult/ (ZLnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/phys/BlockHitResult/m_6662_ ()Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/BlockHitResult/getType ()Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/BlockHitResult/m_82425_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/phys/BlockHitResult/getBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/phys/BlockHitResult/m_82426_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/BlockHitResult/miss (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/BlockHitResult/m_82430_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/BlockHitResult/withPosition (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/BlockHitResult/m_82432_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/BlockHitResult/withDirection (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/BlockHitResult/m_82434_ ()Lnet/minecraft/core/Direction; net/minecraft/world/phys/BlockHitResult/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/phys/BlockHitResult/m_82436_ ()Z net/minecraft/world/phys/BlockHitResult/isInside ()Z +MD: net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/phys/EntityHitResult/m_6662_ ()Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/EntityHitResult/getType ()Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/EntityHitResult/m_82443_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/phys/EntityHitResult/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/phys/HitResult/ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/phys/HitResult/ (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/phys/HitResult/m_6662_ ()Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult/getType ()Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/HitResult/m_82448_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/phys/HitResult/distanceTo (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/phys/HitResult/m_82450_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/HitResult/getLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/HitResult$Type/ ()V net/minecraft/world/phys/HitResult$Type/ ()V +MD: net/minecraft/world/phys/HitResult$Type/ (Ljava/lang/String;I)V net/minecraft/world/phys/HitResult$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/phys/HitResult$Type/m_165901_ ()[Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult$Type/$values ()[Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/HitResult$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/HitResult$Type/values ()[Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult$Type/values ()[Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/Vec2/ ()V net/minecraft/world/phys/Vec2/ ()V +MD: net/minecraft/world/phys/Vec2/ (FF)V net/minecraft/world/phys/Vec2/ (FF)V +MD: net/minecraft/world/phys/Vec2/m_165902_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/normalized ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165903_ (F)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/scale (F)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165905_ (Lnet/minecraft/world/phys/Vec2;)F net/minecraft/world/phys/Vec2/dot (Lnet/minecraft/world/phys/Vec2;)F +MD: net/minecraft/world/phys/Vec2/m_165907_ ()F net/minecraft/world/phys/Vec2/length ()F +MD: net/minecraft/world/phys/Vec2/m_165908_ (F)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/add (F)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165910_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/add (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165912_ ()F net/minecraft/world/phys/Vec2/lengthSquared ()F +MD: net/minecraft/world/phys/Vec2/m_165913_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/negated ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165914_ (Lnet/minecraft/world/phys/Vec2;)F net/minecraft/world/phys/Vec2/distanceToSqr (Lnet/minecraft/world/phys/Vec2;)F +MD: net/minecraft/world/phys/Vec2/m_82476_ (Lnet/minecraft/world/phys/Vec2;)Z net/minecraft/world/phys/Vec2/equals (Lnet/minecraft/world/phys/Vec2;)Z +MD: net/minecraft/world/phys/Vec3/ ()V net/minecraft/world/phys/Vec3/ ()V +MD: net/minecraft/world/phys/Vec3/ (DDD)V net/minecraft/world/phys/Vec3/ (DDD)V +MD: net/minecraft/world/phys/Vec3/ (Lorg/joml/Vector3f;)V net/minecraft/world/phys/Vec3/ (Lorg/joml/Vector3f;)V +MD: net/minecraft/world/phys/Vec3/equals (Ljava/lang/Object;)Z net/minecraft/world/phys/Vec3/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/phys/Vec3/hashCode ()I net/minecraft/world/phys/Vec3/hashCode ()I +MD: net/minecraft/world/phys/Vec3/m_165921_ (Lnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/lerp (Lnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_165924_ ()D net/minecraft/world/phys/Vec3/horizontalDistance ()D +MD: net/minecraft/world/phys/Vec3/m_165925_ ()D net/minecraft/world/phys/Vec3/horizontalDistanceSqr ()D +MD: net/minecraft/world/phys/Vec3/m_193103_ (Lnet/minecraft/core/Direction$Axis;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/with (Lnet/minecraft/core/Direction$Axis;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_231075_ (Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/relative (Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_231078_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/world/phys/Vec3/lambda$static$1 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/phys/Vec3/m_231080_ (Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/lambda$static$0 (Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_231082_ (Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; net/minecraft/world/phys/Vec3/lambda$static$2 (Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; +MD: net/minecraft/world/phys/Vec3/m_252839_ ()Lorg/joml/Vector3f; net/minecraft/world/phys/Vec3/toVector3f ()Lorg/joml/Vector3f; +MD: net/minecraft/world/phys/Vec3/m_272010_ (Lnet/minecraft/util/RandomSource;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/offsetRandom (Lnet/minecraft/util/RandomSource;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_272021_ (Lnet/minecraft/core/Vec3i;DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atLowerCornerWithOffset (Lnet/minecraft/core/Vec3i;DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_7094_ ()D net/minecraft/world/phys/Vec3/z ()D +MD: net/minecraft/world/phys/Vec3/m_7096_ ()D net/minecraft/world/phys/Vec3/x ()D +MD: net/minecraft/world/phys/Vec3/m_7098_ ()D net/minecraft/world/phys/Vec3/y ()D +MD: net/minecraft/world/phys/Vec3/m_82490_ (D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/scale (D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82492_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/subtract (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82496_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/xRot (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82498_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/directionFromRotation (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82501_ (I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/fromRGB24 (I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82503_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/directionFromRotation (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82505_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/vectorTo (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82507_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/Vec3/get (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/Vec3/m_82509_ (Lnet/minecraft/core/Position;D)Z net/minecraft/world/phys/Vec3/closerThan (Lnet/minecraft/core/Position;D)Z +MD: net/minecraft/world/phys/Vec3/m_82512_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atCenterOf (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82514_ (Lnet/minecraft/core/Vec3i;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/upFromBottomCenterOf (Lnet/minecraft/core/Vec3i;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82517_ (Ljava/util/EnumSet;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/align (Ljava/util/EnumSet;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82520_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/add (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82524_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/yRot (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82526_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/Vec3/dot (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/Vec3/m_82528_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atLowerCornerOf (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82531_ (DDD)D net/minecraft/world/phys/Vec3/distanceToSqr (DDD)D +MD: net/minecraft/world/phys/Vec3/m_82535_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/zRot (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82537_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/cross (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82539_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atBottomCenterOf (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82541_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/normalize ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82542_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/multiply (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82546_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/subtract (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82548_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/reverse ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82549_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/add (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82553_ ()D net/minecraft/world/phys/Vec3/length ()D +MD: net/minecraft/world/phys/Vec3/m_82554_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/Vec3/distanceTo (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/Vec3/m_82556_ ()D net/minecraft/world/phys/Vec3/lengthSqr ()D +MD: net/minecraft/world/phys/Vec3/m_82557_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/Vec3/distanceToSqr (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/Vec3/m_82559_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/multiply (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/toString ()Ljava/lang/String; net/minecraft/world/phys/Vec3/toString ()Ljava/lang/String; +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;)V net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;)V +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;[D[D[D)V net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;[D[D[D)V +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/ArrayVoxelShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape$1/ ()V net/minecraft/world/phys/shapes/ArrayVoxelShape$1/ ()V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (III)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (III)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_142703_ (III)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/fill (III)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165926_ (IIIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isXZRectangleFull (IIIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165932_ (IIIIIIIII)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/withFilledBounds (IIIIIIIII)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165942_ (IIIZ)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/fillUpdateBounds (IIIZ)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165947_ (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;II[I[ZIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lambda$join$0 (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;II[I[ZIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165963_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/forAllBoxes (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165967_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;I[I[ZIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lambda$join$1 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;I[I[ZIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165981_ (IIII)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/clearZStrip (IIII)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6224_ ()Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isEmpty ()Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6536_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lastFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6538_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/firstFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6696_ (III)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isFull (III)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82604_ (III)I net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/getIndex (III)I +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82608_ (IIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isZStripFull (IIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82641_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/join (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82662_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;[IIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lambda$join$2 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;[IIII)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/ ()V net/minecraft/world/phys/shapes/BooleanOp/ ()V +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82698_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$15 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82701_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/apply (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82704_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$14 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82707_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$13 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82710_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$12 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82713_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$11 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82716_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$10 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82719_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$9 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82722_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$8 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82725_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$7 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82728_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$6 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82731_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$5 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82734_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$4 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82737_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$3 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82740_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$2 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82743_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$1 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82746_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$0 (ZZ)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_203682_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/CollisionContext/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_6226_ ()Z net/minecraft/world/phys/shapes/CollisionContext/isDescending ()Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_6513_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/phys/shapes/CollisionContext/isAbove (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_7142_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/phys/shapes/CollisionContext/isHoldingItem (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_82749_ ()Lnet/minecraft/world/phys/shapes/CollisionContext; net/minecraft/world/phys/shapes/CollisionContext/empty ()Lnet/minecraft/world/phys/shapes/CollisionContext; +MD: net/minecraft/world/phys/shapes/CollisionContext/m_82750_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/shapes/CollisionContext; net/minecraft/world/phys/shapes/CollisionContext/of (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/shapes/CollisionContext; +MD: net/minecraft/world/phys/shapes/CubePointRange/ (I)V net/minecraft/world/phys/shapes/CubePointRange/ (I)V +MD: net/minecraft/world/phys/shapes/CubePointRange/getDouble (I)D net/minecraft/world/phys/shapes/CubePointRange/getDouble (I)D +MD: net/minecraft/world/phys/shapes/CubePointRange/size ()I net/minecraft/world/phys/shapes/CubePointRange/size ()I +MD: net/minecraft/world/phys/shapes/CubeVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V net/minecraft/world/phys/shapes/CubeVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V +MD: net/minecraft/world/phys/shapes/CubeVoxelShape/m_6595_ (Lnet/minecraft/core/Direction$Axis;D)I net/minecraft/world/phys/shapes/CubeVoxelShape/findIndex (Lnet/minecraft/core/Direction$Axis;D)I +MD: net/minecraft/world/phys/shapes/CubeVoxelShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/CubeVoxelShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/ (II)V net/minecraft/world/phys/shapes/DiscreteCubeMerger/ (II)V +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/DiscreteCubeMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/DiscreteCubeMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/size ()I net/minecraft/world/phys/shapes/DiscreteCubeMerger/size ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/ ()V net/minecraft/world/phys/shapes/DiscreteVoxelShape/ ()V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/ (III)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/ (III)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_142703_ (III)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/fill (III)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_165994_ (Lnet/minecraft/core/Direction$Axis;II)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/firstFull (Lnet/minecraft/core/Direction$Axis;II)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6224_ ()Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isEmpty ()Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6536_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/lastFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6538_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/firstFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6696_ (III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFull (III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82810_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllFaces (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82812_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;Lnet/minecraft/core/AxisCycle;)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllAxisFaces (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;Lnet/minecraft/core/AxisCycle;)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82815_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Lnet/minecraft/core/AxisCycle;Z)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllAxisEdges (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Lnet/minecraft/core/AxisCycle;Z)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82819_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllEdges (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82822_ (Lnet/minecraft/core/AxisCycle;III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFullWide (Lnet/minecraft/core/AxisCycle;III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82828_ ()I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getXSize ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82832_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllBoxes (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82835_ (Lnet/minecraft/core/AxisCycle;III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFull (Lnet/minecraft/core/AxisCycle;III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82841_ (Lnet/minecraft/core/Direction$Axis;II)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/lastFull (Lnet/minecraft/core/Direction$Axis;II)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82845_ ()I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getYSize ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82846_ (III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFullWide (III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82850_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getSize (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82852_ ()I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getZSize ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer/m_82853_ (Lnet/minecraft/core/Direction;III)V net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer/consume (Lnet/minecraft/core/Direction;III)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer/m_82858_ (IIIIII)V net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer/consume (IIIIII)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/ ()V net/minecraft/world/phys/shapes/EntityCollisionContext/ ()V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/shapes/EntityCollisionContext/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/shapes/EntityCollisionContext/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_193113_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/phys/shapes/EntityCollisionContext/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_203682_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_205112_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/lambda$new$1 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_205117_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/lambda$static$0 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_6226_ ()Z net/minecraft/world/phys/shapes/EntityCollisionContext/isDescending ()Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_6513_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/phys/shapes/EntityCollisionContext/isAbove (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_7142_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/isHoldingItem (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext$1/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/shapes/EntityCollisionContext$1/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext$1/m_6513_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/phys/shapes/EntityCollisionContext$1/isAbove (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/phys/shapes/IdenticalMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;)V net/minecraft/world/phys/shapes/IdenticalMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;)V +MD: net/minecraft/world/phys/shapes/IdenticalMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/IdenticalMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/IdenticalMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/IdenticalMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/IdenticalMerger/size ()I net/minecraft/world/phys/shapes/IdenticalMerger/size ()I +MD: net/minecraft/world/phys/shapes/IndexMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/IndexMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/IndexMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/IndexMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/IndexMerger/size ()I net/minecraft/world/phys/shapes/IndexMerger/size ()I +MD: net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer/m_82908_ (III)Z net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer/merge (III)Z +MD: net/minecraft/world/phys/shapes/IndirectMerger/ ()V net/minecraft/world/phys/shapes/IndirectMerger/ ()V +MD: net/minecraft/world/phys/shapes/IndirectMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)V net/minecraft/world/phys/shapes/IndirectMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)V +MD: net/minecraft/world/phys/shapes/IndirectMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/IndirectMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/IndirectMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/IndirectMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/IndirectMerger/size ()I net/minecraft/world/phys/shapes/IndirectMerger/size ()I +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Z)V net/minecraft/world/phys/shapes/NonOverlappingMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Z)V +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/getDouble (I)D net/minecraft/world/phys/shapes/NonOverlappingMerger/getDouble (I)D +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/NonOverlappingMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/NonOverlappingMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_83018_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;III)Z net/minecraft/world/phys/shapes/NonOverlappingMerger/lambda$forMergedIndexes$0 (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;III)Z +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_83023_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/NonOverlappingMerger/forNonSwappedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/size ()I net/minecraft/world/phys/shapes/NonOverlappingMerger/size ()I +MD: net/minecraft/world/phys/shapes/OffsetDoubleList/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;D)V net/minecraft/world/phys/shapes/OffsetDoubleList/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;D)V +MD: net/minecraft/world/phys/shapes/OffsetDoubleList/getDouble (I)D net/minecraft/world/phys/shapes/OffsetDoubleList/getDouble (I)D +MD: net/minecraft/world/phys/shapes/OffsetDoubleList/size ()I net/minecraft/world/phys/shapes/OffsetDoubleList/size ()I +MD: net/minecraft/world/phys/shapes/Shapes/ ()V net/minecraft/world/phys/shapes/Shapes/ ()V +MD: net/minecraft/world/phys/shapes/Shapes/ ()V net/minecraft/world/phys/shapes/Shapes/ ()V +MD: net/minecraft/world/phys/shapes/Shapes/m_166028_ (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIII)Z net/minecraft/world/phys/shapes/Shapes/lambda$joinIsNotEmpty$1 (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIII)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_166039_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIII)Z net/minecraft/world/phys/shapes/Shapes/lambda$joinIsNotEmpty$2 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIII)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_166049_ (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/create (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_193135_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;Ljava/lang/Iterable;D)D net/minecraft/world/phys/shapes/Shapes/collide (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;Ljava/lang/Iterable;D)D +MD: net/minecraft/world/phys/shapes/Shapes/m_83040_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/empty ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83041_ (DD)I net/minecraft/world/phys/shapes/Shapes/findBits (DD)I +MD: net/minecraft/world/phys/shapes/Shapes/m_83048_ (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/box (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83055_ (II)J net/minecraft/world/phys/shapes/Shapes/lcm (II)J +MD: net/minecraft/world/phys/shapes/Shapes/m_83058_ (ILit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)Lnet/minecraft/world/phys/shapes/IndexMerger; net/minecraft/world/phys/shapes/Shapes/createIndexMerger (ILit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)Lnet/minecraft/world/phys/shapes/IndexMerger; +MD: net/minecraft/world/phys/shapes/Shapes/m_83064_ (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/create (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83094_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)Z net/minecraft/world/phys/shapes/Shapes/lambda$joinIsNotEmpty$3 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83103_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z net/minecraft/world/phys/shapes/Shapes/joinIsNotEmpty (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83110_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/or (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83113_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/join (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83117_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z net/minecraft/world/phys/shapes/Shapes/blockOccudes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83121_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/getFaceShape (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83124_ (Lnet/minecraft/world/phys/shapes/VoxelShape;[Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/or (Lnet/minecraft/world/phys/shapes/VoxelShape;[Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83144_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/block ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83145_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/phys/shapes/Shapes/faceShapeOccludes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83148_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/joinUnoptimized (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83152_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z net/minecraft/world/phys/shapes/Shapes/mergedFaceOccludes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83156_ ()Lnet/minecraft/world/phys/shapes/CubeVoxelShape; net/minecraft/world/phys/shapes/Shapes/lambda$static$0 ()Lnet/minecraft/world/phys/shapes/CubeVoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83157_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z net/minecraft/world/phys/shapes/Shapes/joinIsNotEmpty (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z +MD: net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer/m_83161_ (DDDDDD)V net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer/consume (DDDDDD)V +MD: net/minecraft/world/phys/shapes/SliceShape/ ()V net/minecraft/world/phys/shapes/SliceShape/ ()V +MD: net/minecraft/world/phys/shapes/SliceShape/ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction$Axis;I)V net/minecraft/world/phys/shapes/SliceShape/ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction$Axis;I)V +MD: net/minecraft/world/phys/shapes/SliceShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/SliceShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/SliceShape/m_83176_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; net/minecraft/world/phys/shapes/SliceShape/makeSlice (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; +MD: net/minecraft/world/phys/shapes/SubShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIIII)V net/minecraft/world/phys/shapes/SubShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIIII)V +MD: net/minecraft/world/phys/shapes/SubShape/m_142703_ (III)V net/minecraft/world/phys/shapes/SubShape/fill (III)V +MD: net/minecraft/world/phys/shapes/SubShape/m_166056_ (Lnet/minecraft/core/Direction$Axis;I)I net/minecraft/world/phys/shapes/SubShape/clampToShape (Lnet/minecraft/core/Direction$Axis;I)I +MD: net/minecraft/world/phys/shapes/SubShape/m_6536_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/SubShape/lastFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/SubShape/m_6538_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/SubShape/firstFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/SubShape/m_6696_ (III)Z net/minecraft/world/phys/shapes/SubShape/isFull (III)Z +MD: net/minecraft/world/phys/shapes/VoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V net/minecraft/world/phys/shapes/VoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166063_ (DLnet/minecraft/core/Direction$Axis;I)Z net/minecraft/world/phys/shapes/VoxelShape/lambda$findIndex$4 (DLnet/minecraft/core/Direction$Axis;I)Z +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166067_ (Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; net/minecraft/world/phys/shapes/VoxelShape/closestPointTo (Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166069_ (Lnet/minecraft/world/phys/Vec3;[Lnet/minecraft/world/phys/Vec3;DDDDDD)V net/minecraft/world/phys/shapes/VoxelShape/lambda$closestPointTo$5 (Lnet/minecraft/world/phys/Vec3;[Lnet/minecraft/world/phys/Vec3;DDDDDD)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166078_ (Lnet/minecraft/core/Direction$Axis;DD)D net/minecraft/world/phys/shapes/VoxelShape/min (Lnet/minecraft/core/Direction$Axis;DD)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_6595_ (Lnet/minecraft/core/Direction$Axis;D)I net/minecraft/world/phys/shapes/VoxelShape/findIndex (Lnet/minecraft/core/Direction$Axis;D)I +MD: net/minecraft/world/phys/shapes/VoxelShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/VoxelShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83215_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/shapes/VoxelShape/bounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83216_ (DDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/move (DDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83220_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/shapes/VoxelShape/clip (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83224_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V net/minecraft/world/phys/shapes/VoxelShape/forAllEdges (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83226_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;IIIIII)V net/minecraft/world/phys/shapes/VoxelShape/lambda$forAllEdges$1 (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;IIIIII)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83234_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;IIIIII)V net/minecraft/world/phys/shapes/VoxelShape/lambda$forAllBoxes$2 (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;IIIIII)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83245_ (Lnet/minecraft/core/AxisCycle;Lnet/minecraft/world/phys/AABB;D)D net/minecraft/world/phys/shapes/VoxelShape/collideX (Lnet/minecraft/core/AxisCycle;Lnet/minecraft/world/phys/AABB;D)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83256_ (Lnet/minecraft/core/Direction$Axis;I)D net/minecraft/world/phys/shapes/VoxelShape/get (Lnet/minecraft/core/Direction$Axis;I)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83259_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;D)D net/minecraft/world/phys/shapes/VoxelShape/collide (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;D)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83263_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/getFaceShape (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83265_ (Ljava/util/List;DDDDDD)V net/minecraft/world/phys/shapes/VoxelShape/lambda$toAabbs$3 (Ljava/util/List;DDDDDD)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83273_ ([Lnet/minecraft/world/phys/shapes/VoxelShape;DDDDDD)V net/minecraft/world/phys/shapes/VoxelShape/lambda$optimize$0 ([Lnet/minecraft/world/phys/shapes/VoxelShape;DDDDDD)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83281_ ()Z net/minecraft/world/phys/shapes/VoxelShape/isEmpty ()Z +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83286_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V net/minecraft/world/phys/shapes/VoxelShape/forAllBoxes (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83288_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/shapes/VoxelShape/min (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83290_ (Lnet/minecraft/core/Direction$Axis;DD)D net/minecraft/world/phys/shapes/VoxelShape/max (Lnet/minecraft/core/Direction$Axis;DD)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83294_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/calculateFace (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83296_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/optimize ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83297_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/shapes/VoxelShape/max (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83299_ ()Ljava/util/List; net/minecraft/world/phys/shapes/VoxelShape/toAabbs ()Ljava/util/List; +MD: net/minecraft/world/phys/shapes/VoxelShape/toString ()Ljava/lang/String; net/minecraft/world/phys/shapes/VoxelShape/toString ()Ljava/lang/String; +MD: net/minecraft/world/scores/Objective/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V net/minecraft/world/scores/Objective/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V +MD: net/minecraft/world/scores/Objective/m_83313_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/scores/Objective/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/scores/Objective/m_83314_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V net/minecraft/world/scores/Objective/setRenderType (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V +MD: net/minecraft/world/scores/Objective/m_83316_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/Objective/setDisplayName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/Objective/m_83318_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/scores/Objective/lambda$createFormattedDisplayName$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/scores/Objective/m_83320_ ()Ljava/lang/String; net/minecraft/world/scores/Objective/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/Objective/m_83321_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/world/scores/Objective/getCriteria ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/world/scores/Objective/m_83322_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Objective/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Objective/m_83323_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Objective/getFormattedDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Objective/m_83324_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/Objective/getRenderType ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/Objective/m_83325_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Objective/createFormattedDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;)V net/minecraft/world/scores/PlayerTeam/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;)V +MD: net/minecraft/world/scores/PlayerTeam/m_166086_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/scores/PlayerTeam/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/scores/PlayerTeam/m_5758_ ()Ljava/lang/String; net/minecraft/world/scores/PlayerTeam/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/PlayerTeam/m_6259_ ()Z net/minecraft/world/scores/PlayerTeam/canSeeFriendlyInvisibles ()Z +MD: net/minecraft/world/scores/PlayerTeam/m_6260_ ()Z net/minecraft/world/scores/PlayerTeam/isAllowFriendlyFire ()Z +MD: net/minecraft/world/scores/PlayerTeam/m_6809_ ()Ljava/util/Collection; net/minecraft/world/scores/PlayerTeam/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/world/scores/PlayerTeam/m_6870_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/PlayerTeam/getFormattedName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/PlayerTeam/m_7156_ ()Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/PlayerTeam/getCollisionRule ()Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/PlayerTeam/m_7414_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/scores/PlayerTeam/getColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/scores/PlayerTeam/m_7468_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/PlayerTeam/getDeathMessageVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/PlayerTeam/m_7470_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/PlayerTeam/getNameTagVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/PlayerTeam/m_83342_ (I)V net/minecraft/world/scores/PlayerTeam/unpackOptions (I)V +MD: net/minecraft/world/scores/PlayerTeam/m_83344_ (Lnet/minecraft/world/scores/Team$CollisionRule;)V net/minecraft/world/scores/PlayerTeam/setCollisionRule (Lnet/minecraft/world/scores/Team$CollisionRule;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83346_ (Lnet/minecraft/world/scores/Team$Visibility;)V net/minecraft/world/scores/PlayerTeam/setNameTagVisibility (Lnet/minecraft/world/scores/Team$Visibility;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83348_ (Lnet/minecraft/world/scores/Team;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/PlayerTeam/formatNameForTeam (Lnet/minecraft/world/scores/Team;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/PlayerTeam/m_83351_ (Lnet/minecraft/ChatFormatting;)V net/minecraft/world/scores/PlayerTeam/setColor (Lnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83353_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/PlayerTeam/setDisplayName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83355_ (Z)V net/minecraft/world/scores/PlayerTeam/setAllowFriendlyFire (Z)V +MD: net/minecraft/world/scores/PlayerTeam/m_83358_ (Lnet/minecraft/world/scores/Team$Visibility;)V net/minecraft/world/scores/PlayerTeam/setDeathMessageVisibility (Lnet/minecraft/world/scores/Team$Visibility;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83360_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/PlayerTeam/setPlayerPrefix (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83362_ (Z)V net/minecraft/world/scores/PlayerTeam/setSeeFriendlyInvisibles (Z)V +MD: net/minecraft/world/scores/PlayerTeam/m_83364_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/PlayerTeam/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/m_83365_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/PlayerTeam/setPlayerSuffix (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83367_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/PlayerTeam/getFormattedDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/PlayerTeam/m_83370_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/PlayerTeam/getPlayerPrefix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/m_83371_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/PlayerTeam/getPlayerSuffix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/m_83378_ ()I net/minecraft/world/scores/PlayerTeam/packOptions ()I +MD: net/minecraft/world/scores/Score/ ()V net/minecraft/world/scores/Score/ ()V +MD: net/minecraft/world/scores/Score/ (Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;Ljava/lang/String;)V net/minecraft/world/scores/Score/ (Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;Ljava/lang/String;)V +MD: net/minecraft/world/scores/Score/m_83392_ ()V net/minecraft/world/scores/Score/increment ()V +MD: net/minecraft/world/scores/Score/m_83393_ (I)V net/minecraft/world/scores/Score/add (I)V +MD: net/minecraft/world/scores/Score/m_83395_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)I net/minecraft/world/scores/Score/lambda$static$0 (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)I +MD: net/minecraft/world/scores/Score/m_83398_ (Z)V net/minecraft/world/scores/Score/setLocked (Z)V +MD: net/minecraft/world/scores/Score/m_83400_ ()I net/minecraft/world/scores/Score/getScore ()I +MD: net/minecraft/world/scores/Score/m_83401_ ()V net/minecraft/world/scores/Score/reset ()V +MD: net/minecraft/world/scores/Score/m_83402_ (I)V net/minecraft/world/scores/Score/setScore (I)V +MD: net/minecraft/world/scores/Score/m_83404_ ()Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Score/getObjective ()Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Score/m_83405_ ()Ljava/lang/String; net/minecraft/world/scores/Score/getOwner ()Ljava/lang/String; +MD: net/minecraft/world/scores/Score/m_83406_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/scores/Score/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/scores/Score/m_83407_ ()Z net/minecraft/world/scores/Score/isLocked ()Z +MD: net/minecraft/world/scores/Scoreboard/ ()V net/minecraft/world/scores/Scoreboard/ ()V +MD: net/minecraft/world/scores/Scoreboard/ ()V net/minecraft/world/scores/Scoreboard/ ()V +MD: net/minecraft/world/scores/Scoreboard/m_166094_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/scores/Score;)V net/minecraft/world/scores/Scoreboard/lambda$savePlayerScores$5 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/world/scores/Scoreboard/m_166097_ (Lnet/minecraft/world/scores/Score;)Z net/minecraft/world/scores/Scoreboard/lambda$savePlayerScores$4 (Lnet/minecraft/world/scores/Score;)Z +MD: net/minecraft/world/scores/Scoreboard/m_5734_ (Lnet/minecraft/world/scores/Score;)V net/minecraft/world/scores/Scoreboard/onScoreChanged (Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/world/scores/Scoreboard/m_5973_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onPlayerScoreRemoved (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_6519_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/removePlayerFromTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_6546_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z net/minecraft/world/scores/Scoreboard/addPlayerToTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z +MD: net/minecraft/world/scores/Scoreboard/m_7091_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onObjectiveChanged (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7092_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onObjectiveAdded (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7093_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onObjectiveRemoved (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7136_ (ILnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/setDisplayObjective (ILnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7182_ (Ljava/lang/String;)V net/minecraft/world/scores/Scoreboard/onPlayerRemoved (Ljava/lang/String;)V +MD: net/minecraft/world/scores/Scoreboard/m_7644_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/onTeamRemoved (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_7645_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/onTeamChanged (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_7650_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/onTeamAdded (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_83416_ (I)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/getDisplayObjective (I)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83420_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/scores/Scoreboard/entityRemoved (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/scores/Scoreboard/m_83425_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)Ljava/util/List; net/minecraft/world/scores/Scoreboard/lambda$addObjective$0 (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)Ljava/util/List; +MD: net/minecraft/world/scores/Scoreboard/m_83427_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/world/scores/Scoreboard/forAllObjectives (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/scores/Scoreboard/m_83436_ (Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/addObjective (Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83441_ (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/lambda$forAllObjectives$1 (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_83445_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/Scoreboard/loadPlayerScores (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/Scoreboard/m_83450_ (Lnet/minecraft/nbt/ListTag;Ljava/util/Collection;)V net/minecraft/world/scores/Scoreboard/lambda$savePlayerScores$6 (Lnet/minecraft/nbt/ListTag;Ljava/util/Collection;)V +MD: net/minecraft/world/scores/Scoreboard/m_83453_ (I)Ljava/lang/String; net/minecraft/world/scores/Scoreboard/getDisplaySlotName (I)Ljava/lang/String; +MD: net/minecraft/world/scores/Scoreboard/m_83459_ (Ljava/lang/String;)Z net/minecraft/world/scores/Scoreboard/hasObjective (Ljava/lang/String;)Z +MD: net/minecraft/world/scores/Scoreboard/m_83461_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Z net/minecraft/world/scores/Scoreboard/hasPlayerScore (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Z +MD: net/minecraft/world/scores/Scoreboard/m_83466_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getObjectives ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83469_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/getOrCreateObjective (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83471_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; net/minecraft/world/scores/Scoreboard/getOrCreatePlayerScore (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; +MD: net/minecraft/world/scores/Scoreboard/m_83474_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getObjectiveNames ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83475_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/removePlayerTeam (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_83477_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/getObjective (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83479_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/resetPlayerScore (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_83482_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getTrackedPlayers ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83483_ (Ljava/lang/String;)Ljava/util/Map; net/minecraft/world/scores/Scoreboard/getPlayerScores (Ljava/lang/String;)Ljava/util/Map; +MD: net/minecraft/world/scores/Scoreboard/m_83485_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; net/minecraft/world/scores/Scoreboard/lambda$getOrCreatePlayerScore$3 (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; +MD: net/minecraft/world/scores/Scoreboard/m_83488_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getTeamNames ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83489_ (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/world/scores/Scoreboard/getPlayerTeam (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/world/scores/Scoreboard/m_83491_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getPlayerTeams ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83492_ (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/world/scores/Scoreboard/addPlayerTeam (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/world/scores/Scoreboard/m_83494_ ()[Ljava/lang/String; net/minecraft/world/scores/Scoreboard/getDisplaySlotNames ()[Ljava/lang/String; +MD: net/minecraft/world/scores/Scoreboard/m_83495_ (Ljava/lang/String;)Z net/minecraft/world/scores/Scoreboard/removePlayerFromTeam (Ljava/lang/String;)Z +MD: net/minecraft/world/scores/Scoreboard/m_83497_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/scores/Scoreboard/savePlayerScores ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/scores/Scoreboard/m_83498_ (Lnet/minecraft/world/scores/Objective;)Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getPlayerScores (Lnet/minecraft/world/scores/Objective;)Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83500_ (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/world/scores/Scoreboard/getPlayersTeam (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/world/scores/Scoreboard/m_83502_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/removeObjective (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_83504_ (Ljava/lang/String;)I net/minecraft/world/scores/Scoreboard/getDisplaySlotByName (Ljava/lang/String;)I +MD: net/minecraft/world/scores/Scoreboard/m_83506_ (Ljava/lang/String;)Ljava/util/Map; net/minecraft/world/scores/Scoreboard/lambda$getOrCreatePlayerScore$2 (Ljava/lang/String;)Ljava/util/Map; +MD: net/minecraft/world/scores/ScoreboardSaveData/ (Lnet/minecraft/world/scores/Scoreboard;)V net/minecraft/world/scores/ScoreboardSaveData/ (Lnet/minecraft/world/scores/Scoreboard;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_166102_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; net/minecraft/world/scores/ScoreboardSaveData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; +MD: net/minecraft/world/scores/ScoreboardSaveData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/scores/ScoreboardSaveData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83513_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/scores/ScoreboardSaveData/saveTeams ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83514_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadTeamPlayers (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83521_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V net/minecraft/world/scores/ScoreboardSaveData/lambda$loadObjectives$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83524_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadTeams (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83528_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadObjectives (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83530_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadDisplaySlots (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83532_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/scores/ScoreboardSaveData/saveDisplaySlots (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83534_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/scores/ScoreboardSaveData/saveObjectives ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/scores/Team/ ()V net/minecraft/world/scores/Team/ ()V +MD: net/minecraft/world/scores/Team/m_5758_ ()Ljava/lang/String; net/minecraft/world/scores/Team/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/Team/m_6259_ ()Z net/minecraft/world/scores/Team/canSeeFriendlyInvisibles ()Z +MD: net/minecraft/world/scores/Team/m_6260_ ()Z net/minecraft/world/scores/Team/isAllowFriendlyFire ()Z +MD: net/minecraft/world/scores/Team/m_6809_ ()Ljava/util/Collection; net/minecraft/world/scores/Team/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Team/m_6870_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/Team/getFormattedName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/Team/m_7156_ ()Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team/getCollisionRule ()Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team/m_7414_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/scores/Team/getColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/scores/Team/m_7468_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team/getDeathMessageVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team/m_7470_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team/getNameTagVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team/m_83536_ (Lnet/minecraft/world/scores/Team;)Z net/minecraft/world/scores/Team/isAlliedTo (Lnet/minecraft/world/scores/Team;)Z +MD: net/minecraft/world/scores/Team$CollisionRule/ ()V net/minecraft/world/scores/Team$CollisionRule/ ()V +MD: net/minecraft/world/scores/Team$CollisionRule/ (Ljava/lang/String;ILjava/lang/String;I)V net/minecraft/world/scores/Team$CollisionRule/ (Ljava/lang/String;ILjava/lang/String;I)V +MD: net/minecraft/world/scores/Team$CollisionRule/m_166104_ ()[Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/$values ()[Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83553_ (Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/lambda$static$1 (Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83555_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/byName (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83557_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Team$CollisionRule/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83558_ (Lnet/minecraft/world/scores/Team$CollisionRule;)Ljava/lang/String; net/minecraft/world/scores/Team$CollisionRule/lambda$static$0 (Lnet/minecraft/world/scores/Team$CollisionRule;)Ljava/lang/String; +MD: net/minecraft/world/scores/Team$CollisionRule/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/values ()[Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/values ()[Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$Visibility/ ()V net/minecraft/world/scores/Team$Visibility/ ()V +MD: net/minecraft/world/scores/Team$Visibility/ (Ljava/lang/String;ILjava/lang/String;I)V net/minecraft/world/scores/Team$Visibility/ (Ljava/lang/String;ILjava/lang/String;I)V +MD: net/minecraft/world/scores/Team$Visibility/m_166105_ ()[Ljava/lang/String; net/minecraft/world/scores/Team$Visibility/getAllNames ()[Ljava/lang/String; +MD: net/minecraft/world/scores/Team$Visibility/m_166106_ ()[Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/$values ()[Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/m_83577_ (Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/lambda$static$1 (Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/m_83579_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/byName (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/m_83581_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Team$Visibility/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Team$Visibility/m_83582_ (Lnet/minecraft/world/scores/Team$Visibility;)Ljava/lang/String; net/minecraft/world/scores/Team$Visibility/lambda$static$0 (Lnet/minecraft/world/scores/Team$Visibility;)Ljava/lang/String; +MD: net/minecraft/world/scores/Team$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/values ()[Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/values ()[Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/ ()V net/minecraft/world/scores/criteria/ObjectiveCriteria/ ()V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;)V net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;)V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_166109_ (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/world/scores/criteria/ObjectiveCriteria/registerCustom (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_166113_ (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/world/scores/criteria/ObjectiveCriteria/registerCustom (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_166115_ ()Ljava/util/Set; net/minecraft/world/scores/criteria/ObjectiveCriteria/getCustomCriteriaNames ()Ljava/util/Set; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83611_ (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/scores/criteria/ObjectiveCriteria/getStat (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83614_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/scores/criteria/ObjectiveCriteria/byName (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83616_ (Ljava/lang/String;ILnet/minecraft/stats/StatType;)Ljava/util/Optional; net/minecraft/world/scores/criteria/ObjectiveCriteria/lambda$byName$0 (Ljava/lang/String;ILnet/minecraft/stats/StatType;)Ljava/util/Optional; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83620_ ()Ljava/lang/String; net/minecraft/world/scores/criteria/ObjectiveCriteria/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83621_ ()Z net/minecraft/world/scores/criteria/ObjectiveCriteria/isReadOnly ()Z +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83622_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria/getDefaultRenderType ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ ()V net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ ()V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_166116_ ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/$values ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_7912_ ()Ljava/lang/String; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_83633_ ()Ljava/lang/String; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/getId ()Ljava/lang/String; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_83634_ (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/byId (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/values ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/values ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/ticks/BlackholeTickAccess/ ()V net/minecraft/world/ticks/BlackholeTickAccess/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess/ ()V net/minecraft/world/ticks/BlackholeTickAccess/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess/m_193144_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/ticks/BlackholeTickAccess/emptyContainer ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/ticks/BlackholeTickAccess/m_193145_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/world/ticks/BlackholeTickAccess/emptyLevelList ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/ ()V net/minecraft/world/ticks/BlackholeTickAccess$1/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/BlackholeTickAccess$1/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/m_183574_ ()I net/minecraft/world/ticks/BlackholeTickAccess$1/count ()I +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/BlackholeTickAccess$1/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/ ()V net/minecraft/world/ticks/BlackholeTickAccess$2/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/BlackholeTickAccess$2/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183574_ ()I net/minecraft/world/ticks/BlackholeTickAccess$2/count ()I +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/BlackholeTickAccess$2/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/BlackholeTickAccess$2/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ContainerSingleItem/m_272036_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ticks/ContainerSingleItem/getFirstItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ticks/ContainerSingleItem/m_272108_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ticks/ContainerSingleItem/removeFirstItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ticks/ContainerSingleItem/m_272287_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/ticks/ContainerSingleItem/setFirstItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/ticks/ContainerSingleItem/m_6211_ ()V net/minecraft/world/ticks/ContainerSingleItem/clearContent ()V +MD: net/minecraft/world/ticks/ContainerSingleItem/m_6643_ ()I net/minecraft/world/ticks/ContainerSingleItem/getContainerSize ()I +MD: net/minecraft/world/ticks/ContainerSingleItem/m_7983_ ()Z net/minecraft/world/ticks/ContainerSingleItem/isEmpty ()Z +MD: net/minecraft/world/ticks/ContainerSingleItem/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ticks/ContainerSingleItem/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ticks/LevelChunkTicks/ (Ljava/util/List;)V net/minecraft/world/ticks/LevelChunkTicks/ (Ljava/util/List;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/ ()V net/minecraft/world/ticks/LevelChunkTicks/ ()V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/ticks/LevelChunkTicks/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; net/minecraft/world/ticks/LevelChunkTicks/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelChunkTicks/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183574_ ()I net/minecraft/world/ticks/LevelChunkTicks/count ()I +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelChunkTicks/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193171_ (J)V net/minecraft/world/ticks/LevelChunkTicks/unpack (J)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193181_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/ticks/LevelChunkTicks/setOnTickAdded (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193183_ (Ljava/util/function/Predicate;)V net/minecraft/world/ticks/LevelChunkTicks/removeIf (Ljava/util/function/Predicate;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193185_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/ticks/LevelChunkTicks/load (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193189_ ()Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/LevelChunkTicks/peek ()Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193193_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelChunkTicks/scheduleUnchecked (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193195_ ()Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/LevelChunkTicks/poll ()Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193196_ ()Ljava/util/stream/Stream; net/minecraft/world/ticks/LevelChunkTicks/getAll ()Ljava/util/stream/Stream; +MD: net/minecraft/world/ticks/LevelTickAccess/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelTickAccess/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelTicks/ ()V net/minecraft/world/ticks/LevelTicks/ ()V +MD: net/minecraft/world/ticks/LevelTicks/ (Ljava/util/function/LongPredicate;Ljava/util/function/Supplier;)V net/minecraft/world/ticks/LevelTicks/ (Ljava/util/function/LongPredicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/ticks/LevelTicks/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_183574_ ()I net/minecraft/world/ticks/LevelTicks/count ()I +MD: net/minecraft/world/ticks/LevelTicks/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelTicks/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelTicks/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_193214_ (I)Z net/minecraft/world/ticks/LevelTicks/canScheduleMoreTicks (I)Z +MD: net/minecraft/world/ticks/LevelTicks/m_193216_ (J)V net/minecraft/world/ticks/LevelTicks/sortContainersToTick (J)V +MD: net/minecraft/world/ticks/LevelTicks/m_193218_ (JI)V net/minecraft/world/ticks/LevelTicks/drainContainers (JI)V +MD: net/minecraft/world/ticks/LevelTicks/m_193221_ (JILnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/world/ticks/LevelTicks/collectTicks (JILnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193225_ (JILjava/util/function/BiConsumer;)V net/minecraft/world/ticks/LevelTicks/tick (JILjava/util/function/BiConsumer;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193229_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/ticks/LevelTicks/removeContainer (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193231_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks/addContainer (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193234_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/ticks/LevelTicks/clearArea (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193236_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer;)V net/minecraft/world/ticks/LevelTicks/forContainersInArea (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193239_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z net/minecraft/world/ticks/LevelTicks/lambda$clearArea$3 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_193242_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V net/minecraft/world/ticks/LevelTicks/copyArea (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193245_ (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;)I net/minecraft/world/ticks/LevelTicks/lambda$static$0 (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;)I +MD: net/minecraft/world/ticks/LevelTicks/m_193248_ (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/lambda$new$2 (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193256_ (Lnet/minecraft/core/Vec3i;JJLnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/lambda$copyAreaFrom$7 (Lnet/minecraft/core/Vec3i;JJLnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193261_ (Lit/unimi/dsi/fastutil/longs/Long2LongOpenHashMap;)V net/minecraft/world/ticks/LevelTicks/lambda$new$1 (Lit/unimi/dsi/fastutil/longs/Long2LongOpenHashMap;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193267_ (Ljava/util/Queue;Lnet/minecraft/world/ticks/LevelChunkTicks;JI)V net/minecraft/world/ticks/LevelTicks/drainFromCurrentContainer (Ljava/util/Queue;Lnet/minecraft/world/ticks/LevelChunkTicks;JI)V +MD: net/minecraft/world/ticks/LevelTicks/m_193272_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/ticks/LevelTicks/runCollectedTicks (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193274_ (Ljava/util/function/Predicate;JLnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks/lambda$clearArea$4 (Ljava/util/function/Predicate;JLnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193278_ ()V net/minecraft/world/ticks/LevelTicks/rescheduleLeftoverContainers ()V +MD: net/minecraft/world/ticks/LevelTicks/m_193279_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/updateContainerScheduling (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193284_ ()V net/minecraft/world/ticks/LevelTicks/cleanupAfterTick ()V +MD: net/minecraft/world/ticks/LevelTicks/m_193285_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/scheduleForThisTick (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193287_ ()V net/minecraft/world/ticks/LevelTicks/calculateTickSetIfNeeded ()V +MD: net/minecraft/world/ticks/LevelTicks/m_200920_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z net/minecraft/world/ticks/LevelTicks/lambda$copyAreaFrom$5 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_200928_ (Ljava/util/function/Predicate;Ljava/util/List;JLnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks/lambda$copyAreaFrom$6 (Ljava/util/function/Predicate;Ljava/util/List;JLnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/LevelTicks/m_264560_ (Lnet/minecraft/world/ticks/LevelTicks;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V net/minecraft/world/ticks/LevelTicks/copyAreaFrom (Lnet/minecraft/world/ticks/LevelTicks;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer/m_193288_ (JLnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer/accept (JLnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/ProtoChunkTicks/ ()V net/minecraft/world/ticks/ProtoChunkTicks/ ()V +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; net/minecraft/world/ticks/ProtoChunkTicks/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/ProtoChunkTicks/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183574_ ()I net/minecraft/world/ticks/ProtoChunkTicks/count ()I +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/ProtoChunkTicks/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_193295_ (Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/ticks/ProtoChunkTicks/schedule (Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_193302_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/ProtoChunkTicks; net/minecraft/world/ticks/ProtoChunkTicks/load (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/ProtoChunkTicks; +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_193306_ ()Ljava/util/List; net/minecraft/world/ticks/ProtoChunkTicks/scheduledTicks ()Ljava/util/List; +MD: net/minecraft/world/ticks/SavedTick/ ()V net/minecraft/world/ticks/SavedTick/ ()V +MD: net/minecraft/world/ticks/SavedTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)V net/minecraft/world/ticks/SavedTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)V +MD: net/minecraft/world/ticks/SavedTick/equals (Ljava/lang/Object;)Z net/minecraft/world/ticks/SavedTick/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/SavedTick/f_193311_ ()Ljava/lang/Object; net/minecraft/world/ticks/SavedTick/type ()Ljava/lang/Object; +MD: net/minecraft/world/ticks/SavedTick/f_193312_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/ticks/SavedTick/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/ticks/SavedTick/f_193313_ ()I net/minecraft/world/ticks/SavedTick/delay ()I +MD: net/minecraft/world/ticks/SavedTick/f_193314_ ()Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/SavedTick/priority ()Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/SavedTick/hashCode ()I net/minecraft/world/ticks/SavedTick/hashCode ()I +MD: net/minecraft/world/ticks/SavedTick/m_193328_ (JJ)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/SavedTick/unpack (JJ)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/SavedTick/m_193331_ (Lnet/minecraft/world/ticks/ScheduledTick;Ljava/util/function/Function;J)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ticks/SavedTick/saveTick (Lnet/minecraft/world/ticks/ScheduledTick;Ljava/util/function/Function;J)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ticks/SavedTick/m_193335_ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/SavedTick; net/minecraft/world/ticks/SavedTick/probe (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/SavedTick; +MD: net/minecraft/world/ticks/SavedTick/m_193338_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ticks/SavedTick/saveTick (Ljava/lang/String;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ticks/SavedTick/m_193343_ (Ljava/util/function/Function;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ticks/SavedTick/save (Ljava/util/function/Function;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ticks/SavedTick/m_193350_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Consumer;)V net/minecraft/world/ticks/SavedTick/loadTickList (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/ticks/SavedTick/m_210662_ (JLjava/util/function/Consumer;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/ticks/SavedTick/lambda$loadTickList$0 (JLjava/util/function/Consumer;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/ticks/SavedTick/m_210666_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/Object;)Lnet/minecraft/world/ticks/SavedTick; net/minecraft/world/ticks/SavedTick/lambda$loadTick$1 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/Object;)Lnet/minecraft/world/ticks/SavedTick; +MD: net/minecraft/world/ticks/SavedTick/m_210669_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Function;)Ljava/util/Optional; net/minecraft/world/ticks/SavedTick/loadTick (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Function;)Ljava/util/Optional; +MD: net/minecraft/world/ticks/SavedTick/toString ()Ljava/lang/String; net/minecraft/world/ticks/SavedTick/toString ()Ljava/lang/String; +MD: net/minecraft/world/ticks/SavedTick$1/ ()V net/minecraft/world/ticks/SavedTick$1/ ()V +MD: net/minecraft/world/ticks/SavedTick$1/equals (Lnet/minecraft/world/ticks/SavedTick;Lnet/minecraft/world/ticks/SavedTick;)Z net/minecraft/world/ticks/SavedTick$1/equals (Lnet/minecraft/world/ticks/SavedTick;Lnet/minecraft/world/ticks/SavedTick;)Z +MD: net/minecraft/world/ticks/SavedTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/ticks/SavedTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/SavedTick$1/hashCode (Ljava/lang/Object;)I net/minecraft/world/ticks/SavedTick$1/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/world/ticks/SavedTick$1/hashCode (Lnet/minecraft/world/ticks/SavedTick;)I net/minecraft/world/ticks/SavedTick$1/hashCode (Lnet/minecraft/world/ticks/SavedTick;)I +MD: net/minecraft/world/ticks/ScheduledTick/ ()V net/minecraft/world/ticks/ScheduledTick/ ()V +MD: net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JJ)V net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JJ)V +MD: net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JLnet/minecraft/world/ticks/TickPriority;J)V net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JLnet/minecraft/world/ticks/TickPriority;J)V +MD: net/minecraft/world/ticks/ScheduledTick/equals (Ljava/lang/Object;)Z net/minecraft/world/ticks/ScheduledTick/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ScheduledTick/f_193376_ ()Ljava/lang/Object; net/minecraft/world/ticks/ScheduledTick/type ()Ljava/lang/Object; +MD: net/minecraft/world/ticks/ScheduledTick/f_193377_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/ticks/ScheduledTick/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/ticks/ScheduledTick/f_193378_ ()J net/minecraft/world/ticks/ScheduledTick/triggerTick ()J +MD: net/minecraft/world/ticks/ScheduledTick/f_193379_ ()Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/ScheduledTick/priority ()Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/ScheduledTick/f_193380_ ()J net/minecraft/world/ticks/ScheduledTick/subTickOrder ()J +MD: net/minecraft/world/ticks/ScheduledTick/hashCode ()I net/minecraft/world/ticks/ScheduledTick/hashCode ()I +MD: net/minecraft/world/ticks/ScheduledTick/m_193394_ (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I net/minecraft/world/ticks/ScheduledTick/lambda$static$1 (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I +MD: net/minecraft/world/ticks/ScheduledTick/m_193397_ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/ScheduledTick/probe (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/ScheduledTick/m_193405_ (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I net/minecraft/world/ticks/ScheduledTick/lambda$static$0 (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I +MD: net/minecraft/world/ticks/ScheduledTick/toString ()Ljava/lang/String; net/minecraft/world/ticks/ScheduledTick/toString ()Ljava/lang/String; +MD: net/minecraft/world/ticks/ScheduledTick$1/ ()V net/minecraft/world/ticks/ScheduledTick$1/ ()V +MD: net/minecraft/world/ticks/ScheduledTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/ticks/ScheduledTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ScheduledTick$1/equals (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)Z net/minecraft/world/ticks/ScheduledTick$1/equals (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)Z +MD: net/minecraft/world/ticks/ScheduledTick$1/hashCode (Ljava/lang/Object;)I net/minecraft/world/ticks/ScheduledTick$1/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/world/ticks/ScheduledTick$1/hashCode (Lnet/minecraft/world/ticks/ScheduledTick;)I net/minecraft/world/ticks/ScheduledTick$1/hashCode (Lnet/minecraft/world/ticks/ScheduledTick;)I +MD: net/minecraft/world/ticks/SerializableTickContainer/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; net/minecraft/world/ticks/SerializableTickContainer/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/ticks/TickAccess/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/TickAccess/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/TickAccess/m_183574_ ()I net/minecraft/world/ticks/TickAccess/count ()I +MD: net/minecraft/world/ticks/TickAccess/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/TickAccess/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/TickPriority/ ()V net/minecraft/world/ticks/TickPriority/ ()V +MD: net/minecraft/world/ticks/TickPriority/ (Ljava/lang/String;II)V net/minecraft/world/ticks/TickPriority/ (Ljava/lang/String;II)V +MD: net/minecraft/world/ticks/TickPriority/m_193445_ ()I net/minecraft/world/ticks/TickPriority/getValue ()I +MD: net/minecraft/world/ticks/TickPriority/m_193446_ (I)Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/byValue (I)Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/TickPriority/m_193448_ ()[Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/$values ()[Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/TickPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/TickPriority/values ()[Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/values ()[Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/WorldGenTickAccess/ (Ljava/util/function/Function;)V net/minecraft/world/ticks/WorldGenTickAccess/ (Ljava/util/function/Function;)V +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/WorldGenTickAccess/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183574_ ()I net/minecraft/world/ticks/WorldGenTickAccess/count ()I +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/WorldGenTickAccess/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/WorldGenTickAccess/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z diff --git a/build/downloadMCMeta/version.json b/build/downloadMCMeta/version.json index b2074da06..b00d61b86 100644 --- a/build/downloadMCMeta/version.json +++ b/build/downloadMCMeta/version.json @@ -1 +1 @@ -{"arguments": {"game": ["--username", "${auth_player_name}", "--version", "${version_name}", "--gameDir", "${game_directory}", "--assetsDir", "${assets_root}", "--assetIndex", "${assets_index_name}", "--uuid", "${auth_uuid}", "--accessToken", "${auth_access_token}", "--clientId", "${clientid}", "--xuid", "${auth_xuid}", "--userType", "${user_type}", "--versionType", "${version_type}", {"rules": [{"action": "allow", "features": {"is_demo_user": true}}], "value": "--demo"}, {"rules": [{"action": "allow", "features": {"has_custom_resolution": true}}], "value": ["--width", "${resolution_width}", "--height", "${resolution_height}"]}, {"rules": [{"action": "allow", "features": {"has_quick_plays_support": true}}], "value": ["--quickPlayPath", "${quickPlayPath}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_singleplayer": true}}], "value": ["--quickPlaySingleplayer", "${quickPlaySingleplayer}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_multiplayer": true}}], "value": ["--quickPlayMultiplayer", "${quickPlayMultiplayer}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_realms": true}}], "value": ["--quickPlayRealms", "${quickPlayRealms}"]}], "jvm": [{"rules": [{"action": "allow", "os": {"name": "osx"}}], "value": ["-XstartOnFirstThread"]}, {"rules": [{"action": "allow", "os": {"name": "windows"}}], "value": "-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump"}, {"rules": [{"action": "allow", "os": {"arch": "x86"}}], "value": "-Xss1M"}, "-Djava.library.path=${natives_directory}", "-Djna.tmpdir=${natives_directory}", "-Dorg.lwjgl.system.SharedLibraryExtractPath=${natives_directory}", "-Dio.netty.native.workdir=${natives_directory}", "-Dminecraft.launcher.brand=${launcher_name}", "-Dminecraft.launcher.version=${launcher_version}", "-cp", "${classpath}"]}, "assetIndex": {"id": "5", "sha1": "1fb34606b21ae29b59b7feef1563466b90244eb0", "size": 412473, "totalSize": 638060325, "url": "https://piston-meta.mojang.com/v1/packages/1fb34606b21ae29b59b7feef1563466b90244eb0/5.json"}, "assets": "5", "complianceLevel": 1, "downloads": {"client": {"sha1": "0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838", "size": 23028853, "url": "https://piston-data.mojang.com/v1/objects/0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838/client.jar"}, "client_mappings": {"sha1": "6c48521eed01fe2e8ecdadbd5ae348415f3c47da", "size": 8001795, "url": "https://piston-data.mojang.com/v1/objects/6c48521eed01fe2e8ecdadbd5ae348415f3c47da/client.txt"}, "server": {"sha1": "84194a2f286ef7c14ed7ce0090dba59902951553", "size": 47791053, "url": "https://piston-data.mojang.com/v1/objects/84194a2f286ef7c14ed7ce0090dba59902951553/server.jar"}, "server_mappings": {"sha1": "0b4dba049482496c507b2387a73a913230ebbd76", "size": 6154195, "url": "https://piston-data.mojang.com/v1/objects/0b4dba049482496c507b2387a73a913230ebbd76/server.txt"}}, "id": "1.20.1", "javaVersion": {"component": "java-runtime-gamma", "majorVersion": 17}, "libraries": [{"downloads": {"artifact": {"path": "ca/weblite/java-objc-bridge/1.1/java-objc-bridge-1.1.jar", "sha1": "1227f9e0666314f9de41477e3ec277e542ed7f7b", "size": 1330045, "url": "https://libraries.minecraft.net/ca/weblite/java-objc-bridge/1.1/java-objc-bridge-1.1.jar"}}, "name": "ca.weblite:java-objc-bridge:1.1", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar", "sha1": "54f5efc19bca95d709d9a37d19ffcbba3d21c1a6", "size": 947865, "url": "https://libraries.minecraft.net/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar"}}, "name": "com.github.oshi:oshi-core:6.2.2"}, {"downloads": {"artifact": {"path": "com/google/code/gson/gson/2.10/gson-2.10.jar", "sha1": "dd9b193aef96e973d5a11ab13cd17430c2e4306b", "size": 286235, "url": "https://libraries.minecraft.net/com/google/code/gson/gson/2.10/gson-2.10.jar"}}, "name": "com.google.code.gson:gson:2.10"}, {"downloads": {"artifact": {"path": "com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", "sha1": "1dcf1de382a0bf95a3d8b0849546c88bac1292c9", "size": 4617, "url": "https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"}}, "name": "com.google.guava:failureaccess:1.0.1"}, {"downloads": {"artifact": {"path": "com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", "sha1": "60458f877d055d0c9114d9e1a2efb737b4bc282c", "size": 2959479, "url": "https://libraries.minecraft.net/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"}}, "name": "com.google.guava:guava:31.1-jre"}, {"downloads": {"artifact": {"path": "com/ibm/icu/icu4j/71.1/icu4j-71.1.jar", "sha1": "9e7d3304c23f9ba5cb71915f7cce23231a57a445", "size": 13963762, "url": "https://libraries.minecraft.net/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar"}}, "name": "com.ibm.icu:icu4j:71.1"}, {"downloads": {"artifact": {"path": "com/mojang/authlib/4.0.43/authlib-4.0.43.jar", "sha1": "2ff9d747a77570a07a60d32ac77eb6162ad2a2d9", "size": 121766, "url": "https://libraries.minecraft.net/com/mojang/authlib/4.0.43/authlib-4.0.43.jar"}}, "name": "com.mojang:authlib:4.0.43"}, {"downloads": {"artifact": {"path": "com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar", "sha1": "5c685c5ffa94c4cd39496c7184c1d122e515ecef", "size": 964, "url": "https://libraries.minecraft.net/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar"}}, "name": "com.mojang:blocklist:1.0.10"}, {"downloads": {"artifact": {"path": "com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar", "sha1": "5244ce82c3337bba4a196a3ce858bfaecc74404a", "size": 77121, "url": "https://libraries.minecraft.net/com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar"}}, "name": "com.mojang:brigadier:1.1.8"}, {"downloads": {"artifact": {"path": "com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar", "sha1": "3ba4a30557a9b057760af4011f909ba619fc5125", "size": 689960, "url": "https://libraries.minecraft.net/com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar"}}, "name": "com.mojang:datafixerupper:6.0.8"}, {"downloads": {"artifact": {"path": "com/mojang/logging/1.1.1/logging-1.1.1.jar", "sha1": "832b8e6674a9b325a5175a3a6267dfaf34c85139", "size": 15343, "url": "https://libraries.minecraft.net/com/mojang/logging/1.1.1/logging-1.1.1.jar"}}, "name": "com.mojang:logging:1.1.1"}, {"downloads": {"artifact": {"path": "com/mojang/patchy/2.2.10/patchy-2.2.10.jar", "sha1": "da05971b07cbb379d002cf7eaec6a2048211fefc", "size": 4439, "url": "https://libraries.minecraft.net/com/mojang/patchy/2.2.10/patchy-2.2.10.jar"}}, "name": "com.mojang:patchy:2.2.10"}, {"downloads": {"artifact": {"path": "com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar", "sha1": "3cad216e3a7f0c19b4b394388bc9ffc446f13b14", "size": 12243, "url": "https://libraries.minecraft.net/com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar"}}, "name": "com.mojang:text2speech:1.17.9"}, {"downloads": {"artifact": {"path": "commons-codec/commons-codec/1.15/commons-codec-1.15.jar", "sha1": "49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d", "size": 353793, "url": "https://libraries.minecraft.net/commons-codec/commons-codec/1.15/commons-codec-1.15.jar"}}, "name": "commons-codec:commons-codec:1.15"}, {"downloads": {"artifact": {"path": "commons-io/commons-io/2.11.0/commons-io-2.11.0.jar", "sha1": "a2503f302b11ebde7ebc3df41daebe0e4eea3689", "size": 327135, "url": "https://libraries.minecraft.net/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar"}}, "name": "commons-io:commons-io:2.11.0"}, {"downloads": {"artifact": {"path": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar", "sha1": "4bfc12adfe4842bf07b657f0369c4cb522955686", "size": 61829, "url": "https://libraries.minecraft.net/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"}}, "name": "commons-logging:commons-logging:1.2"}, {"downloads": {"artifact": {"path": "io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar", "sha1": "a544270cf1ae8b8077082f5036436a9a9971ea71", "size": 304664, "url": "https://libraries.minecraft.net/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar"}}, "name": "io.netty:netty-buffer:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar", "sha1": "b77200379acb345a9ffdece1c605e591ac3e4e0a", "size": 339155, "url": "https://libraries.minecraft.net/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar"}}, "name": "io.netty:netty-codec:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar", "sha1": "022d148e85c3f5ebdacc0ce1f5aabb1d420f73f3", "size": 653880, "url": "https://libraries.minecraft.net/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar"}}, "name": "io.netty:netty-common:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar", "sha1": "644041d1fa96a5d3130a29e8978630d716d76e38", "size": 538569, "url": "https://libraries.minecraft.net/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar"}}, "name": "io.netty:netty-handler:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar", "sha1": "38f665ae8dcd29032eea31245ba7806bed2e0fa8", "size": 37776, "url": "https://libraries.minecraft.net/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar"}}, "name": "io.netty:netty-resolver:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar", "sha1": "e7c7dd18deac93105797f30057c912651ea76521", "size": 142066, "url": "https://libraries.minecraft.net/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport-classes-epoll:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar", "sha1": "476409d6255001ca53a55f65b01c13822f8dc93a", "size": 39489, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar"}}, "name": "io.netty:netty-transport-native-epoll:4.1.82.Final:linux-aarch_64", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar", "sha1": "c7350a71920f3ae9142945e25fed4846cce53374", "size": 37922, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar"}}, "name": "io.netty:netty-transport-native-epoll:4.1.82.Final:linux-x86_64", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar", "sha1": "3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce", "size": 43684, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport-native-unix-common:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar", "sha1": "e431a218d91acb6476ccad5f5aafde50aa3945ca", "size": 485752, "url": "https://libraries.minecraft.net/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport:4.1.82.Final"}, {"downloads": {"artifact": {"path": "it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar", "sha1": "bb7ea75ecdb216654237830b3a96d87ad91f8cc5", "size": 23376043, "url": "https://libraries.minecraft.net/it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar"}}, "name": "it.unimi.dsi:fastutil:8.5.9"}, {"downloads": {"artifact": {"path": "net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar", "sha1": "097406a297c852f4a41e688a176ec675f72e8329", "size": 1356627, "url": "https://libraries.minecraft.net/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar"}}, "name": "net.java.dev.jna:jna-platform:5.12.1"}, {"downloads": {"artifact": {"path": "net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar", "sha1": "b1e93a735caea94f503e95e6fe79bf9cdc1e985d", "size": 1866196, "url": "https://libraries.minecraft.net/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar"}}, "name": "net.java.dev.jna:jna:5.12.1"}, {"downloads": {"artifact": {"path": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", "sha1": "4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c", "size": 78146, "url": "https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar"}}, "name": "net.sf.jopt-simple:jopt-simple:5.0.4"}, {"downloads": {"artifact": {"path": "org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", "sha1": "4ec95b60d4e86b5c95a0e919cb172a0af98011ef", "size": 1018316, "url": "https://libraries.minecraft.net/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar"}}, "name": "org.apache.commons:commons-compress:1.21"}, {"downloads": {"artifact": {"path": "org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", "sha1": "c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e", "size": 587402, "url": "https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar"}}, "name": "org.apache.commons:commons-lang3:3.12.0"}, {"downloads": {"artifact": {"path": "org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar", "sha1": "e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada", "size": 780321, "url": "https://libraries.minecraft.net/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"}}, "name": "org.apache.httpcomponents:httpclient:4.5.13"}, {"downloads": {"artifact": {"path": "org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar", "sha1": "7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d", "size": 328324, "url": "https://libraries.minecraft.net/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar"}}, "name": "org.apache.httpcomponents:httpcore:4.4.15"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar", "sha1": "ea1b37f38c327596b216542bc636cfdc0b8036fa", "size": 317566, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-api:2.19.0"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar", "sha1": "3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb", "size": 1864386, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-core:2.19.0"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar", "sha1": "5c04bfdd63ce9dceb2e284b81e96b6a70010ee10", "size": 27721, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0"}, {"downloads": {"artifact": {"path": "org/joml/joml/1.10.5/joml-1.10.5.jar", "sha1": "22566d58af70ad3d72308bab63b8339906deb649", "size": 712082, "url": "https://libraries.minecraft.net/org/joml/joml/1.10.5/joml-1.10.5.jar"}}, "name": "org.joml:joml:1.10.5"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar", "sha1": "cbac1b8d30cb4795149c1ef540f912671a8616d0", "size": 128801, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-linux.jar", "sha1": "81716978214ecbda15050ca394b06ef61501a49e", "size": 119817, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos.jar", "sha1": "9ec4ce1fc8c85fdef03ef4ff2aace6f5775fb280", "size": 131655, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos-arm64.jar", "sha1": "cac0d3f712a3da7641fa174735a5f315de7ffe0a", "size": 129077, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows.jar", "sha1": "ed892f945cf7e79c8756796f32d00fa4ceaf573b", "size": 145512, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-arm64.jar", "sha1": "beda65ee503443e60aa196d58ed31f8d001dc22a", "size": 123808, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-x86.jar", "sha1": "b997e3391d6ce8f05487e7335d95c606043884a1", "size": 139251, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar", "sha1": "a817bcf213db49f710603677457567c37d53e103", "size": 36601, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-linux.jar", "sha1": "33dbb017b6ed6b25f993ad9d56741a49e7937718", "size": 166524, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos.jar", "sha1": "56424dc8db3cfb8e7b594aa6d59a4f4387b7f544", "size": 117480, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos-arm64.jar", "sha1": "e577b87d8ad2ade361aaea2fcf226c660b15dee8", "size": 103475, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows.jar", "sha1": "948a89b76a16aa324b046ae9308891216ffce5f9", "size": 135585, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar", "sha1": "cae85c4edb219c88b6a0c26a87955ad98dc9519d", "size": 114250, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-x86.jar", "sha1": "fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324", "size": 110405, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar", "sha1": "2623a6b8ae1dfcd880738656a9f0243d2e6840bd", "size": 88237, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-linux.jar", "sha1": "f906b6439f6daa66001182ea7727e3467a93681b", "size": 476825, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos.jar", "sha1": "3a57b8911835fb58b5e558d0ca0d28157e263d45", "size": 397196, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos-arm64.jar", "sha1": "23d55e7490b57495320f6c9e1936d78fd72c4ef8", "size": 346125, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows.jar", "sha1": "30a474d0e57193d7bc128849a3ab66bc9316fdb1", "size": 576872, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-arm64.jar", "sha1": "40d65f1a7368a2aa47336f9cb69f5a190cf9975a", "size": 505234, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-x86.jar", "sha1": "888349f7b1be6fbae58bf8edfb9ef12def04c4e3", "size": 520313, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar", "sha1": "831a5533a21a5f4f81bbc51bb13e9899319b5411", "size": 921563, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-linux.jar", "sha1": "ab9ab6fde3743e3550fa5d46d785ecb45b047d99", "size": 79125, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos.jar", "sha1": "a0d12697ea019a7362eff26475b0531340e876a6", "size": 40709, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos-arm64.jar", "sha1": "eafe34b871d966292e8db0f1f3d6b8b110d4e91d", "size": 41665, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows.jar", "sha1": "c1807e9bd571402787d7e37e3029776ae2513bb8", "size": 100205, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-arm64.jar", "sha1": "527d78f1e9056aff3ed02ce93019c73c5e8f1721", "size": 82445, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-x86.jar", "sha1": "deef3eb9b178ff2ff3ce893cc72ae741c3a17974", "size": 87463, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar", "sha1": "b119297cf8ed01f247abe8685857f8e7fcf5980f", "size": 112380, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-linux.jar", "sha1": "3ee7aec8686e52867677110415566a5342a80230", "size": 227237, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos.jar", "sha1": "def8879b8d38a47a4cc1d48b1f9a7b772e51258e", "size": 203582, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos-arm64.jar", "sha1": "fcf073ed911752abdca5f0b00a53cfdf17ff8e8b", "size": 178408, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows.jar", "sha1": "86315914ac119efdb02dc9e8e978ade84f1702af", "size": 256301, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-arm64.jar", "sha1": "fde63cdd2605c00636721a6c8b961e41d1f6b247", "size": 216848, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-x86.jar", "sha1": "a8d41f419eecb430b7c91ea2ce2c5c451cae2091", "size": 225147, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar", "sha1": "0ff1914111ef2e3e0110ef2dabc8d8cdaad82347", "size": 6767, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-linux.jar", "sha1": "a35110b9471bea8cde826ab297550ee8c22f5035", "size": 45389, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos.jar", "sha1": "78641a0fa5e9afa714adfdd152c357930c97a1ce", "size": 44821, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos-arm64.jar", "sha1": "972ecc17bad3571e81162153077b4d47b7b9eaa9", "size": 41380, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows.jar", "sha1": "a5d830475ec0958d9fdba1559efa99aef211e6ff", "size": 127930, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar", "sha1": "83a5e780df610829ff3a737822b4f931cffecd91", "size": 109139, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-x86.jar", "sha1": "842eedd876fae354abc308c98a263f6bbc9e8a4d", "size": 110042, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar", "sha1": "ae58664f88e18a9bb2c77b063833ca7aaec484cb", "size": 724243, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-linux.jar", "sha1": "1de885aba434f934201b99f2f1afb142036ac189", "size": 110704, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos.jar", "sha1": "fc6bb723dec2cd031557dccb2a95f0ab80acb9db", "size": 55706, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos-arm64.jar", "sha1": "71d0d5e469c9c95351eb949064497e3391616ac9", "size": 42693, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows.jar", "sha1": "0036c37f16ab611b3aa11f3bcf80b1d509b4ce6b", "size": 159361, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-arm64.jar", "sha1": "0f46cadcf95675908fd3a550d63d9d709cb68998", "size": 130064, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-x86.jar", "sha1": "3b14f4beae9dd39791ec9e12190a9380cd8a3ce6", "size": 134695, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar", "sha1": "f48d81adce2abf5ad3cfe463df517952749e03bc", "size": 61388, "url": "https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar"}}, "name": "org.slf4j:slf4j-api:2.0.1"}], "logging": {"client": {"argument": "-Dlog4j.configurationFile=${path}", "file": {"id": "client-1.12.xml", "sha1": "bd65e7d2e3c237be76cfbef4c2405033d7f91521", "size": 888, "url": "https://piston-data.mojang.com/v1/objects/bd65e7d2e3c237be76cfbef4c2405033d7f91521/client-1.12.xml"}, "type": "log4j2-xml"}}, "mainClass": "net.minecraft.client.main.Main", "minimumLauncherVersion": 21, "releaseTime": "2023-06-12T13:25:51+00:00", "time": "2023-06-12T13:25:51+00:00", "type": "release"} \ No newline at end of file +{"arguments": {"game": ["--username", "${auth_player_name}", "--version", "${version_name}", "--gameDir", "${game_directory}", "--assetsDir", "${assets_root}", "--assetIndex", "${assets_index_name}", "--uuid", "${auth_uuid}", "--accessToken", "${auth_access_token}", "--clientId", "${clientid}", "--xuid", "${auth_xuid}", "--userType", "${user_type}", "--versionType", "${version_type}", {"rules": [{"action": "allow", "features": {"is_demo_user": true}}], "value": "--demo"}, {"rules": [{"action": "allow", "features": {"has_custom_resolution": true}}], "value": ["--width", "${resolution_width}", "--height", "${resolution_height}"]}, {"rules": [{"action": "allow", "features": {"has_quick_plays_support": true}}], "value": ["--quickPlayPath", "${quickPlayPath}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_singleplayer": true}}], "value": ["--quickPlaySingleplayer", "${quickPlaySingleplayer}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_multiplayer": true}}], "value": ["--quickPlayMultiplayer", "${quickPlayMultiplayer}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_realms": true}}], "value": ["--quickPlayRealms", "${quickPlayRealms}"]}], "jvm": [{"rules": [{"action": "allow", "os": {"name": "osx"}}], "value": ["-XstartOnFirstThread"]}, {"rules": [{"action": "allow", "os": {"name": "windows"}}], "value": "-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump"}, {"rules": [{"action": "allow", "os": {"arch": "x86"}}], "value": "-Xss1M"}, "-Djava.library.path=${natives_directory}", "-Djna.tmpdir=${natives_directory}", "-Dorg.lwjgl.system.SharedLibraryExtractPath=${natives_directory}", "-Dio.netty.native.workdir=${natives_directory}", "-Dminecraft.launcher.brand=${launcher_name}", "-Dminecraft.launcher.version=${launcher_version}", "-cp", "${classpath}"]}, "assetIndex": {"id": "5", "sha1": "95cbb98e47f72b53f6158439b1860ce8d69afd9c", "size": 412473, "totalSize": 638470771, "url": "https://piston-meta.mojang.com/v1/packages/95cbb98e47f72b53f6158439b1860ce8d69afd9c/5.json"}, "assets": "5", "complianceLevel": 1, "downloads": {"client": {"sha1": "0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838", "size": 23028853, "url": "https://piston-data.mojang.com/v1/objects/0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838/client.jar"}, "client_mappings": {"sha1": "6c48521eed01fe2e8ecdadbd5ae348415f3c47da", "size": 8001795, "url": "https://piston-data.mojang.com/v1/objects/6c48521eed01fe2e8ecdadbd5ae348415f3c47da/client.txt"}, "server": {"sha1": "84194a2f286ef7c14ed7ce0090dba59902951553", "size": 47791053, "url": "https://piston-data.mojang.com/v1/objects/84194a2f286ef7c14ed7ce0090dba59902951553/server.jar"}, "server_mappings": {"sha1": "0b4dba049482496c507b2387a73a913230ebbd76", "size": 6154195, "url": "https://piston-data.mojang.com/v1/objects/0b4dba049482496c507b2387a73a913230ebbd76/server.txt"}}, "id": "1.20.1", "javaVersion": {"component": "java-runtime-gamma", "majorVersion": 17}, "libraries": [{"downloads": {"artifact": {"path": "ca/weblite/java-objc-bridge/1.1/java-objc-bridge-1.1.jar", "sha1": "1227f9e0666314f9de41477e3ec277e542ed7f7b", "size": 1330045, "url": "https://libraries.minecraft.net/ca/weblite/java-objc-bridge/1.1/java-objc-bridge-1.1.jar"}}, "name": "ca.weblite:java-objc-bridge:1.1", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar", "sha1": "54f5efc19bca95d709d9a37d19ffcbba3d21c1a6", "size": 947865, "url": "https://libraries.minecraft.net/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar"}}, "name": "com.github.oshi:oshi-core:6.2.2"}, {"downloads": {"artifact": {"path": "com/google/code/gson/gson/2.10/gson-2.10.jar", "sha1": "dd9b193aef96e973d5a11ab13cd17430c2e4306b", "size": 286235, "url": "https://libraries.minecraft.net/com/google/code/gson/gson/2.10/gson-2.10.jar"}}, "name": "com.google.code.gson:gson:2.10"}, {"downloads": {"artifact": {"path": "com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", "sha1": "1dcf1de382a0bf95a3d8b0849546c88bac1292c9", "size": 4617, "url": "https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"}}, "name": "com.google.guava:failureaccess:1.0.1"}, {"downloads": {"artifact": {"path": "com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", "sha1": "60458f877d055d0c9114d9e1a2efb737b4bc282c", "size": 2959479, "url": "https://libraries.minecraft.net/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"}}, "name": "com.google.guava:guava:31.1-jre"}, {"downloads": {"artifact": {"path": "com/ibm/icu/icu4j/71.1/icu4j-71.1.jar", "sha1": "9e7d3304c23f9ba5cb71915f7cce23231a57a445", "size": 13963762, "url": "https://libraries.minecraft.net/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar"}}, "name": "com.ibm.icu:icu4j:71.1"}, {"downloads": {"artifact": {"path": "com/mojang/authlib/4.0.43/authlib-4.0.43.jar", "sha1": "2ff9d747a77570a07a60d32ac77eb6162ad2a2d9", "size": 121766, "url": "https://libraries.minecraft.net/com/mojang/authlib/4.0.43/authlib-4.0.43.jar"}}, "name": "com.mojang:authlib:4.0.43"}, {"downloads": {"artifact": {"path": "com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar", "sha1": "5c685c5ffa94c4cd39496c7184c1d122e515ecef", "size": 964, "url": "https://libraries.minecraft.net/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar"}}, "name": "com.mojang:blocklist:1.0.10"}, {"downloads": {"artifact": {"path": "com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar", "sha1": "5244ce82c3337bba4a196a3ce858bfaecc74404a", "size": 77121, "url": "https://libraries.minecraft.net/com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar"}}, "name": "com.mojang:brigadier:1.1.8"}, {"downloads": {"artifact": {"path": "com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar", "sha1": "3ba4a30557a9b057760af4011f909ba619fc5125", "size": 689960, "url": "https://libraries.minecraft.net/com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar"}}, "name": "com.mojang:datafixerupper:6.0.8"}, {"downloads": {"artifact": {"path": "com/mojang/logging/1.1.1/logging-1.1.1.jar", "sha1": "832b8e6674a9b325a5175a3a6267dfaf34c85139", "size": 15343, "url": "https://libraries.minecraft.net/com/mojang/logging/1.1.1/logging-1.1.1.jar"}}, "name": "com.mojang:logging:1.1.1"}, {"downloads": {"artifact": {"path": "com/mojang/patchy/2.2.10/patchy-2.2.10.jar", "sha1": "da05971b07cbb379d002cf7eaec6a2048211fefc", "size": 4439, "url": "https://libraries.minecraft.net/com/mojang/patchy/2.2.10/patchy-2.2.10.jar"}}, "name": "com.mojang:patchy:2.2.10"}, {"downloads": {"artifact": {"path": "com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar", "sha1": "3cad216e3a7f0c19b4b394388bc9ffc446f13b14", "size": 12243, "url": "https://libraries.minecraft.net/com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar"}}, "name": "com.mojang:text2speech:1.17.9"}, {"downloads": {"artifact": {"path": "commons-codec/commons-codec/1.15/commons-codec-1.15.jar", "sha1": "49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d", "size": 353793, "url": "https://libraries.minecraft.net/commons-codec/commons-codec/1.15/commons-codec-1.15.jar"}}, "name": "commons-codec:commons-codec:1.15"}, {"downloads": {"artifact": {"path": "commons-io/commons-io/2.11.0/commons-io-2.11.0.jar", "sha1": "a2503f302b11ebde7ebc3df41daebe0e4eea3689", "size": 327135, "url": "https://libraries.minecraft.net/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar"}}, "name": "commons-io:commons-io:2.11.0"}, {"downloads": {"artifact": {"path": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar", "sha1": "4bfc12adfe4842bf07b657f0369c4cb522955686", "size": 61829, "url": "https://libraries.minecraft.net/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"}}, "name": "commons-logging:commons-logging:1.2"}, {"downloads": {"artifact": {"path": "io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar", "sha1": "a544270cf1ae8b8077082f5036436a9a9971ea71", "size": 304664, "url": "https://libraries.minecraft.net/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar"}}, "name": "io.netty:netty-buffer:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar", "sha1": "b77200379acb345a9ffdece1c605e591ac3e4e0a", "size": 339155, "url": "https://libraries.minecraft.net/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar"}}, "name": "io.netty:netty-codec:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar", "sha1": "022d148e85c3f5ebdacc0ce1f5aabb1d420f73f3", "size": 653880, "url": "https://libraries.minecraft.net/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar"}}, "name": "io.netty:netty-common:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar", "sha1": "644041d1fa96a5d3130a29e8978630d716d76e38", "size": 538569, "url": "https://libraries.minecraft.net/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar"}}, "name": "io.netty:netty-handler:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar", "sha1": "38f665ae8dcd29032eea31245ba7806bed2e0fa8", "size": 37776, "url": "https://libraries.minecraft.net/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar"}}, "name": "io.netty:netty-resolver:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar", "sha1": "e7c7dd18deac93105797f30057c912651ea76521", "size": 142066, "url": "https://libraries.minecraft.net/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport-classes-epoll:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar", "sha1": "476409d6255001ca53a55f65b01c13822f8dc93a", "size": 39489, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar"}}, "name": "io.netty:netty-transport-native-epoll:4.1.82.Final:linux-aarch_64", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar", "sha1": "c7350a71920f3ae9142945e25fed4846cce53374", "size": 37922, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar"}}, "name": "io.netty:netty-transport-native-epoll:4.1.82.Final:linux-x86_64", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar", "sha1": "3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce", "size": 43684, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport-native-unix-common:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar", "sha1": "e431a218d91acb6476ccad5f5aafde50aa3945ca", "size": 485752, "url": "https://libraries.minecraft.net/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport:4.1.82.Final"}, {"downloads": {"artifact": {"path": "it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar", "sha1": "bb7ea75ecdb216654237830b3a96d87ad91f8cc5", "size": 23376043, "url": "https://libraries.minecraft.net/it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar"}}, "name": "it.unimi.dsi:fastutil:8.5.9"}, {"downloads": {"artifact": {"path": "net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar", "sha1": "097406a297c852f4a41e688a176ec675f72e8329", "size": 1356627, "url": "https://libraries.minecraft.net/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar"}}, "name": "net.java.dev.jna:jna-platform:5.12.1"}, {"downloads": {"artifact": {"path": "net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar", "sha1": "b1e93a735caea94f503e95e6fe79bf9cdc1e985d", "size": 1866196, "url": "https://libraries.minecraft.net/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar"}}, "name": "net.java.dev.jna:jna:5.12.1"}, {"downloads": {"artifact": {"path": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", "sha1": "4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c", "size": 78146, "url": "https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar"}}, "name": "net.sf.jopt-simple:jopt-simple:5.0.4"}, {"downloads": {"artifact": {"path": "org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", "sha1": "4ec95b60d4e86b5c95a0e919cb172a0af98011ef", "size": 1018316, "url": "https://libraries.minecraft.net/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar"}}, "name": "org.apache.commons:commons-compress:1.21"}, {"downloads": {"artifact": {"path": "org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", "sha1": "c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e", "size": 587402, "url": "https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar"}}, "name": "org.apache.commons:commons-lang3:3.12.0"}, {"downloads": {"artifact": {"path": "org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar", "sha1": "e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada", "size": 780321, "url": "https://libraries.minecraft.net/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"}}, "name": "org.apache.httpcomponents:httpclient:4.5.13"}, {"downloads": {"artifact": {"path": "org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar", "sha1": "7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d", "size": 328324, "url": "https://libraries.minecraft.net/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar"}}, "name": "org.apache.httpcomponents:httpcore:4.4.15"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar", "sha1": "ea1b37f38c327596b216542bc636cfdc0b8036fa", "size": 317566, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-api:2.19.0"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar", "sha1": "3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb", "size": 1864386, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-core:2.19.0"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar", "sha1": "5c04bfdd63ce9dceb2e284b81e96b6a70010ee10", "size": 27721, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0"}, {"downloads": {"artifact": {"path": "org/joml/joml/1.10.5/joml-1.10.5.jar", "sha1": "22566d58af70ad3d72308bab63b8339906deb649", "size": 712082, "url": "https://libraries.minecraft.net/org/joml/joml/1.10.5/joml-1.10.5.jar"}}, "name": "org.joml:joml:1.10.5"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar", "sha1": "cbac1b8d30cb4795149c1ef540f912671a8616d0", "size": 128801, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-linux.jar", "sha1": "81716978214ecbda15050ca394b06ef61501a49e", "size": 119817, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos.jar", "sha1": "9ec4ce1fc8c85fdef03ef4ff2aace6f5775fb280", "size": 131655, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos-arm64.jar", "sha1": "cac0d3f712a3da7641fa174735a5f315de7ffe0a", "size": 129077, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows.jar", "sha1": "ed892f945cf7e79c8756796f32d00fa4ceaf573b", "size": 145512, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-arm64.jar", "sha1": "beda65ee503443e60aa196d58ed31f8d001dc22a", "size": 123808, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-x86.jar", "sha1": "b997e3391d6ce8f05487e7335d95c606043884a1", "size": 139251, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar", "sha1": "a817bcf213db49f710603677457567c37d53e103", "size": 36601, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-linux.jar", "sha1": "33dbb017b6ed6b25f993ad9d56741a49e7937718", "size": 166524, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos.jar", "sha1": "56424dc8db3cfb8e7b594aa6d59a4f4387b7f544", "size": 117480, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos-arm64.jar", "sha1": "e577b87d8ad2ade361aaea2fcf226c660b15dee8", "size": 103475, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows.jar", "sha1": "948a89b76a16aa324b046ae9308891216ffce5f9", "size": 135585, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar", "sha1": "cae85c4edb219c88b6a0c26a87955ad98dc9519d", "size": 114250, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-x86.jar", "sha1": "fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324", "size": 110405, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar", "sha1": "2623a6b8ae1dfcd880738656a9f0243d2e6840bd", "size": 88237, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-linux.jar", "sha1": "f906b6439f6daa66001182ea7727e3467a93681b", "size": 476825, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos.jar", "sha1": "3a57b8911835fb58b5e558d0ca0d28157e263d45", "size": 397196, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos-arm64.jar", "sha1": "23d55e7490b57495320f6c9e1936d78fd72c4ef8", "size": 346125, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows.jar", "sha1": "30a474d0e57193d7bc128849a3ab66bc9316fdb1", "size": 576872, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-arm64.jar", "sha1": "40d65f1a7368a2aa47336f9cb69f5a190cf9975a", "size": 505234, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-x86.jar", "sha1": "888349f7b1be6fbae58bf8edfb9ef12def04c4e3", "size": 520313, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar", "sha1": "831a5533a21a5f4f81bbc51bb13e9899319b5411", "size": 921563, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-linux.jar", "sha1": "ab9ab6fde3743e3550fa5d46d785ecb45b047d99", "size": 79125, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos.jar", "sha1": "a0d12697ea019a7362eff26475b0531340e876a6", "size": 40709, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos-arm64.jar", "sha1": "eafe34b871d966292e8db0f1f3d6b8b110d4e91d", "size": 41665, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows.jar", "sha1": "c1807e9bd571402787d7e37e3029776ae2513bb8", "size": 100205, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-arm64.jar", "sha1": "527d78f1e9056aff3ed02ce93019c73c5e8f1721", "size": 82445, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-x86.jar", "sha1": "deef3eb9b178ff2ff3ce893cc72ae741c3a17974", "size": 87463, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar", "sha1": "b119297cf8ed01f247abe8685857f8e7fcf5980f", "size": 112380, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-linux.jar", "sha1": "3ee7aec8686e52867677110415566a5342a80230", "size": 227237, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos.jar", "sha1": "def8879b8d38a47a4cc1d48b1f9a7b772e51258e", "size": 203582, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos-arm64.jar", "sha1": "fcf073ed911752abdca5f0b00a53cfdf17ff8e8b", "size": 178408, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows.jar", "sha1": "86315914ac119efdb02dc9e8e978ade84f1702af", "size": 256301, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-arm64.jar", "sha1": "fde63cdd2605c00636721a6c8b961e41d1f6b247", "size": 216848, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-x86.jar", "sha1": "a8d41f419eecb430b7c91ea2ce2c5c451cae2091", "size": 225147, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar", "sha1": "0ff1914111ef2e3e0110ef2dabc8d8cdaad82347", "size": 6767, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-linux.jar", "sha1": "a35110b9471bea8cde826ab297550ee8c22f5035", "size": 45389, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos.jar", "sha1": "78641a0fa5e9afa714adfdd152c357930c97a1ce", "size": 44821, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos-arm64.jar", "sha1": "972ecc17bad3571e81162153077b4d47b7b9eaa9", "size": 41380, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows.jar", "sha1": "a5d830475ec0958d9fdba1559efa99aef211e6ff", "size": 127930, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar", "sha1": "83a5e780df610829ff3a737822b4f931cffecd91", "size": 109139, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-x86.jar", "sha1": "842eedd876fae354abc308c98a263f6bbc9e8a4d", "size": 110042, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar", "sha1": "ae58664f88e18a9bb2c77b063833ca7aaec484cb", "size": 724243, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-linux.jar", "sha1": "1de885aba434f934201b99f2f1afb142036ac189", "size": 110704, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos.jar", "sha1": "fc6bb723dec2cd031557dccb2a95f0ab80acb9db", "size": 55706, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos-arm64.jar", "sha1": "71d0d5e469c9c95351eb949064497e3391616ac9", "size": 42693, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows.jar", "sha1": "0036c37f16ab611b3aa11f3bcf80b1d509b4ce6b", "size": 159361, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-arm64.jar", "sha1": "0f46cadcf95675908fd3a550d63d9d709cb68998", "size": 130064, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-x86.jar", "sha1": "3b14f4beae9dd39791ec9e12190a9380cd8a3ce6", "size": 134695, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar", "sha1": "f48d81adce2abf5ad3cfe463df517952749e03bc", "size": 61388, "url": "https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar"}}, "name": "org.slf4j:slf4j-api:2.0.1"}], "logging": {"client": {"argument": "-Dlog4j.configurationFile=${path}", "file": {"id": "client-1.12.xml", "sha1": "bd65e7d2e3c237be76cfbef4c2405033d7f91521", "size": 888, "url": "https://piston-data.mojang.com/v1/objects/bd65e7d2e3c237be76cfbef4c2405033d7f91521/client-1.12.xml"}, "type": "log4j2-xml"}}, "mainClass": "net.minecraft.client.main.Main", "minimumLauncherVersion": 21, "releaseTime": "2023-06-12T13:25:51+00:00", "time": "2023-06-12T13:25:51+00:00", "type": "release"} \ No newline at end of file diff --git a/build/libs/custom_ore_gen-2.1.5.jar b/build/libs/custom_ore_gen-2.1.5.jar deleted file mode 100644 index 33f80c5425943cb2b9ccc6a4f5b13c16583e8388..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183565 zcmb?j1yq*V*8b@3?(US5?k?#@T0*)-knWJ~?hpy-k`9rUmTmzlDXIU1nLDH2k#X)n zuJy`t!FSlt-p_va-shZG1sO1KbO1CoGynh~0X~2JfdRk(^aTBk2mB}w@cDD`2p_8N7DxSdaVr~R2S!I5E6X?~ zIh$E#_-3eHPvWLAukQ1y1`;s$sgRvFPra*VDd1o=v(eZqjU$!3E-ywSSS;e6n9ls8!b6)2@cVMt@g!g+^$ZRP2jY{(<^$dg~6>AX5VE;wc3_z zjkoQ)@!|JgbfG87QFJ*a8%HHFjH)PDaOr}Vq?gui$gU$2Ivmz`9qx;!Mxtr7ztkcTXTbiix2JQyldv za7&hrLNsqvj<=~h$4FN5&F=U=G+nQ0!Lc01`!Yki;n_Gb19NyBKS8yti9}~JlZPK7 z3G-58@32xg6n~H{L+)^^feJjj1l8AgfM^e^pU~tf`EkeY)y7VJh;wDG#EXE`bL058 zeWp1qnx=>92}hq_4^5otF~e@`2p4$^@QyvK|BgNCNvd@IUer3dl6QVjs}hY)GyI}~+xtd5pWbOv6AUMy}#da`L;Y)nRKX+~;BLTa+QQmjUFa&&4&B3P`dk69^% zqF^@WU2v z2i98JxR}`gE9S=NrE7u5D)?-EV{g_%UymHn8pC_-efUfE8k?BdI#>c(ZEkO4{r|K$ zI$290H3mp&&Dad6SS6p$l0SWH4uZAz2xyVPWC3IHkQUF|CYbC6trTK(=%eClc9ddLt#<>$iL4+ zo`2?bdlO@zpj(^#OO6NH4jMZs10hW(^ku?_nphF;PC|6yVUKSm(Cl8<3;Z+F9n1{u zjsG1H{14f+Qlm6tqyHm=+2A93f6Cxk4j-aA&_c_5G5nga+zOzHm5IH9<^NZ{feILv zoT3$*7z6r)uo!5>F8sZ)F#eLy{{=m{l@WABAL_C{6B0!nZ$}*X`?c@&DAO-l_;0Ak zooJvd`4oO*quVpR773sQw~h4AJ8O<#v+=f&{5xU4tt7GkiMyhY**D^hx1uB^546YV zUWo3@ruV0){ZOvG`iZChzFf2Xl7IglEz<)^82W$=L4@qXHqTN+rK{#u{^V>3?i z)2Q98X=1JC`69>bmC;Cx%in|qK*!q0I10y<3)8VqSi=_&3nit zkH&%`P<>iBP+wWt+H(}{wPcDSz}zt-P~%}MrxRo#A8(&%+lhM5ah-Ig|Dw4y{(~)} znSV$iSjAb#HaVqaZ&(&KE#y0#PhPCKEYWJgvQ7NmD3GeJJW7drBJdWSUJ=JP_1L}& z12d!B&L559t0s*y?Lb2;)_ybQL$EpIKT;jMo#@Ik{HcbXRhY-y;uKjc1iz$+OEM8H z&<|&yk6U!>xh%Px+n!ZH6{K=VHt(}lh~+rDge%411%1N<^XS~Za1>z%75&21-Qsj9 zu9md(c}>&Lb6&R*y=0H;i+dYwLHAme{*6eEjg%_HxjeEC80KBw8hfr2n5n6SM#A58pq2O~- z7w<}V`*n%NmTdc=Dad+}R|tg1I8-{tnaDN+4Qlx@Z#{2^&oW1{*KdHsXEM~c+V~^0 z2!6^e;1-05Qr8fm0El`%f%rQK(Co5EX%@;|% z7|p}e1E2meG;mBfK|FU1y&MB0KI*KLv`tmb8zaTu9%L=oy>o=B&X1?@>Sc@s*l_P# zduj}2_)#04+t9S;A)t8y)6X6lo}ZU3{+}l3Pl5i>Z-qw)-C_mb^S^F8)7j+9co0$z zq1?q$1Ij?+S%&YKIhjUa{_XRW+L@n9Dv5R z1D~J6`*|<+1H2z+QeXrTfqEqBLViv1F06AtL&)4vR5Xa8M^Q-ihM>T)XM67X!;fzK zTpKjZDhDw~4sB;m-Tc09cj8*Lxkbk83B1K&61b<-Un6sUG~uQv2W=rCdYzpXrY{yB z80A0Q8N{)(J`M5y&DVrgjYTB>&0UwA>lC&)q+O+s=$MmPtlJ2-45tWs0pWSw8^ND9 z9)AJxyFvEP$X&Lb;on9sq8S2>9kcR}$W0TN4{a@_ZctB+GYyuhjGf5#gdhiBy7z>< zB=mXW{{~Eiuj*^#jwGsH1N;N9kJPln#qT2(AXa+MvMErmF&kaNVQQH0#+eq}N>nP> zCXsGYEp8UC*aK0u0-v7;?&p)^cc}gt!oF=!Z*g@JBZKe3T|gZ)MLy>z6XzjLDhxxL zqFCMI=|)}FJH=kPc3J`z1~Fltjr6d!A!1`Fr@@HL$U^g?x= zL_Cw@5Hz9ASRH$%b1D)Y8mZb^*XXfls6N$OxBgOvkauMQx3ESX>o@Iykecp=#RdHC zUvEzRHLUM?+PIN6*bZWN$i)l&J>qnz##56{i*DmVNz^Uzt;UBn&%K@vWH5OfH$M)m z7)L{|h^cVs-fsxx@NFiDYL&nRd0Kbk6Hm&RciN)tEqF~bRzxbewgaJa!d@Zr6+vq6rZ|ETo?cb!8EJE6Zsd~QiLfd?5mN!ixRhK;W_$9~9Z!3L4Ywj!w|{5f6mkwWd!`qkUBo+}PH zS{$EVi}Vku!!Ocn=rais9=O*d8+%Le_4X|hZkI76*^NnNE+B8bULTJf8%#mSdAc(m zBT8>B87kR?n555w6pYiazlP`=R|)bQZ;`3K!IVfE(@`+lvq;PsejY}E={BmE!;{OQ zKv>K7a`qSX^e^Uje_%YlZY!aWCp913{FQ9cE^L<>g}6fJ+msn7*SWOmRckz>opqd& zskW&o`@{>|Fx&KAXFUeaHT@mfj}*g&u^~+6V)_Do3S#v7k48+yown<81_IguNj(Q%`3b*0=`1B}54;z|x_ro>DB3kQ&Gnva3yu|QMymB|{l0XuA1FUMH+*M!WT|~1I z7)4|Stz<*I5QI~OQNrj}!q^I_=V@H5n&G`Z(iJT z&2VH*_V2mI`fFVKQO$3&|A$KTMc7u>n8k4DwC;>LSu(p zh0RJ53`f)4I3_(yJSV&Uc1d7#&n3*Rps6NmGOU9~)SZ3P$zc+BknFbsG7LJ`9MS-x z67ZTgCBzCVRguWz#E24=D9tAA1Y}n__<0zuGg{O8$coC|iO7r+^0>;x4yU$MegofW z=DcjB-0VwgQoz#i0dsDlO_tI$mKU=(?im?WwXx?!7hE*2^*O^P>rsW%-5uEc(bA8GK+ zL<(Im03J~CPDmyxjUWfyFy){d5l|F)>wFr)aBSKQN*8VWNbx;fWH66*S2I(g8kJWO zL6O|NcVS^@LM@Tbt3#ADv7XjhB`yoRdI+OTPpe7)Zs^r(R9dDwMNd@cq7@4ko8kqd zWG3GHyXGLdSgSk(=n46IJ@NBB)9*d;<2Y#*cIyCa@!uSvWeu05jzg9z^)5A}Arz(g z;u<#&-sXeDKF`X57qatvI5fLZX3sz~y|m+OJU?@ynZu1>?G3*Ki^xU03RyRd)F(t! zVXVHvO6P>v5Ko=q=4X4ewN|a-prab5vYI$xP_)Wy7uX`wlQLQJ*hGujRMP2YjFr4u z8Lmmk{qx7@ZHjJzbN&V#46Xii0uZ>^y}jHlG;gUU zGF1|Wy`C$+9+iXg;N)|C7f0}%>*ZUA>#~JC=q&l{8gDhf;sm69OMsKZSWN@2!b@M! z4K`fYr(tl(a%nY3gT0UFkBuV8Kk`_vWI;8K_M-T}&w+2_ptgrvBAnODqGEO7Gs5MA z;06mqJ=-;9X`?ai}&P@Lb{xk0??**fLvu0w+k za2=>~e^xm(L0a{Y`B+u^oYN67_*5u!IJtbe@58597p*3dQX&UpNA)Q#L7M?-FbNr- z58x>{ENZKLxT6j@dD-taY&Dsw(4RD|455dH&|~KHyrO-m@)#CDAbLloYkZ)ouqDF) ze+h^G)&W7KI3uY*2T0!QfWMu_zjwfQZP;IVfNMY`e1fCquRH(|m<;rQ>ob<22~JC! z!tD~4WxGw}Qgy+?R%s$<-Xx2(FKTT(U%ozo5_Z|*4jsg69&Jq{A?9j(5)g**tTNz> zj(AbwA(sy3`#x_%q;uA;Y|>D%tp_FV5aO^h_a&m!it8GZu*OeW!^n6$?rO}~#l`Ne z21?!Qf?w0XKREE;oz877@V%`Cz+uR^RBbk7Q8ic60+LQHh8YJ-tm%1<7(!`^?6uLg zQNW7#18WE$%Ev78Un1U@a6mi3H8jzU@jgOr<)(nPd^wCuA#?#jIG{VtRnj?|5J>Y} z_$6WxV==Z+t?AbNgda^_CJ8IX`(>Y{qMt{+V;63F zNnVd`;PkMpc+WI7z_a^qZ{}iI-zO93iu*I?xTW_cG$=XVu@wLZ(9f%-DaxPbQctw>(MuRss&-;Dt2{M6yuKzAtI>yE!|n}1`)Z#S0ioN;&X zLlE}IuoA+&SOB=nD*CHKTcU%gj%wM=$f zohkBF!Z*~!moC%P#Lv~~$G8-$)W&&)^i1Z8aLnD`=-<=;d-Bd|~T<`soy>043w#ZYLr85x#3I z5U;?!H2vHCkUN@wU%~zg@Ixw!q>#z~229{;4r&F1VFQ0MuF2Hc$hIq|eZXsG3!9VO z)ig)vh|6#1k;s|6uh8N$n!}zFK0gZ(8aS+!6xPtSR7g+p!!E&Q@2X^@ z2Wp@M9vUgC2gjo6wCUw?jvuh~0mF@5K!?9_cRB(dgwu9QZ;5-s|61z?)MGtEa~mrY zy(i|@#wPZ^E7QR3HkjX@&>rz~#7{f@L2Ky37M6JEqm3Jo4oMj{77I8cfu_bJPpM%? z>qvZ?iHG+meY6?7ry*5+F?X*)9!b+r(ood5+lIfn@lNK72e0kMZ_WKM>mqkoWpqJC z&vk$RZchz?6USe)8$i;2+j!!f(V|p-(I1_`F+C#fbg{wx6g0Q9bFp~SecNr2 zdpkE7HsQSLa0v%@f@*N1wtP&*itJdZH9UW0oK)4!F8$*2N$ND-=}r;5Am*`kGnM1$ zacEO%bOk9;n#xQB{d?8xY?67RXNo0h;4w6@rH7KJ$!KOJAv~jYNZZY0Yd`F<4)h3& z-G#2Nn=K&`i2DAKMp_*;ehjoI8dE@&zh!z>hu=KStfRtxDvk3DbHKZ z?sRQ)?WetXOXlYmtWRbIt-6OiSK>TZU_SCPRo30H zkWb&%xw3uZvV+^|34Q?{VVw~5Z`6zh^PjX@dIr~M{qJrJXFk;#Eu?(o9 z9zA>}b;aM|I?C#PS4J1td~4!?s73B2?5}0(x6Oos>u*<=3HtB0pCLw?7YU>%d|o%p z!mJy?)x@#+kk0FFI|sO&ra4r-A;lYr$R-K*egkeP+~J8(KoIivs?ndx%3Y`cGCoI3 zs)hP8g!iTeQtbehD~>+>k%G~q1-`op864PZ-}2SwUcUZXbNH?O-)%SjMMcFSyUwFe zD!ROzlwT?K?ThnCw6GE)`6<9rR}~;+&CNbzt%4N0KyP?PJ=QG$8fsOiU7t-)_AGz8 za&=S_B7>R06tVjhwH{+LY~E_$jMufkca|2$z@$dxMJcJFQ+>O~*atGR0@OUt&JfPn zjL-(@TpcLsOR*3cf=4k;c`sg?x3oX_ZI?IWV97iMi2wf1@Ylwr?|fimLrX-7jQR!?z483Dx#wFfMrI}sj<&aVknd#l7SP?ksE;SK1Lns!8BrwWlU`D{`=S@8Y1Che z3O_aOrRJnTXqwx{8U|oJb_@w&dl5zQ3Yv{Kd-;Qif?P8mbJYRFdDR4ws!VdIe$8jT zLOL1fDCNGkvcd)%XNl6Q#=#yX<85?GfYD*1>ol{E&DK|ZY!wo~ z1`ZvIkj`Ibb~c?wt=f!RXtsgIUE|CZvc_iGrPFvLG_BG6GPUxIfJ79=U+dYa?%ds> zYHx7R*zF4tp7-MU=ec7G6hO=0ViWrNRg~M<=m29Qi#$@pF=Zc#A$c1c%yqW+I!EZB zyOs(C6be!y17}+@_OZ{6(p|aI&+T8F1L5cpWh4R*Y=LT<(aLy(bI3`+>aSveCbZk!B%GaWA$I; zi_J>owh1*gmd>7@y|%NBa8@(UnO0=WwOOPGNg3W~4j4lev%2||l^1?9T;#h}s20rx zdn1yrrw3Nz8k{PP`L@So4ei4gAL8jK{<+@A3Kya)N`3FBa9SbP z1r3NJ@>bENs+rIrHwsYfqxy0+I$g@_o+B=7QSO)sW)|Lq9k0T9z)pMCye^>3>iIGE|(zRSdDYi$a` z1=4*TtROFe0E-I?TmV5zQd9}}75Vmoh6MgibaVss7zjX0R7l13@p$xIl*BL`SCrJ3 z!NlgyATfkcM6o_$o!#i!_ruH4WS2Tl!jX);uV;-BjlLEeb|UD>s1;pA3!v}kB{E{9 zSj?s#u3_*YUfk0jS3m|az&`A)4BMa%(Z}vSmG%=#&fjc6w8QVHvEoovRjqPh1fh~@ zPwLaxRcDjy2nfj*9IKK63(%c3@om|w*yDLuX^ggTYM_bvl8ibjzmGyGzPR{tlDXVb zjnzKy%L@S>$E0jVN37UV5S1xfMuX^1 z@(y7Kcn=Bl=F4bECJtvFxq9*vy?MJ0{Snf01Wa!?9XGvq*A?gzfRvcL=xbqppW7V2 za_$D>2LS-MfX|hT>%Ji*^i+gpG7;Ikw)=h^;=()$0U(^y7CgfGiJek*)wBZYr&DCRW|wQ^rB(T zTB}qIH(We<;K|J1=_lvLWcdQ;Gs1w5EJ$DP^`m;}ylC9;0B_Y2RSHy?aSL{^j-iyZ z$!(Jd=x~7@LZxal^*Vz-w)zeQN;F0g$YSr-Drw_FycIm&Oj9EdZy&!0WGYZ=bgkJJ zjct7~YD2JPNn#^Xn%S)ZjpKCh>?83`AxE^yRWz>9NSxbpbgb7wx6SNA!}qhW9+ONC zlJi|jET7%IR*ew4tjnExm?SGJ4uJ4|8TP@+sF9a4TE2iGLJD{X1QMA)bN6ewR_v@k>Mdptyddl1Ghr?`YzJk(R9jv` zt90^me1+VkX-l}#g&^x%yqpoqE>wZBEfw+cg}sCdz#JsN63SNyQ%060ZgLx=V~LqN zOOQ1owx;{OB+J+$Ui03m_5f`{|1_Jv3wK&&YG>C<1zO|6-oe$2oDs7^$>zr|of`>& z-2M_QRtYOuq(ZyJCKj?vHEhZ8X5BupC?C*Jw3f1A%!IwNeR}aJ_&MN>WAoz`=SFj5 zwot&s=$J-O<#+i)iknCAVbBZ;=|iUO{6qt3*=IC6Qu=4_c@;;Vd!dPMR-JnaR`jf7 zX#f~lmo|^xW`wDQhDyTa@%AJQ)O&@pvG)aCwpgeqp1g~fWR?P8>q0<_$JB<6(aDrA z9L5MyK5suIQaGC@kwykX`;kbcW4b9zKoWiYw}|xTd$E5OlPwU;Um{ZZZ$t`L?t9m+ z5C3J}1=$@SwEftH&WG3)rIZ-+lMmjEZy|K{=D175`^(jwgQN`Gk0e$aAYLn+vYV$DvXbPe%MFYkz@$Gs=anG!He|+@ z^pb%Y(7{OE=IQ2l?Mp)EML{WLBqMp-&g#4Hh%jo6T_XMqlWpoWuo1tTg zg?dK(jva`z@ZyUdKeCE`r4;cqkWpLrvPu;Av0v&;{x}5DGq<|kssb|W_MrF=q0$A( z{w02q|Hd!f=m)64%h}+^fcZ$z;V43-G3Ik&U^>T;Lh!LaVt-@EL8e3~Wo*Y4xV2V%jA zG}5e6+{nGM{+iP-Lo`ZW<>ABm#nBmiPkCGpCYf%Qr#oOUFaTkI0;j-*U@sK1A&?pw z24ZPQl>o{LDK=o*=o8@m!qrVMu?BsjdI+dqZG6 zb?=R-@c$gs+jn69i0B~bgR5U?KSASuFFne-$}gJ+{SSN;W!G96!**5^OY@jXA;d2GUrt?sl7fQ{TT(@}YMD$(9z$YB zoxrf^h71Ko2Ocl{c7gKA^SYLaeE7um6KBYSI`1QghgyNwynOXRul<{wxhZ1+mOOqs zgT%IIR8(^CfqcBYba-1WPT8s$AG8>xa6&oxcG0Y!up>l>C%`yj9r&eS zL+0VH9XTQR8ieAHYUr|O78iT19vQ&ctMO+DQyN7NgdR+qOK8BY^{i5iFc=saC3n?W zjgkqQoSU0w*4pd67Tpq%|7u&Z-B~G`?3(HRb)Cc)Dr=Z$l;m<~v(35#K~7tgc@x8{ zlmYGHLTV;~`iM>%olr$4u8HQm+gkb9p(QbJx8Z1NhbCpcB?n3xbL8UiY zN`yCNb#GmkEG*HABUIjHw&1Dwh=r+j(x8spJ%1>1^CEZ5z`_bKO+K1i*s7^M2~qZq zW|aPHO}Vc8;$|TkZOJE4Z}9!Bfn?WUXRXVNt7Vl=OKYjhedF;{21|5zmA4t677rd(8Gn3K4=X{YnaftoafwU z>rB@;ClBn>-&t~?&0IIX?Wc}dQ`an(*NZoy4a<65HraL10pK=cYrT5Gw7sTu-P8iP z|7l4G*w2A#G_jIXDtsNtx8%U9)=f>7Y#fK>hlM$Nh-_*yG9`!F*PttB{a9Bj#Gz~w zt~4qQfc~_jLI*dV`eAd6TIS}ZP6##ZtAt@sd;;^)$=Q?{Nnt_LAQgL+QQ<=r8o}7JXIzw8j}oBSCN>JFG&@dDS43pkd6JH1wa+~~nVzbwJki&c zEg;Fz^^Y}|sR-pM(?RBkxlN1p@5{@s$o zSL}v94!*JtkV!7jEl=gVgrl+Rvg^IvYL9(#nRdh3oM1g>3#yPmwNsJ$|NT6kEF zpi2%WSuWZwjdOCrvQH=5ykgqsin`4{6EQX-a)ZD;TSLPWogX7LEY&GsBZ3v&_at{J zV!=C&d$xF3IylL4zZKD_9e&3fo0fo#9Ay>qt1DY{m;39!6Z>#Z%VmQ@D#9_`#)End z$%xuWu-;2dqmoM^W@cpu8&r70A1Rs3jDSK0q$Aa(vkLT>r7EXkybO|r|K=m55!iRtuL~HL9&e@LFApGjV z?CeghmK|{(edPK`U7UI&fnYZ_NOI<=rvKr}vtzky>(LE%5K$+!z`8{2Os_>cOg~|l zXylz05}O377&Xm3ISC=8BvwG&;8g$kE05~;rwwA|YU{PN`a*9~1b zsQs^K7pTgAv}^C_m;(C1+vQH8lrdFNC|CmdLT(jDXXVD~F$`1FtT*PPrBcbcR>>UZ z0X~`Kk6h1LK-GcrrEj78J{MDhZraf+_un9&fn>z?~i7MsblRs_1NL(VhHY3@?nM_ zfx8CtZ06zoU`pQVq^n2(54jvv(aAf6CY;Vr3DJQ}rT*lgC930Hx2~~-)6}uHp@)SB zit-7qb8>BkI;Zd9aN84nXc7YRsz>XK(8SvwIX*`NsIm(v7wE1AIA*o8LD49bC86c> zqEmW=Sf;qUF^d;pF%&b`tg(A3Vl?6A(F(|D$GFF73Ne}>KTbv!PS-HB$*$)uVeaQR zBV5RsDhsz{bW!3YIA_QA92S6UM^JzWA@{Zzee9g-20c+@S{Av2jkR2#go`ZSGIeoazG_1QUZ${6T z64EDz1f{PN8VvM3dE&JcWD(FZIw8$0G&JxZe`;aavvlQ1Riws76JQJrW`RiRJ(a=w zAZcIG@K&4a(tOBZ{yo`gjekK+#Ar?EOny{%l%LhwXm2j<%~)N8-a5T=XiRUyYr_W3 zR@XHW7I~cUDXhZ|H#JEms2%~_>XN86&mOx~*$Yb=Q-7{b94dBwlehTQ5(6z3QQWNF zU=m`qB@GAi%0#eWy~U6L*ibSM#Y={jUoSOxJe`YN%{LcLEB(e%r=9hT?{5Rg4C_jBPqmTaCMys;Ucsja1iT<4lM%Az_O`gBK z6$3G5z3LXZVAwS3oUPe9OPHnJrT@_2g+0t5Qi09$uc=3=M@<{h$8H2S+9g&i*Vha) zx(;iNbqd3~&KU;&vXs6~MuYt}u;Mu&o=ljbocxTfM;r#4jrbkz?_ELTo!D?oD<39v zPzng>U#_h9)JrTFEh9*fCV}~RSF8_Oq&3&}ju&S?I_x2qT?EU4yDUgrD+rUo8JiCp2dpI@BY9^?gXE$F%v>~&NL z7xEZ1M0H?XSRiT)+c!?s+Iy^g^@U9)a6WzXFyZP3Dk@YVZ2pM%_MG&)^dLKJjIIZ! zM%BIP@$>sAf1Mt;E$!WYw-1QNFLe)6zoo{m;;eLsAUeDuSVi7&NGykX46=00e6G|? zcYLybvqC6%1!>Txug!Isz*69u$aR~mGn^sT)*B>5e2&JLq%;S$=xf@OLTRYDcPUEL zqNMc*JZpvrZ3?QK$pPsbSu%N(+ryh-XS#~}Xzc2f0!7T99Ltl3>?DpGw3aN{gz>@4 z`(ky8VY!0pY#JFWsoTfwgU@Y)O199W_KZgN9C9dj`oIE*LU=!02Z zc6vvy(1Q_^=za3ZH#qHTa7@nz)#HPz)zo4a^q#!c>LNiHskO4MOq6Xw(1e|UwIj;5 z2D8N6>BCPBG{ye-KHFoFvt0GKIhVRN`w1Q`dGB-}eSeGOwNW?|mWX@7O>Xb{kAa4- zJZDo2XDOnR&`H`y# zNm7G_uz+$XgalE;VwM}&Q2S7`po>AMh|+rzzjP(^D8BEMEU7#h;VE4npS7B9)#nPuaY^yN;AN8LO&&0KkQharoX`t7BFpg- z(pSpbX`ri*#FnM-CDmTSrMR0L=WyeIL#(G^UO)r4C;fQCD;qe6>5#nqwrW+dy%_uF z@~Q~$rxdJ8hUKPA>Yp6tzmJ_^pJnaW2{WgCc|>#6WKJZoWuk8OV$-6*`AhJzuEqdL zAQl0_d-#|rjYag2Cq>;6O9ucm9r6$un6-_D53$`LEV;v)D#OeqAqZ&K@9EK|(6zvO zMU>kVo>bL$_Xe}#no-W_7}ZD7ExxOP=tz{8!XM`88wiX?7a|*Dr)MzE1GXC^h>FB7 zedL2e!q$^16Q2fQrwA{!TfBnQ5^WDs6v7HN7>!PELlQ|(G-mSEN?_)Om|{x*@~<#9Qi&J zgl-3OdhXt?QL3-DVjh0OZHJubPuL`DBj8Q!5}V4YDF-leS!r$z3vYIqm08)U*96%k zF?DGikqMAcvIsO^DL^kz4B}2@;28@C@>2R9I2^-hQ?i*FP+oF4Z7>V<_O=gVa=K+LKXC^YUC@)xG z79I#7Kr&Y$To7`^55xx<9GWJLh@clZ;qR6|zTd}McnkJA zC!29!;xPccmvz`kFF>>v1=>VoEXr$NnimzXruXc`gdb~NDsgQddOy#%N%ga!wo2oNcme~ml>s2Z%nQ{?qY z?};)Zg$b_!nqW|Bk%uv0a=&0aL92AN)rch5dE&SktKlV(NzO=;%mB*IWks$7Y7QpS zCjVC1{X~p{>IO@@ywwG`6)f`?Nw-Lg_(l>((x~YSEl-Aiy)1-6m zO4bz`=I@OfTeqVwq22re^Kj6Md|vqE{qD~=FX3SQMT0URKKPkf#lkXc>)1ze>d4B1 z2BRhfv?%O<=@EkFBqk$QKy?-bFzdIJlLsb;D-qJ7+Z;;^%ogXR9ny@rt~D8IpgH-Z zXj{yn}!mZa2;FUQpDG?cND>u`r zA>r{c$A+arfI}|WMAmeRaa1mCN1US0QhUJ35g?VLFANjFhKQ6%h7J|31X#^9mz9G> zggOH?2*tI)h=lG;=!&;{W7xv7#=Jt!i@YpkBz8pX*@Yb=i5^k`0|F)}0G}?*(ybs# zi4HGFs%TD*<`V@2AW7?4RuC47;*BEqA6N}p294{@#03*YorlgH2{Qx7HIwZc<&27S zjB3@fD=H%;Q5;(pkp}a#k)w`{2*dOuQQbt*m{k*0}Oi zb!-dsi(%T+BUMjPB4WXh-h?x`SlXV2DlTElr;TY^mis1iXO=|}9heKxDt7hu4cSpf ziJ8**=0ck_=n37D7eK`UFfXaFSHel&`hPsuKFEN^u=8qvxQDLYDbdCjse=6}aowx- zFhZ`jggo)VoHJGIDb|_wM}L*|n#dV#XNre@+j<10&c(A*>Q)2Ks%jbxoU9Iy@YEzd z-!(2KJ3Y5^*vS}pVZYih-Vs6k9M9+JG<+cP?&i>w(Di(F>d&%_CqAJM zC9!mHJ(n+of9!GIw3GTUvDxBLWBd8_rYbbR$X?B8AR@Bg=bhh%45xbZ<-<~!><*4_ zFPHjh+&F@I)(#EK&rj?!)D&zyy6GR8PvgL@Js@I4(i>d0d&d6?nmM_jsh~@d^ors$ z2x#!^vQnh1=AQ8qY7mRJD65JS4v56Eu{X}L5{ag~Epo6=?4TYKzfrWjG)M%kj94C^ z1ljg1*Mu7lWz-e`)hoYE1}Tz7hOk1kux06N(waOx*@H;PzwNU6Vl;S)_O#lc!-y%g zmL!&M&A{Qn%lep8R@$D-#nON5Ropr4p)26sQ&(OX3DV_*PJkdjE-eCMcx0I9`Nyzb z1uhLrWIF$kC$L}YJmp$3UTTG|F-K9)t|u4($yKOq3Qp=9T^Sb14N1Gn%XhU#shTr1TO=gg2R&ex4vDb_NZD)R z+5}?`>4BK}FN1-w6*zlK9jZsoiFo@9@$J>ITZwK+My@pp$LAhW^@dA2x~b?> zY1&aLm9>eC6Fj#9=XoU%ecn0HZq+pNtPNL zhD;UHCVog|ZIQpdoxVEqx^8hQJ$-kJt5y}4Z|Hc}W8H1l8s^0fXnotNH)aBTlhr<1 z-OSms13V|FMjsC9jr(9mlEBBqkH|OkabrI9V^sCi%dLSgVJAtewTg!w#y+BNlo=<_ z;|r*$c?H_K6S&388BP<%6AmZ}>tyfIXQ3_guSyZ*y}jO(6zSX>9Tr$(_KXgsRhn<+ zq$nzTvR5{@ar^?Q;nd-!L3*=WZKGokyYc%u1rM;B%{Q}E`}pCVD?tctJubRV^ra1= ztF)zv4Y^hi{l+vN?Qn8jy!lk$>_-*;2{QS!-XhY)U|vKtDWjc5Rf44Yz5wWD#oKiM zSjx)b)7CS+sAn%e*$D{GG$^{yxhEK(bq|85^D}Xgm-}12X%~Cody;oJ$>XmzcNsso zN5Dtah4ZB6!SN-pAu`~3H>2!@&$5gNY!`Ev(B9-wHC+IFJCp>O%u3fK>W0|yDMyor zQBldN^DCk8eql6Uv{vQJ4;j$@*2I??t)m%!ms`(D!rr3I%)1ZRDk*4PFouI1wNwW$ zt%@}knQKB_lw$ag31-Pe%YzQ33Q#by*jEfCe09uiJ_cR%*n9CgFl+tEu!S+AK1(5Gyqhnl;K518+huWs*`6T_oGl!}3O$oEK8_+;O+%nWJhW?iSk3q`o> zVHOVY1_Q($@jb$GoFso#VpAN7Xl+8u&ggx(nW~lmj#oLOwi-zQE^rUTAhl1VXKjk0 z##Aa!Xo~`LwIHvqzYd}l<&sy%G?vyv&A_czYK}NYvhoG4*tHK(zeQfO0VE2%LP4y) zoTw^57ii$^6|t@4yV6Mc5H9|kC}sYqwl9`0_yX6pwuNLYl~h z*W6=ox;Bg8)yG`UrFwLS8rwgZ&R}}>#)@QGX}@-(pG2L?l;}3?)~??$ISbLWUNufN z+HN_s5^c*+r4(EhT;fG@I~yiDa0+G_Z8?*?oZ!p&oagd^Ul8MUpR(Nb9v7LHF!x}P zU~7z+DL6m{6GIB*<|h6ct3PUf?(In@R-M4(GAC9(I)XKanvc`xYmr(XxpeCTges=g zI4mZ>I4w{lkSz8F+tW->bU*t~U9cwCy|> zZ62-(M+Rh12f9IqbboW4I#M1zuxhAj8|Mk>^|_5kG8tpq&$P-&7TvGK0ljVx7x@;p z!6ZmHb_FA3%R3V}6{RjTOio)+Wf9US8thJX)ezP=S14|7#RbM>*{{qjVdsWGPKeG& zNFKXBozfO48BgIJV+w#&(W`f{Gxe=Cg`EWzM-i<+@&?M@wc==uct|@E^M(MUwIQ zmB5>dJ3Nau!`-w@$P}X*k?TbV^~zcb3&KWC677h@p)`g^$;BOk7Vm~9g;@=D1rPKY zAr5RevhztAfuBHhW21nT9X=x&<9tCO!epYvg)VPshTpryqB)|2I?@RZ2(vRDD`G+n z2UBt-=1Xi}^TA(Iq*gEY#q1B39p3PXf|pym#9q%1cF$>*k2TK*Wn*{4_QzWfY$@u3 z4{ByOA31NDY{Dw;;Mqa^Y`N99#6U@lvzxxuYkVozBK#ykMGdq!ZMDRL+31;`rGaVL z5@gr@GkZ#T>xUC*gw#a6Er^JmI?%MH@&t~Q@2|*?iYRd@SYq1{au&nG4492)bLTMS zr@{|o#>Q+6g&c$4EI4_+Ix`Biv4`VXg$Z`{%C`S1uV6-J4LR2_@F0w_i833G$#t_G zF0N0CV`mN-FINg4_sYb%F0*n4q^7Y(|MiQ-n6(DX6#cm^7GbP%RD(&2XuJ%@s`|o4 z_MM(}2D+_5=L!Cs(>>1{f#(k!rD7$?Q)}vNyZPxlye&Rk^b@gpYZ8BYV}UQ+-ubHU%0N<%`WjY8bQGU}-k?gKfnN zV{*f87$z5ZqfO7I$I`ZELpn@t`qA;uHYzAUM?1hbv$@9+kdr8QWM|r*LI0t!DGNAsKL6&f+k5zB$w* zvXH%NsM5|fkg?7gYC|hbo>MHB zd(~67Ystd-pcP%&%rQRLVpE0;MT5YJz!8IisMy&YW-g5ASrzkvdF$$Ji78=b3X8>; z6h#?ky^G%mLMDb~`H`8D$EQ2QXF`40aSmtL`2RS22O!zHZEdq$wac#BW!tvRUAAr8 zwzbQ)cGP3-mC2R$(5HlRiMA;X$LR7wE~0^I}h5%|2*`fk@k zfGE5gx$yz<5qb~wu^I$=7H`lshE8VQ99<*m^}NIVxVhrjV>msppXS)riC67vdO3*3 zZ)v%ih-~-&9m0?5hc8mWQii6V5Exm5pjWG>3jjbRAU90pY%)t~_?BYuZa zsrN%rUajJrF=4USIF5G>5b>`bYy2-i_AfiV2kb`@>GCc!dSQG4Yho~`GZ_95v(|%m zyZXC7@nOaHh}hiq=Tetn=y<*Wt@5)_a7 zE}T~_*Stkl2N9YKwoF#^kpwIN?g!Vm!0Q&-116=!LFT3{b%r(7q`xT8y zX88(e!Vs;bIhYRXOSf)+`Dj#Y;rHKl>Oy&I>biFyXo=wSXrRD;+bH4eI{CeeMp6`vqU-Zm$J);&MghE6Z!R;4bt1bRA$kujys>(w*%>uzMZLe!3A&(Kl)FA2dsLOh5&Jb zdj?wV77yviEYC(mzW&;dIu50wU=5F5(b@%Ss?==_Z~TkZ9^>}?R|Ly4Yf_M|fgPbXjAcHBCA?ljg*2z$ zRhsNkV*RvGg1}uZ9$hhoxZ4e$$Uh_m}wDA})CMTU6XR*)(KTk7rwPA}c9XFIW-AK+2C z9sta08Yy?~xwrnr{pPqL#qRQUzg;Ke`D1BZRDGI`?;=^NIRl)8`Ink^GP9Z?!qk z-UYLu_JH4lag8?U#7nro%ZOM7^3@mQx~&zOGPbEUF>}qw$jb*vXR9b4a>B${_Eq`D z20?ir!H@2dHo6{Ihnr=|9qBa<)=9bt;qjst)>FDfm1YkV=C-=p0OiEY@hOE!i&$mR zHCE1w_U#=AO6PhuR~_v<*S7(m^+v)I7A-9C>XSz&u9?IVeT0NfSzS>1FQ8RaZ|`DF z_oI}lEB503+r9B8>oLfQ@cJ9x~yY6fIhGC`kMY65_nF;ZGs@d;v zvJ-DM8)pyeNMswYzd@g-YYu=G%kZi%O#7G@7IXQ8x-hT!8_P+Nb$AyZ#?{?N z3b!jnJG^77)1aLyc5doAa~C~$OQ=~r#~~e-iz10wN0l6Gzdo)k1;{dbBy+=#+wXvt z9JFKNk6^So(3m=&kGI%z1ssoCb3a4fuQL4kHMKXkcBXT$NwD87Dem;qwCeOhFnp&O zynqT2bw}kQxv5OP(nNK891eQB+N30t<#n(pTKh!4TBbNr)m4XImlzZ(u#kfj%)P;7 z@~7hJPNRimZaYV!NOvVI_;h1I811#vJ^ENF_=iZsBQeI#N!e3YX(JBKd2_FKo@ej1 zZ#$E7)NCF|-gBV`V`qi@bIy?=Dw>OD;n1xboOVgYT8-=%^VGe3cf2NGMGpC%a)IPb zj+P8VY2AU^nsqc4>Q&XWPW!kG3b`$&Q=#-^{#I32OuR0NmfZsJ<+6Nh6gJutoBdVL ztKViE2=L38@_;7L%Fdypjr-LhH1R&%TpqUC zr$hKpfd-}cCRCy)Ay$Lw)V!JUxqyHY^C8@_gzGpbuM6kVU&N-Fk>j52FQ5@hlUFoe zfbDU(V}oE7C{%(#pfz>$EXfS9ycwUjYuItFO@g;N`LHJ_QoK61ermvcnh7`faZgl#s#GMRKvr10#d-v4X` zBLXwLO!lBk-QY`92d?2Q*{jKa+X$yYtf?!plzPi?qM4C&}!li)5Nbcaq6kMn8YT7F!`PGqax3H z>eV8$AyXJkQXk_g8}cF!9rlm*@|DgTTSv7_8B7H(Z`(SWR%>E=L()c>7%{$TGERCu zD7gC(Wh?c#XL(g@%6pEh+7j3oXou95X{Hw%5J33 zfW?3u^tr!rOaK9Mvsj>YjhL5cEk{bN7nDqd$$m6Qw+{{*=~eMPIjn{Sa?Q;K^duW) zhm=bY149JfT}a}Bc=-=_CpJivQ!>QbYw9%8zFWZ!+Doc-Z0E13Cd$u^>(sr;Pe-j# zoI&iSDz}XAxIYvTA6Ypkt#y`VI!%E`_v|3uvS{~EHhTWDVl8dDh=^!9UF&tdcO`o+ ziBcEQ|A9P*Rr`XB(jiiFR#;jXka{X{NhsFgR7gyJd4zd;j!gY%fmJw$zFNk+nLBjZ zpW@WT{q<-ir#N){eVy35+&M4C=CCc^FdNt*X-~n~*$QL#z}cJ4Zls#eqT>>W!s|mh zs_sN9D9bAPpjuQbDZ0z9f*(pI!N0?q=A0f&>uh2^Hrj=>2?zct$>rvF4KS`7?$ za*H#5-A$o68x3c1VKorq^Dns!C1cu*U*Gs6`nMMBe`at0cGdd-#v8vqDE_-8&kxZ1 zZy^d||3nlF$Y^Q5WT7ulPF}XAr+x7!W0R8~aeoGY@I&%r@SSI5V9^DSxTM(j4RnKb zBlk&txwajDwP1gOSOvEM7?0gW{QQckaQNsl$Q}4Pi9-A`VG;MY3S4Ql3Htc@g!FDc z(*+BF@zpaFcTCsQ_TL$4Ab>~feg~`lX$VY(#fQ%AIo$_o3D7D%T;*y{CHbb<6HIj~_t~Xa)bn+K#N0g@(gI`&Fgzco0l^6GSi8C(g>lmE+`V<-(hc#+Z-wXSNT2&9@K9aI*hg547&FzratD zP^_in9e+mboHh`W;0fYkbASLX6CBo@v8#V46dp5R-?7{ zrOyA;jPl>(P6o8}cc?AEtACEWa6G%Dr5t?VTMBd?+gm5?cqbhlM83aqo`?tu7={@h z1Q-}3!RMOyQ~6j6En9|1TltxyN)t+iuuX%ycBOL1+{tl9Musa-_S1`J6;|=m*-4cm zg?9M@Vg)k>3^AVk_HJ(&KTxxFbwvA$rF+xbgLB)(-VGamLpMn1zAhbntp4yYKl-F0 z!_A5%iKl>Waj`hUml$o5gtd!{wTenSv|HDfi-(&XC(c*XcT?p%I%upI5a`(hhs@?y zo0hgaNy3dlE`0gxyQ7D<@)*1Z*|2e)bxe#lO^O#A)?nb$l66y4yv17OJHSwszO6GG z76_~eXx;g{Chd(h=e^|BcdycgE`c{XLoC|*#DTrLpMG15_%MC!jQ<|k7(GC#qQv-j zTVDrY^*1F&_CJzRe;c9w*YNzWpuBK{;!3nwddkR<3>P976ryK*itK@>XOGBmfMC9C zp^r?ZXPm@OBsdpC77mq=BR4N6!*)y#ln9!X&qb2(e1aBld%QdU@SgJS+IsTP@qSu= za?(0eUus=^t!}6i4BwL|KZ$oBMu6yd#I$fQd5%Ki+ReMBrR8`9eiyjSs7xlLu%US9 z29*L>$O`Af`j9pcBmqhxW?RhS0ugBCzs57MSgi`7RLIlfex9s{pb8m#G@-+%;tdDZ z`-#O9$`^W7FH0zqA38^;Bg0FxEOAo#XlLepD$90IS(X=1hb+4>*AP%+-jKPIHtIDM zoIl4gdG0}yq-IUxpi(?e#LQ}9U} zCuhJutv;CvNOvGRhvMMWOZd(FdWI>PVA&g{W@$16i``~2D{1)KD0|WpCkF_NN?rr+a z;A6?2fHHI-@u+h}q6kb9|7}SEe*>^?2FWVuAOa8|YtZ_quNlwqhd~cYa4!)i9TqP+ zI8^wypCv~>;q=hkb)Xl>H2!r96BtyULMosoO#m)>FTe#pN5CU(@aq&TBfFp=BaJ4o z#Y~n+$R7kcgvIa)SYLdZ207yQRlGfpea80>pGqG7vF5|%pFcWbu$!SFSZZ_b81fKy zia7{-af5%C_~jDu5$ho)`_B^94RCIkjU#t17YmV64)rK#OoHjAzUcH@N!KcWXxW%5Q>5xW9=t!Zgubq&X%5uuU) zC4MiI4URbTaBWZn9wm_X%RZEnS)0F*hzb9fRG6YZsR6mS~FFc&2 zWB=-Jxf*4TZh!VU@m3*%IH`H!696IF<`QtqZa!6zcHeCsIC4%WF=E}S9C-<4=e$|s z@SzZaKSI6*vLrNMOo2cn-T^DkRMDC&R6k;RAb%r6U4s}34+Pc;YD|A9vZnfSlwsycOFgCTt(Ic88Ls-@VOW9lxOmTk|K1YeC!n_g)X|-3V(^v9dYf3#JKkQ#iwQUa zVY~+XGYbLW77v?L!OqXRLUGIofnbUvy1$K%2ZNRq0N&!M8_kDBB?1;3TujeSPJ}2X zhFni(pzlkDr!TvVqiui8TBIq$76sSC#m5o>_eLobBal0DfA3@q@E$@qL*~wgA)Fly zOoq%Gn^&D*4%aPqRM%1uAVvm?2YCx-h^f5t4)te(Z2q zrUiv*KL`K;z_EH(6YD54IvB5(Mj^Ma>rU1vV7R&_+h5+C@>p*vIq-w|h(?@JF;^V# zsb%J5`gx%Q1e233!n{k(g)hHK(Dk&ox!BhdI|(ygY?QdP?eSajjiGnXKXcx@C+hR8 z3a|KDKN`xjN@(y99ss<%f6x|r(<43e=2F~_pBN5y4I|G^D{>Hv%0j& z*{1`OmMplO12%wKz5)a%$8q<%T|pZU9{=EHc6`TOu8?OWy73feydlO%f~GY0!yPWK zkPHGhnR$s_T+`Pc8S1gFI0_HkS6Wwdh*jRkDq}7Rr#ez^Jtf_&G!I%?o1|v4>U)?` zPQb$)sIw_+IdxGguc`Q)sZbb4d^WmytAkIT$>df zcRih`CGb$ghW64TBLYqryB2}}ft=3TwOiJ4$3klyWR-m@_vT{eJHPEr-_?KYEoaUJ z{t%Q6+|bVkSuuC2g+4%tirr z-mN;!!tyuI5#eQyy^Y5&e^M4O(Cz!FvLe)KD=Dfd&pLk(_EkpGzO?A!lK`Asmh$Ar zq6tVtS_e8vT(t`q8{{J#4=)>lj3G@oPkDrZslB$^0DM&1TnOl5dhP+;?T8JOBwr&5 zoQ!B>!3%NZHXs!(A^e&C6W_#={#8Q@qQJp!3E5%zq_mubSbqJ-egl0!bYw(!z0^js zL?T2ypt<6E1b*E=HN{Ggg+Dvy*?N;I|7>xqJ89~)X*f;Qn%uX0+t!_+h$do* zP}-(fxSAA<>21jBETNH5j^hE^Y7@qh2?5sv^4$Ol?c^>J63gxGV`H$}>v)xVAPPTr zTSG-e*rU5>sU7Au*;rq=Uvp&4nLoaF?n(4%b@IAa-Ram;a7AL}DwN7PQS8*NBq0Fp zXg=4&N8_DIOLqfM5y*j~BEz#WWO(oR5Txc=Y=bs`27y2WJl`Of-&l>?^y!g?3#OE&6A{J%n>u6jPgP%re-lq*T=Uamov)|FTd% zl&3z$IGXpo4oy#a?#{GZp~uZX>FYO)?!F8MK+UaqzKC5VdYGvv`r5i3x~Kj}U07FP{o#`0U|=>@DlNajWl26g>!v6QL_L1Im#C z!Mw>7^|}$QWEWSo%!#VZ=dVh}nY&W78YtFX;>HuA z?m9}WHw6_Z@S3s`aWg$Gb0*6rDORDd2V-U1CI_Ar{Auke=T*d#i97)jgFoFd;<04~ zc?tHuBIfTTQ{LDge$j>%O*LtStZzP!^Z0dHS57%i-YzsUvicenrsEivZ%8+H`Yey0 zxUqRVunErf(IbP}7L3|bL*3Fo4(}5hciO&Oi*yu-avlrw*3k*{6H1U5wADG|EeHuZ zAB?QFOpc-MhK3EBvOR_L)nMwrBdNYRjc2DdJrbP_YEY zn@cR>d)f@ZE732PwUsi(M9XQZAMG^7SfixH7=s7X{ywt4xQb!z(^~Zhx-YgBMF>sn zCg6kd4Ze`~p`pnDdz1bBEat>!7H^EmJ59n0|IwY%TjYs)f ze?JoLP^v<6raG!LW<|~L;p0xwxGFE02v>>_*6X;k@_|h%Tzz4YCt!nV6KzLzRyu3m zP{Z>IM|oAZw;}1*5;nLE2Lk0o^z6}Ce7bgSkVOnzP6+k>;lqPcH5arjsE;^PX{*E- zd);cvuKT+56lJQWmK%pPu8CDM2_MsEJcEBZ4-E^^l=owWPk;nEfVT?1tjeatJ|}km z>hjxuvX%J6u&%#S5=V>P?T)sCDx3Pt_y<^<#pM$7*ls&grG44Um8Mh{5yNuQoUE$% z?l9JdwQYUh^ODBZLnyA%^uo<5qk?K7ID~xt^^`@~?u;^o-{F#_wnhU75c|BxdM(L_ zHNX~o^5uAO=|n-gaNjRtTKOy~OxSk=;N#_k*Jk28-BkKIF9^U7PC^>gKVpiphk z8GBg*3Q*Vs%pFodZz0k}(p^Z27>Dq+@#@#tP1xD^C?-(a&!-Hy?wO1ds4l0VBVYhc zRMZjeuP5hEG|9MoHgZXi&coUFOs@PbX1KEBsj^xwl zNg8ELD*OC8nqV0jUdQZ}NycuKi(|W!kQVQS!P_~Fu~W1BsNSvZ&!&-89y;kNa($F+ z7A&=zvZn@y|Mhh0(>1}GjW|Q@yXj;1#JM ztju7Em>^r!_jWiHVvCnB2+YiIF{_ z)u;PX7jZ(R4uM?ys*qLlDiYja@N8$cUgB#TI%e=kjSEsOJ5QD%ZX`HCM>7^`<{91# zCTb|4*+1czwmv=jppgj84!_h_kpIgICKTyyrazrFSP-bI`8^*7?KH55M$`_9v(9^j zbilW0`+C#Bq3DzLmDmm~@!08QO0E9$mvASLu`91LQGfb2rL41CN6VpwO+)@~1SeC_ z))Aw|dwjEuuRF*MlC|@-wVw$`8FAr0hCC}Ev%dj9+xalWRp9*i;AEGrZkjhtyV$rs zXi%j>++PI2m&18oo@ttL`hEb)(GyXTUIc+O?poz=R@FlmKv{7Nw&9k=L0yEGtAM(!31| zfh+N~N3B?J;B$xy=?CBRd4otowO=gx`wt!1M(loZxk(QA^PVHwcTq+SH+l*TkFQ_u z{ayUin~85K8=_Zpy1(nEXe4N6vva6K7*`Rdgy^>XmrG&tHCjk}R9>7-=O*4fKe# zS%_7mtARcjiID?fF<$Fh@c-g%tm>X*!f_^Wh{DV? z@7ouU+Tq5cjqUjXwt{~x51myNz{|B#?1Sbz(XK`yVx+#Nf4;t5|GbUs771rw(~&Twz>` z5mfkU>=Fo&Y*m*Q)`c&P0|SW0GK8A`jQks0ZC#?qky~5oDEMe7phBnqezyJM*Fr#i z1oD_-&5WJGq6EcR-~do0Pn~my7eDb*s3EkLM^u?x+E6oSkK>#MZMM45{DOo~c8rlO ztFI$IRarN?*7?Sqb7C@38Pgsx91eO8h@-Qk>o_YP&U8jTyqPE8-t`WX2o9F(NmY|- zVP0H>F(vxCR?!bI8U4#9O&n!qwK|>>M`$NmlqbH<^Tw5UP&J&&IF1&FIG>`z>j_O* z+$wn5-!kt!E(MVnUy9C0I9pxnR&lM__Hcp(3s{7vO-3C>(8XvF%q;vkwxe`JSzOJo z^2W4awcui4-K|@$JsrC`BLgbreXhzDa$oLHEls5_yiHJuXfNw`Fh7u=cUFn zt_<@_nKbOK;wgiSW$ev3r}XS)bbUCfgI4q#hKY2K6IhixS@1SQHCf+d4> zte03EJ#y$}_vGcwTf2kB+95!>wz4qMYsR@{GIue*I(i5#xkl-?A{vb&?JCfsS%__( zv4&+@&^=@9HKKGXAneR1(SUEd+wZPJV19Q#J;;c1v{J|M9cL}1sd=hcM z%>ttVPEc)Oyv()9FTP>c1Yx(4jfRbNnqV={l%U0``BwJeAeYs8$|*E@W%kA?=lHW|^=ofem7n>%%4(o>n(wX}hCM}aHKP}L4_+dr zWnsPo)B>dlIJ43+rHXRwA_vQ;0$-UXwBeiRLeZIYkY@)k-oHDnSkae5QA$c3u77#h z0`rkhUBK4czzO=;J5S0T(NL~G_HOH1n8R%?7Jmf92zsEeY*uUstqeupRV+^TP-4hs zYdAM%wA8)LS0U$5)nW+IqBX5#v5U%Pm`3u{9jD2-xzQV3Dl5`i&lO2~{0ts% z-0m~sA%60zQ5JWT%73dzyHL_PNxASGn$WJ2yO4MJI1~dgJ`qQAe{q2VJH0K?jdHK^bkQ$GAxYvu_d|!y3)IC7Zf-Kp z-DJKb)=@*=>#=;Tka9T@I+L(!c2!4(V)3cWn?ZfEAiA!ybcWGY(Ms_E#*oT{17#_* zemSz_kJ(7oY_eE9V6hQA{ZHde7lP9CxBg(r3a+{teKqs&-JE6MgJygQ@6YxPi0X7 zA|Yj|md<0M1|{7_jqa)>F-L?3SaIvF%WrN>E7hxSk2!XlOEm^2le{(wT?OzPH-Q8f zhtBh7wzAsx90z9Co~bn{S*%_m2Ak2FsyDjH_vY#KXmU~{NFKZWVbVWKO9oDz$`fmy z&c+sooV~e_mt;rCR@iZU>^bYcBr4P3K5uKZR;2|i?kx@^s-&}7Qf3tQ2cxr2TO9|& z^)#Q)`xfUetDDZe*-`HB7Y#)j72vo|@$2jk8xJQq`$9zB9eI9NNE#21W1Wyz*H&V> zu^ae&V!&qc+Ilk*6BhDoYE>9^H~*p@7<_A@Re4)d6j-X>3OoOx)mEtI^7CZ zh=oFK*BDMYd)1A>%~^9BtsHYS$@(ehg}}OM-RYQRG1l93lRYoGLb8DvnR!T&L@=AX^pF(7iW~H-1U&H;VjtIUJ@uI zONVMdl1t&R14FG{*R0)es3qdJ{d9TKLLT2Hob zoM+>@rGfs>@V>UJ{#{A?hec^7Q?K{Uh4IzjSHUwh%T>ytqr>3Nu9zH~=B zstol>>F0uRzJ;=uP0_^#-QK9~O~C{4fb7^eVhe4~+GIszr|TfPgesx*dLju{G#MV# zHoZvl1+T?Wel@PkU%td5cC*~UG%;T}sl|VUTiNE8kOdJhxVlp!sIXktc%5m^*Wgl@ zW&Md1mc+39HX>=z-~M3YkLbVy6iz`fU{euOsP)h*#b~PBJl#_TM?Rz3xtzy+E*K?( zv{Z7^?tMFe2PMneCRr;XYYl@jwa}jC{`%@SE8G(dHM{gPISWeG!(Xmv*n=KO%DK;OZf~{K2(WGJGH|)=_|B`s9&Hal z&KRWRWku6TNh3+Cd-H_I{?U<5PE}Wu`upIW@nEdM{AN)vDOxZytm1(e_p5lo*36oI3}t@JaGwlT~AZ@T88IeAI5W;##!kmc_9% zzNd|>w++6jkBn7dZhDQ^PSa%drs1T~AV)C`>%iNr4&y>OFu3&gW;~Sb9S$#roq(#@ ztY!Z~=6SEX>TnoNsz%+R^+TJB3vZRlX4+LI*ZI9)%`qyaThO9{FI+EQ-lb&|8sze@UB1^9MOY*m(Cm8*ocPZXw-cq)&f z9+x&d2Rsg?n|`)vsjDt&MW9_hO%@tL6XA1!GiJ(Z%)Re>)X}nOnaXj=nXEsAx>+CP zj3@vG!#mNZCi{kjrdP0LtWuJ`c^W(9|}h8O(H9kr&(twZ}yW{_7zI} z2$4aBe5viw(E4(}*QGvM>At_5HI%@%k`gt_B85f8U9X!QGPAS>IlAq9I>s+@b-BdY zRY(kpvo|UU!P80!ZK;Iqo7yZ2)z@L}T>EsRu+v+wR zCMn1>lZOnF`y9k>FOAz~^6!;?9~<1Bz6e$}-EHmG1>f*Kk$7ipWHQwl5b75l4@jha zOXOfI%k4|~*WvW}^W19>2Sauj7Jc6bRSIS0X8=aD2*`W)>;Yv!Og40p~-gO9LT#<`S0vX$zIXYmVwB`-M0W=uUK|i+f$4gcjo$)c} zVPl6)0M7R{rJSPz@S@gO+6R~%*5Ntw;x*?6cGL)V>K05tt>J>qlveMymHejHN*el*Q$ENf?^mE#!Im}U81I|Y>d9IJ9OZfMjd#oSL z{4@e}jD3dq5?ss5We1le;kx}oNemG?C1aQ zKR7{}I3(CNBnJ2|pxD3rJ`nxy{tSOvz9=bz0sy|-!2$q(6Ncar|M;@+f&A?h{?*B4le@eaQ(rM6h&#AjnMp>P9fod5@JX z+QA}?WS8w*tG&;aOZlLuQPdV2(=AH}l|57Di636KMKg~|vbm~!9gRQ)f9md=Bm4HC z4lqLp`D>6q*Mi9$$jJY;WTbhH0HKP~yl<8zaOaONumpbSJ}LH)QHqM2R-Aa@IO% zTo;!anfNwvKyH$0ZCL;T`rBWB?Lyf*z$RtaqC48 z003h4&&larMa>dZ37PwGykByi%K3b`CLLaEc$N={e46D4jQPN<0BGf?>@x%c1usND z+CBI)AQ4~Ury@K)eiAQyVws|mnRw}}WuoPP8uE}?d;c4U_Mm}BuxP-x1BqF#`~o3& z6w_6Q!xZP!q!$K86FQSM{Ut;*H>jgiN6m!!#)JI)-j=ub{sGQAE)eXMrxsE%=d09& z^hZNXy`xgPX~x_Bdd7SwChD}?K7_%aCR{3X^_WFgriLcm+MEyV?fWn#Lxs+a`AlF0_340kn@w5k|cRmFzLojPIb6> z1(*%KLMKYcsBWo@NL)5DVU%!vIr4!9J;08Rp*0Mg^)JS3x!;nGC?zXkAenq}0J8*t z7{&<=W#f_{1!Tl;t;D(&xC7eGTC+bJtwV&fjR1LoL6QL`lY-@j^!4KTJsY5nP?SQ4 zuna>A02!3uqkubfxXn(MeTs~-g}0P5`RU>4X3*0ld(n?+2YPrI<+b^gM)~A=dgj#v z{JSIM+iS60^Pa|3DzrLqSpS98Y4jDY=c zJ<*Cm?y3iNtkEuKUV_Ams=@ER*vn<2tO7?1>(TiAV3ewhq4cCC*HsP89vy%e>f=VJ z23#wj^K15(h0`#IZ+my_%~gi7u)I)KiYU8c9LawAAwII(wc3`feKWB__w-;VVgu|* zEG}daB52WLHhX?B2q|=K5|gU}4AXwQ1=85Cu|JWpA5<)$IC%YmQyaMw4hC@0Xp#Nw z#$qMfa0v}@HntlLm2F9L`h6fdP77NE^qE#8Mc&;%c7W91&TK@(kg<3`&MWr~W@=(` z(-Co24}0o)K|i;KkqE=g+957jX&{p>gw0GvALj!j0_|6ON(&`WN&iZnQ^& zq(R;5I=DU~1~eBWUcNyOZ{Y$l&llQ!{*6$cf6_fJvgW;O7NqX!&|Ovm9)MIj%G76)pSzY_xxS8f(aBBc4j6}F!S$G@aV zlU3iv!t%CB!~&t_;@4f5z!A~PEm`5L1D`9F6u(9j8oC6?vXe<|A2Ag((cTa$&6n(} zIDFTpUhO$!mn_=bgMY3@Mbzt{a$9i)%yEMIQ=J{Bn*@If&c6-DJQMy6;PwB^jXK||@&8=C!+_qt{*43)0O%ku zDgaP5iFNXQlprSj()<7bH8D`{dZ6FWf7ptteVbXqemfe#_5lvrlo)=$C+{CARaNvN zNkdA(1#76QxcJ~+fSMW)8GafWUJn_F3<;(Oih`%v(r)luGMtJ>DrF#r_)<@!@w|sB zLh=xCqn2ug*v_u=95E@9+Ck7(pdl0wO_E<-!UM9fxM?mc>kEfz@FPECGL=g5o$Hfk z%ky^X%Ln#4ko0|s&T+?1*T$z|ur_Ze$(MARY5wC-q}7KvMmnePAe6?OV$-Bj{UN@x zrM7`hC&Y%Ahn4GjZU@8t(Oc1RCwtcQI;Y6`&cj2@&B5kn6(-wiV{5au$pM7~>_be% zH7=|8MFr?F+9jL5+y&a&?ILK7UAXX3i&G`1P8n{?6Uf>Hxi;}RelypN$nRBJbZOp- z_cNr_bI&D;bE!(ZX(oKaL%COfEJzSw@?#e~Hi#(>4OQX?Sqp6`NcfpXk zrg4F!xtJ)F4o^ZA`e9P{vtp|a7_AonLn0%|D{ATKJP z3{xPc3b1WdX$~_wei%QM`-WD}TG!Jo`%`{}Ys%py(i#-znvdzKvX$AmBq8<4uZa-3 zF_G)RO@{XNHjH*!n8{d}N_xNBSAk*s_-S^gpFfseJYAa|`&zHEHQFf=X&$36@K)aLJB1nK94gZ((R|iDK;sYQa~;Y&z0MqOqnIx zlm#m2;*U@OK+l8xshZ7e9`(27>wYFC4X@oZIi|uG;QZ72@{48%G6v#~LP0R;=ZPz{ zUL{T*4<;U8Dc~PlXf6f(40g_dlN~w{nrJ}?SDz01ok}D}oT%L&M1}JbG@M;b#I?=S zNQ3*DAZb91e3zc0DWyN@@F4E!kr$BrHsxUH;{f8qA~_W#^T+@IBEvz8S#|O8@WoY$ zuDEUd&#Az$&>gjQ&;0Pt-e+TtR?;-qdie4yMR!hu$?EHspp1C3B&Do{uYu5h^Z0LrucP(dbd z;FGJF`Y!GXYS4qwAGb#1W(ge^1AZa%Q9R46-JzInZTZHp5*(}f`s${pI<)?dpBC2Y;U{p+7T;h;l;+`yKCApvC60(!syuKa;xclM>+3;I>Z6?kuxv z2MV}LJ#GaPN%&%MI^`ezPMCB<4+n|`$c`AA(vi&>AI&Z83(opv&)^}|<(tO;0VDqd zD8&G5H*boVI?|h8lqx9CH(9cc=8KJsn2IRQ#25kbNA38E>AJRWG0Q$ab(re48~k2z zg8$R%W!zZt;7MfRFJ$z~H_t3R1Og(!Dk3;WD8!-=&~^L3nU4iBflYRh4c2~F+w%vF zXj!cLPQ-8^0K5qLkiuUfrvAFedAK9ZIDVyg>yzp5?+F16yvEthw=?4Iv`7qyp&*{X zgIK5^Xhl1j@Y_FIzD44{7SU31T$K-;oHe`dd&oKx$isao0ZJ^n-Ak4??FpF1bfgCi zdO)r?*k^p+skooW42k}De*hXVS&c8ym$h_u?%B0|1%5I60REoXCk^=#v-$6tS8vuE z0`WVs!F+H3IrCC|@Aki3Ir%H|{%-$@ub<7LmagyFu}}Vc5BcX=HAk z6KdeFp>)u>;RMEryrNi`;Y24eTunvpoW3ZL@q z0B9~**e|};;pXAdmYl>`jl<-tQ>2ZVknT^GGGw4{q|4S6_q$k$H@&B0ZF|%6-Ul;m zWk&9kT8U}j7fNFLKB`9e# zX~=qPFZ6bn4I1bo%6{SA@u?@rj8$`^?a{-=%sIdfzkSA92!W_~ZUe>x2%oTe zyR~ozRU`qYiw?sJdB%acUyzoCo)&D)mS;yYe@5!c1+leQTQs&4Ld9!(3e3C1qU?H7 z5ue+K73Cz1&*P%q#kMcGZ~({DCeLkCEYVLUM<^$y8WQ88i~veSS%iFSRE%P*6)@i3 zR@g{9ur?xt2#+!(QIMjod&eGPy^+Rb*E5F>A_H#l=f%Zg9U~(SNhg_&G_d$LI*q%V zo+3anEw9nXY4FGT|6=VOV{Ho_H_c<)_C2<3+qP}nwr$;G+qP}n_L=+pcQVsGneOyV z=EKU)&Pw)&O7^N+^*--Y{>j;aD0LAdh1=bT?A&0e?kG_Y&i`ISFe?_c3>SWR=(c;r zF3NbPY9`r#k5hwzNbn9Z$y?0wdpT;JcE23mz&<+l)@N0fp}^EnPovI#2-p1bosN-S za5uO`9i~foulHhg=lx1v%Yv>dzVjt-vzkeO$)I9h1lx*=y}P$x-N7M9Y~P}kCJ25B$^ClZ3)9(8SCrv}*AjN=0H7W2 zkgfF}0VD!!H)@o4n!ReC{knt%T#PNW;tn^5ZGo z?9QX>Z}l8BDY(@(OFA(KUI?cXTGS|TH$->o-EfyVnOVbbQO7zKq@-MnR4fV?Hq&dg z#pDc+owW{KsB@j3JGhl|WW2Pr3^Xe{;!=sZ3ZlK>D zM2LdrYZpiCM-3X4_{6L0`FmM$3y@>?JqW>rd^~3L&6seKV<#WiXvQEaanT!+2y*iN z7#6;iu9q}it4+xCnsA{A3i_VdJ;D?E_Y+iu(>|prKTTI`jMzq9tdA{Prx!jJMdS?z zidyt^G=Jn)EI7lX8M_}}uh?Mq9daNhRAtUN`>co57a3eFoK76s?WTWP!Q_r^8{J!1 ziB`b9_lyy@;Yq1K3n!J_e1wnh$8y(6v|~zDH=># z!fNlBC~HiGsTA_YPBjr7ABbF#2I-n^MkwlWe&s|3c>Cq*8@!%{NZJN|3{!Q8V}l96 zyJRj#*i;_{2}IzW$SN$I^evRV`fO#(d4QSXV~vwZGNLrR<2lE2d#wi1?{Y`#z_<{% z=I=#}xI9K^mItE$HIQ@!q{5q(nsI#LSqP5S9ITwgH|9-mJNz$W5>#=)$i%cYZZR;=VYq&;AnI?VYlLX zN*NoMyOt|0pSkz3p=y7~kUZjQpA@K|olq)Qa&E~O4^u2D(Ft9*?wn02b-5smU!zeZ zpVCXCRn&o((u6DT`J@y-hn@t)bzMYevbr(30?W(%x6tKd3q3vUxR_m21i__(U(k+= zR0KTjr5Ta#ha%OIoIYxtElV-7XSABq(9pxaVhtU!j>gl`nt45pcsk0!KlEKCVWm1n zb7Bi>zi@tL9;iI6c^#Yhm#n!$*ULcgK1-eqac8L$v59>qa6%Lvk4cUQ^|lpv_MEh4 zoZyM(^7cFA6_1300D%S65&(km|1zye07Bf~Nwsb6c<8+Zxay`wS4cJu@xr>(R7rM| z0sJyxeiGbEKS#~!<5>{G5q;tCyHXv`aR$9<`<+71a&`H0_XorjJ zE_=MuRC)S?62T{Ec{4vePjre^AfKKhTdP-Q3n8J#OPG*Vp*wHNz(F-;cY2?btR)c0 z)~qhWH>=X&FPtPM8hP>P&#UoEvA7Y&=!Dto4W6(QMOOV;TkGeIo|&D|uy9}WJ2`M} zDX$8hwCbml3s$e@JQ0)*@OBye(n^XD5ECqy0>y)k;FH6Y{&U_V$tdmjXdpFh83hKR z`q?E_?N?lMn5l|0P=8SK@@3gh;qfyJHjqVvKfRh;k~W)k`#YAjLCJo&wkE5kEbwsR zy1>%3miEU1v?S?*rhuVd_Y+gv38*9Z;n{Y|F@_3rhsUu+Hl@}SslpadW6vpw@a03G ztWa&D&CXbn_sb^mGR=5$-6|@MiQcd*Yw5stV24~P1&lw=vYEAEc{_3GsIe>Csqbv3 zUb>XNay&e666>67X1ajQ%nGX^(bf(Nub<2C&(4K&$F>;6Crw7`J^Vu^MX(-uYb+gH z@lj^ehks+dj!_P{BusjYZQ8@Cvfj5YGxIjbQmMKhxvO+_OT%j4=vbo=pS#2G)xp#I zd_RIbKBrD8Ic9FAubz2sT4I({&(4n8{(2p`lC441Y&&Z$I&5-bR zI8RLfF;5Llj?3XdP@20j;myA-K@MFh39tn2ji}jS*z1_MKlKKY!TW7tfrxt$IEVy&XB$bhJW_+x%_0(f zSAnxWIYL^wQQHppo)>N=rq!?`xN)i(zaNE_S6o7n{}jge zpTx|8oS1#ilOp4KWSCX3a@^Ft1!v}oPIWYJkbt&Sb|$en;( zh1!^j3$Nw`AU5(MdS!K@7XqoJ?ct0VmJ%y=)u>r`QC$(4f^LKn}rSCTBeDm*LOC)C;NeBNA~s zz$Z&Po9bGem6UK&~(@&HbiC5amXoUug;JJ4Dj3>m3 z!iP52wyTt8n9)@p;2a)_t>(Cg|8%Q5=6v82PUhk6{AKyI_T7=z22Avt7`8(Fc05l| zg8L>ozsi7Qi9AMo;(>?G=_@wbSv3y);V4Fl8^Q%w6!NqH-`P@Kh&Sw7nWwlqMVR%A zV-hXrC)aNfi?ecUE1ud5Ns7Jc29uM*+7^wAWQ7GSxFi-sJwY{A?>I#9IBrIhh82K@ zliOilm%rQUnqeV4dH8VlehsZ#wvuB--cPPsqAwucw#M|)Ny8KyG-B9oY%U@aK3Q>P z7XlbX9LN6FvU#z}8E?^fwRtuNsK^7w2L;&Vgb%s_UIT<;WPG*9qF2cFvW&Y^`r{+CPn8h>#>c+pDp$Vced@Re%N2uzb_V?Jpl}UfV3z}xT^L3P(55KEUaajHok>JRXyOtoHnU^OsiFj zD1X4LHr4!)^tHHI*|VKOP0RR#)X2*&JR-X@P3>~X?>rlb+*48VxhAhhUMY6%ZDj0` z!6UtO_XUn5{B)v%1q-$1XlCdf($rT6MR=Di3H(nE9&(iAAyk!q%w6*Q?$B+_lxG(Q zoO;L+t=Fhk)slnLh*q3@@zNo+lMRaF?J<(U!U3%(O8Z8-g@o5QJ89_iyy`+-{9r1zMv?&n=w(CR@G|)b)XIeLf1%5ujY+rkSh#KZj zfe`1!Z; z-hGPFntW!4ua%@6cP?~aJAQ1BZSk`q|J-zUF&9yX$|xfE{d3!P0_(9#;PM(hs7Teb z!L~Wx&H$RLbAjv2)TF-J1;3ROph_Z!HD@iRMX3xG@l`?cK;@FAcLWvr43tV}uLGiOtp`k{m#?M&a`VUSK zP;FPmO{3LI9_FKqdUH0kk*cgWPq!mSDkpUoS(t9>XmW-oMApUgaB1?< z{c^M2@T_q5;bFS2cj3kao@$Srw#?<<&*4?mid)gDuoDpybnr^MgHw+&dGtgP@X@rn z#Y4#XFoAw#&dho_A#Ury9g5rum#Q;Q)P2vvub|!?%7d#OiBs&z;QYt~u8MIc1SMoVLY~OJe&t23q1xNTr*Hd!2XBn+SrCqVZdI?mdiP@+p zu^pBEj7e)@rH~R{5%f{~XR~Ic2N`sz$-|`}i{3fWT*whGXlT;nN^*u3-=FNqhx|ds zHx&Fyc7dvIMW>x5=w_g+RS!I`*(3N9is*wDcGv{RD%aa4gP)%yNt;5d95tnSO)|$z zxK-0iZOl+^D_=GHa-~a(Fkg(QtwX?~hhysHTjy5o;hqB#5awNTmLy$QCVIAS^Oiz= zeH?J?___qXKe`=-UR?>lf!7yGL&^(o$6i(}{0Z}Cf*l3b8w4aLUN&F(i->-tjm5E# z%;2~)_bEH*h3ZBI`hnT5CwBHe0p6O3x0pM?&*Kt@2Ogn^$`(tf{! zxs7>1$O9%npgbHE8vp1x{wN>3+X4LGhr4Xt9CR0R<~=du^4gbgj$zcUNTY_K1Tj1s z^%b^e7QGHl}NXx_B>?n;UUo2W$ z9u3F{36PsuQ8xNcMRo(6AYaJ{R9=Es8QD`8WgU~Ak_1i=do|_k;?#CpCZ44dCp=zh z4{wdUi>eiv&q~Rx6Z-Th|6At7xF>PFRGPrB#6o8grPkku&c44F=G7qC1){tF1*hGpcEA+3mgEXZwkNhcU6z zv6XXf;tv`}4cY{>jkskeMU&DF?1rEtriu%2n=;OLbq5+pNAsXHFlPa=H|3RsPv_5G>3HmTQ$GtETz8KE9zYUA=B?@ne;KCOlEm_S58xTBS$xeg zbmBC}5~coLiR)}U?%d93>L??^Qc1}r`ymx+)HO+G!Sx*sNzARF@Xmhsax(ahoOUOE zqB4*)#lrf8TRL28SQ*6!E6jZ+L&Wk6dswAJiz!_~_QM>}z>xT*;dyRMDPf<@sD0&~ zi<$T=oh2_9(k zvO>$w)1F)agEktL0!=a@H}+jv-bnn3rj^KiB3hQe-f$;k4?(x6U__D@VuxYQMjNyy ziK22|n!(aee(j-wde)~wzKvm5_?@(f=Ch)&e(=7g@^zl!=lrL_HCFRyzTV=D;M;8$ zD!pxs(IH1k3~p+XkV+4ZMz5ndvFHPZxsnP)EA4Ni9QTv%LkwW>YT=dp<`W`$`RCJ5 zGWdOE7Yj@DGpqrA=cKwP38)FyJ2M zhcTA!4VIKbzxpf(rxO#;mQFz=r_7hKe8?l{bL@zKj3{Xs2iT&ByB1k!Oq?U<5JYXP z_JNCSNJh@nU)s1xCJW4YmzhwXNxnH(x}JQ_WJ&VFMQTmX9Ib~%cMaHAoK<+!zX%y6 zcb`AIdVL>ac-Nq*H-`PsacLb8_7aV4iAXzFsI_8Gy?~cXc&r|PWWO@37PkgT2fc%( z+xpCN>+4xNrAaq%IZFUUc@N>&RA+gCzh465%k+VK1Exz5a4=q6vk}=f|nV;J9w8*5g+!#=kYW;|ds5Xm( zVFqvrs+gGZUnXjvbQ+mm?gzlzg`_IuU(OZ)iDP^o!g%IVRazga>1a{mDtjt?JL>(e zjQqbDCLehx-%BfYzbNE{k3O7b`)J4TcjbW2165SkPUbBLHW%J+R@ZzQIN#OVwibI= z!}K1E%JaZ~C3<8^wNeuY3XCWZZ!Zd!*l<4LRP4FwXNFgTCLL{RI3u`wb708$zW{+i zgn+<+0e=%NzVcqzU#y>xLtcTi`OG4bfXcp2IuX`>S6LL1Av`7)d;U{nUAjC(G*D z-sfVbE3BMBMdXCk>QAQuhPyXP_KExv_=RCmPHywGJ^(4Ei)5+?;FV+54}0Sb$;8Fv zTP2bfnh%-Ceo{9IK#+*G&d$?5Ofi_a>JitV%VM#uLeQ!owNUZHVGN_XU7=b9p0D@m zMQrBI3aBzJ4y3c=g<860BJiFcqhX~ZfXo|q5 zX^1>I+$6fC6$Re=R08jI$Z$~*QvXH{I^(5%1g$(mb z1@jmdJ?(3^4wxoapjSi-&b>p*S5kC(`;~e?lZxRFhZ_V^s7-S5d$$zZPqocMOmoKa zAkxv~R{0q>wWS+Jylw9=&pe~)ofb^AvIud7csamGEf|~HmL8gQa3-<+Pk>PhjD1a= z5Z7%8vlT}9NvAz4K5eVIyW2S+S=tl7stQ_k8MeP@22Ykm9^=wunmt#!9)c2iw(+2^ z1G&vKQY$Rk;p%riCk%%~M(~TIJH^eiv35EaSYGNsbLgO3b&|>yie_bw6VAX@BSnJ@ zvDm!sfT*I%_?|hvj;i8Epmt3oQF=>seZD4WXx5d|rCP;nBSmD~^^_h*WMPkqzNC#C zHZWsRH!J_Za%yTn$;6FGx9E1RtRJ{v}uZ`BA#o|-{jokjghvK@>oXdMD`?m1g`0qb{(>BetVxB`{QgL2mQ79SI8&()1 z_I*sJ>aoL^8$X@$i~$G1luXvs>x_bxpoEl1QKiV>K+ zoFF2E8_)2IEh>%=QI5|nLi8`-wQOYN5dI-bwfrfqJEqw(9^(jFgC z?fJUWGr!4QbuCH!Rhb%b#CStmPSP|^`F{gPb(6pAR!rNU0lYaSkI4F8)znfyw zqPO?%OFtcc%nEvMwis;@-K9fMmY7>n#Md0f;@d|SMIreTZ2JdRum1b;r4s1#f~IO7 z{Yok?J*y-MRTp)}lEe*4k}d#z^l&~{y|23T*YVzGX%z)*?#nEitxPHc|PBjS0qT{5)cWcQX;nqHEcmAnDFz!t+^K zZP4X?<9!a@*RDElI;B@#SGZ<|<5yuR``trlfv#V6X3l zoxq46{Y-+i`1=fIFNb9(7&qI>_evV|H^_I~64pCvX6RH&t5q9{IT}O}{KXr6S@*x2|Jzx&-v5PPiUYTP{Xft}2>*T!;lJ=p{KsE|e_#H4x(FEP zKj09%oQRT^xUvF@&Zn&IC<9H2_c2TlV@cD}h$Ge?!s5bw_@cUzxac~P;=GG8IVK4r zd=a|nd^ZaW1q2KM5Z{cHA$H4{I0dmuG0W8Rb(fo*dFa=!HLslJSB)qFz6DYLj7B7`J9^%)=nk=bSN2%2Z6ZVC=3y2U^EMRTR zcjD1<(u%wB;1v~)t&K^pNB`u^+oLnFa2HpOhEYCR{qI?6oh#{qTSs;n&;p-OQIpC- z{5ooGY)FZT2}w30%EBZSRFny+iIFWWtY`?#oJ{lg?^drnEC!^lr2u@NIG;1QMq#-3 zxdnt!@>I`bCJd*jWsZPEZ=>=Uc}=k?$r4atonL2@}|AH6tOJ6<;)c!&a?Pwo5C! zEEECi=~+bx%MhJ3=V@t4w>9fLvEP=V>xGH>q`>2DWD|8Z z=)2lH;H^#~bBm;u22o*21Qe*1;lb2}cAfzyq6cd5>DU z-M)`+{X$<@S;FNM>4R#agtQd7a9oiIrqkY>yj%+PJJzig%o zV}8FcI!eE-yc64|VcWTN=<^TQ~ z{{s@pUQsbF0}KEl{_pyqgDL+TI^O>RQ~pUW^$acSY)te_Eo_ZV9REX1o2aUS;I3~S==gii0&opq|IiQ^KyIP9MSuY?HJ>Zn2*BUEa!xq;Iol8fJ&`{@zbU&jgNEisgJQ^CBcrxO`*qFS$!5BmlgFp*mOhLDp{~xAs zLKMyom5&-_HK18d-^O(!Smtp}2%jx-FENsp3NuM;XRF@m38w$kLS6YjP z3!9zJo}U5##PE#{@Drz(jG}!t88~b9&{Uh{nPgj*pF3@Ci`~-C>m)ca9DK+dbe-sV zb;+T>xB(^Y#@b`k7dFye5{i_YYeW;^XoWVnf8ZL`pA|1>H53e;TxiPIZqEJnSTIzi z)NQ(M_nqzF-#%0diI+UKWOKG~fMjGuIV{lERp4c=^}(RP~b%HHZ$rOjXEjLpg1|1cjqybLUs zh}gT4zSeKBx4{BfzFYsX1bU6h%hTIhI^U6++K6R3pNK!qJZd7dYFFHJ+IO_Vm))bY z#x$L>+!5W0em>yo6*v|OR}=f(7B;+ozOH}>YxFwLGLnhH-OYkRrCfhnXFA^G19N2j zy(`UJsj7<586jZJ>*I?nNB0s(q4aXTtN_5V-Si|$d+{B(N^7N~1Xc_6CI3`E^68g( zbo$Wfa(kw0hc+KkGyfN|1Zs$Qz8)QyHtDMz(2Fv^#Bgd1h%w|m)z=s8ES$eiDGL6U zV(J`iq$VB9i$f@bie3e^= zUCbl8WZkY9)tq}zZ@;}ms7@b`Q>EyB=I|bF5x>t5eKP1jGdIF9WL3{sF1$gl@2(km zMNA&c4e>20L*TNoX+S$pRJ#tH*=@4pNRTNBnY`6(Qv3KHGTi&INAWYcX(~rwk6LgoWiFedO^YW zeGCna-XS?Z7p4lw?#PX6bhaNWUteWheC3JT#2E9MwoP zlAVja8B6+oHQJsZNSyN0o!Z;s@ z!c3sy>aD3gCRpOa%@3)%SEOhET;0yEwdL#4Awfvwzj198JQ~1kJS9Qz9v6rpF={8^ z%jaM^t*IVwNHgtAGffeu3S|v{jU_E$GDnZ6Yb!&Yn@uF2a$2JmIql_lTn8z{HE}?U zA+X#;1Il|7v-6;>8%B3L6N>%Vrr}Lv*`}GJT#Z!=kDq}DN&eQc)e%*Bsy4*82Z@vT zdNXI#2rm1Hj@jy`3~b?L!=im+H2vJ39ho04`6xP>|7{=X(BVS8J?hEXPFY;gP)I#E zwb~z$TbQ3g)v~?Be%1TWvRl(t_}&;C0N|gV=YKJiv;3R?|9246|Dm(^pK1JB16&(< zeI*YikQr1!xef*q8;Q{ZA)Y7@h%%4>s(gWvgh^1r}y^N>n>|*%WIbBb<1hyH(Seba1=}|s3@+&eS*ylUN&-WV3d!U#>_x_KF8+Iew4!5%Ns-cC0zYD5ep1Q*EfLH(x`+0|D=35icr-Fr@p?*4>j2 zHAb4~Xn_2Dfl=3xWIHycLL_}FOgj|OZ`U`YaydKZVjmGTpxPV#rQcTs6meyrwtAEpkVd^1$o}G$%nEmO>8ZbRH5n; zm!uP>j)&l(N0g#W(5I$Nn>6xpWEVu+UCbdvmE_=v65D z+cuzX5tq)y***nXb62ovKE@skYB-WFGLPA^R4yJ%V}+mdjWsUI^N7|7rZ3eiIN}#_3L^Y^n=itb`zyB!Ff;Ad+9)u3;&|R<6~nE>HoH;ZZ!q z=@;{sahvRQB4{Q&v;CR4{djFV{bjPCyXMhsRZ~yu=Vhrpl#PXs2SHyk<}_5;7%=64OlzK+=f#OO^8?TL7$MMYRD~OV%=FSfSpYVM21RJz^QF zn2Q2Vx>b}j$f8L$Qc$3Yv!R5}2P-k6__XW<*-23|z2cr(IS3HXutX5}Zo&~AN?~a` zXjHHdKPn1pTcdmq*o089K%Dw%50V>U?;NWHOQ!GXVT@im1o@+l;6O^`210KPRo}3l ze+t>?hNwlI26$mSJ{P7DEy3KG_}%;jqP99h7GM87+MZkCU*mEDDXL8|6?`P6P8cAA zS`Ov-@m-NYZfr0*K~O3fAv*G{V@9ik=;-6jVWqU#W=}1}VITDnz!d%AojR~Fd z=&|4WG1I_nHMQs7%roQdx!5tEc$-c#HdoW$!Yh)(%d@a(yL{^-heZY5ZK?e$+r?TF zxm5GD>$bYwfU71Z#!4N<^Tryc8Esy{ExpZ6Dg6)5qK+2BHl%?+dI}IB60xx;F*1T0@lZc5kt}T0d|(sZaJ_@SI#)X- z8{?j?b;%3qwd-u{87*yxZO7DwrjOC_Am?&P6_OvB zv$on~S-TdzTII64t0R) zveEJo_etqQhz@c}kHL<`EosEhDX`T+^g|3JL0k+O^A?b{kogEz5(8)f4MJH#1ID5r zLXHK?Aj}x^X$tCaa%L@4HGqoQUlgoSsCxZ$nH*&4eskx1=WC?Ukbs$~Ou^aJlexx( zb7iPu{YKH?A&481DcaP|hp{ps?$ z&mE3u&rC4@z$>-;KxV(yX2{LsKZ!A)*J9-%mne$H5U)$DW!QE&oqr1U9WGDR2lk+3 zuRUJeB!g-(SW4wsmsxfoqMY#9{(T4#JkkUKV2~diIS_f=Zy-uEf$g+}tNvs<&0v4^ z;Cq=R(zu8LDL3AnAMYxjMk+dA-GIk*>Eb&)WeU1%7R|IIGHp){r3sFXKI`RMwNt10 zDw?6f>&!J-N9qtos}FLQwbOYOSXx)IoupErq78sPq44KVlJaM}G?s$d@h%PR)_zH) zC>wES!ux)zp)XhdR;*^XeT6A`HLZmm0kBp~Zuh6>{cgI%Fuw~mY=Ex^o!LtTvtB}?nyMZ?(RWLj+*Q$NA#QWD zklOvQ+KRGWYaKL*PR)ke?v)u^?S=e-^Q4Z%ciBzPRQ8D@gUvBTFV>JTx>>;!Th!7> zQQF@{Ugo)fh1%o3BszbyKtj|Qe^bh(mL=rGm|Y2X3%efHPl1OozJ$oPYsLB9fQ;Fr z!U4=$EI1d(b1tG%KO5mg)wYvCnbuk{c9oC}wcN52WwN%m5%Sn7my?Q&4DfQPLwIXm z?53VGki5F-Sgv`#JHW8^biMZ7pP<2co31dj9PQ5#76spGo{wcFg9pgx*q@?l=w>^_ z>r1*>;g;!)@@}iI-Z5TW!<)scL%+oO^4Ie7HNEv%rC@6;1kI#_%Z++0BsWwa~}wU475cl{jj^{puHpJKm#;MHQUS>ww^nL;M7 zalgMDYxKKz`PXaT;J8HIpY`mV6VCBJO#FAEcfEsYoNyl_f2s635wGku6SFbLtgjg{ z7b>f#gBL@#1Tf2RUA3rk28#z%yKRy_pK%Y&hR1A-*X~P0H&$~nwYsROUiS*9I6GU9 z!^05WD6^O#F#Xwy^NXncwju4(WMXq~f*Q=YN+K*`>O7-&$EkQ(QPoeh+nYI$1>_>m7n=r*{Es}0WC}iZ@Ye00f{r0S z60`)U4&W_va<9k>W>NpZ`f=hb$?=;A3lN=49-*(b{s6vIJ)fYE>xp&3^ZG5*tvv6D z6GT{;tvqj;As-I7n5dcF^cuU~8#`Y&*?Hx4>1|E_L_p)}Uf%KUuz5AmnlJNC-zNCF zIkzV#PEV_hRFr`Vh!ddZ_K2CiihYfX z3M@;HdZB;xM!SDC8E)SdsBG`nWUqaO0ro4e)l7aJP&|m?>&`}x;o%P7sf~2I;Wax| z4Hk;9F-1x`?Rn#}po2WF@688}HXSGLIUDpX*0{N{zK3-3o$r_pG_o}-{6;7NDT3bM z0IKyNU&uis&=Sp|^BDfR2>k{fi_bh264VZ^n&5joBl}Xlm7H&^nLSoyW8vk9|7z%D zQB%@Nb`0|oa!ZR;XLWVD?mv$UcaadC$^brjTgG1gH^S;U4C)|#4;$8xa=it zYEtj|4Iqsje#K&DlhL{Ma+OAAAm+SrW#T&eq@Bj^<{*1GXuvOmsZF&~?l4JL3I3S} zoa_A|1B`C_nVUQ_fPHjS-O{}}E~R2Ld94Za)UZ}}Z{j`E=jrKksF2wL)D&7i{_{lE z>-nU+Ja@Xi<)q>0DN;hC5<&uQ_jxnHb^(YWyl%%HjBU;yoaEyPL6%z3wnY;or3-wN zXl9?4Xb)N-fNDrhLO-a{cO1o2LOzj5kZYJKKJaJ^x$VJ?hL37=qpf^Kc;IFJ#C?EF z4_Ye9BI&|i6Hmz|j#7>@sqdR;9H=?A$IvDoQ^AD1K+h6Dg&Hi+pBoIk=HBf4ci0kU zSwGP|nSh?f14;6XHC$=A0R|l?N#Zl%G3n!sY(cc&mNx1cl%7R`NRmW!FfHePZ3#PP zCln{@Y(9PX z%hI+jchkJZrjK=El_QHUon}O9u9NB0SGtE)5=P1&@d)8$D*G^k4}hR;Ft$zD>%F@s z8ESs9%at17x`Q&@jUzDUB|V8k*z_K5Ct}f!$n-yu_}Izhgmw`mN8ho*U2+W44|^>o ze;vNx9A0Q(v7k9_$bJcU9zH3U1Wr&B(fOHY^k6tq$b`UGXD`vOh{rCOr3)C!-ykJg6=YdQCKW(whaqGN64sws zXYFGmW)xxZSwvG=pzzVT43FOEgDdfvgek_NmBqj+0(lmbadzAZ6Eg|Pyq^pCk=_Vo+%jy(CgBIp}d{#gOS+BopExE|}XyLrvI4^(jj-o0uf~LYY^soqrKBu#(Q{ zuK%4KokFcT(H{vb%_a>+`gy76(#M0#rQeX7+?Dz@_8S^Ax7siHR~al@*iYxL^l~4T z3#GtHl!TQ;zokS_f4LwKGKM@FSgR>68%II1<$?ms34CdZ#msu9{hmD*hRR?45}@30 zDv}B3!aov|95`%y^5NL<-UR$dt-ry@*$Z3(mA)za`~dWZQG899MwVRHq!mxj1`D&D zaXaYVyb}$6)2J{C;5k43Jy*8xnSYRe#|jEI*Wh_(+q7@Gp1$`*&J9ktWl4ei(y>c# zzQ`)67=W%*4X0BeMpbt@TD^n0J2$3L#@yOG8MuUdIv(t>(aD3 z^#WUz_4IqWXoaInaU-QmyRM*8YEWx5^Hytf(NGy%Is7%d`0zDrZP?hI!&O~ALECYY6lJds z@Awfre#y<5&eM|7)awB<4jlBmZpdqBdvD;&_h-x}AQU2y1wjq}```rL+p<@%1!!+p~T-IxJ~m0`)PY?gHkr$xTrkW^bXm z_6c{(h0ksJd^^yqI+5FWE7AiuBS7}-jkv13=`-hcaDg0k?AOFj~Z{LT9c`h!qFDgUXb>zd%ajt z%R2BXi@A}lT5W(c<{tPSWYH;^g}v$*!I}w`|#dn32$EkQL!jW|70%Rr+x; zpl@21c%B^5LECJG-v25Vql8*aJ&U>Ye1R50%O;$8+}!ome!2~70PJys{Q@gvv-MJU zu5cH(j69SopB;Cjaei`u$NFg$3d#dB=oZV`v>V;ws}n{LKqi293o ze<5-@Pr*bJDSND&#riF}+F?k8Qj_{1w;P3p-dwe)lvi56*u{?{(0qSJq8uzW) z;DO?oGr@Hry0h6(rN%Uis4yI228D*_0@r4O@B7zu=2adqf2ModGK>sF>I;~hL&cvAx&k517%v*JyfSL zPsyol|0}n7_awr1?2_o5l|bxpIqT2;68j0+v*WI3`^Q#>OCheuXm16tb^ENq_C`md|~_$K$Xl6?)+ZR7TZ!iu?H8 z-;Q6<|LiN1CdBMKqy9^c|0yp1=Ls>#|CfDbJp*@>|LiRT0t0^i?|9SzCjLvRrE8>5 z0QVJU*wFVII~q66y5~1rsrC!~dh?CX<;A*&K&JEZOZ#ypjQQfXQLFd+=z8^r&*Ssq zH#;F&2gp*;^-FBi9?k?1JoxeX+lhku?M6lOZI=?ypQ_fEIaOHrqct@0v-g=_~P{(l;sDu6o8n51^U3qti}I5kXP1J?SS~_E(88| z{r^4O{~SI4HQd_3MgQ+18npig(eNnQh$kta@SfIi*qCOfW)yQQN>ctact?PSpgzT5 z1%L`D5{4-9Aqm-(6sV$rtPDsN!+#QFaiCJEZiHn~#b^g(WmQ*+%aoY3cpdD#=G?}8 z=Dv2na-X)Ja>D}=5Fpqeh4(=K`t$3^dryeGM*#5R6B>#8LkI_x0}%kdt11E}qrBTc zi2VLU?SBB+Ga4fo6CpYXqwG=o3kxYD8XH8Az1?f(fib1Wne)r>B>d|0{+I-|tUa$P zGX0U^L-fnmQ%%K2!)YLy*T;BcV%cVJPwoV-IqI(Z#8x1VA3FEva|Y^}Aq7j+K;dcE8P-NfF$t58tF#5Te=&hLqh7kK~MRd!{2k(^WpvQe7Ie#8`;-2v1fiWduDd@$_h%s z34*>FnLTYIel9*oi)Xr@OFITpnw!rjEPZrZ6-=!1*rHb!oNCr4+0h>;amUrfQP8$2 zGhV((p9+xqCNLd!tlUUC$gr$fyUv=`D-{6=Y|Sesvc{0DZF2@9&OGbhvTjF6rTwD* z=Y8x912w1(D5`n=XkpDS%n*Gjtoh4voTinruIX>46B~H-mrUpCZ>BR1{4lTNE(|ua zpaTeB2n!bwFB}i1+?~*BT=T479NoD>BHmgqRKc5hMA2Tkqq{m>L!{5bwC>eAc*1W_ zHD0-A(V)A5mI8+p;Dgqk?-4C<(gWEzeB?oVr7$~~qD6;n4zQBC#CUVl_#tUl1ie7v z8*p#-?|?UwtvUeTd?GOdk}S{WzzXCK?*xydTV(~xnN|f=VuJE`ZsGnFrW&{u2y|r2 z1|Mh?N}T8wJdiOZ?ApzNX|E?m0GO4@;Q8|9L7MlxK?6`0vR-)-Fh(LDet%+=%Rn>; z5bS9&cjk1~;?J^ZWSVUy0N7LPM{Vja%q{*KS^U3ouD?3Y_2(I!{|Ykv7{sY#X=!JB z@56TB4sAErBUf~^w3fb}T0w)1g5dYJKoGC<+{u8+J9DXH3s7!gCzy5Hck_KxQXg^k zW~;WV+_`M;_YY(V*#qI|DS@{Yv{ON2Z>T`E6cjGHj5;+MsD-AXe*cok)!q5dU}xS- zS>Ux~$pqV)TJ-F0lI6sO9SM=Z?Gc84B)WtoH_Kj$^Yer33{RG}Cxh;>5_lAxqD3G2 zO|(K_Mi-E)b%LViKuM3rSzl30RLw(cSg1dpL~1)(K0v(nJ4?AkIJD(npH=vHrFIG! zsl0#PR3KY2g7k6QWjH6&kN~UB;^sU8vhMEAJ=cHd+7pf?TqGXj$qTQ2F=JMb>z<|U zFPmk96zR|ahyV!%i+Cx04;k)1{|p(p{|!R>!ERk6eOo&#Gi|%?Fiils;g@X9#e=O$ z&WbF7X_ZCoY!11EAdL5GA$$g|yh{bqQs_#z4Eqdxwa}}>;v+c|3@8SGo-yp<0TJD2W##IIMANE+?9c zLW#8{lc?A`w|7&@cW2zlt*8(w;|862 z;7Tu8MV4p@T2)DkM{JvgfU+dJo2L&jyd73u&Ff^-Lqr(>hwtu^)EmYDKl~WQxHMzN zy+xT>`m;&mQ~^a21;|U_QJMYfD8>i(@Iz)s`ex?(cK>^i_h=Ux$se-&8y&RMC)8EgqwMMQ zt+n%c2G^$$3h^n`j1r3acw8LrS1Yp8zC+TC5c1n$h&FDb>edGt6eq%cLqaat*Gvu# z!F`6W%B8OR=3`Wyv4+MaIkjfLHfW|Z>m_=R>NY2fY0l5yHb<}@1``OGmnDlg-mG$$ z?{+N;B;YhPsVZO|^Ve4dEE`Vu?QDkah!?89ZZ0iH*a`v+!K_S41;#MLKcHu7Kc8x@ z%db!eCvW}hUg@45r$qwr9N|&E|0`GUgYRbghK9x#hQDB)y1sLsIzg`wV4c#GTow2? zZ12|ArI5|I56o?wKFo7&bqwsi53lFuD-RGN+Z>WesZ_|xB~2Vs?7y5avl?BxQE6sG zo)E%BNyOgUyiq&ey0$F&+6>Q%2HCk+n^X{S{_SRcX;m|p3ouaYN$yOS@xbSm*eBQA zOJpL`M|44vCtT6Em(_~9r&Fgl8+iU5$w$jkZ`jWT-6Xr!=w9f4toW?bDc*wzE4`=F zq|3vVa{lSud!-{rVUb79fHSwsT-nCyU|KhoCkb09=@{>riT?WT&N1pzBQ0)!Cx;#Szu>Q%T?Ef#G!3qF~%pRf}9N?8-vQlfm zAtHSE--5~6?uTG<9uQ1Q-{EoA`{@bX%3Rs6xG#kE+-2q}-<}sr63+u6A?(n7JCH}c zS!7_nZWa*&>GAUbdKIOh(eD1fPB9)h3u7g#4`E_W75ikdnIz~rC~soWjpJ?omH-@d zlB{F{F#bSDgv)&xs)cz=Mq^Am_yCLc@o)$MLcsZpAby^>PWrzmuA5ux>6_Wo{nE_!pO>fp<>j?)%q?wx?IAzI3?TsJ z|D)pV2MymJ@>i&BrtPS2qsj1~Shs*Q#ozRv@B$w2ee`!miklB0axeex{^nGMOi|>J zQlmwSIwi7Y539*nTAYwj8yqLpI-BXBUsqz7fW4@&R+39)KWF1gFPif#9f23|{l zdv?ht8D{bBIzPzeMt5r+Z=<}1+%@bKjK`tEfskL@JHgsOxZe&fB7!?4)1jOgg3S79>n~`i8wjTrOIm4(Oqsm9O z@FCdaYR;)5a`bm(I)S*pcb;$5Jjt0CxxlsB3G6xLnCNTfGA&7x%0P_2HJgA^^f^Ey z>OWE#&_7zM=^kk$l+nP#9D+Oytwrlg^5rHRV)PIB*q^?Z!oH$^Ng}YA#1L3xC9S7B z0E3`~)9}7&`pQ)(#i;5m2>b*(HN?i2Sq!BK(rB5A`CzdQ4Hx7^jmg}pVbMsuYPp5; zRRZ*TWy_+p%=&@y4KH-r7W-UlkI1rc!ILRAbsQtKs4WQQ*0*`l5s7jzsj%RnGhaRs zzqOp1Is$9g4s`S)u`^)75-T;N^EcF^xI%H|>LvB83PDnjpU~x(gxyv1Abw%|0S9yy zeVU7^=-@^yqDP{qpYWpraI-Z97zv~PCn#7AJjN@&CwwC1yf1T_H!X=7>~MzU%6*ck z>~ z(gOsHzS-npfBM36w80f`axn5Jc`y+#bE3c3?T^Cl%ib zq3gSp(&vuMArqX^-3~=S4L(K14m?oa%h0Vx%j$0YG8xHIb1xH54+$bp{MG8u#vElX z8C3TK`8`(6DUfhg5}(qRyux*@%eqt#`v5tnLjr}&RS<3gd7es6`~+m`MK0HHsln%u zwS9=!T_sJH)guA3rR&u>)$uAZ79S?724Q3LD};b)(l&DWp-o=Kt!2DPt$tmq@~ri05`AE!o9B+1|puSefCeqR&aaGL_+5|S=`&Q)lR@| z7R&&*&2G@?GFP7p@hBVmf*_p5h~X;GS(Z#J;!GN5OugOIaL{nNtj1X!8|^!t!?lA_ z6=i@~YS*FWbV#AAQll*l?=eeldP!YiC^V5PL;chtDZ04Zrht_?qT1A@d#OeXB`Kt+ ztUZo{#+%wWT1HPg3i*sILR=y45N$D$4Gqk4MBdE;ia0}Zh1cXJzv2A6%-O;b5+mzzHD z-*C%7{DRJ0@}cEx-PP{mcOu3nV@x!e-x|?w#hY2#9Q!%#gESKdTscpoDQ+ajUaC4Kndm~VAK(^x8VT%Iao8P=kr4)FTczYeOaM?U*z$kTn#P&kY zr64MYX*KFAMwCR(t@7;Q_KjbfE(nL4Sub5X7a0uc?Q^$Y2IHIDE85102zWBfXeoJy zcpUcGblYHBtJ=fz*T(Kk)(uxOHRlEpFcvtpZzWJAO6ugL!xeh2^`sfm!)LApY5U{( zoS_25VgO_$wGmK2IPpdR{wd;ap}#z%T1m!N$`p7Vi6>=HVESeLpCUztVxBLa2!7;! zlFWxqe8GBLJ~djh}f-+kNEcJ8y=nL zrerY&ym8hjA6lsbdv2@y*+B(9>>8i`fK*p;gu%7-hRuo~eC z>2tRhiR6g6#f>W{UZ{K)d|2j?pT^B_7P&ibw~cvyBpB{5IJFvra+3hbEqLY6ZUSX{ zD$V(&@vQ%F_qx4_rnG}5uJaYM#^J1V?V2^FB5JWXb73}Jw8XK*J5$oVVCv^P0gJsG zG3~ing*Old4l4fO>G4Y=WBV>i0dc-!zF%j=b(`{+zMmx2>Uek zD$t-YvFL6*5?djA>%AD!u@?F{jEG~&B>4thpjw)AA?Hlac&hxAN1ym^x)=Ou1Dp!- zQiGHSA2IlHSVwiHx$2 z&ojhljNOt!q!d*kvy%LLO9uTB>I-t`SMr#ZZOnN{bc19Q>rXz`O!XsSDtuzMVBM{5 zZ;C3WvHB4%~Th%_T)OUUp_p`yr)YB?9{FrC0Hf>p2 zw}qGpdn2*a@&Y_Ra*qSm#2^T|q$JgN-R1MBJ!f$ z=IWg>-9}DHG|r>KY_!pq#D$2ahOps?@q=89$VJ#WJkK*&Una3!Q?cXe-WZRX<|bBa z>!8;#f1S6+fU(3GE{Ht`OeHx#C8=^{?}xn_+J=Rh{Mv1KVo8dd6yy$jfPyBOgeZ_K z0~n`F&HFyppu=*BNCS-P*thfB9Yk8g*o2tgv+noSX1Par_ZdTjhQabL01Tsu@tC^+ z2N-!hZ9DD%<|0sk`|H0N-T$^2=07ZEU}gif)oBh#B{o6}Ccs%t!J_HZ~IN#-)WG}laTM$|S zqy;3D^sH!KhK2czPTvBSy>lLxP0<6KHJlV`aPAFkX~7gPzOHYY#jnj-KjyMWn`-fq z8)?XKg0Z{wB;D!2-ny*B4l8C5l7+I?yC6{UAP=HhMU)14m!E5=T!S-PaNfp08laT*$NCOXi|AoMwCz z9BBzWxTL+FX`vLMGU?2a&&qx&m3CXqzI?O#Qkd0PELxrx7$3rZ|uu)82{Kb(G?9=3(K)X4NO+Z3hoX zamKo>>%Qn9{!s!Y{yl+amT&ZJ{*gkydkVomahAO6ucYfXB*d5CrDU_gPS5|cXbtlv zovg&6>tK+5R2jligh|2+PX~?(qR5LstSXGkGFIwTfu>hYi%)dwrWJGlE0w#u!QECn zyFjW7Z(-eAxi#S(TmrEvixc0vA?SMOfzjOW7~hCGl&nN^?pyf3ZWJ^;J**xZw#T#w%6l?^ts?fz(+`S zsN_6(#sALX;2lMKNH!r_Mnn1(l2OCpUDe6*d_W(^=ZkLYZZt#HTDjW=%TqFr>#irm zm1qJ~uF9G`ewg2~y2QdMciGWG`c57SkhW|Z>+k7Id6dq7Wq^JcrAe9;f0SA|z;A!qwfs)4jlLcr{;|;iN5TG1YqY5&A2-VSp$6~DO1Hxg zTJzP74R9r(M)q+Sd~3=Tv-qRmpkjf9-Ty+GU`j?zCC+wzkizt zX4i=3?ScKA?LyFGi|JVizS7j2mzZ(i^%q_DTQE;bTRjqEs>j!FlzwcKC?2F~ zbG$eO;qFG~DB_#NsdBokZY{}y$yYWdlGt>${uSb0i8otDOYSj4>Z4=|0)G3;O8ltd zz4xC;V4qTzUx_54Uobsw0bB?4-kuv>u6>bRKrq5Yd1m@x4SPG+t06Olq=k;b4?f6& zFLQEgk<)O8bfc1W9s3p1lR)J)7(O^2o1;xLf1YMo^qp$cKn_VdI0$w}rQNr$%f4@xFqox*s3_S1w$Y5R}yv_*#_GBp;%sO4FJkTv)-pICni;$Fa1appa@zh!Iy1Za0$jC7b zwI6;QHJm7FffT&%1mvDB^lXk4eZX5sKT4P6zoP3N5Bv|s>;r5;d?fJU#@z6pDzZaH zKzS_)1B!5Vba=g?q&T|zfZ^>`{m0lDLr`{!0FpM}XRiE4>ayDm-!}V&$^*B@O;=Y` zmY80W@wHVqZCQS}7^1!QOXF>Q^7YNtOey^ABvenUQ&(CfyYxMcp9xlV?qNaFqcr|2 zX!pO}2LP`B4t!$J*O-u>O9Uzc+y?^M%7MLj#{=-`TEgD0_h`tBA!!+6@IxzS;mgiD z=)shVsCqYY_nJbRiu@U;(gB z7Y!afs?Sgh5dKBvmX?E$enpG0BZpG)Nah4h~@ zviScH&YA%#rZnyD-~ShrvOh0O_6rMt&(Z!`9R73U$ny^}`}2$cSpRQgT4Qff$rvWu|av2vQ>Gb?H;2AQK!CO7ggH8jEXLV zUL`pgQcshz$^v+0JI$8_GZY>0ewsJ=<~`DET0Y9(-~r3V8y>rc|aKOTpev)I(x`7#RsU{50`munA-sq^C!2)gM~NSWV4L z&nfw!)Xz^&hrr!ri^@Ep0^}-*!la^R?v{PBT*Rqb<<6I)!Z+vuh$>v&wmObVA-HKXz% zmm+Qq6WrSqco=TsW@VDNclO}or*1TzIgLB@m{Dkt-Z#z2qfC>_VZF6w8%{I)5-im1 zYzqRH;D^xrEC9}< zL8O=GRWgmz9z(Od(9@QrXB{4WMCPdLi}hM$6cC(wl$Bq4bR0Zf`naPR3Z_z{0YV?gglqn$B$xaR5u(CGV5zo&AHQhh&=+S9D*BYsf-jtrP>fPI zD^Vd`k87n7bdi~*mtYAlZ_b89B#(HzeOFH77-*(-Yp@CGLF!}v&?YJhD!ckl$(Ch) ziA*K{sT`!4laF4B!xQGI4p^R2+GrDSyEtqE?Z3cG#l7TkK~Ge z?H{?>no&x3+e=82lL^lv#)?k&?yhO9Q!TNgj=GyWCOIM4kaRORcbmBH9TyAlQw-$S zAY*ps=mn}DX?p67G8N6~ug6o%cGq~G4d?HJuoCZx<1_Z*5jgQ0xd{zcKLa*q_V=IR zyP+k?>7;>*gcJkJAdAeo^2*Bro|l*hT~w?RLAK7(>!DFD>mt=bH8}s!gJT4%f05LL zI82B=UasS%`V#G_KVF=vrjS4nMrC;Mj8vSGqN=BY^mFE^*I(Sa`wyLh+OZ4d`)R99 zr}#8+3es8TdXm@Xzvj_s~}9SIY>fKQw}Zn>ma{t>?|heUT?xzROTr@?P$SJ%478E#^mBfm;#*(OKvsG=({uO z4Xy?UQ)F&&s8b!B=RH#}Z>xYb%I-W^?{sd^gLy2jvg%Q^^e*lW_NPnhGqr;qm{y|B zR_jR;d*uUKKUKFu?xEi6K&8c;$Eo|tMq5EWKS?#nd+9-*d+}3^gGR*z#E%a3SWt6c z%lNOv|64-ohy4320P=4jIzo&XilAgW{ZyhzZj<8s>OzSp4eIE?e&x_=7c5`=LvDBZ zj=lpIXYxjQ2JhJipdy&|JfMuD&SLHaVopT|IT8{k?(31%z!g+(?lh7e5ap~b@wa+% z3j!Cj0)4PHO`S+k1r&4RpygnFfXZB{ z7zmu?BbUsTMtYV;^ZCfqkDK@8tzuZ9wV9ZL3eR=L>nlo36Y)}CmvM`_td>?Ao^?ru z%z^d&u6{UuPMQ7)(yqeh0WCxUdt$Lh)lSC2OWvm%xmuB|KpCqX6K$Q)#}(MLJ$vzR zuS#BQ8pa0VFFB(5$WhzM;5^;Bkz-xAG+NL=q3Q@7&qW>7BM%GIBC50pVN`bU;q+Uz z%S+F%RD_UfY}vEwaNZqN|H2)ld?5y(26r+$Q7^uJ<(OSAnb1N+^|lvExayRS^w0-f z5{uVih)JvL+nxIm`l@p(oNifCK!`C+nrAsNu}jyVO@!wxF?2F z)Hu=VbfU(l1h{kWt@j8arp68@7!15W-R_!j)>@b~nAjJetPj``a9k{NM$Ck`o(CL~ zf`ZA$<2GxmAr*Q~@@Jy)93Ff|W32wP_?ZVF-~sht%rh zD3QB{!tzN$DA&EGEPuV*NZ(Z#S+-*i4Eb(6)g>*ETYw_xSzK8)QIM`)~a!|q*)wm zIJ;D@PH&1L8N6*-^(h$V&;=9~vJuFj{H__&b-&wZ2#JP4v9c+Orh!v)Sl+gar^dC% z$)&c&<$J)mO?BY~koDI`P5ym*%fFTNZ}IT=ZU3?lfb5WdAUiB_t~F(Gr2K{ep;N1` zqKSUj&Lr$%y^$$Cu~lT5^AQ#0oR|&or2{jb*FWubl(V7qAa8hnqDjVhlMG)p)S^J(1k zSI_ppB@-}<(pK{nODa@3_^OPqQF87ZlzP%1wZH~i<=}N7t%S?ywFNzoUvly^s(tsh zw8CqS+8<@ATFjeIP<66g5lsC>iB~b2Os$;l^}hVjvYT)yr`pdv|Wq2mD^HGz18N|dNBu0c?aKTItiDM&1qxO*gg#342ZI{Tc3 zV9PpRZ-82XaXIoRpd3ZV26Be~ILQ?)O=#|eNEjd_@Gg32|ho%8-$UK&^tn!zBjMD48$Qm13v2j2n))+egbl|Fr z5Vtl=3i?!G-DSuI`Sh&{c&)ib`V_aoc>gW`35(Qd)wKsF4>~zwpcWvgd;+8F0*D1x z?6QF;RVyJv29_LZRt$IL)tg#34yH)8qqH>JIIDZ6K;G)z<@WO|^(zP8`RsK`X`VU& z_wU}8G^Q}?RwN?F`N(L}j0#SOYk@8fB36ts*>^gTzqJM}yUW$$Hu0FSqRXBzhT@0B zh~`d7c6*52MPqN{lL5M*`=~DP{s&9(r{u)nVTAmANVjbMSnH=c$g_EP755-P2jn7x zR|)zns-r`Bg8Gnj=!uFPzO4~34QzV?P=0qO^<+pEr{dYj%Uftl_#9+6Ub zHTXiBtpq{GPYD+hoN&U&Nc?!8bu8sL$TrJ}0fY;;FjF%5vI1+G_hSCKl_riq~(*iur^CJYB}!swzlZ ztyotdAi@G-g7L&IHiN_tcKOLH{4T+SaHQQt@2gG5Pp>6MX`~iwZ9s{c+?k-qy zj)hn<4#p~5uVCae&TB;U>tOi#?1l2Teo2ZzMHX{a%Pq>KJ6j10jQWu0{YwN?&!)$k zr#^v_(whTMOAUGS9N*nZX$D(5F$VWokUHczUsyyCW<+9}UR3P!JKHPl`1Et)tkOW; zwN28YXCv|-*m1v4`JThHxfL1StugW{SX#0|$GLB)M{E5qm`yu&RJiQ!O4U(ByT-Y`oNI&uHCE%< zK;6ob-dVWy9)c;8)dnv~D5os+=YDSrRIuh%87IAGmrd}@;&yKpUjnI8S*?4O!V!88 zE=I?*E7jyeBT}@s*WC)j;|_Z{l62F$bjBNfYSy^OdR9K&UnqUPT~6Y+(%#$Kn$+dD z;rHTtbZ=~}kPdxQ<{lyLma+{80fdk6sPO+qr100nj|Y(h@ZmjV_#yIb=4N>>xixF* zjE?b079Rj$m=??L$dgF-O$}aXz!*4NJ8@D{>Q08>O@gro;Dxz_flx6UUi(r6dB(kd zx?4r1&7)N~@iMKq#g<4=ndB}yBDkKBn!@l_iXz0Gj{G2iyO>#)8-eG~NdZ{_!N6Ed zN})*cSm}Q0<0m4r5Rsf+guK=wgZu-Kt5e}k48?JdY>Rr}G$d2J?0~Gm_DA};${N|v zX4WKkY)n$qEhGkFn!RSn239`wyVJ1wNMm6-q1F^wfrl)ROd249UFHplDQJ2}9Itzt zq%b7~vh2C~;-PSy;QxElNBMiw=N|k+AvXlb!PS(02mhOLaMJ2ZCfTXf28MC2@Z2=1 z`GHFxAx<~=wJPL!)I0~R7~LaQvo7bYjMyI z=szBS{yAl}D=?7}@vCS^#RQX0$DvSFLu`7E#ildcKjXsjM=h``0t-9YJT>8n*Xvdb zY)Wvf8P*34S%OQ)Wv{AiDKJ8qwjFEuZ3tm6NRqGVDPL1 zb@eq1>ar4oK?8C)w(>T&S@KHx#sSIH$WN2H2vFu=AXcq|8yX5Owc(F2_C2$A62mY$_c#WjXB)W|o5dY~YwN5qHX6qlsf zzfQk|$~XJgQ53i`>}tjj^97}Rn;q=61jzg076ilqIwH(h?C`wUAA#Rx#C{0Ocq7mQ z)Bsv$VJG`8Ot-}}BVftfDI<~pG>xqZJTD#LU^m`F?Bz4WEKu3o8B#?3(5>lP z;Xzt#kiTf_vo)z8kd>N7fv9V1n+@q8+Z|QF)V+L>BRnviB*mqv%XA~2aAQ?~Ga@xU zM47G%EsC-IJSW@p89mE->Zm~K=vbJ19TaLM&AhTii&UWE%SkGN%H{AW9j1O+)K*`g z{MZbo_4q>CAlrs80N&3NQ+?9B9j=?>FfeMtSP?wy($#NKT4qfo@lA>Fnab4Nd4bBU zwaCCTeWqi{xm;Z}@pjV|O7N0SgwL>;SlQ;?T%F8^`-Xz^&eojfGW($qTm3Bly<g3X?r#l@8BJ`Ct>op0b2)g# zqCJrW8Q0T|GcDdi7#{)T_Cr{keHD~azJ;+Gb!0AQHv!VT28X^WbMK4iT*w< zs)|4x`A69^ObH1!!lFYGT4Lse*V}HG3ED23ptcn>LM(F|rT$a9J&^fZOcgqT*0cbF zP6^4h03{k)V28^hJ?h`J%#WbYsKuZ(I7yA?g-a*XA{!`Q0DgIxGwD42c@g?#LTc3h z`rV{BhXRzN4HS#G8dy1<%o+4e zPDOuS3m45>QE1YMQ!>g!4~Tv$Uh5H9t*Wa#r;&1Yltg2iWe;jERnz1IG&&Z12&)Kl(rIF2e`p_Yy63ZD_*xL@^p@GUyj>W>NxIrra9@ zGND3+9GN}K65G)2?1*?ryK2D2dZ7UMJ&)&~J2Sk14{?qxQ%}P7U10`4wsinZrv$)sPXJ8U0l0V_#Ia?N{TaZy4qVEC zin!N8sv+NE;O5*1lAFWgIOp-`MKM4GKU1|LTO`L0IM|5>!}>e{zdp|6t;)ft%VzSy zB&3KyfvEzM3t6J&x*!#Pi4eGqv?VWg7@ zV-;i2afHwL8;T}Mvwn$As7DAclQlk473ChAp{C4)F~|}lM1Eg@I$O4exN+ziJ<4-) z@E*dn^!!U(^;-DP$#Rev1t0Ijv>sVAVnCQydJ&zlu7mf^aYC!#&j^sF$q5@n9-2NiCxMx6Iv>8P&?NN%72;-8LQ zOn2NNHCMAPWKnetl1;_-Dqf*5c5!Pp41vr6-L> z?$T?ObzNT?d4Ib_z=Zx|K98Iiq@9)q_^`f6@bvB7j{Z;}L()M1jGf4PKxTJbJCUa0 za#+^v)2i$&ncZMq(8)uEQ{5#Z@cmgH#9wy!&qV=P|4Q%d`M0h~OI0zag$T#;H4--|4_vGw(_@anLox?~!mh zAW``u4kcy_G!3;)&5!q$ci<^aDCN985RnWPoe|-??#~j%wPTg)m%4L-XP;`{FIPh0 z(U%)d2UzyUkXUK9HNtX`sF3e0Un)$<1T-jcdtm}&=~kW?z1=f%@J%<6D5L+Guh@_B^%pBRer7D? zql~qs158f%&f|x@XfIQLU*$3vapB)>8&`ZSu0#-3^E^XLRws+Fy_ppe7iWfqTXTQ# zOkSBEXo!f9=#!De=&EB&U}3@6ha;zz;6{Nw0C@_3;p)!}VEG>m_)%H#V4my% zEg#x|u0Xv9W|)W7BLMVE=v?&D|6Q$wvRih3I5@2k4WcJT#yfYqu&nK2@ZypZM1!PU zeeDVeJs0f>wrFJB_ABG$r`yoLX!WPbVElWl9A#qr4nTy##dXy$l_7zI55g>txgj*C zWM@ZS*cZX2n;cdIQE!GwfTflhELO$G*rSQ#s0w7;Wh-iCD28Z6oKIglPToFpyA zVUk&YAicl63;w$D0Tj7aF;SKvL-qdi?ZpJ*DkXLt`Bf@ z2V2~y5J05rqindpZS*lV{KYdp%$RzxE}?x0t@ubn=ThGgee78+uBbYn69tP#`_oe= z=G@T=6xi#wt|FWdYR5LA@Q-54h4ORk$dS~HOiAwyL?0l@^`)<)A|-|!46YPRZ4Hm@ z3*on}71(doH67wQzytX|#aGd&>V#ypyo~oRjv=wTPM}QiO5$(rNyDoIM{g)DC!wi6 z?47JbM%g&d!rQ`=+*wqaL?U+=QA~dek&Ib+@Wtst6LQEe4eq;hC?93PKY_B}G~v%I z_|x2{2R_J3!2(P|BkV2YHo(eqUD0)h4;!c&@Jw`ici&zmzTAYsiayPzJ0RIsRhA+$ zIwGGDer7HQQ6ra>StWoca`>U0Vp0qr`}M1ur+DRO5H#k=kc4n7a_EC&uy(R+orfV9 z8bODlyVd(^o(eh8@T^g`#D-4jrFg?t;@;LTv!}hDWM9yjd@F-jUDG~K|Z22)->APx3 z+#3eL^9UQr_PQhs+nD@7YAa}yi|BYE)b;(2aF%(+6()mDL`zpPpDgAKY#+OcO!33C z^wfzY>jeCa*tkRmUL$^0_Mj58OaU2xbWf-#x`~jTV-TPLT^i|ur1eH-?g+58&po_bd;c}?n9W$D8nxa@_*TlFyA@ZM>e+_fZHIfyP|D0QboPX_MQ zmo41qTSw+SBkntys2*j({heUHx;cKIa`Zzl5L*G>mu}h}Ke_SkyyIPKyf3fN$^}wy z3-#?A3NvXGDN)DuuZ>mIu3gW%M1Z*IEkZysI>7xgL&g;90)YbYOj1yxX1XB9Te*_7 zT9$jkJ)uU>z6d%xB4-+5YoCQcrzRajtW}$>g-RG8Q8P!er&mXX(HmQNGqyVA_L|8Z zy}X{A>v|7yWl-P{H8NiDg1?u^t^YXJ*}Q(HKh6F!=Tt-b+iv&jtB|YWNCTbNgE`@C83i! z{+ajOS6;~F7APYM(Jy!NUl#~)Kit=hofBF9zxN6C|5Or7 z2Ys_Y`;iCFIY+dPN4P<&enO?>OU{N$5)TD97mEgX&R9JobQhM*`jZJ3^)90n&#yS; z5PVJyvhOv$6a91J`94Z)i1DSRXu`5~550XVxWpiBnHPp4=SJw1EDLg8#>oF`gF6n`_!^d6oqKQb{}U<1Wsm37~y& z1uls?@TgYizN&%Shi(PB#*K?y0C|4}5kEsSjDLV;cG`x&h|7Lnk?^q<-&oq1=>dim z{8~}%&r6g4($WttsK54rpCQ%#jlh3rGak6{`@4UCfG(iH>if08whs`)H(3TA{0{vRg}|H?erjK4EJ@rkLBpT$Lol1CJ0@tVzN&hlWDs`BUi3b z528tp#us8u(fs08|vhRq6+$P4D6*|m!j=?f5UA-8#eE|b*|RGB1vH`2STlu*_GsWVxu{#5?>U? zO?&<1m`&5@$y4!SGU#rI(_rMZ@DY57e8_VxgqN8>FvYr_s?41fkOXaJwbiOJPTu;( zXU%w8Dh^4nVj$1&1R88?=cPh%e8}cYIO=HwPoRkz)KuJCz7nJFHnO|0`adL4m3dF? zApnM`RcHweE6$~P z3w16$>4TH57w$DUp$$P;ik6E&#lM3bV{DJHEXVN$gpvIW>N5(FZ<$u{Ad5#Uus0Sy zv22|H96fyhnH9>g(pzEWr|~w`p3~0Dw|fF>(6F06ipu7tHcS=xJ0~BqS@>D;FOq;I zP4h=wKO(oEH^e`c zwf&ut%q{IL?6i$7{wyi`uoeVwd?djG(p&H4UGxhoDS?+N;ZNT{rwJ$BI)9AAh3QIR zO-OL9l$s3iSZMLl*?L~{?nZg;Q_-_>hx$Qk>R2n7w6Q}VU0JcP!{Cg&Hjcvp#SR7r z9D5inB+ve!C#|YhyZw~aVQJXml={?Af#)Ffo~+a{PY(QpL%D8`h5KNI&k!hZE)9Kc zY+mjp>Q)&vJyo)@U|b%*$YvtW{U%y&6&RM)^!ERZ-vBn~x zY;t|7{0?p0q0d>=#v zrF7Tevl*g8{mi1hEaHQbz+MJhzhUZl>*I#QT$UE=&FyHHxE&zEV++UPSI1bsya62RS!-#_+fVE9BFyQfn-U`u-G^kN9KaP7 zFtCEGo?wzVM$?tymifxN_+|pN`LprOd2h9SNW};F(X9{YYiTcyW&Kt*5r}r**P}@E z=T#6U_ngOmtgyNWR!5|78;D0=ywhJGNIQw>{K!hGYNTNF(QIf-WJ_|$%M&J$mtS;~ zT+M5b-}&}tEm_Ox{4KXY5ZjJMh)uMu~2=5Oww@(tkXL=&nuB)TXBp? zzD}*YAX-BxmrEEy<#^^W?yT#kN#|Z1*L*MUlGHN)(CBTVE#fQTTDJN`0;ka(Qav2$<4l1{Ie*?kg;ug zZ}b-nEr2RS`Hx|Ho*#mYy0dt%az@Pnap?r+wL;QjbuxMyfDh??$y0HyfDF&qvk)Jzw{tvXbTUTyVIES#r`|ZR)Xv`VZ?#gIP8Y|cSeu!|0 zpcg)BOIXx(-Ukart0C%`a9Y}YuuJXyp+sN4c7a{TSJhL%G(8D*7a!jChXZ>`0`h%POhyAJK1uP>BkQdxvse)H$Rt%lDA&fW0MHoAXZf;ci8I=c8Y44$4B& z^Yrs*bA29s(c4}<0|$qM?YFYxC#Lx7RP&rN&(fDU1V_g+v=2i}g;I`{->of7yEG|M zX{+wff`C53hD^ZJNo&{c z>nbXDpHz4a|0=tFYP-4T7y!K0BcAz(+alH%hfP6tLUmftVn;@| z`WjFL~(B-(yyd;p^D6*?O)%39#ZU{{Q8Pn(G}-57K^V^(gD zL7?Id3Pz0L4IBr@)fJzsm>l;-Pn660>6cr5MR>06tLzY56cztZdS6&EoK`)phX=wG zE(qVq+067agfDzuUm8y!IXD=FzfKH`qIM?2iBILHg2xA!F4HLj#q*~5ik(3<_bKy* zR~+I!$8v1KdG0x;@hHdssV?<#j{V%Rq8|OGHM&MF_pK#6Fbl9OF3J>QVIXjW23+mf?kM@p{}ufxF;Zp}nA zJ6fWw!6l#v-69bfdUi|{vz14R5lJ%WWucj2vNO0KT*OBD1sfzP?@q7O0IZXbl}Bv3 zW8eF11zl~ z+kI6HVAIP-*(C6v_TfF7{?gf@FWU#>%?o#*a4a)KY@7(&LX0l+d1jx!PdhD&x6;gN ziblhw&&ZVE6Wk>r_smgGJb-|Z-HIhhY!;{+A-)2a_ifJ5{ zBFqk-VyiiIhC>Vvj(tI0iY2D7zhUgatc$9ag2hQN@yFMjWCB;6_0}@%#mhZbvGCeZ z6!Ri0-yRz@jWk+V%z-_%nUJ)A+~QCo{!qfL6iz0**k<9Pr;+zv?AKqRt&} z4YHBJ6~ce;m~E+htI)Eh$3Q%LNfc6`AzT`Q=O>tuONq`pVm~bl*Wpni-)NS1=fR%c z*4WgEHKd*n93+Gv43W()ph6d`n_0Y1HiS^h1OO^8^z4(}taNeI0xr?qsVqpb1QF}d z+2FA6`-dU!GDSG57o{>Io&YFSpwlp5Pk?~^S&$cQgrvy%065#EBz8HJqd7>2KI-5{ z*wNgSetiK-^Ot-Q{~!4DJ5YbBB6>jzkgxP5JONY@`7P~!mN32FTR8@IQ z#MQv8d9l31Du(0Yq|ZSqV*gI6i>P-F$tB{6 z;DH|LWh3g#(Rl@=+cVL9vrpXa89}s-?3oLH>y7=H*o!8cyTINNJXRU(x6ni1#0Po_ zJ*{6t^}lHP?@;}7y~Phrf5}_jzuDq`qkl|#AE<0P9gU2FzAm^L*X1EcDs?!#oVvX1 zc5qc{1=c|Vvm8F{H3!WTPn>J1AqTn1J$j@oO;P8AdDXaXy;~P%nt0Y@quN93D7DQR z##gx0u1YCXCz)FMkZffQz>Ct(Rn{^CLRf8)ti~E_ro%EIV+^weHiMKEJl1$IIatGV zr@c#x6Km0z-|4F44q_xP8G?B~5SQe6Fsvts@qk-Yqd8E*3yblGS~Wb@9<~A?`?aV` z{a@JibCtqRp-A-z6(Cp;!f^~!MQ;b@cCsmVFhU`)=j_oEB0Ct26t53mh~j(=EEkrg zI!4td#>#xXQOh%*^mb=+-uG-_u5N} zi)PVgvS>TJR%~L0&L9XJBWfe0yiz+OJtz@o&RM(mI(Q$-b?z_=K0v<7=jl239rTom zDl%mx6Y?&Oyivdcb8QR8zLDuS)1Y)?;r>FfUz>)%x*X|060JY(B>cS)+bmA*Wi|}` zeKzC@!DI@PHC%}wQZP*WF&nNn44{9!-DnTQj)f#9>p+nvFYo|hmIS~oU5k~up~}Rq zLIa||qx_q%6^5Z6b6h0{KUgpi1U!R{Z;@u0Ze{VjR2%@b&o|`8a_hsZCEx)4!X}zK z=7r`t4U}a}2Y^P?^v*>!7faFpzTs*_IOCS{5XOIk6O_|uTxJR%!VFo(%TeU;TlPX= zY|jGxY44&l_1V`g@89J9Nq_{k3xJ%_FGKTxnHB#<74uIFqqrvh4*U+KwSs=hy#aZy zHh?peHvKMfbbSwn1s_pZ(mR^!eO!+O8#aV8b^Zy)cmbE^=#i=pMMQwcRg2EU1}13B z;(!oaiOSqo{lG!W2&u+FDK~VT7>%r6SCnNguh(kBjLE>pZ)#r-8s}8^;KX9EN9+_s zlSncmm+hgi6@K-^p+`jbZNKNE&=q1se@R9Y0;qZO?N|D?AqWk}^3cogKQ`n5^X&?9Y=S^NS5#gMAda$jG&M4EN7LBSq`KG~``^X@LLcv&Tk3o$1=jn;EhX zkSw$=aphK}4e(wt{^JzMMt}{yo`~Q{Ru4bf==Zg2>U6;-c7uR~lB9qDWx)21VOA*R zVw@k2qx)e)({Q}wZslv8A+@Ur(heJAYrwE)U7>fEEcbsEr&_Msdoo>b#?&!a8 zC+93qw-j+Xl>HATp?l~o>}4B5@t5HI)xnTog7Yt`O3f6dUibr;@*sCz5IWGm{2&ls zKXadZoLXzh_YUW@xWp{BH0(5>nl12aHi$sKs`AzLcx!Ci^5+!VU%dl_LHl8^ORm#dGD9FN$ z|L6*rFyT!FgZnx~riOR5Fr)!wcM zK(ldEl7c2OeJ6P?n3stGBr=;)`Ayj zS+jVNBwddoT5)=m@(lV@@3;>7M^n{u<};uR9tbW6=*>OP@28wrU%zO~Ht#Rr{qPzD zmJL!JfN%2Umr*Y9@1pz{aQ&41ijI?e+2I$z4P6t`EuLaXFHa;vWt9pkDV?6-_;i*j znnp;)M(eiWt1u|Q%`_kbMu_(%$_bmtp|J)*ER-T)L6U7Fa4=6Xr;-}#(lw$HUUDvk z+7q8P>Z=p+XM+tYq^6M&xs{&^|0$MVeIL3&?(p(3u{%i(@;>A?V}sb zq6O{;R=ND9yANfWdA2*k*vldE{Eo*&FkTkvTM~}#85nG~Xcue6ny{U#M$dOGb>2@^ zPA%kbwtwtsseVZw?gfBy`%Bnf8pi!MR5o$=IR*B@F92F$=b`Pvo)fw71#jA=sf|tJ zp_~A4q4?g)lZ=Ce?iW0b9(+#8gvy0?B*dGFP(+4sKx0MFgl$C`(00tU>?E6MA?fFqVt$^COM{Q?b_&_eL~yj8#9O4d ztx{kSPd=M;pQ>Y)uM}fxleM0HBP3v?Aeg)ud>EV^CDX#=B(YU(5|Y<$kF;sW_jIp~ z)A)U%VXa=}`wy9X%j9L>3Bcj(mq`896;{8Sl7AxDKV`w9;{bky2rcY3@P$~4(uX7( z)M8QXWI-zUJV@<6as}8qQx#cH9}k!k!G)W_kAlHX=gUV?vZ5{@C zbWkRhA*c^paEl!Ppi*p~S7#7oYYCyH2--zlLW!5bEf%}TcWTbSq_s!7ZbWp_1@0Ve ze!hfXbbhLES{otxO&*OJmP=kj@z+QR{g<5jJ!$br@Be}o;E-6@ZRiHEsh*Ii?k5@& z;^=BSB9U<->EU%b+!LT6y^c?Wop2&rL?O6_0-D`mMg$q05je07;Bsd`9SLK>HR6=W z8Y;QTQNbXmDtkOMQ1D)4vt19+g&`33TD#Dk#A4;#?{2|SbEqU=vUj17S_Y<#v zN9#|^fj_Cd&J=;)d*xm>eD=6XE$PU+v*U`({?eEd#^O)dCy5QK1Yb3?08f}(yD zbFq+NWSH^=8&#CstYlo4J)P})q3vzq_chE~k;}}dwCeKG2H&d{!`|qGxCWo5($aX5 zpY=%UW(o`s^H>BF4F`WrRvSk#BRv>_!VhlU^^nL@ge)h8Hw>V|oC{FvHqq%fQoGQ) zSy1?gIe#YoY(Q8S1~H+0Rz^1vY@62zl`n&L5^`WG>aD zp>1^8bKc5v6jlPbCjA&F%x}lCIYwrSDG_xE64)-5#lp}*Ityi@lvpy0SL?=(q&)^Y zg$1NApr{kv2f-e?1j>JePx!K!4KG<#INj4!AV^e%jCNWxwp81%DcWRiYSxa-ojQVpq(}Yp@@16FHt^ z6_eiBgj@&jW#Xu*q23zOX0!_oQS-P5d>9r9Rw(||G~%62OX~`E6y_rCoC_x}aTGP~ z^w7A14RQvH{O}R%lKaCbrXr2SK&abpyMCj?3+LJl!#f55;63~jy#IE}{1+**-`z#v z4|nlqCb(KT0*hA)EP2k-3cAyW@|}60u#58Zo{K9Ttgt00i6~+sGR-bh#`XlLLrZKZw~ba%vFq^3;&~OhC1mf(2g6N zBew(8rXA1IjW&1v_xT3EjOq8oTd4TI)o2F*b@EG~{;HVfue`;dC(0l7sA9K)--DYc zNKR)A0G>h?g*c`(b_V79ZJOlOYvKAdr?U==xl%f)TzV)%Iz{mkxCz|xXz&eS7Bl#w zEcHkSybv(>&k0u?3Q(!eQh5QfutKz8R$|AgY{XjS^Y133bdUJ}jv`F>j6kS>He>QS zr**@HwkCM}o=<*({ecxZ-`eu>Us9W(tabbgu`0XvUOfE`-!XX54$ifz{# z($FS6M}o4p1cjBKHgVtIzZTY$GY7yEe?1&n+aTUr!s+9;%-PebNvYLZ}{ zUzfoxEMw3_DEb*1|~Fc1YP*Sa@>4y4wEjMg7_hpsQ+|bq`l`!HdvK2 z23L{2>Vv|rWoG@W*$Kfn4suQ8BjT9}C^I_VTS>@jRFz2^@V(5h=#`g(%UR*mYUJRA^Io^&@MhBp0Fc?;Y2FyXN^<*5ME4bUie@bx2KA7{_2%Ff2_d zai%SuV+k0n&3pKjFZO+%AQWe}uEI3$fE)}WHsf*$omAzYhjl?Ls^vsh$h+Bbj=2#+2zDw1DDU%XXLs3 zZ9$z(lBP=ouK`$4+d>bUH8#@x=)Bx8k3UpukY7uvi8a?mYSbhDjwcGr@|Ki7z zx_oLC>ffu#Te9R zjvuWhns27H$6`XDTgfQUo@qn!ZqBq`;tn>?3ZGq;y=Eor^KWriL$IN(DuX7+gC60r z5dmq-n>Qj|&U-Gt?a0HRyrf!l&>3;ny6pq^uxS88fAEYmNI%*8Lz^-MjKE%Y98Z54 zc>k@f`lBuQQ{wE82HyE*iopBDR+-?jvqg?8Ym=RCl+1y{d}SN%^3@9CBMsqz63{Fl z&*kF+tfDcrB3oVYms&A$qN-@E?)b4AQlvY;Vqh8-8jnkmSjGSg#B~KOayDn!XvP+3 zYHhl=UIy`36@5Fege~_8fM?)iJb2LT4pPC_clNKfhT*aqttBP$ugj(jc)a! z-iCY<-iw0sXOk~S_5kw42hCu_?e)Np?dm`grw?F{(aGxnQ33#*pDNxBfb7o}{^#r& z;@`7p|7idBKh>iB-h1jF&-vfW^nX9=`qRVyb}99LG{Bz|t7HHueu(nFex|9Fv+EDx zE#Kc$R#c>srXP}$l~=1%mXsNzmY)ZPO(Neydg`nCQ9_&y0vz8)|x-5#6R!u3s~` z^7QH{FN0F@WYT7Alek9bBJ&8hcws|^*glrtp>doV&~4VW=cMHH-K5~GGhq;u5(@_O zqBPvcq@EhVq{GCTG|1Yr6m1!sBY#^7=e($=c-I(1ahWP-YccSyA?kcxJX|6CV;)ur zJ&S=)*s{UJfH47W+K|oHZ$B>F3_=0Tt^|DBWRPEdU&dea%H9mn0mk6PA{w|lIN1I` z;{62kOIrS=2}3x~Em#MP@Ovo%xlmjQc^J^0GdIjW!BVWp$LmvzUET5_SpvKBsy^`b zr1iI$Xp!<9%O}aoW(1|tI=PU5Ix(VN3no6dAU^h zuetnhKKpO)`lH{?KVH@^8qg|45Dv^o->EeXb4^1rq+*mp*ty1xP*L1p|J2 zB;cs`-vj(#>B`&pzv)V7ULYUQtCoglvR9k}T~zD>{OpruT%@&BfZLOqIbSi7*OI6~ zmrx~@WBf3p9#Qq>FRS5~UQ_>g*`G&7`OA_0Eja&wjINM~m7Dj+2$}vqLdY0$nwOdu z_GJjaKjpXHhJZB2e|%O=(2PdC{!D zex%5cmc0tjW)f!hat@{pCbobM!Tnm$nz)1LPmndCAxtTEAe5J(_+T;Uyi4|QPQ8az z7>1-l#|`jW1;C~SdUe{{QxBc9*Yd|3a_Juq-*188w#m%`{ys>qUU!~f3(RnwzG{m^ z5{AlPGRQa66m;fqp#AKxzL)P-%vBu&eB}$tB4Yp!rxmDy8WeMd2V(c-CwYA7XoDst4 zmLdys6wYu#E@Vr+l;Lu7lB7%^I>HsOGa->r;0@ng29JG8evc|2cT!wW96N0_ZIrnV~PBioG9gSetE-$%D@J61uz{5m84R!N(Q?M4r9XE zT%G+8NLn!UgY|u(LP4zs{Xji0(}Z2+rXat|&z5g+=EV!R8OF!jAP=Bz^)n`d=Rwf9 z`#{`ewmdCGWuy=nrul9Zi8KY@tWV4m+p)UJY)I}OgEMH8yo1Dq^3;_MtgNSsJl-8B zfpeF#=?mu;mz)oSH(`@Avqx*Lxll*sfTi=eDHoay1jX-QGfv3^Yhy@#K>C z7Ql@K|LB`g)N7`p;8UWPL&G;pVw}3RtQw)*+MBzP)tU7n>q0O)(l$Kvp9TfkyqvJp zEOr)^hxl^33*qc86ASUY-1N9OQ`k#ab>Akj=mx3>`oV@UiVaxIgoE?8^=e#2zoWCY zWHu%Z_D`$y)I=G3I0k|3?;*$Q8+G4#jfmeI(Y+J6#_U2G7^kmNwWwVib z(s%+~nZ6c%D*po+fAEq+7G%b?%p)T*;_M6uu}@M zH_ZmxX3wp1LXgtu%!xv&Fv#lbiIa6$z;AK?+Ny-7iU%>YL$uCfmpkI5g_YXgf1wfG zcv;l7AtlNTzq{nocY*U=%!a>O^Qk_S3novna61y?mmP4=T0-7hnU+Tx=v}Y*L`X)` ztdpB!i*N)*Oqfs9E#E!4^|wEcdy*d?^0CW2(G($9-{gW+=Xzhg4=vP7vR< zlCXO4ElWFsgW|VHKj6l^<;i7hKvl%Gc((aPnD$mre7t!nb6sHgJ+11-30a< z$iK>LTQxDMep+=Z$1J}<(C^4^TaR6x^I_j0chpx8wM|pR1K=QZM*N_#2O_bH}>oYnKtt1PwK z(_xb4B@0&!ycOmYU}uvY4uSSGxDxj1^+>r9i?R08Mp`KxOaYB@GGru9GO3O*#lFqB z#igBAxbaHd10=j$lX!u?(~PKtk6e+6YQT3){Bb#lhLlt_wN*s#ST-dbtG`6V?h_d& z6A}&LKzHgl&Po2pK7adE1G?f;01-U0`FYag(Pq^6)3b>Rhf&ZJY z5dR&=`iktazb|Cl=mk;d=zvyPwPK_XRvXTjGmUpkv4lLf{(ZyEXR<4q_CvARTg5ae z&rvee-1QCg20-JK&x{u`ZWq;wZfctR_6L(Nm=e@7q>0vy!yTQ+QKrjya?O6XNy6ET zt!#Sr^`nI0MEaxO@`TFA&T&B^{UI-R74GU01NscUFGbkVBtOzOOgiPT z!r&^653@cG4QpSSMDp&MRtDT(Fg>Zgh5UYpPoRwOH9KMt43|KAs@Pl_XPzct$sVSD#>HFZ?Q%_u5$C$CDA7gr2>zOm`}#wwCX^Wm3&6{=;Wt5a5AY&pmd7LepIg95|NgabSdUQCQxCc zzVfMA)D7E}1ZCvR)j1AXObqnva!i@zwT-!MM_Yo;zC6o%GwdF+Ok@lTUGw=o9IZMZ z^}}u{7p1oAdJP+A-MvVAk`-^M=&$*(|rP# z5?rKR7_DN((`EO8KY?rLc+LiKXdo_-k7+LnD7*A-^SD2~{U_bpB{qv^P4fVn`T)NA zfS?Eb_x)5S372RZMjtiJ&zF61CewPaC@$kyYwS@tGsXI+!_sCw=c(J>aUAG+ktNQ? zk1&l@7Qk1wB_QcnQwwv)JrnHc*}Yjegag4WHjb=6tDh+)`rw@P@={)&t=8<)*}w9J zIX@*iKDBT}WQvZR{%&!h#opcpWo?9G;0#Wkifr0MFA1-Ppeq-LCyL&?6#mgtkkM$` z0=Ds;PI(Qu!GMO{BWA@r7n5_m!Mcf4?6( znS)N8=ak*$Y&k+)swlHv^*|0=R}DZE^0q{foVPQI^_Kw#12;r*0@rki9QauFVYBDW zQ2Zmy{oFY#0lOh9a9UY}{BAYnBu}^8Ad}Funb9A(ziWwwp*?5@p>3J9X#GE7@rhn~D z*URF!PHcO62?huV1n-YaflrQqHqFexG|e(@#%9tgQueN97J!E0Ru1;R+2%q`Ee|w+ zZI(vCvBJVY+VCNPHVb=k~ zEd~x{xq))L`zy*}J7KfdVuHwwRK^hEP?c&i>JafH9NpquL8uCR=E1QLJ06j@S%Ju@ z2qaYKny(OBgtnpi-p@g5#>o2Y8!~;GoFd^4w6^gZ$oL z0WVoCWhk~Vu8AEuPpt50T9&N~orv(sFK_@duPu{xhT-(g3VrFB2#q8h+E&lm0<0W- z=c)-7&sVXN)H6JTP^0%e&>fx!rvp9`WE6>VCf|wJMJ7?M zTP#M)L=H+mJbe`UU4&+j!q!HysJh55)$&|^VyRSZQ+1ZIrWgyjBlRhn$wl3Ggm0T7 z&`nz{DgE<_Ra<;g3zK=7$x_Jpdn%zy!SP<>#?Ml*l)MG`{3ZHYMaB8~r)>NT!&hEq zsRT*TtN1v1#B>Iby5Oua60b;Q)kn}Uf#zsX;Kp}S?wy1#%UyUOUxw! zMqy!X`lxd6nQ}pKer-j4CvvaZ+MIiwYS#t7(%bI zGtvXnt@jfwneBMZz~k>f_r9g#d8exqV;`8=Z>u32t@rtDy?BPPHKAF1^d0ob(X{7d zCxVGM=lYkoAT2?M5f`}P9@Q+vkda*C)x$L~QA`B~OZ&2T!pw>c)ta3%EH3>mSQFdr zc{fH`0?FFPpZrMy7lpoSDdD?W0}&R$w9u`SOw?OWSDSS5GEqxRnq zi*8TJp=U#b7k_&dg!#TlV1x#8!&o0 zp<6&0wPlw=-OzabLjwx@0^XtA^fb?-E8d=T@!kj5utZb1@G2~U$VqBu0mhn2Dxpnp z{h6?V?s-8L+pdzGT$@18J7+v(UooOu-DJ3W;Jt4+`E8QUslbQ$H*2H&K(iq;Mi`rl z@((a7J~1gmG)%Mk9a*VK%)T;>pzNOS)jX*m_xUue-aj2^KGlq=ZiNXJY#mmR#?Meh z&Y8^{9a%Ftetxz>_gq36g_#A{nO`1O%uz0!U@%}57m+JPSNd`;8kC_^WdT0s=94$g zT4iCe1a6tNG#10g$_up@Gx%*f4S ziX+e>u(Yt%^N8WTwMD&paROsOxH}XY4h_iK9aMp~H&v>83R#|0&amKh{UL-pEtn6U zJ+yu4q>KvX{2<|h6eaXpr2WDKy_RR%7tN z(kOeLrfiDBdRj_-RSX0_@9koj2^Vo|99l=agkGQ2sfxtVGJDnoju#F2zQ`RyXE~n6 z^{&sI0Q1dT@9#jI)ZVe0G6ME92LqQpEiF>y-)pz>+qlHlbg;e27*Mo(om{?uHMP@Q z=DizUo>}!|bwljp&PVeu&Y6;W6?<&xm4t?05iCQ$#};rbLem`SgC|qksHS%2b`XVBxHS%ocqCzdTQhV@go%F4EjG6hlUD zBM}KX+d@@3q6sB{+?TPKvSlH6lW^wT|MA21>f$-`V`tH(!TpcQfY;w!$55bwfNIeG zXt)lG$o`b2r2VDg0^}!ML>%nwi~#qB{>V@^YWeu8dc1$mYCkh&iE|YW6odtZj|&-$ zyMTdK6ow+_KuiO(q+;6`TO&&z8^b?alag69p2t`*F3-~|>_j4*7nqyDk-QLcTYsao zsCR7bW^g1>8LPJVwQ=R_+v8d0Eg7+|z~jNhxrhIOhklpK#CgW1@9F$7Bgm5cB&xb7 z+bAJIN}4rx(JQ1_E%7C$MkD&2bB;#Ma%6<^cR3&=s(5OHssWPGa1U*evDUycLc}7o zQwz{=z557Ks9D)@C_a4woxh@m1+K>66n0maA__PDbo3ss&KoB~*|Dfc<%9Hc@WDdyY@hx}Hpl|Uxnzz%E@xV5x`iy90qCNDg1lMT1 zOU5_dgDJJer|p5IS>4_J{QStq>U<>RrqS)p=Gba9v8KJau$UfHnWpjcnbomb_DS6R zAU*%5^C=Sym+}b^yJN}Jl0}xULp5k4xzc*JtAG!x(fY{}Rf&ZRyv>3=KZaUmcevwIYuXBeyKBG_ z7tI*I<jgC1u-~6j&W78P*P(El1fCi-3(02}}Y@+Y*N* z7D3DEVg7Y$QLL!rT%u?9&lM3k*355qjj-RKjD2AB|T6Yf0}ZS}-gbjR1N zvXmuID`+U=TQw?B)~RVpOFK1ZEJ3~BoANiKgSq;O4m@49nGD{ubQjBDs(iu<;!VN0 zeW+$Rs&|M!xjSRuF&8{;oa-);ote#6)8-(?OH~`2kdIq&?>*8|)aWjhqdpK%hcnWb z^EO>#N6#KY3R|CI5-#bmc0$8zWHo#YqsQd}tumbX2DrkVe4XdaA>q{+ZAcAn{#IOh zDg-}{a%{c!!>3q~Dr}A>>!iYOcyHMZM6bjeoA+jyrhRwf=S|Y~c`+<%tnYV_H@XMa`0r4SsyLAoFS-}P;M2XH|WvzJ84sE-vKO0mTb`(jz8iYMl(f{Lr*xXT18z?O}+32u^7iT)C;)r8P94SgApA z+MaQXBY*FWgxKN)gNRyIB&u@Z{$@8!4mXtN3iXMuyyC2+5EoFV_Dr>*6ee*ofd}Ye zb&_Fmq&+4@Yh1Dghf0WJxzylQ&R2x4_2r8j&ANeYokSkb*DZd}3bgZq?EQ<8^(iAT zRpR`hTc`1qK3ijtMN(ZaKKW*W?8Ra4Gf?}Ce#mck)xvb(gh@%pv8yx9Z{K5&3Z#Eu z84FLGB069zuA7i>+=zC$qe_0?LRq-AtJ{oYu0u7jY-J{A?>v%Toz+dbeg`J-URfz) zF%54sOWYSRt9Mqo#sWnY=QuQzg|)yW08t=#66W}oPN2~M^l(}!Pvu0JKI3|T`!^DP zCBE3nw=8xUHt~@slH6sowY4CqzR}KMlye7W*>&F(`B0F`T>9~&!(6dllP|p(p$uyB z%W7-=%c;zh=VjYY;~WPWwZB!A*(D9&K8MADIjc@oop*K;~zxgn%f@V-cnr@CRf8t%kDg;Z4@J;Rz zgNLY}ktJD3S$MTYIC{bVJpodH4t3=_?Cp4JbVU%M;}pyLB*pN0x7PXwoZL8!8u*F6 zC-i6aFv6Y9mac4Ze(>ki%Q=&Wsvtry$6&i@LYGudV@;`k|Dztc53bLrJ<%K!jLnn? zxR>GmscdiWUJX&S-(=nP_r+}F-+yo zM_eTnJzW}~lBC#ZYe~KoQ8GjLFmOXV|6C5QAx0ODN{ig14k~0THo|>#M7xIm&AycM z4#kkWjWyeGeS+A}y1fy0zLOSNXK3dVds+hBG~DAr+f&Dj5l9OYM|MH1VS2NuM@7e| zEHD9=;WP zYN&9Ght-n+pZ4gs$-Cfw@ndXqD>afs>&V~?_RZ}>F%5PyeR3XC znHfP4b<(F}#?1K_dv;}*3^L@IeZA+VS~fRRC+giq*?rgr!X$}A_){}dUHz?MW=e3Ykq&}eu=&1$k?JSH zFpm}-+^u-Xd}i*AS=M;FOcCz2O)*gn+vKo$CX+^7B5n-0BV7YqhPuyD)!YiZwbpZel{}6>Rbn-*DcJ~iM;7dHOtT4^q|gU@;F+*{)+5@IOjBS2!%r76l0wDQ zZ!$CY1ZXtWFXB)vvF4gaU>5M1!|!3oT$;@Ou>)GORd(%@#Yu21*_X4 zCzU=8Y^jr%ZVbSOAQ_W6-6jwy;2P5>;;NvSv^&^21OYQAM=E+HGP2uhSmMS=*I3cWth`Hsh$(u9i3eg}+ z5=PD+>9UKb#p7D01i3g%uq|i}4;|{cY`2K%<65g;JIYj%VpgWa3q4R11^a~r$V`*$ zo(_qBxE_RV{}Nv73b%e=rfy%Ret+$d>|oT(UuB`4$EK6Srjx~{lg8w18=?)O5zZ@u z*gp&T8Dmke@5llihJSn$1v*1w@?z11)DV8*iv#t-Wf4frH#nG7vYJkNymVf5A6!PG zL9*6Br<1Or)d8o$p7{;Z7Qvok#V=Y2m;oNlU)M_nardvzNlwh(uhgamJT|M1Fm3J! z^D+~eX+?7y$En>lkY>XxVSmAvxc~b77~`2^xei0%BbN)%J@aUpLCbaDxLEpi zlVUL-Tl-nW`cbV#Uu|!vllHA3I7bi`2Diu}n1PKa9xQ5F3q@(~!U?o0Pq&n|VQ`r= zrDd+*W}j1-R*JQU!Ym@jgN7C}|^QBNUeG+jM39miXH+`c_}au)HX&fh(^C*NjBe!i z1ideGyn9|?mvGg(eMp^A$iDbIox%BIj3L=1QJX}<;NdfPcqY85wh)mEBop3IO0;LW z3~Mq?yI`SCgzJ$HhiC*jtXxtDP7(Uu!Ph7Rc@Dcq_YCs0u@@z9DLz}I9iR z_SSiJcu06a4Vm^B?-a6&Gv|79>)tWUFzlS*h$_8U$|^ed5#wCWmJBpqsasEj zPRU#Sye9rP4n@ELNkC6z@OR~47s*!Lo0PA+sOB5YPm(sjx(bm}k&EUX$ROP!yd9?WvDu1;!QKXTkpM&g|yu3Q;Vx(8^U zJ%z75D*2ouLa)V+a-*a1UQv>r728@)*AFKc4DLbI04PgPMDZwL|YO+Savn6@3EO3!~l{EVMGM+_! zT*@-+H(M;;G20T~D(umzgU`=0ov-l-j|*7uBm2Tu>V=*>(5Dvm*Wb5T{`vKgGC(d zP0Z|F0sBB^rX~(Xwt!MCVOs|io8R&jm1?Wbs1iv0!DQ9+wBadOCf&LysCu^b3;mpZ z{U1yNQNYnwFM|zKkLR&Cv`$ORH9-7;vwILPgbCo@zws3;`yx|%J;C6Pj!q^^r#3$3 zu8=L@x4hBy^leuG=(cvS=EzaOAw3>9E3S3fjei;={?%@bzai`uX9pc#0&f-@-v&#l zQG)ZVhNU4~)BDCfM-`kmSx>@}ZH24tgQrtG?Knm$-_WKq4WhGpE*!BEkKdUAH4kUw z^2@mH*@{FUBxm*O!IQ%EGXhUDjUc@eGRA7L;7+=IO&mX=7&EXk{@uDZPREudaW?h- z*;HG4i#8)xL?oV=70y<|HFLqf>m$4GIFt91uC_k){@dX-MS{ViPnRT}*dM_tp!3#s z^>s%pQ9=>~zz4MY_(Mni*Jh``x)HTb1IK(r3!hYP)#iugWNkicYqRBo$qt+o?#kpJpvNkD}RQjW?>vJH1zWC=+2N zRZptUPx0EDJ9C}Uh|ci1sxD9Q>3UseA0X94_S`?RwH(7}m8sGMv$Pa)e2sap^wtDb zhb>1<=;KXP=>uF-SW-fm*XxnE$L~kXQC&5*54FTTbMA1q*}eq#^TtyOT3W_LEsLzS zX{ct?Bsar6*sl&hAU3bDBiP2v&V^bn`9LhsxKPQ?;k_BHvumz;R*IOVN}{ON<|x*3 zkHP7G7PAbBAr(5FyjCTr&VO{i;b-_BBO}qw;^elof^1K)-R5!kM1MG8l)k`qnuFMj z=7;V6IT7k4P8jD&b%F@j_(`(uoYtB6+y0WTs9v^m(Xt?Z+I=zi7_A=|Y;!)ISdNL( zyFv=YKm(J+CqWus&MqeW%qY3ob`dA7bOWy5b&ZC#+vKkrv(vXF^463Slc-3J@KQL} z_03h1wvdX0WXhgs@siuj))AsKWZT*PIn8-Ts)GvQrL(Afh28Oqp%BAtb<1k0c?^SC zrzUq|PT`L~nnmST+NZ_??t~Wtq$U3$D?dlS(0>{I|G3NIj{=~6th_3Y_Qb&f6@_bz zVkw!nuN=l(V+ah^{OqQCZDC6xv#6I2xNwX0UF;bD?C~L;xaoESvL{eat7?F;|F(( zV;D_HGYIoB!Q2u(Jw$KJ%s&Uu#(W-UNXtA`=feOk$_n<*Go+|6q{tTD+uX-@=9V`m z5Sxmo>ACf);S&QU38>&=qzjsd>t}(a61f+awudkdy+P1g zCOcTSl8hp5m^=-!$KkWPLMc^=#d@-TpFRTF7|~v|?4@6Nn+}dsZwia;W1PC&XH)hdMYTDuNlUlWlT9yN~0^k zR+$}(2|KhEB=tUNk8j@e#YS~_U!`Cxt`JfDQY6Tz<^Exk8Loj zI&H;877Rfw`k<{;-M6P*q$(i%dm=d}dj(7vdIVn=a6{hS-uLrn&$h;>-(B%fQi9Ez z(!sg34X*I!{Y&a?$g?Ze-Kz+!*S;d?65)S> zOWCzhDB9C)s9xNyW=wwWP4oD57NArs9fw|wmP?QZ_Tqcc*jvc9I|}T!rDndjt(nhI z0`5g85L&erRdfmyf4MUyS#Ax)?g@8#MBszm!F@6M1U60Ge47G@Vj2-K+;c74e@HgK zRraFGKj8+G|f+- zSRzkwkWPb6|i)FggH$roGZWj!##kmuSZQ(dV1MtdOcFI z<>gLPB3riP>{#T_yUd?@h2gv9Iy99-oxT5R7`YJWtG*IYgbXco9uyEfT1J3&bL1>a zHE|xQfS4M@naz6?iFCf~Y!bSmxppdv3g&F9JgzrYi(~P|M5r!5_ zBFTt|HBU%0p}EmObu_Fe2wpb*c*+eCgVx!*;j1_IiSC5k#3=`1tqmLrz+;Gn1uXa5Q~)GSr;MZ0KS;)x=0P4@BVK*8$Va zR@M;D<5TI}o#y6fr}os-&=H~-c`wj*hiWaw%uBdn8?KFgpan9XInFZq#5)I_gdAgA zWxj}j&IE4?45Oe7BF67aY*tf`!GzJ0r;Oi!Vm15}256 zLRj|g&y6hWq)^xQ1N$F!ozJveK?6^p@W_k4oFld3{qBEe)IV#Cl_C14VS#MYJf(M{ zuAc7i^*XNkOQsiC=2FE~SDeuryF<^e_?4HlD{H}b@(#)49i0|kWA zL`k436~KBqhrmb{S2i{tJ+5Mh%!Rkn+)PB~pE!(dZgd%bn1{bPgmY0c3X=HJ_}ZmJ zfWB2&G!pqF&G)r*0j|d~kDd`A6|TKgMxKgiV|{ZFzq0AOep(HyJc9oixR<@KbR%7! z|C5xOmOyRk)UZHA*uPLyqvs%T#9Pf(w+E@plX4rQ?1nJ&2f?E}Tf!K673_Rc5tV8M zRv*(Z*;{+%6aEjA8-*-#liWVBjT+}uKNrx#J5q2vw2y<=p1|Wu2CV#MSBFrSvQsb7 zm-g;RtC#7qnQE~C9on;qJ@ySt^wFC3(RCKcxg2crd1W-nSn(#(=_ZM|iLwW4@2P}# zF01<(UY2S~J~r+t&NEhcRJrV#gbH9YRd;`~EicxbCX|$onIkvPd8(h{S~F1NuMlTa zaDZ7}n370n70T53X+*X#o?NWwnrTwWYj!8%#=*`giPKEegzNNZt# zKsP@50r9$>E-SKSAP_b1b7{cu071*mgs>Kf(JJf}T3cn5^dd+~(p66lm+j3H(;;lj zqM^Yvd?tmhdtN^o+TXLVl%dM+1$I6KP2>!IoLVs?wV(yaND|6|ND@nZpb|uw(PwHZ zPc&xa18rCa_SX;*1C?N9Ymfsdlk-tgSwwvpBZhNvI0mo3*W7gI_7;MHoe$;Tc0O-w z|Noub|8Z*k-}F8Y9C=W9!$=}%p@pS!7WE-X$TTdOe{H~4&PRhwqR3nJ!Fwu%i5)Wx zm}<;0M^B)iCG+>gpMk&wHVE+}sXT)R)6zT2BoQHzrBs%A>mJkHPA2PKJzsC=-#J$f z$=lZF*U1dP%84%@HKvz^^*>;yC;30X%leYmJ?K^Zwb9f%RwLf$F@ZIWfo3r|^Ue0w@6P zAd$NIafd3K-C&}=0*IJ@S?{QY1}quGWTuWzzmiWWg6!H6!of-ah8ZfXCLA@mpW$ZD zz`OPY9L!vD6UoUOgj{fnqkE+8>|u}-NrIdlT}9aQ3hmK3lCL9NyA|+6>U@@VTYLWMwyo|l4TDzfug^e0*c<#bpD1| z=%(NZV-9bg=d8NtN5-4z?aNK(rili#M2=z{6+M@%P8}Kyj}}Ri3ZSPdoM9((PvsK} zIN=hE7Hzd(c|(-Y{|r2APT^3%fv3O)IPh$aU8w*E9v80159qq<#l*ln*)AJ{h-LWe zO|y3|q{nGpXkm8A0yZ5eyikiZl3=dlgs^RdCXuj=UODr1s11qkb|rjS;c}ESmKC@~ z55=6r#m^9Ewo;fOpZcnOSu!!eHjfRJysBre0;&su72p#=qFwnaM=^}x$XZl;&bN?5z7dA4ob+81Q9e*7{ z`F{u>=yh=P9)Tg#)?!*z8i~>9{EyYKslYAGl&pIF9qa*wkC;C)VXH%)=j^@mxfF`C z>xZTgBBT%hBKy^5w`;6+?IR`{uBEBPye$BEjU&U*9a0-%qU z5@+G_Z7vo@7j3RN=TdC1Pd-2Dr1d`AsU5d6EU?hic_MA!WQdOG)$_yjU5hh*(%hB% zo=)0mpGPPXC^fcG20#RCBzT(w3q3wDu+UfH3^ny3NSIJ?86F#ZHmLX0vS6}JCOxPz z(UPCRj`n5}4n$&psHJU`wa8yx$7(gg;5DVAiwkivVB(JLi=z6>6LH$h;3MH{%ASCx zYCi@2jMjma9*JbVUNT{V39 z=GN#_^tic(;GvkpoxXj29d3~Oacj^G6y|4ePz{V``GR&a>e=8CX{69fc^*ht?t2mz znj+8GA#|u7EhWbS4G>bAzDobN%@!UNch1Na&UiF&SNg~m6N*=_2B#bbmtyLMV*dD4 z{_MuOdc%v}j|~9UK~AsUkuqH-O~0y4gC^tTCC307HL5s)s3ql?Mm_9;?#ghPgHftX zeV5*87XY@B(&l`;142|07@km}O?hmzMZ17K(jCnl;hnQ@v!LYxL z4od!m+S`UD#v7|YMn}_!{YmFPMhEPh?nOeB@c-yu)Curg_a1M$xB0F6d%+vh(dWQZ zcssj|$?k0-E&lEi^t*H21#UlDtW6d_9Y0D}v|6(`h%2Dc;VJdo=n$;7p|+>HAB%bj z;^NCyuI_LuI4Cz}%)cQ{?6WeW0KtV0p+R+lcw!gbhtH|1cDS6H7?`{2hek=LX}A}9 zx=IB!y;MB7b3Gu9=HNEixU5Q&mUSSCt5faGarY)ehK z^xzJa@u#bQ-J-CqVhIIwhK%fHC*NGn}4cQTR{*3)IG=F>i+H8$p2RE z|Ec?bocQ@S;V&v;15Hjt2^xr=Dmw_W)^1tbukV}pe7*bGKlQ7Y%t0aGeN&(U}Z$E6_z&uV2){xMOVYRbk=V=f6Y=ei49KQ)&+p0!_}= zm!&u-sk%b3n@`TREJU{3%M5j1Os;_TXN6DcW66X|A9$Hv;}_!`VE3KGAJAN|dci{Q zL9_I=2t0jB7@Yd-XT82IWrDz>_#$UyxinTc_}?42RmUqDS`w3 z>UvAnLwx6`K@g3mhN>!@?jK%M_S_v+JifkD1%uWHk z+b}O*sm(5PQNJ@3CkYHS>!x$8=g6q+EcHSct0nh-@E9I6w~s{aZ>i#CL4D!paRZ4N zqh0j;(vO#r<~?VU5-3m$cBNz-k12lP1{l#cn6hGg{E`-z@pbVdiE|ie3aOIgEXxtE zpX0q7!JEmsm1p%$=ZvJM0Z}TZC|+i1VAL)XtPSFJOoHUwQ+itw4JwcBXlri(|Jghu zUq&O7<23|(_}L7#`!n}xS{GY{U3$k@2TU6@ceA8Fu;z#TAUBD`)#KaYtUzsud^%S5 zkjBkWD4Mr*`+-%mQ~BeDSiSqV_N78-(C^>fseQl17dP5PM>ENus+_M>qlm8w=plB$ zj1Fw-I9uDcykaeyS_nSBgaOkMiC%odDWgVOB%EdpM!|y<&pCr&6(M3JKrCrBYRfWL z>2nS$oI&O>>Wjt+_%OusYhER4gQ^c~4Eas~=yLu(qvLEVaTfy=Klk5?|G#lL|0(`| zyT|nZ`U2S70>1$3U}EU)p>#_`h7O2TaTK*Mi63>8hs=Z6f2SN(*WfSTpFZhCe>@r# z;v-PG&sBCcnU&wRFO~kT%*wpT>+vA%EH}3L`f`u%?TEvmjB~P&t7PAWtjO+GM$RR8 zkx`$GKi~NzQf|NEXw|j3j29fRyaTsi=bi>^{MFv8zcv0x`}6@di;W|XOK|TyOBn%4 z5G8K>*dBiC>kKTj#Fy_JLfaS~;`avT^H8+ucte}8L@@?|4rdpI&;?Ae{#NU@`U)sO zolPtX>#!!Icw14wvZo?#1o&*U8EL?nEhi+b8DNQ_f_K7U;n9z7_KdS@&&~qa_-m28 zHU6o|(S5~t2EQABSqm4t(h6YXe}jX8Zg)bdbvee1yE^x7BZax0G6U&+e&Clm`uYx; z^}V%q8z}G_kZVgGbUzC-v)+fdL+l*c$zdE5v`HtltLWG#%02H?Bb zv|w(Zj7U2Lk6pWg4Zv+((iZYwsqNZP-6-@n?yIlj&nX|q<1ds7#U;_YqRrb~ZPz54}a|yqF17?rXXW+hV z!zoex*qc=jUUvn9gq13yMh(eTY#3McC`#{yQjJmXT}UbuchrTMfhS(| zDMKN%Q7UYFP#UZx2~W0ch_$- zH%(P5k}{W%{pBfVmUF{?m7_|6X#ycnA0Ok3)M_S!iZc#fomH3Pvooc{vU+l}@qFsS zJSi2*D|$8=S2#-8*j}-yqUhz%Crzz;P~G&k;^0GMc3B1oUz?S+#Z?Js$R-vtvkxth zN>?056I7^kgnl$ny{STc-A_Kot7=D*4|PhHh(A3flXgHIO%KX<7|O30Y1Y#1QT)P1 zMB+nuz+O>^w#zBrcsxv!afE0Yw&g`aj7R~jgusavOWHz`j4Ro zcK=RKr*!oc-eL~Pzx@Ebor?UgtN*_o8v7Ud_oyDKVymFM!1+r{7zUe7OfE=L$N5jf zNz^Cn)Pqs5Syd8HnQt<1w#N=grzU;cd|q+Ag>`@bx(C0|1CQUHTfSwV!K_4A>hD`Z zT9R6Aa$4Qy!JEMUqVtH`F7njPpl2sXyALi5KSe9-ho*jKK>VT>Jr-ilanq&ER!tx=(~X`03XVaTEfPcYW@{)`Pge08K-S;a4<@kog2IqU zeP+4@e5NA)n6yl1b0tf=IqS1XOp}$%qE1mPDo)n-8J!}6UWA)jWV?@ts#g>uLp-%_ImEo}tJkNXx-8^`3q6B*pPgTfNrtsm0keGP%){ zy}m}^^bo#_Wd}nJk)^zMj3s`J>>oD=-s{=@%%dT)lrQM#_sO&XRsEJ+=;b?EZ|_al zFlIBwa1ApH`2}`B8>4f|p$;1-A~1?IH_vUz`el3`S4#&-Pjjdos5lZ94B4RJA};7^ z$YU7o8y~QJsFWR&5}LMIXwI9OkXMN`;80)CV|Z$qpTHVPU9PblbbzrSY)Z>2SxEP9 z9av}_=*uNeHj~9nH?4zdBo@yOteTYS^HHTsnIUxUyuesM@-gpWmUe74*iYBjJgAYG ztXvC4cwj`x_q)ywgqeMFuqzN1T({XB?$}LV4mvs zHJQIrI^SVAL2kjCjT5`8|JSID2xAE1gpXnDq221bvRYnX6>IBkwfP~Z)O}+6kljL& z8vahUF3zW0r?>#CiQ8&lO{G(%RwNEVLIl4HMm9o9nvJ_HX(uCzd-_-e80GuH5D z@_#*yw~|~AP7Y_psV&8E=ItxH*syh+oGx0@zq9Z{jzc#*MtLq~tK;b^E;8DWJK#=8 zE7dO`;c6e3b{sCj=vi}33Nyfi&dNr^44<_X?6A6*mdIsJI#Cwj)7rCUQV7w5`~{$q z(bm0bIJLHA?soK`!yTVL)~r36{Vn1I_4D`-UhFMbfD(6n4Bj_BDxtm@wFv7Y z)Gn5C(^00MxS-kED-85Sz~^JCs}u%YammDpa-&Yt@)Le*S_m0OKiO_i5J6NgBk z9>fN{^v4H%oXm6Vhei=CQ3tg?P@HF2ay2`y7r|yL)L_;xJ}O!|J!e=KzNuPW#Ri_w zd@E0JUk}b`!!}aE*9)&2pTi3ZA_D8q*t)q-(V%=vi&>!Y4-946N{R!wFVG4X)WI zBb=V1f()l8paYZiQ=BL;%&bAmOeK?S5z^y{EFk!lT$g;QdjWsOe0s05MtFSI4zCAj>$a^? zjKKsf$Y8q}J3HQ_p1SX5W&a^pEI9Pk9U98tTwGnCi|g9@=HhOZd2T^mnzRhM^f|y} zxRC>DXckSOXNkf}*Hl3b>&po&6H+EQZmxF)x#CaG@SKT)#94c7Z3q^C4-KSuRPe!! zT|yEFFK>{Gj-hFDPQ_+*<=QyNbwLQ-dwgQ~&O|a6g&~T!Pj4p%q7j;*QbXHBj7hkIo5Qg@I(_7Z ziR~l;HJVb;#Q~_kw$clQPkD-kDe|%Xp>K9iNCVY>K8Wtl?Je??G&BXYwBV4|d&Tc?c=diQXek>ttthCf~it#~< z>B*xZ*c|L|4duC<)!Ae5^bog45`I7h?jwgeGNKuFxQ;_(E$YP}Zl3%n#=Rn>u94rS zPJ=Q*1PnG#(lfv*oI`mYB7jV8?yUD}&C1N4m2RC|b^M?k^130x549TqNsM^8fe*^JFsXW;wOWM&^dQ1kXKE5!1Z zO#@-7AVeMD?jbHU7eI9@E%tTChQ(qZVwpw)XQRw)lY3GdBlPj$W3w^7(oj@QZvjaK zj9mW6fw9pMxju5_DdKW@oynaYx$|o&jbFY-o7-QXSj}S=8ZL{$z?KA)^PXW&D3F>6 zr!j+J@We=%zWFv1MFoq4<=aq{)pN0);UXPep^Q;fuoz`ZFojv(sN@w4F^WE7c*^4- z{Rwdn@r^eUfPJ0(-}ZI?O^73IW@7q3w}}6xqbpUJ2Ug0qP=wS3wPb@2$L@px7|Q3@C~v#{5`V z)U@lg>M*ALaFgNn`ts2`kOP5&V{4yQDSEv@k-Z6b%&H+eJq9?>mEFg*8uIdIqDgdF zSGi9mm?41N#%66tQid7Id96z}6)sK_b1TC{h=S#<`q;gSWt%|o-~lGjVIn|EWVjgL z{G4jX{aOiEG)I>25Ged$!d(TQo^T}ewtRrI9I=l$S639K1?xp|kDzrWVMW~N^vhd_ zgTHQ$gB1;uq_5{@J!^JyyO^_X=rgg|J9#0=I3~RVxZqGS3Y|S4z#wB7Kq&3K*wCITBm;pnG(X?R9JT z>L^ZeJ)CNwpCdX?O|`aFSPz+<_cZsn}blRhZ$m8 z?7F#>-6|4z*wWEfTqzKE(8xcW8dyoq<`}C1uXd3I>)6j|ZY3&vQO{O%aONj`ae9uP z$BhL}bFfo6vVC#6_6%EuTqQXvPw`=xv=%xf&uq7J$s(j-|KX zK@ZhB!_041AtMA@Ue1lhdwX^aGl5Fzj8!y=d4{6Stlh&EISjvpeaW%n30K}pk$u21@C^>8 zYb|j+r`UMTB0%aDjQ+*=D=gsAZ>`Ma8xO(!mfZI;QZD;iI+2ur z#5TK;Z?R1V)4#+vH<-N|VNV)BKGmGTGMD-1Yhg`nyNg!PZ$351QtfN%j!yXqtCj%< zuQ^S53EE}O7waG4$P_Nk-|63Cn=DgS)%afy7Q*W}fomM0_2nDM__xYmH_2>?az827 zPQ?v={&oj7)f$M6-#qU<^}+sh29Y0V|s-AzL~<2m1q>?Do0b4*t5WJDithX z!K$j3@Z9evB(ZRvkjn?*c<}zOsP?tPQ(GQK1(0Z9+z(IhBPgF=1SfQWd_4|5gZ5Q( z$|HbL3r#i&$fokHEFH~QW%rSG>6*AHuzDSNiM$2_r&kx=mQv+?pZZAwd@))iBHFHB z)J}co9~zlHLedcKqAR4YyW%5ag%p8qUjzs;&dT!^CbvVWZUQZveVufu=caZIuAgZA zuIv?x{L~)Jl8cIo&GS)9Gx$=Y843-WON=hhe%f8Pu?{caQ*hh9I6W8%Egu8S>}OG{ zl<5*4m$zz@r`>)Am%afSo+Utk*hD(bBoPw`Xe_^{{*%?dOjjKT0*>AQ4bTghEg+zQ z&s3cQ%xW#>rm<^|FY^Y?>|sk-V;)0akT=rtlG% zGC7fAfj^PrH}616VJejM@}fI|0a*oi*6!&8a-OXA=z2ikmnn$qV(X9)97C1}eL1tB zmOr=8NBQCdfVCa{Z)-dAe<5;deOoh!|5W+EqZykOU_rrXi{F2K6Z*dsT7~~fXwUR0 z@GgEQv~_MD8lojhxYdgeP8ybXR~!;rpHI3L+ukkp;Q>YN(P9K;eOER<6299+t9GUf zbZO_x?o)J_7vjaDVefN&7?)HLhSu{K;5?oisE_ijFX`%p#J{n0GMuwt0V(vdHwt~_ z5;o(b2HPETwnYOjqY}Dx3iRqm`dd2ts*t50OXyhwbZ67I)n7mX;#@)#7{H274Xo&y z9TiEV(|j>zls=dB2!Q|+A>+g<+`3H`XE&>|b!fmuSMSE8J)@koap1+C(7*<%J0}2A zIyywv&`h7TPLL|~it=k}z^YO`&2xHqS?T+UYwS-Maz1yKxzusL6Pny48$L>1Z7UL6 z=Ae68z=dsH;C%lPDMNS?M^^m^!ga=HWj5Di<=H$ShK@Bf6gqjmQpj=KZ)EmPFwM2w zBO}xck9okeLf3g9ib_b@>^FuEq%u@+0n?E8<3G)tP|7Ucs0{lwrd#**n{N);YIR|F z=rE^aZ1Sv}aBvfCSq+<-o^m$Ss;-~PYWUmbLxUiODy~D8E0f=s4|{@eZW*BhF?1Lp zm7#E*`J2kXDq>baR_~R>ky7Vf8B)pxQW-6VKq>%5Z8R>*Sh($~*Nkyi8mMP=|7-77X|;h_xBvKEH^47SI?p35rxhtlggS<r9k1;nu4!xIS_vy;@Yx37_9#NVn6EA~~V}F+yNUlU*d9BZy>w&HF}WV0j8lm!_{# zzEK&|5_yQmY9b*;Z(3hB=^?y9e4FP{*;VC2fm$c{Tdi~bH(LMqCwTv@kstcEMqc$P zC~a-;{kL(@_ffjuk)>~)Jk4AIKml3qHa@Zcy3S#lrHc`FSE$z370ESO zgv&9EqU>cnBjTovc9xyZpba{q>9<%W7W;J@>31yS=-3m{u190u^isw27R`17W0^n7 zUq#uHOC!vS#Dv=X&1E!pMS9BdeQj#=&2n;}_?K8F<*!)g@OLb;{?^Jn^9*6{X#+?2 zeib+X#sLDN8D_0cwVNvUS{$!9L4>cavyulAy(ljyC#ApTMJA{{GhdSW^GONzPu)i;mMv!pO$1Z)-%U0RRi+G6qJ{b(y%k z-nb0?H!h<@xp+oDYDqPwQCG8|w=&qu{GVI~H}RB2*c+G8;&p?O7Xi#>&HMS{a6!2V zQp7xKF|HVy-$wWcfDEsJR86o)mB8SbYnl+1 zS+B^AX#jA92MRwzJL@-unLZ^xen;!^Ho~{YyZKSKt#2Z`GdXzd^g>!^tXv65>Q*`32NS`;q=_4MJk}H1bM1sXQ?<+iYUn>Q{pCaZ^~CxGHPC{M1Pbe07$?+F6rbE8 zofCUtwXZvUdUzabd-u)T1K`^ST5Tw04KA4MGzKp$CjJ6@J4_6G!7*tB@7RBF2QSz; zuK%53efBdB@U{dO+_0Kpqt(>5$BC$Cl-YOvlT!rewx17ZU0n(Uo_gRs{tMgmrLDxS z_LY<(2}AActv-;z;`E-8VIY!6$RM%)^qcG%xDZVWw_f5w4U}fCfoExt{J;*@8;%hG zZ_5Y?3XEbYDm*4G7wA7|TdxTL1~z{^^coj_l8zU<;Bd?hO0YA6VooFtlC>~A*6|D_ zXg3lA*=0YNn;2s;x{TIU8t}y#*N&G3rhWpSSAKG8{Wv4Pc}DyoW^)2A z%fQf-9ETZAjSmMoO-M9Zsa3smlj_t@?VQ-Domdq63!@B{Q2)n|N7+_+n)nOa<=_L# z*ot&vL~N5rLF#}~dDl~E4H7fX*f;*lt<)*E!X-s=hCM@KR99(&d#T#xQm)~>x!(t` zk>hl#q}?uSp^W2jD~DC|Dy>r0z_hLO^sB>#URfmgN-1r1T~p^rE%7-qDI#}LQ6qD|lu76A&qQD9WgEsdB?S6z%w!WgTw zb_q1p-3%X6$#HD6YD1&7yp>1dpl))9wQpO!9h?f~I#eMgRWzhGzos}cc7mtr3NFF3 zQ;huX+s?x9HS&^YsGJu`4>(UYqXcuowr=LiYK{uk*G{67PuI(1k-_gW#!EnY=yJU{ z95cpu92OiYmBq@;<3wZ+4RbVq`535o6d6mR;=T8Zkaz%1%H58exxceC@Z6xi!0sJ9 zfMi=8KWo6kYfg%26Egb60qq&(?R_Y&M6KH`BeUTG;V4PuXD&?S$2-juEG;Zpinm^w zmnML#OO&Z5H~yo0vOc6-+&FS<_93UB8~FGiiiiRZ(w}z@rwVrSy#Lo;p6$P=?~1^8 zMZVft8~sN+uWF?R)VSvd5NI4TXf$#A#==Wz1t|G>!XmwvGN3>o8@B&kb+gB%<H z(bm|bW!9X58{UU<^=;%KQUIlz2J|sVJ9$cr`i}7_b(Jn|m{L}c1D+b3q1V(*&ZGqc zQ~GVO{N738E*HT47phx+;>chEfTq6b-WPFguv$VYS-WbD9jp~Y)5U=ZIqC2)q!=IQ z-&_X#_;UE|IiW!81#;IEu@cxi32>Pd_wWV6d8^S)keT_DX)QX(b_^LG^gvI~p{)Zv zz7)IN;KrA-*7M>359^1dX?v6m24Tx=WeP02K>VIS%wGEN9?U-MDk*V9k|?Nb$YZ|%0(%IFMF9`UArUq(|E7SFVY=0}xl#MBXxH~re2vll z5DC8<5{dR$Uyum&8u^}W_2kV)eVV#cCX?UkzQ6j)C+Mh#t3d@lFSR{r;gM5I6l6dK zJVc8r_>wMiZOP(1UnC3jQ_<62Q6%3r0L5A_vj)#$b@#-DHRfq{XBMo~C@E8fFoSNL z3B?pr(qdj;yqOfAYQ#tYv1uw2h}y1yY1nPb8Vq%qVO=b+Pgu`5gjJTU4HLT3usFGk z*PR&(iPIrYn73Xl5Ej+~&MG2J2B>~mHMkwfCH=x0MsLeyfbwZ=Hl}3Rh_J1hV^MHR z&=mcW&BKQ!3erb**8Mt1v*esb*8N+UBz6Ye67epi+X4=^6+*5oZ9 z<^?d%Hf?UozanTBb(offB!M`o44?CsHRE2w(r1G;``7UbNPr?Q3w=n9Z#d5T5@kv7 z6KgE+6q3qR23WTt0ynIWo&8mtw$3YTJaVnEonIrG$aHJAw7$whWWWU|l+8H6dwlf^ zAn+n=jLQC&pb;oaZ4PsF)Anf=zux0}Q{{^KD&t98H;V1|z`k!+I1X(wvdCaRFX+Iy z?9jC-l;{z+Z-K#%D6sXf@lxIMX9ZB!1H2W#5ca1#et3~37QjcGQaw+oW= z?5CMrK7g$0PKbIDOz<;sOyeGy?^}C>|Ae%%-NVovE4Y_s9lS|{|=y{09ZX$H%(m+X)Y*kzOEKIn7bqpW?$17Cjomi7`b z@3Vm`W~~3VV)mcgw*L)=qGYOX|K+bWTZ6YH`~UbJs%Sd=W77;nT4*W~gfc;1H~Pn2 zbSPsanH@|XUA;tdVDmQ=v*m&~(lJT4JM=T=hhO=vv4QPpddNY% z)lFPYyWFb{NAq5z&iOk# zKYVlEsr`_7fGwBSH!^3`?+hsXAB8(8gr30OY!0&&AcO|AITWxg*e`zv7XxoLM_VKi zM18Y4e1SFx#$5Q+&#-0BK?d8|M(n7P|m#TR}GaDHtHG~(16!bHhD)c9Gon8bB9Idmez%+l4)-(7ccKjHblfc z<3g2U3#`9yni%M5p1$U_ILy6yntLLNS^4^b zs(+G;y6v~*B7y~&TmXFz+~SD-O(n&DCKvW^$wd@^NWPL{KoOW+{Ew;mXWw4X?sL-H zzCAk2(rqBVjITW4`mS-|9C1h{W+AJhW=Htry$4s^!>8zJF;8+ZQm?IXg! zJ>y|$V{L3^^8fFS$KTtffBiD>kO%M&#EmR%jqLv%@90srutWi3ZPvO?+IjGK@K7iS z6oT`U+hGf6jaTpEa>1P_eJP~trjBFhlZ>2dFOYiJeW6+fgmW>%kdPoKA<4jAF}mbl zv5>vibiE3^z6(L5AuN+E7YeR%SEDn7T(te(kOEi!L!5URM&&29F>kD&y!}RrsikVC z1q>w(`R8HA<#P!oX5^)@xuV1B(rN+Yejp!S!M=Z6GorxmL+XOE7G<6;$i15P$U{{! z^Ww3_@^ShI(PAqY_A6-CT12i8PuifM<+KzJg;9ENVQicM5soOYFwm+;b|ttiHnW>F zRi2{MxJXQGDl<09<}(PuS9E0jXa=SM+PsNW*&qborNE%S`tc`;5CKc(f$5Kh@o2M~ zMVJ7%1ET_Ugh3SPxmp(DU-C_c%9xOaADJdX7{YlyH&oIxX>y_2E?1t8^<} zHCY2djvd7%Tor@_3fz=J(!b)8P{qJSpD_ThJfb1Q&7(Ea%!CGPeH1}bfn8LzoI#A9 z;rft)CMS;qGK;)pP06+TGcmLOv$n}WOHqf2)Bt~noTk=KV5DuqMt!z8xpdK^NTv_ zgKnw7FEv9MLLSpRtsdo+Om~6fITUgAP&9m!8YGdVnV(wTP{3$GwJ_nJsm= zkkaj}Lj{fu6O*l2ITkkF>z@+{Io7Hs1}2x@mB{l*o6MmIeDU&CFUJbhGY@ZCaa3MY z+4N6bVTw8#YHSYfKtGS(TpHqwA`ci{bQ$3X?Y{XYlHVPNk;Y|_y5?6~Dtrq83wa8i%&(Vta$#Dt zLYe8DtiPk)Ct942ScE@SC+#jHDJX1bLbZ~uftWv*dcv3;GTQXrRzn@dsl-wl$&AJk z17QAhPm-xn5&WUkcrc{sIJwM#&3?~fpXa{&od?hUEwbSIUQ26H;(|xvLfJJ;d7_%^iAkR!VpU)a=e9VON`=+}p$);b7;K-H9gUmCuieKOmPY7CeBCjcg-%r-!Ph<6 za~)U!pXxl*_n|L4<)w%)ImL_XW>z%Wq8$!xs(G5;BK3J*wzc^A0xx_p)gAqDn?vmW zo`~_vf3jg<{rtTn3l_cMDe7FRUx)rtTl+a7x+k3<`Q{^xRPNb|Xqw)Dnnz%gUGr?q^)hQSlUW5-in7zg9wqG%9w6^a2q1$3QE}GC! zL%m&z^ccY#VsSWbmuUBKHI(vbSe>!JZNVTAN zAsEoC+Tc$J=l>|H?6B8*jeyRFg%qLyvKvnCFP)ug3qG>j;Ple=Rt8CyRIH>wynD9= z_jmjr@89|Xe-$g>Q+>>ey^SsKIQCod`s?PDnu{&65y~sCq{ISUtSALLjr@;~ zNGHYHG-^5EIqC=zjWV_Sf>qe;*c22LA?SF(CHj>OkH?RWy>_YR{C#$!A5RUN%g>#f zaYa@WmU9N!7-aeeq}fhyJx*_*TW?odPlu%XGCc6wL3l(Gvy0>Tu~<}kn54ZJ5bM4d z=ojg$+PVS7=!|KpI6(5&4MuyHFME<3cJj~YNS{vVPlF2c@-AL* zDsBe+R2lL29V{}2WaapY;lUUnkAXC-BTaf0M!IqA9~XytZ(SuV z13#;JZNLgS#h8sDk|;qTg=Q?(FKY*FGZH%Q-+=RhHaTc;V7;EErh7VasZq!pDd=e0 ze>f_NTF5*lI!OI;+e}4gczcut%yx%#xDI_I`ARgc-L=wtJVRUE;gjx|+q$GinxTcy zCxVRSTvtpR8$`5Fl>~7N-%OD`Ki5j)+-!92upHXvzNP2Xjz%*K#(RVld}UgY z5{z0vgUq%PGz*WFs&~^>9a_(YcEZA?U=+U$g{|oFF%?%5dF9)?P9YC!y;@lq6kpG#TO<;)y?GRXIr%RG85tk%V{i zh~+a7RX3cfBX^#pC!HF4I6q%8Q4z!t*$ehaapuHnqflc z*j(U5d^AN1qK!=?{lxx}RJv-Q{IrZGso`Xc$b>U?wSTKKTk2i_GLG$jWI66ORg0pH zRU}>2GsT}OFNC%D69&xqDgY)pm?FJs?4BI6lUreb} z*x0iRY|GQfPO+?fR!5(ViO^9g3iHX%MgzOA>as0}8)9al4kZ%8nko){dq(b>W(>ZP zIiDF>^|^nbj62ShL{Oa952jF9Ga(tvYi9;Co?@|Dmojaju?O(EqrM-!>-tCu0bf1y zv1<jo@=cfv@{em;(_Y0yZ`WWGBC zOM2&241)vU`P~;zg&))_%tnLU*sA1w1To?OYqeQ+`X23u7Nfo%St`N+Q-~U@ricMN ztykX9``6WR_e1ua{8X^aaK*en2Y1T47GQM9*wlz3wqtyUp@thqGa6=p9}#dx;zthN zg9ATxUQxwc%Qzi%Tsd`KKYl)!R(fFopc_zam_4swIKbB9TALv|(a;lHIB1X*D{=q#+<_-diPZT3VkD4zaV5|Z;!;rnT zUB^Ax;|}WaoE2^z8>hF9!}qk_ptW!F?tR)F;@CQQvvpAU6D==pJh0MJd61qsZ}UjfUGq;bz)$w)~Qe;9yfsSB3OqLI44XABGP z9_Jc7K?a_BpI2c(`YH|VQjOq3=Sy6oQW=yQJYd+r!XP8rq=xoabFqOZkCXREy^L)z zERjc8W{^o@qzN?bjJoOohfPBPS`)OSK(dfZ4_ID<;_qarwVBp=6P~5|h>>M9bY*)4 zf~EpEh2DMB8fsecHuOUsSWBUZLy?|Rjm`YS7FHxBhLM5GU$>m4;^I-SFg6YlZd5}* zmwzGejY)xPETQ9`fJ(pq=25ms>9B4FiUp+=Gv0=od$C?AcoZAuAo$1%bcOqr-K5qa zmd|4()Azo@lcJ>SiPYXIN`Qk>K@_4AwBbvRC;~)WbcSTjeI{5H-17D12Xd9gkuHK@ zv|D=edu%4%t*I~-8A&=^pdJP3yP8=wHYV`+6&NZE)wwPf&Us56Xs!GhuJG#ACCx34 zaCX?j-hTFkh9gnlXI{qCDgH5{D|9N=R~{%;<{~-+N*aWKbGzd_EVnuFVYurKqE}cd zk6Q|&=-QNrJsiOdDo0A3(>Hff$p%-?9WSgNP`5usT>ZKbt~Pe)t1kLHa*e%g8@_Iv z8XiXrAgVVR&&PvuRHr1LikW2jb+$A*)XRIPBylXu&H44%r#hT2y;xl*qZ}($eUGT* z-J4&}TxNP_G|^M;z$^K?gKk!p)b(oJyz__;1z!B?*yzG`+aChoYC8`C-)1`w0^fSO zmRb4@CuHzb#P5M)^cT;~+I~(m%4Mf#`0|W#JGW1GnN7z%DzmSCvis%{_(;UK6d%2m zu8HogyUq>7ZSvGwylYy{OJ;KW)Z6%x9I08V-cx4M8`iB~`A4?-{f^`|Q? zA4RxocwXS{aUqz;2_Mh`X0LFMj`wF~ao(KJ_$(m)4(c~cgiLy$Qu^0UdK;W~kXp0< zm!#k{^5!%XuBJeg>NPEI&tpB1z#NZX5r%&T!lzi~O>pfg$wl7*;LT*gAqo$*d4rfa zi=N4_aah=x2TJwn+dn1y6oo2)!QYnV`SeV-JOx=3V7C8Hx6RXwTbuOP+M4{UEb#yA zw)yuFvHugT%l)%y`#;}XS!xn?UwKL1QBkC8Lhbt9sn*|wtN>6}R*@KAzpz2ph)}(U zkwvvEqUlHlNZiK$V1Giaj0s_5m8(VwWzj;E=~_ra)|EI9;hD-<|5s% zbo}B{k^i?jUP4{xCfSsJ^_c8dNPd;19@YpCa4=%k*>P;F z{*%k;%FibiH$Q-rA<)5O{?tid*=jBtyzdY=dUGJk^#Sn#Hqm#MhBNY&j|BuaxKy(MaVCofiYSK^_7f zIR?aC@}FXv1*asfKb!@k9ck%-Bs6H!#LCu`#3ETW7B(i1n1uMV#8pxn>b%Nx-YxP^ zw+|CUL_?%3p+Y(O=3}j&V1IfkGUIEcci#Y9IVp%AoIYOYL3 z8!`@gTqNh%k~CFBR)uC}DWVpsJ6N}%uLwwmI3rDSJt8unQlg(V|J8hjubub<_E(A- z(NP>_z#CQE?S9*EwUj#Ta85}RxXSqVp%e^@)T41YML}aTc~pf?_7QvnB05icDRttr z4Z33t0X|JrflsOl3QydYC%u#!)vGRvvasd4QTwCwfa8^mPz_b#yUn<13iB;$sBjLK z85RO@b#imQ!Z_1`1{R&{ZS5_W6TBhjWN!_t3?c3URs31QRzn568TU8QM0^#2T||6* zg+b&uS~7FtL}7JCR=R&6>=W!46iKeicnmZ`Vk6OcpQvj0kokI6^FrG4N_Unyf6MtR zEHL1dczVbH3BCQuJ)L`*l#SiUnD&iBN_#J9wbRIN?LTMnYHjHclg_Fvg-e z_ipK({N&s0iAXRH`hAbf(~52O$Xd}2^Nlx^RNV^;VMM(~aU^L2Zc%?8$Ds4ep2s!B$1ZxWWLr6!k;&RlI3eS~+L0*_6g zq*E^X8fA5sGC4OzwT`&}J0b5KMk7XBEz0Xm2+~~s)3A)eozS(JnVud84Q!Fh(=k{>I7t|1ZEnszfgkR;2hu(u1$(Qdz**1_WU&K^DkKK0R+O)e8Fl^#D6!J{(Y>+ z|C~$8wzgJEP6kf@Ws_8-s^Pe%jLFL$aZW-^xxEvq1KdtCOan&p9|A)S>^C8bbA41p7Zzqgg*DcRCXs0cn`I^lF_Y6zNTkJ90 zbE-+g_w99#{u|j9OYUQ<~q59QiKgDI=jWVxlbJVZ_(O0_l)1s=%v%RhfKo{nsyu(-rH zJ#EC?@)(N!tfjVs#(5)CX%}5v@$7av|DvJ?`X*p|%9| zAr>(1xG|b%5OHI3^!iv7B95Ap_^wt+xT&pIz@jp<^db^`H>|!6t`LVg_2iu`M;^nBp z3Vyei0bpP;lR{Y!CIsTur^Dkb$i@9|*uRE(A&L`cMPADIW`Wxi<@K5YcGi0VG4FR{ zV+Ry0D)xdvI9D}}y0gXCpLmyF84}Dc`>1E-kU;c%%D{*LdfNDX12!E6px#{5YePCw=n{!gY=^c*5J1 zX54l*rmW;@heKM~A6)n?M@EX3yQbxeX;(n%m8pX+GKy?paFy|-u}-R+Zw*1Ce1`fd z?`^qX=2AUIVR2A9H+;jEz%z+UQI+_E@bh7H%p!B=HehN z9Fqy!BGQ6WCq9PaE$x>o+qhA>fugu&sbe4u`>l--?Y8|N%bF0Ya`jf*!v&R~rj%v8 zXZI}9=IZ{0$Ke|>v0lZ@#H(dX*4gT$yT=E(q4thW~B0+0lb|)*q1DJ8` zspB~2_zSZm$X*b^-f1?1lD@d3*#s_5ibM7ZFeEp>(Au#$zXla;)Yl&+NZ$HjsGI=w2&AKknihaLOJE%Ui z9+oK0MHy+|POBMrxq>}!n=yBLH|;`ArBPk3&9WG@@4loy0I%f5RfqPks=x$(wnJaS z^f+RNE-M{6Lj@Sah1^_uc;Br{p8Wp31au{USwK2ITE~Tcz#0H6(C@xRcgVBR#uSTX z8i;9(m%X!Cq-l_PwNN|&C&vE}ZC%nWp-Q!qoQ_`D$)a{B`l&fUgKsa^3kuBh93ydJ z5XaDjI4}iwB5L9?gxZ1%%{z@A58jw;O_sK1mbUai)zdd0u`WV(`h7u97MHjoi)XBu z0l3vHh)amdoHA_))b?S`F;a)wccP|df+cOL)7odo7(Np1-JeO8tvqyXR5Gr^9zKjN zAZ%L{nPciO0Ukb0R|T*ir_2O=huPp})B)E1@C>~{kIKKKAP)Zy9&=rYCxdBlEcLXC z3648uNZ>`@YtfrM(FuO!DYv6>`b_vXZPu{-?TYaN4Y z>K)$zmyedAXDFOQ%4p22L8r!z;m_Esr^b2VMc9R08dbZ*aFem?w>wH`IU>B{)n>7> zy2@YdLa&fzDT)zGx)?jtaSvH=jTj@#9291;WkG#;f-=(I(g+6WWf_X-10-J3Ui{vQ zEk`J=pk2qrw}!aSe;lrHTHo~#kZ<3NApbKs`R_^(f`6;@u&}Xk`oGh8{P&phe{Yrf z=XZsizl5~b|M3d{BGLZolyUsm=}mFfM_Ixf>Ou%~=9^rG62ycCW6%d}v|?k8#g@=V zTX7%(b)K8&m703kxy|y3&$C%AZj*V`J&|^uL&~KsGoR~-ce*V0{Awq%US;VjA(x$f zjy$-6^x1mk+uG`Q_h~)#@6GxK|Hl-lgFY2PHV40S+lV45cX0Dicz(rb6ATy|4(T08 z59*6?_&qg=%XWSzO!sYY+DnqZGDLa<8LgYDNVPwx&vip7g91xFTw$+b7|9SdEK`^DU6-eu4& zbkJ!3Cc4Kl4~pO*x{rCp5Y4p}3wUV3DL)Z1xg4Dao%Y7UE<|kDoVT0XhM;hEP_~(E zOoDuRB6TMQKZLSl6lR>5XA~_rD#tnJU`RPR;*NDV*Ei_D$Ko00MzX4Rwi+(Z!WA3- z2oU9k8|w}Gu&eiFkdTS9%O}^Z&^g&nB2J2H|$j$h%Q+MKx*@ld~%7)58 zG^1tSS2I$~9i9y4dmeV&wfy9KMn6?F>-^WvsY}CUKDA+WmBMqX)pw%v_A_fD;(>GK z^__(EnF(o5!;)~iu261Fmr1nRB}|+gB)gRG4WI9AmQa|Dbs86``2`1lugYhSu*)Mg z1&w}t^HUD(pj7bTZZZqk56oxP?%pSo`Jxdi1$^2fF>>?XPPCI~tenK^!XoqJ%et#C ztgbWjb)r?cf7C?A$@lSr51j0>&V|k4d^zGy$*o7a@YEBP?Lr%4#sKfxMk=;RzwlG9 z-C06T_1j#>y;f%Co80g{zPOX=vkbYIxkj7hKt9ERSh;CDR_VaCjWbl0HB+D(?zPzO z<{okzHMlnKZt`^_m1Djgu3yXNW#J<W`JKyeBiV7r`r?`^?DYM5SOV4cgz=~4D zk9Bc_ZHq@dFfcQGh_L!ANeP0c+rq=!k?*#8`+8o`Hklpt%w`aUrLb0n^bsZF?{%T6 zmBBItaY_Wn<98FMm(uLwq#XEd%DXGMWNOR{i>ReUx)*>C+upWQGJn13^T?RznrS1@ zc}^P3UAFF(g-2&V=^BupWTvRdICu*QwIxg{(F}5R}u=2--LuwMHT?NmZaS2%FoMLT>_Ye9VK2Z@mG2EMKoHP?&(;jK^k5;&s2xcnyj7O5-_}?kFpV@3&3Au zvIVd`7fp7#<7h&sGQ|iDbl2YE>@oY7f!yLVO7e*q%>2sd8tbEz@e>XA!2OzRkLK9P z7e!6nR=*Q+7tk_rmPM6a)YjItJH;4yk2|Iq-HRDDw>y}a&e;Mrk2|Uu-Se4WJTFu+ zovQ^)9(S!&v{mRY?;@;J3qj(HFKyfWq)%2=W1q(r`Jl}J{GyF_dDr`r* z;J{Ho6C=!VTKy`Ul+sk5xWhIN#hOqyc8Y|AL*9<*@?G6d;PYKyX4=9w_lnlSHc!Pa z$zKd~J-BB!eC`DD5!_F#h4oIw9ud8lrEE#L&cwvR_;!odLizrR4TbsyrPz?Zq!Mh1 zId!FM3Oe=1bVeT+rff<(jmGfF-a*rMgdHdN+#$}y+|1Gn>s^X%{k$`3zZ3nES(s-X zBhh#GAJ-F1gyG-Mo}S=gwmETNmY6Agi#lS!s=w@>chBSuVeUBr$%gfUqUVXhfPJ3@ z(bbr(Mt^AlZ_g{-BDt#sZ|^AFqP%N^b<>mBqPuGWfiAm5Y?bfMB7L{dO}cXp`q2H(Pjf;5`#uNaqcPis{?Y{gmRI;ma;FFLBqs4Gb^M8X z!!?Ed6 zT^H>au^QSiAL=;n_I6so6eItuPCTGs@g3wYyIg%B8TGPUq$2ENQ_^*@&YaMuKfzw9 z><*^s&ZFs$t?5p;=}w^OPNC@ztLaXp=}xBU4z%eGw&~8Z>CUz3u1kuv5sIA`>K`~} z{*?U*3hHagg8rXz457wh4EZMYU z)T}1=uG4nuBX6$vNlro;IU%V-;whn>HfqxPdrz89+p!fz>cqQK&yI0rZ} z8sbbQS~Zfdj>W!W696`}8V!mQk6;K)B-S=cw~?{jP#qBoy6b`FX=QQlI1iU{r5Xo|$qDf;*56 zy|>1rB3peo)_vN}8K;bpc@<4ocu(}tqFFlR95LJY7k$RL09*ka#82rXxN&v#$m{d> zL2NarLrDLcwo|A!97z;mZC;J~-uEZc{AV-Z7i3>HvXG`%!p9jNH)YA@h4uNvV?AV> zCg?dJN(n%yq*ZW3tI*z6=qFWHs+bs0{d?lb_3{Cd2TO>scxw-- zlxYg{DEsR_A3Q*GHYe%)kHpVzFK@vL1Nm>9JV7e?IR9#2S4=Z^)$Hq5d%B*g>^q}+ z1nPWr;1hsjaDh)8!abQ7QQe?Lw;b11Pn=#p+&Q~>uJV2-wN4pYI)_$>fXTX`lVg}4 zyQQEXJ32YLdvJm%)7jh1+agf(?oh@_(%S5GHXs*DtFx(w$6zy0jgA7$DG4!ZhG=VVP4E4w4u%6YVWaP0J=e3BF&bm zud~L=3O@lHz~_jGuQAV4xgHF20^!NkW(HMP7cKf03O`lh8Sgmh7w01)b@Jnn-3WCH zcfgy023wyJisqX-PBt*nJg~v;Yg|vQQPTp)@$qZ=<~8;k@SOCunIkC@JzF{6 zJ7TuR;snb02ytuXzC(#dsBC%;)W-Z7b+=_{VX@vNEc<8XJ#3)+fMoA^5$PHGgt8(T z?u?yvT+kY3V^S=G4FG<2fAm1wLL6hHB`L2ZC^L?bI1M{2LltJ1e0Kih-n&(pXASAXOwlzp*1uLfdka7976l5usI=0?0JXr`rMO^~!EcE5V9 z%5@W_XUL$gWYH1tmj6wzs1~J4o@+DO)h@}KT*oUP+`DdXgX=<=eQR_}3TO5eGnunw zQ=4!5TOXwJxELwF<_33*3o2(d3~k|8BdHkL)HRZq@({Y!fwNa;2}$!$K90d1Mm$*3 z_ME;~XJsk3_`U=#bcxghhTlfDK?n{{xzVJ^**jN}(b&)ghgSx8Qlwr%ePT{D30E{B zX3jJzSGXZZP8G3NjPL|=wTivBxYSEA%p_m3XZvUP!obYY ziNr)5Jb1#fd$MnFtVXgmigZC|e6rjrmC2NFK$)8%VTffol~givS@PVfEIN?MlyjiM z?<36jO0>^i9vQK2fHmR{d^C+eB#(eRI8`=WO3Q5Dn&WXk>4@25pbyr~>=4 z5Y*(t|3ZcYFouUfp73VNswuDigUj$uLj>oOl9HN-Xev)4y>#w4Dll1)wF|_*mNlrj zM<8|48edPeS+WNfwOzhv0Y+_iNdWi zAPc5S$*v<{iPEhj00(uQ1AdCo-q`@ueKCGWBy{F6@+D!}DN-plfp09>k@0tdoDTAI z(8OJ(Js~MN!UbvC_S9DcMisw5wQRRi&VbK0*h_SLSH+K|ssQbz!~$gf`#m0dvKSf% zt>8ghzZPWIndM9+XYBV^i_~K*Kqk=oQv#6P?_VG}5xl27Vo!lXTddu9keKsXmovyv zB!1_E_(eB!nK?;1bhQ zD??{o4}0)6t?q>DpC_NHbOMLBJsO|vzOMbJC5<<_kk8m20+H<;rl&fFk6tX_vE4M> zy)E2N^0848Q)Z|svqqYXB*$^|=oSq&{-b7T4s_#{-OK_}j%1US@=T-qTCWrolByp9 zSt41w(!Cl|hATg9O{l|m(MW=HNPIkpJz2xFgMw&f4U@^fx5WvcLP0O+kjOs9{@4&x zK#0A{B=zT%yF7(fj3K8SV_qI~vNB^eH;pnU3|1H0yJilLY7~k3I3|+q4n9WUu)qmHKrBa-auhnDLnNb1$V>47+hkAP;GITq_Vo!R0OX|?p9b67uEgX%3>XW3*PB_C~C zA0-ot-!DDm<7mDo_dRONrd_r>emGvV@Z8+3Kz_GEV+EODT(A@EgI4*{#4~3~VtXjd zmF`)NmkqG=oiK5J1g(|~dc7RSGR4;mK+WSS!c$L%BICHeh{2Z`^Z^z9Nx|pY#bx~2 zs-H<{i-9Pksf@+sgDOYrEW3cynNoa5#kNUr^(ZXfGGhkTcmR1l66*}5JXgFVj8$5K zJ09gp@6ng~K6S6hU06<7G%Gz%G>h)}Wz`@_Rv9QwP0LhHW>o__Keadt5#mQ{O;uyP zD0jLLe;vwnl1DRAUk0rKgM$vGttwBlo!MaPI~rP|o}uaQaO%n!H*!=ggsF@ysmwYL zHs*^(Oih7oo+g!KrA}1ylAp{*gHk%dj&Yny&1R)8;B+VMr(+L4t$9|%m&fH@ZZA)8 zu4Y((#Hw+$a37|;4jcnl)m2{rvW_I>th=L_r9@RU%X zomuq%NMGrx6-uPIHV&Mxi#|3~b@UK+(eEQP3wdAoPs_W;bOR%J<~&plXa9P7aLOkN z#1SUDj&RmTnUvdNx@=QbG!+2UU=y(*S;IJNuTdgxFk*&9Nq1(AAoAjHRSh*sdIcIf zI;T%dk@;oo+RTL0?DdH%>I|NEoZ0Z~5;>Ea4>LvcO!}|c9>u=e-{m>0uu;!c$-%2C zY*XWQgVN`f!fG^NPBGB9@yvzV@G6fH%~P#qLN92&*40Z}8mt|)#6qK($3mP9evxwZ zNZL?U86Mu%8HD&1EX|$YBHTf|wt;rQ-{s~ZZ`eUs&_npKHHVRrNpC9_TOJAw%D+zA z4#~QKEuxM}1to=Xn5gSo3pN38A1+Wi0xi*B4CgsiHQe7EwK`V)wK*X-h|*Viqmx|2QjJ&_jS;WcDK z7gChQUR__HahXMhb|tmD7k3GD_9mBfp*d$bZgKDWbv-XD+h5nU+aFpAbEJQ@vn8u` zutNPFtM;y~gYPjGbgC}WZJ1^hz3pYACr=>F84@5xD#Bs%+ik1>E88%BOqA;+fO#m1eqdg7-XbRQD#=X+P1j#dD_d)gy@_S!)<3O7 zizC0iWP*yadf@b|w08#k?r6chpu08VUTa#u7v=62V%<~>db2qfw`pmcO}4B(xc?W| zk!F4*r9pI}1kNUrJR0v1q8kf$1je#E*KL9~UtiuxGZ%Z_{V?nr+rE^JBnh%{Kx$Ic z&bdoFnkxhKC8By#+8L!#1jmqKZB3p%8lZUhI@DCP0O7LyfcAI;>s!68CHc39dA(^X zS?4a4%OvM6scs4{mT{lwi_DIWhKt+GvYuL=W>(HCKHLO~){tipUouEM>pvYH;U~`l zYN(xekk@&dP+lB+t^#hzIDKsZ3oZmq% zbZy>1Z4y3JB0gEOwdYhhVYX^eJ4e`EpCKVP{C(u~x+tF;NuQ&;y`*;UFC8JJXIyD# z9x3Ag+T?IgpEoc)gG${A?as_kCBHAnzYBNcPqivsxE15|Q3qvrKC_{1@E)yva}@gn z*AO)c?fe4*^>N*?`w=~hM(bk zh*sIGl?Uf*fIv{--v0;oS7>W#}mc%PfF{eSgRZq%g z!&iz_4k)8`M8ZdIcjAlgu&+^%gsrFmZj#2EEv$1 z#m(SFoH$^gGWM?TgxUAD5Pezc;_D$NxX$Jab!1|ya3Yn$v_cG!f2UvBQ=z~T zT9G-ET8Q$=u;*tor@ERtPz~G1Bfn)YxnbkTilZrvOgSX9h%Y~%)S#BO#%(2;3oLvL~Eu`aRT{ZlB_0XtPFWF zI1*)qOTzY!8`}qB^0MNM8&`L%44E>T4bo$)wW!LUEQBof60WRSx4d!Cujb&~ceKWf za*^K6{X=k`=>YodRlzAsFa%ZP&dhHd;R5Uayv-qXmf^0y9XYw9Fm^=`N8%=r$#Mtj z6tZMLY!2lX8SfJuoyq zl8W5>(ueUOjw2)5H$a*j?Ik=z zfB!LsF_)@7?0N&*TD1^Rs}rb<7tzMsN~Qn% zsh+Ek7FL@4NoIm`n4Mr=t4gmOd9tGF`;7`a{+7I(_2$XD8N{B^6}<=gR_7+S=ll83 zY)u4EV(6kTC%TQRSp4I=!WIVBwl>E94CVjFrtm*_ z$p&RDITQiZ4yN*V!wmk;C>raQ#Kj$ngx%&*>iAAry8QU_@zOZt+JqVTC356u}{=a z+eJsJ&E(R$a0O|E9`&Z?*^GEf<4i%wBdp*^!Ua$TNqGZwGR9=Ze@KDKhLjqmOCqv8 zX!R1r=K$}cd{vey)HVZc6Lak}Jq`V1{wE!A><^XsnyxEN8yJQp$B6^W7oF&qC zd@Q&3<{zHy1?K&<;SyHqi5t>8@maA(P-{hJZZ4T1p056{`O|mj>uFr*TRX{`u|`!t zGK4Fk6WGSfIdHadbewghQjeX-eNTzdY3o?5uf*I&HgL>qspttzlHn zfj((Zo&XE?Ywrp8tF=^5xvY=Hw4};z4Hz-=BMcV;qn5=LY3nBsd?wd(Y@j`N%Md}x_5hi`o*SZ zI)@Q<80E-Dq9{OZJfoTkEk&{i)!_90(owsVYrEV07&?++>dO)nQ@?D}53G&cRYt&< z;e2+g4Z_TvKKAczddFmkN}4n7BbaXL(?9#0L>hIEg;VhHWmfs2E{Vwusp}IChkTceV&QNwen`>h> zWB9fiqZHEpUHXywXe1=R^;zG|j2rjG16iK&W$wOT=k3HP%kA+&DB=a?Fy4S0!MTyr z0=*)vSwORdiz7OlZJmjJ;;Sdka-1{jrS}Wv2;pi-zb&J29my2;SkBdSK&A-uQo(+_V4xAEYmSU(mwV+Ch4~s3wWQM+I1@cFgES67ASELe;GmKUWix{8j|=xQ&3EvU1QgHz)F^enOWe> zs*>d|t>24{mX)iTGn&7lSV#nDtrr>}{ybDQG(38*jx|d9+L~T&1YL#X$lVU@cWk|O zJa%5Xem<-$k>!BZMCpvnSB?U?_m@mYrk$Gju^H=Qi^l^0{8a^T?qAFvn2NxTw4t*8 zIJFi=?#4_`TSHZOIGy#|;j1|5`6?zh95GW*?Qq^Bv=BC=$Z@&-+tG@i>?{;V3=)oc zHp1D5?GwOFQ5I+;f;R&+aSgEoSoo_-z=0hMf7QCXGu{_ZheoXZne?`Pv@1(Gkuk7u8emxx?|JEmaBL6qS(e3yJ*=t`%;g^Kb=N<}%Os{&b8C#0vW|*RH0v$DhC11t?d`OT%lk z2)o)1yFyLWZ9@FeoPH;v($AYQADb{AU?xXosNgE6{kzf3VyIy zFp-48Ru)RH?rVG!Vo>+iRb{Kf)0ZP~-Lp>IpKOQ5u_{80q8mH8EL5i#9fw`(nbzfm zr}10zEJ<3{Mm7>fcFtpQ=F{d20YND>eD9x83{52@sK?ACpEVY7oS>p~u^?=ziz-Sw zI!Yo`s|i})n1!;w3kTt-xL66Z_Juo!s&td}GES>$>1mD01mmG9guEEe8`go>l(+iR zS5Qo~ugRew+rV3X>~vtWKha)YNlCyAcxhQXd-I;(8uQV3YfTCnnGzb}G_FC9hyW%j zSHM^XY}S>{_zb=i$^c`k7%;L?3+FUz>cA$hOv^@iqSnKRqGV-{FJuAWSNg2eYD#Kd zMO8p}y##-?6k<)~$Bc{$B!o7iRXck|&06x)sx!FrbiG|na3^^NX*-W$T~t;>A&kDa zo3n4`BH`@IGhsGB6=pxu+@VC}`{LFKIOn_6IO&ajp9#*iUHakKL*?0(7*Ln9K2kum zl?*h8IFiO(M^EUuox$I^wikpEpMqMV43b?YZJVK@W};`|s_Idix-5v!P-;SZ{r77j z?DCe(!z4B1F+JgLOer7V`tq&U8e6!IVRRIUs{9H?dFT#_^5KLMC;r^DISWS=&knQ= zcd%w9I)+lk#j?<7?SqCh3KxVDmO&KxttkyK$Oz1&!a0>k@fH|xLcSKwjd8mON1y^; zC@x|#1E5wI0S)y~n!wK8;&dqw0quj_Rax@qLh4Xc)MDVq2jPfalX+fEu_73nzPe4P zg`+d8>uqr+hK!@K*nI3upu_H$T|A(VG<4UJSz~cwNo}s>lqrjdJ$o>4{d;v!1J7Yc zTwcF)cU5Cnp*zlIf6e>)WYR7>C-@yYB>F(&Cq?jAf;3l>q#ri z=osnu%bGoi3PeVnqJiPQHcVksLn14svL~bFvvw34kM->0!-`zg8=Lka*~iY5{oN9Z z4YT9~)Ui#mBn{-6=UA=Mzwsdckv}k+c(_jAn=8SZc0q{_jlTO%gp}gSR3m_|3lIj% zTEIY1swI~6f1=Z3CcY;pp41@hRUxm3#Tbi>XFjWT^8zq3xes8TC>D0+hNZf_QP-H0 zXtsTj9BI*bf4=v{nv#&*LnB309Qh~)_3b{RE>scHmSZPkB1guA+i6C|gi+LC${`XP z6yz()j(*G$p=(8!2#?ocl8Xzp7LGv|&k-f7OUs3-TSoB-UE~S3=hZM;st%J3PVG8s zljoQX|8`orVo53wVG%J|jw|m^CX{#_Q4=v)$U(PQZH^s5b6k7JxDw%x-jyme`9lFy zqM#-Yn`(1!0@;%nx+AU?oBvU2*|*ee2tCuQye1!V@Uz#flQGIVb>%L@g(t>Vp0ealwqd)5N{W+H~8lgIIHD_uNsK~8wU8d^3 z_$pO?Tj`{F_sQk7Jg#g3YAX>>ydU~Qmsetca2=qKB^pOZZVITxq^$u(tt#gh zNQU8?)ht;N6wd}xF7z2}R&gyE$u>P>7tu<8M{iG}nYFIwsgi{)|0tOoA7@JVJMpo@ zlI2D99<`>G;7Ar8Hp)_x+}oOwBb` ze(0Yyg{`P=ZHfJOExm23-vhu;T3Dn?))VqWryniOr z8b)7P0XZxr%F}^Sx}zz=50ykku94&k9G)$6gs2GyTJ?(^!jk zt(`#=K?I^TA{7Khk1@PIT0-ZTz%LwTg{Ea~hEc;x@=mwWz+O&HSXrcwUQ%ROo;%id z;5U-IuPYbFDLWc3$p}r&ON4w89e{HjWuz=x{0<0 z51S~jXRRETGAZ$BpN~KUdaV0A*@CO6(EFdwzB;NYNMoFy_xP$S_ehShyB&B++zfhg zv;0BQ#vhGki4U3qxGcdmZBr~wIxu<}a}^d44cCgxe_e^xB^HFf-{X=hLn)X52Gh-x zLpWJ-G8kQr$H$lsZJ8m*kS1WqY46_l+s4L_Olw#O?k1+-DK44 zk$HnkH6J9{7siij(FVUu>^kb~0NgwxlljnRh8)okbH``SXT0EB93Df{t`M(00ZN#G zTSktngAB)%RZi$~L?DqyEWUsx6)x)pH!VXC>?M?KV*FQ&^`C*R9+Jn=d(HN^>>K_f zvTb{Z&|VA(keQ@I_OD5 ze#s%%y|G;|UHz+ZhspGADS)d!DZzW@4j|gYRE^6_ZdYw2VX9Lf|0CncMoDGwX^wH$ z{QK>!E5GFAEM>kQ&-VrpHkf9$?jbNQ?Voji-XL7yxM+62f2MBdcij(E8&*oVU87Y@ za7P%Tnx2uZZKFH0FU~H(es3Fb)g1X)8y2MpLV8XIx#TJvHF)fF1w?_}P-G!N(?-I+&@O9q}kLJ~42Wj9eH1kE) zjM=BcDU?(hC2j=#TJC60-Vlp=RL~xZR!A7Hd?On#Zcuznlg*S_k9wm15N+g-*$D31 zBQQRZTCsj2*A+nGu>$-2l8qb*McMeGvDMFJFPYmiZfpeA)i24iv&Ej$R^U zGY;M~%gs>apxN0LC=gN;O`$GBlTB;EEYlfQiWmS!#)A4=KlQ?1KZPE(TstzGe-TO= z`ship{4J!FBV9R|IoTgOT})6?m95cmcS}8dF7^qRM&LIb?J>Dd!!+>V_vK}_;JG+R z8}0`)fmayE(O|TyV8J(Awu#5|tweNuV`5vfzolfe&7|e?$59GJ7zjfsMvNH>t|eAIT@Tt7q?uq`kjKPpm!Y-0WpKyosuVmD_&cydH3Hw9jf$KRKnPGQ#oh z5XAa@bH6&O9yRb`ClJ}Tm`)ILS;g+kp4!H{xayYa`kU4F4+Gnl&CNwkshOLbNpTIk zgX52aRJl=2vAho=m`h&NdNi0>u^Je131_)H82Y^I$QdE3RhhSTcQlH`wc+kFk`E2L zKdMSI!N!NV@8D1gim11*rnj$Xx36QL-~S;F((rvd75s7!K;!-AXNs2Qf2EZEy)*cq z@BM$~S^n$MFW_Kp>mXy`Wa409VD&FSvWm45wi+fc#x(dJ)_gXVjKVMpVzPdbpI%W( z-^kX8)PHJ`5j0Y3j}+Hr(EY~yR4SQE#hN==+jsO4_Z8-MdO4HAt?NlmL}+up{K_$y za=&OnsQ!3Ar~mdit*<`cLh77BrbgSBnEuK;c8pDC>!>qJvzcTWqf)0bJztgA>VhHUQG^!)fKqhlZ`a;54CW1T|>pA{?pD5{@`X!FXD`XcX#{q|BBf zF+mLob35Ucs$n9IXb#~}fOB<20?D$$e8#Gaxfj&gqQC?O&)F3J$W$zH3> zCDFW()!-t`g@V0-p<$cRUewZZe{UT^a20KgQCR3L_mOQT-qlxVOhI`$t}OlGcbXwO zHW*(44pIB#h>iL{@Z6wEQ$N+4xrevU$}!BXKHJ2yom^#OC(pA?;s`mJSRJe={Ry$q z&vQSBtqF6ml>asYS4w>MVGyD+2qr7QUj2GB(x6(l>(SBrSnc)dn9Iw~!v8Am zJiw{`-TE7D`Q(m2p z*FR?X_fNfZ46#yDQ_`D$pZD~_+rcy{kp5szPRz$5JFOq*i#snji(gPaCe`>O zsrk8IgS<@d7w*DhN`5-CZ|vdmOPva41ZiBr>En@v%6yM@%Z)xyY5Ce=e7lVBARb-g z^NR^ptdsLjKfJc>7MPuLdm1QnHR2@kPyO9lwCei1afQTB*b+C+dcBt5$auTAA$U7s z5Vzpr9+4;M;qT9esH8o#h*xsC&c_^WebDX|M%x zbs~g6pWPJ9ef;-q^0@;vqlkK9F5)y2nh9YO`t4of9gg&9gY#0n=;I?sPwQ$ckZJFz zB^=x{@>Jz?G&?RuFk2&yx~)KV=lvE3*&kYsc>?t|qE(`PgfbUD-rV=tMw~=^^5H~g z`tZ-pOgAV0<>e)kYF5dU&8aV93i3z7EC`IGiWv${5u6y!xq0XTPZBA0mTiUZeGN_T z2BPt_cw*cj6vJ zsYK@h=FdqVvRj+?6wEm zmhBDEwUP|O)aqlz7g=gdIG>&6_e?k&Ao);H{b;z9;@kW8C&Fno;x19k7dvQ$NEch> z2P5N_IJ`*tBA5;CXa%=MVSFY+3hfwiN+oGg)>MCJI&N zZ@m|YNSK_zvvNGLct)rQBKON%_}~v%da*TZ*EngNL+fIcM*U zDA_hmDJgANyF^cZusgKc_I~;N*%n;tZ%aDq+8tXhjxo$ya!EeE9r5{!d(#nGWwSid zx)%aprcL~w(B=PRdQfG-+@?);&Lo+vsqN%j(3=E%Xvpbg9%{Ha%|K?zg&VNf(MO_~?X@tO2&c;kN3=SKlrFJSb+~ zn;<|N#!uqt8L%(w$>PxvVRl3B2W~a@!^fUjj5A|!rL#pOEn4Kg4tVQoFJ~Q`$`>tVvAL%#o3jQF!7otYfo*#!6^rAy4s#=hfr8L zICCc_cemBa-VEL2(7K6K={@_(!ZTFbvO0@o#*8m$EW)X`>T9MxeSS@ok}0<`fVh8% z`L5nYfn`o_=B|3CktpGpjszSER}dU255LYxe0^DN?e}x>BT==uIKBXd?T-V3y2l)r zPDUFu*s;pA)f*Z#`b}sj3+l5xSMBQ^$RUY5xVQFHqy9zW@B>B57sYiByn0WkB~+_P zmbjeuYB6Sk1wU;+r_l#LsYFr^g2gPwJkyqz5vB;~#73T!gIwf^w-pbS$vgkl!H;v& zzxtjOaaDJk{6vJv<}QiR_uqZMznxb4SpTzjqbb4NWKOF2 z!D+`3ZHGt+39I3{9~65eX9a_7Y4{WIhk5q1mE}o$W)+-Ia=&rZx6XjEyxAfJc|Rl! z@2Bg{Eyw+o#oqLKG(Rz~Xt{0@P$r;h_=PnxKJ6fx&XHNMKAD|95o|Fzj2A^2TBkj~ zRB!wAFpSM0dMq;d(&^7P7fcaOG}}wgeR|HlORIQ+awbZ>Uw9}7;UBw5gX;+o+Xepz?CQMzq;*Ye8jf6{?ToSVQV;y~bA-zGLbCw_HU z{ri}B3mc@HyR$tQSECxnpkvQrGO4s24|5Fx?o!=>*b|hD?+k5>pK{$}iM`0u5LQ3d z_)^@Y|E0}C+h;V(7pwHQ-e9U$X67K>N60G$0orkYWLe_eRf}e8F8pxZTT?CsTNkEOTJOowSR=L+;nCVVtLp1B0wd-xQy$Yjg`flHiN)mmoN&7T)2Wd=oV=cDX+KL>{yV=$Bmb1o&FU~96=+3$B0(!}+npVR;CZ}SbOLI@C z9wXum(mbym9^)~;#A}^?p5#Hh;9yEpw$ZrGffLLR0zv|ZTC}Wxg@B-a17vrAdE{o4wo@W2Fl>#Qd)g9h0r+)LV3 z32`+tbZ2=Zj^3HLqH=7BbD&1*!uLyZ$)|I5kuqeBtqG(Ew|LUCdtUPI^FDISHa?W$ z1t-<+#|FNYMg^2Fcl<2SpVO`lV6mEwZX3LX=Q}5!MG@Y2Fh{0#jAf7H#}%KENzu{f zg}0P7pcd~uGO%-e8DSi*f&^vz~u1c zv+Y&_f?gzEKPf&Z9s5?>wZ~x5eUXUjw1%RjbsN3#EO8s172ju9$q-3G6SwfMf-QYC z{lgzWK&iMFm%JV1Gghv{R>$2&g@X@1+gTe&Ha=4KFQc$WT3g#XTEjxgpccIlnH1@H z%|yN=D&s4!jcq6y`;-Z7_i3wTtEdOYb5TTD^^z2N_BKzQJ3V@NWIF+y^tq_~gZ=u7 za@Q34Vx>f+-6S)|z7OyB!l`=2T4%)@PQPgEoPBS~iz1ulx}r&ap(u+heUmBP`SF;r z0PTB&!j7C`2aBp{4Z1Dqh|E4;Zj{nHNbF-=C&k9@GZwTwiN?g2@g}>!zWm-D z`?Z|h_)}-?Hu*vWCsD7d1gT($57#x2c-tRzSWxKIznwl>aNp;CjrOM<_Kf5YY6c~F z+Yivzm66c95z{nS<1bSS&MN*mA9am8$#_Wj)-&5j3rl5I5G7zhH#Gi zm!2a(c?xRm(mwX6_6xO@6N2f)*pS#Re(uy7!dv3gha<1Gj^P?<3E*BjrY2NyBZ-;) zPV;m-#mky~wT0Jn>wdWlUiGk?+rTm|!`#K%6iO01ci{|jD0|3TtR_)9f08Jw#y}zR z1OgTo;y~&WiRv3MIIXc;2;?co>U0O%xZH2q3giv9(9X$*D~;Vf;zukKw30+6?@0af z((Opc2XI4rd8y3LGmE4n%rhe6n*8Ibr`!~emE2@JSetJoe%n>=`S#l_ucaEEiypsW zlryjE{WyZfTiKdjFnFQL^;&bVxxwp*jI)J=1c+c+L!JHQr}kCK`62s*pLY&)m-A&s zAVxHvxgU>Y_KFDy=QrGw>C`+fX^x-EQDPB#bzd01IWc*0?jhpO*DpDgRPTMpv$)hQ z*YJ$rXG){6*pI?{iD)*xzrR)WbVsSynUqChBas^yb=z3VNi)=pMGM4x!Iv}NmQ~so ze8P}fd3Y2%Xz%>&V}7P|!c~f1+`sj)n0i57WFS3p@#|Nw1{%M)dV9FIr7)j8SaZCs z&^5)~UAga|*ZAY$#hk9Ma>Vjw{TF44MKm%(;sxc{Z@SiWDjy|a{m}xiqHPzoVtoocy7ndnaO6ku|N%_nEIiU-9INo0&RmMjoFiqH@EA^T)uwd-c0WB z=Z#=CE+KVDkm;K0VwieCUXaKt7)~}sQ=$CD4Wv;-3I)8s(x?^- z({G2B@FjK+9=G1})h1kQYi9)GQvvxs4;jn9w{RBvC+Snu*UG$;l8Qz;GJfrb zXW|l7x(UYIc(5H7YkLKj`@#qa$}34>1HTC&DRA06y`<<)G=-!|NfZcGZi=_F*E zk*J&NICOyHDMxfwa)gv-Qs2v>O77Wnr^lVn?aw@Yk*6y}L7U)XJ5!L4l{Jzx!NP{! z-uCR9_bH2hzHidzhJP-7OxXo~~K`HBmJ?->yo`eLy;LofyMoVh`S4F7I z@J@;s?5&TMq^{u`C~B8-l-N;9osK9IEisl2WEM`ZB{LTK7VH*Rb6LY7Ke?KooGY1l zDdEWkE51c+R_4u&3Y(r0gB!*Y4@cM=W2wCNUBKxO+Lqq5Lzc?!cF$#sfNncJYmxF@ zbCxSK=i$*u_vdw97?4@Vb7`=&Kf^$SRArSPn(P4v|2n z`*(um9F3w)^CGx%Tg8@-t2QW_5{_+sMVw-Y)NxLU_qk=76a9onm3#S<2vd@pl>SG? zmr)~xRw3sW6T>7fM$=k}#A~+Lr;cjeR@~aZmD^M`XBqk7DDOxB{+VNYCZu%o_l`Lp zD^8|Vj~nLUacx$PQIu^MJguC3wVCW*!-=l`?*fN-+88>bedit{lf~cPu{C-yEvk9f zMCjJhJNZ9k1}2#u(%vf7UHjZQOvhaKio-E9(r^6!zOnlS`L8Tq?3(5gNgo{Tz+IlJ zLVS!&K2DiWte#!oB+^yurA;2|6_Uvn&6(d#`8A}Uz4f`J=hQ|k=Ohg@yuqsRQ_1U$ zP3KWb0q0#kmOnTY^V1cFX@3YKRGb=^Mso$O@JZHHhLn91F{ff5vbk{8JIt?E;Tze& zhhyfaQ!~MpIUz@E!v_#a*@$xSY&N8K+BVY(9R}$YU(2>b@ZuJY+JKJ) zmwg1yd<2F11C9oZw!HklU2Vj0TjWK&(X^@tQ;%}>*A}OW&l}rc*+rihqbPO%!;p~R z{-4BlGZs7K@u+%{d#FC<3X|?hC;M8^mA8*ES4LulKV^h5@QJnaW#b|xr}o`eI$l{; z*P3xobtq^i>v6QxqT0l}DCuc_>r(UO$N4@A&7YfRCOy%R*zpbaM^FPkFi%-K;Jz)Ke`$R<>EOwE@rs8DQr``jVA>?*SCu7&Oe z?j^RyyM?0Jh}|~bzE3119{tpMQttI=8H%SuZ)mMFHjSr-JL7vFsC*pdCJ1LPzP*S0 zPFC_!Zwu?o1#)u9i0WrgH46t?3!}}9O0vYBmbg2r+gQAH%1SFF5*`;YNC+eio>#88 zafy?7^yypAJwon{WU}eZEc5Omh(h)xo#U9lM>$=aX};uW zS@-5hdAXIXM_)|m6EZU%{+kXr1riKt#FJ>dbBSKuf6tSos_Yeb%T4*EeX`T;9)Wrn zqS9>I>b-Rf-YNw0PiuK-h#x*p7%65MMZCB)%0E;3_IyoL*{FEdH6~{Q?%C`D0zjHUmHg)3e(@W1kf0@ubFwr>{Ekq~3ThBd^hA%?I zJpuoO%*|z$8 zJnPmc>W7&_#T^XArzExp;CDr2r78GRP&{-GYHo{V@9D5{qCeDleWzt$boTurk`s;c z#$yrNK2>NxA|`P6bsh*{9a>lvujWYY3w<&_5(d6yu`kR03IeJF6i}ZjH%W;;rDOXJ z1=JItiRN48PnQ3%j_p0$EwG=Q z@2UDfbCYRl1xTa$8?t1UQun@4oToldj?W>>{N=!mme~DD)?bs8ge#Mih5;-^c-A29 zgU;ag#_vqkgDnT@ch{X@3#a#4Njv7uv*oTgM1-2!D!e`M!gcz4YzWV%%I?aEBUfcT z=)(~f)d?}PqL0L9vb)dASZ4fG%Aspzwe*}>z_spUdQ#t57(p!WaV=uYThoFvrg zWAxI(6V1({aL%YpMn`mLQS6s&xj7mnSIhaoM5i!EotM%7x&#uXgHK5 zYidi>*!bs;pm(-M(p#@3*sPS0^tND5RI2BNm?7@&*!~8Os)g1!Yqj7Ds5#^ z-@!(#8ZMC7eWFCJmt%VS*ddu{p?5?=yCVc5m|9OiPp}eATS*|aIzIGIN_?I9dik~t zj%1^JuwoohdEtO5c_Lqda%9oF#K#3M;yr4nT+4I%Qgilsv^`Bv^=OY^32K^P6AZ3D z?|O43fw=V$cO`)!H`Ij^i0^WK4j_S`8teiI#3knb6XHXi7RisaH7R^(E0`v8_%j6q z_2MdB>O1M>x48s|=1r2ySGm`G;1g7tYpt!duX+_mBPA1O_suRQ*J+DDaz;UV&cvB1 z(L|%xXtA_ZUXS;2^qn^f6z`sL)11h;GR!oUJj_+hO9iGTG=tyENXMkI-Y$#bOOu&+ z6MS9lq;jpG{F(b@4~p-X8=o+Hc><|&na_FnPJt;0!w`8%2ZMK|ZIx|g6Fp3!dkoAwO-JZ3%g z{ZeT!$frR55Jq;KwnF6#9&?xa{?G>?f0z!RFT6o%`b`Do55|>4Bgpoi-A)|Qy&;WA zl`F#mJ&b!Mn{In;5$~#1I^&6BDCyZ~QHLAw0r%}mqTTad1=0tnv$9_9m3S%_eCAWC zS-(}|s5e`4|PuqH43pAg> zSBWfD;gD*<-}RzJsMTKjlB1}aw>rN7^M{$Pl?#lb?sxb@t1v_xdOIwq;8y#@A7`hj zjw?iV*4D0f=()kvSLN+GMLy0S_cG?Q=o8BEUAR6XG!!9zr!vOg*guI=R#x(Rc74AA zcj(;7t#K{wz5)WDmp?8Mj?hjK@ft zZ#w>rrbZ%xPcZoLmZM6wJxh&cJJs-(_uFpM5V^U`f5)rod-~|C8EMHppCuiSg%t5& zFwa5ca4nQiLpc7Yf{8P2I(ZPYFB_|^7HxMzh9{#Q*MTDK_6HeTfybjuO=vvUl}J@# zd^-wnY4#X{wD8p40Eyu6Ni|`YzJ=a%`E1&HRVTT`-%eWzyvHAUm2r;edhn;yoo|de zzTP%pmJACl+%6dz_vnyeey)^GlBz&2RdG4lMTKyZYt1L`&^qiUY+$d*U{4 z>Kj4NVs|@{eXH7$WdCbggl#GuNmq|mOO_PN8TmC|eW(I%R-;l6EEY5scMU8q7S~Qb zoYFz;a`Olj#A!YYrl(O-|)~rXICc+q$RkR!ws{qW7axSl?^9iP^AAl zI^V+;VQvqujzO;6ex>~f{>y@{A0s+ra+L1pW#7S<9GbmNyO;%OeTz%%)qC!@4A_Sk z4n41!dGzHTSi<16W-^w)0sbKs(Tqa4yYGy4m4?>ngb0Q5FO6R57^H*6G6m&kG z58K*GD_rHKl~^)qq4@dxkna<(s)@x8iJzY{Bp098Md2Lls4nUjjeU8#PyEX@q;K5~ zh3+tuk}iwnm(qiT^fB=cY!65h`x&NH`+W@C`%cnFlsrr7I~{iGybzUBuh-zf-XNAfRnMDw<&LV{)TK#Z;=xKC@Y$$Ub5uzFnWG6} z<6}#AKDmTYYwmV&5_vcf>vLMUGpIayqJB@i^{ghBQ}XDEA&tfsA$GQ&9QKlP>7F6^ z1$Ie0nr)xe^K%NyZi&yXJuhrpJ>s7`ps92-YUkM)S|5+O?sx1|iW3WQGPbmOEl0iY z5}nXLSWH{hUSuc7&l|&HLfjyxo_DGPKRvS8y@zQ@^gtt;pjzQky)xY{$p(teF@d>aQZ9jmKW zx_$1e9Np(92)V1@b9OVenB0QKP+|uXCU1kwKmXJs-;;tv3Uh|Co z;ypJa>qCgEQHYj$?g^C-4rEf}E)fXbPm9KEMMW*<7H&T(NT%oqQ{S1`p66o}D7EBF zz2YDnI?R*iD_pL|^7`=BO4?mjl$sY_M(&hZpqoq-Eu|p zF~3*$8y}gva#q7{eb>ip6NE<%HF;B0>UXMj?G$QfFcY=ozn%E0H+oW)`FzeOD}`J> zz5>3Sl_n{3{O71qV?61wDcTN3IyGE}XFA!Hvcb+{+gww!&YHFkr4v{XAl~wIx7-R8 zJCk;syiBlliSzovvJeGb-Q`#cuWKZ|ohjqBTWl9Zh_7$`cIQHs`nxlpqK7O#xyAnQ zcIEk)n=)$?e?CC>)g=oyVey$5imy3!g!;X@$G)}{RmJLzjnN?&3UsGCX)lJ4-d4Sc zN4sZ;*(~DronUKMZDYo(VRfS4;NRt1oA5+wL+8IN%kg@x`^X)>GsQ@?kfqZ;w{<;`;q`Xrig{*Q7XtRv-=rGO zBW*o-*0jXUGQ;4hT!7K#FfTgKL;Gv8@6`I-lrPOr*YesG7W7E#gL+S)RgdWV;N(md z+VSCjtLyKJiVyA<5u_(P{%GMymZoy4kk2F8c$%e1;&B6F#5d*|Y1t2wUEZWGua&A3 zp4{=`i^s_E1M)l*Re@VI@Sf7|W2}`R{vPA@R?y0Wbo9Z&kau4B%Uh#7sodr*Vw4YE zknrG-vLl=5r6xU@l{+h|znFoWM}7;p)0LDZMD)e>7aEbn2~z^?ACJ&ihgGl~@jG7p zO5h{a&a0y*!bbgk?tS0t^-^=Va>m3*eal%VpEn&ZSid|xV_m&y=8p#{aa*ZZ&QDHvq#H`#V6xR@3?D4=39~rq~k6F%3nBS z1v(E%rM(rGy&UtzHtfz9sSD4;RBMjAMs2I`WgpS8Iv@0fZIbTVgyO3V)gvNOzIdIB zIQ$HOe%nT6-M=5d%6jmH4%b2Rt95(owSL~K!}laT`E~C+W6k$qXT{@Pvb(5snVL)P z3Ji9HH1(CAFs^o~dBi%pEGD=XQs_~7H%W0q>`U|cq3Jnf8^3Pd}{`du8#)q`g*Rp=se z;?qXIA8YWRba=%(p~|a#en(V({_d^2Pl>ggYt-$Di1aqCj|_O7dF_&V7cE_5!vzI$ z9IA_EqgN@9xow?GSn}F4Uf0$~-+btN&i>+5m-i>V^EjVOkn6SwQ@Rl_zah734+)uR zyF2;LEST^@2GLv6axy!eixIO3%KWa#-S)wkSqSzjB)#O|wa7TuQPRUcFMRW4ug=Z= zSI-YA_CDQm(>yA+F1ILHN^^e)O;O^*uwC1a<>vL}wO4Z>rH!eX2I5b-a}^XBO;$Ik z(Hx}4P2#F_zTrwz!n2?C+KVv$*L!PQ146l?YP2J>486Asy_PuEO7vFmM5ESgvA)(R z6)w(V6OSyjj7X_>Mtud(UlGp9ncfgbTpqYs@XXOPd#3LGJCd>!Cnw?pQ<3oj;CS|t zpKR^*w{677eiP`+9~a-wEyb z{41vMB_|T)!0A^8)b|L(YO2-m^0F2>dbN0(bopQPueLrrn@W3D_~U-Mx%X6>dx@Tw zwPZ?&xOJp|Fn#oMX@RbqZAK{Ge$-a1j=Ex^EVV1oSL?A$Lw?bHv0kBiwK{4Khv(Gh zXEn=mib#aMPNWA2z4yPl-{W!j^ic=T#bQB8(xA~}MUCEO$;@YJ!1ZilvZ`z}=J)~N z%l^Qu9$(AnbR7GBp3kqZZm1C4oq4h>$wmq}Q0qJwk~#m>ek$7>}V6nSVpAXXk9OGG@mSEz?lELMzhvc!;;L3g38S7KgRfzd!D#hlp$NlSF^ zUJvDU+WE1=RNp%v3*N!)2xEqIF^FkHx4#T0yMTe#z;~K;SY)8ZQDoT|Y)m_=qRd_7&qh&|dg+py* z*V`vV`b|^!l5pfzm0J175pMq~DM~#dIN-`*7@vx3lF@(je!OWIf_ThVFpxN*&#J$| zIjwd`rR~9s=5gn7T8cyLubnKORJ85c9{cis!jD~DN4X*f3OWc$n$J?lR`%ra5q+(yvhPy$Y7la_ll9W{f8^4~PBdFmRZ?s?kr8Yc zI+epNc#bsn<#O+qH#^;~mfGfawc3zef64sK_{1>t?!=Je$?UuB2o5(e8fV}8Frd9G z%gJ*~-DR01oB%OwmVY z_s&r-(!5naE9=LyJIYVaMTl`uQSO8DC?CJnEID^F>p)b;EK5_dS)gFO&^0c?CT{mm za%D4vt23OXhkN!bSR4q)Rk=#PeNVmEo?4d2>ceTav6G71l3arF{N1RLpTZto8S=vS?l9~5BtpTU;n8wK5?`Fq% zGT<1t$P8^M_~<|MhJ{EhuJXr1&-rKSH~A9n2N;;*KRj@D#1B`%*Ga3t;g73Fh7E0xl@5xw`j)L! zIKQ^2{K>9C%DwUsfb1InXe#Q<@~LVmt>)9HfB!Cr&Ge4{)){*6N8mUMAQknI1OM^g z-)qWhsVXVz>GNwUp-O-%4@oT8TMjb+6i~Gkr~+^={WB^S~SE0YB#j1wsL`&HHm zGq-oLuyX^q9-+=!puQzkMaLF z<>utLmgDu>@as_^{1hnAwDRgB32rOdTme+h?*+E?P}^(XQECAB2v9^1LtUktI zdUA7wB@*fE25k(rbp;#y*J%`y@X!%$AQ=e?w7Y!uAqAcY3y3|!+1716ikw1FH2S8m z$ByC*Cg7}{>@AV&Ds-Hfa1OF&8&IH$+SMlzEbU^UkSo#>+@#@%Tu-N-Y$;MhAl)7m zXwUBIBLh4g7NC{Wa5gb$#Ig8c^yY>OMt+;aAX7#JYt7^a002_}Ti%ys98C^gj4|LzxCNimU+YNab- z1)UwO4VmU$JQI zOESP-k{Vp*jlMm>AOUHQVYFw3$+X){=1PUGUjfzENhr?&#a%%qzl$MhuL?boGN+o=`w|1S(4c{JZ)vfeRck z(BwbLhOX2@!MZVMT1{VdoYuZLAW;W0#^?J zkx>1>ealzOAe)=-Cwb1-4nTYnC?cS&K6T*K1Pp3vGpps~knr&VQu{!G_m3Dxi~y*{ zigCn-XOILS5m?v8VSl!0W4njt9>yJ24WB8cj9|TdDcRMVA3b3vl3> z<+Ht*D1ge@Bx>POmd_*slp;XEGs|IS%ut&Jt#i)^MNf zS8Vq`RW|SOXJu)&WCD~1PzXK>8|T0ZwOP;4l;(=K3P9QbBm@3keWp0E0-<_<^}^Lx zXMtPBfB>bja6k5q3nLiHk*B^~UOlqsbUZ-FfC}RW z|E@m8JeVLhGUJK;li~?L;9(#e9%{4pVIq4&>)jSgR|D0JG7t_QE5z|)BpicSczjFu zqA6fNgH(8DkLJUK0Sw2?96D>%%xdMZQM8TR(kPmg3;=(-MIF!}n|H&_d*8_GfRaQ& zkOx%-&yUqXvusY-tkZ3yf7lIGlM^WLrjP}Lpv~o@_BF8QA8jpN{y1uz2IT+kLAD5C z%UCy}Lw&A||N3_;06GH--1lw=b%&iYD~ArCRc9)za>51>&VvFEyIojQRzG7$i`sb| zj|@`iEGY2&=NfQY*eUeulW4S<=8K^{)&SuT3f#rJfMAau=FdmAXhB2nue_isS6@)z z4I~RpwtoGI?u4?{Ms%1 z7iR6G4Rpiu>XQK+8+vuzk*D3^n>JCGCDuxXwt%iabDK-uWa8$BXCtmOa99$cfF6$W z=z&(>?R198Vhs z;$MIQHz6%a3=z=Vn_0OctR28A(Rv)-v0J1wfHCo@RotPh9KSii6VuiX4ns1O5{u&Hf@nOCam< zt_hNmvjP_5U%YKf|H^{~NbB*=gc9)Af!eGB1ymu*lca(*Z>2sr((cOa6XjT-Sp+C> zdu&$2kcLsKv3{+Lh0gA|2MXLl*MfBzj9TqCXCrNhOAj%JfO@+C3Ot(}1#|V-P@on< z*ME;%38ZU-`2t!nh=J?Ts*62gJsX%$C(#WCI-CauPB{mLofzryU(16@`*nPga(Bxe zKF}UqpuqdCJ&14^QC3E2X1{ZMv(fZqCAoy_xK0R0LM%iojtImsuJ!1t+WLc_?V3?`JYI?8v^KD^!2)Xn$aywV zYU7Ee#KWT@(LjSspn#@9c|Kt%dZVyf6j)dGS96wqkDRngP-6 zhflE`2Zsa{xM3|_`3Hm0 z!{D&CP8*g8m}fJyM|guAM+jX82AbWqJk+YJL zZ?>Njs&r5rD-W1qMR`0ollf=d01Xq-ZK1S!&~f)2Xk2|d9Gu-Kf^l$qfN1#UPd*DL z2XNWirrTP#!>Vul_ANM;2zLZ#RYnE-TlqhK3x5&JMD2!&ie5*Qm6NMA5;K9^Fo9zm z3j8%p0KM1N$`-jn=c1$auXhCXo(+mNto{|jpn9d=*69B0h1bYOovHY}uK9bU^5+%M zw*G-m!dwSHy$XsRj4p)tkM!RLw>nhX@C623>Y8i;7-R}KAlpWHm_X>nLVc7qP)roh z{34Nb3eZwOQAeSIp9ENQ|E!E+0*-U==Ykf-u7Cp4ew1en8}NU5=I@0jOwey#A67!> z3{bRCz&JRqgjneOANtQa6ejF4T?RYI(6T^*8`>SBe__K`cQAQ@J;x1RLVIW~gQ5e< z>T`woUtR!Z@dp#U;(Pj7FmHi#4V0s+Z15|Lp&S^`M|MFEu62e}gqFcy|hbNyfj5@4VeT=?)o8jN5uRuvlqf66>& z4mp&S#kf@s!LME9*dXD{ub5Qt1Bo6=^e*%pHe{@Olv7-%Gqiw~2nv{%MR^9n&>iDS z#YcPp^Fau?!d>KsYK_J5c8f*gcRSYfRzgYd-d7>o^fAbfGHp90A zjo=e7%1qdk{y0svD3!$JBm$5zPz64#BrAY1Xmiuv@fg296ks4c3jfY$uNZooE7HQ&d7bPX3V4&dm-)e}1damG0luo^zOlsB z^mUyrYHQzj4=h-p7T@T7*NOko3%?3~D1QUIupW3}9$2eB-b5sr#Q#+re^o6cx4piJ z1R8&XvB{dfXdU}Ee%0Smccl^C!E^=!%m7)UWlZf+3%m&!#()8zrD{2_G2{1?{mRT5 zTG2UNi&oGK2@enrUmEHJ8)4AJjbC-)CIB-&=&~EM^3U3J`P~8Xt$=)ZXX-hKxqOuQ zb97T}T|?(%potdX(AGH7cZV>CY_QktEK5F95dc^M0DS3bS`u@>e>3Ljbl8&`KD4A=cktCh+jhLM~7NvVUIi@9IMVw&HFqA37%#y$P-DtaPx>N(naNqLb{7 zuwJL9u9XM>!~waHJTE6#drOSJ%IAW;Xf;NHS7rv+&jAb%fAN5p>u-bEeE2FTv+M@- z@ZWp?5^n)*7h3s=zC+D6>x_Z7#mNCv%kT~rA%{7|24qYdKnA$DiL!u&_y7=mh%5{o z{<=-NMimDq4@Y-|t>Z?d^fEGwFhJqjzP8e&6fq~cBL1u&qp!517q%Qx0u*9Ef$PJk zj5!5dwE^~yA=ho5wZ;oyq!9Bl*+1m0Kd}z0fU-f{+>5S8z6FAqh%oK2|$HUp0%lAuN*3M zldQIc^Zl_>05$+%c*gWY{a?VFrMETrZLXL6=E;M9S06Ubf8}kM=kmMyD&s^Z{u>--p)Cu$^ zd{7^IGzQsmNSEQ3VxTK9o;7|OaTI&tMrm?&^Gq-_`~oJkW~$~4a1hwm>V^h;dMI-% zWH*KY1)t1F0sjkY6b6Yieo4;MeLw_tw#L=f0_T7&ar2%b$wBb~s!V9Cc^Le=`b+@N zfGuyc4srFa`CuhL{M`@nOt7b+_5+M_YWV&T3GgNxDhaND1m{z49+4Ss?x{Wmntl4q zQZlhbpvJ|GqOty`q?TGh{0fN5tIY;}JqEk*u~7<@xJe|wDCq521rRd;3g2tB%?w-U zW>FY%uRjl}QiuhgsOLZVFRTqCaP2vYamZEA0+=lLcl9|2yf-$r`CnMt$cGu|wLOOF z5i%F}h$h(lA8{KxGSPsuKJ|e2x3S!__($I6zQs~tAsd1&043q0nrV=o|5KfA=3pvM zhCXZrNa*t&c%Wwk(;EMTMD;T3MO!_;i-r#X_C3JDO%-8{9TtN~yHDiGl`;UE05Ev+ z8fJqXY$FS;a8-AORC)&}@EP1ZTkI$s8m5kBn8}}hcNpMSpSDw2VlarV1)YQVf7%J| zz837Tqit^e8PbSt&|r5OR3JQ&-RpoIYcr$YlAWSd4M>nPf%h{7N9;(bwvKT`-3iNc zy_|j{vD_vI-}Cn9Zz-71M8T)ciJkv?p%qb^trOp}X*cBnwaN_&8z`&K$&Dpi+Pb=< z&7aqo*tfAndnfC^Crj2&H^9FI(RSHTYp8LcRrvL%7%ouYUcLo%PTIP5)!-I}qW|nc zM>mC9Gm85z3P?`|CM&R7v*1^m>xM7xhy>>cnn8}s%-zY!9&J6x^@VOn0#W^-z!yBO zxnUrD<#p$CqC(3OUg38OpjZWMM`HzL^{LoUAXx19+bSS| zc#-TpP`arL3g@ac@Jrugqc{BBVCaP^?zT?W03x7$V^FtPedae5`s?$6zh$ni%55+& zlIXc*ZRXarag`%CcJMuu+^(n{Y*@QQy%@1LOe&A#QB5(}p9WkHp|LwPO+V&(rnTvrY{ z)c0={Al5riP5<<5;D}w~waLNtE1Ro;%34jY*1>%S{r3d_+kuNfHEy69e1KPU9TOZ% zVzmwhQi`Tdjz1bugaHLUz`J|{Q_7!|Y6Fa3NzvXYfH?p#@GS?4w>HNptT}9V1CW=q z>Ovd<9ReWucq_6P3(%j@>IS49vy(cI>8SydEUc?sx{n13HiX;&H#T@n!(uy_q5-`V zo?L{NV}U~%MQ#9_VzPRb1a#8|y2-+L;=(oyx&m1*qotfgK)L{?XJzC(6GK4uZ?odu<;1> z$VM-RFOE8B?7+bpCtYh-PMF9Au?L7(LE3}WQ1r3QLQR?@5CC$>*UqNz z0TT@C$Nk?g4u&hg7;bDUSL*%x5A>*oZ>K9YK%;YlArd@KB?5DN*r1etEs*LvSzFs9 zH$wUZ2b1su?QqG~juKiywu}w(*XV2`mbel1Y!^^Z}Lpc5BNr@FPlqMKslZe zs-M5B2SOP6FHOmT-ax>xb_0wQ%cd_5I-DGIKAzIb@p$MVCdS|(#L0@*dEn-!fmy*5 zfpPv#AuC?~w=%NO7r>g}Vh2}Sa4ytexeRpkXncm!1Lz{#pI|r!55h_!n6Z9G6p*_^ z8nFqX=ioI<)`ICz9O$SVxLp~F{|o1D3RH7R2PScD0tz&0hHJxl04vJMr}^u*P|&^s zvO9p23pnsVeCQxnoYlRB>%+XbR`uws<_yRpF`4#lu*kR`wi1ob?QEOwo?L6DSk}IuqO^F3bNL z>2K46H1d;>kApPY2{eLt+FoVsIIDNwucs60jqLE+`=Iu(Ec9BT-g6B%i53m4NWUh{ zHfku;yO-f+K6K|Z0K4X<@x zJJW@FCzvcO_lPyckP2ecx|jK(;-J}B)SJABU^v5*TT!na(^lUOdIJs)`4;jm6LvT_ KWC+kfaQ+9-=0gYo diff --git a/build/libs/custom_ore_gen-2.1.6.jar b/build/libs/custom_ore_gen-2.1.6.jar deleted file mode 100644 index cc525f096050ab9550dbad64e310b76c0274dacb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190731 zcmb?j1yq%3*S&OicXxMpr*tDNpmd8M-61L64I&|3(jn5)(k&n*CG}sJ`DWB_WSs9G z*Lroi^uC^b&OZC>C$36zVBqKgXlQ5v06+qK{`>(0fB`5-sEIJhC`vM^t3d!jF6|Kk zU;rgKsN25`0R8>1D*f?>Px<6}e|{bSKnMQjk2ffYD9T7msH!n4NFFJ?@0XWjU>re^ zW1t;;KlDb0`2*YH+VUFc-ODSzKtJOFKZ*l<{(Lz~Dd%@DNB#EY*0!dOj83-JR`Dtd zwzJIe%}~8w#7$$~-RDyiBw!v>p*wG$_*BhOz`<%~qj6N4MyYsTUW`VvSp^{!F|iV! z_eu#)wCO>aMTPDt@2aaeT5;PE9HNC-?@QFUU!5$Q!Rbb%SM=J5g4-y~zRQkowJX;d zZ`*el!0)~2LQhh}7rR1+CgR+rF!w6v>@PT9D}=2Q@rhXLF6xLV&ikw`<*O@t_96P~ z=8HAwXloOzvpKh&xPmB?m~u*X&Prq$b#bte(gkm6Z=Kz!#b;R1;AGq*Pdxn{Uf92S z7nO~!LSq9alXcoh&`Sxa@OIR+GLdYj^s9bBy#K2{&We<^$0e7LPrjhQ`>GQAl1;N# z8~I>ECy9|VyiFC4Ixdt^KLF(y&A}!g*B0ai>t6MaH$QtRd+9#8djj!MLIOpU;;2uF zSGsHzqIsKgyiL<3R=QeXb|-+#e7&Xx$7&ew%M9s;SL4JC%;E9N394OfBs$xfJp52; zm={`mhn4za_=D^j3Wr+_RNyfssD7pcM0;5Mgl133k2`j+Hg@VmT`F^>o(HC$o4zzy zf1{lAitW6F>*(|Ap@|a%rt3J*8k!qQ0gzi(nTsVl)q?;4Nnqa={zqOy0eNZU=xFBT z_-m~E@$;B}e%{2{5l9*XTL&`(b2FR&?RBI-eVwtDt;rKdCnG1bUySreit_>~{yWki zBK`K&Cbl*vW;RX^z<5igP?2rS`_~oEkxTV zH2K?D?v0k?A4F?q>uTokuY?lO2{ISZfb}5t-hbZSH>-vz3vZrQ^R9bgWjCHhi3_uf?lBqh<>aUQ`0cWOi@V z0{<*(J7)(ob6YD@vwth!I!Zcm$>|xfG09MBncyS(aM|AC40j45DjpD}4vg;cz47z? zv-lm%Oo38vWA-m49vC}l+@KtUES<=g314brWw^W0_2FTUZ%J-(Z|Fk*EObW;BL~xe zw?}nSqqX8z0jL_;{48JCcx6*B9ZRTKP_5W2Dpms+mr|85b z#)AGJiAGv+3x6+(jK7rge?d=fWdvQ>m%8lFhD4FX+mQtR`?~jLlC_$0^&k6C?L5C|n|Tnwy+7N$Ib@Onh%e)JptOhja~kvBq@T)gbFbb~R>( z&UMdK-TckFJtxs#E2d}y%pD5?4L|*D z;%jz_FhZIv((RPyKBZyq2z$M*dW`^YvOFkU(qH)=dKbKSPK=ty;Z^=Rv5_J^>Z8`l zP2{{Xmgvo`kF$!F2>Iv|PY-+HI_XvzFG^A0wso$mQpup(1IPfkCll4IX_r@Ew~Nm8$fB?c;G#1Q>RV;}kyiviF|8*6{w!oNrS+q-|ZdW?vwfbC$07e5ufX>((A8X5xc(I_f1 z!O^Bq^BE$R#^U0^3_Z#s z>Nf-hPCeUm&$vFi3-WBxFsmKJ9yzw1HFXR6z1@j#)#Vi%b0F}Mgh}9?(tM4~^U;i# zo*cA=gy?m4TDYOa%b@6h;m%;ro%Lym_iw%?tZFSH32yGX=3J++$0O~kbi~A-%wpX_ zY#B}wzJ=(0FT|hE<-dUV-3m1#QslOb;Clg=ZD;tK0vRlk%@AlDn3bRmBwl6sUYV2A z1eQZvOQ{>wQ{zm7Wolz5@;#x*A(tLKp)Ux19|gPt6BDTV+PEW)YR~}B0``%bRHOSi?ikrXlVqNFD?dn42nof3{nm9I#1a?(}9MZ^#ouL&EYj*M51W1 zXO7p#q2M(;C6R(v!_k0J&B(4R;jYJ@ORAz@+9DpLl39`DKwM4q?@6HI33=UOn~5@X zbp+ySzZcuj7meRl>SPaI9!G!Z4o+NZ%Hct3niX9c}bUnh~w@ zqz$%%7#?!*!f=l`9jfuvtn+cV>7X>~mgH6=SIsl;rvn*GKBmnN!z;$o&?{mq9J}`$ zf;jz}38Gu2a6z8bo%p^aWz0KmQS}kNCK)Rt6<*tc&^zI%5c`UtJoc%OTKW)QVo_TX z!358ss`ZStxiU9u$zXEY<+;cLnop|7b{39fX!7sU(iB4*3G@f2O`6wDFIUSQahiA+N^>bls&%P4TPai}&u zbC#T`@BBHANr|~>#hVJa_;Q6MtwsLmtB*B{bWk~#i#xuub05xr<0;4;PkVwDWCQ8K zmDya#A=<&JVkhgeh{&e;%H|<}O#NhV*MMq^>$|rN*a>`oE-u3V5Zt$3_CGc@EgC4E z#K;n-0rMnvjOY#T%{n)Sr6b5zq;*6;rz<~Dsy$l2dVAJ$#i>Ax7g*7Cia{l!`F7fbg5 zU_HHWXN9j9wE*1wm3+}IY?lRvq*CYGlo=?uxwPq38$6Spb)1r^wy9``#0$G{yYyZc z0|xFj!yVX<6vKsap-h$%hC+Qx67+@-M$9Cgx9f6+&sN~BKlpuB0OzZ(8Jc0sE4(@a zy@j*#7!&XW2I`$pA2+Djj%c=E^ z*WM8SN@g5mByk0&?6dbqDIHsFyy60$935R$Z6vK@pdmUmXM||r4s&3>}+J?JD!66EJZ3#qBcrOZO;Gh12Zhj}1{{`dGEe!4- zU<^hQS8~cSC0+_%ID%{=AAcE#$I1Yg@GgKrtybA56W?Fu7e!WygPg8&OubW-H|K47st={Z@;U?odx+}hv3g~{U0Y1+6>K3guOK^`_XxUb_1c25nkRZjIyCCO^F7-cN+M-vdy zbDNs0G3YT27mAdY(U6tj^nH+!e5JywXXI30CI{=UnRUGPT;(RjkZR+^q8jKp_U;_V zp%~SgH89rldl~nOL+V@k{%$KGEmGlD!vlaCE~1CkFl1(${X&CPc?1P0;qxr>nI%4_ zM+1DHxlF9GLdjiNT-J7K3-;*nS!R38-~>nMk|85W3fbi&F6PPi7&Ys#Mp7lyGAWb1Chf$8F+xi9oKTjybssJ0CJ&6`MthTpdB(R*Z_0$K4%>Z|XaYKQ04* zeuVgYS6MolS^saVz@Hx#ef#R4Eds59oM>kTDygq4w03QUx?H9v3XMH(6*e152pmmw z9PL?$S~+!b7%vETHtH`lu&D| zRAr*aCnl7rL}|8ZCm_4BAmq&!u=dTHcg0dH`d-%PC!)oH-o%H2B>f4)iheG-0LAX(MzVEGM7qyEsGU+%Dfb zUY9NGL1!su*Z64o7bhU?TLGLM$7&jIm0tLPZm{FJJqd?PR!FNk8ti>Qe{2#-{*ljW zB@3!?v=_w}ehz#a2em!S3gNt79u=z#pAjw}B=7i9M_eekoWyx_h=bT#Jp0!N?TVzO zHtQ0{7w{{=L;Dc7Rrel;Wlsizm%JDJuTlSx71$4}OY6uHSYPJ53>fX`DA1vJ#6$Dc zi$$z+){IF6@6EG+P@dn}xk0??**fLxu7e0lb{lZJI5chO=C=A=xShhfdqj*}swqrO z?j#vjzSgIPKB^0`H@wq>4=s?3hMC6Yp6A0SChXvwfWxY>+J`&ph?AH7Zo^KWnF`9C ze{BdoER-HIujdslms$%%fKbeiTG#kMQ(;Sn5&ja6;B6MhS)+8)|CalIJF)L5@JAND z^-=$w0t^`KBc+_`h&O+g0yOAAw}Cp3rqy^A3nvo z>NJU!5;+n(X-@G7+YZQrNy+(s08jZo0ou$|=#QFKzD>YGScJbyKyWF}NGdP^()ZHf zZ&%{qC*V5^_E#C;84!z@xQ7IFZckZK{MjPLk zuPjiau3NlegLuuOt!X60JZ+Bx!!e##27b|#EGj(Y(ZhV-=R=5e&eoMp8YZ#DQt}QV z9xHQSDkiPCt|19){FE)6jKAY`XA^>Go{7Fd%!6=}1PUoTd0~oCwQzSO`;4f^ zfL|QO7OD;1y1(dy$;%{B<(K~1XQ}Atk?%M}+g^~@qZ>JMl@;%qrv`d;-|abFEF1b} z0#l)QZz}$F&*^(M{AiN?iV)hfS-Ib~L~7a%-zCxZtt$LgOHczgs)>b_maK?VpR#hO zZ=_-FDeVGPVUAA?aai}wXzNH!rj73aJPzHVDZ*BLxQgF0+{)5n`Q!)|_o`|EPU-9e<2;d25n1^?k(S=kI;a6l2Pz2RGv(6}$Zs z?(6~SgNdm0ergPL!Juv5daB_S0k3>5HPZ@efk*1~Sq==;m(ivLw6AYR#TEPt^w9pD z{ZAL9j>rb4L+Rdh{HaS|JQ^1Z!7s1tNkC%O<1O82+Hf{DvxO2el`~06MUk^+MqlX zy%)ZLM)JV{eAiOK;=*MfK0?I8eRy0o>BJeO5{nt&Fdl%EOrN62TXIGf-ks!kAZlz5 zk~Y$aKp3&{kg@V11quBF7wJ6-@mKFP-K>(`S7(a+RPc?p@ny@jwefTH`Y|pgDs^!l zAU&14A{_GwF!_47Hvla%r=A4Fe*c93`Jw-}*uNWTzxf*B1;1+%kNJsLf#n7vKwm?C z^lqHccxS;e%o?@DO(5vmQ27FiXqvDYm^DniEz#mQNb%>_R?paoGoT_2bF#XcK0etC zKkM8zTDE8xGucCTFHeaeBni$mf2vJR@`{m@dPqSud=gGiQvnQiTOmI#P%A$0ok>@U z{5v_L4+gos2VdCxpL{ySDL~0MxZ6d@et_>52gECMFHQe;FXWD<-%qf=0?b84krX=l z-+&3+EJ3YdFl^yZ#|k@UyPD?coNxv0JrlW;_mx^)M{_t*BIaiS zA_Iq&(xO`WR!Zq9{@7($b+3~lkszJFK@1CFagJ4_$S*K(nEchV+p^RA@~*-gTw9#+ zK*YlLBL3UWtltp-#f60594yeg-#OTcSKWqXs4Vhck5|>6M+8^64l&foxaFjiE#RE+ zi59Lw&x{2s9XQN?DHXBU%S=gOU4E*xjsPt{tjT&gY(>~NsNE%G#37F#?&U6#^S!%YTX+41-2jsITknl? zMvGGU#c*^6$NY%2)72LDQ}Eo*&c)(Q_pRF?_i<@5Zo+xh;Ti$%4AtOHZS|0f4cVzs zXL$a|G^whYL-zUQqtt1<)14v?Va#KjW-6!A`G_N*X->5O}CZijfkmbmWRCy1lLIFcNm+HQpFjkk?ruQ+(4>9QCHh9Sx zi*a6u<)h>wJj#g+;_eq)iw?YzLy9*L znN1Sm^9I~Xw8IObfFShiRbv2?wTDOnak|U*HEi^?S||I@@M(em8+xL5E;w_=7`;=sP!0|;q%t}7W{7Y zy|c71MrJi)&r3;-o$K2@$3Bo*6rkpDcZPDuWrQ`z=ITMoUP^?@5j==(%6tC8vZbBn zw;kS$gC)xpApZNE;jb;1zRQ8Ft+VZg4hmtH7My<0k zrD|XE#pyK<;^4?&s1-Y(EK3Jn8K;z(yG^eWC%F5ic*kUMHv92TW)>3Ba8YdwW^7fk zvE|%NW|Ov9a4LCFLNLasX%0kdu3MMe&zN`d2#Cew-g^Gpy60OgCKhInPIkAKrtf6* z7SP?EsIM2aBj(398POz`lio77d!iSoY1Che3O_aOrRJnTXj?kO83$rLbP5e+e;!Tp z3Ywiid-;Qyl0q{cbJYRFdDR4wx?FOYVa;cOLOMC8$>&~3e|rFXHxR#tWMO7yZRYd`oV&{aK9_Bq_!dLw;V36HoZ>D~7#1*B&vwC2 z*x&E)Jh-ioaTRZj9&(&P%_Beld1@t2aUI5y{R**>26x2ak#2)c$Eqa@jV{fAy*bZe z)FyH-jC6iPCo17}-u4sp*+7@y|%ZDbkQ))nO0`c zwOynKNg3W~4je<2u)g_}l^1a{T;#V_s1d^idn1-^U;tL)7LqE9`L@Sw4ei600OILg zO`c!Fm>U5>+@9|I+=Kk{hHt#!=bnE={oC7(94!oPzr4g~XJZb+1JZpRqNFH=0E-I?d;x-tw73fJSLE9V z8WQ+3(a{YsV;}$-aS=7QhvPAKRg%DPT2awl29uaOgTxR)5y$$3b#`Om&=0RblU?dG z2}d&WzMd^sJmy+r*qNXwqgH$oEs(ySpU8xfVlkU~xQ4-(cyUj6TnQP(2>Y$7&9`(nBkV!xuVj|r z{ow2g8|x+(Cp8U|P51r?KXS#6f~ZW{Dh5PA2~=yKcag0AwT-#b1jW`rh{Vl}k66AP4}!1AP9Z)Q|UCe||dflj7Wd zQSPolCm=AtRG{YH3Zx!8S?ntU?|+)-L0UnKX*E@D)D?&Tm;Dg>;aQC18ELctR=>?P zd2AB7mm5FfJ5yHN7d@nA zFTy`Kn>6xM#wZprM9Ki~e?TG&X1v&H%j{3pYV^BE5uYF0IO_K%%tWFDkkCv#h?&i5F~Bd?v~RhwZ59pK8ZXXq`@8j<1xPG;O7E>^_$a#g-V;y9wwr zS0(l?R-?j!A-;f&QKQH7g8zKlh~Zr=v!4NtIZtfmjqlAt2@}}zX>xl!5h7I)1;-xM z$;eM0)u_+)hD^J>^*Uq7oXw6IW!{Ra&$}aXZ|`(g5=Ja^BuJ=0_fd!=$UN{~?Dy>A z_f^rq05a?3UUvO_g8aa)+qO4&e&lv9M>-{IH)hMPbK< z?;J76Z^wGPSd7r2?&SVejDTdCrJMp>*@Z7cPwiKyH5tk*I_fE>ff2VwVVAr5d*4e6#Kl zRFn^BC|XO|FlEAC**?Aa6!Hx4#;N(?ic6!VDSH@zD<-xPRP|lHi1Oyq%W!B0rSu_l z4?&`VwCppQ9T~&3_x#Eu&%DtjH>=LQge!Vhva|pUY)hNR?lYp)B10t+igJn7>4%^52LQq1yMZ-4OoEyeqN?KxF%&E1fT~8%ilL<|kjg z8NWj4?9Fl4$oH44Im>H8;c_o!So^T}GKLO`nig!I@)HW3OgYq}cRBIKJJid6+;in2 zd{H^O8$4n`KK@u8s5uqUfLDe?YYw9p?ARY3S7U3@V{Xk_ab6nG#%~7AIe8Oq zD+}Vi!Y#jfdLb`Oj=J2y=m~84!*hNqQXgYxY-xT%b5dSfbl6Vg3d87*CE|fcvCn5~ zyf^@@k){$Kf<7I)r;QIl@4BQ&a%7fnAJYzP#EKRZtoR_0k8QD6gBYhNNJmr_H%=xYa$dd7Q zRsf%2G0z59z!MF=T0s8fHpRu&!@v#_89VtRwRf8ijdN2V8s`+Gf{)(dpfQuhpm>{7 zXq8QVfZ#P0-wd!7E1$EOcA<>T8ckG&0ajkJy;~R&8-Y3HA%QOoSHlRV^1!Jl>Ndin zejocsGx_6K%)rw6cB=}=tlQ)AKZHsjB>R{6MgAMV^kZ01ftSv~j{);hUc=FZ zDr3y&qQG{JC4~^+c);<-n3GI}Ix?^ENXCV}e{{mxx`WwNe(XckftNEcA4BNtrMd@6M%6Z;(TWf zd>TM{?-O*>x8Bf4pNqy+noIGsRr7->6hU91y?WwxlNp=}B2!S7$cgdFwhK3!AyF;O zizveP759M;&n0@4DIfAF7bp%FtX4mcnp`L{VidnPs6ERpya!aV3NiWkOAjoRw_q{Q&p8EIJRP=wY>Frlv|ETC7D9hC^*iX>- z-$#$CzUqt;@_<3MvrfJR7-X1XGO{2hyL$q5ShX%`#{Y))Wqq`73OjzYjmI~pGMcrH1rN>ri#gS_7GF$M}d?ms) zI%!bH?VoW;-8|17GkR=|n5G!RD{9?TpM)s?MmySYwx(QPadESdjJD(xs1Nvl)OnU#nrM}rOEzU4vF=JQmk zQk$%?h%xXJbEZid`q=G2xRR)Ewrn+tc2YBVC_2KECjShi?}Yg6r&^_ z*=`P;6CCBEq49~CTl=(QHy_t!;>qA751Zpg!>$Wmg1z565ul#~)oNlRr&RhnkZ;9_SFN9# zD&05^D+mj7#)WKdHZrAv+Sj13VDnI4Ce*QP60S5l4S@cnqe2h&B{f%bi$><=rCumC z?5l)fFMI;a(aG7A8EH{r^I$axwNcSN%j9=}oudOSPx~B_B-=b%SQ_EDv!^_iIu8<{ z*(Wv%sI)syPglg`IQWu|W_8a!y_lY;tvoW+moFg6+;k!rxtSXqGYs>5!bumSoDKzM zPhYU)_jHd!wru<{Nxid6eyPInOJ74y6o+?9N?)-X`h8T+*W8|Zz=ycn&73cvX;D6X zoh^8|p?>Tck?NyAh7h!N5#e_7s-pJF^hx1iIf6bpm~^>#w=B-d1?xVYeDjKVn;Ysj z$4undh}aDR^K1I_fk^$pR4-aoc>PJTR=p9X-WtDMo8<}w@e*I$lVKb#GS45ofcIxP~FM! zke2P)eiog?t9T<>a3k!HyV9e~Mq@>Oh6iLMqzav_?WD_0+@6f*9?iHN$5->uT!#cs zKh7%AW0tDXYICMI)1kxWH2hk-B)zMgrk(Y>?#4 zQSE@km8ZuF*EXXY93bM(8bNi5*qPpobeR64t})0vD7#9t)Cb2zaOSfY(tzDf0Nxj+SxO9wjSZR5?_FJfH8& zrs*eK!2SXxV7fO*=&PY1Xaeto&HC<<<;W?aEBOoCPFDc0AZJ0Tv!KcNNh<4lK;QOp z>RkF&i(=Yq5qX-=lB8cP@Z9NEH=PiQt)2563cSfdk#9yUQd>If5`!>o17h*dLvH|| zvsfgUTO#y-B#cKe3}Xk-0<_#~1Acks`PYUn0@UGGvqh@$Ajxl`ib%jBOFipsMj z3f#6ZOwQlwr0a4F!01vqwT+zut zgeIEKK?%`;Or`ngpe4HFUAMlel=IZFuCeE1PZZS?T9@S73Qcam!{N3^_|PN-mQ@ed z7omx_J#&1I22kY}P%hBjjBqS!XM*hTf*GWaY49{GglRD$>^fQNpQ)2*>hL`t{X`K zB7)r8V)C(bsvGn~gK1gp3Q|z0(cAV(!hUrs%0+P+t`~1JBO@1~5#xu0#WX4jW5C?U zu}M2wFZkM+E)jcBs60o@l5_e9+i6%2dH#%^FD0apj0s9#Co~utdhxx~QIbbM%jkr( zc&w#`|L{`_!=9BJXR0zaHkuG)cnB**Qtzo8)(2^aiiWqkJeQV3M)U8Z2rA`RB*UBY5}6J8rPXt%npk+3S_j89=5cDQRut3dS#;Z~PK zuX**@ugYIo(U=GDbmCBP7@EDsua+8Uc^u8l<^v`rL0i&rpr}d&3)Wi<8Hf!f2T{Ca zT>14rAI(>XYc-nPF57+tK6&I9M|fW7ey0kqd`Uqt4k`th0t&8C(Vo z4PH3F3?dcSKKq(_lzP;(0e$RFaHCsdy>flcFr)9d)>x-Byz7!-6d+IO=WH_AZwo7# z1LDPm8OANh*m}fiq}_<$;ql%L^rbU9ZfPY~GAE^wkm2RZif_HtB6a07u@&D<6X*#w z`e^UQ3b@*)nlfWQbv*i@Mrrq^+SV5oMqii4$RkIn6?^a4L+}Ph67<8Y1+R!c1=JTW znCzU*+MM|k!<$rV8At^m~%MZA4hb-p}e5_FA`XU>C868SVMd zys9>?8b_;7ay|-oq@GP!45Yn#anv4KWuSBm^!b+n8f-)}=t06erU`LOLb`&e>t6)2T+LeQlAOQavVTJA7%? z6svuA7f(=~{!P9_w0t19YDMD4bL~jtJe!>9IgvcvOfQ*1tJ#q*@`j@Wvk9X0B^879 zHq2rUzc1LNgbACnr-iP5zLnx?i(pl$4}B`=FYJdb8r)ewNnJ?iiFd{b9==`0Fk?lv zjP|w^BrrGfL`vj|p#A*(-0mPRXlp^=gJ7?tO0Yk+Bk-*mAG9f{b0-I;Z)C~kO>Pfw zhM(yx@1t>OP6`zVi&~+FYk-fCx+z-uCr}qtfX!qa|k)N3ohA0 zkKQvG-E+*L*i~SSo?x(P&nbLuxlGx=U#CTkAeQ=~$BmNh<)SHbtMZ$WDEO_@n8F15 ze&2D6ecf0atf$G#b(0ax>2az$81%wqP*C*R<-Yrru*9n^do zT&xHXcoJpF4%1cVZ1tA?ZFS3>Ct)gN>T;)%$CL&D@7Rn0BsT3Ma4U1WBWJ~Q!&5AAo zp(al6O#t`xEle;s?*iA+^+HqaybjZ={^pHT&y#8My@mOUID8~7DQ!!2OKf<`?H$t% zh~|-YDHZ&$LkhC)2+fOnOj3AS*4s@ah2F5$F4ci;i0cDq;wXOaRII4H7~v^hAD*?E zZ`J3D#Pi4qKIdnWxEm=zBr;eYO*8}+A`C$c)t0#!R1THvA)&-N)Q$S!h87GXst!`k0(XlkxK^v3qA5s z7?`z6z3=(=EQM zf#^t7l))e7>l+Aqi7rAm#zD_ung_HSB#6qyFMJh)L&MjTDHERrW2cBNv_F0YsUzMV z#yq+2cq}|y$xS@dJKT#r?A;)jWWNco%ETAcH?P#EM;6{=l44wOaBvWK04|0}g&sy0 z+ouJ1(Y3;Y3=x=uJ&;3gm|dStN{A-EBg_~9ww2HqDhbz*PD}UF{B;&f-!#rBKT1r8 zpbr;^?=UXuwH_e>Uj!fw3V;gPYO-&-GkLwkjQOGq!K9+VUCNP49hwG>Z#=vU2UMxR z@}vB2VwOB1#b^pff0hp-GNuPHwR}ZZ7mi{d3PQJ|B|UF%*C^FjI|)z!;kH9=^hfN{ zwUO{<_K8j9)RY4lxok8y#)UUK%&Khc)oa2WQJDHPPRImEC|LyBuauydCkAn+GVn}A zgZL@^4jhkRbSc@*jVLcUoi~_8dVAXkF}c}xkenY)3Bj{ygNeul%kH4l2jtOM_>DL@ z&bjH!!2wsQ6!7`;qB&D%Fbhi+%4)qZn8LQa2t)a;=ti(nSehNuT`bbd5b&H_7BTPa zeQ7^EE7nr1DvBD711Q;{`?5fobY>zmi}Qm8W#NGU0;O}6B7`AF{6Tz?vGQKYxVWS3 zSbQXc8+=g#Qd_!ywzAiM_s0DigSk`l4uwsH%-8WKKVOKeyg1UTe^O=NBNSSQuecEl;_ zEDaWJ&On(QLs6JOc0{B^GIXd26~JnyrMvNW%Sxgm(frZG z0RyX{%b@YSnYdu$sPoXdBjFa{xEAtVqukL^PSLG;_C;l+B+6r}VzOZVwhGj7k>Qx$ zWUBJirjUV>U2M#h#OaY)%UM>U`AWg!q<)gbD6L!RzVLn^#GvKOz4QCJ9wF-QSE696 z=k`j{4W8TA+A-jX%*Cv*6uNC^1vIz+70f7CoVR@&c$N0Okc1_DTfF z+klV9x(6B181~-nTzlxcolOTX2Bw z%G=Dljs1n#&4(54D2^8Q8H3}MEfC|`cc1ZXXWP6HpCcX4e^iTW5zKej@jkb_OpH8G zlC}W%wy+YL+v4^(&9&O-y@;ebowk;#p7?}5l*HP>^GvY}{-Ni2(@rW^V)Nq%jqT^x zo9fU269)~Gfyk(S-*^5Sa@?9Rmt3W;*&Un_-mdl2xbXz_Y#mydpC8$0XeilwcGEww zoW_A&VI&9dd|o+@JxIph=9PEJ!4+oJ1a=1ljH^*NhhpWz-G;)vLHo1}TH(}XFkmLyJK&B*b<+vb>CUea zp&Q`c6E}VsDbnSGPJl2zE-eCML{zx=`N!~GB_1tGWV(QlC$L}YycAk7Ug(6aF-KF+ zt|u3?924V=kh0e#bqU5C(}OVcUxWZ*D|4e&E6(3oIaZHa z67lyJ;yY+!w-Viuj9hCIj?ZyX^+rfLxvLpcY1>n(l(m$cO}W}Q47obmK-;n$K6h(Q zrXIx`i8=20QCQFSAN2ZExlRTudd7Qt!oxVEqx^8hQJ$-kJ zr&b+TVCZ<)bKQN_2Ilz=ll4AX-OSmsBRn^#Rv!-PjmKa{lF-M)kH|Ok z@ngRAV^sCi%dJ5#U?)kdb&7`_$3CKOl$j>a;|r;2cn8^e5V*foFrFrSNjRV^s+YY- zpM|z8xGF=C_x5^ETC8(#bXaJK*()Z9R%O1Ko1&=f(O%iy#_@BchEvBEM(NG&wT(_a z9H#H*lsv(1Hs8!v?c+yut^^~r^|rl6;wUSJPg~CnqMtthWG^H-)1d4z=aFD~ z);$QKDagb_ULIimrd@)??QSk-f>GYPvx9b|@(_xs|R<)D4N_Q_dzWlcJJUmscX={i0}oXsxQ5A2Of=Y=|#2 zT1PYdFSnkSgug|bnfDm5Q&G~nV2l7cYN-xcT9s%lvebsUD8&dE6V8&0Q3M@I6{28b zb*LCh`0A9~dI3HMq3o3s|9&={dEwfD3`o4wz0Gp zY6fn#QhUTHicKJB#lC%j`YrOJEg(_o6$)bYz?D|YhX~2HE$R|S zctn~*$ya(r0rUC1gjN;qd9C(iM)PvE{ZOEkB^oD%9lAB`Z4s+}0_#Ex9tCYJ2_WXE zO8L~qtdRaZI$z)tU%Tg`!IuZ2r+DUb6w*X3yyhKy)3sRyuQ}#=F4Lnw)Y$&Pd-O<%B@S=RDUBg2EWD`&1RK_jt&>MR^B4o3H#aY@vHGLu=iZ)l zV$}&fEOTZPpd(mwtob;7z80nPkw?EiP^4l?gY)skS6v0Dk_W7{8~Hi|>1dP-1FXT7 zVXhVvUNHu>Uo0SQa9iJg^|X5_eW7jl^6MA{Y@2K?cw3Wy6E4ke&jS8nRVBO2#i_1m zqoq+AIQ9)z?f&7yr5t!t1chUgcAd@mm}RELwbNEP8}(q0a!KE zw5`j8?E2hBBbl5j?Ppq5q{rQ_B>}zeju-il?LtV9aO?|4$d-2|awft(PXkB~fcdorafR5G5zJH`|Usb)~`YH#jU z*Le}W!DNj{A4XljJ%a$O!_MbXXD%x;Oq!CgR^|l})a_d3U znky1GQNF(-J1U~YrC^O~L&#Z-2sdIjoz0!YRGf-9j2#=ZH5PFSezV~0{p!pl$kqXl zZxtrQ#XH;KtD=$xoekt%#{f$>V-saI9FyB-J6wF94Cl@qGG49>Jnog5OI>E=3P??3 zjp6I(i?M4Bm??&HTdbm3<)}uJk7MvM7^~_F8##7*)*0xw23;luZ%+5TZiJq3HOj} zvGJF%-JP1N;_@lbxF}z2xu{_*WZviitO$>-Z0>N}x1 z>@Z_eLRAS;AN*+BY|2Di(W#9WD(`o?RlLL60=B(&-Rz%$`+^JvTiUe(6!j5%ALu<&M+_TzV`J0IC}>m*}83Qvs|^yuG(dLmu(xn zY}>YNYnN@?wr$(CyUus+?e25_KKFjn8L=`lGje6F$T@P%xz>2b`||qi<&ax2r=mn^ zO-2;f?Y3y&nIgj)LsUot3IN>$@)CHz)A(%HLV(D>8oKfV@e+Cs^s(p%coc2WHik@Q z+#Fpa==QwB{kXZ})1^N>ub*b$)s9o?YI-?{!f$E0nTTlj`xDHE>WeRv55=ar7t<#y zBdvM1MHLWGa+7H@syIjV@pHG3_@RI&txwy@`26Y2=OmnF9GQ?l)&zPNkYezUD9a!` zIf(*vsF`H{bVLry&y8USk!*SuZqn=v8L*I4#-3RPP5~;E-Q#v7hek)=y$1@ndVAIxvciZ~A>bTINdqixmdh~bj9-uG49xoNK z(#i}^Ej{P1*~q%QYdT}6Zr?so#WEIsd2x!zeP@oVmTR8E%7gIJVC%+CZKGDR0R-Cu zV7m+0F5B5g1IC6In$u~=r(WKa?fb2^KfzU5&3~GH1)n7Zlc3M^W{31W1q1s4SOHvn zXDz$*?aVd3bo-USR7Av4#t-WL5I}RIP?EAt5o4v-ktCATDD$QSN@aDNfkiy6x{d!d z(Z1|jN1=ScgG*1KO?!b}a5xI<99nZzs)`>;Asrp6s?>7T^)`@iQ4_xeu79nJ*tNR3 zOSIjaG#WS@zZO7Sd>X4%t+@+0a27$0qV0zD)nfkgZ^96%pgx!m?Mt(2fB9%sZQ=9V zb?icUYwEgp8)ymVb#I`+e%mPK=sL3+EI9~8UrxQdaS#gJbg8ZHR59jQ2DUtA?o)h9 ze%DGAE_v<_jr|R6^QXtQOA9Oh^4HuEg>ISmZT?)3Q1ogdyzh;nGI3tSYDd z^|kcLO>5g~rCCF&M1~HnDR1-Xtv%ybJ3-ZLt+i5#skq{3-Htq|lBUdZ66UICUE?VJ zT9qIsb%U>`?@u)`oVw41yOf66Nimt#!NcvxOYk3&iWvu_7dCw)6p?*a?p7`}9$01sI8C=LE%1o!kbS}pEUkC`5g2E6^X9d+!ALqY29 zyCSs<&hsp%(FM5eT}wO5)hdaKY~zFz4EuLy;AVWE2rL>l^oQnaKg`EVGb`0>3~v02 zR3Bsa{Z<4@Gis8Nu7Mq(HjJb{g~UByLIgFY-j$o|P-1*FQ3AnT%pYAa1-aVwpU8q| zs?y^VsS%Dj$`aq@`VbVilt|hn^KvzeMYnbs`^JMa?S7HoId^!j7qF*3WV9nYe?jTLGQ(9ux>pmp{9W6>E504QffHFfCw+6)zX+S2-m6o9~Pf;zdDk(A=qY-EI zuTZjGwF(b$yRINr1hmxM^PgV2S*~@Je87gZq|$iRWB&STSURf9WC_H}RP|%Db(Gj&XeKWU zLyPonQfEWLlzPjUi^cp&<-x6joj3!W73n3!;6U>NYAx+|v8RSy|L?w67PMMO$YJ(L zcj<(AZm#K+E(u8Er56Qe9q?_7>2*7kl3Oi~vv+|^s6F7fAY8)@TCrlz?=m7*zFgG> zxlU`jhO|wJb@W{GG4k>O(%CACyQ~oLm0e|?k$zzAN6@2Ngtd-4*5PJpQb$@%gH@u= zL0FuKxz&^oQHALPg_(_x7C;#>Q(STZ(jr!ARE?#Rf?azDg5tTZ^;JhZ_w}v+XT71& zgn0{doZ95kiAx5tcpo8QQ)U-b-V10Y)!Vyh)BPxA%8H#>|8{R2nt(kL*U>KmD~zx1 zC5|n@30t@4q+PeQeS^@F`a+pjzl`{}J(aBYH<^hy>y5LAb@GBsfH`^Lq$L)5&iVxZ`@kcOP?5Ry0&c|D9IQ@^ut+<|{ z?pNune^2d=t(|G#YY^;rONcpsG_5**5DedG1TCNfMBY(3OKd8UuQXBJ9*2S6t~M!3 zXL=s&iPS!kua+uIRCd+j*Chmo@GoTJ1aWO}8dsNJ-Kn>*&uwRm7wW8}2Ays!2%)`J zxJ4Z+2K^9@eXj`h0`i7U#pS%Vw$>_>yFa^EYBw2Q_7c^$<~ynFR43FU9*a!LcOY-)@~oSMj^Ms zbS#jX%-gE$ijLDk(X?G4zFd}Tjl@Pe>##zk zOo!&*(E9UBncSW78k@<4G?c4hdp+^AT;UN-Bkd+&i5~WB)oVLa&uxnto@eQ8M`L+7 zg$4?~>#fy|dwur(G|oC!snTCX??>{Or8GMRyZwS$ZYcH^YlY$&H%YCc{hw$Jfh#Ysoj5Xk;wjWOl`NA%ro6((D+caQKB-_5TN!VN z4a>7hC>;Ydd_pM=yBg0-p&va}+@#v;9o|zS&8da@H_sgRAN* z;4f^MkVdz+2xZzG#(S_sCz5!!lJC`9L5RTgFOxl}k~jF`RRL>wOExRHmcc`0 zhO*%>H5KX`rM+g4oQj_EN1rbTXn8T~fMfx#6(=TH4O;{yC$GuiNuM20*PN1NJjlb7 z601h*?bVJK=GbeDb+1btn>@grVfJN@cJ|Q*_Z`1Q%!}urt)Y}$eDt*_v8~6-xCHA( zP%iwGFR4+RoFF;BwgGu8htfBM?A#;SnO$DYA4Y~j*h~M&!l(?GUe3~Jb1u3U0<_JO z+CEIf9$HS^VH*2(CQLn56_Hq{6DGY=ew62WO}&~&G-L>YN$6o*WkFuVqQh2eEnjKB zv368Rm%^0e^0cj^X|^V`HzaP9iW1|iB;lmhgMzyqQMUdX_b983iI^O|q;h)@e{%~3 zJ-)Na8i6#kqFKJ)mba5`Gdo_faR=>)UIFVs1NvoweaAlC{KmqdRgn?vewQmgm(v?X z`hpF-`iKb$HsYT4kA(tzC)UnQ%=>A_cmWKyav82r7Q2X566+-Z%>`n6W;Bd=haaiI zp9BgkD(5)W2q|v*xMsixs5A;|Rfp?mayupGb{$3Me8rSh)q(Kys3!((uIhJAr4L5( zvUOYC!ZXP>Z31nYh8CsI%Z682%k~j4^*=|c-<9?WVJ=h#C_C>ou0oX4JP+BjTeQ0F zOyG_rEt1-r3m@oOJu((~Gh<27WEBb1+ajoN9m2yJ=arXLjtdMpSZXOd@?v=ba=FG+ z{4k3TxLBxA3Lxb~55DDbOH1zgA;cx?{+q$6LF|e!HT+7aZRRwMQGD%*MOIhmxugc* zr@qMWyQ3IjVC|Q7b1^G|fs>h69D?~69hr@^8L()OgFd%6_6Zwmxi& zGsptAPu!DtaMAHSf5@q44}rimW@)49v8QI;axSOpNNXE$4%hj`!SZMq##y`y&o(re9fj_yBEj8X-|o!sJxTX&Uj&O*akTv!c&`20&QL(zyP z{r5Nii2khu`=8m{zg@NdzwyRz>xutv$@2yD`df&C=syt!eKH!FFB#~|larUN>1iMQ z$(W?1N8F$OAbgN~7`*4{=~%QuBhJY-eFNQK-N=2CUoLIOUoF_5AeKRG07heX;Xl8k z%k4k9^m7KjP9hP%jG4v!ECW^=tph*4J|VrD&vd~2VSIEA#2nIewfuHQ8VKOgy5GTS ze;NQ&Vez7Kc}({~S^%_44OhC@lHYyJJXn2^DnaQcg6q1V>w(re_T&Fa5`wjKyyM4!o!tgP5;Q?PYzE-3X^g{? zJ$Ci)gu-Jwj9kz+o#6XF5(`?b zr;kBfpE$5{^VMr>5gVq9nep2L8>0g#Q4k;hZtLp+Y`n5=+R{d`Abb(yq(@;w4}(Mi z*o~1ansY<3zt|J7U5(L=716o2WW*R?YW`KYq|7!+DM~U(x$l}WP@9E|FbzZ(iQ>fe z`E>Mnoy|-OwdaCTODi0C{h=98K0S66}#`iYZcKh$)DKa}!`|F#MBKsdnslScT{%d&tS5RKK zLUAUTFFmEFON0rM3kcFNJVo@t)3Jr8+e0v2w$MeS&@oKnClH*AA`69x%aWUwkzqR| z1&9Yu%H<%5dptplwLRXQe|SxKb!|PlYkNJdKRIfisV%iGzE(9<3WV*6mz~7f6C*(M zJ7AjI8$U;)aPH<_)6lTL0>AU$rdK2pQdm;A;z4&e>Cs+S=Y&kLEO)t2U=UKT&8 zc(gTjI+bBPs3^^iqeYh4m}~H_F>A=!Ngef^3d);fpFDRbNmR8Wu~#k{Ct_kT*0(S` zy^M6Xc;F38R%IkcyB-TUJd6v>TB}-Ty$O4TmzC9Ln^qfJ&fY=;OXo{{C`Il1I0cOk zAEedE;XJ>9=5vC`6gGb2dme^|<-ayIKpe^O?SaQV0|%v587%cII#sNJZmlV8tK`y| zqVos(xj3USOzc)biH;48F|8<-B$dn<#u&gB!0Um*Odl|^`%@UB4Du&t@0OpLABB== zFC4SdL$z~%YE28g5?WO_xWdjQqOeA5S595afuMD>K{>|okv;T}fRGRfj{w-r2^c(h z7-(n+fKXn79UVw4ny`T)pAcKY6Ho^BB<^)CNE88yVt*`1;BNrd zO(9tX?1cgRW%OIC`~N1iendGO!5j%o6lql2UjD|A}oeY!1~}zH^>sduj1{o z?=!rAcvo=qjWr)8{ru4hgWU`b!CaetN1uzZQ^Zc#iyQQ(*f)oWmsl4u$#0gZ9v^i> zg^<6`ASFs!og66V7AODL6MVaWFaNs^sR}^X30|mxz_{RWx0Xg!_I_|~APPjl?%)rK zGTYJ^+>+jADgnR(d|o0TWG;YiJ_B#|Nr3shZBe|~AVOd;WQ@@KB8jJ99qQVxWz(oS zU{@ZPup>Gk6-F;~Wzj3J*P50l7MCy_YGG=*-(vTIS>T8>57+uN;F0{fzwJUOnY8!{ zh#2vIOI&?Ra897kT-^HP7eB`toTUw-Gh)~fhyx<#ny^F^Q;kjpl0l6lBNG*gNuy6s zPDX?P*MlS;o0=gd8WD+5C_w;~L-oTL`@q9VIP|ank*!f;@AhMx6KfSDh?SftJ^>J< zX)Xq*?B-PgY4_RIh9l>26eZTF%$5^Za>|`04jT&QuNL&lmm#4BV+;Tq@$z43ri#*F zruq@x1NjFT>KepAXds|Y2%oetQaCIpnUFT5wI`)&2wAT7FokdJURlTUUA_~#VypFL zvBiraSfbWa_c`6cZ1M9wKcHop8JZb@2#28A5j)AVw#UlO7)nTUYHSI__)4`z(s z8w`;xs3%)C*BH={PZc{4U^qO?Jd{94uzwm|R_qzdU()R)oF8Zo1fKxKX{9WP82T|l`vRLP!Sy)IT50$C~`fSzMc;mo}SDyj+WgqOQD7^Yb0C` zCogk2+#98IG=I*_{k@|Nz@2|;oI8@paG;98W5l6Z}5QocL==X9}+_#$U?-Op#g)Ev2eeB9D7*z>Yz%=1BZYy zdZzmFz}^$S?A_xdVjqe4)rA5^3X{Zt@L`9+GA_tZ`$7Ql1CG_R7+Xb>(ZYDPGzz+Y zU3aoX0>jlc+5Gn6ki&XQ&W0b%Lp0=&jJ{%jPboDc)5{GZAefwN5#m{DE_nG}jIOJ> z&B?Zw&`Fr#Y^}(tWryF2Zv?%2{+a#WJyD-)S#ZVM`q5C9Sxk+G@BrY|{ez~^i(0V; zQu(GCH>-*(=~GcluV>AW$E9ZFo1ZbnpVgsB$~qmGv|z^N7_bJ^^x-EsIgY*8=?dI< zaQ_ECv*R=Fe1$wC-i@a);{`E35;&!?A7+1fg`^*_$;3nK?2@+jNMDb2#a?jWw$i$q zO|1MjRuO$sFx8QA>mlK4sd3QC(j+;PS>MBiasnP|Po*{1Rr+%+%KD)}rBc63WYn&L z-F#kD!q&4QJ>;bpsE%yeaX@!z;GHei``R@Bxa;XeHJW zuI;k68x~sQAdAdfnHMJ$@A++K+OFPXZy8e#@P{ZJPMyJzN)K_L7sK~IVK)FOCdfXm z^AWDoY9H74_l=!9i^|b#6ElelD5-Phrq=SX^R88)<`#drj|eZb?X2B@`;jt(fo|VV zl@_8_SxQnxder&3v#m0a_N7J*pZMe4GM6Pa7EVAK(Ad*L;;LRaTO%LgxO-Xyqz`Gh zddMO8PwlnU`s1V0{4B>EVN83Q2B@iLv0nHWNBk<`|*Ayu}7X0j(XYEa_ zsNUjIbJWmoQ+J%IHNJ26vZ*^k5lO%j&Uqcvr?g2ccQMW%)7_BKUP2?G9LEE+(ISi` z69ldWLO-v({|3dkAAUFZyMsK1*-Cl3ZTv%ONL}_S;@q!>uEiX|`b8T_>eFvyR z#`RQ}SbDbi^VP7xKJM)|Mnmr%7b30)4n7$|BinebaAk+X?Q?;3(fwtVW4FXt`vAs% zuiK4iDYLkuX+~6OHh)z-&eWBx*+8-G96KH#dDl^FwJD%5f!CCofScidnLSx1L9q&j zJs2a?HaYMl??+=tIj=05MC1X881(6e5r-`!z(cV26+V9_k^IK?@S7&IaH>f&czyG6 zoZGj{s$$A<@^+z-fyGC^APvW$Y(uKK(|dXJ#Ff>{o>gG3j}95sCV$lC7t}4y7+R;u^ zv=vHfv=Mj^&7UKyi>qjsKFw7>p!*^l5rmM`ZUSBy9}eMAQcl{%6}s%Zao8;-uU0lr zqR-s)-kV*4K&LRaabtY>asOTwphL3q);N@}_4gy84#i3|C#s_gBNo(jZ(go=^{cY{ zi7>@*A>EEEOK;f3g4GvhIRaLgHj#EzC&jbo4OKkPFqBs{J8P1DO(Ff;Fd$G~M2{Zz z#iwhh1{uWA<@gY?V7}WJwNZ@GFx!%!qP-Xr4 zGWr45W`4QEG`8E0RAE>8a-|`eNkqS#I47gxwL6TpVP#X__q?Qj^$>z& z01hEne?4Vhx;vu;;d{7bp{3ry4#YO^zFtc*Vg<0pmUKB@RI-sU&g#gKPpu9d2-Erg z0#>>7n!fu6`{T^L!+rM<)~w8M9w+8ws6HOxao|Rm}z4LJPJ%clE z6k_k^wp~V37Vi8X&4UuKbG;)!&ETgQsZY{xJ`1{%F{21xG@^ zOQDsv{$&^W9vDZ+YyK^YMJSW!MDr^bBmFdbCI|=3@;f$)Ec)DjG2J}!0`20%nCb#0|bcu zkx&8F$nWiND%b`ueh{K3I38pPfZUIvc@_^We5j~~cX*If4(2`>+Js#YQW|b{X6OVF z&=YI>=qi{n9-lxJ4TPK#BbH{rh6F&5PXi-sLbFfjr7rx0N(}V{Ye&nWxphO{9|T7e(AE*d#(R9z^shU}4U)C0 zkzNFXH11kvb5zzt=0jP99{asvw{CMA>cusHGxT|&#d*FRjerv;HFD#xSF9H{_a7y; z4c21yZ{(W-kpD~H9vxykv_`TmJa~J59=)rSGiLG1yH`v2v@12t z)olju<2QZMFZv%HlBZ^mrLy&~u!Xmj%5UHL>*KY4a!q!OArpu(eoN-B^fJV$%e z4e4*W*!(E;?lKAOPmNU8`^fFg7?u&F5^mmxg}@d6+WV!Df8c$H3h4{q^m&6wLbYEc z@u!*=Y$ImBsLVJU{CUrT?7JwViW@ZrhR544`~EKW>BY!9l?BnOG2P$wQzV803A_GF zqwD&T*G2%W<{62?i!gf)lfXm+iC>@Y9UrI5AZ#UoIeH$}j>rb6+`mt$=HWh>p(Fdi zi;<%-sWK`BE#*oq|L1St>O_ksJO&yGQhi+_EoNess4Ae(MPg)sSd7=Y7X0cRbo_dN zkZxU2kX}a*u&f_KllDQZ7M0zTj5tmN_K}zwW_|nok~>^jG%-Ctz*g|D<)AYw{dqW7 zioDT$hP+_9b?{5J3vb|_85-ahbyq$=CDDm`F-4uwamS9ndsH5>yVX9g=|kXjzxzXy zzJ_{@fXIv*D1m@EG4F>?2UI{BW7z=YugcZm?6X=as>s#5?2^%PC z^rhQ?YBm&f)E)793EHJGMU4C-_MX9U`UxWLK7M2I6a4Uf2y_{4IgR#$LVLCyy7!NP zytn4>-5)>A3?IjmDyE!ur!JS)l{^ZMKV|%0-hur->UY!IggW^wyqnG|>OO|?F{74Z zPc7ee?S9mN5`))Xu41u%eMxG5p4#W4afWg(hEw6IvWX)=vQ}Q2TNS)C4h$d~NfT=L zG4O3{wRMRYMQm-Qq2QyTfC`@a`P%f0T?+#763AhSHZybzi4YWJf&)O2Jax_)T>QjK z{sp1AJfgzX(uSH&a~$h9XuZ{i<{K!8vSWmFS#=%$slu|^waz={lpURp%8>eiVSmtb zKpd47RmV~BaHc)-;l(uh_O5%FNN})RPpXnw3-jVEgel(FwTga#$>3KyY3v{)quKG4 zFhVoQtTgd;o;$9{jjHZg%6_ys#PJjvR!?Zm>{`y<{+4m)ekp*w_)>U2!qMtnw~A}U zx`z`ekk2eQZ9M8Aj4n!zU~2Bmz8$G8!t7#tl{=;hs|gnk>t@w*?cvbX8R1_p=Y3VW zkn?hfYGERE;bn|ML~~ici{YYSxtO;jVD5j&Eb3}b=K6}#d1ljt?1ZP{4`6rm}L0b#X#*k z@DzRteO+9#E?50Q9ln_eYy5=VgxoYe47{(0MkeO|T7GQ&*p|!o(I1Wi1R=$^w}`Y! z`M4F&8%nLP0#l2#GmDMNgU^sWBBdP6MZ2>}2bQKoK7F`;gqJraRIApEF)(B`vT*4k zD>eA%g6$@5@FM1}saxyZlgy+GT^X(dDGu=O-|!RXyFUX#Es zJjdV2+GvNi-#RrZQeo-(xClvYu*KBc-DR+*K^y_EO+ zigK{9L~k3>&_=p-Wgj8bZk&wbU?UHIv?7!o}kXAaC4KfZpQP)F%If-o{wc~1(eGP&>4i4v#Z+5 z6pK%#Ui504`B8NhB{K{z3YH27Fa}h{>?lha^~({()utnrvq_?HfJKJzbU%$UoC!+O z-uiG?;6E2?G&`eD?>1f`s`WMnYtAMwp%q^W?#1sTm_btv{RyCb@v7y}IFB*t2$is1- z;@8<8HXcrJ^aYE!IdK0emoOS0$2uXcs;$6uWz+Zm#DLA@vGHOcCM@97&@4CTZvOpi zVDPPpM)_??fyZ;6q+_0lr02<^@>X;(@pLOlJ_ZW8U41zD>{TZkH+#)>v|`M`IP<5h zCj!f=Ri{Iy`B-n$P1d}~3dsgyM8+XSqUS~e=Pe}beDO+1Rx-JaB}IH`{S+&^$3hQY zyL;*f#pJeYuzMcdQ^us6%F?Ez9CCXU_8p{`qI$mNTj@EQ*=tG7^2XF3Ww+g6qgq&3d`UYt>)GM7WvhO;0SI|-oROl_+D2u}IK4h+?H9n*G$p_bSqe99-W z3J$za1OFK&U_!#y9jgV%SSL+4gUccuY1>-%NWg6ubZ1d z;nC0$88YYI*)sd|eSQu)$ty>;G)S0|U%E1Vw-E{b{`LoBKSXh z$(MSNb)cyv^!RKv3Y2q%($lGz(`QZ~@aNy2udr76h5KB4JKP;3h*dO1MndqunH;Tu zg>z@G88%5?WV~v`AC}k=orl`3T2zbH+_E@!#{0C9`L@A3^^v{`%tfdE+G&!c)-;?r z8t5RZZWVBw*)z%=i9R}}`sLDi@;w0>xPap9#r z*-W#_=rX_en@MfF4f}N?Ey265PA@SXbfHMo^z&Wv7-vX^Acrk+fz-bSYAIf4KugjU zy-s5G`FC-DD?jhfiH-8ot5T(q)`|R7B6r0x)Z@}-=Yad6RMXEEO*NGz&2Y4yGG5Lc_C>=Ak3r!|hYD!G9~jHwqGbV~3(JP38xf80ByqvV!IO&In%$|imCLI zikr{w(KworcdnnC-3(Wcrzomsv7ky!S`&5zC-hEkZfTgzOCTI8LBhgTlbH*Zc=4hm zyq7dG9n0w|4Au$;GLL(7`&VL2gK(op(U6l!Ai;r&V@o9eWOp8`SNli4*`2Qck=^0^ zuCxCwInn>4V6IL7m&AxGP|$zoIKFH305P#9-~K8<)PHdt>5_6&GIKiUmnQys8?BLQ zA!+4geEK-=4-}So6A~Q*;lcU?rr(ygiSCdVMS%p;gl0{3%^RItN(GKu!>$eDBDSO2& z=3cq#+4fyl&IgQ+2e_PGk-8dO}X7Z3;VxOJZ^`&v!RPMdP_hW<0 z!w13Ay1T92D*qeaClc$7iAbUv148|xv+j5r8PR{IBe{&_Q(0Yrj&h@4_??BL-PQW%`!Yk zUbN=az=j&m_NxWcS93T&Be~V9EjrwG<$N8;e$eIK&F3^7NL+VT1h zG}r$T4EfKND*q;-^RIFKU!Ds85cdZJ{QNth8o=;>foeM04A0R4Vqjn9G#bxa4tIxN zuawH7%=_Nw=PO?yX=z_YRazfikGn!~(9c&(^Y>d7`TJe&sw-dHm6czHB2h6001)ra zqhoJZ^2$#X01^N2@`wvc#Dh3Jm4T%B%3n=#Qz7ItIyFbHU zmM@A5pa6jHwy*%e--IDJ#6Q05dm#V1{b%CvJEi?^S?jM4{}*?La6pH@Gk}0{{~W-H zzr>K>VYtc2<{8PQQb{bSnWSj&_l0v{eg%5@hIr#ad{%zhuQU9P{R7DjfrFl;d8lEe zH1~@H zjmnlG{lo{a)1r|}CDB}2wvI+1j6Zev&5?ckPy3sqgMCYXHY0y`YMG{n{YDSE_QW09 ztC8=1zefAN zVZ*=v!hcOp^&k>&{~wCTc;AQdO$>hD+q=2l0|0=S{&R9VS5~#aR7B=_9PgJ{r*b-9 zu1SLz9iHU{BA;gd0b@2W%MV&HD)S71K*0mik9H6K3`oSA@TmZgkDtf`pHQk`Xew4R zYms0vpo%!r0J+Tbuo%wS6C|XdvI2KL3e{cFAuZ9Ti{6P5ZNu69)ZhBCWI2ECrdui zpbOa1F|>w(v;M`9CHqIh0i}2a3?zeB7GRd3ntq(nKqfX3l3!Zv)>5=vp3A@OtTpSi z(JELd%Mg$o7$gZ`GBHSYNKZG8&!Yj_5JfR$2+JTiACO+@JrcM>o6GcM*}Kp%OK3|e zgO3i5b_P9Fq8I&`W}t_gK~9TTag*AduDuq^CHHAexm>dYm*t#^o~z%E zySIDX{d(F5MtT=$2!IVSY!1B5UxwFZOa6 zDJ#LzLVMKzJQ$|vU?@JR%63&jvqkyig?PIXssh)_W&fW2ZSFV>;?v$8b90rhBqS%8 znJmJl5KFS3c8HJcdab%8W7kY9-#tCpiP!);5`zmFhzMHvn8lVC1VRd(lgQ{I55u_M zZjLlIY~)8Ix8C{NkaNp?f*6|^UA2Xs)Iy(nUeM32V8lZ)Gk1vdR~pEq z3Scu*(8qbfh(P;QpHf2z6xhS&d2wnap&RXxAgNLJx(=?-hyl$6h?j5B!&*2&40te8 zUF^Z=@il?-_k@xKY_e!X^qat>G)bVd#0glX`dqwGZuJm}RpmVHtn@mDQbZ*^ePMWO z!HR#m9<4jum#vUR+xdqOi6|&1?Nl1qFTbLT$@&T~R)aC`ZWHdz^zF^zQtJZ8Ak(tD zQBlZ+pv8h3=IulS#Fm)`kO*pgaE9)u!tpIBP-oV6F*Cny5-~%lI{S9l#j}UEa!Hgs zX~XA;CdRE%hlDHvGVf&kvJ0Pzo@j3fk>XAAQ5e2!Q>*fru}u=`?ZH1+r6TIJSH3O3 z0%kwK{i()=(@lau1!xGkDMqTIZ4-7R7pvg%IfwAJwzW;dn*`7?>NU$Uk;!C+=zAp+ zZD@;x@2dT^)O=_DNcx>}zP>o-!ehQ4{MWi>Q+vEtkvypE`;~vmjnx4?MlIj#p!)Ca zKhK1J19<&EbEEdRYWzP}?=YaZuYV&!0sz{}iSPqdPGX&WA0>z}pA;VeKut8%yDsSW z^B*>%s^4Z-u-}dbuzi3-*2MvfLNK}`Ucg7m(Dk?g-=l}H!4;g+M8D19| zhztp)2a1Bb*}``4TQZ!ATQYednfOvyz45$V4=Pqb8a!9fVM8O5e?h1x@0MN4f1t9Gz84>t?v^V|-G+oP9)!%o($ z%XN04)t$S$sH?s8%PLHk<;K=#Ym+?+3D}3IuuE)a(Tg(BW0Z3iU70hqmFq>|9Gg(V zqb7%PcAXO3mIsiPGjeUhbKGW*E0OQ3l*rP&CC_JYiN~IEB*#*vR?|$_gu7C&-dLaj zz~sj+cuXK;EXo}UxXEc_r>1(NmwHn}Va|d9Q%&OnNplfV2rZtt3iQLI&S@cl4`3P} zrvzG3uGiR`W#ePi-9km9hknja_IT71B0wHgUTMYvOl4r3$dYU(bo@|0Dz^>Ip0%#0 zS+=LVa+l=8Nu)I>%r$S5RV7Q)aS6g-BflqtWygfC2RG^4+uJbOX<#N}U@GW*Z(sR` z?c%1{7=Qj)cJ^>-cIa!p%Gy-aUsoE)=`I(L@RhjF}wUYnQ zZvrWpSnxc~fJnQa2B*-ZXhH$GFg#agdopF3U|kv@uY*5A0RTM@Qe8Ql+dS%L!`uB# zOd3|ZXM9YBF~CvX`tqB42QnJsjzV4_@#l#Pv~C4XE;l9~ZwX+v4K$}bemWb6|H%%m zFm;pwgo}5F-A)CP15V`b52Av3acYh(M&jD$X{5n@4UkkI2Hr~#k>rw}w0IDAbjShMnE|A3ME0hFu{wwpUe{42tXPlPHk*C$D$jrxm~ zlbDJq*4PLE@kj0Wipjc`PZ9Gz{;yD#YghQaqIkcj)yvqiqQR4hg5SvKmv0`Kx(EbB zfR#jW3{Z%L!JzAQ0W%*9Wc-_KAR8?GE;i>6>QORS_nnAgKmd5*bioC`gH8N&j&pHG znsIzf@YW~O;NRo@>3NK@nr~;s+-Q*K5ko*cfCsTqKhO$yGT^s=wtS1ke=VY=;J7Fq zI67%`-S?1n#FK}4QvwuQaJdyPZ`u(sj%iB`==XqJv9ry1zf*BNkr@zGdwl@vGg^)> z(3Q4ycJA4>eg%9nc?15L*e4DC5xx2EnOAq#3j*;wvB7+A|2gwgeed?aTsiqG^ZvIO z>qV+7r^40Rv+?-ylO~b=7Mp(2xk2c;yGcY&tRrf`uz^(Ixxoa+h@66GsKG=hQNC!d z0)^OZL;?5f{YyvZ*3lDZ)z#Tc-rEC)@uhvG{l*g8cXz?nS*J+(i7b~Ig){{`grIqL zmA*75y@e;)@b^MPi5a0E7~QPcY`UCi7)%q<QCE-CLfU6j&A)28Wn=-G`>;PyES?F)x*5T&i(U$Cl81=)Xt5c+n znc(hE=2B#!Z=}n{1oyjGi8sBcZDn)Q^WFzDY-vjFol=2m*BEfS;VcuRZM*hz*zzmv zTeFchp$u(t2nNlkJDYJscC*lBd?m+m2RokrvGpNGxI9;?Dp2#!yO#K2h%ycwh zYc||F5_vO{SI&s7MOq>;oe;{N(^Ftx9pUy(ZTr?Y%*4{Bzl&E2|JhpA$W81cE+qP}n);+du+qP|=x$oD>O!s8E z(=(YLl}e?O`cX;M-r3K3){Z*&AzbszcREIT!QJ2%b(k*Uz21w}o%btwEepD;_|BKS z&1xpa{`~e(iY(r>lus--q$-Qv>K_%9EFkY_4U=mlQn5GBCWDH35o{|e_U_((bq9wa zv3-kDnjrWkB=_rqFHC1YT~US?UQ5`e1Aun8L%Je}1OOz0Mi6g%ARy64LPFy_J5sb7 zcsg*CCcfOppz?+65tQ^#jaH3l;cs^djm{XF0AlZxr6Pv!+izg> zuS(3W;;FB^Yos!QSN|n~D4=}45hd%*Wmt#&? z;L6E6J;5>k_-xs?+z;JPA&ThBQz(}?rD!l|39G$hqO36$rc%foJJm#Vd?0c`8l-Ew z8KJ1h`IQqD;O&>IZ}55+B551=F-+AVjtwRN?~=I~VN-n+BoKjfBCD`;(zj6d>a&$C z=K*Glk2Ovv$%xYMj^`Z9?X?<2zsnt|1LH#6n!gt@;_?`wSssY~*Fe${kP2^BYR2_d zjBQ;&2oQ)l9D{?lGa=|Fb#4RKN>ZLf{(_r-4Fz*YT=LE9sQlMn9|AU`Jr4fnmr8rj z9+N)<1AoF1YI9%kiqgjI`1)5(C<)+X(~8gC>*QQu=uw$Oi`G6b=3F4+{QK!1Em9%|lQ>0(uT}WXpOdN9gQL;qgx!kkDP?S2?pm(2eCFQAhN}G`L-L5LeNv!; zc0#FK$+;zCJWR2qL??9Jx^p(A)a8OKevL+vd`d5kR#69DN)xWU=aW+W9C{KE*L4w@ z$?C@B3M?=4-$a*>E%fxX<6?GA5d@bCenC4fQW5a9mu5t|ABt2lpGae^nB%iHgeS3D910t6ONO8^MM|I4%@ z0SIw_C)KvOt#0%?AQzh9=2Jp*({e|SeSH24r4+1klB?4N{WZB&a zNmywKkp50|(WZ-RXT!vX(#~TeG?h->gc9zi^V6XynDCKd;6w#o|U7 zqZ4MUH+aHM6j}9WZLOa-dS-S;!@_;h@8rO_rMxP1(yE_IE?B*q^F&ZOz}sc;ODict zKuoY)3KS1Ef=>=p`pSvc!wO?`3VWuk1K>b0@%a>(4g~!h@ z*gzHu{`6{YN!o1E?eAF91||F9+M2AEvcSWM>jF#DTG}56(2}GJngWJ;-A_zuC!mht zhiBU<#~3Qi9UjLP*_2vSqzYR+jXkFz!j}($vO=|qHalZQ-Y=WL%QWN3b*rd2CVIoN ztfd3nfgN(G6fpic%VySw^`UzqTd<4M*+!hSE=eH!AwNKFMC&y5>>1w7 za8Zp<91_uIcizQ(1BJKIoi6o35bp41R*<=|9bDK z6HbwDqIIxAlt;M!W>)WA0bIH=8kH^* zsy=TFbw~l3?!_br;)5i&A`>-E#X-{>b_^m>38m-aOl=7&!O5%oYn)jjNl~W%*?=|) z5ORM>AhByDV1UYo2B)}55H=<^TVXtH2 z{?r>p2Jg3p1tRW2;2;w8ooyu1@<Z}qi z2+q;jv)cs&9(!w>oy4K9F1(r(fY`{3=#|xpUI?U?wuduf zU>ZP7h-kJLWOS0+>x+5aIfL<64^gwgoO%)OHr}t8aeLiFJLg!{cl=^0XA#_5_p)&m zoMIE~LW5S1067GQnVj*oUxq&mQ!k{>k4VJn0G}-FY^rN8IGKmL^Oxn<+IL4<8!*vpV%Q4x+wnX>3GSQV{3-*ICGr^Ui3c7!r?1##XVp0H zhocxJZU`4#QOMH*d}m8_A>OcSWuD^d6k*mcj!CqfpIpB|EY8ZYt$1oLBq{c$8%$0L zYg;rfk`)%T;F4Gj^#s*ez2gwYBTvAKvy_+-VET?k+laUAM$a!*Cc=bF44d8OF3w~?_&29NaC-4{5L@Y9J37A(}3qnV*|NK;=O z6yaU6B=A2uc*s$bhfr1eF?Y%HyF<4zQ=VNMaOxpPv|giDRZ9*|BU*9t#Y>0OPBtix zx5r2Z3kS5GDD4~R77||L?7+p>Wqd`%UO%Y$&bNG$<5LXlMzY$8C+xN!32r&_MgFo@w0_7Wnx9vwiLTA!?XA1w#C@svMVjv{5OWnlTO)N$(6^VH9~u z>3VOxMIe5(^jUh;a4#9PdcfHeyIR z)Jy2*b_m>ahO*PXinZPgpPVs^k0(ver>}wZdG{$wYx0>HzE+ZQ+_}(w?f9`hw#Cne z{BzUY#au)kDx-+t_s?zH39QE|fy-<3pdwYz2HWO%I|FF0&IPV7Qjf-Vs#fGf*m_ktZrPk*%RDoZo5MWbK*$A6oI&d4b0yWMS|A z2*ggE1|}vD5Rk8fM*E%X^goFqhir8=)imMGnpwU}K($>JH;q;=d6do2EMyj&jJl&2Q zshreVWMR6gqsbYX5Lp+`!==ebPoXa{;bhUb^~=q6!?VKKhllC9-h~?zc&a^e+A^1a zKZjRMD{e)r!cIg;(7`M14o*GB>O77rok!vy+~IWz0!gt)B(cPMfvT&m7I zQTIIuzk+&qC=afBBu=qYm%7NhP(84jDYLCgVdP$Y6-^!WN~r`rXV6+5UdiY1uzkl> zJam^W;CT63a#CBBrGbXKtl|o8*MbJm_pUs+)9%Rs= zCJ&c_EPCfeb0J5(prJ{NE6EvFe1EbZAMytk-%#);*#)Y;6`gjLpqqiNRz2{%W{==c zD54Kq*kKbKt6XoJ41Ru+By9?*a@3USHOU+=;Z{v6wJ}4vt$fw&%atxE!hA8JwhjS{ z9*(J(Z=GAUhkFi0K$v&US(0>JndsTR&07lf^>M(l=m%!Ip4i#@1bC}* z7rnHDsulVAFZli4x~Knnzo%+R)<;Cp2|nK30UZ^S1yEYt&&~?^X$3!%HJyVQ+d2FD z)6XVGw0i|mn#cXGA|4K27<45t%a>?D*O4l!hXD44qZ3nFvbB7ATda0d#`bQ*G2GS2 z^*}`g{6c?1;{U@2S=1gz|L_YtU@cOfyTvNm&Gn0<2GfmMD<|>A}tShv!gVce6eV0c{Cs+BtULrMcL>(71<4Nf_x<-P21Ze{jhkt_x1WY_t>@*!r{l5XP5mrv zaNRuucmPQdnYXGR{AHM8OA^cTJ%DGhX7M%0(23I=OO*P1C9bpaxN|$BsiTYtOC=?j z?1xmOQP(7$1=n{lBr&&w!aMuj%gNw3a@w8viON9I6btJUZs~BXVPzB_tT6YP3=zvO z>|vD>Ev9q{*$;C>14H7MhUd94rG$MpqxO||E@C#ODox_D4r_*K(Ls)!(%~e^&zA}5 z0hSaw$1CI`59xArg_>z~mW#PwojWuf5jY3e z{JN&y7~s!A;Uihoo;|w*VheQjF9`cDYGbAzslJ>v%M>RT9?%;=)0LuBM7}b3?M0ZA zkt+>T;h&0@&~e#jHo}DFYg) z?kp|SK~uAkc3-0L){+xA-a%lhq^;TfK>`*Tb;3CJ2(Gi^SM9{mOB(Ao;E@=Vlq(%a z&JXf)XgVS(+k~fr#YAAUL&MR-Tqq9M(+h&uR=~I?scma(M;aTth49s^WPrmJJFXyH zJ?%?+hs>nBFgG3vM^8_NpQ)sdA?KK2C3v9C%L*+!PkV9!4BBW|3N*=t+}L+vc_Z;B znpPt7iD+5=dc&QFJp|pNf)Pnth#iJG8*R{`L%}z>RF!#`8I}K;djy^ zn$L>9`oa5}%GY^@pYxvz*I3P;`Fe{pf^WB3sPwiiMu!|FF}SHkLMlBt8oiF<#G(%r z=1M9It+c<5a@5qjtA$tYn@@=3<)2SK$>8^uT`Vlo&#(sgp|hWo=6JoDF-LO} z`%i9=-`=H`-zir0)_&CQ(n{Y_*MhNH!+?93AI4a^H&{{%{pzzEoK8$UTRH`ioHAd^ z@*$6)&#@x{GNPnm9AJwg?pkD_F>#KZLlCvG+6OMSAsIPOe`(_)nJh5pU1makCi&)E z>3Z@xlO@Ry7pXNlbF>~7-8EoeaaQ3?{~~0R+h*ny;a!8K-Wc{j$E9^Z*h@6F zB_i!yq1K8$^#Wcl;jwxElKslCTHG2W9rO;CZtFA8t*>Y8lqTK4enP8GkLMC+(|@NIE8NG>C69?p}Bpon~t7J*xHXlZIr@6vD&3M$Y=6wD@+v zKC}cyNXAqqzKB#!ZU2;-ScRcU>wrlUoLtL&-p?Wp&=GV=dsn0(}&d@rro{i2W)KKgK$?V}yT z-<1P84^&ZEJDIm2*j#wOSzYsK;Cxqa+gj{h4byutD$fJ|mFSTv)k;kqC@`WtyuBz? zV#E1}Q?ci!pBY{Wnsl_O;f&z!&4D4~{{jR85ds1O2K-I9_{w`-f3bc(4tWL6<}-^# z0xJ79=|oujU1d>Z|9+|U@VmYPJn#yZFyH$Gl=VM*mQRi7A8VyW2Da>P%=>rrkAn(U?lMX_EYCAo-C_pd!LJ$uCQ_j6_FECt3RCv81CLE*(dTx z;1`BLIl0Z#`T(SuE|RGpfLD%HKkSV&Boh~tZ06`+!Iy+DMFvVcv zsz+RdE{nys3PG!W)I!A%hcS%mc7T6quaA^x!m z+Fj6xrz6kG>puV0jknzi@$7md93oH?qbUNLrXlj=aFghkRurTQ^GZsNdRA0t8fkb! z)>4ajEeD!@)+z#?n=xz7#N4N&!h6f}L<)xP9w>^I5j(TkI||FL%4h*L4Y5z9BvRup*G3I@7+>tKh-u5G0hpvgGfh{Tjgim)Rt}>@wUCgJoAjEcUmyf z$|A%S;^hD%wP0*&TY6~L!I{MNKLJK5F!nWdLR_~Y%vKoXC!O}J__VF+?r!IRWNAXIqzc~liR5?i)(AzzEHr$nj`yf#{c7K=~)H*)&}AByWjb1v_t z?AyX`@y3?E9Eb)nkV-H-0+h83PW2DVeON*BJ#X zK?y03qDqm$fuzfH|1DTHa>tNgBlD6D>FRx%IYC4SH=f}aTT~n$q8y)Dgy>(uYuU)k zA^by>YWY)I$Egw1Uy#QgB9Nqwz{cb)9_oJ5b#u=sH=wq?m&*=%t>TwmRs4q0&eO~iBo zu_D;>V@~r>plK~rg}1v1CjIhnb5QisemBLUMQ`ujmwr0@m=*NiY%$s*x=V+iEHSsD zh_5+{#kY?vibC=w*!B;sUj6swOC`|f1x?jF`ju2(dR9pisxIn`C5ao9BwYab=;3^@ zdS7+vuj9SX(kcqr+?QEyTS6vITOJMg4PA&`ym}Uow38%&q?dpOucsdU1za3%tlnQm z$*nJopX7(8pOEHq7qOGOu%~UfWyJXRB$SZkM&bQsW%*# z4vT?92j5rccGm3|=F1Y{&`&JL>s{0ynF`17eJNY&r&nfg$bH;W-RsJs#--4_jAFe*3w*Npbuqo<8$CUt1$y!GF~Y$+XJE z3{_jxWzmPE^`bh*wB!P@Ri?!fD3~Z5MmevkN)}x=*2d?vU6O0^b$dRgz+T@8JAn~D`k4f2@%I_bUJlDnFmAS$@0B#_ zZ;EgoHmO<~CjM&))HD9CvhII3|F^Slz5ffp z6bEko`hTE{5dJ+4;lJ=p{KsE|e;5BfT?7pDA8?3WPDDvdTv-7{=Tla9l!2zi`xvH& zv7~8f#1ZQcVR2zTd{Ny&RGJDm|)Q*af%`c7vsK^lt-9q^>w&ClVa1_{l)Ifdq|VSh0O zb0pTxzqY4)n_oP(EnEDf5LM2aUdz`-64hc(&P;r=3x!hDpErz8tO0Ur4&M!~t7^$u zy(rz*EO<0DMI|L-xmoG?fG!@0>yCn$~c^R45b z$aj+ixrNZBgb8f5nvsyqiZ7bJVXM|C+ohFV7K#A%^sFL;Wr$81bokrdLw6~h@7%n> zw^<2c^}=@j+nRNr*l)|w^}tGSJgd+kK;DOD!yhknFZr{hZexWa{Ea7sB^g*>yLRyMkIIhS9 z(`j!`UM_|D9c$ZHXk97;fyMR{+^6Vo_5E|)F~8pz9i`t^-id9~uF$8EWyk$%t%B1{y;D=uxPYK57k!$sn2=>0Vt|W8y^^NpLp<&TxU1v z?GDWn$64x}X-59WN57R{fa3~dGFbt`@_(Pk|9}LtS5%D400RJs|2zKYV9Ni7j`zR7 zlz-AoJwppS8xuWK3tM9o$Nv!1CMs_7i|c4V0f7Z+|8}c{1O!D<h-&EVN=VFF76-!0AP%TQ-==-gM=lbUBlepuLL3+xa(U7I{u!s09?b@KQsge zkXtBj5nupJ&F9KC0`Rx4oD)ud&Nc)=PbAOXk+wtU4#kib@h{frV+@oj0Uj{%NR$DO z5HKd4io@YA&^V`EVmTimC!yMIB&8)s|DbRr7$)Qn_9oq0PQt(wZX!6(ZAwjOGByH% zQD#IAuK$Z}0RyuM^@GkJiU7SR-qvgaF^+#2(7aoTKtSbAkR&lmkU)(F-Onfr5(Yvr zkA{XOo{YFKHYP7`Fa}Y?Akab>Q_wBu|A#4@5QQ@dNjeCU;S3#TqA4&eR8btmZ*F%e zPMDG52{=X~)SMZT8AM{lTqv=gVSEb2#`Y-gCFr)vk$it_ z0K4prEXia7b)&SjiApqM(q70ivX1c1M)57FxI zJm&K7rC7kha(ez33tMx1(kG28)#ZlihC*}jDZFZ^GK*$+f@25r0o)mZ!@l!)O{pep z#Oe?L?sGtE3jh$&!EJ0^o_${RmDZx+!e*zl=V!n_F?^!~{KV-cqiA1E2F{v2 zG}UH#CfSzd=T4j3Vz>13Itfk;2OshVT_<{8U2^CzZa_)9vG&;Xg^hHVgd*kU8qowe zTA|JDAGk*KXT{4|4Fy9d7n<_5n{$6X77P_Bb(^l+eP=uPw-1#<;w6tQ*_4^ z4h!^k6?j|(T>m_*sQ z`f(0#w4ElqvbVZbY4cY(V{?F9VAuBKB^iuk{=3ZLk2A@78}TfnH#fz?8N$v@SPeEMY`ojx?W+@9&$q0L9s%>RWfff^#7uSdtF zP5LSa^rFl!F`OC$VhlM?_4P$N3+Jy>ih{o-IiaNkn;*Q`yXq!-bd0HDGW2e4ezq>r zNwvg+O~b{*&%-#HC!wfcYAzVpbQx+73i0$y1WSb*{XZC`Onwcu_d6r8q-OrnL}NT~ z^=b0U^&w3gL*6MyeAlcp$pe z42s?*2gR4KZj zIlPBk#P9P%pA7oX%#CmiS=IBE3vW>CyK4qs5tGMqLwrlh5V$OC8qkgt)viNlcAM-t z5@bq3CT}&H)IR=)4EH{IR8{;YMGtI34zDf83q}Y~AkIQNt};fAss1(_yx$%OdK8;LXfZvafSj_{Aoo%`=eiljd?bPA4F& zQdifl5+b}O7=3n@Ecs=-y>-0lMH=6G)Q(n0DwG(?ZneO!QWq&o9CH79Axfg?-EHW4 ziPNaOut2o0v)W%N*j)Ax2PVA3-vSrRzjo2$z24+bK<(^(_>t4RMT6Av>FjNCh>ulH8P(fcMzAU`&Bj(!@pmc^Bq|(0fD1-kh9ipc&-#g3a>y z86p5Z`MUuejy6E<9bVhDZOL;Ar|@ZrUQqCTA45Z6trRYVJ4$&)1~WYl8XEDo^x}ehS43*gknFoX?W9E zwrS=lS7X(}<7ePOlD~CqbwpL3stxh&LEAijRy33l{@|xv&-Ex}w&DL@p90k+J;7S)lFh)hf!2sM@Ia-VW^!@yq4-P~R35URf z`^R>90zf^1{L1@5Y&E`fPlF0it;Ag28kZ~Pi$4)&u2m~#PRYG~o$?}BRAxcjwSX*x@u(QE7aL+<7f_c=MIn{d#23pP!4^?LG= z@yN&hR2%B*&DT)yK)^d$#EZ%y4Cy|!b@${$jgclg8X!MkVAM4v*^W)A5J}$((+)-S z+x5+;T+WWU*hfSSsP;yG>Gu@@d5DC6A}m0TQ~}k8biYT#5@b`7(F)E6w9wEG@Cakz9tG{O&bWI0g*QRY~1>! z_J@*1l1SmN<#jay3?;~faVu*hhb_dJ@z69Cf?OXUTT5ABP`_71-Yq@6}V%$M>(QYE;Ran=?q*|lu%*Qli<4En|mjdY_~-x4`& zpGAZ)EPW~BwZ^R-e>5yzY@`YAG1GbHX4BBUY>+`13>Y}MGrh@5CPV;0eEPJAPAcTb zz#72FX+wiOD42afL7um4@}VqC6I;t9Rj9heCFz8z;~{wH5v3>-^r>mnCXGBC*#*&d z7jwu^B{{f*i2=2(&9K*CEltTtc`=t_`jAn|NmXJJo)iod6n#8YVTzoAP59x-bYQO8 z3yZ!%auMH|DMKWigJ!((vzj8LjL6^|dKJq4whgFT#HBNFwogIU+!ZXEkFm#s8jj?P z%wx7Jm5ayH7z&|H(M-dF;V_Z<4+@6Hr!Y&I37G(}ZQ-wQ0pdjbU9@Kq?aQ`jC+Wk7 zJ0SGw&~gC9feV{OwC|rX6qwH$6ySaqAwiS4aTnJ*B=jPLGcF0Kt}b9?Oq$boOb@c> zdCTq}vv#BlVsMb8{wU*kEwn6nvF@C~&bTY{a%dC=X$7eqd zl+L22SW>V=z&$2iz#LoXgbrB{E?X>*CKlIg*vi`ht~YbW8puyiPhU8Lak>*Jo9el0bUr7&xL73OE7mPem6gX zsI88W#n(TNw&zy(*SMTOifU6#1s_SN69&kjmP0vyd{<m>gn9=GW z`R+8J_-9vo*UcF5mjdVNpSMTWbHxcCpq(F4cVPx~(oZ;HrsS+S#d^RoZnWhkFA;d0qCx;;-*!h$K#ygtZRV6847> z@OC`y0Nw&>YeD^ul}`v&Z!K6f4o`(+upkQW>D}EH?}V+iMaejzPzm7MNTH3>Y|k(i zONOpZw#)UUA3wfoJlNyG{sV{F-b+Kyo36w7Jw9yEgz=>E6)UpIzAeVx;`ipWDA_vE zhB)X^@Qy}Y_M+x}hqu6Vnx7+)f9nRA0nm{H;C!C0@*}$hllnh2%%(tgSX#)~*FF7dy-AGF9;jz0%SXS3_oD zv}d6leC!a+;WxOX)FFc@Ct4|IHe98NLmi;HY_vSYeNs9RqJx~$W3Xd!OB(TW3T$-{ z{SX655Enznyal8!WIjTb!~j}AgHTq`fU&5DkYm9z2s6ffnu0ohv z9!IMkd4n!XJ8;BB3U^^}0sy~@dGuU4}_+Dm-G%jL5%8fVY$GeKBk&4b&H{dZ{ zy7&%HnSw5xMKdjlOxsgKX@aAp&wBY*?bK<$ie{+rI&)3dkvc@t>Vw>6?Q~uRme!SQ zC#e*uXak^6DE#@8r2N?~jiq3Ayh}s7wO>*x%0}Fo@V=jF=*yMA6|328UtvmKO>1FC z0IU_0+x_Wzznd;G%>=9!mfw)Q{dr?FCp^nT5*0iAY=BZZ~(Iw3(m#yoQtT`&qnxAwe4h3rnOd# zT_q$#Ew`*hnXIjCggmy&<)k7b1H4@75Z;;>yQ$|4B(H8dmTR8x4lt}eU9WxjCunfq zrYnprNBc8`MZve4=VO`4-~sYE_NQnXy4eo#`jT!|xMez{yxZ!lcZ?U;@MiJq&@ZvR z{I&c%Ic4=G)RJYfOqN0oHjjD2G_}oQaZ8ITyRzw63oB^kJN1N>4i+B;H&;+Z87)gg z?c*rNT|WnWeJjfQr`T^Fc(vGT*7$N!rjW^N-0v^P8vU+a{`J~7I4+U*XFWUTgme54 z6aSs)UGHETC)~%#Un;#$#4CHv#B9tl>uW~Lh05yb;Kh(F0n9R7S1qcX!Q#QxZkwdf zXWRp`;V~QIwfoZ0jny1XtuAV+*S!KN&d%23@GwL-$}A=bOn-Lb{32? z_GZpw0lA3t#ijux|0540nSzfUymkAhpkv671T6uo19*#^+$-{eS=2wUew_G9a{MO3 z0z~JMN9b#oqKHBs+m@mg!Vwu&|JJJS# z3H$aSqUFg@kfp4$2RMZ7_{%l?O;Q2G-d&PwIz2~IE6-bI$cFDl46;o;Mxmi}ycV;Ffej z{1{nwi;AGG)6*&=6=k3T;smI!CivdY$i7r>CFdJ!W{(xwSa><&zZyDO)ReT69m9Nt+|nY|SzVp3`_JRTxMu4# zEtqNd)RdDil%GNcFWiMZo4m|fC(bCD)4ZL+8p!RQ$`p2m%hfes3&by8Lu6nZsXyoj>x+uu)3tq6_8KoylKD|WO{eUHCqzsQ`%ItKkql=osH9{+GBlDY|?#| zy6`^AiESoY_Y-w{)+LOQ{%5 zUTeZUHLTU$n|ROkd3w4WDrB|*HHDUs|2&cPdOqnc&z){>IcYe0ij>f(gph#Secnv4 zT>v5ouiLQ)W1F)FC;50nkfj#1ZPCO?=>i`mn%QS1+JhDdpc+z>&<|?#9Y^t$kWVBM z#8a|~qm<)J>iZ@d2WpP( zF|>)tR4^eg(6axi|a%9kzs7)=zX#CZK2WK$1LT4Od!jfI$aJlK4z` zO!_z@TM+HHrHy(9rDu^Kk|YrwOv|}nTf)xS3B`#zTi&~K7TT+cIc9TW5qfV4q(KvC zdxCyXoZ1qefQhER%elhNc7NB{o`;$I`m=A;vb1f>-865p>0_N(<;dbory0?j>ty=$ zmF{7cgpu+`JVH2`%07(X10ZM{jBOM4dhf1DhMHgOa-{~i?w|~J;|R=oNl&5>Hob@2 ziCA2m1s5 zT^0FdX{m+ZuyY@`^nff?!42)*ZTycWj~Hzvq%*#sUcTS&^En1$?{>As_Cy0R!S)%P^wymsx>%G?KA3ElDI)5)8`bkcAUE z4X1qTSmE)+7Oe~z_WX7vG?NybUF-quTv1(&_7ZX4o`wmG_uKY{zmrGH%N(A1zFaSNd-{aVF;Omg!L!ZS^JoX8AVup7SU7|D13A-!=pF);7U9u zVT!S6WihadK%T{9oE>+<#7sgm?jtfX_g>wkMkr%u)e} z_5zncrEkhUKLEX96kijjktNqPX~mPX!NP23+zz@o??i*&G%Ab&c+QW1&z0?a<{zZr zv4VolHF%!cHtn0Pr|*4{bA!`uSyJG>bnMcbFS1H1#@!v#GHqiL3o$&iCPj?Jd7K`M znX8v5=tET8$`r&4LL^9GJo0p&(V$`QY;_{U3A6il9EK6(eD1$x{O|J%v?kF=Qv#{$ zp@DGdej7mDWImEPOK1Y7zJ{%Te?vL^x-_j$y}%Y_J^fxTTH&Zt+(_xtu4^c@o}9^y z+>2Fa0vKz-p?9PvaCi}|Cw2+e$R?G-Kwn0sTfYpw?#GxWE)i6&W_%{28q^xiyw%!V zG*re`4u8!qK77qu8#Z?5a8;L2(01G;McHe^JATBDUvhJ%^R#3%^?HDe0|))C8}b_3 z-W&Mx{TcHK2!#k_K@i2Tg#-|Ahf(KsZFVM<$VX1W#Pe2Y8cJ-)X;rDl=RjLWCCeZt*x;d7fl-wyPuPUJS;iuAzE2#`H{ zBd#iMI?YCI@L#Jt-VQEcZ-G`}vY_XaBv-%j?!!7Vp~RHeZh9%pHC?+sR|+CBsLg-s zog-pgWID>)qsE)5)@16WaI^)r7o9#u$Tv^c)ElXN<) zIQc$Eva2W0EnBu9W+XHkWJNfXS>&*Gm3~|d=$n=$o+n3i&^DW)_rHq8D4`Zp&tfh; zU!XScIq954)xdeY9b9h8Mj4v$IGO3N+x?m=&e|rmz*CT~g`;PI z^AGQLhBjWQ$$arX?%g=qv0R3&Rp>5-T&Ysu7_3x|N`Krny3E{Y;UUJwf~C~u-AE!& zucLQ}`nupq@f=&YTg0LJSjUdgrkn8?qW&V@Ux=K}Q!vp)${y=xv3`rLb{Nv2)TBPh z?M7jtH&-nx<(1ZNHkie<)K#d55%U61jC$sJ8#5j1o~D&TxV$`dp0v7M?|O0Hh7~aW z7+$JfsI2PI(zslutU4`zEYD(cfI8W@#(irxc%b;@OmH2D?rb(xsWHtWDh!91L80Nf zz;z#>xbFPniH&n7C-I0i^mgJ03NFiT{#n=^E)1ze6%?)lADs{KO0-hAV8 zd9kh`kmhcf{L4}N_9cA}tu zyHU}6+oiga3P8AmZXbp}0tiC=HPb0+VVH3aiWj66}|5&keA=?3n|DT3Du>WSr zD+9#rW7e{Y|J%Nn2adCQ<_H2PuB1V5>!+s#_rQGmdH3ZuM>uF2FB(5>3ubH%7C>($ z`@o_E1t6wifj%%YYw>>%ctact?PSpgzT51%L`D5{4-9Aqm-(6sV$rtPDsN!+#QF zaiCJEZiHn~#b^g(WmQ*+%aoY3cpdD#=G?}8=Dv2na-X)Ja>D}=5Fpqeh4(=K`t$3^ zdryeGM*#5R6B>#8LkI_x0}%kdt11E}qrBTci2VLU?SBB+Ga4fo6CpYXqwG=o3kxYD z8XH8Az1?f(fib1Wne)r>B>d|0{+I-|tUa$PGX0U^L-fnmQ%%K2!)YLy*T;BcV%cVJPwoV-Iq zI(Z#8x1VA3FEva|Y^}Aq7j+K;dcE8P-NfL8sNg!fs5hR=4HSa){;aF!2Sy1N@`q>*lTyoW`EE(Mr zVNjqJ+#*6N^qCr#Ct#vX(=JV`)HZ{jS`-t&OKOqe&rA{orI-_TgM_ZZzumn7T}w1?1HSo0st+Pwn#qps&l}nf z5ktGo0+KbU1TN1A?fT5rpyr3s*z@jL{*@exjakzgQj$Az5flNs}Wmqk6}bTc8~PjT+`slPC{ z_#b5P|Hirg>NwZG&*1!5km1K5PE9j2YpdHBwgta$wZ0m@q^YjH@b%an25cCNptlK< zWR>gYlxsL~#+^2uJfGxMhMYZEE3M17&RctZ{F#Gxz}UNr5UlvE717!1 z%FxXC1q;q2j`jPhVW^+Jf5qkO;&`LGHS4ax_eQ*EjCDmha(X+#Z0yXMl$h`O08=L% zLrk2Ld8f$n*Y4ze}_jJ_Uzx!G~T$^&r^cIh0DxfQT7zvV&2U*H6VNW?@uK zRUVBaw;V0*Azgc)B;6qHTXC*V%YM92J_bfA?_M_KNfiwtf82B$%nH{d#I7;DIt_!W zxw&!4_Sw30gJ%vEip4~I?!GHxz~Xw@wXpeRy`-Na6$XF^P|$El=aRRO;r8d}kb(2x zAhaLs*3#FpvNku?u>KCy_(1D^$=96S`I^Lx@FLh|DYW*+pmRu~SnnpH#}EqJRFF;i z&a{hgk0F-x-P=q*k~6}BW0H$C7h@ufFjhOH@2Qz3eJ>A##!PJr1r(LN0^G9C6$CC7_#5isX55Z%SImZ|?dW$Dz z0w6rh!R5Ymde%=-Erf>^#R?JbSG{X2C7y|R7;W`LtZe7h;&tjw)U%9CEZzz0(cP>( z^=#|aIC$KdrFuf~PZ0{8?J+~w!UALrYqTo=zATPdqW%jG181KTv z51Hxf7@O!=|8E=d`EDbLadq#vLft-nyc&7;aq}Ga#fDPK5wE?ES6i?G)=Q$j&gh2n zxsQA;?s;FsnrEV+22`P6I|$8&Uu@+cWKO1Tteno$J3oSyjZLa#5R=ovf5Gl@u_Ptw zH6Y0VDYF@ZWcf~5#bPgw;z+P(K)?y-lF_yn{epMu_|EyKaoRnAcS@0WmgQZux>;G3Kr!arGqGy;Fw3#g*0=LMw3d^n z)KB2a`hZwcxolQ8S^R)p@A;Uq`S8M(Vj}~}m;lzpc$}T}E9JwDOS7V{jR-90Q0+U_ z33*|s->y~{merzP00Xs9v!^-?`aUm3qh4|@JQ12apbZE=dJ&0tUMaVIJaK%rhVRps zc(54pmhF`Pop`4*?Q^YMZ56fBzH6$w76a*oqjs?SZa%so#&F)<;bouQLuE_ zo776?O283FIK)3>q`SPiv5z=cO^KP{R@KxMj#~*&b&g(rF6G%YGCH7>B+L8o&Q;+$ zoS&crtVg|<{r@F0m;->w_%6G_1zq|jFSYU;A|gQeEt#C|yh|o$fn-wh2A`wWTbu9t z<%P|X%Up2RO?tM%^=ZC1$t(ym;uh_R8uLs13;a{{Tsy z{x{i$`ozZHK~hcg4Z`@V9~g;`5&Cjqo(5#J#8$afU<=+17KGJ z(tryTZXL506kWnByzmG-2vNS1Sbc9l07C!T_ig?RAD0La0`6Y~@%M@AWdD2Ox`~;# zj6En+Sd&u8mh5$hM|LA!8LBscl{1s{&YuM{ps?pym)-_P3 z_=mG6+`t3AkN!?edglpb?xo+u-;Cmb(L-tE6*DVEOu`oM4G($|D5>-68LIAr<9mX1TnQA2KxT6p8B6yNi>pgy(M~Bue{C4|x)L zrzdAw8ue5Uhaul)V+Vc7I_E6uD74x+=zAmi?eRIQc!;U*Wp04emDa{8{#t1jxpT;C zSl4~oJpu2I?Wxy1kYFb0APPRKgiiIw<2?+IeOE!Tph711@)CwmeKSGY>)Ow**D@xG z^z%Sq{bIAH`OchcjY&83S`R_A9buIZ(PScat9c9f5 zo#B~p`F9<&kM%UZFe*xrNJEOfHXehP^V~xx?mdw0(>YkF>Kv*kdZ~(yH2}3AT#eq7 z;KfNaz~B?~u{U)kiET;eoRn`qf!@E$TvA)B4;E1!x9)wzRIC#*i;cxFwYOTwREmEvU>!YVl zaq-akMK_sSMG&$|?3fm>INY|fE6H<%54hmV7?Urk3ihr=%5bn$9sR%NVWl<9}@ zihj5#oiYJX>Xfx?UT9~sp@4QHU&XP38PL!&VaB{KTPxW_`qC2M$dT?=*Kg06@UID2 zudO?`NiLDOMV7J-Wbj-pTIwXXjIh+}!o1Cqo6C*SxXy>q7TdT`Tj(*u`*XDjVd1eJ zQ9!VS;ak7XC(K9my`l(O_mMup855U}abRS)c*2Vextja<^-9{?FH0tB~7-^`h*KKVsJ(i(g zmpBuo)fIA6>alqwvV_-dEEGJ;!R*qKseA-sIcE&qHoHcv#Z-ALz@?z)1%`MMC4whQ zYgRNik2|iHHet7}YOCsSUWq$DGTd`KgJ%t`Buo#x(5m^A!#0VwLYXE%w97cT;nmYT zJ%O?8mrozrCPWr?TIR7l4XZSA>RhN&f0z(dP|_Mr0i4S=_Ft}?+$zABxxTc`FG1Ra zivqV_zak^YnQxu!7hl^0e9-YquEMCjlaWHJQm?(M8G8{ zfcww{il^Qjm@--tgL}-@fY#H-$V7St^Ekq zf4twHSN#FC)qrzmG=^4YrvK)G7c5|LEgLIqGn3mtSJTrmrPeYtF)=fx0lqTsQ{*vS zW=5NZ>coAm9R{-iV>~Vb1zIAUBqF0O1Jy^6povU3T-hgxDj#k+Tg_86lr*py@HHY_ zM_0I@Nbv}5js*AKS;G#s1u16p2Xx+6ghf4+zLb} z2A#P?Hv)QJWV8bwE)hI|XX>bpNUokUMaY{UPiORGA?N*|!k_Ac_=S?J`4Jo=ZRh*Q zFen$LeWgr7&=f;0fqtM<;`1q7SRm@z{1N|0Zq!5`9FjAZ!zx#NM5JRgG2}}5;ETX? zot3@L{paAb3P@L3IndWQQ353IN_a@F55D2k3a^V7Vj>u14D+BD%d%xRyPSN43%S%Y zzKlK*gW1(jlcFtvgp+1RPze9RCk}Bio=0I@M{pIfq@LIdac;-?CCss=j(`jCV*1sC zI&kI$Doc@XuLNtXHE~{3lUG_2zKw3Wknsm0%t`$++b(XDH8`m2hNxtPM^)e$jk|lfeBF+uRgR z`jhbOS?f)#%LD#UAO4Bupodp+P@Mc1K5T~2R>zVYU+PbK_qQ)w8>oxhsAJk+GpX)R zOIEK~V9B8siZbPA(ng9MiuoFm?F2r3w&ge9y%yD)jh%l5nP;o$1CbiLFf_93lt6Ah zSN(7Urwo}DI<3dqH^dLgR-U^OvLWFqdy+8XMp@~4Eca**(v;o1tP*00Pd8v1ixy$f z5zHEJ(!`-1T4fJ$k42gi$41E{#g;ObtQU$Y8Ldl5L#iv|9-ED<38JkxmD2Nnl_Y`U z^WZlu=zNr;$!E=Hk6VcH%?m=jKmiL1cN%14$^1 z$vO|hIAn(F}D1V2X;8 z4OX2#uOHhu_&SYxKQBs^Pi`-5gbR9Sq%0&O+-aiH9@VMukU;G?EXYa|X-1NdWTXcd ziWJ-bf&rxfCyVP@8q2E$=1VFze61^kVWaH$N)1hnDyFZq7MQSRxPy7or@&N_(__*K zXSQCri-Aoz*zvEOW=CdZcnJY6aC;BY#S@VD5?=!2l%I0HPu6WSTOd|_@Z!*`{o4&> zO5Mnqi1y>o_ZG(42l%%YL*2Um(k}ppk;A+%TtEO$UR%RjvuTJ;BEr#`z z#dOUq^>qH*k`(tY`TZ0#kQf^18tDAT%u@=8ICuQ}8wb9>^xvMKWoD|SV`^;)L{Duk zGY#WEj#B^j5_b_#rH2O*j1b;y@hZ{Xy21*Kh7WlT`C)2Cq!<0%Y+Acl9`nvA7xTLC z9_|Wm(o+b|H5^I)BzK;UZ)$~aOjtfgEzRk@yNN^le!&$r(j^vHCFC zhvP37j;nnoeio+k_Ha+3VQL5R7gb-LU&dXfGsb{*8Fi1nsi72&F$oDJF|IrkZP~lS zPE!^w9k<)?vG)=v_U{QaHhZgM`BMscZYg~5iKEE3x16?9kBC5wo08QMCpGuWyanu+ z)F(x@9ee$3!wQi0LX2YW_?qyHkOl6%Ar&E1X3-MIveezm>O8^|SItVmVe7% zu=0E!sVf~xbJl^eiwBJ`^-Mw%asI;Nx)t>1Bm8GuL2!I}vBi&Sl8m3bPMZfa7%WAD zqQ|jsNhR3Id1(TW`Tkx~C4k@lvT6QK>g~N7Kcn+ccKNyB$pXWJ9c%_aDVgr($9tyI z%gyo$Cl~n2(AuYn{%*EI?y+$r!N#)m8+F$)e7SoxlH+XRhNuFR`a@D2Xo(FgeJ&rN zT$0^5O()GiJmY%juCW0(&_0;9WQFcgu?}}jW`v0gxiLUQ%DrSt{wFexHOvjHenw{i z4`MT*w|mY4XoYnI@BMh|gD5j?v^k(W&o~eX5EF0Z`I^_)cF&ihH7Jt^J*_Tv0$IPV z|EA(-an`Sg{qtGp(@u0frE2NxIkV#@?3W#=gXQRaRL%-&T;5pUGCD*;DYx0sgL;nc zx{o$2>uYc6OuCm&+5beRxs9cc9?%n`^HZS$$_qvh|KP$=KwC*Qbbudp&nsegsnY`X zj#yaAqUVeuqz_6Q!P~g=^m%%F4FoDuH>{H{OS%@PgGOwuBZ&Qo&_CNf6jS@g?2=UL zLJ3~5H#zu*yo50~{pHvdM}#z{lH6r~;mDyA=&e+%WN?jcl{fWXYNh`ZwU#>CK=Na% z^Hah8PHUu*JrC!@)qPd&rKL{WAGGGG80g}OK@aWX(tA~v%4P6IzD2_Z3(D@Qq{6?R zeLcVz6w>SdW@y-p+GTV4(q{KM=Ye%Sx`!*yGuAVH!wtsAK?L#>Z(m`>eAizbl~;2{ z03G+6sr-MU^v}CtKcQA9hzGXiR*mhwhN@}z^#YYmX1KL5yEr{V8x>4bW0FaBwo|NN z+`bKQ(+^TAAv0Pjg#`*Q7#PJSL{KWa!47^1C*x`sg zr{j}FUU{=*G?hb9M%p~R`l*Nd@uC50mWT5bkS_0N?S;HDI24Z;RV>8Wv3N=*gyI`6 zR=+~tD)D;LaM3MbNWPa$e&Dyi?1ArfythyR`N5}Th1Ws}7-x)+nt;22-rI0uNVm?j z@$rWlDojo8t>A2CyVs=$kv7rNdm{wc@}!SX%yZ~%k*$@ptm3>zM)g-%f#recvOHKf z_Tg%T!`P}c@@E&PMG5z$hBAJJ`{b4|hejBAJ>a!t?j`KD^7qSx-Ro+5=n-8B01z}Q z8(QN4AU!EcdTCLm$AJgCkC+f8ueff$ZUnlO=shq}CkxhhhBg&cqfGxacw&(%QR@FL zS4Q8eb%ThEV+d=8WB%At?y@v*AVA+f1+5oh6fKlEVvY==<_PSTE{sg}Bpu+bBk!e4 z{9n;^3w{2FV)g(gNPrA6Sf3r*Rq0qCs-qkkxv85vruCoYPi(x-QQQTs7^N)Mb( z%#XCi>#;MhzKYZ){kQdAfl~j?QKRK0#RbM!Pk34?8#c^7oDI-idZ%zVqkesRF;$E( zJr3Q~?9h=C&L(+F<7dKU&07SNa4(Jj3dR2K@Bv_g-!Wbk#tI|KGckWTAbcRAFYVcg zw%uX8js={}TGzVtDAJ|@dT;bnW}eKPy`J`3orlZm@~bb32}rbWv=JJ=Qtfe-x|F?s ze}*1bP;D(ANuwP61I3=-g^oJ5k%#{q#R~r$A^xw30qCdaErd;0;LloxI2V7Q-6f4o z+(9wu*SL)H1eS8ouwx!Tuv$>|LT~_r)q;l;1Q0CWbaoU=581csN2}C#)M+5xe0}ns ztCW_~cZ@NAzJmN@&G3%4Mc!HaJKD@52F-PWH;=wocuN0c|r zHeW(`(H?ZUd(!=_P{@toWGcqG#Emw1R#udidTQtgJC!toLVByFgT9d-|2?FFGMjXC z5|L)x+N=tvcX!E&<52|m?WRQbUr7IZIhNojxvVkJE~RFD`~JUJk^TF^Pkv$H?*-al zOTz!2Hgf$$W`BP1AM5`^f_#?|kIHu$w$P!~K^-Es>+uT^Wkf87Je+jLhacj2rbvL#Bu(1TCtz^(sIpuh4lr~#9Y&lJxU4QW<8HFP+X2r!8%JnOtFx*95Fx z1&C_NjVsHI<`qUDm+3`D?L&3#vzxu$$>Q2{jX+z*rHGT|TGIG#8NcRFl`T*^Xnlzv zq03EYT#sFj)>`svc}Xk5-b?m#-HM-T6g(mp5I+X=edzYKqwQab|Fdx08(SJ?V8r%hsIPc=MS3TDV_Kth3q7S`tyOA zHz)Uzom_~&g|UdNBG+Zvn+r-TL(yU{r%}_IjHYHwu2pf_^uE>Ij$U{jj+eb*WF7g9 zed{{K+=}k$6DH94$E+8x^`mWUl%=J*NgTiSg=R;lzwXU z68F)@l{Cw$nf{#WL#npm(QLGSZSoL*b>eaxFa`xDPY&;8>zvfwaydwe`lcQ8HplH@ zl`otD3TGk+Deyw6FqR#Y z;k8N<{DKU)Qk644ejqJ^cVfFqNviN;9OK(jHRbW-ayokSxo-v3I&c4c`x5+C52n7< zg{A;{Ky&$O4AR=-vc;)^U_ggQiM{>RtA>( z1!iA=;R(~BK{Yw7d&i^BT!L^ab#GIPa+LTT5zPF8v1W%Oqqmg)vNs2i=>l}mV-%p# zun^TI!h}*XVk{nrbo*v}zzH*y%zX9L_Y~1-Ts@NSQ(U&?ic*k_$gtmJdfjJG_~woN z257qBhzO~XCK7=$xedoS@2z;_l(j&jm2~g15^u`LhPJpgvVflRjyOe{6HfY$_&2&9 zm9F5P8ZT9)JY#3cvmUS45yBP8(k%wLZd3)IYHXo7+Tqfy6iPfQ)|@&|&J-J5KBs=H z6oy@%fj@U_SrmT=IQ}e==~p;;L9hCCWs={x7cg(2X}_rxVCT`QVU`*dtc>pMTd=KK z0=LcCHN%hSjyXs`>Yl+i--ECdzInKG>34!JbzQexdf4ykw{%lp7opqxijg>ScSJ!9 zUcNj!%8O+k3hPxoTL9jdl`8Pjn~EJ-gh8c61%rtr)4rI1qr1F_T19U1*75J$>-cYb zDu2=Pf0y`=yzfrjv+`Z0K)z5f)Xnueky^ffO(D0F$PP8VxQdP>DDBb_RF48OyO8qh zU_@I&$G+}Y`|1yr?%8;qxkP`GHf}-vt+bU{<$=5Q>^z2uuvE7=9>5~_&~C2?W~_t& z(*ELkD{c4}%rp8-M0jp{?Be|Vi3X#$;x5y6kU0^KWq0M#A7Sw!|0Mjf|BVDk1e)S_ z%1hl{8tqB$9!vpp$DnE*TzPWmU^pHLNQIjBl%;RB>*+db!b`SHK%sm`lburhIr%8E z9>JPbKFo&b94*q;w^( zdv>Hi)>V_wTM-p*5cBRJFKyy2evDMOS8G1I5BFn%ML6~;6oO5i&mgpU&?IzwZjViK z1mRs?3py@P56Ww$@$x1LOUv?QZj45JMoV{W^Fts9w{gjqacc&fh!>zYTdQ z^rd!7z_Zu|2RHp{->=1G?lVt)9!^w>c<}HmjhD(jP`39M$9(OL2vmHnw+xNfTFLVq+i$y8S#->oLLoX7Q`BjVe}^33Vo)>>8Gh zSgNL~vULim9*WOw-zbkya5M(=b$T4U4>rju{y-{(HJ6XAAIki3sw&hanhJT=#qS+! z&+`w!kQH{e@7gi{&E;7spdG#U`hMR3pdEinw!gdoSASqZJq-)|t0)0paUty9%!GhK z01Aq1QOCT(;F-t{XN<7ZT}y0Qww96a#8cu9fQ7k*{S^V|3f2L-DrNHi*!b75*}3c| z`1phVZ{4V5Y+l-FbJqHFhWK#Oc5Y(vQIRG!(Q<(g8$!NCBaT-QRV6GX73yYHzi!(#Y>U+F_lOQI5g>Xzw-e5wpZ_#ic6;7X~?! zzdDdlqQWXT0cpUJbtdSzQaNPMT{O_!mQiVFUfY`>(}+-4YvHKungFxYzRB+8TIf{> zyz$)WkWf3e1?}CwE~-yr(khEbiSc}?Mm@|wCaMlT-;Y!_!f4a(KyGINUUHMI&S~g6 zW=@+qW&q6#g&E12l=$v0X%~*Zj!gt~LF-;!;QkM~@Ta=OcV{907gU&=3-vCOH`?Nn zCdzaUe%UQ7)C4;Vss|Wxwr}i&2ZNN?{IQDb(qhUk`f}?a7BilgQjdo4ZhJIMD z7<8acdlv|)9#4)mPJ99uLwoWF3 z9EVh1yljrV3AW)E=~j+?m1QF4rheoB+;KyGO2S9!Lhz%YfgVE%&g|+W?h$!ev=N^_ zW?8--J+3L7fi&#@;Bi@y+L@o)E%MZsET?P5@_?SPrwz}~erzQcVF(Nnd5ZI#8)bJ} ziQbEK9ar&)or$a}jF7!>*?z*I4G+%;u8JxGLVSgKcY;9MPM-^t36gS>oaA|!VLtObAA<>c27mf=N9)a?q*kfGDboiv5;+``oa5zOU;NZjms!GJrMnHTFpXHUtx z2^aYNqp>Ij!bPJcdnFH1g`^M z(#@1tNqsi9AiZH_l$dNH)fG|eHa^rf_oUmNgv&)93DFF;puqOuXNF=_1>^59sY6Oa z*FIo>)72n>CC-;&^P(q4y|qV~t~~9TVeq_|ifCR=W5k+syxrr8oJkQ48^YB|(v1v; zSKLi)id8zSSz-_pc`GSH>6kM}EKbdZqgOjx!&MCLj(F^kA)UU0JsrLYWOYfqg6MY1 zzeuZtQ_niPq29~nJ$V07DWh1Q)a+TE63bxmaI4`m0d2<%--F76_YRdUBmNf%YDF}6 zJwHjY6X-1zC0-icF@re#V36jhJJT0~K_zd}PQT ztKF&W-wAPN zNL(d7+Z)k#p2yu(qSAw-cuCVFh;0oEOEX8L(jimB%#EGyD2CVfz0{*Li(gN+NSfN< zJ?|ue_X0$%%O(2kN#yy%#evW(ts#tZ6%fYi8#9vud66^tQPdW>bkg$uwM*`0PAk13 zKAr$&sg{@1oIbONdG&VeE_a1!o8{s!?*Q@6-z(l{zb@Xt;e8dOW;!%y{4;#f_g)ec zz{GFw$XHbqI(!vQYst$!vEf{?2)T~-itKR5m*I}PFW8Rhs;T^C_LRxj1-hW2o(_o) z#Klnp`Oy+%y=Ft;#`y^9n-=}S zKkY4F7f2m=iK(@eZ-`ctQJUX^heKLC?{Nxi14K?L;@)_2UQHh6OCBBxk*R@3E2o}S5Nnd~mwPo%MOeNVI-$wf zD}~nV<(V6uCche+PZMBO7Xsk@91$hd#?4TzEZe?eQ--p@X{U}})8Y~fVzF=XM2{6G zZcg(QuPuc79_uh3iqB+gDT}rmHBmwowIhCp!@|xq>3q@7w7;vzKkI10Ve)b}_|DW% zV&B{60=iIjuRG`X7rOA*?ZUr=aEw37JDx<}LwE)d!l}9>fx3RgZC!t(Z$y7=ePk&o zH}r+AYcx8lIM}GRR*X^M2IA-tP}UD(Y4nnnPx=-rzG?-p%nOLxs3~4g^a`_*03;t! zP^7aqtT+v)b#SXPY60e%wPK%%?JlU?4aPD} ze+wGGp;JOJ&Or+Y=UL-1OAh;VEb=1iFsReZ_m4ltcgLfB*(BvJlLv9WpEd3{`FS4Z zXiQ?*=F)dulwB6u-V&NwRQXA&d7HB5GD#*CLe)?%qkbV&WeYlfv6!t32^j*nUe!GF z^G?_kn5(R^-khcv)ONx!WMjuqDED0fe z!%a+jxMvJ2J%EWAz=*ow2@0hxq98sI%m@nj3GrZAl%vBaB%`okllzHI?MQ zG~rUmmku2)V9(@M65oPhZB5KQ+))J~(hUvN_gtTSZclRu-N!wv_$ZCq)GswUV=3qH zCfrH$n1H?<$|N;-emf6@`UNWt6P~zCPki?`-K@nLnhP+t^hbx%d}fM#QBe&YacP19 zJ+mQcS`%y zEBK^6MN#*;WIdjF|Mi&V8!s;lOhZ0cH zWi|X@7*s$g%UFe5cv89}GmCE)(LH{UfURQ)GouWOMD2=VbIpH=BbqxJnml?_MbDf-!|L7`*^uOOZ~^*?H_3xRS)3fweHfi!Mij~vPVD~`K_^A zJ}gl+nC`|{0W)vu3ySp0QKgB6cRQv67GFXZ=#=<7tN@`~dILg7MIk)bn{gx20h5sv zL_QibP&5D^Mf{w*CTA!=?H%ucb^z4#t2`yjN?q53jhKj{P{f9ay}y98H*E}X;?gm= zmS$(+-=%4(x#w0Y)d-&xrJ>I9KHjEjT~fv*K$=#378$pyiSKJarrztV4-|M!-e0Ep zn%Ne_@+Mk98LFhD`-Ic zlaceO_FH5o$`<*|O7;O#$v8kgzn_Ym*ImegN7k+~zI>>F)apf*O5sV9ZPzZX4(XS! z6l&>n_hpt<9Z8hk%_crWx{tYB((X{!>Z%ZfIzoYy*Ed@_1OD_0eZ5oGLhpgf?x;pQ zb=~=(l<}u!sp%)y{l69QYtE5CeE^|D{>8%o-VcEDlYRh89W4X%Uu`n@dlLZVPc-Sb zMS+w3-#^~zjLpm1+eVC;urr@dtC+$|QF+3Ms%L2;Qkoe=t&J>5c(_xfoNBxMCo&4W zAOpla#GmxVhL=4OE)AzE7yXDSsBZtFUpn zBDhMA22DVnMl2$&BP33Y`t$R?-ff001=jQB0OZL6oc($8JoEoxz>kfuJ2SEdjwEOR zr`ELZm|+r93$$0m3!Dm{`}kIiDZI!uq;9iL7At$8Tgw*uV zbDIMARFl2V#7^Z!V%VTyD)2E5`Eh^$Aaer+%vN8D#!V;(_5PwA&ppXuy>YTaT*jBH zcck~Wb|Bn#%Aws$I{p73{g1YsA2-U~9{aO-*#xwX!PjGaLt3(rQE@c6(S)~P+Re$4y2JFoe}26|v`_rU=M5bDvYUQiL~B;?b7elA?0PI2}2NWZ{cwWKs6 zDQ-5?h)6Y=~%A*||c9EBIYY&hqG1l0z+XNj6n$;gVb~$T;q+FBs zLY{ar*1cNvoiv;jfRaoid&VXt9+tSN@<}yyCj)XhU)%_yYiqxz7KsZXIGxCVemCt+ zZa7rnhzBS0d4vjYC4^In`;!LRho&WyOK+T}b)E09;}(vnXFfor(!Ff>*{;!VY_QU@ zF*Z`u0!}0u+gn+y{jh@{mxJEwMUd2;HOvsN;uEdWsFaeqgnrCL24fLeL~+BE`s_mM zNtW{&J__^M>vx zIf-6wJ?2xhgh84uUhdViqiu(=%+V3UV--NzarqvAzwy~Y{<53D(d~}E0aTTq{w0g-w&8xgT>$%%1 z8D2jI#qAuqkbAjwdvWT0%JP?Bdp9oY&SZjrcN9>qGnqz!qaea~=MR*G>E0-QIms~+K(o1JvX5!^zGfs)*Cv+QsAPU`&UH2#dRGFlMfYB%_*q%)pV;zaK-71w5W5W@{HI}- zP^~oyrdCn8{!h(e49_BC1<+P^+d`RV<(3$A+mXzipLk|4rQvv5kEM(5r=%v2C0N7} zq(#TX%W~`UDzOC=8K?8T^uch0j-VY2+ByUS>C>W?>`Pd!XW|UApMGNZMMjag<9$w@ zl)08LE7q|`#e(~|PDO?e+@8};P^@_u;}xJ8hBr;|=C;D~nDU*;FysC^wIz3UF*NHI zmIknZ>RuMy-fZ@(cJceHrXPBN)C@!u+DR9J#Cp3~`E*L#@lXi_`Xn__dGb*w7+ZM$>%bQ zxQg%dlWzGDCDnuI4g{BoeI$ti)jG>%B=H4Zc!O?Ogkz0bCe)?IX?I^N#Q0~^le_)f zw(ZXdJ(tv7bv;E>U6pOyjs1C_q(YT>CO z3UH2tk&&K%LP^%ugpxLUBTR)D#~o_%_!O}`zsxHaG|DT}SOt!(JU3_ow-z*s?Nmqj zpeWerEBZIHxJ$LTAo*^Ipiv{AML0MLRmKP<^M(!ItT0?@h{Lzn&pH%lzvC#kSGOq zTEf7KI!Rf-G=T}0fU|NgXJYnrVMkOPqDbQ z=wSy(!WhUdgzO8k8i$|fUwDoIe*#LQe#h-si^_V|F_0}4C|FLhF=)M)- znpqla1M?Stt!4P{FH8PQOW&QY{j~@DJsr8d?D(G?$sIR-fA{YX&;pK+eZTS8>JFHB zh4Yx+oht&p^dVTUBT%D&b&DPg#!^HR=5SL!-isQ+d(-M^HoWWlChVIbV#l(G6smn9 zO-FF}(k0qnB$@u`T(l9ockH59%>jeV_NMi_A&$kD+8ub2Cdx~=B^pL+9ovTCv7=?m zp^fo{=z+54_4`_NH8KJbdA+#0HWF`&(RVz);WeQTn)F;dR_a`kCNY(QpjE!y7Uy(e zr9P+-ofpJQd4qb$s-}MX5hC4zB1pUf7q*V6bO!I01^E4nm&CBfLPXLDll zxvLQ?a39-10%liq@0gsQh4X*nwLZ|xe#iA6td1B0wuImX=Bd8o=W?FHoluQ<;+QKb zX%d6`r5W6CR??0zB)(`rRWCf~TR$*oPlB)l_Q@+ppmP>h<$*4pr%H}4?+i8kJyq57 z%|PKqU#ML}p9+q9;-+ecy7!N1KoS+BXCqSaZlOdO*kCS7vws0&U^{{S{E*nIM7^+| z*|ize1Dk+Es)i4q4x#tN{NbRyouI;_Sj$ScNyo+O9ljM9xOGoC1(RY+#xjDfqYs(P zyetG~383OeIYYJMAdr?muKn4p!O@Km7-hIEv|63m7 z)6<`I?){UHOw4Rdtu+ix|12q+kS0VA0%ZO@vTKjUZHzN23BFf~p^x6eqzEQlJARD8 zgY8ISiHmbCml*eRoon*c+;~>yd!;b*so-&`ZEgS4r_tuHDI@zJT2dk*`+;dUE$sV# za&7eVxHhoZ$Zov>sLe{|+r5;PAt^YalsZqL{ZGN@+*qDQq3-zv2EVvI6zqW$JVB(u zJ=gQHw0yM{uT`Pj@JQa=lwpbJw8Fl!59+RMm7D@D6|j7Vdqc&)@eP(5zukuZo5BJk zX6S%i9n{i?U@MtG0Tcd#Qkn^K33+HZLV9d1lDzd$*X!NkmD0|euU{?dXH4HV;WRB@ zSzr@VHaI_0@I@arY@EtQe_k`XYTmy}Et2VRZ?xk^k9^&xooje0F?T19- zEa3JHSU7$bw+G_5`jh3MX1NO61jc;Txzn+YId&SJWTO4N7#4eU)imb@Qr=7Jh{W6P zYafdB=9Cd7cAZ9lEHgg~R6(L^>5IjfztNc^OgRc`|Hwk7q%W)g(Rg4(XhVF!-3`{C zn^$<9T-kkx*YWylB~e}f)Q*#{{&T8V#ki1^ZtWjjn<_wrtwzZiB-s2{(!8>A^vZvzO{}CFx5ck zukk=u`F7v>G9;3N|GFQ>GAfrB`!zP2`VdX4f9_m8Yg8@?#NlS#!FF*-(bcYb?BfWi zppi{F4~*w?O+cfi%*T+OQm`h0&+t~9^5p>xxHl-EO@mVe8Lg8e{`oaG{jKEHJc+nQ zc{OGE$THvq3y<^{R)Umb$BgB3Q@(6YsDvq7AeWh}cA}Yy8uv}+=AvkVpRT%7nM=KJ z;}O?7tcR#A%jC;k^e>pZAUg4S&H+mv`MlkU!@%EEFpH?j!)~lEIO+s?ducc-h2_QW zZjfLQzdHe1Q%J;R&IeN@^MR*Pp)@qP56(4m2jabWTKTr^Usq0mQg_AGoPB)HglyqM zWGfb=5Hhq}pzz6(4GAni7ApV5dUn@x5Ja#PHO`_X?pSB~#^TYCS;-hX__sy7d2;aL z<2hMP+|HuDG8oR&+P$mYJNuM(2Yo3B$P4~2^7=bCxSdP&PqF*=u>GIrRMP#gRe`ff zx(0f{adK@nT^$W;;KP4|9>PC?9>2f-KRoDX=c06^cf6>|m(e(TBtjF}E%q~5oagLqG`lXQt-aoLbx3-D) z9xA6=Ji0XvaYp|F$Q`Fh`34>z5=U+1kYR?C_Pd*^r5SGZ&j}W=l6}Dei^#drF4ld} z&cnhbve>rkaaT(njJ{Raz}%MHXp-qwwZ9`9 z|G*u{s(7;fx)Na1t9#kR_n)-tmQ8;-e4``P1M9&Je_M1c(L<^q3)w)5Eb)A7le$YY zDU83=$YO*}{X&O>Ep$)4hqEZ45H_p(9Kzp1KLTTDVU9THI z`%ux;eN9fp{YmNONWW3I{@i>P+_4oWBKwT;m77VI!edR61|KMkcRe(gUT{^bX?EZ4 zN=r@U`k58~lTH7{_F)0C2I=ljrMtV4lR%$eu^ z;k^9h3&OtFzV?c1t-bc%kOHqm1$>8~vnUhADn^wYkPO3=lbgL$DgqBTt)?Uk!~4t# zln>Jj5(wZA#;5g5t@_zH_g@*`cesAv+hrs_0l*5z6L6?+a)4jtjt2|+-fnqYANju(Gi4mm3Gp!I|_Oq)xY zY`szLr3-6TOZ}U6jCZPOKz;(a{@_`xd`dJ?+8Kr0B=6vg831~f`x{iV*aXu6s0zgh znBN`t4|pbAzvC>ChoN|IQ$~cN05|1pHvrg6!ehPX=Y|<1DzM)H$}%X5S_ouo^wXjZ z-+_PdQdH-~Umo;I{g*(A{sZ&-4%8pIq#lq0R4_g9KLNU=yyh3P@vHGMUI$>+XIq&O zSt8$i6)QP@qD*QTA~od7il4lZEQ*-)hyTdLVyQ2xLz^0wb5dTUWEMzpPq%GRe_l@x z(bQ1kzc${d+hr0qhGI6{>$Z>%(;B)J&Ap zB@w%VJ&YYpk&73fD{J*8K&!f{Hd_>eAgG^J(Sj=xlkFL0zuGMJ+>UPULgkS}{FhQK z%BqDm0+7)7C00MX{NisZ)qggWJjB3llcRVEjx5l<<;PBJt9D6m3qh)tA#t*hgaSQ3gpBKQk4_!fP1?u!^Rc2?9jBm@{r71wVAFxsI z94a5l{tQSaC{uZuqD6$6@oc4<&b!%NRTmm>C9~>A&}$9W(us2 zbd|@|b@~S6fPo?`c`yUwGMcoW&jfvG4cfY%;TvU8I5%;Ah=sqV3_rX0>2E36@3&U| z?de+{E<}3Rj;3;eAPe#YefCn`kklG0geM*Ys_5#7BVQpb*}k1S3s#7Zw|#fP4*)&{Ua`!dBx0bMNPOGj8UxewH!N zN^|s6_2U_>GMc;b6CAJsCFK&j2@sR7KLT`2%`G^c_-XG;{i&S{HIxS(LqC>k_qMH7 z^8_(s6!!-}hCTT1o(0YmrU1_reFXs9m*2cSyseL38vr-mUuxMu;Shh)r2T__k)09W z0L36Rm(k8U*C9?<`>i+085K3 z)CT~T*7XWHNYh-O085e5^jdA-PVykJ+D2Kgbj2kb$(6+n-SFGiaF)9!#t=mZV{ zDNY6sLWk)d$tYLMK|eDPO=E|)cW0D}P%;6Kti*y>xv*aNu8rC=#D;a zh#}q^UZcf={C16|RLLrZ;!tN~$NIoS4QBIs8sZ~SNctU7K>H(6Xk+FtT1){|^&ns# zd?X65ek2M&9h+$o@E#-2#?kznh3xbB4AEzQ=azsi&a5By@8o|8&d<)h{1Ti$X__^X zmw3=0K){38aDZz={rspvIK7NL&e1B(0XJ>-snPM7EUB0g0ez3D43JZ~<1r$wz>pKs z^i0_Tiq?@Zt`xQK`H?=Kn$+s0r7xBNcQBevC^!$MCmiK!F^61foG*?&+TNAX^f!{u zi@>%5{90qo(3b28Ajm(H{SdZ9Hc-r580sZzI$EYo&F(>07u84%*kZ|WE zJ2xJgK_nGw$de@}^ZJrCb~55K9Rk@$jeg-09oFz17uD&ea6!Wh0M~38$ryqxX6E4M zXJW*#9T;~Aca!XOE0zs145^jBpr4u^_itslI!i8cfRrw%7|@M?=o6@aR3x#1i4+5Z z`u(AyMEl^ z`6ra=_p$#EJ&Z>3jQ=74LJ3VEAWC>$5D1~+8x4pg#Yn_JD)*5}n)Sg0fZagOld4sf zgmpDJNwvWi{^V>uT;yW+Nrs@l`dqktRH7CaM*RJzH*~}#7FGT)4fPq;VslLJPl-`? z^z4}O5;>ka-7(D|HOI`!FfWtW!1)f)j2W5&kdmEwL`wJ@QhOVH4@j*RAYW4A<1>AV zSn8}paXj4gnDve7dVYjxv&E6N1~$5;7`k@yxCKxXx0e0Tbn-{q^kZG^;iZ;eY82p+ zFoXYV_3JO4;13`2v&vUQ^Z+1DLI^tYJ3`>`s4DcURFq6Ecnw}NPm?d=c@Y`Z%%77< z_BDxqDB2_(6;?19E-V$5=t`IM4V+t80op7iOP4@rOI5Zw{b17+HA2zA>scd34D3k) z=GN=#lbX@oGv|G{L-eh%ZJo-oZ0W>JMq}?MPsx?KFyY2p zP%oS#O4Ff>ke?VLKZM%s9??R5Yp7hxc=+U)3!K9SYIV!?=78Po%V)Kz#_fg6N3MZq zS|{;9$v*$m${!wd`)}67z~;xw*8@<1^eE^ku+`snGzT{CRjVYWzF{n+UGc;ulIMji z(FkzhcHZ64&d1~o$Q)Q(e4O!6c|>p<6lOT}r_D%xnzk91+{&hWg;rx=6ytcOZzKo} zrJttWS(!w}Vg+nOhzWO^wv$XY5%qFPFy4(1lCLNAB zkJm8DmWwd8NSjZ*65!L5<4>CN-}TQ5mulj&6I-h^2*_=x+Qh?trWj=G=DDHpEPw_-a_zY>y0}B(pqk@r zJt&traq8Xj7z-(j{nLoTr2q`tMB(>JieyGKcfu z+Tx;ugmojC>bQo=4*<8;*nnau6e;D5xd8p9UqR#3yueZq`o&+DQJA=k_Fccma~V}> z0s5tEO6QL(2hgt}a{yYu>DQ-!>sLL4`S10s`z6w52LOxXUs~c{(zhQh@jF_7$OIm= z3s7AJ_^o!Kk4=8Tt{+Q-1I*GJd@YR;^Ea1ev_1j*@ydLrf04*H21$tpicf=vN~v!9 zT&je25>3TPj79dP7*J449@^GC12Bf9GM`h0zo7WD2*ay4m>RLvhG!q}w>YZww4`@tH!eNb0pQ>%R!pgrh%j{qQIWe&$gQCU0^ge< z-ss}c?evCXgSMU%MpAdWU|u|H-_{(>Vhz{I?0u{pf)9|GJ@~C(qb2rFb?ZMFZ$$LS z17rb50E0Z!?h-l~S3`tabd2z22^kQbo^)ZisxBv(pCUUQk@jxZ=~MR>$o|M!sZOU) zuxP&@BgLZP|IrUzFsZSwSs+gSc{pRCfNofj;xP+FxYLw)bfz_pWrDzm4}u9*j2dAJ zj0e=JvXU=uD&>P-X$3g?AEZ!Ixse`riEC%@4GeIZ_!JEIzfDpZK{6uV8HB|3Z{Bbb z%aw;HC5F}Yp+TSaQRy_$>eW*@);M3xdO^K7y2=`UO1HoIP;zDQ_j2z6z;f|RHT%oj z^v~4nM;8158-Pj#JWvVyhVeJpvG5aM z-&T=KCb~A_DM$l__@XJCYA03%&0&ynj3;t^@>>2q;H-i3PVyN01&9P~@2e{mu<`@_ z6wN%V$Z8Fm3qLug=ka}A&8f3>f&cLIni;jEhDc8!snOj#*57ILPC70SZB=wjDn3G+ zg4W__8srVGui&=yf!UK+Lv{kU1;Cly)T8^MN7btxFQrqApU*Q`+f9Ef=^N5tzJ7r1 z@|UpvB`^LNY`-VRzZJ&5hk$R;`JJtm#v}D{n0Jz}Ntwm8dc0Odrx7s9^^5`zJd;l_gfB*G*1OhL5PIm z;}NMg5Yj)4g4lG`$kyXx91E^0x!uzK@f)3z4de(P=4V{& zk707?fv<{O_}=(8juIVAz5sAAX(YnP;;2can~PNO)0cv^sdk5LCey_?Lx2qMiy+gPMu#r?3!el+MJAg=_Eg z02o-1;31ws9(DTIS$6Y^19g@E@)eKlEbBEhu6%vp9<4Z90(HEQ?H-hvprXjeFv1PZ zbQ%KulM^n8#%Yh9HxWDds}!&2#!`pcXx1P57pR%Dvmf?9c7BP@&yLUj44ogsB4C4- z0RRu!Jz-;me9M`dB$NTy9>26DUVi!JDt5xvOF~b%M4lx|&tWuKSKd z^#addQ;|3t8pIjDu8t$964}cA!X%BcUx*}fu_r1l1s&)+h$?t(I%3>EjZTwAMtB`X z(0i~f)Y^3??XS!pi7n4s(IB^Bno;{~YLx$#jm#U;LD7sjq)9FJwM0Y}it@x2*lxyW zw2JctYfbQW&ym~vtL|?}cb)GlbF|}xE*}-B*Ea`d_iYm+`V#=e^$wt`+%PwbGS!DOVLF?5feLWViKIya`X(4J$cvR=; z%y7OlW%(5qICBx<71&zK*p$3fV-%tfjaM1Ks0aeZMb)I-?5VjBL-EUZ! zeYw%tXiVrme$1sy#}^_0+AIBK-TsHj_a8h#ei6Ex0HYoM6K>Bw*o?|072^6*hfH!a zk1(s}#Zn$FfvH-@>WSJb9wErN&UAJFMoU_Sq%+{AAfXsVM5+jkbYwQGjBrTtVTb$g z2w3tE0d`l2Mu}qk)?BRdd_r?LG61TXgbd}LIw1G_P~*Ywp5~h2vP!d7z0dsk&F-r3 zRy38RP-M7JLtR!vAuPFb2PI3nk3>J%a?vTyD_8Bbhn_Zn@PN5qeF06obC1*ebAix8NG0SWc8 z9LHmJNZ$lSsYw&!_9FJQtY`h1py@Uq&?Ic63m1yjP72ua`u3TI>_q-`EpDA@xQa!L zG#zs4&{_}jMZl)uRyd3|i)<;P%M({zkaT+NZWqj`jy5DwS|8TP-v~U=>lD#W0Aznm z4u340J^ih0_J4S%3gM4qJT~3_qb@e|KN;v>cWeKx@qVnL5&)+E=!m~f?oqIRjR)X> z-+ErX#=0Il7Wz(F*0{x8P@OMS`Y^h@n*}W;b6djOT5?Y@JZ|n|`8%9uEa@qrm7>O3 zL8^0Zci>Ne7xy+GJz8ONiMbT!d5bs4xj3N3&<%1WYL1e#9jjNRDCLtndO;ANB1&pB~m8Xw#62GSgQUXX3_)9q{{zA@wRh|C1 zpb|2)6r&OVC}ro0KhV_??*l6LIw~Wc=R=tAC-C|2t9jF9iKVQ2npN70uunNKJyH zE%m>nRdFE2zoV52^i|r!%Z0vwaHBu^y+5NUzf;Wrjgb0hjPG|s{trde?>Ec*F2DJm zr2oqS74En2VP#~YXKm(S_4gviPvi3UVSc+4<8LLsKMwc(rLF%M&dA!{%)r#l+T`!a z`J>`9{TA7NG4OvbmsRBVinx%i4u#|HSn$VbnBJ5%14O_3=dXkKcgwczI9wv#G|fZm zYzQ`qcsyD3&X6dwHDc0TVL;7>ikZZ+`bWX4AkQ2=${xsWrTK#l0If4uaH$(9c#u(B zx1KdDC_VgNKKI83A^FdR{e3~`0fmQW=>Fbn z|7aTwfGIyFT7M4a_rd>lPu3%_5iyT#c_J>d3QmVm?x+D&ah~rX*(1}@zfHyvNo;k0lQ6I4xtVeAy2b(uBTy&%EbVg?EL&vKM2WVsQIomR4Mq?JBiWp zghOoj&F;E+8Jn;GFL#;-re_m0yZshvG%?fnV-6~ydQo*z&X4jUBXcDBDg4ogb7 zWD^RQM8Y4+a{uLmf1BpxYsUYcr&k2vAy|GGP><(!&8g^1YVrYPLu7*XRYv&o!Z*CK zLSXUS%#+?N@ihV|RQ3||`eOGc)F;63EIpw*=r*4*dl}jplgP72rx{X)fgF5Nmlvr@ z7!qNfadG9OxxPBNe5{JHzJD~txcOi(Bfu0E0N?*M#2*a;>n8^BE&Beg*z+SQ#6Ma5 zZ$koZN&L;U|ID&O624VL0&{(N2%a_7HIh7I=j)(g<>O@?E8!rnrT{#N#>oDRp0t`s z1*(W5@n3}{m+;!shqi!+m&E@)*&ikQPSt-f&~K9c%Pjw2NS9B*%*p*IA;WJHLPU~M zJ)G)!sD%7n!tZ(6pGxRp`f$U~{}TZ@h&yOl#h{Alev?lG%Ov^X?c4|M`)~PvR2NWy zx>y@I{yqQr;~&HR>yNDr>;b3GZS4QqC=VL@Aj0=i44eQaW(7#r|Mp!yr}=E!fN6gJ zdT>`iA5!RXd^vj~F(Ydk8$&t+OFajNUJWR9?0(cch^oKSZ&`4D7d21NE z?p+ErU1GoeI#`W7Aj3SJ8qE*m*X>hhvimDCX$`vxYoORIGE;zm*W!z3?MG*PlWYgi zTEY+nA=Bw!T%ULWTKe5iS6VMRESipDm@l3*YHO1qjOU|Di^>#h1Yw33C?&?QNORJB z(M`LZG#CU?JYv$vgY+FVc;AR7ZF*%}WpbPxu8D{8v}|ypS?B<19;pF7YM;s6Txd30 z4{m5po(VA=YalNNqN!FwccC#+T*?;}?i9!#pTNWSoM$?n%R2dWmog7$VsuwDUL53pD-#Sz|P%Ut!#A1_J>!E-K8pw9nld31`o2yPpTesV5oJtHj_kw27y zD~GH*A9fVjThF+HZX-20k0PCHDxM)C{gkBzD6JFixwbTS%LAvSJ`itJxN;3s)TSzEg-AvE#KqK&Pm9dUib# zyv!G`E9Y%G!f`!pS(y4|&8}5Z%ty>+m4BZV(KpDGsz!k`S$0D4ME9Mjqy^W^WE^f_4i-D;;1 zF*KH@jQYg>-l^rT>PW-a`@m0oyGU_*hMd=5!s9lEcCPy_F**?YhMi`$Wv^892{^hRxwH0MTm2r z3*i`wyCb?UfN!=p`k^_J@!G2qTnv=(gpBVO0r+(UP6_AD1)82M26HlC7^cZgTzb3Rn~BD%)KBRqRwx|*}JRy z@z#rhwp9CF6S?B8(s=Nk!U3JjU$7N{{_{GRYc)Q1wN%rs6x4>> zOgscVaptGwj@+%YCk# z8<;I)I?$D@TB@wjqNFRQlju^sys*;1A7h2ReS7&b>gAa2HxoGU0rgDs_F`Y7^YP*+seeWnVv zznotBA?<~=hHbnq!>JrncxSKzs=95SE=!p~4-*kZhA^HQehRTAY%OYQ5R1Rs2?Drx zJC66OrvUFI+wyzqeQ!^QmZ4*U_MtwFl1lk74~!P9&xdL;^HKO*mfk%Bjfc|jGpyf5 zWvvxbA>D^dQF7MS(Y|;xLVizwEah}u8SkW`&TG9h28}L8DMcJ_PCwArz8`M5fFslB zb&)8TMc>S#Q(HTPA58Fk=xeS(>F^OYaF{p5$%fozExb?9i<|jSE2^Yh+Bah+i-}B= z#_>8@mE6$S3L^u|_wNQYPYuGjHw?>tu8tY*R6-zbE^+Y`;l5;rZh>OsX^s~fOJdDX zg{@Pegv3gwCo6ez(C~B%MGs(4Y7%XsKTkgnQT$M%f z#^(lCZ4q&L1*4WLsH~c!US^o9*}7t{sUvD+NUUZp$daOuaBuCrl>0u7Y2zszAhYh3DmI0tCMKSU z*pTp*S*X6>Y!r6FbR{3?xT1OYYtvKLOpb%Wz*R9!12y^dRK9Sr+{YOi_qZ z`p%2j&4z6C30ALYMTMPg|C5Rx2h>$o76o8>aKtT6$sjFPZm0hGIE>UDaj&=MVTIZF zAF4L5;xH6o!mNU*<;(6)I(NMB90NzPR|o@rv7dMtb`ycHN^Ufcc+*;MYFE#*nB1!y z`%u;T@YMSFUE?P7QhbU#K~d9tt8RR>;E6Ss+I>oP61!Msjl`ZI(mN59I^{Y;+3JjC zL(`2Yb~v(!uCFu;_Wpwy1npuYh(%S7V{qjt{+ zzcuBj*PAeTS|6iTS_Sr^PtEG&yb)aab>)Zs>A=bSEJ3c8c0qwR^9-o2*z&tdU&2eP z+s=(%e!img+<(r)5pe`HoNLAivFb7drIv)sZd8(=T-3T=nyO?|*+Sp*5hp5y9+(KLY};v; zafjsSuiumvak@*EJqt-Y9A>a3SrG(JnrJ#lB%)<8qTO+hX^MiT-f0A;Zkn=anbR!F zG=w#;DC_&`I05Uq+JkJaK-=)%^|`TDNq8>x2`^=Qs8xkQdQQcP*kU^1vVD88C`iK4 zX>l5K@9OoAhn|!gkq;B|&`+KKnX}T#5d3(k$hqZzQQCVeM#SVz1|D2G|CF zq|N#28ZIaR+AN8LWrl$U&!*nT@2^ppL--OlaXx@eDjdNW1(AT@jj^Pn6z{T-OVktY zNMsYj>%$%d6XKAJ87K}QlKzF$^^WK_Jmhk2$DEv;>7FXQ@5RC-r1tijo%Uy!k7(OG zeAX|Xz-`z7J4M1EE!2^ZbbdkFZN+cYn2Qsdlt_OE|E@y05cwV97!1u^2tQ;QE@S_2 zfEAZeNTx4h3LFsys`@kdCV>x7JPFef>XFhO+qw)N-G!JKlk1Vq*wdUcgx{nstgw+~ zthuhpZ9&}BnZSxyO6ZErj;Le$&JfDo8kS^fL&d{wdinN2(?*?X28XrwdsU=HvN`qXC6%Zkpp*( zQ`MG>%DNqTJ(ZoJu{dnEXj?i=ak(^2{QT(~F|TO)p(Ew9_fp$28ajh>VYI*o{q(|+ z4rSZnJ4nPzwF^b48Aw4$2PXCcZ-l6}$Sf`73n~k&QcRCzN9T)GR+Xp7s|qoI+EVV4 z7#vjf2YEh_`8sK;B&L1*WY!X!*u-F5VlW>tl0YF)&Og$vU;j}eikv&|HE+>#je^40 zuMb#w=>|^SN>cC=p%!tmatWs!eMn+9!x52%K#&sVBY1(oyjty7@@)gwN+iJV@_yfE z53b`YR#8rzWzhtlWu>S2q?vEWnKD{&8-c}Mee4dQ;EK^!inR94=(SXnj?noSQY)ISZ;o%& z8gU6VxHsW?+YVH}n`=)TNSX03wV-v~r*dI-DVIXMS56N03pTu2Q{y zlF6aB31jp_Ywo#TCSQ`~{-!rE;4PS#rXrs6C1625bQA3wY2GG=;&5uOw|4%~#%($N zN!Qp|A77i*B;k^-dc!aoT1L~cCTRvM>KM45`HaP2(yrO!)oWe^y9um*ftAY;rF7gWN2qd=YXTJ`CkQwFrQ-bGdCVW6epypdJX zj#*MCEOPJFfbfTL8PqH&u)?p;{LmA+_y(!aOURT@4Kv=$>sY4Qe~kLDp>Q=a1PpW@3Wt))8k*vT&=xF(}>;Cb$BFFKmpG zk&nKroI+sL{rO~2U*`-zlVwNIdX9y!>!m#oqNfN!wRRFrEzs6itk*5#_9;NSxaUhl z+fSwfCiT!(YYNZ2o3 ztHK0q*vTVzg1N%PWFE{k*IQ^_Uc~}D{H<6xdM-IoRg{e?yXW*JCUeu~ z2Jcy|W`Yk&=o?aFn06MG74Fwv&DfLTRz82Ei8OPosKwz5+kkCyHs(}D>pwLNlHGc@ zC9jF4W}I(A7ge6GKpS^hPopW7`~H){?UsD1=(H<(YOeeAsM@hGSK5ma`Jt~c8@Q*Ws6R6zsZY1I zINSouKY&qsZePqhZ1Jq0p6Z18#=b@*t6O#A9rt)8sOocLnn4CLC~b<=E0fKdM7=4g z0V%iLye&gHRpF8XFsd=yrO5R;R|{XPHTL1PAf30$h{c^Yg-jATPwAYW90?J^X-)I* zG=>V9wb*WGvM#(iPjSxNtuE^wu~m=DJCWV4ZM8ZtAt|r$wtioCEj^}q3T&G&I<;(E z!BEMS;Q~xeeND4Ul)a#*GMkcetLaF!Xpgk-h_hQiUvMN(T^X z;d|vGMkCybJU?2E#9bAqzNBp**rWO+_nvL9;`Jxh1+Ai%2>70hh>cyOqRN8eN`!MZ zxU2~Lwy!cTLr=-}3lOnaV< z2l%Wb+y%aNjZ*8sHr30Tp(+_CGoO%9T@(Sv%?+9BFyJ6;jz(!~71QaFI8YLMx4@ct zjpar~x-E1G*ItUFcDCVh$;Wse;(qglozgu@U5d|oa;NWvtEowX^rm|4bqj~6iWa6j z2_2GVx1Gby7egzZ1@6m%g~>%%W+(U#&etgJh1ug0&!YBq-4ao7%lxHiw^)4kg{T_C zJaD9nyX(1wV7}3^!C|%$q$dBe6uC#VyU1 zU>oOGxePNl4MdaDS&2tL%ra4y41I&-L+VLiNZvG?vx+}?lp)iGfSAzMpXBd0I)c}dS`UI1^M>gC6(VipZfTXX1 zp9n&h&BHKb#5!Fj{ZoSB7)L+Zf@OuwC*=zdhbWSsqaB|WM>W8gikg?s@@f5?aXX|g zH?N#J`lPhYIQp#e6r_jOM6elXL={_ZU@Na4?W8fNzxlh$myo>%dwF}XMLCEzW8=x& z%&418tRYslYXmILk~!|;r-3ti4)c&vrYj$GJNFIPh&KJU_+2! z(VpcLl@~f(tW`v2R-CtY-OaWISSaEiu+GE;zj=Y%q`*Czxx{<@v7s(!G2FKE2-Y-C zvy(dyTVSL`%2Ug^Dw*`!{Ypudc6X0+e0lZ#M1~}Qzr9~wSJxR+H;8*PqUuJpmdI}I zI&KZxO=2u+FE0jSpvukxO>5QM+Df zJf9fwJ%q(F=w24m^Ai5DuQ_iaCv)7;DF4cx+E!|A5HP!^;^WfjLEZ$EP-hqXk92v&Z5r6sPjB8d+$T4!J2^NHbdtBA4OO z#mm-xb!N5Aw5YhfjlS|l%N1X93&_}J0#%pRgyEb~w_XF(h**YuW-a=~mZ8ck6?}+3 zJFsw#z%EeVW5pUL2Lb`90%YT~c^^-~mKp(zfu-2elIOl;h z4xMg=K94aT#J5vi6I-i&f9@mmZ#!M7AS>oqe9490}IGRuivqMc4OT#E|BEqQ7EZ3mxU%|R1< z?BU?p8r;#%f-LG^D7*bE1~dl~VU=oTj;BRDf;`ECtT}yVierjr_ihhS<`gH4Ndwj+ zmvAf@5paDj1P9HaqS`thJ=@`zh>}SIWKnTE5}cP{U0v^+X<1pjb7#wv`Cb)O6cxjP z)inw?I3vA5B??_Ms4y=w>O$RekdTl@@4v*oWd2a`1|fcJZT5Y$Xr|9CO+`aVrtHa9 zzT8^5EY91-&B^*1R+;XC8B8UwbpI6{pttPptHH;0Z#HoC-*YpMc80T}EE#Z?HMbWi ze4I(QRx9~bMt#I=dD)D9!D)wdfh=iaq;#C!rmrK^#$cjBlWCMN!>qR_DvsLM@f03? zoscIM(MT~h&`nP#Y`%&p6?%=O^K$?48M z>4GB}XNzs4P>ty7v|6_vVvhYDOwahC!Ql+WV>>$S2wT82RUhlxd63g<)@R}_^N_PT z3z5h|Z{NowE;a}89C6HoVWw(~DbH}GZe;Tsx~$``wk(^-1rEKujELh#lR7;+ z%LJZXgCzw8spYxJI!b&yb#IAqIs&AClb#PB!qN?R?7%l_7?`Qjdx81TwVtV*Pri7U z>j5M+yc5!4U%S~srk$X>R46KX&BBLy*B6r1qf$b`IEw{W+TYtI+qKGd0;}9CADRG0 zvvCAP$4gY1flJt)j})0lof42|qK)~(Dh~+EXi*O`p zDWUeEiQKDOGX~@#*2FJSmxY3!@b{nmAS?n{?*}ior^Cwp@NFk+;%E6^PH=ImzYpi< zKh=OU(Yp`wq3?k|!T0RQddmZLpYVCwptr&gzsa_IYXaXPh21>a?ydJ;_m@QH`;BfV zv@!ZiSsa#J!nhcg(aR3Hc#ZJ;oo=eI6ZT5>gNIX`}{{mhd-QH5*yb?*_PK z0!6-VuBX`-q`Ud0CpN}Ni7c>|I!ve}qkUec>FA+C+eUV+$9Ag=chQ({;o+1Q+(>yqQY)cvYD+#{|lX_5oJRv>S<$jaH5?G@e!J*fDAndmnGNrzB?7NRyEz$ zaYzJpoiDqMa)hHp@uytq6*emJ6J4a(02vI#fRay=tc~xe8PiHMim})~gM}M!SUM`S z<$HrTur=pEepya29Z|r8-PP_6HS-)TJUpa15)(0F>?B)A0_y(2en=%)q&dC_N*tsz zg-o^6OrD2ww~nadN0KFRN<>k(8qj6kVl7Ltm7ch3i5j0G7bY>YEtrWmwMrjnp#`Th zFlsw8cQ-_thE`KU1ciGi-7#v1_1TTS(5X~F2Bj@L&6`i2sJa35rAvoi|LhjFx*dn= z2|HUbcVCHP#w46jbBKG>=R!U>2&MEkYR%Vt?XaOxdMX#fWGq>HG_k`15S*<%nUe6F zAC22djCn9MH2M&SpD!9bi$vV7HeP9cfRkUqTqidwz+1FK=AC%H&d|;@!b&eLMANZ8y!L&YO{_&Ps2{s&-zUh9AHpWS^9x)fCb#sg{gxy+`$Vb;31-bEK zb`RwbHW0AL_H1rAEQ79G#veUbS5sPz7mKhCr(CfG+fhzQIBGwBdLKT~h+K)Z(G?rd z>INZXjRMK~)M(R{%UNoVu{$zQEo7H2xbXu?-xTWN8=H%sELXonZNlSJFNRB!3HQmaqX4ioR$_Ll%sTtD!rZv|Rf_XI z6+U8tSRT?_A9X2{W_DF{GOEL1!HcjxW+EzulRXv>B9gmsy9xiZ=s3J=7sQGKD35co zw<*o1ZCOd40c#<4!xgubv+Zi9QiznXCFV35e!B{N@t{i0Rb&I|D&!oiL+14&UnI`? zzZPM!(k7+`1!zXqjv3$xnUe_RkaOfO`r{-ibkGW&76I`oG-VkY81SBYzf@4pTa8AP zbZFaLAlmc_-mr~I?3H4j(Z7VjueEn|M$g##C}-NkB{s<_segx&LxcwFRhH_*HlXsw z?-u!!x80zt;tol?rEYG2u*j(AVf83+9_tiX@K4me*Z`v`h51qA2<}x4!=7 z>gZl+jWh}GFf8HY&p)FI!J9*T2_6lYm4C-zbjWZ;pV+IA#HDxI%q0keY6Yan4bNQ; zZ5~C}7wUo;gvt1JF97TmvFro27~V_4G8A?R1g}&N&c>j{xq>g1Qu~#X`<1f$r#f^i zFNSXSr>>05Zk^0-znI;^QhK3_-z>k2FHBzF!aF(29Xy@CEYr;?{F+7|BDITo*GvO$ zDTsQHrpqih7!xN)m?Q!`lb~e!Y3ZYN^GjUjk3a>sYe?3q-L$XRnxl-7dbyhHGwN-R z-z4O}$-!u;4);;hhfk|R$NoAO=B4<`XqKxH)n73w!j(B_K45JAN&_W|icS(T1}6G{yF^?77<^NZz}ryP8N+zwf?4BFk*qY+AtrD4xpTx?2G zyFo_W^4+Ff*+1Z{xF8lnEFC?Ig4gNnFF4+n;+SeJa-2Znn@WF?`Yh04B$T#9Ii(BT zx0TY9Q*(+R5=01fpm)EDHPt|3P zYpZK=$Y4ViDv)WWK_wlV*HSk`TLkTW3ViNE>Q+t`mP!sx6UEoRYGqsQhHJ8>oK4A5 zu$Jd{uX-Hq#|$k??W)psfpUYO-sWCknENrR2nm$x9+%1?)G%9iV67v@zb@{yEzF@I zt#*%WH19dwB;WLFe84Lf+;+hp><-y*{BQL@Z9&OxQKD>JGq<1cK7E$?A?6gLFNra< zQmEgBq0a*1SPAq5JAeWLxelX$-bBwiL_#IFMka1Lh`R{eWpac=KwwG4W!;)9#N#81 z?4-t$6#Y7%JLbjIo0BJA=sZz z?->ukrRT%#>D{Be16}s@^q5J!Ea6VJ9$3bXld{ooN(@hI46mnoD@cbw=7qUhld}V< zWH0hr&EA@?$}IKD;n)#JmFCi2S@Wp+GEXI%Ru6Sx76?2oog-L1-XfVuE$_Bh_5{!z zvt>R2L_z8poFf>3N=kc9!0d72H==FxwxrfR$n)h$R(SaZsa~m)HLQAfiRF-)Mk4pX zu$qwp-axk}Ix~9ol(Dt(9F(~o)NTSg1&0u_1}jfYo?i8m`m8+9o^dr}s!I2SA+}K? zB-EJ6m&pSSQXGjGf^Hb?V*DuF7dY`@0n3|J9~uJ=Z9D8U4_o<~O#Dz|)qD&aO0$Ctf8+(;d3Y;+Z%mgii2@x0+y=_6s=wcy&t z;P__QqhAOf?PISkb1t)Y248uH-R`)tT|kuIRT|VjqcQOj9=$7KJ%5F9)Nhn!kG612 zPI^>GW4=;*lCe6R4^@Su#;mPkFTdJpB>oIy5F-isg2A$_lYCQ6;T3*1R0sc4ko@G9 z*f=A`Q2EyOmp}%LlFo@W0bA<6id^JVwlO?O;s&x{*P`MqJk!VVo-`8>8q_dCt-Fd_h6 zS^}IM_<0xDLwEVlw|*Y`k^f$A*N=Nj5BEU))xbhF)&@q_j(}YyBg2Oy%7Df%K}#D0 zi*Hqra+O7UWHAI@f09aC>fmGygHCNEWF5=e*=`!g798V5zj zYQSDVSzYkQf_N|quRQrnK1&s!jnX-zqLN6{sEiCd%VqI-Ev$6hech0Ia#7u1wP!15 zlNO7e8Qr|##5;i&`)ni9TleWHdm9Z-9Cs!Q&k9qZUYz}unyD_#n}qr;TP3VlnRkNX zE%}SB{RiV*typ@=Us1+0UPNSe9ou5W@5dNDX&lJH=9O~XvJ?u1OUmrkfhC6Nr3ac| z7({p`ppVgH!kKvSk}!5uKC@_79Pn1UpL5vDh$$SHK|&a{QDg&KGEux%-hX1Zd_6|`cGV=UsJR19cEU$fNr1Mp z(glT@mq6`3{#ucYaGue;`^=$c`Aaq9XTCU}y@gOQD&Pom^dutkwA#2!(d1a2I2`H_IzFEAEu-?_xDq*QeVf{y)mj@*&E< z>-I_sGIV!`ba!`mNrxcaAuTnObhmUjl1g`{bax}&oEg3QJm>e^=O37PwXVJQXRW=z zNR9}2YEI9wX?ks@^>5Tgw_Ur~nhxK-FHxfjU}?(dxQa|r4mCm3Vf(5s+;#n>_yN!W zOpF7%e;$l}dOTqM(pF{tP)*`F?Fz8Y@*=#SF&2?M{vI$ zsd0%N(K=RcI>=(q6J~zWiCS(NKX|Cdrm^BhIc$nLk+M>oqwu|JByP`(xVe8MnegG* zr5eS%+$YCteul?LS;VRk;$e@XMR1?h zMv3u^pQTz(X&p)KcILdq^s-b6=7k7S?+dwyX}zJ~8*}l+znUn=HK^ph6wy{FW`i)W_xymQ> zSgCbp%P=t-^7SmAuZ=keYJG|!#Zzc}`R%dsK`;YsHS_8zIShT+$0oPp4k1s!-!AOp`(?)|3G`>oMdghmY!Oi@3u+6${bwI%H-{|w8T7hq@9M3lE5x_hIcsB{87rfL;$tn(cA}FB=3{w zCSORlbI?h`HMUjZj{@vW`b>>&8j?lI{AG#5X6hl7Bv$5>`O7!lrf(twEz^e7`IFyX z2I`77z@iuSC*g;+?%SUmS=LXZZR`h$UQ7Qy{Z`1pqYxog$%kL4t%SctKcn?td#nN_ zFasB2lkPFI6Jzysf3MeNEl?)2$U2`Up|v?Qb>=GKnY6&$8%+&$Ix2X8OqY>A51md{GWEHkB;O zre-mvaYj^AW*g727>G9UTs97vTX}nLD(yEF7kGjT*?KKt_#u+^+2;xpaEsO{W6u^H z-tHrxlZ><$_Xl+oQ5}%2I~cH|SqFpMx&Zekq7Dem{A^fT;W*vmUeUExW*J}NloSK4 z^hkx?0!e+6wj4S-LX#&7godZ}lcD`RD{Fb0!d{Tvi(06d0=RYK$m=1C&`_n-L{O!d z`XHrAabnLj)gS3Bs0P|_jUBIGqXw#>D%Riz&?o0(Vsc3Put!Yh67Y>*es>Z240{Wq zAi2N$OSyxOi2ZkR|NHw+|EBkOP@PBTk06hthZmE>Uo?Uvr_{D){kefqJs%4#gRW%V zhvcIiA$iO+V6HvG8ash?mMYkfbOwP0+#n%}rtt|K%*gDhkU@b%lT}~lZ+OV`Jeh2G z@p-vseC1X>q-5V%*dRZEpeVI`)SPJ!Kj6C^*=h%W;r4@$hk(Jxp`T)a(<=q0*IxCV zHX>)f!`gnZ$O8TH4!>=1*!l!)*QF$r?UUIh0Qk_Qq&s%@>GQXaEZjd;{%z+4-H9c( z5w#Cu2v8Y#3y0d(PcT&d-4hVw3?ya!X}hBt9<*c}mz_R3{X#XR0Jr znQ+nOeL|c)gYMcBcCv8KPo|=D5_QKfjqQ=Wbp)U#lZUuExjWD|$RI1+qho(uzdPnC}#-T_zn7XD!gGtNI%ULI8Cr*mrF zm-zN#&@h`H?+gyc5`BIyPPTa%ntX-eazJv!$ME7kO#aZ}BO1;7k1F5vRRLV(sm`;9 zW>C=UO2Jhg_3u@F?@yI)0f~N@=*@4@|DyXxmB%yu_bSf_uJZI4*bGSED({l}r^=TI z{-esz52^l0g4oYMv+&Eif!Oy3PWob5NxqG1XpU{UM;o|fEqNc#OKIm7ZKYM1e(`bX z=$@jMof?m({;*&`PqSYoUj+w!K%Tw$P+fu|62V% z=zYxRugOHOi;l482!FrC{V`}5G4%?75 zWj{+q$d?t`D(s@d%k1O#`7^DQN>o-4ySOp!XCBI!&aP;&w^2%}}U&{W!>G8!(P3@hm z!5zMZk&T`0hyUpDH4ar4LA9QP1NIA^G3sP={EkWpGpC=8EeXkIoA!v;vq}r&;j~-O zP&HdIrl^9#;7U(q<0C|wv483I@to8>tTd3VkMNP3 zu-08=*g+$fp|Y^db;mnYl!Y70#w^p(lJfCv`h5|u&e>_iVRr-7DZecInP3?FCIBsh zJ@kDigfEYLYX;bmmR`o)RP0rC(*X7#w@b=SH|SnwltkU$v%5&xu@NJ-d1N&hVsGvt z&T_Ll>`txXIigsIbmVFQD$IiH?CYPhJ>GfXjXKsx1~z^hwn@`DHBgmq^UP!)C}0x} z7cvXc&xA-Jw#_dt4P@*OrYZXnyX$d?Y65%gz?+>0qqz88>R?(F*p{|kFzNG+uF~8! zGKsc%8C}x{IRLNTOmjQ7LamA7V~?|fy2XbA-P#2Fv#-DC;i{)#ZaVSLvKxIB+xYLX#MPEzLK(=C61(5ra-(aQfsY}UMZmpyC#&J|nW7Z9^ z(Nc9^-l&-%F4+jX^-CTU6&Cd%fU~HJrxNPD<`@1Zm`5n5*L=NGPG0LU{SFcmym|Uf zLeg4{!U}dC3F)xJk>oBuI@M6&t>JlZXTs;GxH(Gz0a!@FI_V?nc$ASHvsq z4bQBjb7juU6}d%HVs!Eo+Y~=?Fm&}}j)^l#HZKR%fxIqKQd(Gc3%|_iFp0*(-RyWm zDx=|v!y{^Isjto}mzT?Hm$8q14o?I=CiAxeWD<+dMS613^H|mxi*v1(l-#eK4LaSX z2XAF7G}0B4OR*5v7opX+w`(j$DB}h^GUY<0$(N9BnLnQjYru#J{iyJ4Gs1p1rOO74 z#7eEGr2dIwiVV3}@L|aXe~j3GMGDH&;X!I*Up|ouUM!DQw9_hK1F?Z4fgr=RnWdm) zPv`BxWNibE93D&qYO@LhZbo$YUAobOdejSo&q3noQ7cXR!+59ic4`K1K~_d(xdU*J{Zf7nN7n7K)&2+EAgE(8p{IaSiy0^nW@Zu~QbeBq-2Z zXn?;Oba?-Z&gUPWK=7LEe|-Pc|JnP17zbDH5fmDIJ&skisU)5LKM}{KGOrvan9 zsCx(jGQsGitqvu=v)5|BWYOI`U|PaRQDOe2^I84wd4=1qcf>-+voy6>umz;bvvt)| ztP9%mwU=CN2)awsU;nnR2hmLQi#uFxs0 z%)%Sr7en)&FY2_H$xqtfoHGei!*K{|Jx}qo1Fnzay8r2ov$G3ENQK^;$XgKLFarS& z1XfM^8BV8T$lE~~RzE!9VPC@{fE(xx->@yjW^yQ5m<~YsG*sMFwZwOVorcx?*sQp2 zFZio3sqNx(4WE!`hDSSp)KFAZ$_K$YJ6Ok}US!pNz+D_@-kB~=?TWq!%{xDM{5xGu ziJ5^HoyGREaXDi;hfhG8%cc*XJe&PW9yZsIy;ah9Gqrk^05A$u*D3y_B}8R4_4JFt@p((d4}MO%srPklVL+q{4tjC!i+VxWz1W$t8$R zlO{npW=Sos*$}U&yE;<-V3a1?$h~*k9f&77C7r=1WZLiJbB*1brCt9t9?eg~3sW!2 zf%It2yhk-m#~i(Mh{M4iitrn7yc0aAziC=xzP9-TI9g!#C*A%44g_%PBOazo^r!Wa za0UKueZ0Y~kKOOq=T79BV)QBa6v@G1W3qc&R9CQj1nc&f!2)jpJ?YDCEA1~8^Ezec=UOe}xGt$R%x9=e!7|5jcd|)&&Ld#zr zgowRG5jcnfm$D~zifTL=Ue}`iRT}>|NG74e;axhRq#M?(?psMwx`Acma?^5!QT1x z_dWm5{hUJm8f9~DkqJL3)0a}NeE3$HsyFZx>z3U&ny6p){Ii~W|C>CTws@J-GJraR z4hy2n%&_&?<^ELC{@uf>;0uI3mL~*7u-6Y885S?i1GCwS<$BtENykgbMRwnxv|NdNmu*bPRhWe6k%V9^)FO`jCS+_ zoSbDk`tofJoKESi-<+dkyZv;2FTmjQ-aW!vvZCLeb$;ngEt3<%EF`PJ_tyqGR+RRv zU+$715+-b;YGUSP4N;vO#2jRa4+Lu)tu+pb++qeHv|E~LYVf zs(5~ELb-@^gU8^hh8FVfgWu!+yDIntwGk94Z(^cW1A?SYR~u?(KiLXZlCdP)ENwin z_@&=II@SA?yxBZM{-K(Nzk2@QAz3{s>bU(x0$h+2(*~An9#_n~bvL~REhZ4ftNP(> zBctLbs*4V8!v`5x6l<%|`(c#zDt9gn=x55d;>(<-OTp9qz>+zIk6$&YB-l@#K9D)T zER5ZQ#%dLhl#bwZL^w=$@(?!Tq)s_DnpdjUzaJlm&2E)y*0-I0zXXHIiD6(-SiSkPWqYl|n zZLl|E(&V2WGuuk&F!&5cTYG~9&*o7CvYJ_3u0SU*&Sq%6o_J3)x;Ua7GCRgP0B!KR z-(>RTxdtkH=cxas*k*CG+;4UvbNJs=r>7X?6eBzHAsB*4?XH z%`X>3Ql`6Dm>+Yes^_aUsT1phddR#kVuM>c&epcAFWF0`7D9hr0HAcmV;3LsD`-&{ zNv4@Y(FqZy^3Gt{#Yx$TQOa6P+j1<```ki`XVCae`(p8fV20R!&a204(DXr#q1_6D z=;rUc#BTP|w{alx^Zupyh5vuV|8EDb|6gAKM|;p0U>!;lt38}yiPXdir6z&89+3P- zUv0=Tg!8w%QF8_T{N+(dKlaVhpr`<``dz-7$H!TvZO3xCFKXF zwHBCt9PKj()h#xUJS-u;?kr~profhY3gUSOtgkb%&5~Wbatd!_x=-92m@h!rW8e>O z!Ii)se0d|*MJ;*`2sPSj-PT%x1Zr_e#^4^-g_Ulr7*+RFWsI;3#8^-SjoEX^A`?$u(#&S4$r+YER zPp~@oY9o!c{aqI7ula$WmRRdMl(u)awr!B0Z$Q31Rmj~eU}n9KaEHt-x|7Q+E@YEI zbjj05dA^KOU|mKXyH3H%)N}x;drcQ`^Jq%ZDRS)54Qc>x8dA0d$2p-1N=KuW`T;!` zs$a>9^jv~TE@Hg)VqKu2PtC}gfu)_rjjSzwXVdg|2%*!6C?&&|-w;t2B+Pc$Z{$zSW4+ z>Rm{wka97A%exuNqlguN%|jwv^{YUqv{Nl^zE>T%qb>0PgOAoYtGT@N3(cjYJBnJo z1O$vl`Khf6+7J2KVrGdch6r~586M#I`)y1m>l9yleCfL3f z^VcS#*To?4L2}1;4F(^qzrlyy+%!$Sc-mYc-iOD$S?&$TRjwLomI>qnBO>e%va8ul z>TdW94K`gaPj2s|m$g#Ao6V;$%u~>yzhLE3@{28OW;*s0_9@Wd8C40DgPpzpnm&KhE~=oqvzU zp$48h`ZHpnoU}=(#l+--3~fT-B%*Xz6&Gg&riL_Wa5%$1GM=hVnrFGK#YF+K;ETZQlGzg3tO71nuIF-AslKiuC)4vwVxn zS7C?q6pQQdODel^ItD6E=}CI37mZ!vrF7#;~1S- zm5>sDvZgO#?mybtyfwCue&y62C=c661)* zmbl&;iZ@hH`2#Y;WT_SkIGN@RfMznO+~Ar?**-rFhO`+H zx6X6y1yn!F9#%P*R^$ClBb|df`N`_FaO8VtQ;nC8#nIerZM zYywP5A;#mYb)tY7{!1AIgeJ>$Pv=y@X1PMA4C=-4r@rMqp z>uQ<>!8Poyv$d9o+_HDc?L!U=C7MJ#xd!+`H?9dmHWN3w`m^?W@jJagm-2Ey^^A?k z500p%hg`wJsHjcg7#y<$mk3Sfx5OPO!@53^`6HX*h^*uYyBR2r{rC=71CS{mpQXZk z@jYyW1Hyz3N3Z;VNB7rdH)5_6%ocP$Otg_%4o!_@#;-5OcjND?INz{$nVc?JGP7wNFM zlatP8O*v5$7SP?ZWl;_@g!>7klh-r2ZaTHKXYF?JW*``!Kh~)~n&V;Az&|PB#2-CX zI>lR>wBUT>1wEwZABaAM#O7l^cZv>FJdMiwfB|TqHYHGIpx_+3Bd?-qD z>RAi%%gp@JDnjNO17SIcwsIw75y?BXkS?A6Y2_!olLQ&pJ!0|%+|b5oNO4oeCmYGV zo}E3fVdR>*DjUx_$+{X}rxq^pU_;mqM!7flM)=vk@a~(%btRlM`ylb35U4aAc%DVR z+hByUfACY+)$cjOJ@-%7?J70)c@kK8OmIFpqmS4~hh8tfY<`L?DvAnjIOFK%J;i+M zS6<2nPjp}+-&R%{ynT*Yys#b)sV@8jQhxA|`HdcKi6lz81ZBO{t4CJEal!Ewhx!X$ z*`lUw3NIpw%1L)yjB7nyd}g(i`ar_9Co|KoTM`Heg`80RA{+Arg{8~vpBd(TZ~V}X zZ;^?lsTLrqpg`907(#~*|4eNKQZPby#?-J&`CENMjfng*mvV(7QNVqT)sw0dgzT2jSU4dA?&sj>v%*47B?R{HXUPU zVtJ*+vPI<&Sk-q~eAUaAfb(I-&E1rmxaa4eks35_i}8)HYTKMr_2O`F+W7gdm8&PI z@@&S=*$uj-j?&_dH%7tUMU`Zsnt3pw23Eoe@ecMvX93cn+G^imY*;e>KAvSHcs9nu zKD8&kIm(C-DLxn5nU1<K~eWNMyE=1nTRQ{<5$8Z+vVii;w32eB9~Z2D*6= z(n069kp{r_fCf5b#%eTt`p<9Ztz)n-Npi)iF^Kuja&RTESO?4{W^lnohxHuNU7E0p z7U}M@+IEsk(-bSPB%TcCO>s%fuIsAPnBM($mha2+o6o^q$kbe0`}C@@>rE=0Ed*mW zO|hAApn0z1F0R#tUoaa}y34l4YbwbC8R8~BXFK{`go&c>x=c&);xrkr8X!sns$kX6 z;YBj{BP<^waPk)*3ZhJ&hZ)RsYF+m0r9CiR*uKD`3qpx?6$w4!OB-(afo3@}KPjHB z7#u71^U@v>+iH@kgwg3|u#Zi&Zi$Z@3z1@E=xIA^adNYmw{GG$vDrI$F2g(~w*x%q zQZ)^q{WXA1$uxjm-g~~GZJR)nehJOQ&~^Gw?!jkFYzrzaEf=H@m z0d~#@m&Ls}^xH#6NcD@p4ib+-4sI~atq0F?GQl92oBSK*&gqrnoDJerf?;mHKggB@ z!Q5ioKQLGHs?ZXGRx82;$74WQ2>^wm{XqrQq%2Vh|$aiewqmEs)RGGDc-{#_|9{KT}f{ku0 znTOHd&77wx>P->E{LNTq`z`!Xy&GVDvjz=0*!p5_Eb+5X$1n?|wEkFClel%0yjfOR z_4$Cb0{lH6(Ksn>GdD)xwR%NV`fUH8o!e#}Wxb_O-jFnk(hL9Eo)$4)6_dNjholz5FYc4_mYgHFsG!q-s{%ONL^ z=|n8~omQ)CH3IXTE-=qg@kzyJm>dYw6df4^tW2Pa+3qeOF?#QqQz* zm!dk!ZHMab@L8Q zkl(q~5Nl26^d0@m5q4c;Y<^3+$}-H0ybrctBhjeczkgu_+cr7o>>7zbovg&x^Mcp7 z!W%0$Qi*QVoHr@$N%MtN>ZcM0-+#J&JJlMDN7O$%iwCy^sPF`W-r3p^7GQaR`?8tF zm6L25;-N@alH9YvbSfJvY{jmjne^1}DJs2im6R_4>vHh=Z)ug64j(-we05;5u~|P7 zqo0UUVF{w>0ov6#{0yeE&Xji$vo5AW3MiAxzp`{RW0TuQ(Pi+_Q<>fO$XEO&6g0iM z^ZzJU+xKgn6eg0SMc__oo28uA6wL z=PzjlZ693kO+}ZFffkOl7&U4PNe|0g^{LaI-$Kj588x3W5Fh?1m+>(f2b57;eogx) zuJSxxa~upj0%z19&)v5`88sr7+B{HP#cFOEuU;%}n#u~wXWD|mvFRiJ!iSV1xT&fe zgw9DPb2&AF;30ajXM=}cI7%z8Uu_+U^S6vz>Za7VR$-w{4NGdJnZf3UtS)zN(k@j6 z(dMDal1I=Yqxm7ePXV(6YtfTI_Gvp}IqGY`Dk*duN?{D>Exo*XH&9yT@d8Q!mGCBe z-jFx&zLaif+6U@FODU36E3l$YB?3fJ4F4WU#Q;T8Bfg6miGw1kz4uPIC%0WsyQ&kj zbD7f$83x3pN(PF?xV4ShVn8uFGMb9WN+d0@0_OmUmRL+ zI&HHGDkKzh@yoYQqW`x;tNc%g_RNr)@cg$!+u#Y)6e~l{t5tGv(zLw0;*`|-bkeoh z_G+n*5F~Q%AEs|@Z!5+}B6nNpHO~w{lyJwWh(=X0TQ2M+AoIYQlqR##Una_4XWt0po*T|QI#?}Ef8n%&hMfTIT%PTYL;9>(6Gto=4n&0 z4iB8@>fM-hWLA_j3qIcy9oV4o;s(OW#fE8^SQxQ4h|r{8zH?3wT2*bNd&-QgD1SY1 zg(sAy=yz+KPn+=Dp~+9N6L@E!XG3n!8gfSuJhyKMp6@@RV2VuP%4r-yzRG&9#^G_S zHd_FSpW_Y3s6muQ-n_9dQ$?)j*&I

WF7FSGH@G+p%Im{_#Hn71=G|CfYWey z&?~IK!8FGVmK(42>rYO(nhgC0O z@DSLcs;jW&>eSbj!#)t)Tc#MG_&ER+OjEwf{vAxiEn!th)9RJMm(}858B)y$1=D_* zfP!gA5c{H_U|N!eP9vqAE7Z+pq5lPz+9{@+oc;^>Y?T7{E@R_-3`H&f--2oUC3h-K zx`gNh^z6mq-$EVn@#b!Znli+4#;xAeB8${u`~^xtTitKN|U=e{1A59z!zL_FjJ)hkPAl@Hx61+{x3;6#@ z0a}j4ZbJF*&e4_>nlPN4qLx5XC0eJ63GSi1HZ~3Rq z%C2h>4q*gS-U_ti>6=_TCO%x~O%GrnWR?7L=blau)oz-KbJHa#lA6qQWh{q`5C{0> zL=FsnNHlRr!XZte>oF^tqA5!VyW7U>(x6Ha6D!4SvO)Phn1!FGLPr zgCDDa_(p9;@eD)fu>8{bh?mFP*47o7H3j60G3=7uWkOT3maKNRoz0L92GMD-EfbIT zvW@!NmT__EiE1~bvut^;VF6pSogiE0kMdX1w-hr-3Zik|ZvM_?G)Tjub$Ewc`8<=yy(@b>gTBYeL)A`trk8N~vpUcc5;gLf@~Uy3-&-#|_r zcql4muBCiTZ9t7FdzWabbOohRjVXz9xa$c`b1Osq!M70Ts0LoOOT*eRIYwUt3kT+}DFOWb0$xECj=~It=$;=8K;qQU+{Km3%q24vZgJT{U zq6{}*MAOJw5sYxJTZNl13ErZ)^sPG%ap=zaMsG|5K_fg!_)&T}zjNrBQ&Qu%^xohR zzBSP^fVORY6U~do$$O_4&Ngf9V)k}JbD<@W0G!Jp4B+;_aQ&Ujkbv=#93{mv_K^qY zGAQnbQtktJ1Paxhe&;eUtBOG0Y$rcBmofAwm%&O2%4Imghszf4S<|uq!p*O#Z*=x& zG?+MRCn9W<5nuhvQJR6*CMVR6KwdmBwwXv;jV6>4Bef|lMH*39M2or~9oTjs_83;8 z4!KHPpfPrqjxVc%o=QF?^-&S5d{s8ZbzYG2F~Q33hWZ)43?<#qqgRC`?wS^W* zbsa+zlazW!xEUtXoLfy9Av_LT+#w8gOXz=P(wO^%AGJ8igE*`y(rh!e?R_HQ6Jznk z=;RdHt?k=AW>=Rov5z4%U*N(vV|go?hhz0S@uZ>l^;SPPP;q+A%rp?qCu*GBc=}1< z3|f>fjn^>wpzf_szOhevkJ7*nE;x=6gk;YQ2MMxbsjIvvE*2PJ^laBefdiXA?|aRP zh2#wqX};w9?&jj6kk>AU{a~S#*LBUe z1^2)vzciX*df>qxK(b>SQ6;%o1l7T-6B$XLM~x)E_tq|d*w9%!E$xtIrbDaydZvc2 zTU3XCL%4n0V8l9%=pfC%rkItSjpfJ9uXjps7fMc;Kdi(d@#j{2Wo==O$L=y+S8pPc zVqQC57M}VB144DKt#4+OHqXfJCGAe26_}V>QWJ1uX^9Zwrb$RAt95I4uG3xnY2A`L z^^!~Ce_~f4kQjaa`k>INM3;C@zZ`n-F1{*L3|tiRL~JR- zOZp@pF>#R4n}tUeJu}D{474N}q|Iz5$Iy)1~}R9(h4Yc{l7D_i-b4;m(S*!#A% z+M#LCufmnn(j~%r3+qaw<0tr9E)kP_Iwh%YKkY0GU!g7ege&@z_dxUIGE1`-Z5w2- ztmdiHICqks2wg3YMTfr18ZU$BVaWI8a>*LsaawSBrzTlpnINukXp*P%)6ZC|qr^-G zgYdO)l=MAhO8$1j%-yZEvCjtmIbQGJ0UXEb_*oM!;rEoNHc```T<|_IpFbZ;snQyB z%gb-L!@9_j23U%b2Jla_h02MEloPI37i0(%7?5UbDvp2co@@-OlroDRo4wB~>Sh+d zKo?iWNA(4*lY#u#qTPbe|7$PL@n6(;70|;Z&UUt@|IyBC*l2<@?gIk>Z$ZZljbZg} zdYb&Zv)`Fz$u@=3I65*ihQWpzYkQ{|)rsxbI}o3Le%-eBW?>4ncMe+zdp`^ zPR{+&b!YU)nD@?T2Jgje8{-Sq8IBjwDEPr+z`1E1UXznHlToH~yJcwtzMcu`(nX&< zrAwNN3K}%Ddz+eaFF8jL7zm&-vP(0gq*y_ zxa!1uA}X75hV{Vhyauqk^s~9S3G8f)Id^QVE#7E_EqCz7=R?KDHmWdLplV$c))<_F z(mSihj`1li^)6mOIlK1(UmgC?OL{hU%7U>u?uv=|;y{$5Tx0}loFDw}Tn5tka^%e~65;rBw5};KRj74x&=M)Z z;WMn;Rt?9HjvKKu^!1y%Q3VET_ZZ#)pd5U!_6bw)ZL1j_6rTV%E88 z)VL18L_NVcy^N7PIDL3EvQjAIF>iC>o(RgZLr8n3AW5(ux6Zu|Pi~gVWlx>)f;%!Gs(@kc*zcMxdRm zTVGncQX`r`n+cGkZ8bgQ#pt`FU*AjfH^T}*A^BoLD$!$mPA=SQ>VLM?Q!pDNG_c*&V3sr8Kk}Xb>#jwtTZVo47HE$&Koq~vF#8eoiWhxpJwO#+v zwA+$1816K~zF6d#w4QZ{pr%kCA$qB8b#j|%Ff$aEpih=GZ@X3`CZ-FTRm5A2F#>Sw z2s+Tp`o*+O8<#%^0xPHWI9O5@q9V3tjwPV2A=8Y?HV^NYs3{&e+4mb6p+4pY% zDV!fI=P@W5HFQt*OBr?*-)+;MBzql;Rjf-cI6cRwVWhAeM!1Uhxc+2o+J)nc8!^KZ zcNF%Xo*&%YW%7aG*Xpzs4Y;&cz6W??*;4(0uq*;R*|mA9{fwep)Mr@|l>x;`{3G#Sm#N7>pV;C;r;%5uGa+~m5qsjk>FlrBw0B$K z;8Sdk?{to8p){!5(sfpV%|Z-Pu9$H`@^%ggBK9R|j>-L$q#Z0lYYDi#ZWEd%YV`in zQoW+J%6!t+jc)%XxbM>?zEfMA0vgn}a|S3L2P{2mRYsNCKE9ghh9?M2$RoymT5k?X zULRg|JN1L*!MZjMg5<#!6T0F%GrCRq?V=Pz$7vRK7>G542?<}~2|*^VX@UdGeOvFy zZ*VsDd)PW-MRy7uf_#UFKZLSnOL^O*g@llJLcG(tWKj>gH80D~ zFkV);;Dl?!tC+O(!O=?Iu#A^E=kEC_UmnIICC_m1E7GRQ93pF`zLgZ<)Q?NF&U0qtTWd8 zpM|aQ!R=?`MB^#X`G}IVF~dxTXd(QyEj%r|ysJ$|^S&>>7f7EU=1i#PmsA&<*HU+3 z)lZuQ3Xa`DB- z&q12$N9>VwlUKIVFuQ3| z2}PCv3|FEu4`=~zCJA!?2Y3Mw#5r(hj{0Ql$?!Aq^g8seiq{^wXIckrGB{TTFv?U% z@0=>!K+XkWJOa+5i{5U{#KOVSY_~}1(I8NJj|-LUSKMi{@Jq^ad@8s-m}MITe=A*(wCDo$mJ9mmh7n7Y=V zqxNw6ziky3%g2sDMTLC_M+xWpj+0FDE zbsKG}<$P&%B@jXr_^9=v$d#Dzn_3S?xe!}I-AJQFG4l+pn0&5cIJEX{o&F43$@Xg# zY62yggwGY&)k2zMpK-tO_nRiCmusFDF_kqH{)#ZGoJ%URpem2gml)QP(+nC9fPi^{ z`toVblp3!Owd<{|1nYEB{^h)P0fwrDFP|;0pX(dgANC>0tc143XLnPiD^Zu5l}Kt%Wyie>?%Yp)4v~gaw0S=ts&CRyP+!%)iPd9*lN!ad{8dL+UP#ui~lagQirZ9nL-=bQ8ChmpT? zKD;aoAfOV8ijusY=w}k&hJ$P2{-A|%Z%{7$Q`1DAgwMP{w?{24+e`R(4qZws9FvH= z4pls5=9_b42{vIJs}w&(-cT&6qJ>TrBGJ!v2bm+S*-#ER5{E|#piK6}#$a9`Lv~H* zB(WNg#3YSTxE3Ia4o1?E&Zt!DsNg}2&UR3tF_5bJ{u;$hXK6m^EN^^1#bI3iEovqv zO$&BOpv+BjbM#l(e8PiOftVcy3I(wN6W(wmnEcL+?Vs`am*&l8r){!=u1ud$wVk7C zqAZ)TRN4(-idtfycD|N)W~(BJH8+d2bjBD4Qd^}exip_J(Y%E$P)&hzgn3A?TI=(mW;)o03m=&zr`oV{Eo{6t`b8}2Qm>I5oLYWc zro<=raSmPhgRj3F1_j?H3q-#4Xk9JmlKxQpPXzadGI@i#;n~dc;h)*7BI-p$ZyZbRQ9f?7sdaUf7+0 zoxx+3z7|klE_MTp0Cx(XDrlH|a&BI?@-Evg)o4enPogvvrG#jzLC#BFMnufvBh5;# zHcH`G`U!Jx*l5cadu=Ur*D`B0R0}#6Y@p@0JsFl_73lj;v%#>EIGDDOHv-|8eblDDk;SI zVmr0%P_4a@JUw{5bHwXiPWoQ>!flmJpE2j|tWtEyC!72H@!WN3k(>ZCR>kit&P7)-(3nucx z*^n%kv{;hozpr2!(%-Bsq4Bq z%&s1BrK3ZnPpPsG9xs1#PuQ)hE}w<;Kt}NH55l-~t`sPuQegLi(lG9RlpZY0VyI(5 zZY)8Lpk5zyLYML+4^{hmyRXZZ) z)c0vdtMsRNh1SxibHd2MbT6!jZ7#{XJ5uJ$z{#e8^| z{Kzo+IK8Eu_RiRLx?8t_@NID&=Pg*L;h#N74Vj^v<6*TF&J*540V0skR;1t_6Dil0 zAW7ClH3tP9*K2Xo-F%_Pg?@1=r(01!6A$RrYzQVr3cgWLbJ}aYLdFunMGaGi*o|Zi zl*>)GhaTB&a(!+CmqGF+bsIUDSFg4Z|0=)7|Cc=AZ^a7q;NPEm zf4eoM>28l^ivGecBfY>7FG0;or}Xs=>PhJ~on{_%o)&UcvwZ!&NDUq*9yK*}7#1Pu zj>yV}_rn{PUWfEwf_)AWZ%$3VSN?MSP9VOTw467cB=w;)`zgiskrG~#$;tAVH{-G;aFmWPb6}2gwymD~`(L7TohFbFG32r4`oO%Ej(MV$q z?l=qaBMzGBtH618u}&t^k{n*S09X}D5o}aD&Eattd86HNZB?7;%RDm%f1v(AIR)G0 zXl+GysUugQE}YqM=K?-z0;1%G)NH?_o<&5__rQelnHTY3w6eU&3Ef0t^#-{f6(@-! zF|e&LqkD@yASc7JR2xjIvC98X}BN? z){RGdmoIu!n|2D%7$_c37*9ir3kuGk@v96n3aoyLRNM~oIqrY&_@+J*=s#Fu2FK3z z4cnVJNC_KtSYM9fGJ;~`I4~gr=gzi9P9AAico zBlS`uqurzW^LUn?mXnadnCH5Tc7}^J z&Z&CO%$fPWHS=Xvt*TY)+i%_1x-W(7aM^yZ9q}hOJ4%UfBU{DVK+j4;dMlnt%}~zp z<%AKN^sVZ&+IOkn6SJB?OP}H1m1KEr^^ zjSjNtzWPn+Mg@?mD9#S7#9XlS%q?!7N@N*J^^5%qWLuRJO<2W-E3y|AI?~D($Pmm2 zy5J|X3|Sl?B2Pui#&@I;p$l0Ym5GwgU{v5BF@*sYg6x>q2#H%`(Y!y$cnL>+6j z)t4++kZFK1i$N)r-~EmhbxRxei{7)PuZVR+vL=yb*6`d$CH+gGhzpqH{Ndzv1>uGW$`z`WV0 zDLEROxxRK2XP~xX7uv3rHH2%WjJTeLYw)qTubwqakZiFID<^#u`ocOYyUjG3yO>ov+$>nznQ^%OOmgVn(Jbd}XODS9)kbiU#vW753K#Zd< zwS|4<^(0!{AN;LO#f2yA2S(i1Rt&i~6Ff0`$i@m5sGK3?;O|R!=L640E6Vc`3KO-z z0X+O!JNlrhaSJPRn&jS@LzYH1BlM^)19YruT)F2_s{B>=;U^DAN!g<~Nb?eOa zN>0^{35aP_vu*jhb^W?k74cHeN56l@4V*9jp*64|3lc~pc!~`|MmT=BtK?7WjNW3r z^1(x)ynac1oFB~=9DBn1?*0A-zkK(TrkC~c3V-aHZ+VwMpV`r6YHK&^dM!Q5LpjW& z4)YR#wJAj|^b6WIT;UNGUPux*&zN2)G<3QaBhQq(`bN>b$1)-*APKd5K4zw5$={FRfDwlReXMJ4VP06+YVD{X4BT5L~uW~(QjDo~%z z#5Z5v{-^L~b-T5&C{78x!5ze%n45R;PxtVC~8No9^`q5^s!ue$AEXNDO~>)zNUis6{$#73#xY}MHGwAHPpUsc|h=t zisjckgf*UK@lvzaC!~4fz*o{5Bg%=gnnuaQ`0mUj)#tbCFkb2ETK&r>R1|&WE~Ql+ zQfj+tPJx{@-Ww*~TD@wg&8hUIijrhg?LeP64#7R%HDr=3BJFfR6ysZ?sXtF%*H!J0d&8JUQANj&W97bCAcOsR*kD zPF5sUOrsaFph@*-D(u>9`+~W^a%0r!3Kq7yGYUyd5t2&ZzC|rPqjU%Mp#g%8Sk$3J zZ@JE9;b9vmni|XK;HB*?Z@IK|%nQ7O3$!QQ@V6CP^u2L8D4k_&!V?Jjm!AUa&KOxS^MUkFJ{~tH$wWt*fIH}BiFUXV_nMM+Ix2iHw5OmPR zm?Ry#{F>e6TzA@KTby@kCFQ(pFTxT>raUGA`dMVWhA zIdwKBiG)>HDowQcE*8%P%Uu}lzO!5rHE7FPSsxMXa7Da+>kW@YqrK0*jB8M>H)SdY zmK&=NmaFrToq=QlVNm>D1P?16Kp`A2!y)WS8}$hrQ4B+eiin3J_#yRZnRDjW9y-O) zn)&0!)dTv@ho~#t3-KB=m;RcPk0X!x%Z`!jj_HvJtRS*R^NB(tSXXUY>gl*C4%@Tk zvEe?!J2jbOMSkATpMAQ+nevO(bt>BNa?Q7>D#5*l_3Rb4H&$~a^)8~aKRei#)hRtM z_N_aAiD98iZI4Ya9Jd3ZiS4!vpotx}6QGIhx9iyDUkSp7J|wFi!Q_Jc1gHnvfG>mNPUry!A4;fxb|y5o`v==Rd^L$drWaRc0u%Gv*wXRhTXhD&7Q-~X4yC_ZZ3eJ`v@4AR(y=X6u}Yh z$nbf5qFR}TsSUE+|F_%b@!7LO{&Q_j{aHEqe-4NI=h&$Kj@Fg_-PiqJzgsz4GESe7 zaegr|lxt$0#=p|-zlhl(!rIwI<9uEbLhMmt`wpW^>Nq4b(TdRc%>p6o!|cpR5#rUW zM@bd2!ql1CD8km&cn=cwklRY>Qnu#F1#aDAP8kiYwO25oUyI<>>i|H@r%l{*K^PN>)iRK8)NOab; zd#4VL)5J@;PdP>H_XIaf<3wL1j5(s7J(PkLc`2Ji41tAwNzP|;_setJ*9VZQO|i3* zq@1|MJOs0t>#Pm2I*TWv0cdIW912KZNx@bDgMizq6CpAdhb-oE9lcv7rrWQa0mHIT zwik)F@sqX~pOOHE(@%NP#5oG!{|- z1`NV!-;Q_B@HLQJL{)JcS7&f*SL~noDcZ!9Qt(KStSDGk*ZO55D%+OSWBu8ez+X&e zf5fJVVi`UiB!slD?lml%no-dXpEHaM(1$%L{vNHDXN`9qPR=U) z)0!xwZE%xn!Mu7*bt|U4O3{d5N`!bYYS-O$Y^ME<4|w(6Kb^2Jh?gZeAn=77ML0X%v^{?s{@fgLhx*FGzWxha- zjkj*;Tmt!Zv_Dr~n$-&}_CqXM1xxqEV19_VNLLZD z^Z@67HqewVJs|I9#@DJkQQ~4_QP7CmtF=}oWel5z{ayMD{Fk**Mc0I5=P03I=w!w6aBO;`0A@V^tN#jG<_Gpw=t9jKU z^CM!VVa)mHJm~oMMYxWp_}ym042{(mJ!~Y8`z!~Ev^KSsP;r9AU=xQy?zaAx`w7u7 zd#ay~U6vSsktXq+NxO*((X7|2WHPaa$Sx`|vC0toDcSf`3enSJ*-$r&TdyMU@xFe4x$36&@sLS~@dqkb>EH^q$G#C0W)R-IR7#yV}Ryr__e4oz<`NkauLvTeE?&2veJ{7rA9S0-%CseJ0U z`fY={wI%N!gVFYQT4`zxDlkTDT0w-F2cMfTChhU2iq^xB^q3R5ixsNtz-rx@W3!2~ z6n2aHxVnlJ%8!EMak<6)y*poD!x-hwp~!m^Bn!;PUZbtaQK#mosWGq;;U*Ql!)eCp zsKa=f4MRKYLra{Bcfj z35dc9qm483L>i$DUGjj0od^SVA>aFCUSrfAVaiVOF7Y%a#r(i9HG^4~zQZP23vi2? zXR%DJqMGK+Xp>N-lUVA+gZ2RwI_XrqG>D~SgH%?9IbxaSR`CW>ppD`JAOX$_k-nLS zbHqkJmOF`-a~@fpwmOT@5H-cM(cdfDMGrXQ_*T%ax}tO9@e8fDW?+jTid&FNq&_9~ z+-(8T+SB8l|9`@2Zx9HH;S*LveCDD5pXbs)$9nwtxuovsXr~4Q0RN{=Qi-OH>zX>Q zAa~R`1)UpVQZq-?8g%U*x+RL4HHOJ*CZF{Wu|8rm9rxsw#Dx7BRd<@JKE=R#=Kk)7 z0)R2Jq38FV2x>#mf`E{njzsorE^ERwJOe+ezqvlsEiwVGFZ0Y_sID0L)9JDbqKn51 zf1HrgTBhqt&L1RKf+!Re=zh#Zr=~YwL|5}F$PLTSa@hTX8`?I+)*4jSRaYy(xHi{e z%PBWsX{)OUQ!<9ttV_T^1_{{)7LFw{QB4+?mYHQ{j9S?o!*ZXs)m1XMZDgy>!RdJP z4Wh2xuuX{#VMVmhS?Hd;B)(bxcfl58D0C#yXXPJ1(*+lQw%*nOQUFiv9W2&XT>1bf6TOL9`cHksgK%deh*c$ouTO^aAMy7#scq(_ahc(;uF(QUzzm z7YH`EVqY+K9YXI{2@r`kDgCU)s{6&&j5!lyOpfmqUofcJl3shjcoSniOTWFyk%hxj4r4u(6hzdRiA=1b zlFZp!uJ~oCy;1KsV_9jxu#jnos$j*qGxZ> zRxDOO3QAeh=~SF-ga+_cJK-F&&38VyqFV8W^4#)fe`oay!tLW{rTDadj1 z*S1};?TW~~uyrv-$58EyuCksqH^}`GT0_yPn5BO#cwHG#xYUkQSsK#MkKAx1@k!xR z)g*r>{dia%x6a- zLUb(PNfnM=D` z&5;u1coZKIhm{r<+q;$))?g!@j~_(A6@93sE}5uW)2<|9qa23$g2mG(>eNYtMUUa7 z*bU2}5K&MaoCLIb6t9e(kSuX3$0g+6lYo98LI?pRfG3!OCmeBSv}UKMgEy9cCn%UF zPNg$erZbRba{!U)E2yRJyT{iZ0~${hyw13W$M5=&q*FWOo#AoTi_{#qYVH1@nk(M! zew;@9Bz!S`MX0f{oJrkuF2>u`;Rv}+pTqM3zV>-u&Tr5)=+ zS%+U592bp22O(LKD8Csw3>8f2V~!a7?u%pNrau0y%Hz_(x|;pO_3ZyBNBQR(@&ESy z{Ey9hj{2$U{5M=dgye6Tx{%^33l-lF@X^|~LN>)ABy_*|vyw7U%4Y!+7mltp8rfM) zEq%X`j9srKud%#-J&(&4%o4QhxjZWk_(bgx#&AY>k_;C=DEoKXE%_@{oCQ0~_&a|w zF4k6=Hsm|3NWlf{%NipRl|6eHF#gdLnIz72=}(%OK-(vp*zSx>@3v>0V?nrrvS1@^ETKG(0w_w8yPGcuR zH>TQC{9lr0T<`|LO)N0NQ}v#E+zhaSypW)1iwhp|PZ9ZM4PY+dG{!^fHGAnxO|*&s0Z z4SrSwP~BIb@Eh!y!b=+RNHD0l>tZ4WT)?s1<0>u`;rNwmW%Uo9cFR>wf+4GMmq9_m z$UxI+PjL28x+VZn9vD^hZIEAO2(lm82^Q@AHHnSvF@GEHS)6*FtuIJu7(wL7tP$ZE zomB+KTso+`&sIc>X1U(LB0Z9Osh4g^90vFz7G{!&Oc9R3TO5y#j0e@_NoS*5mXGm( zR#u}!9ycj_63_4TRx8b(lWBiEXt2Qw)swEi#2CdNQFzgw?GTdPKp)#XU+RgoxnJGV z8yYI7z&*PGrfW^l=YfA8so+<9=UcquTioeeoDZAzYhbbH2*-qulpGN$&-AM7L-*GH zO~!6Utqr$FBD)qzOlz0K3iRmrle9e`c85+f0MO|Aig@|gCj1P8cUT>ZoipUrtU2-t zfA!R?AhHC%m`|sAmmFy-e*Jbw4J%JVaH7UCUeQqflU?W&vnj_g<;axcW;^bs3ayo5 z<(P-XEww3XtVmKv`%@mpBEOre7^2y3qB3w{q)#(}QHo8OTVbQ&&W=QA>jyR7pHlnwHQ;5+ z6p)(;Y&9{GYlB|quS2^>*2PAt!mW?@E=A6?HgdrBCvkTBwy}0u)c&&JVJ5ejD$V z6#@>qPXI^u%i8epvHFp)pf}voO={#H+^D_13pd`b19QpiJRh|M&;V9hM@ctoQ_JQ|?Ah7tu^dbAsgga8tK-*upqnK6xsg5Zv)N2PMd>fpE( z9g>5ZR~7mxaWoae-~p3zg72AKS+nAFKM=ofB!7DblZ2ht><*4Ij@Xee+Dr6xgbtX; z&y_u#+M>ws0RE(%SXw?^_*SDqu%7Sdh#eIOJR)xlgZ$;Y@!`wLc$Z)L11px(F34>f zJ!${+YXD!wHdq>4WL2!9S)AD`j79QqNBsWy9w z5ivFQUcsNnbw|5Kx5gPvSA7d7OTDkWDAIt@o|KE_B|YezH zD#?#iXFbD6Mpn>T+?bSCYqBr(`u*hJ7)ju}>#kn62;-X|%>Wljp`pH28$hDWR2FwatNWDkC0DfOUHwPU zPVS+$MnvKC_7NNMq}ijGZE{{`XN$SJtv2^$al#%)hf@E%h5*)dzK$1_Ip&_gaP7_< zq2duDI|rA2i3`X+G;uy7+8T3d|F@@NeBxb}bsGO*iV3cDuI-5HK!zi`C%OXCbpP$3 zre`3?+zM51My>g3$%SpbdC8kVn!nD(3phMy8@WWJW%^EeQHUWhg@sK%yM zbG2Ks*%4BO+RnE4e66wc$IXCvuLmbk=G}0&ha`mVu_^H*q4k)KjT}mNwpIz>UlNoD zbMohFKcDp@79JIy3p-TL>tDF&pVK3wk+j-HLNxsP&F4ngfSC z7SyN%G19MV$Z12ob){TXTF#2Dhg0vBnw(%coZLH{*gKqbIh+JLoD?~nusfVYIhbR2q=n~?5=!;@`VG#Y;9DEEG=lwim!H6BE`>Ge)ntlbRyR(C_vS#3fWOp% zi*1v<)Kk1IUU`2zvb10^w4E?=6f=%7b6UK5PCMm~{P^Cccu5tM#N-air^Rl%wm$r~ zo^IZbI*+o2p6wn;zoa!tf=WXYT#%#~$g|lPwJ37rGx|%-5%J-)7|`U}*8BEaq7}(! z?IpWtO?j*#Ov`ytg)rR*`y)isdOp6R$^2FxQZ|U*8u@{!$g0i&5U;%YHs-d{xT~TS z4a+oDao#k6)-OAVIA%1Z%uc%o%^%E#-B;^fnXA1U?=|D(M(~4_eHBYld{44|$ubjW zo}6pqlRe{I1pP)lNSroC@#O33RW=sxhu&(#vWt`qqkQ z3)7#AE~e|7^nOOfPg}NmVSoPcw-Kg87vdZ-Mh%fvO|R&NQKhq|_`BSXa@FKS`k#|W z9+wX=0*DPhHN}Tde&@Nwfj?ITb2syAIQLbECp=z!)^l@}zY{lgyj2P97^Iisl%|0_ zNrf7A)HE#9BZg&4$jZeJ!1!iK7^FM@ja3& zwNTIeNh+GcnuZs=ML0dbZ}(_1lrWSk;9fb{I=xnLDo~rT+x%|iUP5NHlO84XvfBCX zpkx%*QnrDiJm>D^yOE3P);@D`aRVvVB@lO0>YF>I=%{2Fzsh+5_54Ps=-)zfrc-P@RvC#gVEMz~BF@s=9V1@aHH$;YN~n?#F_Jvkbevgm`+R zuLVVRWCk35Jye?QN?;B~vcF2|LyY6ao#ORNYotC;U#W?L0!d0mA3Z1|^Lp8B43u3s2@n@M zC?7q1%`dLG6h8{QT{=<~{f%n+V1?$|V zeLTZA1CwymeIy1TEhcPYYRi{F))v0N#cr2t7Pb8pBnF_zj|mN% z6bDlH=AfksvsVMswJIsr4R!nc=jAEQ`_Pa+yR=$k0D5q6dqdk_6{_{8l0m?PY(2b8 zxe+`(w!|L^o;>CwmCM$+jEQat=Pi_GL~OehN^E;_oa@RIdlsM=HM8QX4n_-P0-`$c zg<7-bH0#zj>1HaB0_B2Kjc%z=C`d1=cujqES^+sDjALUk_pAd}4eCG?r5VZtp9)ZxYCBS(?TZ^S9jL`$@eHeyP!`OT-Bd;bJk(U0T` z8#*pAu?x;IH-dYY5!jrv_@L6}r(Q$kSVErnNC_RxnX*J5K@ESUj?cgIUc7hi38VGf zW3Gx?cZQpPvuaNfcw6<_)kxYE2gq>!GkE}k%;Kv&?5loLwAhtoE0u6tF(Yd8H_T1_ znvkSd%FV7<({Om$OEw5$KiHIzc)m`#?}fM1NUAA>npfb5X+nq&aswZ>+~e0Ult0>J zJ9x;`$K?rEfKPFCoqC@XkFWSJ8{D*ur{=H=+_bZ&;xIfM$=($!5j~~A^o|$NPYU1c z{^1kwPr>T>`D1hJn)!H-9AiMA2=slu=EDsP5JN^$+u!|FdKeAw4g>!A2ZXtRRnun> zT~*$`CtU5G7N0``T2DbZH4(5kKb(_o_b=blm~P(g6)lk>T;Ac8bvx;G+uAf%h2uBr zWTJpY=Op<@57|c)7>lbAH@2OgGbTY@;8_MNorKh2%qd8jaU^ ziS>QtH-wqR5qvS5JXW;oxAdsEdSX`igdx@&hu7vIKQTMM^&(*DS8Yqc8&+;p!dI(Y zsX{TUUAaKjC|}7!)u=jE1!>WH#sn?Xt^C;LgIcEd%n4eiZx!i{*}Eb{*TUh7w`BCv z55e`DE*Fka80HD(J!#PA!D--oUZ4b1Sdrht$5A!8-Zo5xd#_{*K77V#-Gvmm*Exex z%)g|08i#i|ryJ3b;iUu96rQ>@xfvmA(Xe`jPN#RqiJ9cpD4Xrc14ZQa{<2^r8(C1N1Aq=aZH5oJ4Q+#?7ez8VWi-e4`gt}%N;EJlNp=>Ux&x*)l7*fP|i67fk zJnJ7^DH`}}Xgf4$?Z$n9HrXn#Z$W=4H95*>jU&i1XggpX0Up3sV-9=yOsLP{@C(>czsof*qSGm}L zoWV<%M-;qQ707qmU}1zk=IrYhhTKus_sQ#k`bv2duHY+Qi}89L-eJ3)^eppR*Vyq8 zQ;}50DPEfpQ=QbRF6Kjy3v2XR0-46xc;yX=T_6hFoFC@>7r1F1^z_@i?%c2Uo{9AW!S?dQ?wY|COX1k6 z;cgtn!bK}qdJD%rir}0$i*{YgL3ovc-BRVb^d|-$ePOxT_wSweU7hz0o%d^<_tOa2 zS*b0Jod+X&Q8!Dncdt1A0&+)che0Nvt|K43e*$v<9JKJi19IvBlmEnVCE75aYRg#f zHTDb)`^NHpbmZT~>_kzya?{Pn`>>@`6A&R2HT_caCi@d}=>#)c73MkY=MCmcPvo^S zzs=))a*<-1ub;hs2}TO(ylfQW zPdI`z@O$>A`d(6Fxh#0Qyz6=IMl*pzc~2TSHhUY<)IQJ?cp4TK9FOJMS{~aj?NX^` z{@k;Htl3T52`Y4Q$fuQuv-iemXe2TcGSgCxk{}hfvb($lX&ll9VG?T9G75=66P0KK z-B?Q=OgAd#)U;y03_t9CM~IS(P$kLD(11j4(7sjQ_#jlnUc28;?-|?`;=)kLiNz`Y z3j+x7keSMXo|y@JC?~feD?o;kPlbCwmF4*TC&${Ezh&O9%GStf<`Urv;zGHmLzrV_ zk+JrgY`QTwCB61J*AO|yOxYwnMel%cb&73~`^;mT&aSoyTnj-RH;gla$MFOs+5rb; zRFZOM&J?;JVZCOcQ92~pM#`^lS%uO++rmRBif!+gxVB~g`|ZMS;4hU!_1#SNDADoo zJ^P2a#sZyu8+A^al_Eu0eVr{9#z8pFA7$u(2FxX9I(NRANG^We8KxPQ`ApOey~oxB zWi>flDO;cL820{8cUChUFeqhRUw3fg#Ij!zOe(Hy{OIx$?!gVpoA6jt46A(`eMK4m zi@g(uf_(a~68Xiu;OK&f!s%FpE7(ff)HGOn4Ck@h&ee3Aeqt&Ld>b2wjr9fm#3$y+ zE8m}ra26!b=I?JAZM=KQK&iVcT-W+EDTlZ{wqje8FTKYmU6K*ZzN&q{Q70R zz##XX*yC3qs~qm=!0OWMkhZC2<#VI<^SWW4&rINvj--GY_Cch9-^KR!_lb50P)QDq#nj?*vU}P^|<9$Z-*HXqp@i0(Id$CBB zlK}?7zGzdnkUQR}vPFzFQ!h&cHyRG}(4@Qi9_2vU!kNPHk4H&_CDL6!apUR1amYV6 zeo2Kdtd@_pq7$dHt;Foq>*H0(YwJrZE23uZi$_5FctK)<^K4>^TzaF(A2H=RanV;P zo{IvV;5E$xEsbs*+@G}nNtd2LVNls54QkQRfhQ^ME~7)g3%<$%pxdke&-dhrDXV>r9H zi=HOnG~3f8wDu*5wBYC9+ZsBquEN2GKBGP{tKywqc3XyXV{eFQJPYf5*6vtz-dX8KI#fQd?ey0};6c z4B*Ah-;VXSV6c~?r*ZGcgK5mZcka`kZ(3xD~_LdpOmz*g402vR$Fo0YiiBweuL)-w%a|(MR z#>4kJn6{)>;s7)Bvb>Cd!?(&t`U0c?bL@#lRjip(ZsTjWx5A^-LFO9dSE7&FJ;%o~ z2rXj+EX&EBHnW2ss+ByeDqLxGpMW5vaCB0io$T{@Fg9WnU?Q7-Oq7JVT_5}l0COl3cl!s;UMw7r)n zrPU3csxGtb$M$E}Ur!6tP?D;I`gOyc z856p@KOX~Bg~P4~7XGX_BYu<{kjC6{NvUuT)17d5^}cL|Jz@i;mp=jw{Y8HF7ezIt zANVlCYyGyQ~D948vu8-lbLV^*a zK0nANW>RO7t{AXQd2MRJk+?f4`jvSH#c8W6M;cd)jvr;>}bd z9;Hrt+V>RVO;Fm57gKcGK*PpuC2X=g;;R&)UqbhB;~7Yet^MI>#=kY@-kpTxN83oJX-BCk zfHx{2X9%P0O8h+OsQ99|oQIK4$wF{tQc`=O%NCDLoHM`?pft5-evOWtjqlG~Ub!o( z86)@96}}b4yPS&tGVTSc+^^B#Ph+#T&8RGq56%XxDLMnRs4wr5&kD6_3>E#=Y4F*X-(o;}KAW`D_S*LCk zFr1bAR%Gpb+>X08Ao(S?i*hA}H+>eQ4@pbqKA*wPe#C#opO!%)+~W^(h3f^qxFg!+ z7H8XcuimAJRekQ=IYG3DxvrU)k$KK1>85rYO}Ppi%zF3yb$+M4%pUf>>QqNEpSU~( zw_OopUT-yaDE^TixLtCj*-9;Mh*Xq8>fLBzmCH(`Ho+ExKFSG&CSC+vlu|Irq+mu> zT2Bd5H=)%jUzSkp#cGrxKS%UCD%9kd#_Ry-n_KB;80i=v3vWr}%cs^9um>RniRQ9W z?@}>v$e1O12$m_|i19q%TEF^m7g-H3M#|V_CU3~^B<94M!mgE^dAetV`*;Mt6wch8 zuV?UKZ|$V&#+z1u%@VJIOX8ZS;33#1FmN-FOHYxIqgN9^BzZ>&%uxHH`)R0NL8tk9(=!0nOm5YpSP$-{9vuM4iojMO)^Cwpat@JcmQqL(5kWVZG z5HJp3DXF`*qhgm?%us@K*2z@UjOt_0xgqg$?^|$DusX#Sj#L&w7psysPA@n&i|v!1 zO<6z;W_oiLW?pJ(WpWwihF6bnCW}F=OJvnDXQWB>rW=~sUq0%T^XT+k7{^94Nq=5u zV;fLx`HHuZzsidE={BF6?tr$mVvhfFo7pwhrI8^IiVgZ{yM({t+9tFTowvSTMMx|j zY4Lkje3D#8$A$3XfU!z9g&ELzyd;proQW+Zj9;F!UjrsD6v;6)V*^H-`2C{55w>SD z3_WX2>f(0u@{pFu|UOTYcy?1Wi=B8cOOSm6%rx?m?kU1?7U zT9qg`kM#!16v>m45#$?X&jFDmUK-Wi>gY!HjaWNnj^~`!D04t8PmEAU{$+)Sm{bZN z_%tb%t1$aJd-{dx?a1%q4mQCM;mP|?9>?3i+u3O~!HEt(r2`wE+Q$F0u95ry{~&#m z`=Zv4_U4k-4rb;q|KCxX)b{e#*T8yrXy(r7F2T)m=I3Z)wT+@9MdeQsjU*WJ!IR~K z{06_i24&Q5U>JOD2N=W&8wO*)oGp zo3v7pnZn<302mbF(m*uA`JTJQ!=u^z*(b}Lh2f91`472ZfMpFws~WMr*$UVF*-)(AFv1AA z%P-zv=Q|vgbFCQ*6LzN;3cs6*8+<&p9MycZDjHjwT(xYKZ0Y)Ub4zoVFl7pyBQJ6_ zQTi*9_g>L9NSxds`}xkB=@c64$N^+=)lVrR!O5XXY$+4r^AWLo;uFpVBE7Fn4jc2U z^DQk^oJ_PU$6Bw?7NGUHdO@;O;~!Yysk6wv@Az5@Vt&G664pLCn!)C`VUlR$bwTtx zqguHie6BBxn)^FsAOXJ-rEc{N=iY9mCA6TodySMu@wd%0$ce0r?VcDNu=>K6dlgHX zuQ6kpu4&gs?q(f@v#N~y#UEZcTrP2c>trL-Ntpd*C{zeCQ z4*W=dXj zGtCz~)Fh%RW`@>iJ2hgMj=s8)iCAlM4f?!2qxyxq$;|$MB$VOm=RlG$rJDWm=~Mvi zGhDsRuklwDO29)3Bzue?fiataGrOYRA)|lgXvorZ7Pz#6dR((&?q4BcZnrl z*r^1QY7`*SedF%$Y~MWC1#Bj}6p9htS};QMEB3)2c#GYc0=R7prl)nN$3H&jV$q*w;YXveSM?krPvYFP z9z^OCqm`N9w9e!hTcZTKtlyPnz+lA~3?1q9!4(f!F>8;k z)4xA5?MgxR@mjyy*2XNv6{&;qk;_foe<}yv-8*lVIAtEJJL=MT&sVsleee+K_4@=b zMQF#qSbI2$i&%FMNdg!adhv3mr`rpwf1k6k`G^P4l8fH!I!NCk3QFPiF*bj61r2%B z@B>U3ZzITvwX)+olh!ZC=+x<^PbEN2&ZG{w%T}n{1DSu=mfp4AYoI_Fc#wRe*TMc1 zS}1#|C1Of@3K1=yNo0$WGhHM_8)=Fra|V}vLI**v!`!$p5%qlv&JCYpKoGS@otY|x z;*W%aQ(ydIgx@+Wkmt!l%eet<1)??#r-?yqj*he?kDlU#-IG2e-0o)D{!_9dZOgvv zX7%ZZ8InxG;=Ei9WmE5Wq@sXa+b1KKsXep-r$+^P=c51-^A{7xq;}nReBI0`+A1eD zdip|cc#P2;H^VYUg08^hEh>x5%XfdW-%88@2w8)*RB{*`gKB}l%XQ2t@sxg0K!axy z6s;KprvtfP0^@ys6DBPYD(#3H*cr~^MU(yHPJTt|AFga2xvTT#woR)TxMhSg7A{)> zH>t-9oW9K!rAM~o$5v3xpo81r%8A(I5p@<(;VkR}XX>?86z`M(fs998;^}{}_OnXV z{`N=oXh+yl>Y1C-Ykb=oU>6w0bb(aZ#ph!#wEG9J^n5rUW z>F;wXoVdRtZDK3G>N28z!0O}!r6Z521~jtr4=A#RQ6W@$g5#t3UY5Q>nGN79lJXaS zk>HF;n$p%1Td}!uHGGCqr<}ZlF3mmtNh!R}WLcN^Gf`<-jf}grjB6J9<{grJmr&6% z8L||pjC~7@qH?S7S*r)?=T3O?B6cdSmWi*VoWYL7iVILqxPxW3^J1(}I&_Q3?x05} zjBhgBy_c|!YsM>P#cae$v4 zzYJLd&k=`bo$(F)nhnaf@uaqJpQnvm^lA}Iui6>i$8n)ILJuDLWI_U+qYqd{^uRV+c<6HZI6k_jnxehpRjQfg3g*_TVHFy@o!s&V(7iq)z6)2oS;u zBz_Udg!E)U=1KiRs05xJ4KalN{hH#J8R3-~_*Em^cAjNn-V&U^czK4Qwu8^61JN)- z(xdFFFA6}i?c8=Yu*(XZ+2ylixJ1ZjmezNiF?FpQBMY1QiY?d&;5dzcw!J6Ra0qP;Y@Xi~Mqr%puzU zu-`8_ciJ^+t;0|_{wjm>P)GnX1A#?MNG8c0zptq;+W4>|ayGozikZ|(I9)`-ybIqM z4aQfD697W_=moRcfXP4-vx5V##H9Nv8s4Nvec21!fv8nSN@#*F`TM*zb0f@l1)?>T zXwdBpx0+kvO>?5S&Ez$LV~PSu{vOnm_%RLmyY2YM@AYEhPW>LZtn!7MptmPn_=Eh1 zY)20m!m8C|fVDm8`9?@XM(h1_l*viMAo|54g?fK&PXaiy|lW`*og_9#WNx2(uYT-PXjOGx(KBde5E zN;Hg=>=DUmAVLU9X%Hp-&#U_J>bmaj|31%oy1(D^_2{SIrhZ;ZkyHll&Q`#w#GUYiJJ1cEhOkx&)H!SG9Ly4B| z+{J7<;q31wt2!jbGvG1tj<>F;h6v%@otx~Lzv!=E6-zG{XlL!@I@c8!Kgosvae zXkt*aMO|}35JG6Am3<^pXvDHs_dtKDaosMTZ=Y0qb&i_(5x9Ca^(k;US?b%}dYWc( zT0O<*8=-3NnWGoA>UgDmQz-P2bHJx}e7?5efpZD!CK59Ozl^cSr@r3rH)OTs*SGMa@z+}jRlDYd!oeE|9~jY9 zJBK%~c2@4h{M|c{aj|!F(J*&Iy4afA{XW!u%wCt?fL4m8bNel^%i_l}a>G^FI2#m> zoQ+P#;e5$@{D?6pbJ<>#*8GwT{vyVox&=LHbUjlq$6WoC{pF?IzP(f1eY-X-X=jz^ z2XGg{6YuwxJ8v%km=VDF+IjN$(@GBa3{C^S`lR&lQf-s;oQ|%h-TPi8pNc(p`&j4G z;+%39&S3Flks0az`%K}NtZvQ!Pzru^<$QYhRiDMpnvH(Zn+jk!65LB=g9 zqvjHQ`Lhvi+VW1pEX&p0TP|wL*tU(yTB$fEX^X!QqHYu$C`p#!_;68CT8LQIz);!x zc0^d(Uf%cZ+UB<+XdYYIxQ+5TOCii0=W^43@G@zIG zs-mE*tSA^MvAxOYk1l6hD?hBy zwdCgc(5|Pxd~P~Jv8^fL`t}{AdnUy9j?2!N7aN^S^A)L;s<(3u_qvmfJawPz*x*Qx z&sCKPiWIiv+w#&E$a2s5j0K68(>4|IE<4CHn4Of05F1-+n0Tsw8RawVZp2t(u-p7o zhfp!o=$m&(565VSjwV!fjFu=}98I}B=O$ft;dXD+6Z5KQp4gdUu6+k2$G9q8RP|@& zpEI&cPF}|&VPu($+BsN-#DU@mOACl2r{^RI)m^?!lb{)xfa9)P+E@Lk8PJ0eu+od^gKMdnr&*{@rUO& zdV$$F*QY_!m!nS-|J0+;p;gnP#}yJkVN2XJ>p3pLnKikmF=RVoFpuDo9+4-RQSW?1 zl`|e7k`$e9IpYj@?TCrn-#ABbc6y9;Y2`~o_*3^D&4WufXTUkejr%E^yfOhbCfDA& zYwm@F8Y=8Uzr9P6{m~vRaOa9ALsImJmyVV^nbwXv!k4>;pDKIBao|#fus6}D*$Q0g zyxVFo^Fy<#P@us^v|7}UP&)kM^}Ua6#7V@b9!z9s4*kr|c6Ib$US1-pVUs-Bl0Fb$ zbZs~SL0~9V%2;%Y;KWG&^+Wf0Q%R|FZ13sZRoC!tBpS;|ORb^37n`K3AWn6g)$s$f z^Rsv|D_V~^x5Oe@38%5t6u~?9x{Eu4gTzB>In%GE)5?AO)Tcao(#F3qDb4PadhO>8$xV7Hr#hDre50p%Qg$myr8ot$d`|svLxdg) zy3*;?(I%JFF^2eEQ=R3GpWXJpK`^F@@6^dzU55$XcR6&1IuMlz5e><+83y<0i& z+lov5ZAm**t79wTIOD7(x8&oS(Vs85H6Nu_GAk6V9}xI5W9;{Y?%Gf0`_%}RHZ8h? zXK)Voyw$W}Q?N8oGG9D;XM0BNa=xJDS4-~4TjcKD^46}QZL&YkZFOSj76u6_x^!w! zn;uslw;Nrwqzk18K009}TcB-7l&zZ4<+sZ}4~kj5NEV=t;3skL2;7_VWbs(2Fo%Kn zeb?H%QKL^RN7#vji#@%l8kx(DuN6sk#X0j0QN>G8J4fQ5R_^lnh+uak?{=kPWK&}j zy!|ZHy{}$AN3>5V=DyC(ajt8*g0TyBJlzOx1TN7SHN~#heSM<4R8sK~EZ!1h1c~+C zm+J9TTCKtmzF__E@bOwC>rQRK!Knmmy778q>EJ9J9o<}4d&XHhrqK3_RQVmds^YU$ zS~A*;WJXK_G>9nbt$G^iPoL*%P%;-(1rqlSvfS1U7g*-rhaTpVA3!uH1jL7n6FODE%u7*DfFw>22(H~CFyr3vb>K3C~| z(VtHeb8t`HsV2Q};-~{9%i-eM2VTFU(-f-HAWK=!c)b|Ez>1%-pUd!rpHvDdC&6Nl zLZL}(>o9Zl;glxc3kSK$Q*J68s*rQ~sg0lLsCW4tsrhA{8S)d+A{WcAv?2NY$@J+t zSn))HEUrA8dVd$3*T0!j{#fs`R+9ep<4Da5)xKJ^*<sw6yl*Hb=aBq2Haj!McIIu!M z!{7^BOj5={GVP=h*+fV^Fokm+=tLq2d>iWo`n%?B*V{P42I=bNWC!xkUA5;yL9W%I!H8O?HdwcggN%r#0ZoTOU` z$mz}1szh#EcXVX-ISxG>*m9tbzdl2rc0Va(_WNn`6&qC}UE?dd!+K}FRFcZIB9en- z%yO;BoY~UdECYn>tfqv?1KwCSJ= zSNd8W;(XNR;#by)BuVPo!nUh4pZs@ZStZ~PhIysO>~Qpas)hGjPjM@9tnhkQ^CVZT z4PT;Xl;N#&-9-$N)wPcddYK(d&qU5Wp?YkdsGs3+>BuOrMdUu~%m9-6?Sd~aq+T%` z(>`#5<$hpj&|s^k^{)^Rytkk17Eq4@wCZsP!>Y^j*N&|X(#{^~wpKNUfX^UX&ZjDt z+8M{o`$_Id!*jg%t;*NwmHBd7yVCC1){VN9_i}iaTUG_n*8OA`V2_){TTr4aFt`#P zA^M)vN5pmL>*IIrem^|iafhXz6Wr9b{lP8@xr~yb+XuT8{Zg*pyso~aZ;-~V!`fy0 zG})QeKCqrNtR!9g7_S@~=?(vD8oNnUUWSN;R0!2A4T*`zG=%TDf8Q8+!`EXUqdM6q z+(@nJ2cu10OG)1gx=oH_~`sA4hwde9Y;aO$y&+*;OG1N#me^uDY+ zV0>ii*>)=dK~ECTpA?@{kAJJ{+O5Cnwn#+frLG`p-Nqn1OWa0h#rN4oGE|b#*fr{_ zU~4Z;-_XYoP#p2(mOBmkjFnGntKn{=!okPK$65cf5Bh6)|MD4jNNa0b2Wwa;d8x@D zL?%TVppn9tN@a9u+{lKKsaJ{6cCVJ|6=k)cByNgWs~0529xqy^&v}hp9NtdAe)wGM zwS#?n3bMKKy$Mnxhg~JJN52p4_r$4w%~o%e6dMN_aN~Z+p6^AXDV1i7X9`yJY3+hUic#U z_6nGBk{K1??6!KHcZYOE4q8;Zmrg*9d=CQ z_iJBD?rT3lTVFxK;7Ux>XpO&2EjX+2BOo@HC)H?B=he#=i|iz^=7cj3#k69x7c`KU z3k%O3Zmv)&e{rZQzEi`GN+)-i=VB^Y{Ny31zDw))!@4ijR*vS(Cq@UwcJcG1*Am_kpE(kf`)Cx`P*VUm^0=x{ z(bZHIj$17=?G&$S_tq8X71aN77yHyA@^1poxQNzWNMh$MoInj_2YHLtB1-#D5k=J$ zBt)J}z{*M-L|rCPb2T34QNk7iIf~JGo&Gj%w;Q$sg+r~hb23qiqqmRx5laWJ6j5nA z(!acNJ=*aBd}Y0|T>9tPMbcrG_ab8&{A1~-TosO&U1vI2cg;}zri}58ULAS_2N=L3hyPN+04GaM=D+&<(g+NED{@vTn*Q0W3433QZ*7S5`W?5K=^H0 zxozQ01Tv=(k75Vyt)IOt&lFF%NHK`}KYA>tR#YDo#6Vm+{`z%)(>E7ycW2iNEWQV8 zP1}lHF1WcV^&a#bdmOTu-}P0NSgxWkT!vUgJu5UxP?qDmOKqppF#;xT3Z}*^ZU@A5 z1rlPv29k1ojvwdLl!c-SID;$|*QSX4))@{t z=iQpk)z*!AByB843Hq0&*1NyjM2T(fjAnW&Ah-JgQ|A1zvg5+nmpB zsis)XvM9Nf91>eGM=&Za=p1$RleOh5Joe^v_QY({M5UI#fh9@>K%SmxdTS;g;TPsuMG!Kcld9)7ex?IWjZV=>uyC$1?q=(?kj zZB~j-fy3Yd&ZnGl)oIaE8mYanN~(Bf&v}hGp4*@870%lgDz8QGv7I^ijFmN#D;Z(K zVQ1_6=G}!wKc6=lb3;FuK60I7=(XVfQh8;rf7c7fp6>qdWr%t8$PcsCRtN4Eh%rs; z7a%63ZV&bKJRBe7MN$if7<%S+P1vjXkJ${R>6f!j*wN0I@+K$yg?whCFP+(r(J~{MAQs`wIx-`nZy~OUwHMXxucg&6kaMRI zFC{;jV8cfwZ5!sBSIM3OXG?b1ioZz^o<+sb32lD~}naBSajApY6oyC7tEXHr_?%vV6Mb};<26oNxie$bV>A+o{ zt2X}_lV(bJjacnUWwS_Eou?Lgf@f$pcO2KXZpyEreH@RTTYC7W@#)M{UKqS2XDWW^ z4s)W|`N9uh%POBeEw4(taP5NqgQ}~>A+$cN1m(%o-?I1X7yUR~{>XH&tnoWfx8T=Nr?8NrXQFHhsr-(Zy|7fkdcMNZ>e=(BP@VO|R+AJ~rgLE_&X0q; zoftXlkjHbRMG58t@seqYs9BQa1`f_LXPzTq46IZXd_j;eFSxft^*uu!`wqeIE$VfF z9|R)%WeH!v@=8!tq8jsvAw*E7iskr%D5i>@MwMD2!K-y8B^J zNO1p8;?wUDJLK@FULbc8-Rq zbF6Y(a87k7OeKb%Fcn;sn`+s*kJs&;=KZ&1|1LM0cf{>`K={ z_X5und(-V=(JSWkHr+l?BqSdG)O=Fu`EVJEr$TRNt<*P-rv^KdUffsyIKo2^#Zr26 zH_xq{v}4`~>x)IQvT5cu&z@=&_dhC*Gczp95qnzZ=AdSSm~_m^C?*mf6VOi%A`O{W zx_32_i+JSeq{nU{w;=*{<=UicnL3+w!466;O;x#R23!9pc}4Auk6ws>3akk zoQcY>(AMm!U+`8Ykb7FkOGEtNY4UI>>xlV45wA+fO5(fBrI|dtjn-G){<4j$YR-h=wm( z#4Q>Bg!J_pCm*#wA?|M7TY8PX`gRZA`_y`MiB>+a;f|@F8usMNxMnWF{;;VrJ5Q+L z(es=epQs;X50-W?mY$N>8i?N&os%K&PeJj(Ex4sEfupCx#*yJrQ{GO?ptvh{2T4ve z$r+7CZ~Jsl>mf0Ln~zg}Alu-=qIeBwdT-d1`QeCWO)tBOg0CQ;+Cu^LnNqWq=u%zTE=*$w@8;TBp1WWnjAZZk&T{DDEuNvTB>sz+zB5Gp$sU z*P@8<2i$~ujRcjW!sqWFl2E)5ZQUQO$m7^F&e49)=ZgSj7k(0QiBLSs8GrR1Cb6K7kV9I_UF*^JOv#}LX9)`pAj9BHT$G_B-ujOThhjrFY&vl&`=m_ z&h(bp(Xr1R!EbGkW&2VWIFe0r zAqt5^mBsxg2Igw3mmryq-7Ol=1-iR7ELjH z6epIEzR&$#B17lZB8A(hTs0>0FAXtIrwwtJ?xO;&35}3<(ud>I*=|GBD0lX5#r@K|l}0DbUY$THU*vNdx>aPt$v8+}*1_mqWm|0xQFQ)s~({&-}$^@p}}bJTUGIPM*gW>GBT3iuQc@O^MuWv z+?v?h?js=ZdHLfK;V|tqF1mSc)_Jxfg$J5}+P_uFn$7rDO7f6KG^d*;Zj8EM%(pCuhHLW=kZ=yMR+ z=Z5jA3n%@QH+G`UBoAisVP~_|r0q`5@?g^CK2W07em`p~@OX6T$xX+*QmF13-HgRs znmx{VSa^C*phQU2l&Y|E@4}07*Vwgmt50%^PtI5gyu%-Sopp{kFXWR~=Nlu=uQx50 zB_o20w@bz(K0IV_tw2gURYl+hRcR$zxO@~zZp+DAwD$CbjU4x~Sk&lBO1^KM{zlNV z*xgQK_ek|gD4#l4Yf`hJG!VA1H&bvr(x9l?s}Oy9AY%ifg4ExzIuE zeEldC#A(*8+2O>tC-v3n7jp|c z@c9|!$``b>{(%3|puFQmXN`~1{k-V&@)f7Xi{@P{g0w!RWp-*kcU$}IqKXHf-+TY; zd5q?9kBot`z677D49n>d{6bu2Nrf5~O)_^v)?y1Hb!SSarP+YXtPAqm9|Iz`KB5(_ zcGXNNn?fjj{yymQ#It&0u|wkL=Pb#^=k>8T$2)3Dx2U{K5 z-U}%UFqNx+IHjpvS$3FB@~HTsFUKPkO=`3bBae{;k9h_imV0%pkWS-7%cYcL&kC(5 z3N9C|M{$YoqB&{ljhBCV6A0TVJ|x%VXf@Bhj?}yVYA}T{(hJeV&-TWC z)C68A(AVXqi}p5l7qMs*%baf5mwoA$itKdcln?RCD($nP?N%+Zq1VnHOBNd&UApzj zIh0z1-q}&)L4U#-FQv}l%Cw1w-R;)18r+U)BPRycn_7i9*n9Fh%FbnagkCE;ow}pN z_E`fzm!Qm+q$_m+!X`Dt{ssLSiq~Uz`o`0qai8mc%R!|uv5+WjORL*@%=fQ19<%zQ z(vZ{ph1&Nl5%ehAOW8&VesTy&(9SH$YyQ+Fi{GV`A^sH6$Qp7Xc8-c(A;rp(-9war z+vPHach5&ii{oQGLI#?ilQ6ubJ;k*pR)sv7q9@=n=>aF9dOC|Q(ZUW}Q{A<7!zfOc zFC8sZd0syJfYhcU$Yl`0&ZBgPt2wtT_y)ejNS(OqGr{sc^=^C{drxhv%T_wQZY*^L zdx;U5=jQy#ONgYp?FH)F_gy%~8LCNm@Pcq_uLn;BB55=^g<8Z-S1z;m8AtdXS0d{} z=9gp5TN`*Llt0*$NsT#2o9ld9G-59)X|+JO{$eJBU`IzcU4nrko?emH^Rf@nW)n8M!QVjv(wv?PUgEMR|`+;CCSJ9p51TG zNY_`g8GP%_8>>qe9x>3^mwusPr)t+up>{?y(bN1lQ$D?jn^Iv3$RA;&kiCX4k1uPb zLCTW!Id;Sd?{LI4Z3h#bDz5!A?JHF>Ax@*)TrTAJnmiiJBtQ_DPx5uQ-Ut#qn{ku8 zLh#WNS6=_J5CvWR#RLk^T#^@^7sl$g*e-|==WYFV>wLA^+p`{`hY+7!6MlHR@O~_~ zFl&<(5UBGy62UGk{yv`KYkobU-V2@MUt3G66SPN1>5vOWIy0TL;ZY+uRl@OTcMr0d zMc=#?V(p@3#B@2LUi4eyHg-MhWHHwgfBc=F@4YUODr`JTw|O;VNZ zMlY3|l0H{!%r#6NOAvf#s^`-()5(di{n5rND#s#0SMYX;CS&MOtMNz4hFJ3%+qN=- zw!80c8`-sUWgQ6l5D~z4_1YJMZkvZsPCr2`1Qa%Jy}Nv_Fgagq%cs%zp$qYpv7@#| z`+_`*zFl1i(@`+bofzeEIqY}PyHEUjS?&AoS&@Y7?vjl0v~1VchD(_pR))*kWn4sl zdeO=pxAqn*J?7*U_P!SOE@h##TUgiaX{pr?Yf%x2ZMPEpI?^BQxk>ZwyNy;sxUJq+ z<-G<@QxQVr=~=8Z1)-#5iZZtz47eVAU8$R0fp^2m0!u!^xPE@{800QT2HZ6kLbIQv}|SCv7tVz zymuv~2kAuw83;`uE*#C#P%0NX^H3&v?T?Ype&A>pUV}>CkxzcmCMZ zWD_r_Nl)e!%*yC3X5ki+-@xs3A!Q8}9oRmg9y63YEzth)C__!eJ=UXsrlqe1K2q(x zJaQsp#P7_V?^``zX$)1pH$J1b#n3 zYl9+FMLrQ~1|*lgrO)X3x5~)er2g_|x27ZOnXF4M#$4`YPm-J`9dqti`obwA(0M>A zV^Un^V*C@^h+AKz&OeV(sWo+p-FDB1V_4fNAovUW6kYCw!s{%Rqasp1c%6$l{ER_< z+eT#EzMEcVJ2;@tebC}^{q6?MpLgoV`bjkJ$HkRU%? z591GbyoUpsPpyPuko481aXfBwJlD! zn=H>$k&O7bb7UvTNH#9s|2X=XwZ=LGmt6@@E9;d!(azC6XZuREklDz4I_CLF86)41 zH~LT6zuq^YvQH^sN9?t0^jqmqiM3m(*YA#w@iu9Q2^`PPja2KRrE6+DFHep`6>c_i znew>n*16;*&)sA7ZM_UFhXV5Vm!>^<;uvr#*zym4M|9xm9~;==-+YQ*X^e z2+wB`O_ElUoz@PIo;9bu))hl<7jlu6V2^z2E6#n0tm7SJJsk7G*H6CCzP|r*z@Wm5 zr(3RD#3s}il!QoW?C+o{NqG>lYy0tn!rsF68cyV4BWmXUq*HF(MJ0w)HI1q?2dQyW zxvQM6x{#Fd?q|y#h~OXJQ}-w^j61egD<;Rld#lj6#PLT&le#CGG{?nyA5ANBbCnvq z=a^;1NWC@eEqeZ%a8B0bs<`>Z{_vt_4klOL*WZ0hQgPzsL}E}nGAR&T@jm>My}jY4 ztvF$;6}eyFgtqLih*{&M7^Cmp#sb4%xyQpIq=#d7^B2ysE;o>;8Tsd@@EZB&=oj1k zpcc^nQETj9KNKH3^>%y#@5Gw}H{Lf&w}vL>yYF8PHo(8}@)^=A`I||vdbZgWeU`F9 zzom?d9x@%@g`JHC@(AX-=?1=h?d?vPN~&D-##CB7zGAoD=Qb-GRQMvr(-A#TzOv=< zno>cQ5PS#91MPi~GMMI{Am>DSfzOQFA{`LO^@-=77ryhdJorv%C0)B@l2mpgMfRrN ztUmP}!id@$wcGpHiXA*#J&e2jFZ z1`56NzrNr7arewIdymCZK}pi!k>e#z-ezemXKTSH-XdgF*l8^A1B)i*gK~O&ET7YH z?)@2Xt)Zszo*;ep$%<4PDP(`0(_Cow{8Q%})Q>4N%x$SJo)9P2zIn*ustG^dBf^&= z53KveDw7h3h^O`l^-zi>h%rr-8L%u+valQ@$%S@#Qv_J*B$?iE*o}QV?k@UvIwBB#I=A8@&_d z%BkD3P`z)5!C=gyee;hobz%bcV^Mn)q{yKovLrQ;fB^HUF`aq`L1kOkofKhcXWSI z2O&v|FLgpyPaz-C*XnA!E)~y4A-B^qo*MoSoqIWmX3MI}N)0BmLQaQG=W__2BTav` z{9?@P9n@i1t1RI2Mxe1$j+&amX%=9n6=PEza zvtJ%@APQIcGQ;-W4Pv|NSRbnmW!NT6DQru14leX}rAB^=xPNKTo$fNnz#a+CO1jrn zt%L0R?3KoaEjX`|KN9}f0hOq1DH@gfVE>^Ab~iow4RI4-xBopv;Fps*;xxZK0-WkG z=Zh91trH~M_Wi!a_(78GBz%lv5qOs(eYX%bm%V?-`zX*0k9m~L?e>*;4@Mk=R_Vbl zMIZeK->?#iC06}d=m~hHcAYQ9uAh-P>BD^|2mB~`eC>>etNysUgyzq>8yQZ~m{?c| zh?bLI&{i?Gjris#Q_01RY^*$b_TE9Cfsh$oXyT5-hC1iKv@*faQrohX3g_1ml|R)r zD7jZ20#IGU9}NXP89o(F#npOx?ccx6XE(X!zx6!>_#<#D2B5n3kp=(p-`{J7&0m?`)prhrh4?b{1Sb*4>JK4H!gd!^+9Cr+mJ_QD}ov`{;V~64dx^LEwc9zHu z88Rg%oP$=!1`Mc6yZZQneO)XVazR>xPjNUPH{z-1iWI2O0t|5&@z0nMhm3s_;hbyR(~H`1<$;$ZH)mjT zy{(^=`mO?IZw7`ij0;^7Ob|9x*PX+n)R3Y7Z5K-z(O;{jD=`I?9<2{j46q<|mvkdW z?93gkQHMP!I=zXx8d(Y=coOgx95B%k>_kfu>0svW`d1)YKS@T|BuT*6z)`O!$Pkcr z7>0T_7)``xG*<+=u>flFNGQ(%#$A9A;6CjkW|T3F&()n7M?vFd^=?duAfdQA7ImjW=uI?{3Fb&b&Zk3bH0OURx z@aQQ8DsgOp(0R|A`w6^Z0O2866$$X~>O-{)I~25j)Ls46VQ6I_W}s6}s}C*>b}*ZJ zJH6pIGtde(fFZdG1b&TRiM5&E+tvBvbtIts8VK(Q45^wHJFeDxKvd2Ta#f?JcHx`` zD8*pFwYwZtFc>HV27wxUm~z<`&@Ti79!x{%F~UHnYfV>3^`I>68W@6LtUl@t7!gOS zV)&O%Tl_K1{i~$GFRI;`QO6)wTXc=9|B(;eiM_)NWOMcXB*!&w4`y8gh6s$03UFTn z2Ftve)^c%5oH+vs_ksbpj}Rt|0M;ri#^D-XQ=Vep1Zm}^l4E+?akeZulfo*0$P_Le ze|k3yOkWKc9=xV(#E3AaF$ZaWSx6PD4Grs6afNUq3T&M zM?f2~o(abpWup{U4J#%Pma`H-IP-)EqeR{<|3;fSE zx83CPU;=jVSe3)PW#WAyhZYnjiTDhteiKeCj zfWO_ZELf1u&2V$;8y*iVO92RSKveL`SQ0GD<_Mb^-8O~?-H@0Z!GJG?Fvx&5r@z+L zz)^pcQo8tY#5M!a|J#Fn!Wv`4a1PmA8-Lz+D*$vB47l%|7s8gAmAeK|vNN4iH32me z0>FU#-a4>C*okcQ?RAt;JM-|!AclOwfEPc>z-eIz_3KS&lrSyfVLjFW!XFH{i?;wt z1$Hoh-mOImH0bu)6Kb~lfB|11VUSy32ek518cGzuWddt+fB+@i@Z{?U_9(xO>Z8Od z3a)+%;XrjGe07?DDPhOWuS2qb!K`oBKp$sbePV!PLk;7G^m2or)m*z9v7Rb)@^kfh zvpLmYje-rc-ya@LxQBtmk^lo3-kL`qtokN1{zco|)y53kOyPHOuwFZL$jl|r>zIBA zr02nar=%lb8L%P`Z9AcYxY1*pF#^aBfB{z_X-NzrpxK*QxtLqqgUz9haQ2PfAbk%o zrvAbS16>G=SXo;tY$!6P;F)#{fME)T{F?Q^!FhEAL!AFoMl)M`C~g5PXg_Kr&IHF# z|+6eD#7y*AhkY+U) zK!j_aFlDUqR^*9}yGyfAlo9}E(O|&!u~HR7G>le_?Q2y6bY;&SFyIdQwgz@M=(r&+ zKg1FWH3N0kot2pj3Zd?txb2;d z^x)dIZ zW;h!;mIK$WwQ7K4AFO7L9KOFaHlvv^Dj`SJr$${ zL^~HXp(TO_Tz1DkV1e}8>VFl?D3<7uAubuza)nwLAgNvRG|XZTv!-H3fz{IYjGqkP zkb(hsFkYXq$NF6|qrhQ2vp7!;Fet!)FVgI1>~a39nNc7)i83>?0u)9t;EUuqhdt7- zqIn(6`l!VTi&_iwo5EmoIA9-)xWQLUiJL>$XK#E;z}xPqA}$DA%fJtSe1FYzA4>?B zXEU=i_XahN5Gq5JaZcc5{hgP=A%&N);|dkzUvX{yDv`qk*}VK8q`j>J65(QQ<%U{X z>*>HxfRO)0L1(2T-|QGAByu2)l?QZK*F4sn(fpG)KxrbXlap5WJ8nZK81?9IaOl?% z23zQWH2lmbAHvbz9ux(eoo3w*6W{!{EjX6uZswSYj0*O*qT7G}Eqo%Fk)nr@3fO>@ zm7|L_5;KB4FoI9f68zQQ2G(n9Ws5{(Ty(Vl4Guu=SHRGM$zL2K)hlva$NR4ducN=V zQ}O$t?C(tF&lFIue!p{lvn@aci8>A_cGoL#tBE06aVOgQb3?mgm%sou|C*e{dg#1Q|>1lH{QU;?l3jv)awEpT$dI0l3FBKa5im6(Q|=1tUg z--O&uHW+Y&vjh1Y#s&x9ImLwcGY<)lLHi%6V90~9`snV&0vHQTr^!2*g#<9r_ANYj z*ay;Aj9JA-!Jo2>T0rh>WhZWxL-1=GIW~~+y;n@cdtai5614-L#0D8_i*iitbb@xz zp#4+OlU?()g1jALA!BJsKA#gApq-}zFpSn<;^5>_Vu8BWe*SEFq7pX0rL8M;Rfgr- zU6S=V-X2&|aES`_JnX>r>Sk^bF$@p-a>2+hVnFs+CW$(efl5-oEM~P}Q0Yv7_J=e~ zc!r?dLbYUTC;gi`iaY~lVzKubZekh$qrqQaTB*@s0k$TsKnc_T_I}(Y0K*Dk;5Df# z9hNYEvIvwoe5QJRknCpulAR6%#yJ0l?N!%}5{zbQ?*i1mp95g<0$3hYsu(WRe_+2o zCrYHDZ~mgU0a7~D(Mr_#Qt?^SR(cYCD=!81QqyP;bnw6Byi2Q z;=&ja9?ns6<~~~T)(_we0UQyS994NR#zCip^Jy2ouK|DxAUgPl70+Ib0nn;m?8iih zD1h)8umC@TA;yO}0z5XOl+}x^vl1x)$Oy0k?gX`^5Yg}c{L z59F=_+2{f$c-P1X2j|2lBtbj;7xllU3ejzEXeNP@SrC!eo$4|ZM?clyZhu86ZlEz> z4tgn;C^4q!m-)eF3XVL$fFJTO+K(P%wGc&fv~GI0YS48+-UyI~x0B2cpeO&kx4zN> zLpgJ%4jP^+KspwXhDQ`DaAF0OoBy+rt_XL#(`E?JD6;c*b^C8abwyezp-eBBl|bbT zv~K|4E{Zz136zbwi{)?mZ+sTb_jH%vEkNH2(1)8@#39V-uj#3yYQJ?22E<f9A`2jkyE>SONg}c2uqu<^cb7(NXbm=yFqVGl2N`*FuzolS*jUe9b~^ zeCABx!JCBwKp(Q?ec<2K=M^}fi=IAoWhiQGUGH}2U~Xp!9L_~W+0EP z%d_4X;2RfL!3!6tB=_ISpggU(o~9s7Z+~t^6I7a3w$|V}s+&w51q`M&ZW-6RDbeg;M^cM#xNd;=UF5i|nz#a*$!g>v6Z-w**&|TN# zFbAfJEmJG)woNX_z%R?6z6%h+BCT_<5x`QhMcmvnBsnPtAYnp@<`MAk>T?s6O4#CU zW)Qa$hc7{;(%*LY1UOu5(bn1l#-%p=z{nPGf*ma^_!K0#r+V{n%w%&%1v2$de`$&p zmJpbR;&4H4hiZTbo%cVyx@_QAGVrh1FtzzxyXJTL3L)+wEO;ONq1nG+p=~_JmhM5; z0I}F?9s8 zBo-&k$Y2!C!YN?hd!m7nX+%Nh_jWGI!X4_>_@qVGdH_j+IuBZ8c80OFGO6Fx zfK&LpiLt&70B`U2p{KTS$uCWFo$n}^l{pw3tFr^Y_+8LWP+;ZNM^t@Gw*I|apyNrw zU~s`mc5X@%s-;oZ&?$bDPyWo48%EU275zMa$7z&QUmsIGpa-ahf&r(>=!Tx^@01%Q z)fD%g83ur2G#GH1Hg7@|dLs=b$@Yn@F*<;p`(GrT-O*1Ja>*!3e%#(61d$8`gAdl_a9y8X<};WaH8%$XeWxP zp~L0LbQUeq4ei{T@LL9SvN8Y+IK^i46frV$xHCHCi*}BfSvlNm?gU31&@4K}Mh@Ri ztwc{1I~ym3#dJ6S-xIb+o;G)|b+t!rJm?)o)n7#ZY{sI@3)T~ZpL`=cw|+){h#?(Z zY!No#qwuKb2$_z5`)=J3pgQlt5C&uQL0~`@J3;P*2~s8C&$O|7wFCa1Lj2!UFwfTD zKJwKDq&CagZrHS&K%NW=UvLW)28YR3lza8m^TK~$+B2g`tC1fZS_(qRGc@9GmC zgm&T%NO0S;8RX>5+#DV4P|7*6H*7l+Q0xOkaFsInUlFNT8`+7W<~I(UfN15O~J;{VqS ze=itnq6+lZY3hI=6qMirz78$XU$1ojO>?~{x52!K1vro8fW+{vFcR3GUi|&1_6QfS z&AHKgc=TN#;;d~K*F-&se;dW;wHBgM!I?l!K-Dv*K75G@L&A=Hz^oFxs}ff z9Cbk|AssXvEq{GDaP1jsi1@jsd+ihi;3`Y1^=Fvulh6@YbGJaM>Z&-nA+5o+|F)nA zK-hs7v~ebc9#@ zGiv_?iQ~!*hYJa~prr~#0&lp~Vn9~z@9!YULf>Ebn*|8#1pj1zIKbioSn$5s!&{rP zAh-5g2xw4f>Sg)k0E#d`f%nCV%P>Xx)B8pPBmY6zGj$u-Cna7lxV(Ft!^r>rO$0Pp zx@9GMVgXAB088+bqJc2n8frf#GZI|L9r4s`H@WbhcM=$_@_pj05^b}6ypZhH+ zxT8BTzB!H-I8y`_v@75IK!f6IPs;7w1ax7f5m1fupv|ra|Qu`eDd|D9r(dM*QOH(xymmLSN4@p zAOHFf)KClGysFf}qH}@#NCCF!jNny#Y@if>onF&(w6?ZGqJumW5<;>MaEA-h8hDB@ zunjxNqbsQyIxKNR>e(*9o(Rxscvx^F!VXIhlr_5GGf*I_f|d`pG~4<72bMu)hQM2& z4BjEb3hr<6>lGS)jUzb~I`Xy-wj1Q^khZ1djC0`ObKTM_w^~*S}{E z;Y{ehId1{%-iK~|BGtQl)7h`XQGxors9^>OpKi|uFhl?b?ksaSv4znyw?Kh{ekqCs z(V~EfZ|qrk^tUp;0s1ot%maRk9am^ms`6{@lZNDjT0B*|=7hq5HGE)Pe>z!RbW;dm zaI(;a#)>QV8E*`NKXvcXJaF?fK&{{=eo$spkQFcgn;9AC$`%dqtuGf_aFHiUXPK0x zc>gMp*-wy;!Gmz70%lmh`_iCrhd5#vLXCshB3TDE!f~Lx4dHrqL-}8DP@|+Cn8LXZ zP@t?C&W*1sRwyekd~Ccz!F&73K#_z~0C3=eI9?qqoYfaUHU{(LmOBkG1tqcYdZR=W zE3jWLfNTu3Pc0({Ri>pL1xEn58*M1&WOKm&Q8_+h~BCsVEZ0=jR Ig0;o@AFfy_NB{r; diff --git a/build/libs/custom_ore_gen-2.1.7.jar b/build/libs/custom_ore_gen-2.1.8.jar similarity index 75% rename from build/libs/custom_ore_gen-2.1.7.jar rename to build/libs/custom_ore_gen-2.1.8.jar index 2d1ef863eab0247eaa43b4f2a10742490791c615..3781aec8d7f7fec7e6e661417c6ecd69af007bf9 100644 GIT binary patch delta 18816 zcma)D2{=_>w0Dk>c_uRrD03twg%l;Bkp?9svj{0eq^L}}*eMlCrPAP5x1yv;GDP!? z(x8$?n!R=QIb2u$-+R9AboW`qZ?C=1+Vd*urs#uQvCI;FuduPl54VuiFDrwegMXb3 zby%T;l5n|Eiz>^oj0ILPGNwp#H7U$GBqzx#5wvEF7SzWKPr>8(_kt6pAclp|<|QY{~L4L;vuQ;NqP6^jpSK)t!1BmTu=l-AgUP7iB7FX{}y= z{kSiy>7n}b3<2Sfd=d5()b>?cGx#gyI9GqwK-lx z%ZvFQsXsoqRee}x;M0_P`&ClIMZ}AOL*6gQU72YUke!=xr4wc;(q z>?I7gMoVvacePpJk7&AZpkqkJ8~3=69(tV{K7 zox_%`BZUgx0tVmly)Nt&JyD}78`#I4|3=6*g`MthD;q#Q76Gw}>!;Yss^iVU^X|qi5 zkm?dEPs>k>n|^uN*bMtivp&x_ReQZ4Mxv3`6#8CFplbiy4GZi});k&*&g*$|Fn%-t zxpgJag;UQg9iQWy?Ctq8X=b?jkgvgyN4N+d9F=^d)*lHPE6i%G$oc4a{=$AQ>1*M5F3>Eb9fc(&9Qk=Mi^KE6GJS)S6WEWI94mZ*g!Yn_S^%RxGU zi5f$+E|C<>k}1RQjau|O@`!~v`zf;>Q@84Kse-6F7CK6^Y$^``t7nKXGK?c7S!dr})sBfyyuW3lA7V1|~$JN(=9p-+J2q__*y-YY)DzqLcU@NZwuyVsGjEK%hR zn7Uh!wue=%oPh}+@+c@8LQC}yru8<3WuTUW3Eys!M#!}b0M!mAzb;M|EzUiLE{6;NPbSN2` z{(U4H6ONARz`wioI`QvTecCFhJWEpm>1`tAS$7R0G0)ks8~-j9hq1({j*&M-AGVNU ztT^L1iootMCg>_@bHy+h>1`oJSTjbi!#X!cH{xF{1w&S&X+AE8nAPLoUabqMqyj5t zOgtv``VxrZtm)<(`)Ny~?P;VaTWzcfu9fX-v7N4-8X%1$C6RCjDaAG$FW)=N)6~EW zQl5<_{G??me2`_=PE^BU?6=lUG+d>vH9xMc($*dsZ6(FnbEjI-P_;v7sPwI*3j3wQ z6CNnmpIJg|e#f&k+yy69jKXeqc}a_1aI#_x%#KuN+HB4~v64-5-ddZp3&NN8naehg z6w<(A?-i*EHQ5O{yJ#*osTfD9q3JoK2s?CJEN$|KytgzG?Ezty=5_(JB$t$C56{0f z2qV$$#T>R#p{)Q#WUt!Sj?G~&y>gIl^93hktlWl3IrhAoI3cXez@iU3;FA`-8_ZT} zl2yPQEd|OR;a-j~JM7g++LXUIt*;a5I_NggI_!dX&a^z;R4!6)6E**WlSYfSlfvx7 zokKB;-Spu&EyJ{tGDaF1fvxPuPow@qmu64=V)+-S@}8?-X%|oW<;qt6HWa&!J?YnI z+UQk13$V+YdO`%L0-7vHwBv%25b+cjqy`f$xbS%}@fsJN3KMO(a7Bc8feWRg#9Lh0 zAx6Byg$?4wM_d5)@#w`~awxhZL8M^PQc2=2E@(LuBhUpgLLN01ld32~iom@DNlO#0 zSOAO|kBnr9z4+~}4Dmo3j9kRm?{5Ke6(saI?_`N6+%!n!8Yo5XKrv%M?I&4D1EM#)cn0Dn(8*c#BI}LC&WoO3|3&{&jdx4?llNZ z={#?t_P*$mL~Z-9-*L7#pLUamo}Fr&&7`b#4fa_#%sDw~ibbWVw!Z(IyT%<8BC6jg zT1Xq5avtV;I5^(aXLS&brYGXg!<<%)M-DN@y59bGJ~d@p7?*^%vYU2Bn2VW~V> zbI7Usa`)-bODD4?jI7x*uWzFHZz9bySl7BY3Q=?Wk_An^mmoeYNj^RoNB%)_3VeeH59S*fHWN|8I6~te zz6lNW30vXkyCNja2m9q*R+Y#_W3i2$iJiu4)JN+KeK)RRQ+DZ}NP&ClC#Lwkds3f2 z+GvzVUAvA`kCD^EdSBt>!S@u39Fm4+6B~+N2Y8)y(0FxNScqR`0_wQ>PU^|<>Wk}M z2Ft~UrmY$jU*akH;-SJEmBryxXGHyQeZN~ZF=Ky-*oz|ZMP)OatCn~qtl#@dzgp0v zrd`N-@q#gR!xpyntP4DE6Y9BS*ZIT~t^rBSO0~b#_LwMazV6jxF!zpdg~d-ldxLQT zo!=b;olLhKz55{MZZo(-Xz-u0`Ma6QUXWHX?0(d6PSPJtlY=9 z`C|$X6rS^X zz-r;m)tmn`39b;C7Oj)47?br}$vP+Cj^uFnpg+We*!3+JBcgwa%t|gx>e+ex=?s&H z3nsh9bye)URnqDqa^dX8D$^Zh-g5cRcOO6cNd34IYs#v4?1_z5c3s!O6SMj}(d&rm zF8|eSynTE^!vm?FYL--d3t+R{AhwgYM zDfcWYWS@`G0;?};$H$dFNh^=2(*82}U8z8gt?d|*Evf##{)T!oPOsDhj3xZi_V2vf zVf;kQzG%bh_`&16a<1h}^{`nkw!-Oov64|zR$XUJ3|pi1d;31mMW1UnjnXOIKfLLp z>>yNd_VoS0(Xmmf^OD}$-qcE4y<=~@+$8Rj92s3eecgy1bmnbSiR$d8Dy8?c(C;24k-qYK8kmTI|+cAD&A;Da) za668sm1LfTbeHN=yX$vDcE44W@dhg~$ zOTXEhU%UD`>6)cR1wN8|F!7N?Yru zp{HG9FX^hJ`qqxx{;X0w(RNm3uGNp7DzPi#ucy9Ilrds`>rCl*DM}*2%eC_}wX;Y3 z>P)?}X0vMm|C9$!`>(%@zQU?V|JpiT++E<+wKES6HMKCNNKNUs?Xf8{yt#SG>!{PR!Y1cVC720Euao@I zxlgiGMP9Mt&FH+xrg=36?)qL*@g|xtvO+~)x`wGN8aBu2X8Q#HEz_-|6>Gb^PGvmO zueQyIj5ii(c$@1lx?pmS{L=i?yID%D%W~_w&$_Cs>x(M3jg`1(^W81Ww|$4ig2D?1 zmfypc&Z;?Lvw42-kE-*Yo4aLe=3QwPe)LSubAeEUpt;2E^#@(Q$y8Ts@{$=CgqKm4y%RD@`=g2(5rObLyY z`aVO~RytE}^B)%#gRHeX!)@nY8g!$qBlMwt_jDmo>$RqvC*Gg8An~?ww17qPv6EW{ z1?>>o==dz+`{=#pLYXaIpT+kD#+xOKIMlXSanDMZX`|B1k~7ZK2>qPwIj2XzeS%|8 zx|{D3DT{GZN3CtP9~g77Gxf?RwLPWca`Hbj^%mxeJAYdAAlYDCnaI=6o%e4CWw`mY zuL?UuQXYv?erC}C@iK3qLwFW1_I!xtO(^_(p5{hRn2&e(s*qqGZUD`yg~?i~LiEr2 zHvKEP4-=c47LF`hc`#8sOXx&O&(o9s9aD;v-}_ygx!l~+Z*ldWWiKDBo1*?)WRuP1 zoI6uShP}*)y(r=?>}l3?y1G&kUy~rRh=w zJw+`8|6>WmbxrsR&oJ-5M&xt70cG3iQf4@7iu4+ZsG%dYZhhNu@7JHdt<(6Y=)1sbJ(6YcsdEVnUCOQrR&lhJ0-FzD_wco_aRx&n7 zE}wJuRMOdmlHrZzhNmJ8bVkbGyL-*e`+0ZxbWYUpstxaDXWm~LlU=vP=#@j;Te%zW zo{1N|m?~B~a{uQSONxTY$a(mvJD+h(T&ECyizEu0(cYVi87mEcBjn*DK zp+H9N+|7AqF{gEASoq&>kqx>RQhp}=n2zAKWS1{hc@L%i{id8C!i~+4DUM zCA*!6C1%v?$hH=VZ<^H>@;L33)Me*FFBRJOU!NIqGfVcv#NP>}<~zTgUDV*qv7{oVp>?CE^DbNG1*jt*?*!e+Q#((@NqI~3zK{+?$$DZ8m zad>s8^QGn66eBrH>{jZw9#ONC7QLdYCUWJe`F8)U6P~VLK1aDN@L0#b_in!(XHHG- zQg16YEj1H!Umq`0zcEq4sN1;aH|xT&KVJ+MD>)mwm9@!sb@UthW z`BkRj{Pt$)9bXj(8LC;-Ewafv8gRN<$^Fl!CjZ1|pI(djNF>W%Ji8)zlA4M@z$LA~ z2+NJH-ma1s$J3IP{oWZD!522Xz6c}6BG`)jhcEt~j9@I8(w*3&>F(I1F!Gz)lN_04 zsC9)!X=~-Rg_r z5!GzAO=LR9>ub2m28p&u*B0&{aaYioe{Q_!&6O$=D{>`|pNo+aJgm5|YtGsiiF@@w z2^?z^IiNLGG0!b?zv8bQJC5Gx*fp(`zH;P;WviQk^gg+krwPKA``6|8iaqX34Xd;g zxZ^ZT^K$XsXYHx`mIi$rtYc{ZdGg%7H6QSh>vn0U*X4iv0`^D$<%^IgpRj?wB&(k4 zB}tvO%{F0%MOTJ?p_csHQ-ieP17+sy?F{zUTXXzPm6bs`>-$pkd*0?5SAJbdln=iu zoMT@#^7OttV;rkv-w79O=rX(>dFjN_w`{c}^*6zC`C|{pntwkZmi@|jxr6iaxj^Wt zf^B2%OC~SA)YIS=yH#Rr^7{L3-Xq5Wn zTgUS1hLyL!Vo%X;HBz%XF15XIf=GRpTEOU`(fRiE2mCXmnog;dPyWhMO;hi%(zOU# z=%;jZ-Dbmh8zQoQ>Ljh;c-9Su8L>w}-KCFI%nl=X#&+`FbPb7bep4f<{tk7e&# zh&TkKoa%Hg_n&%S*5F`yrs=%7B{v;J`L}Z!sz4^5twuI$PdwNC6;MwclZyv3l9(zp#DQ~~|(xF&S}oD zotV3NZO#Hc39r|p@9geuI{N%t_d^xR6Fuztgu~rCE_pKeOi=7 zmYsbl(f)mt*NO8#lE~*Z0@GAu$6iY5w2$_&50NS!{#t?UUj4Ijsl?}PRmv52u2l`b zkR9V%@N?(!olmySOSf;0`FzocM-g1s_}CSPAk8@C^0~4_e|A9Omcsznrf4%(RpMCq3DEdUDR0VY3Zq zPdOs2aR10GU+cN=XFeR1aDnyv{L_a0h3V{9i4BtJAJvoQb?I(unJV+-{)pj@rw%@N z_~iJuQ0;7uqOBV%d~H3PqHiY6wsZJcK;FqrY!y>hmygo$^$UpR_@C-o&=_OpakX>F z8a0;Y-q10X`@3H&FT`uDEjvRb6QFVL;K64jy zwhG0gzw>7KAGXOdd?2^AxF`7DJh^(m(WZ5e(vwTn?t9sU${IgSY`iWpWu(V6nYul; zWpV*KOM5OkZuYhPF1%*NwV%uN5BYStH|faPZ!h+n^zB3d`s#H3${$w~r1-)t{=ldyccb57p7?L*kaxG$drKphXvmwt8l$_cci#F(V|cnF9;$;Hsw6IIiV3!q zZ|Xc2`m|=45nI#jaNY^g?Dg)eqgF083(gmbf0WU&M(K^~r$sjHHUe&9o+8S+MLV}v zD6bX0xxKh6u;XcS%%EiJcpFiHi);7SPqUbz>iNmqZhXD=_+)M4Ge6gN%;Nv5W>BiH zk;_(HTpO(u^1Rcx;oQuQz^H?+ILglO%_*Xy?8m_7aD2xSBz<5RXh963&ouG(lCma* zQQ^_8R;>UJcWFdYs{Y|ydOq%6{KBJdRv>V;56ac4VAns$+jaCp=sM&)MM3PIHn+0qM zhAFr}4nZ@0AwK4K(%$7juh64w!`AhR38Q>3+Gbwtf!1nTMHnETFd__V z#jho_(1&VL5e2Lvf-p%bjwXqrqv1rv0MeXQ#2QQjnEky41LRTz!FW7^z_}JkGm_YY zc~>Ke15|;tGK!$DfjKd&na+rsVhDXy8O<01I$CIHG$D$Xt|3-qZLm!rS=NEG%EJl2 zUeZ2Xz{+!CdX0%83TX1GUX+4Z0$@adXZOVsmQj5lriy(clR!juB1Q(u0kV|pFCX!*5M3T!eMIwsy!i7~) z zw1!-a3*BqT)3{K!mUNM&r0IkQD&K*RZv-D7l8+%rhy;2D`x@aK81!*1X+%26vRXAX z(BxgDeC`S8pUY!N338V#@=PR0pdB%!ye0*8p;%mY9gOT@1gsw6m;3jF7R{0wg8m#J z#jpjcv7`$5T#m+o%n5uii{dHjRrx+D&YV!f@DDSWMuh_=wW;NW&sV_mz3CJx7=K0_ zsY0wqh4G{jQmG<`&?Z)7jYyXB8~8dL zRZ-L`Rhr75Kn}qu>Iu-aWVAGq)J97aNF_{+p@`0?iXxs*AT=?u6^Nvc25pIfT0g@- zP1bo41O^|2$CStL&sf|BH%~`<+?qAOy$=s>^Qtsyqh2MFlgVN&h>zjOWj!gcK}AA= z+wGG(LB$c=Je~)f4;@c}n1O_m;n={&^-#H9%%txTp^R5BEXG{SQ|xxvT+8e@CK{YNKmmt zE%D5U&)*0(DvrW9kO4=3H{oO;YU=@U1WSLU6k3?fNc&TaRz2))$Z?^gq@E%^(Z@uI z6edVUrU0?t02BRFNV*RVN>QrH1GDVGEOVZgR2pK*>J-L;H1cKp*Z2BwrG zYodvG?s}%RPbmZwGmHS)H3}HvZDIMV6@ZWc5AWCbZH7FzkdD~Yqg%k#Mnt5MCRApG zkTG?e;NnP-a(sOU9gD7QO1b3=F!Av4ex;q}*q9?`;wUtgu_iv1YR_2Ah#Mnj@ClK)@UB78Y1~nz5Gt-%o_IKn}{)zAj$H8L)m2&^$X~~1>%z!r`an|CWAk_uW z7_JzUR3~6eNF7qeZY{mFctt` zq6ylzl^FpFKHRX+f|HswczA97G6N)asLUk9pT$(BnFSEKXHv}tqS!7>gp?~aEE!J`b@xz2mQkSsx}VE<>%=_&Wm(XGcb^m+VS zbO1w)g2XEfVS@l7y&4mf5cBN{DWYX9CPIpqCU%PU*0iTz$xYvLENzv>G$(@+}<3Tp81u6z!5W2Lw;f=DQzG$2jC zL$GSGLVgJ$k9^XU%<6p?N1xJ|z<7`kc6IkMw2;M4QW_gPV<#|z{xAsI=-5tj6h8^W z-IJZ<6#f|m!7}X8!J``%U$_fq>LN^4M`#zRszuHH%PSh#ZwB%4%~9gxQ|9#zh_?2q zpw3<7DAGg-sqBVDcL-`MfXz9a^z2@5z zXKHn|8y?=Ov_vU+J=7yYP&xJ@xkXG+vx4Gv13|n19w&IXe_~=>6||~|)WNmyDuUWS zb6F#B?U<#!2Uw59`)Pd;g*_By9p>+#_%#y!_)o7>2FDC>7&w$^QHM43nefAv3UFgFE&C)F649B_+$W6+^B4%u=D| z?fvj9;93Kv7DgWO2Tjo9{Sa`E6wuZZNLPF+2b=f48QS>(%+O|v6l)}!C=aaAM#j+v z2cX_;%+f;z^00I4+y01`z$#!P$}Ay`k$VX>g3eJmyJ!tWQw+N;yY!vD2{Uf2d723Fxnng!XAvgkZ4ZLxt7 z&yT%{0|T3d2JT2U=+W|!DJg~ypJC*?w(X8S2=b?)LA*1!w*f65tOsogN?<-lUMW-^ zYDBXjo06VO?vWqHlAm-EsgA!-|ID~aJa+Yr=i2o*0AvYj;8CJq3K`#29sqOX zT1ILN9oQspE=O-(9Wq(X>?62YS1^b2fQ49bt$})ZGhDflI3taVN9QTQX#Ll6tYjh= z4;=Adc=Xjd7qEYtj{}c^uO@K;|8^IZ`h>=;CZ({``*L8wEPEalJsU2{u>Urz?~amd zS^tcY89bQFZMm4b|BcCWy|9D}+&}$-H$o0g<^uoSWS2{%25xQtoCV&M&3!vAfZ{;Q zm|H07#F9RV>VMzQJB|*T%EeI_h%@jL_P-*x=5dsETk3i^mqshlR(o{_6BB>8V`mfJlcez@eS^>zxaLRkQ z@YRtEhw{t`WwiJjGurjPc;sCWe3-#in){DSuK(YF*Z(?@HzwPhxcJKd!2c_%`d`NJ zI{wB?E|k+hp#Jv{+W%I}h9}I+!bk%q&_LU&YxRC-w0}7!fe1|haS{821?$b#CxXE zJ&#vOk$ZUay$s9|apUESP`8A%x$bP>o4EJ!hoG*tFoj=W!xTPx0ZoQ`K>_rZ4SS*_ zE=2;_od8NRmm-JuoM5K;@)Lk+y|7PR4v{CBC4<&UU>#o6j|I1ol7D@chq@z03!$-V zps~C|qN_)rt}guFMV^x_^npTOw4_f$4#731)L-ax6A7U6@relxM4#c=PZzE`cHD~(ugM*8~e(PPMv%s(L@8i>(7S}G{NDfr82r8KdzudphfId;`29aJ2 zYLo+rS`f{FE7y_OLE9}9p0aW(W2ijGi$pE+A@!+x@Lo@HT-h_ z$W^o`TY+BH586%LJ{S@GxL3Sdqo^`b#vs5&l&P08UC%)(ow5`@oi`O?%?`B2>Q z7>e~es!vr5UjX2t!Slp}1Lwew_h1t5z%3KqCofOk3yY)r66V$*`Lq>57*qZOIBa=_NO}QOOWT?HdUbc2~t#4aZGrKI?T0igGOJAn?KK1cUh9>GYkM)gXu{nl@EYI*r7<}BuaQG&oCwJs^Fc2So)J7ais@KZ z8@-3CcPv}?icFscG7*2tR?)I*csY$_KMFLMP_k4ek~TctzvUT>4Nj3T_m|c%&9A5d z`@}LCUUv<1`^3N2{N7Sf&V|R23j!rhCNjPb7un%kK_`Y#M0>9@E~~f>P#0;k3gvSx z6ttF<;NOsiB~?*CbbrS$tOfB0y*$W75JtOd8LLVu-WnF82Pp}ne@&Z29f)XUGa`_u zKs)x?TnCFeU}iErIy{D7>6Og{S^RAdQ4qm748)5%rX9a2vSKbKk3iP-j7`qo~B0V$B7K}Oe2GisXrKMOCmtvWmjkpK!oK}5SG}h zaZR9o0~6qSdp&f9`XDfyxd-Qyf_GtYCV7p1S$vmtAjRwG7o&TmAi8mvoIw7% z(MOp~e!fM$=%L;B$Vp_^ed@)ReE*mxuDVZJk#Ae*m*#315Dg!L>jWQ=%H+E?n%q(g zXPcNDPLV6#(BxxHu+_ulHi~@teeOfjhb;d@afhN!55bOtF8XE56Ic;pQL#rLn)-t# zPk#gVx!c1sWK?_ zDKz2Ya4zADC@D|Ljv~oXy;NzmyqPp6ml#k4HFUC>97}STmz{F3W*XH3^4jJ!8z_() zs78v?mKC-@m7SCN@j6;aGxGa1ilT+D>X3UY+}*iOrzw^u5X#3|0dcz%P5IqQ+L9X= zP%r-EYY*yIJJ%H)(&+&I@V|odrti<7mhYZCEOF%g98hY!xYWw&q$Ilj0z6Uu92B1T za9L7qjqIZgK?N^CCSWzD;I@2!311?9Ete3n48Q>jM}s;!FP37dqV(6`+3Hsi z2`Bnf_Ii`UXot^x4HlZE^hwh8XYS*^8^1rF&-mt^^F7~l=FDFOa@d&}?ZO^d0?1 z7s{BA1TUfIOh@^gUAKguD}9^5(E`lYl#ow^ASd((@nb$7+L{qS43o-uqmo+hXL_EW zkffwEaD;u!v0Z)Y%Z{(~jZ;$VyFo}1cUO8g_}Xd-Sw*~oG9t=b84@l#0R0PLEx2EV z_9LQdDWf7Nl9is3(xDhH0-^M1_#=f99Az&xom^B+Mx%0}$q7ZT4IPzX(bfSQr(6kh zP{LvkQvi2j?$ht_Ad-XWON=fcj)scpOVO;Cab<)Nd8v#Cs?SgOi+(fQ2?O~nadeh7 z-YSG>2kEPL9c5SI3<3p5B`Kz4qv8?fj_EKdc}dhMif5#hUw-JQe9}Y)D4IsbX^-8M z*PG7K#zdSFl>E6ZAGGPi+?A)vvq)$q+tq9yJ!7Xp=^9LJcJrw!i8-XjNJ^7=LCY^> zzHsuG(_1&OPWNQC6M zCxdA-_kgc9aWC^f6JM3wERDpq%!?;qmsZC^$(sOsnfF4G#FbPeH z#5T~=wn!u@^?&0-q{~$Cs>RNWisgPSCevdnsm&f(GXTGS!hFG0#(f~;JMIWCzvV{DC4aV^ zk_TR$(1lg&W4RQ_c1s0vG>5HW%*BE$_+}{^IM50f3P?GGROdrjq13MEqG~Ouy)I>U z-q%@Fzv(P{8?*Tg#)mU{t%2tR9ZtOVERVz49%8XzR{oKETDbiVb014p6w8we_NLYO zv1qnRnvIKPF4W_e>GAB*|42wh8TS^EY?b)2N$ief)56((g!@}IHDynwVofvl!V8n# z-_GVQ8G5#6ArRl4(JR8TJDqXKc%UbfOEh3|Vj=ew4+G!c>7%a%(Ar&conNhYk?QJ$fLIj)T za(^~mLa+y&r2-)>V8J=e^Y%e%!T_}`EIFAhiC6$fRydSj;6V`bE3X4#@3K=AA$Dpz z7&MeQLdptp{#-AwHk%P;$iF>;c*zpLFq;0$-2&saBMiEx0Gf12o@!ca1xNG zaCq%^?hWCi*lDtipC~+Cxyg`p~GZ$j^sFjNFEJiKUAR_McfVU0*j}}<;5~}Dw8W5U1Sr!D#aa*aAPOT7mDVb;U9+3ufte>Jp3N0^U;kZoiPLJvwX=A3~0PUc?7crSW2( zL6xP8Rn@b_{2h{HX7j;RDa+==UBn7G!07sCFGydC@ue-{-AGxmgwxpvoO4vBQ8~P? zw9Dc2`h^Ax&m_rQMRj{e;R8t0bt$K_0XXFHblAF-n_#yEH%Q}ic>r9=hn z+}d#ceT0-^N!CF>_mR+Hz(dH_JV0NWzA_5y`3H)NxiLgIJvm|5t#Qb(7fW*;QyXXp zJVKmn08d7B$ZzT1oJMmIbpS(bp+o!nSv~l{Ry;_N?*sYh+fdu8aZ!&>-*YcgM=wM5 zRZT68f)D=Q) zZu*MrixCK0hb111_BRK%E#nce{tLCehgW*MJ`&X%uq0?OtaT3*q$%Xuxp>q&<5Bi4 zmS#GXZ;(Jmz>oqSLeO_k+~{s~t?%P|1PvEQJlf#GodO=ncES~5A5+MKC}rIWF=cb= z$_6bgFn!U*M%!4FCosrfYc?5Y5at|R8Ni7v`xp@>d~ zxNGW|n0dyv$rp&|RAV512PX<~FsC%|ffzg$lEYR-=&-b&64o%5&ek-xsIhZ5`JX66 zp3cal&&%QZ1jm!599O6Q{rCQIM0P=>eiW89Amqku?oZyvtUzza!co{Z?+7>2#Gc-+ zHYzaN(Coo{r>g@mKr17)j`iM!pm@IoMK+4(>KYMK~T;O`hr9 z827dFwR3iMw!;YnrV`YziK3+UEK$4l%h!S?FGb$A=ps(z$J&>T1X2l(H9~2Lnz5e+ zMNTwP;7M0DEapoTei}pQmvO#O`ICyy7K&N1q<9uz3o1{l9eVU|6UavwH9Pc`I707B z@D@3uzPNJZlO1^oZjTWr>LP3%Pl4dkIf!P5ec-;6VmCP!i+&;{g4asyeLO>h{VMKD z=?Ywhqx4a=LL9E){uR~f4{@vi9f~y5u;{z>X=5l^#XAwj9i-sjCJI40mRx-thm$D|NL|aDvPIBt4fn@$whQF1 z$4|3S*uP@<2r0?hvwk5iQ^5!I$npojuO(VEvlu?U|FXo__$EDZA~g=UrMc* z{|w0fG1oVFRA8^(#?lf4)c)qCNJ6|n2qQN|>yhhns^m)O=%u{Z-lOIK-+-X)uUJ9B z@Y+T-zcYpA&yH4&7o6Fk#$PEkb30o#u8OIfmu5F`BWibbm0G-kP*T!7YBZz%Uwd+P zaXY)OvFOK&IZd-{o^I55W4=P(lj)>|EPS9wE)vo`y{tBLqv1=#>1m;RuQ`~dSy=Qg z#*GtjIUM_KLi+*Zq334aRNQm~6YGyc`fQ?*HcyDl8Z+#_-7v~4?dlAS{X;CRwLZXF zY_72CDtllv($vbAqs7~`-t z6ju3GE_2s>!-k`223*Ur=+}?l-xEc7nTO`E-=q!?-*vLHE5f4BwB1ocPyfLeiZDD% z%BF4T@K`x2n$;YQ+fi5VChC$PW4jv6R9ENYnHWfaEc*Gln9qq>DMAXBf z+z?Ag-EdBPW+h8El)bQn5XJ(b$if?Oua~f&;l0Cci#n3nPMnj&ULs~EZ%O^pA0_xB*sSO}6aR*QpW0ESo?!!wLYXBueW$z_b zw-4}mG6*b1=`B?{($_Z8W0mqO@gf&Hkj_}NzoXugM!&`DTT9qQ!GdqqQ&#jDgOZQX z+Rp!-=iTrmBB0h=N%?9H_zvUgibn`lCHL{M171Hb9Nw?tuooT-4)H{7D@?6=AXqvC zOBG&IO76agP?``TrDBUqqq1|}i~K_59*hybqGbweJ;DSuoltde`tK+~R6|6i>QMda zL(lJd4?^AB+Pqx6NjwnML5CUre3M|w5k8u`G!>%>k3!-Ob4D|~hl+lv zz8SAA*w=nN=A}0hG}7f~psi8XQ650~{P9qkyEsJoB3{2a9+Yh31aDpgps+%1eep@0 z$^D?`Q62&pPO5vcmnh_en%fxN>&d*J+bPwk-zn4&ZDFIw%i359V!*ONTg3zq!XWhT z;sq@=eBNnZkKofsotUv5;X@IwKZeb3rNPDJZX|W_e7xo5C9O3TG8yr!m(5Q5u7Ip+ zqlajFZldXN1~HbD|6tPJ!b_(WxGyKnW`VifR>Q!kzSy@S33Quc^0#xb>6PD7C9>5o zyg6^&PCnpWvIi{t1($^dn#33W{zZL1n9ib)`?jh+XL%51rt(P7>#3NPHMon?XQpra zYV!K<<5@M_3xeuJ2dVNn$D0sK;ZD=w`N+}`cUSt&j!P#AT{MU_&{#H}Lzb#nRR`yI zFTTDDlw8EYfvpIKN$2q`_mU)uP&^n%Yx-5yfBAW|9Ntxc6U7y{yf@krdG9R?X6a3g zLBC!=Hwm>~jT`BVPeC92X87tIs!@BJ6x-SD?_O;rPx*w;?qYJ>g}ArTNoO7YMw-C4 zf{!k!8}Q{=;l8g)DPFM4wa#=ArESus^tbEkTKDzyZMSzL-9V((zpqC06i|5;_gvT( z_9ENrvppSFJ+nT_+=uoVXrHDF>lj=;#cPYN1>vx8CVp`eS6(#e9$Z2;{)S*n6j$}~ zo-E@sN~7MCQoN{_Q6Cf14t=B)uj%CqJ^4}*7a8w^UiGVL=35dPF&jOKBRnO~dB>W& z-yr@C#Or%#eqV`?9?!J1dg}=9i(Bs_hB?FzVExl+6bLH!ZmMFV5) z=eH$3Ya;U($MQy;4S;Qb@Hi-%WIM11UBzY&RaN*kp#df8gplSAlmEcJV7iGZJn4KM|>bOKF>qt*9uZskBiSy&ASY?u@r-YNdFb8 z58ky=;l~&mMAq-9+B!s2RSyeFc%7NXr-!ipRW&klb7-|q6gla41DWa#ms0!~;iGk1 zbW(BgPGq@>Ec%JvZG^-h8*BRljQsZ}$59fe<}W-r3CYrsEEIpWKksn@Z^^?!|Ky-_r=XJKieg@Cm~Dil9gxxnVT>LU8k;dtX-sQmfiIc` z4m^(yAi-aChkm zzETqA2#FtL{fYmZW6ugqQ{10wcH8`k7N2N(^@dJJgFmye!ViG%HEsku1`NyZj`4~? zq93LQY;A*{@?@t$bD7dwtlyy% zI6`VUzDhz~;1|J7RXl(f@3!haq2*~zUG_6n`Tv8el?OCc#y`9@FZfOq9Q}v4;rV6N z0%fkhJEZ>0oAPBpXu`fxZjf>VS4DDobRal)$Z&BvXw)*a!4XZX=*_<2om`5C%Q zyQB$Ho}EkJI2tSpSAyw6eiT=-ogkB46Vkx z{a2sH3~l)qlV0o!_@8(ZxY1XLgP}4O-(eoyki_3rB^lh%g`WzlR{OvOZfMF2BWxtC zQn@R1Hy9f6H3>o-2Fnac@j`ugU@)ZeSDOgUV4ln5aTJVT|^5NG>_+J2i8jok=6bGa)a7Lb#0o6J$N$=o- z;yQzbcm$7mNBlN}ckK<{uxTx?%MI^BPgg@E1i4}wGU;IgzdA+=D_ji?X$A3jGX#dO pd7s;5Wey${_uk<5hD^vz@8;l$Gu$qo#k0i|?d%4P$MwnX{{Vl#?VSJs diff --git a/build/reobfJar/log.txt b/build/reobfJar/log.txt index 9e001087f..08f5b4319 100644 --- a/build/reobfJar/log.txt +++ b/build/reobfJar/log.txt @@ -1,5 +1,5 @@ Java Launcher: C:\Program Files\Java\jdk-17\bin\java.exe -Arguments: '--input, D:\Developpement\custom_ore_gem\build\libs\custom_ore_gen-2.1.7.jar, --output, D:\Developpement\custom_ore_gem\build\reobfJar\output.jar, --names, D:\Developpement\custom_ore_gem\build\reobfJar\mappings.tsrg, --lib, C:\Users\polar\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar, --lib, C:\Users\polar\.gradle\caches\forge_gradle\minecraft_repo\versions\1.20.1\client-extra.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlloader\1.20.1-47.3.0\547850469c8a336b4c60cb8619f6cd421e9e5f55\fmlloader-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarSelector\0.3.19\376cc9c8ea60720cf027c01fc033de915699801c\JarJarSelector-0.3.19.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarMetadata\0.3.19\83feaa9b770e6ac0e96ee4fc23fa89325c5fe2\JarJarMetadata-0.3.19.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\31.1-jre\60458f877d055d0c9114d9e1a2efb737b4bc282c\guava-31.1-jre.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.1\1227f9e0666314f9de41477e3ec277e542ed7f7b\java-objc-bridge-1.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\7.0.1\3b4972a0cdb135853dba219be61a79b22cff1309\forgespi-7.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.1.5\f3da18e12c696d35a47c82cbb2cc8b5aa15e1154\mergetool-1.1.5-api.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jetbrains\annotations\24.0.1\13c5c75c4206580aa4d683bffee658caae6c9f43\annotations-24.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\securejarhandler\2.1.10\51e6a22c6c716beb11e244bf5b8be480f51dd6b5\securejarhandler-2.1.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\5.1.6\62fab3c3d59d37f8e15af311cb638c6f6123423\coremods-5.1.6.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\10.0.9\6d9443f56f50bb85cea383686ff9c867391458b\modlauncher-10.0.9.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.openjdk.nashorn\nashorn-core\15.3\43977e804697048fc8d81d333a36c17d07a5b3dd\nashorn-core-15.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.7\e86dda4696d3c185fcc95d8d311904e7ce38a53f\asm-commons-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.7\c0655519f24d92af2202cb681cd7c1569df6ead6\asm-util-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.7\e4a258b7eb96107106c0599f0061cfc1832fe07a\asm-analysis-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.7\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\asm-tree-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.7\73d7b3086e14beb604ced229c302feff6449723\asm-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\8.0.4\272d240aa73f42195b2a68e2ebd8b701ecf41f63\accesstransformers-8.0.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4\4.9.1\e92af8ab33e428461927b484e90bb155a4f3a052\antlr4-4.9.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\6.0.5\699143dd438431d06b57416944f7cedbe52e1475\eventbus-6.0.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.4\51d6cefb2b55ee55ee26b16391212fb2c7dfb4f4\toml-3.6.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.4\510f174abbf1c947494db50ef2445683bd52c230\core-3.6.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.8.5\4433f50c07debefaed0553bd0068f4f48d449313\maven-artifact-3.8.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.6.3\a01aaa6ddaea9ec07ec4f209487b7a46a526283a\typetools-0.6.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.5\9d1c0c3a304ae6697ecd477218fa61b850bf57fc\mixin-0.8.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\bootstraplauncher\1.1.2\c546e00443d8432cda6baa1c860346980742628\bootstraplauncher-1.1.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarFileSystems\0.3.19\2464eb7d6b9ddb9db36a82cf8a95193e5c6fe020\JarJarFileSystems-0.3.19.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlearlydisplay\1.20.1-47.3.0\91e33682894f35862e9ce29d633e3258120952f0\fmlearlydisplay-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.github.oshi\oshi-core\6.2.2\54f5efc19bca95d709d9a37d19ffcbba3d21c1a6\oshi-core-6.2.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.10\dd9b193aef96e973d5a11ab13cd17430c2e4306b\gson-2.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\failureaccess\1.0.1\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\failureaccess-1.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\71.1\9e7d3304c23f9ba5cb71915f7cce23231a57a445\icu4j-71.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\4.0.43\2ff9d747a77570a07a60d32ac77eb6162ad2a2d9\authlib-4.0.43.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\blocklist\1.0.10\5c685c5ffa94c4cd39496c7184c1d122e515ecef\blocklist-1.0.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.1.8\5244ce82c3337bba4a196a3ce858bfaecc74404a\brigadier-1.1.8.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\6.0.8\3ba4a30557a9b057760af4011f909ba619fc5125\datafixerupper-6.0.8.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\logging\1.1.1\832b8e6674a9b325a5175a3a6267dfaf34c85139\logging-1.1.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\2.2.10\da05971b07cbb379d002cf7eaec6a2048211fefc\patchy-2.2.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.17.9\3cad216e3a7f0c19b4b394388bc9ffc446f13b14\text2speech-1.17.9.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.5.13\e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada\httpclient-4.5.13.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.15\49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d\commons-codec-1.15.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.11.0\a2503f302b11ebde7ebc3df41daebe0e4eea3689\commons-io-2.11.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.2\4bfc12adfe4842bf07b657f0369c4cb522955686\commons-logging-1.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-handler\4.1.82.Final\644041d1fa96a5d3130a29e8978630d716d76e38\netty-handler-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-codec\4.1.82.Final\b77200379acb345a9ffdece1c605e591ac3e4e0a\netty-codec-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-classes-epoll\4.1.82.Final\e7c7dd18deac93105797f30057c912651ea76521\netty-transport-classes-epoll-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-unix-common\4.1.82.Final\3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce\netty-transport-native-unix-common-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport\4.1.82.Final\e431a218d91acb6476ccad5f5aafde50aa3945ca\netty-transport-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-buffer\4.1.82.Final\a544270cf1ae8b8077082f5036436a9a9971ea71\netty-buffer-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-resolver\4.1.82.Final\38f665ae8dcd29032eea31245ba7806bed2e0fa8\netty-resolver-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-common\4.1.82.Final\22d148e85c3f5ebdacc0ce1f5aabb1d420f73f3\netty-common-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.5.9\bb7ea75ecdb216654237830b3a96d87ad91f8cc5\fastutil-8.5.9.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna-platform\5.12.1\97406a297c852f4a41e688a176ec675f72e8329\jna-platform-5.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\5.12.1\b1e93a735caea94f503e95e6fe79bf9cdc1e985d\jna-5.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.21\4ec95b60d4e86b5c95a0e919cb172a0af98011ef\commons-compress-1.21.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.12.0\c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e\commons-lang3-3.12.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.4.15\7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d\httpcore-4.4.15.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.19.0\3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb\log4j-core-2.19.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-slf4j2-impl\2.19.0\5c04bfdd63ce9dceb2e284b81e96b6a70010ee10\log4j-slf4j2-impl-2.19.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.19.0\ea1b37f38c327596b216542bc636cfdc0b8036fa\log4j-api-2.19.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.joml\joml\1.10.5\22566d58af70ad3d72308bab63b8339906deb649\joml-1.10.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\cbac1b8d30cb4795149c1ef540f912671a8616d0\lwjgl-glfw-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\ed892f945cf7e79c8756796f32d00fa4ceaf573b\lwjgl-glfw-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\beda65ee503443e60aa196d58ed31f8d001dc22a\lwjgl-glfw-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\b997e3391d6ce8f05487e7335d95c606043884a1\lwjgl-glfw-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\a817bcf213db49f710603677457567c37d53e103\lwjgl-jemalloc-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\948a89b76a16aa324b046ae9308891216ffce5f9\lwjgl-jemalloc-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\cae85c4edb219c88b6a0c26a87955ad98dc9519d\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\2623a6b8ae1dfcd880738656a9f0243d2e6840bd\lwjgl-openal-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\30a474d0e57193d7bc128849a3ab66bc9316fdb1\lwjgl-openal-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\40d65f1a7368a2aa47336f9cb69f5a190cf9975a\lwjgl-openal-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\888349f7b1be6fbae58bf8edfb9ef12def04c4e3\lwjgl-openal-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\831a5533a21a5f4f81bbc51bb13e9899319b5411\lwjgl-opengl-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\c1807e9bd571402787d7e37e3029776ae2513bb8\lwjgl-opengl-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\527d78f1e9056aff3ed02ce93019c73c5e8f1721\lwjgl-opengl-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\deef3eb9b178ff2ff3ce893cc72ae741c3a17974\lwjgl-opengl-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\b119297cf8ed01f247abe8685857f8e7fcf5980f\lwjgl-stb-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\86315914ac119efdb02dc9e8e978ade84f1702af\lwjgl-stb-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\fde63cdd2605c00636721a6c8b961e41d1f6b247\lwjgl-stb-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\a8d41f419eecb430b7c91ea2ce2c5c451cae2091\lwjgl-stb-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\ff1914111ef2e3e0110ef2dabc8d8cdaad82347\lwjgl-tinyfd-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\a5d830475ec0958d9fdba1559efa99aef211e6ff\lwjgl-tinyfd-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\83a5e780df610829ff3a737822b4f931cffecd91\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\842eedd876fae354abc308c98a263f6bbc9e8a4d\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\ae58664f88e18a9bb2c77b063833ca7aaec484cb\lwjgl-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\36c37f16ab611b3aa11f3bcf80b1d509b4ce6b\lwjgl-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\f46cadcf95675908fd3a550d63d9d709cb68998\lwjgl-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\3b14f4beae9dd39791ec9e12190a9380cd8a3ce6\lwjgl-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.machinezoo.noexception\noexception\1.7.1\b65330c98e38a1f915fa54a6e5eca496505e3f0a\noexception-1.7.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\2.0.1\f48d81adce2abf5ad3cfe463df517952749e03bc\slf4j-api-2.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.3.0\cf43b5391de623b36fe066a21127baef82c64022\plexus-utils-3.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\b421526c5f297295adef1c886e5246c39d4ac629\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.checkerframework\checker-qual\3.12.0\d5692f0526415fcc6de94bb5bfbd3afd9dd3b3e5\checker-qual-3.12.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.errorprone\error_prone_annotations\2.11.0\c5a0ace696d3f8b1c1d8cc036d8c03cc0cbe6b69\error_prone_annotations-2.11.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.j2objc\j2objc-annotations\1.3\ba035118bc8bac37d7eff77700720999acd9986d\j2objc-annotations-1.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\ST4\4.3\92f2c1ad8d84abcbeead6cf7f2c53a04166293c2\ST4-4.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr-runtime\3.5.2\cd9cd41361c155f3af0f653009dcecb08d8b4afd\antlr-runtime-3.5.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.abego.treelayout\org.abego.treelayout.core\1.0.3\457216e8e6578099ae63667bb1e4439235892028\org.abego.treelayout.core-1.0.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.glassfish\javax.json\1.0.4\3178f73569fd7a1e5ffc464e680f7a8cc784b85a\javax.json-1.0.4.jar, --disable-abstract-param' +Arguments: '--input, D:\Developpement\custom_ore_gem\build\libs\custom_ore_gen-2.1.8.jar, --output, D:\Developpement\custom_ore_gem\build\reobfJar\output.jar, --names, D:\Developpement\custom_ore_gem\build\reobfJar\mappings.tsrg, --lib, C:\Users\polar\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar, --lib, C:\Users\polar\.gradle\caches\forge_gradle\minecraft_repo\versions\1.20.1\client-extra.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlloader\1.20.1-47.3.0\547850469c8a336b4c60cb8619f6cd421e9e5f55\fmlloader-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarSelector\0.3.19\376cc9c8ea60720cf027c01fc033de915699801c\JarJarSelector-0.3.19.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarMetadata\0.3.19\83feaa9b770e6ac0e96ee4fc23fa89325c5fe2\JarJarMetadata-0.3.19.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\31.1-jre\60458f877d055d0c9114d9e1a2efb737b4bc282c\guava-31.1-jre.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.1\1227f9e0666314f9de41477e3ec277e542ed7f7b\java-objc-bridge-1.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\7.0.1\3b4972a0cdb135853dba219be61a79b22cff1309\forgespi-7.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.1.5\f3da18e12c696d35a47c82cbb2cc8b5aa15e1154\mergetool-1.1.5-api.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jetbrains\annotations\24.0.1\13c5c75c4206580aa4d683bffee658caae6c9f43\annotations-24.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\securejarhandler\2.1.10\51e6a22c6c716beb11e244bf5b8be480f51dd6b5\securejarhandler-2.1.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\5.1.6\62fab3c3d59d37f8e15af311cb638c6f6123423\coremods-5.1.6.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\10.0.9\6d9443f56f50bb85cea383686ff9c867391458b\modlauncher-10.0.9.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.openjdk.nashorn\nashorn-core\15.3\43977e804697048fc8d81d333a36c17d07a5b3dd\nashorn-core-15.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.7\e86dda4696d3c185fcc95d8d311904e7ce38a53f\asm-commons-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.7\c0655519f24d92af2202cb681cd7c1569df6ead6\asm-util-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.7\e4a258b7eb96107106c0599f0061cfc1832fe07a\asm-analysis-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.7\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\asm-tree-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.7\73d7b3086e14beb604ced229c302feff6449723\asm-9.7.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\8.0.4\272d240aa73f42195b2a68e2ebd8b701ecf41f63\accesstransformers-8.0.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4\4.9.1\e92af8ab33e428461927b484e90bb155a4f3a052\antlr4-4.9.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\6.0.5\699143dd438431d06b57416944f7cedbe52e1475\eventbus-6.0.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.4\51d6cefb2b55ee55ee26b16391212fb2c7dfb4f4\toml-3.6.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.4\510f174abbf1c947494db50ef2445683bd52c230\core-3.6.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.8.5\4433f50c07debefaed0553bd0068f4f48d449313\maven-artifact-3.8.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.6.3\a01aaa6ddaea9ec07ec4f209487b7a46a526283a\typetools-0.6.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.5\9d1c0c3a304ae6697ecd477218fa61b850bf57fc\mixin-0.8.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\cpw.mods\bootstraplauncher\1.1.2\c546e00443d8432cda6baa1c860346980742628\bootstraplauncher-1.1.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarFileSystems\0.3.19\2464eb7d6b9ddb9db36a82cf8a95193e5c6fe020\JarJarFileSystems-0.3.19.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlearlydisplay\1.20.1-47.3.0\91e33682894f35862e9ce29d633e3258120952f0\fmlearlydisplay-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.github.oshi\oshi-core\6.2.2\54f5efc19bca95d709d9a37d19ffcbba3d21c1a6\oshi-core-6.2.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.10\dd9b193aef96e973d5a11ab13cd17430c2e4306b\gson-2.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\failureaccess\1.0.1\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\failureaccess-1.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\71.1\9e7d3304c23f9ba5cb71915f7cce23231a57a445\icu4j-71.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\4.0.43\2ff9d747a77570a07a60d32ac77eb6162ad2a2d9\authlib-4.0.43.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\blocklist\1.0.10\5c685c5ffa94c4cd39496c7184c1d122e515ecef\blocklist-1.0.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.1.8\5244ce82c3337bba4a196a3ce858bfaecc74404a\brigadier-1.1.8.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\6.0.8\3ba4a30557a9b057760af4011f909ba619fc5125\datafixerupper-6.0.8.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\logging\1.1.1\832b8e6674a9b325a5175a3a6267dfaf34c85139\logging-1.1.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\2.2.10\da05971b07cbb379d002cf7eaec6a2048211fefc\patchy-2.2.10.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.17.9\3cad216e3a7f0c19b4b394388bc9ffc446f13b14\text2speech-1.17.9.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.5.13\e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada\httpclient-4.5.13.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.15\49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d\commons-codec-1.15.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.11.0\a2503f302b11ebde7ebc3df41daebe0e4eea3689\commons-io-2.11.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.2\4bfc12adfe4842bf07b657f0369c4cb522955686\commons-logging-1.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-handler\4.1.82.Final\644041d1fa96a5d3130a29e8978630d716d76e38\netty-handler-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-codec\4.1.82.Final\b77200379acb345a9ffdece1c605e591ac3e4e0a\netty-codec-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-classes-epoll\4.1.82.Final\e7c7dd18deac93105797f30057c912651ea76521\netty-transport-classes-epoll-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-unix-common\4.1.82.Final\3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce\netty-transport-native-unix-common-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport\4.1.82.Final\e431a218d91acb6476ccad5f5aafde50aa3945ca\netty-transport-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-buffer\4.1.82.Final\a544270cf1ae8b8077082f5036436a9a9971ea71\netty-buffer-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-resolver\4.1.82.Final\38f665ae8dcd29032eea31245ba7806bed2e0fa8\netty-resolver-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\io.netty\netty-common\4.1.82.Final\22d148e85c3f5ebdacc0ce1f5aabb1d420f73f3\netty-common-4.1.82.Final.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.5.9\bb7ea75ecdb216654237830b3a96d87ad91f8cc5\fastutil-8.5.9.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna-platform\5.12.1\97406a297c852f4a41e688a176ec675f72e8329\jna-platform-5.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\5.12.1\b1e93a735caea94f503e95e6fe79bf9cdc1e985d\jna-5.12.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.21\4ec95b60d4e86b5c95a0e919cb172a0af98011ef\commons-compress-1.21.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.12.0\c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e\commons-lang3-3.12.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.4.15\7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d\httpcore-4.4.15.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.19.0\3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb\log4j-core-2.19.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-slf4j2-impl\2.19.0\5c04bfdd63ce9dceb2e284b81e96b6a70010ee10\log4j-slf4j2-impl-2.19.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.19.0\ea1b37f38c327596b216542bc636cfdc0b8036fa\log4j-api-2.19.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.joml\joml\1.10.5\22566d58af70ad3d72308bab63b8339906deb649\joml-1.10.5.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\cbac1b8d30cb4795149c1ef540f912671a8616d0\lwjgl-glfw-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\ed892f945cf7e79c8756796f32d00fa4ceaf573b\lwjgl-glfw-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\beda65ee503443e60aa196d58ed31f8d001dc22a\lwjgl-glfw-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\b997e3391d6ce8f05487e7335d95c606043884a1\lwjgl-glfw-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\a817bcf213db49f710603677457567c37d53e103\lwjgl-jemalloc-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\948a89b76a16aa324b046ae9308891216ffce5f9\lwjgl-jemalloc-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\cae85c4edb219c88b6a0c26a87955ad98dc9519d\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\2623a6b8ae1dfcd880738656a9f0243d2e6840bd\lwjgl-openal-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\30a474d0e57193d7bc128849a3ab66bc9316fdb1\lwjgl-openal-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\40d65f1a7368a2aa47336f9cb69f5a190cf9975a\lwjgl-openal-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\888349f7b1be6fbae58bf8edfb9ef12def04c4e3\lwjgl-openal-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\831a5533a21a5f4f81bbc51bb13e9899319b5411\lwjgl-opengl-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\c1807e9bd571402787d7e37e3029776ae2513bb8\lwjgl-opengl-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\527d78f1e9056aff3ed02ce93019c73c5e8f1721\lwjgl-opengl-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\deef3eb9b178ff2ff3ce893cc72ae741c3a17974\lwjgl-opengl-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\b119297cf8ed01f247abe8685857f8e7fcf5980f\lwjgl-stb-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\86315914ac119efdb02dc9e8e978ade84f1702af\lwjgl-stb-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\fde63cdd2605c00636721a6c8b961e41d1f6b247\lwjgl-stb-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\a8d41f419eecb430b7c91ea2ce2c5c451cae2091\lwjgl-stb-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\ff1914111ef2e3e0110ef2dabc8d8cdaad82347\lwjgl-tinyfd-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\a5d830475ec0958d9fdba1559efa99aef211e6ff\lwjgl-tinyfd-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\83a5e780df610829ff3a737822b4f931cffecd91\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\842eedd876fae354abc308c98a263f6bbc9e8a4d\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\ae58664f88e18a9bb2c77b063833ca7aaec484cb\lwjgl-3.3.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\36c37f16ab611b3aa11f3bcf80b1d509b4ce6b\lwjgl-3.3.1-natives-windows.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\f46cadcf95675908fd3a550d63d9d709cb68998\lwjgl-3.3.1-natives-windows-arm64.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\3b14f4beae9dd39791ec9e12190a9380cd8a3ce6\lwjgl-3.3.1-natives-windows-x86.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.machinezoo.noexception\noexception\1.7.1\b65330c98e38a1f915fa54a6e5eca496505e3f0a\noexception-1.7.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\2.0.1\f48d81adce2abf5ad3cfe463df517952749e03bc\slf4j-api-2.0.1.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.3.0\cf43b5391de623b36fe066a21127baef82c64022\plexus-utils-3.3.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\b421526c5f297295adef1c886e5246c39d4ac629\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.checkerframework\checker-qual\3.12.0\d5692f0526415fcc6de94bb5bfbd3afd9dd3b3e5\checker-qual-3.12.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.errorprone\error_prone_annotations\2.11.0\c5a0ace696d3f8b1c1d8cc036d8c03cc0cbe6b69\error_prone_annotations-2.11.0.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\com.google.j2objc\j2objc-annotations\1.3\ba035118bc8bac37d7eff77700720999acd9986d\j2objc-annotations-1.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\ST4\4.3\92f2c1ad8d84abcbeead6cf7f2c53a04166293c2\ST4-4.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr-runtime\3.5.2\cd9cd41361c155f3af0f653009dcecb08d8b4afd\antlr-runtime-3.5.2.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.abego.treelayout\org.abego.treelayout.core\1.0.3\457216e8e6578099ae63667bb1e4439235892028\org.abego.treelayout.core-1.0.3.jar, --lib, C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.glassfish\javax.json\1.0.4\3178f73569fd7a1e5ffc464e680f7a8cc784b85a\javax.json-1.0.4.jar, --disable-abstract-param' Classpath: - C:\Users\polar\.gradle\caches\forge_gradle\maven_downloader\net\minecraftforge\ForgeAutoRenamingTool\1.0.6\ForgeAutoRenamingTool-1.0.6-all.jar Working directory: D:\Developpement\custom_ore_gem\build\reobfJar @@ -120,7 +120,7 @@ lib: C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.antlr\antlr-runtime\3 lib: C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.abego.treelayout\org.abego.treelayout.core\1.0.3\457216e8e6578099ae63667bb1e4439235892028\org.abego.treelayout.core-1.0.3.jar lib: C:\Users\polar\.gradle\caches\modules-2\files-2.1\org.glassfish\javax.json\1.0.4\3178f73569fd7a1e5ffc464e680f7a8cc784b85a\javax.json-1.0.4.jar log: null -input: D:\Developpement\custom_ore_gem\build\libs\custom_ore_gen-2.1.7.jar +input: D:\Developpement\custom_ore_gem\build\libs\custom_ore_gen-2.1.8.jar output: D:\Developpement\custom_ore_gem\build\reobfJar\output.jar threads: 16 Names: D:\Developpement\custom_ore_gem\build\reobfJar\mappings.tsrg(reversed: false) @@ -131,32 +131,26 @@ Fix SourceFile: false Fix Line Numbers: false Strip codesigning signatures: false Adding Libraries to Inheritance -Reading Input: D:\Developpement\custom_ore_gem\build\libs\custom_ore_gen-2.1.7.jar +Reading Input: D:\Developpement\custom_ore_gem\build\libs\custom_ore_gen-2.1.8.jar Adding input to inheritance map Processing entries -Conflicting propagated mapping for net/mcreator/customoregen/block/ConcentratedcoaloreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/LapisoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/SharddiamondblockoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslateredstoneoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ Conflicting propagated mapping for net/mcreator/customoregen/block/CopperhighoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/HighemeraldoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/IronoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/LoweremeraldoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatelapisoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/PuregoldenoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/RedstoneoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatediamondoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslateironoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ -Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/LapisoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/ConcentratedcoaloreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ Conflicting propagated mapping for net/mcreator/customoregen/block/CopperloweroreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/PuregoldenoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/LoweremeraldoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/HighemeraldoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/RedstoneoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslateironoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/IronoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatediamondoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslateredstoneoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/SharddiamondblockoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatelapisoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ +Conflicting propagated mapping for net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I from net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I: getLightBlock -> m_7753_ Conflicting propagated mapping for net/minecraft/world/entity/LivingEntity/lambda$addAdditionalSaveData$3(Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V from net/minecraft/world/entity/player/Player/lambda$addAdditionalSaveData$3(Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V: lambda$addAdditionalSaveData$3 -> m_219754_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getUses()I from net/minecraft/world/item/Tier/getUses()I: getUses -> m_6609_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getSpeed()F from net/minecraft/world/item/Tier/getSpeed()F: getSpeed -> m_6624_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient; from net/minecraft/world/item/Tier/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient;: getRepairIngredient -> m_6282_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getEnchantmentValue()I from net/minecraft/world/item/Tier/getEnchantmentValue()I: getEnchantmentValue -> m_6601_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getLevel()I from net/minecraft/world/item/Tier/getLevel()I: getLevel -> m_6604_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getAttackDamageBonus()F from net/minecraft/world/item/Tier/getAttackDamageBonus()F: getAttackDamageBonus -> m_6631_ Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondArmorMaterial/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient; from net/minecraft/world/item/ArmorMaterial/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient;: getRepairIngredient -> m_6230_ Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondArmorMaterial/getEnchantmentValue()I from net/minecraft/world/item/ArmorMaterial/getEnchantmentValue()I: getEnchantmentValue -> m_6646_ Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondArmorMaterial/getKnockbackResistance()F from net/minecraft/world/item/ArmorMaterial/getKnockbackResistance()F: getKnockbackResistance -> m_6649_ @@ -165,6 +159,12 @@ Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondAr Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondArmorMaterial/getDefenseForType(Lnet/minecraft/world/item/ArmorItem$Type;)I from net/minecraft/world/item/ArmorMaterial/getDefenseForType(Lnet/minecraft/world/item/ArmorItem$Type;)I: getDefenseForType -> m_7366_ Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondArmorMaterial/getEquipSound()Lnet/minecraft/sounds/SoundEvent; from net/minecraft/world/item/ArmorMaterial/getEquipSound()Lnet/minecraft/sounds/SoundEvent;: getEquipSound -> m_7344_ Conflicting propagated mapping for net/mcreator/customoregen/item/ShardDiamondArmorMaterial/getDurabilityForType(Lnet/minecraft/world/item/ArmorItem$Type;)I from net/minecraft/world/item/ArmorMaterial/getDurabilityForType(Lnet/minecraft/world/item/ArmorItem$Type;)I: getDurabilityForType -> m_266425_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getUses()I from net/minecraft/world/item/Tier/getUses()I: getUses -> m_6609_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getSpeed()F from net/minecraft/world/item/Tier/getSpeed()F: getSpeed -> m_6624_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient; from net/minecraft/world/item/Tier/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient;: getRepairIngredient -> m_6282_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getEnchantmentValue()I from net/minecraft/world/item/Tier/getEnchantmentValue()I: getEnchantmentValue -> m_6601_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getLevel()I from net/minecraft/world/item/Tier/getLevel()I: getLevel -> m_6604_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondaxeItem$1/getAttackDamageBonus()F from net/minecraft/world/item/Tier/getAttackDamageBonus()F: getAttackDamageBonus -> m_6631_ Conflicting propagated mapping for net/mcreator/customoregen/item/DiamondshardItem/appendHoverText(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V from net/minecraft/world/item/Item/appendHoverText(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V: appendHoverText -> m_7373_ Conflicting propagated mapping for net/mcreator/customoregen/item/OreBiomeFinderItem/use(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; from net/minecraft/world/item/Item/use(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder;: use -> m_7203_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpaxelItem$1/getUses()I from net/minecraft/world/item/Tier/getUses()I: getUses -> m_6609_ @@ -173,7 +173,6 @@ Conflicting propagated mapping for net/mcreator/customoregen/item/Sharddiamondpa Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpaxelItem$1/getEnchantmentValue()I from net/minecraft/world/item/Tier/getEnchantmentValue()I: getEnchantmentValue -> m_6601_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpaxelItem$1/getLevel()I from net/minecraft/world/item/Tier/getLevel()I: getLevel -> m_6604_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpaxelItem$1/getAttackDamageBonus()F from net/minecraft/world/item/Tier/getAttackDamageBonus()F: getAttackDamageBonus -> m_6631_ -Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpaxelItem/getDestroySpeed(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F from net/minecraft/world/item/DiggerItem/getDestroySpeed(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F: getDestroySpeed -> m_8102_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpickaxeItem$1/getUses()I from net/minecraft/world/item/Tier/getUses()I: getUses -> m_6609_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpickaxeItem$1/getSpeed()F from net/minecraft/world/item/Tier/getSpeed()F: getSpeed -> m_6624_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpickaxeItem$1/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient; from net/minecraft/world/item/Tier/getRepairIngredient()Lnet/minecraft/world/item/crafting/Ingredient;: getRepairIngredient -> m_6282_ @@ -186,6 +185,7 @@ Conflicting propagated mapping for net/mcreator/customoregen/item/Sharddiamondsh Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondshovelItem$1/getEnchantmentValue()I from net/minecraft/world/item/Tier/getEnchantmentValue()I: getEnchantmentValue -> m_6601_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondshovelItem$1/getLevel()I from net/minecraft/world/item/Tier/getLevel()I: getLevel -> m_6604_ Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondshovelItem$1/getAttackDamageBonus()F from net/minecraft/world/item/Tier/getAttackDamageBonus()F: getAttackDamageBonus -> m_6631_ +Conflicting propagated mapping for net/mcreator/customoregen/item/SharddiamondpaxelItem/getDestroySpeed(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F from net/minecraft/world/item/DiggerItem/getDestroySpeed(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F: getDestroySpeed -> m_8102_ Conflicting propagated mapping for net/minecraftforge/event/BuildCreativeModeTabContentsEvent/accept(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V from net/minecraft/world/item/CreativeModeTab$Output/accept(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V: accept -> m_246267_ Adding extras Sorting @@ -214,6 +214,7 @@ Writing Output: D:\Developpement\custom_ore_gem\build\reobfJar\output.jar assets/custom_ore_gen/blockstates/sharddiamondblockore.json assets/custom_ore_gen/lang/ assets/custom_ore_gen/lang/en_us.json + assets/custom_ore_gen/lang/fr_fr.json assets/custom_ore_gen/models/ assets/custom_ore_gen/models/block/ assets/custom_ore_gen/models/block/concentratedcoalore.json @@ -343,7 +344,27 @@ Writing Output: D:\Developpement\custom_ore_gem\build\reobfJar\output.jar data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json data/custom_ore_gen/recipes/ data/custom_ore_gen/recipes/axerecipe.json + data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json + data/custom_ore_gen/recipes/create_crushing_copperhighore.json + data/custom_ore_gen/recipes/create_crushing_copperlowerore.json + data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json + data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json + data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json + data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json + data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json + data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json + data/custom_ore_gen/recipes/create_crushing_highemeraldore.json + data/custom_ore_gen/recipes/create_crushing_impure_iron.json + data/custom_ore_gen/recipes/create_crushing_lapis_ore.json + data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json + data/custom_ore_gen/recipes/create_crushing_pure_gold.json + data/custom_ore_gen/recipes/create_crushing_redstone_ore.json + data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json data/custom_ore_gen/recipes/diamondshardtodiamond.json + data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json + data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json + data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json + data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json data/custom_ore_gen/recipes/ore_biome_finder.json data/custom_ore_gen/recipes/pickaxecraft.json data/custom_ore_gen/recipes/sculk_catalyst_diamond_shard.json diff --git a/build/reobfJar/output.jar b/build/reobfJar/output.jar index 2d1ef863eab0247eaa43b4f2a10742490791c615..3781aec8d7f7fec7e6e661417c6ecd69af007bf9 100644 GIT binary patch delta 18816 zcma)D2{=_>w0Dk>c_uRrD03twg%l;Bkp?9svj{0eq^L}}*eMlCrPAP5x1yv;GDP!? z(x8$?n!R=QIb2u$-+R9AboW`qZ?C=1+Vd*urs#uQvCI;FuduPl54VuiFDrwegMXb3 zby%T;l5n|Eiz>^oj0ILPGNwp#H7U$GBqzx#5wvEF7SzWKPr>8(_kt6pAclp|<|QY{~L4L;vuQ;NqP6^jpSK)t!1BmTu=l-AgUP7iB7FX{}y= z{kSiy>7n}b3<2Sfd=d5()b>?cGx#gyI9GqwK-lx z%ZvFQsXsoqRee}x;M0_P`&ClIMZ}AOL*6gQU72YUke!=xr4wc;(q z>?I7gMoVvacePpJk7&AZpkqkJ8~3=69(tV{K7 zox_%`BZUgx0tVmly)Nt&JyD}78`#I4|3=6*g`MthD;q#Q76Gw}>!;Yss^iVU^X|qi5 zkm?dEPs>k>n|^uN*bMtivp&x_ReQZ4Mxv3`6#8CFplbiy4GZi});k&*&g*$|Fn%-t zxpgJag;UQg9iQWy?Ctq8X=b?jkgvgyN4N+d9F=^d)*lHPE6i%G$oc4a{=$AQ>1*M5F3>Eb9fc(&9Qk=Mi^KE6GJS)S6WEWI94mZ*g!Yn_S^%RxGU zi5f$+E|C<>k}1RQjau|O@`!~v`zf;>Q@84Kse-6F7CK6^Y$^``t7nKXGK?c7S!dr})sBfyyuW3lA7V1|~$JN(=9p-+J2q__*y-YY)DzqLcU@NZwuyVsGjEK%hR zn7Uh!wue=%oPh}+@+c@8LQC}yru8<3WuTUW3Eys!M#!}b0M!mAzb;M|EzUiLE{6;NPbSN2` z{(U4H6ONARz`wioI`QvTecCFhJWEpm>1`tAS$7R0G0)ks8~-j9hq1({j*&M-AGVNU ztT^L1iootMCg>_@bHy+h>1`oJSTjbi!#X!cH{xF{1w&S&X+AE8nAPLoUabqMqyj5t zOgtv``VxrZtm)<(`)Ny~?P;VaTWzcfu9fX-v7N4-8X%1$C6RCjDaAG$FW)=N)6~EW zQl5<_{G??me2`_=PE^BU?6=lUG+d>vH9xMc($*dsZ6(FnbEjI-P_;v7sPwI*3j3wQ z6CNnmpIJg|e#f&k+yy69jKXeqc}a_1aI#_x%#KuN+HB4~v64-5-ddZp3&NN8naehg z6w<(A?-i*EHQ5O{yJ#*osTfD9q3JoK2s?CJEN$|KytgzG?Ezty=5_(JB$t$C56{0f z2qV$$#T>R#p{)Q#WUt!Sj?G~&y>gIl^93hktlWl3IrhAoI3cXez@iU3;FA`-8_ZT} zl2yPQEd|OR;a-j~JM7g++LXUIt*;a5I_NggI_!dX&a^z;R4!6)6E**WlSYfSlfvx7 zokKB;-Spu&EyJ{tGDaF1fvxPuPow@qmu64=V)+-S@}8?-X%|oW<;qt6HWa&!J?YnI z+UQk13$V+YdO`%L0-7vHwBv%25b+cjqy`f$xbS%}@fsJN3KMO(a7Bc8feWRg#9Lh0 zAx6Byg$?4wM_d5)@#w`~awxhZL8M^PQc2=2E@(LuBhUpgLLN01ld32~iom@DNlO#0 zSOAO|kBnr9z4+~}4Dmo3j9kRm?{5Ke6(saI?_`N6+%!n!8Yo5XKrv%M?I&4D1EM#)cn0Dn(8*c#BI}LC&WoO3|3&{&jdx4?llNZ z={#?t_P*$mL~Z-9-*L7#pLUamo}Fr&&7`b#4fa_#%sDw~ibbWVw!Z(IyT%<8BC6jg zT1Xq5avtV;I5^(aXLS&brYGXg!<<%)M-DN@y59bGJ~d@p7?*^%vYU2Bn2VW~V> zbI7Usa`)-bODD4?jI7x*uWzFHZz9bySl7BY3Q=?Wk_An^mmoeYNj^RoNB%)_3VeeH59S*fHWN|8I6~te zz6lNW30vXkyCNja2m9q*R+Y#_W3i2$iJiu4)JN+KeK)RRQ+DZ}NP&ClC#Lwkds3f2 z+GvzVUAvA`kCD^EdSBt>!S@u39Fm4+6B~+N2Y8)y(0FxNScqR`0_wQ>PU^|<>Wk}M z2Ft~UrmY$jU*akH;-SJEmBryxXGHyQeZN~ZF=Ky-*oz|ZMP)OatCn~qtl#@dzgp0v zrd`N-@q#gR!xpyntP4DE6Y9BS*ZIT~t^rBSO0~b#_LwMazV6jxF!zpdg~d-ldxLQT zo!=b;olLhKz55{MZZo(-Xz-u0`Ma6QUXWHX?0(d6PSPJtlY=9 z`C|$X6rS^X zz-r;m)tmn`39b;C7Oj)47?br}$vP+Cj^uFnpg+We*!3+JBcgwa%t|gx>e+ex=?s&H z3nsh9bye)URnqDqa^dX8D$^Zh-g5cRcOO6cNd34IYs#v4?1_z5c3s!O6SMj}(d&rm zF8|eSynTE^!vm?FYL--d3t+R{AhwgYM zDfcWYWS@`G0;?};$H$dFNh^=2(*82}U8z8gt?d|*Evf##{)T!oPOsDhj3xZi_V2vf zVf;kQzG%bh_`&16a<1h}^{`nkw!-Oov64|zR$XUJ3|pi1d;31mMW1UnjnXOIKfLLp z>>yNd_VoS0(Xmmf^OD}$-qcE4y<=~@+$8Rj92s3eecgy1bmnbSiR$d8Dy8?c(C;24k-qYK8kmTI|+cAD&A;Da) za668sm1LfTbeHN=yX$vDcE44W@dhg~$ zOTXEhU%UD`>6)cR1wN8|F!7N?Yru zp{HG9FX^hJ`qqxx{;X0w(RNm3uGNp7DzPi#ucy9Ilrds`>rCl*DM}*2%eC_}wX;Y3 z>P)?}X0vMm|C9$!`>(%@zQU?V|JpiT++E<+wKES6HMKCNNKNUs?Xf8{yt#SG>!{PR!Y1cVC720Euao@I zxlgiGMP9Mt&FH+xrg=36?)qL*@g|xtvO+~)x`wGN8aBu2X8Q#HEz_-|6>Gb^PGvmO zueQyIj5ii(c$@1lx?pmS{L=i?yID%D%W~_w&$_Cs>x(M3jg`1(^W81Ww|$4ig2D?1 zmfypc&Z;?Lvw42-kE-*Yo4aLe=3QwPe)LSubAeEUpt;2E^#@(Q$y8Ts@{$=CgqKm4y%RD@`=g2(5rObLyY z`aVO~RytE}^B)%#gRHeX!)@nY8g!$qBlMwt_jDmo>$RqvC*Gg8An~?ww17qPv6EW{ z1?>>o==dz+`{=#pLYXaIpT+kD#+xOKIMlXSanDMZX`|B1k~7ZK2>qPwIj2XzeS%|8 zx|{D3DT{GZN3CtP9~g77Gxf?RwLPWca`Hbj^%mxeJAYdAAlYDCnaI=6o%e4CWw`mY zuL?UuQXYv?erC}C@iK3qLwFW1_I!xtO(^_(p5{hRn2&e(s*qqGZUD`yg~?i~LiEr2 zHvKEP4-=c47LF`hc`#8sOXx&O&(o9s9aD;v-}_ygx!l~+Z*ldWWiKDBo1*?)WRuP1 zoI6uShP}*)y(r=?>}l3?y1G&kUy~rRh=w zJw+`8|6>WmbxrsR&oJ-5M&xt70cG3iQf4@7iu4+ZsG%dYZhhNu@7JHdt<(6Y=)1sbJ(6YcsdEVnUCOQrR&lhJ0-FzD_wco_aRx&n7 zE}wJuRMOdmlHrZzhNmJ8bVkbGyL-*e`+0ZxbWYUpstxaDXWm~LlU=vP=#@j;Te%zW zo{1N|m?~B~a{uQSONxTY$a(mvJD+h(T&ECyizEu0(cYVi87mEcBjn*DK zp+H9N+|7AqF{gEASoq&>kqx>RQhp}=n2zAKWS1{hc@L%i{id8C!i~+4DUM zCA*!6C1%v?$hH=VZ<^H>@;L33)Me*FFBRJOU!NIqGfVcv#NP>}<~zTgUDV*qv7{oVp>?CE^DbNG1*jt*?*!e+Q#((@NqI~3zK{+?$$DZ8m zad>s8^QGn66eBrH>{jZw9#ONC7QLdYCUWJe`F8)U6P~VLK1aDN@L0#b_in!(XHHG- zQg16YEj1H!Umq`0zcEq4sN1;aH|xT&KVJ+MD>)mwm9@!sb@UthW z`BkRj{Pt$)9bXj(8LC;-Ewafv8gRN<$^Fl!CjZ1|pI(djNF>W%Ji8)zlA4M@z$LA~ z2+NJH-ma1s$J3IP{oWZD!522Xz6c}6BG`)jhcEt~j9@I8(w*3&>F(I1F!Gz)lN_04 zsC9)!X=~-Rg_r z5!GzAO=LR9>ub2m28p&u*B0&{aaYioe{Q_!&6O$=D{>`|pNo+aJgm5|YtGsiiF@@w z2^?z^IiNLGG0!b?zv8bQJC5Gx*fp(`zH;P;WviQk^gg+krwPKA``6|8iaqX34Xd;g zxZ^ZT^K$XsXYHx`mIi$rtYc{ZdGg%7H6QSh>vn0U*X4iv0`^D$<%^IgpRj?wB&(k4 zB}tvO%{F0%MOTJ?p_csHQ-ieP17+sy?F{zUTXXzPm6bs`>-$pkd*0?5SAJbdln=iu zoMT@#^7OttV;rkv-w79O=rX(>dFjN_w`{c}^*6zC`C|{pntwkZmi@|jxr6iaxj^Wt zf^B2%OC~SA)YIS=yH#Rr^7{L3-Xq5Wn zTgUS1hLyL!Vo%X;HBz%XF15XIf=GRpTEOU`(fRiE2mCXmnog;dPyWhMO;hi%(zOU# z=%;jZ-Dbmh8zQoQ>Ljh;c-9Su8L>w}-KCFI%nl=X#&+`FbPb7bep4f<{tk7e&# zh&TkKoa%Hg_n&%S*5F`yrs=%7B{v;J`L}Z!sz4^5twuI$PdwNC6;MwclZyv3l9(zp#DQ~~|(xF&S}oD zotV3NZO#Hc39r|p@9geuI{N%t_d^xR6Fuztgu~rCE_pKeOi=7 zmYsbl(f)mt*NO8#lE~*Z0@GAu$6iY5w2$_&50NS!{#t?UUj4Ijsl?}PRmv52u2l`b zkR9V%@N?(!olmySOSf;0`FzocM-g1s_}CSPAk8@C^0~4_e|A9Omcsznrf4%(RpMCq3DEdUDR0VY3Zq zPdOs2aR10GU+cN=XFeR1aDnyv{L_a0h3V{9i4BtJAJvoQb?I(unJV+-{)pj@rw%@N z_~iJuQ0;7uqOBV%d~H3PqHiY6wsZJcK;FqrY!y>hmygo$^$UpR_@C-o&=_OpakX>F z8a0;Y-q10X`@3H&FT`uDEjvRb6QFVL;K64jy zwhG0gzw>7KAGXOdd?2^AxF`7DJh^(m(WZ5e(vwTn?t9sU${IgSY`iWpWu(V6nYul; zWpV*KOM5OkZuYhPF1%*NwV%uN5BYStH|faPZ!h+n^zB3d`s#H3${$w~r1-)t{=ldyccb57p7?L*kaxG$drKphXvmwt8l$_cci#F(V|cnF9;$;Hsw6IIiV3!q zZ|Xc2`m|=45nI#jaNY^g?Dg)eqgF083(gmbf0WU&M(K^~r$sjHHUe&9o+8S+MLV}v zD6bX0xxKh6u;XcS%%EiJcpFiHi);7SPqUbz>iNmqZhXD=_+)M4Ge6gN%;Nv5W>BiH zk;_(HTpO(u^1Rcx;oQuQz^H?+ILglO%_*Xy?8m_7aD2xSBz<5RXh963&ouG(lCma* zQQ^_8R;>UJcWFdYs{Y|ydOq%6{KBJdRv>V;56ac4VAns$+jaCp=sM&)MM3PIHn+0qM zhAFr}4nZ@0AwK4K(%$7juh64w!`AhR38Q>3+Gbwtf!1nTMHnETFd__V z#jho_(1&VL5e2Lvf-p%bjwXqrqv1rv0MeXQ#2QQjnEky41LRTz!FW7^z_}JkGm_YY zc~>Ke15|;tGK!$DfjKd&na+rsVhDXy8O<01I$CIHG$D$Xt|3-qZLm!rS=NEG%EJl2 zUeZ2Xz{+!CdX0%83TX1GUX+4Z0$@adXZOVsmQj5lriy(clR!juB1Q(u0kV|pFCX!*5M3T!eMIwsy!i7~) z zw1!-a3*BqT)3{K!mUNM&r0IkQD&K*RZv-D7l8+%rhy;2D`x@aK81!*1X+%26vRXAX z(BxgDeC`S8pUY!N338V#@=PR0pdB%!ye0*8p;%mY9gOT@1gsw6m;3jF7R{0wg8m#J z#jpjcv7`$5T#m+o%n5uii{dHjRrx+D&YV!f@DDSWMuh_=wW;NW&sV_mz3CJx7=K0_ zsY0wqh4G{jQmG<`&?Z)7jYyXB8~8dL zRZ-L`Rhr75Kn}qu>Iu-aWVAGq)J97aNF_{+p@`0?iXxs*AT=?u6^Nvc25pIfT0g@- zP1bo41O^|2$CStL&sf|BH%~`<+?qAOy$=s>^Qtsyqh2MFlgVN&h>zjOWj!gcK}AA= z+wGG(LB$c=Je~)f4;@c}n1O_m;n={&^-#H9%%txTp^R5BEXG{SQ|xxvT+8e@CK{YNKmmt zE%D5U&)*0(DvrW9kO4=3H{oO;YU=@U1WSLU6k3?fNc&TaRz2))$Z?^gq@E%^(Z@uI z6edVUrU0?t02BRFNV*RVN>QrH1GDVGEOVZgR2pK*>J-L;H1cKp*Z2BwrG zYodvG?s}%RPbmZwGmHS)H3}HvZDIMV6@ZWc5AWCbZH7FzkdD~Yqg%k#Mnt5MCRApG zkTG?e;NnP-a(sOU9gD7QO1b3=F!Av4ex;q}*q9?`;wUtgu_iv1YR_2Ah#Mnj@ClK)@UB78Y1~nz5Gt-%o_IKn}{)zAj$H8L)m2&^$X~~1>%z!r`an|CWAk_uW z7_JzUR3~6eNF7qeZY{mFctt` zq6ylzl^FpFKHRX+f|HswczA97G6N)asLUk9pT$(BnFSEKXHv}tqS!7>gp?~aEE!J`b@xz2mQkSsx}VE<>%=_&Wm(XGcb^m+VS zbO1w)g2XEfVS@l7y&4mf5cBN{DWYX9CPIpqCU%PU*0iTz$xYvLENzv>G$(@+}<3Tp81u6z!5W2Lw;f=DQzG$2jC zL$GSGLVgJ$k9^XU%<6p?N1xJ|z<7`kc6IkMw2;M4QW_gPV<#|z{xAsI=-5tj6h8^W z-IJZ<6#f|m!7}X8!J``%U$_fq>LN^4M`#zRszuHH%PSh#ZwB%4%~9gxQ|9#zh_?2q zpw3<7DAGg-sqBVDcL-`MfXz9a^z2@5z zXKHn|8y?=Ov_vU+J=7yYP&xJ@xkXG+vx4Gv13|n19w&IXe_~=>6||~|)WNmyDuUWS zb6F#B?U<#!2Uw59`)Pd;g*_By9p>+#_%#y!_)o7>2FDC>7&w$^QHM43nefAv3UFgFE&C)F649B_+$W6+^B4%u=D| z?fvj9;93Kv7DgWO2Tjo9{Sa`E6wuZZNLPF+2b=f48QS>(%+O|v6l)}!C=aaAM#j+v z2cX_;%+f;z^00I4+y01`z$#!P$}Ay`k$VX>g3eJmyJ!tWQw+N;yY!vD2{Uf2d723Fxnng!XAvgkZ4ZLxt7 z&yT%{0|T3d2JT2U=+W|!DJg~ypJC*?w(X8S2=b?)LA*1!w*f65tOsogN?<-lUMW-^ zYDBXjo06VO?vWqHlAm-EsgA!-|ID~aJa+Yr=i2o*0AvYj;8CJq3K`#29sqOX zT1ILN9oQspE=O-(9Wq(X>?62YS1^b2fQ49bt$})ZGhDflI3taVN9QTQX#Ll6tYjh= z4;=Adc=Xjd7qEYtj{}c^uO@K;|8^IZ`h>=;CZ({``*L8wEPEalJsU2{u>Urz?~amd zS^tcY89bQFZMm4b|BcCWy|9D}+&}$-H$o0g<^uoSWS2{%25xQtoCV&M&3!vAfZ{;Q zm|H07#F9RV>VMzQJB|*T%EeI_h%@jL_P-*x=5dsETk3i^mqshlR(o{_6BB>8V`mfJlcez@eS^>zxaLRkQ z@YRtEhw{t`WwiJjGurjPc;sCWe3-#in){DSuK(YF*Z(?@HzwPhxcJKd!2c_%`d`NJ zI{wB?E|k+hp#Jv{+W%I}h9}I+!bk%q&_LU&YxRC-w0}7!fe1|haS{821?$b#CxXE zJ&#vOk$ZUay$s9|apUESP`8A%x$bP>o4EJ!hoG*tFoj=W!xTPx0ZoQ`K>_rZ4SS*_ zE=2;_od8NRmm-JuoM5K;@)Lk+y|7PR4v{CBC4<&UU>#o6j|I1ol7D@chq@z03!$-V zps~C|qN_)rt}guFMV^x_^npTOw4_f$4#731)L-ax6A7U6@relxM4#c=PZzE`cHD~(ugM*8~e(PPMv%s(L@8i>(7S}G{NDfr82r8KdzudphfId;`29aJ2 zYLo+rS`f{FE7y_OLE9}9p0aW(W2ijGi$pE+A@!+x@Lo@HT-h_ z$W^o`TY+BH586%LJ{S@GxL3Sdqo^`b#vs5&l&P08UC%)(ow5`@oi`O?%?`B2>Q z7>e~es!vr5UjX2t!Slp}1Lwew_h1t5z%3KqCofOk3yY)r66V$*`Lq>57*qZOIBa=_NO}QOOWT?HdUbc2~t#4aZGrKI?T0igGOJAn?KK1cUh9>GYkM)gXu{nl@EYI*r7<}BuaQG&oCwJs^Fc2So)J7ais@KZ z8@-3CcPv}?icFscG7*2tR?)I*csY$_KMFLMP_k4ek~TctzvUT>4Nj3T_m|c%&9A5d z`@}LCUUv<1`^3N2{N7Sf&V|R23j!rhCNjPb7un%kK_`Y#M0>9@E~~f>P#0;k3gvSx z6ttF<;NOsiB~?*CbbrS$tOfB0y*$W75JtOd8LLVu-WnF82Pp}ne@&Z29f)XUGa`_u zKs)x?TnCFeU}iErIy{D7>6Og{S^RAdQ4qm748)5%rX9a2vSKbKk3iP-j7`qo~B0V$B7K}Oe2GisXrKMOCmtvWmjkpK!oK}5SG}h zaZR9o0~6qSdp&f9`XDfyxd-Qyf_GtYCV7p1S$vmtAjRwG7o&TmAi8mvoIw7% z(MOp~e!fM$=%L;B$Vp_^ed@)ReE*mxuDVZJk#Ae*m*#315Dg!L>jWQ=%H+E?n%q(g zXPcNDPLV6#(BxxHu+_ulHi~@teeOfjhb;d@afhN!55bOtF8XE56Ic;pQL#rLn)-t# zPk#gVx!c1sWK?_ zDKz2Ya4zADC@D|Ljv~oXy;NzmyqPp6ml#k4HFUC>97}STmz{F3W*XH3^4jJ!8z_() zs78v?mKC-@m7SCN@j6;aGxGa1ilT+D>X3UY+}*iOrzw^u5X#3|0dcz%P5IqQ+L9X= zP%r-EYY*yIJJ%H)(&+&I@V|odrti<7mhYZCEOF%g98hY!xYWw&q$Ilj0z6Uu92B1T za9L7qjqIZgK?N^CCSWzD;I@2!311?9Ete3n48Q>jM}s;!FP37dqV(6`+3Hsi z2`Bnf_Ii`UXot^x4HlZE^hwh8XYS*^8^1rF&-mt^^F7~l=FDFOa@d&}?ZO^d0?1 z7s{BA1TUfIOh@^gUAKguD}9^5(E`lYl#ow^ASd((@nb$7+L{qS43o-uqmo+hXL_EW zkffwEaD;u!v0Z)Y%Z{(~jZ;$VyFo}1cUO8g_}Xd-Sw*~oG9t=b84@l#0R0PLEx2EV z_9LQdDWf7Nl9is3(xDhH0-^M1_#=f99Az&xom^B+Mx%0}$q7ZT4IPzX(bfSQr(6kh zP{LvkQvi2j?$ht_Ad-XWON=fcj)scpOVO;Cab<)Nd8v#Cs?SgOi+(fQ2?O~nadeh7 z-YSG>2kEPL9c5SI3<3p5B`Kz4qv8?fj_EKdc}dhMif5#hUw-JQe9}Y)D4IsbX^-8M z*PG7K#zdSFl>E6ZAGGPi+?A)vvq)$q+tq9yJ!7Xp=^9LJcJrw!i8-XjNJ^7=LCY^> zzHsuG(_1&OPWNQC6M zCxdA-_kgc9aWC^f6JM3wERDpq%!?;qmsZC^$(sOsnfF4G#FbPeH z#5T~=wn!u@^?&0-q{~$Cs>RNWisgPSCevdnsm&f(GXTGS!hFG0#(f~;JMIWCzvV{DC4aV^ zk_TR$(1lg&W4RQ_c1s0vG>5HW%*BE$_+}{^IM50f3P?GGROdrjq13MEqG~Ouy)I>U z-q%@Fzv(P{8?*Tg#)mU{t%2tR9ZtOVERVz49%8XzR{oKETDbiVb014p6w8we_NLYO zv1qnRnvIKPF4W_e>GAB*|42wh8TS^EY?b)2N$ief)56((g!@}IHDynwVofvl!V8n# z-_GVQ8G5#6ArRl4(JR8TJDqXKc%UbfOEh3|Vj=ew4+G!c>7%a%(Ar&conNhYk?QJ$fLIj)T za(^~mLa+y&r2-)>V8J=e^Y%e%!T_}`EIFAhiC6$fRydSj;6V`bE3X4#@3K=AA$Dpz z7&MeQLdptp{#-AwHk%P;$iF>;c*zpLFq;0$-2&saBMiEx0Gf12o@!ca1xNG zaCq%^?hWCi*lDtipC~+Cxyg`p~GZ$j^sFjNFEJiKUAR_McfVU0*j}}<;5~}Dw8W5U1Sr!D#aa*aAPOT7mDVb;U9+3ufte>Jp3N0^U;kZoiPLJvwX=A3~0PUc?7crSW2( zL6xP8Rn@b_{2h{HX7j;RDa+==UBn7G!07sCFGydC@ue-{-AGxmgwxpvoO4vBQ8~P? zw9Dc2`h^Ax&m_rQMRj{e;R8t0bt$K_0XXFHblAF-n_#yEH%Q}ic>r9=hn z+}d#ceT0-^N!CF>_mR+Hz(dH_JV0NWzA_5y`3H)NxiLgIJvm|5t#Qb(7fW*;QyXXp zJVKmn08d7B$ZzT1oJMmIbpS(bp+o!nSv~l{Ry;_N?*sYh+fdu8aZ!&>-*YcgM=wM5 zRZT68f)D=Q) zZu*MrixCK0hb111_BRK%E#nce{tLCehgW*MJ`&X%uq0?OtaT3*q$%Xuxp>q&<5Bi4 zmS#GXZ;(Jmz>oqSLeO_k+~{s~t?%P|1PvEQJlf#GodO=ncES~5A5+MKC}rIWF=cb= z$_6bgFn!U*M%!4FCosrfYc?5Y5at|R8Ni7v`xp@>d~ zxNGW|n0dyv$rp&|RAV512PX<~FsC%|ffzg$lEYR-=&-b&64o%5&ek-xsIhZ5`JX66 zp3cal&&%QZ1jm!599O6Q{rCQIM0P=>eiW89Amqku?oZyvtUzza!co{Z?+7>2#Gc-+ zHYzaN(Coo{r>g@mKr17)j`iM!pm@IoMK+4(>KYMK~T;O`hr9 z827dFwR3iMw!;YnrV`YziK3+UEK$4l%h!S?FGb$A=ps(z$J&>T1X2l(H9~2Lnz5e+ zMNTwP;7M0DEapoTei}pQmvO#O`ICyy7K&N1q<9uz3o1{l9eVU|6UavwH9Pc`I707B z@D@3uzPNJZlO1^oZjTWr>LP3%Pl4dkIf!P5ec-;6VmCP!i+&;{g4asyeLO>h{VMKD z=?Ywhqx4a=LL9E){uR~f4{@vi9f~y5u;{z>X=5l^#XAwj9i-sjCJI40mRx-thm$D|NL|aDvPIBt4fn@$whQF1 z$4|3S*uP@<2r0?hvwk5iQ^5!I$npojuO(VEvlu?U|FXo__$EDZA~g=UrMc* z{|w0fG1oVFRA8^(#?lf4)c)qCNJ6|n2qQN|>yhhns^m)O=%u{Z-lOIK-+-X)uUJ9B z@Y+T-zcYpA&yH4&7o6Fk#$PEkb30o#u8OIfmu5F`BWibbm0G-kP*T!7YBZz%Uwd+P zaXY)OvFOK&IZd-{o^I55W4=P(lj)>|EPS9wE)vo`y{tBLqv1=#>1m;RuQ`~dSy=Qg z#*GtjIUM_KLi+*Zq334aRNQm~6YGyc`fQ?*HcyDl8Z+#_-7v~4?dlAS{X;CRwLZXF zY_72CDtllv($vbAqs7~`-t z6ju3GE_2s>!-k`223*Ur=+}?l-xEc7nTO`E-=q!?-*vLHE5f4BwB1ocPyfLeiZDD% z%BF4T@K`x2n$;YQ+fi5VChC$PW4jv6R9ENYnHWfaEc*Gln9qq>DMAXBf z+z?Ag-EdBPW+h8El)bQn5XJ(b$if?Oua~f&;l0Cci#n3nPMnj&ULs~EZ%O^pA0_xB*sSO}6aR*QpW0ESo?!!wLYXBueW$z_b zw-4}mG6*b1=`B?{($_Z8W0mqO@gf&Hkj_}NzoXugM!&`DTT9qQ!GdqqQ&#jDgOZQX z+Rp!-=iTrmBB0h=N%?9H_zvUgibn`lCHL{M171Hb9Nw?tuooT-4)H{7D@?6=AXqvC zOBG&IO76agP?``TrDBUqqq1|}i~K_59*hybqGbweJ;DSuoltde`tK+~R6|6i>QMda zL(lJd4?^AB+Pqx6NjwnML5CUre3M|w5k8u`G!>%>k3!-Ob4D|~hl+lv zz8SAA*w=nN=A}0hG}7f~psi8XQ650~{P9qkyEsJoB3{2a9+Yh31aDpgps+%1eep@0 z$^D?`Q62&pPO5vcmnh_en%fxN>&d*J+bPwk-zn4&ZDFIw%i359V!*ONTg3zq!XWhT z;sq@=eBNnZkKofsotUv5;X@IwKZeb3rNPDJZX|W_e7xo5C9O3TG8yr!m(5Q5u7Ip+ zqlajFZldXN1~HbD|6tPJ!b_(WxGyKnW`VifR>Q!kzSy@S33Quc^0#xb>6PD7C9>5o zyg6^&PCnpWvIi{t1($^dn#33W{zZL1n9ib)`?jh+XL%51rt(P7>#3NPHMon?XQpra zYV!K<<5@M_3xeuJ2dVNn$D0sK;ZD=w`N+}`cUSt&j!P#AT{MU_&{#H}Lzb#nRR`yI zFTTDDlw8EYfvpIKN$2q`_mU)uP&^n%Yx-5yfBAW|9Ntxc6U7y{yf@krdG9R?X6a3g zLBC!=Hwm>~jT`BVPeC92X87tIs!@BJ6x-SD?_O;rPx*w;?qYJ>g}ArTNoO7YMw-C4 zf{!k!8}Q{=;l8g)DPFM4wa#=ArESus^tbEkTKDzyZMSzL-9V((zpqC06i|5;_gvT( z_9ENrvppSFJ+nT_+=uoVXrHDF>lj=;#cPYN1>vx8CVp`eS6(#e9$Z2;{)S*n6j$}~ zo-E@sN~7MCQoN{_Q6Cf14t=B)uj%CqJ^4}*7a8w^UiGVL=35dPF&jOKBRnO~dB>W& z-yr@C#Or%#eqV`?9?!J1dg}=9i(Bs_hB?FzVExl+6bLH!ZmMFV5) z=eH$3Ya;U($MQy;4S;Qb@Hi-%WIM11UBzY&RaN*kp#df8gplSAlmEcJV7iGZJn4KM|>bOKF>qt*9uZskBiSy&ASY?u@r-YNdFb8 z58ky=;l~&mMAq-9+B!s2RSyeFc%7NXr-!ipRW&klb7-|q6gla41DWa#ms0!~;iGk1 zbW(BgPGq@>Ec%JvZG^-h8*BRljQsZ}$59fe<}W-r3CYrsEEIpWKksn@Z^^?!|Ky-_r=XJKieg@Cm~Dil9gxxnVT>LU8k;dtX-sQmfiIc` z4m^(yAi-aChkm zzETqA2#FtL{fYmZW6ugqQ{10wcH8`k7N2N(^@dJJgFmye!ViG%HEsku1`NyZj`4~? zq93LQY;A*{@?@t$bD7dwtlyy% zI6`VUzDhz~;1|J7RXl(f@3!haq2*~zUG_6n`Tv8el?OCc#y`9@FZfOq9Q}v4;rV6N z0%fkhJEZ>0oAPBpXu`fxZjf>VS4DDobRal)$Z&BvXw)*a!4XZX=*_<2om`5C%Q zyQB$Ho}EkJI2tSpSAyw6eiT=-ogkB46Vkx z{a2sH3~l)qlV0o!_@8(ZxY1XLgP}4O-(eoyki_3rB^lh%g`WzlR{OvOZfMF2BWxtC zQn@R1Hy9f6H3>o-2Fnac@j`ugU@)ZeSDOgUV4ln5aTJVT|^5NG>_+J2i8jok=6bGa)a7Lb#0o6J$N$=o- z;yQzbcm$7mNBlN}ckK<{uxTx?%MI^BPgg@E1i4}wGU;IgzdA+=D_ji?X$A3jGX#dO pd7s;5Wey${_uk<5hD^vz@8;l$Gu$qo#k0i|?d%4P$MwnX{{Vl#?VSJs diff --git a/build/resources/main/assets/custom_ore_gen/lang/fr_fr.json b/build/resources/main/assets/custom_ore_gen/lang/fr_fr.json new file mode 100644 index 000000000..ca50871d8 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/lang/fr_fr.json @@ -0,0 +1,31 @@ +{ + "block.custom_ore_gen.lapisore": "Minerai de lapis", + "block.custom_ore_gen.sharddiamondblockore": "Bloc de minerai d'éclat de diamant", + "block.custom_ore_gen.concentratedcoalore": "Minerai de charbon concentré", + "block.custom_ore_gen.ironore": "Minerai de fer", + "block.custom_ore_gen.redstoneore": "Minerai de redstone", + "block.custom_ore_gen.deepslatelapisore": "Minerai de lapis des abîmes", + "item.custom_ore_gen.sharddiamondpickaxe": "Pioche en éclat de diamant", + "item.custom_ore_gen.diamondshard.description_0": "Éclat de diamant, pour créer des outils ou assembler un diamant", + "block.custom_ore_gen.copperhighore": "Minerai de cuivre riche", + "block.custom_ore_gen.copperlowerore": "Minerai de cuivre des abîmes", + "block.custom_ore_gen.loweremeraldore": "Minerai d'émeraude pauvre", + "block.custom_ore_gen.deepslateredstoneore": "Minerai de redstone des abîmes", + "block.custom_ore_gen.deepslateironore": "Minerai de fer des abîmes", + "item.custom_ore_gen.sharddiamondaxe": "Hache en éclat de diamant", + "block.custom_ore_gen.deepslatesharddiamondore": "Minerai d'éclat de diamant des abîmes", + "block.custom_ore_gen.deepslatediamondore": "Minerai de diamant des abîmes", + "item.custom_ore_gen.shardironore": "Minerai d'éclat de fer", + "item.custom_ore_gen.diamondshard": "Éclat de diamant", + "block.custom_ore_gen.deepslatepuregoldenore": "Minerai d'or pur des abîmes", + "block.custom_ore_gen.puregoldenore": "Minerai d'or pur", + "block.custom_ore_gen.highemeraldore": "Minerai d'émeraude", + "item.custom_ore_gen.sharddiamondshovel": "Pelle en éclat de diamant", + "item.custom_ore_gen.ore_biome_finder": "Détecteur de minerai", + "item.custom_ore_gen.sharddiamondhelmet": "Casque en éclat de diamant", + "item.custom_ore_gen.sharddiamondchestplate": "Plastron en éclat de diamant", + "item.custom_ore_gen.sharddiamondleggings": "Jambières en éclat de diamant", + "item.custom_ore_gen.sharddiamondboots": "Bottes en éclat de diamant", + "item.custom_ore_gen.sharddiamondpaxel": "Paxel en éclat de diamant", + "itemGroup.custom_ore_gen": "Custom Ore Gen" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json new file mode 100644 index 000000000..99d683233 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:concentratedcoalore" + } + ], + "results": [ + { + "count": 4, + "item": "minecraft:coal" + }, + { + "chance": 0.50, + "item": "minecraft:coal" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 250 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperhighore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperhighore.json new file mode 100644 index 000000000..816014c41 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperhighore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:copperhighore" + } + ], + "results": [ + { + "count": 5, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json new file mode 100644 index 000000000..07497af38 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:copperlowerore" + } + ], + "results": [ + { + "count": 5, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json new file mode 100644 index 000000000..65e700902 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatediamondore" + } + ], + "results": [ + { + "count": 2, + "item": "minecraft:diamond" + }, + { + "chance": 0.25, + "item": "minecraft:diamond" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json new file mode 100644 index 000000000..54bd07381 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslateironore" + } + ], + "results": [ + { + "count": 1, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.30, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json new file mode 100644 index 000000000..a984d61e8 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatelapisore" + } + ], + "results": [ + { + "count": 10, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.50, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json new file mode 100644 index 000000000..444452fa9 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatepuregoldenore" + } + ], + "results": [ + { + "count": 3, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.50, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json new file mode 100644 index 000000000..20cc2c686 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslateredstoneore" + } + ], + "results": [ + { + "count": 6, + "item": "minecraft:redstone" + }, + { + "chance": 0.50, + "item": "minecraft:redstone" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json new file mode 100644 index 000000000..a16b94720 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatesharddiamondore" + } + ], + "results": [ + { + "count": 2, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.25, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json new file mode 100644 index 000000000..0fd957c99 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:highemeraldore" + } + ], + "results": [ + { + "count": 2, + "item": "minecraft:emerald" + }, + { + "chance": 0.25, + "item": "minecraft:emerald" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_impure_iron.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_impure_iron.json new file mode 100644 index 000000000..242ea336a --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_impure_iron.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:ironore" + } + ], + "results": [ + { + "count": 1, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.30, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 250 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json new file mode 100644 index 000000000..abc8c459b --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:lapisore" + } + ], + "results": [ + { + "count": 10, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.50, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json new file mode 100644 index 000000000..5e98a9f68 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:loweremeraldore" + } + ], + "results": [ + { + "count": 2, + "item": "minecraft:emerald" + }, + { + "chance": 0.25, + "item": "minecraft:emerald" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_pure_gold.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_pure_gold.json new file mode 100644 index 000000000..2c89c2ab2 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_pure_gold.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:puregoldenore" + } + ], + "results": [ + { + "count": 3, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.50, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 250 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json new file mode 100644 index 000000000..5cef30eb7 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:redstoneore" + } + ], + "results": [ + { + "count": 6, + "item": "minecraft:redstone" + }, + { + "chance": 0.50, + "item": "minecraft:redstone" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json new file mode 100644 index 000000000..d05f74ea0 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:sharddiamondblockore" + } + ], + "results": [ + { + "count": 2, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.25, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json new file mode 100644 index 000000000..c77c6cf87 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:concentratedcoalore" + } + }, + "output": { + "count": 4, + "item": "minecraft:coal" + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json new file mode 100644 index 000000000..637b13934 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:ironore" + } + }, + "output": { + "count": 1, + "item": "minecraft:raw_iron" + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json new file mode 100644 index 000000000..d72f10c24 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:puregoldenore" + } + }, + "output": { + "count": 3, + "item": "minecraft:raw_gold" + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json new file mode 100644 index 000000000..859bda63f --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:sharddiamondblockore" + } + }, + "output": { + "count": 2, + "item": "custom_ore_gen:diamondshard" + } +} \ No newline at end of file diff --git a/run/crash-reports/crash-2026-01-23_13.39.36-fml.txt b/run/crash-reports/crash-2026-01-23_13.39.36-fml.txt new file mode 100644 index 000000000..c8db5641b --- /dev/null +++ b/run/crash-reports/crash-2026-01-23_13.39.36-fml.txt @@ -0,0 +1,136 @@ +---- Minecraft Crash Report ---- +// Don't be sad, have a hug! <3 + +Time: 2026-01-23 13:39:36 +Description: Mod loading error has occurred + +java.lang.Exception: Mod Loading has failed + at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:60) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:138) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.lambda$new$4(Minecraft.java:571) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.Util.ifElse(Util.java:421) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at net.minecraft.client.Minecraft.lambda$new$5(Minecraft.java:564) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraftforge.client.loading.ForgeLoadingOverlay.render(ForgeLoadingOverlay.java:146) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:954) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.runTick(Minecraft.java:1146) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.run(Minecraft.java:718) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.devService(ForgeClientUserdevLaunchHandler.java:19) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonDevLaunchHandler.lambda$makeService$7(CommonDevLaunchHandler.java:135) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} + + +A detailed walkthrough of the error, its code path and all known details is as follows: +--------------------------------------------------------------------------------------- + +-- Head -- +Thread: Render thread +Suspected Mods: NONE +Stacktrace: + at net.minecraftforge.logging.CrashReportExtender.lambda$dumpModLoadingCrashReport$7(CrashReportExtender.java:63) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} +-- MOD custom_ore_gen -- +Details: + Mod File: /D:/Developpement/custom_ore_gem/build/resources/main/ + Failure message: Mod custom_ore_gen requires kubejs 1902.6.2-build.359 or above + Currently, kubejs is not installed + Mod Version: 2.1.6-forge + Mod Issue URL: NOT PROVIDED + Exception message: MISSING EXCEPTION MESSAGE +Stacktrace: + at net.minecraftforge.logging.CrashReportExtender.lambda$dumpModLoadingCrashReport$7(CrashReportExtender.java:63) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?] {re:computing_frames} + at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:61) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:138) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.lambda$new$4(Minecraft.java:571) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.Util.ifElse(Util.java:421) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at net.minecraft.client.Minecraft.lambda$new$5(Minecraft.java:564) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraftforge.client.loading.ForgeLoadingOverlay.render(ForgeLoadingOverlay.java:146) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading} + at net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:954) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.runTick(Minecraft.java:1146) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.run(Minecraft.java:718) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} + at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.devService(ForgeClientUserdevLaunchHandler.java:19) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonDevLaunchHandler.lambda$makeService$7(CommonDevLaunchHandler.java:135) ~[fmlloader-1.20.1-47.3.0.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} + + +-- System Details -- +Details: + Minecraft Version: 1.20.1 + Minecraft Version ID: 1.20.1 + Operating System: Windows 11 (amd64) version 10.0 + Java Version: 17.0.12, Oracle Corporation + Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation + Memory: 118226768 bytes (112 MiB) / 541065216 bytes (516 MiB) up to 8573157376 bytes (8176 MiB) + CPUs: 16 + Processor Vendor: AuthenticAMD + Processor Name: AMD Ryzen 7 5700X3D 8-Core Processor + Identifier: AuthenticAMD Family 25 Model 33 Stepping 2 + Microarchitecture: Zen 3 + Frequency (GHz): 2.99 + Number of physical packages: 1 + Number of physical CPUs: 8 + Number of logical CPUs: 16 + Graphics card #0 name: AMD Radeon RX 9070 + Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002) + Graphics card #0 VRAM (MB): 4095.00 + Graphics card #0 deviceId: 0x7550 + Graphics card #0 versionInfo: DriverVersion=32.0.23017.1001 + Memory slot #0 capacity (MB): 16384.00 + Memory slot #0 clockSpeed (GHz): 3.13 + Memory slot #0 type: DDR4 + Memory slot #1 capacity (MB): 16384.00 + Memory slot #1 clockSpeed (GHz): 3.13 + Memory slot #1 type: DDR4 + Virtual memory max (MB): 69560.39 + Virtual memory used (MB): 39837.73 + Swap memory total (MB): 36864.00 + Swap memory used (MB): 175.16 + JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump + ModLauncher: 10.0.9+10.0.9+main.dcd20f30 + ModLauncher launch target: forgeclientuserdev + ModLauncher naming: mcp + ModLauncher services: + mixin-0.8.5.jar mixin PLUGINSERVICE + eventbus-6.0.5.jar eventbus PLUGINSERVICE + fmlloader-1.20.1-47.3.0.jar slf4jfixer PLUGINSERVICE + fmlloader-1.20.1-47.3.0.jar object_holder_definalize PLUGINSERVICE + fmlloader-1.20.1-47.3.0.jar runtime_enum_extender PLUGINSERVICE + fmlloader-1.20.1-47.3.0.jar capability_token_subclass PLUGINSERVICE + accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE + fmlloader-1.20.1-47.3.0.jar runtimedistcleaner PLUGINSERVICE + modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE + modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE + FML Language Providers: + minecraft@1.0 + lowcodefml@null + javafml@null + Mod List: + forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.|Minecraft |minecraft |1.20.1 |NONE |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f + |Forge |forge |47.3.0 |NONE |Manifest: NOSIGNATURE \ No newline at end of file diff --git a/run/logs/2026-01-02-2.log.gz b/run/logs/2026-01-02-2.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..414c7dce742f0008ee3594e179461ba3c365c716 GIT binary patch literal 4192 zcmV-m5TEZKiwFP!00000|Lt2_bK5wwem+w*{{gAZmNT^$#5*aSn%dIHj-!-gdnISG zQ*lZKk&wigB)GiD);yfwe!2llwrt9lB6%`XwGXyL5SI_#jmFmv=(DLEao^Ako9JfS zGTWL#O|$ide2!U|G<#=n&*8hD-q2VCIsS`SnfOzl(bMWn^TYYkY3Jiv_uX;-OPhQU z!Qu_c$|MPsNt>{2l9SJkhH88XkGwb}V*#Ij6!N4fbDjl!c1RkH8PD=iB!>k09UdM3 zie)U%dC^M(etSslWkG%vW{0HPzWNBQ^Q%-uEW4typK(@*>}ry+AmUd(11$NK9Bf#X zspiMNTu zQfYwbF4WasGMbZPP*a+7(g{Rbgk}7{?V1G(j95~ipYZ$41QdUcU zFsa8PqbRRPumE7uUL5lvWCd3vzGDd}F>AsMPgM=_pvFZeW?=xchF&N4>$tY3DZ_h)@=*Q>`kuFy9CmWU;jlEJg`fDPp# zuL75ke8t;J1EMNm}5Nbrm@luDxZWoiNid{B_};yA>v3* zXq^z9zm5FySApaoPc@0tNWhmSR>u@*vPd4>tQ#05Ms;x z>j*LS*T~P&TBhR}yk(g|;QJ#s8oQbebJJUaJ2uALv4WAo-FrRkLv-F>M|6P07uiF( znImV!TMipBlbeP)HvN|FagUE3)^flV2c8kQ4ht5|cNd!F8QXDy6`{RnSucTqM?B@g z3KM^RDtx(Pf#l8v2^Qrc&q*N&b^>&>Oae*<*I}AMkFV;0*;H>in=`Izds+~ZRraN- zpg;;qc*((I!h1k&!eWa2xQwAxlH@u9yh>B|#(r0LbsYr-5~sJ29v!iQjl)~met!|7 z$cv1nOZkWxMDrEa6Ac!%a*7S!;@4lwFbWh~1OG+tIzlEHhri415w#?)p@Icg6h&dq zeUSut9U?Gn7Xy?&YB(cmgRfnA6a)jpq$%^SbNVYwpl5ag4}G3X{*&Ls){#OXAN!}| zU^`lLU$)KV;6v2#FauiD1W?UY%T{fgE30T2voz(wP>jc+AF^nu-m0pNO{z9BkXoEB z2vkdd)l{lR=;~Vr$~zzcEhlBdZ&U6g5zS#9G5fEucN8{S|1P37bmx(%AFnZ17Skvk z(fMQ&WGoLO`rG1L2VQ{}34OVyD(8gq2Fe^}B0(1e!8p`yh2j=fsul^jzn>2-`sYUnYeZ+d z>qNI|rONx#4~qgBIPn6bU({9BCP#c$KZe@pzj2ITU?o6H0-DQMHizBe)BAf-1h5FI zlM${E;?@uEs#E~%L25^A+=%R&XASL%4HTpoi-f+#2Ot#9x99znW7t*zkSxQknpFKA z-i0((&I9@&AG%ehLv2(ax)%>K7wgd4-->oAHwjT;MnbewOlArt=_O$St1|qZ2X#nH z>e=Q-YEu|+qb(pjS28<+r%QNx2b)u_77`mp7`j*0$QgXe!RPV3O+MG|peAi?YB(z{ zG+X#h+UF=l9C+bNKd=O-Yo^i(m4wNImu)grPWTYDJY05HhtYyv9{JcOrKAtQej2*o zJnr|;`|Hg64quFs2ohNy-2?WPg(#^7`x-?8W>v5PjBe3Y`>rr=1|b9OgP+Yf{hEUr zjx!Mxl*L2*=nN-9Od?PhRHX0WpXATSw?0qN^{GS_4Fx?ue|xX=7*?PdL&Tq!1z`oO z#)K1{_#!If1iqvUZ2a|)Kl~58Tb*=SfTKNuf!^^b1sx%{vl65WTEX$(+M>aQAB7=B`9A_+YxZ{rpqnoRV1s2qBNmSW_8J$!FKFrmY3i?a z8Cttr8VRFgxYZ{1S>~W<`c4oTf7JXd^5xqvg_pg$d9KzQ0 zl+Spy(l^$rfa;#HW#=^aSyI=PW82$y1v*kLy0$-K8)&MZOSv0K-PgWYAie9j%YY_< zJD=~v$3FDr5La>*ONZWv;bCb2b1u$A@@X0tYM*^`@1;U#DLG;XnDx*W3&PayEr{nw z3d9BH*N?ilZEqjFr*(Z>rn!CJVN&ocVG$jLNkA{>DenXmOzy6#E2}CnN{nB~pgM6}#vDG@L3gnT2W1xXVW$|}uMO})2(ggKq+uR~u_Tdo z^MPp_#-8V+gp5qKgh1f@#Kl{rV#MUf;AX* z>xD2HwsR~0)Lq5z*0B1;mU4S^`(uDAi#?d)u?So3MfqhJfHYg3&2uul2! z3A8MO&39O2VY~s-ms&>~*eIsDi)RrU+DpmO@NS(a1sMRv$*}S;72gr4G|s0*IpV?d zy8fO3^Jy6Yn;4G7Eq@lNV{UjF^APD^ieX1DfxRP9X9B8(s2T-u>!I3xVR^75k4hgN zhg_cN&NwjkG73l{3Nj9n=`f7rGntqV$Ur?Au!jOD*q~DGhvN{BJJcXR%_bQHL~AD1 zdMWWQmYTL+{3#MqKiWX_GDG^^P(p|VTkT3FRehW46OVwsh@BmW5DyG0r)g?I+R*Sw4 zoehs}Zzw z_izgHy*He0xH`FCw{BRI8uD)DK&pBpLavTudP%`2aFy@1 zObe{TWN(J40<$~?yTfwAfh{tL=9@4sk(uuep1p7_?VSZF|11KaoYMzYVZ==A>k2AbL38@ zX17ROyDb4_Gt7N$OI?`pM5a|kegiI9ZTv`C>_c^)UYm53AU52Gwg8cbaTzI6cOQyw zR9MzP@wCS|f-1%d1*U+Dxys@%PYnk0Ck~*76eF3B@D6c&ly^1m_!>qgBOxNr5>ovr zBCVQ`14;aFrfJ5<5GY;DoK6s+R(XEVuBtakDKnVZQ)Odh#-ft9$(TiXEyMDtC->bm z#7*#;YD5%0CB1X$u7m(%KY2w+MUf;7h@oki(SL*2fjrA~46W62 zZBH}2L*g3pS5-)lJIAl~$;AIolS=ovPp zr_OWa)P_OrohSGiW+-p75dm%*=ZCf-SHPgmW+9j=UMuHy*OU-}vt8(jr%!m$B@#J* zSoTGC@hIV_WeLr@?>d)XHURbrmxWi!RJ5?O>ZdFxF$NSeUr7yoC9W^>aDdxuwB-BFV?yOtOl2*QODak z%6dXFpf>#RK(<~q62f+e7kd%SDzZ9YHY_ClC4C%TvBoRo>t%xwHcWTy)yb_Odj!mG zn-;abof84yzM?7w+ufo516GvXwp^-fFX?NZvziLRcW^e(T8(W|XTxA?lav;lA-9E) z3HY+&xd?~S$COeI?aEzoC$&^V`WQszGK(aGEOMZ#$cuPDoNve{Od@?bxV!i9L~2Qa zGk0cFJAi{dd$|zXG?nm(^2n3 qL;rK(`SZY0IF`pxPhoNJm*ANuOYAO0WD1xtQANdN#Job(9* literal 0 HcmV?d00001 diff --git a/run/logs/debug-1.log.gz b/run/logs/debug-1.log.gz index bd12402bf484d8109df300e7b3fe681b98b8ecdd..47e03587e693a8d1b9f0d00d228c7e9d5b037cc8 100644 GIT binary patch literal 15842 zcmV<8JsrXyiwFP!00000|LuKybK|(N@8367`3^|Vq{dsZDe}+K-mPiQrq0wk`1C8!aYWtWON?Xy1 ztPV7F&{iZ>?f**DJ8{P4r&(GMp# zKM%--YsPPgKXDw(c^nYxKL+H}!GZYk9eicsJ{h_2*RU<-gp+{zCVSZ@2L~_A4=mT& zCs6Oh@ySp4j0OP<&m5C|*(dt+L2zvO`{ZbF{{em-+6|GfB)!H(`NSu z1uVfmZ|os@CVq|;J<>7b)kyelG`1yP@TVAr)|FJL9lskJ(-*R&v?V$9qxZf$@%D+s zLTPL{%<$KeZplZ>G2PDrk!2WQ zdT?;F&kL(8_p*N4!3X3j$}85%Z-mwjqLUxU!6 zP5|RDhO$u&rWJ&S&8WltqVB7mQr*9cE2kk$xM(DTd_o*sf#CuJ;7Ek2-%SUm0E{MQ z!OROd38kCuQWL6|PA|@{Y4{Yhj;?M_plSR<-XC6^9G~3~E657$OCY9UyA$*N*fl0& z7?R+|9aHBX`};69?u|(R%<|y+Aiml79>`dPbdGCQK?-!c-565-YO8RMt}ai{-fs@D z;W{JhajTHwp+LP+$oJSTys`_h_clMNgmj^%X<=Dv7tJg(^4&2pqbc}0eLf%sSo?Bj z)n7v9voXpQ8ZxmY$7liKxhO$0C9Zw<#R36FpcY1b`}H$_oDWCu>KQmEhd1YcKR&y? zK0o|BwsPmcVk7U*r>nmvb@D6g_O&II-LQX5V8LQ$ratoMhRf^kb=zAS=Y%XzEoNdd z0YVmt^KBryD`2#UA+`VnYIA+mt20Pq28$pNPK~1W%Ps4b+Xq(JW%J4IkBa0^PU}l1 zb*#EaCPOSj1v7#SovQXzjk`$U?se7ba+?#@pSF5&j`c5Nu#L1c;yp|nFL4hCi_DlB zFdcHG?k*t+X2^PgNc(fA1E4^7`I6D@o5POTtpU~vDzfh;K>|$&(CB{_|3-k=u*Y<* zKP&=d3;|FtYQDF1QN2J^uF-hG zf_cPs#0j^5a0>&v{)7ebJ5;g62X4g?=iw5T`(QJVpyJ&Ik zx97}6UK$m;3;Yl@Pd+8&`p@Ju4M;HIQgt-3?N>5%UDW(6hfKR<*b@9^VzVPOtObw% zO{Q|MqiF?Tl&p?9#d7Pp&Lg{aKQkYixj6fuvrBS283wN~C&wgOYQJwwJxM3G?!-6P z_Y(&m4O&No7B^H{+)!yv_ZeGaPq8KT8CzoxH8@aOBa8o)?++~!k@oxK zih1I^e1CL)c5-=FKq7Tc7o5^4W`zJ*fe#+Jwke97F}a`)2$2GTzNpeelj}+RJMrS` zpf0fR_zVOqE`(nK_GCY9fFE%3idTDyR|9RNcW9d`-xYzGQ@9d63_|J{2*_cdMIYlX z9wMZRSk7|s$?sv)D^-3^yvR&EV%*JY6+m#!FTjzG=h9K``yK*J$1=A_sqc9>Jn9t~^eu&LpRXM+Tc;YhPRb4Ko`>dKKJYYMtQv*JTOj4zA`El$d@T%TCLjRw zp7C>6&>_Tch!@S2fcz`)AHR z!*_6@abO|q5zHHMu!>IBos*sG<2!)~-ArUvDYsx6Zf?yH;(#lU&@qmzpwS)*BhPj1 z1LYum0#n{Rkc&>F-k%c-1m}QU{&aSHc1Yecu*aZFH+TO-)ONQ`&Z!r=9(jNLp>=(9 z##*M{jgpB^^i-pRQYgzzDZ%g$(Mh66jQ6V^WMtvQz6e<~xP5!>8pvySu(pT%2`deHVho&#ZGX4FH>NMl z0ffUKe!{+Zwu{?}v1#x+EgK_>AH-`jchK-awG%Ju?&dM`(0Rl$UQ@mOk@{y2{8J1H z*6DUtP$BoV3#21Z4qQiAyct$_4|Z{u5!e^XH?m#xPk&ldlr!A0m&KYt;wEX$s zxw1f&)OnSz;v_-40F~0#`PJd^+2#8w6<X?t_B3%>#i$#v3u9lhapLH@CaJQ zMJryVcn4vnGA+>7Sy_kH=|=PYbffux9vvSJ4&{i^hhAB3nAn@Uni;1Bp6#k5RHGp zw*h#EiilYCEUcSf&eTD-TC1>uEZpZG(07cDvs(Y0v1&Mo;Z%L%G+Z!>(p( z*=owOVdv{%!@5XSnGM(0h<4A0W21nqopv7#JW6^KF+v)md&6`o(Tp4juSGzsitP9d?GS-=RaQGF4GWs?nEwtj9(j z+V7~cV)hiX+o5Ls^YYBr`+AsdTcoMVW?E%qU<+)v2?L;@d-5i_S4KS%%PZI@FJ4wRS%3(C=Z8tSH%c_q&}jZ?NLNq z6u1p`O5u%3LYI4il9=_##mU{_!P(_0XudxDcRyw!#d8Pgm%xqe@RiKBePV^gbis0V z+%P`XC+2MX1UKcPZAPhxDr=41mZ|cq@1WR}*gz-O5@6fzbFSRf?L4n>>zLmQQl_EgAr=HvMOLqpv0*o;UxIei>Zl5iFboz%PU~3Ic z)3-jgUUviCOLQ%ELK#;yB}U16`_twh@GR%SXP%38#eLSU;QyAP*!>#Bjrl$xpU$I? zw;nS-#n17`{`=X5^QnJg)nbIKr zn*iMsKFQ1-m4!e1#csPmP4i(0PYe)Wr3PUB2fOWnzyP8*K5t)wf3EzN;THnm5ldIV zQyY&i$5cDlEr(Qvkv5^4HFi5spAQex@a??KAg-WHZi4umS?;y&{&&U8{T3Wz%R3Af zIOG8?z3Onqq>08Q>y;;%OPvyP=8ak_fVt*LLOWk_i5@{!J&RfqRAg3jhMGDM=3XPO z5!95$mm;d{(GJu5*7ZXXuOz;wi}!@ZolKk#Jj%v&sEVD;*KR)Y;F`8Pn6XGr?eQNJ zv^DRLUAnETq?ftu^w~cqu$poKN%r6wtY#=vUiV2mx+YDFd=d4^5e$mawCB;p=XZPU z3aB)xUHSgk#nJU8ci4{vYx33%aG|OyiV|tPu{V9>C@UTYk`d%O83LI33kGX~k=t!m zm_ZpV{MiC1^8E48wu8_l1LoukdPKE_kSzJv81d=@-cYUTJ&z!_;60yvZ>6ais}Qn4 ztH_18fg5eYNGQW;WmJl&J}C+&a^gI~d)_EeCedyjY=lp}iiV{o>2euLEW;9Gu%oCN zi6{!&Y_=o`mfEtK)KSVv$BmPrqm)@i*CRt|^BLgu%9ziar@}^>T}*|t7P}^Odplu; z-h9xK#ZvPYI>9nhG74;wj1IQ|d!ks}4<6Pe5mV}KN>^($Rqo)4l!%o~pmXPkx3}b9 z=TLWRT6gQS>)U3_W-rWc4J~)fTJP}Rzx34_H?y%DxRqQwa z_mMfRAoM3j2)0A(HvY7f5EUco)I^A(VW=aeTbdATG=d4%x^Ral{8JRO<16icw@(>U z6k3)4ZP$2iom*f;nD6lO*V%iu(^uL}5on@ybj1Hgv2ucIiUQ#4q=eD~p=S=;>o5G%PeJSUGaY+B zOu}o6l~@RW9dyCi58-Rerr-iY{Y0J69e-Oii08j!jj7#wa{Yj{Zl9UWLf3(c zy;7p^*FlOhy401ysB<&19Ii|SZ_?j?^@I|+lUh-LwScQuN8-z`zVE5|;&?{9P<~^Q zBE3j{Gc?F@zR(uGE#5CJATL~p`9C*tdJjF?2uz#Ks%Nj8xna> zH%+u{xnmW0I_Z+!pYx2IrZ2emU35wiA$c)aHQW1+Htvv(1kx~BkN7@J`bvU+jepS4&$ zeS58t5^E$uD#i0_!`KY-Z=V{AXTcW8P-!}>-ToHlMFvyh1etSLn}V_&9C`raPefRL zet%JmrbzYr5}lk@y%P;^dk|Mzjq8N7L|WDfr80v?;d*jyGco!L6Pbu2+_DuW=vz*V zRF<8$g2&;#xZ_Jc9UMgW6ZbJO*2D41Py6KH08@t@TmC+g@EZm<4+H*vl^8VQ=hKSL z9Fu+7Cwc)vl=De_ z=)t**H;_*$?+C&X>5^{GPqiO0LsIy}h#5)l=(l9#!(gGaTLGB)+Z$;xF~goS`h3hn zPDE__;CNcjp1#7kQ+(TEKmwk*x2{G7Pv78f1m14V&12e;+Vhu|+~CO)ZQ_;q5AY!h zWyN23zUwhR#AsGg=qS8h$!}#OlBbfz`z0_6$xN$VeMpDHPVRNzj-=^xH#ZhTq(01Q zBm>Bo+VOTJna76Ud0(_y-j@=WPI5NR-qC<1_RSJEQIgn5sa?{1v|XMEbLVIa{Ob!a zclu4kJo69FhuqWDra?}7b?3qENxIeuN~e9X^Pu)6S#AW>;?tP|*j=RwuroJ2aW=OhME)-nR0=aL6-fAlQ~dZ2qqc}R z3UaSUW))$KfU)&YzFm)T9o=Urpn(cx+g1Q;u9KVO6c8!Rkhi%$Ck2RmO&s;KmrOo# zl?O*?8uCTH(fR%8$W0o7g&vIs9ng9W>OjV8Bp-6O-z3OMuef}?eYqKOrQn)q9%#%_ z*a%g5`6b^1_`OERm-XFi3%b{DgxINk6RW5Ayh(g=|^ z7aAcSZMR=>V0`vy0ktd^NbhlX5p>Vi&B^<-+q;{ylUoc%fjfza>IIf$SR2U5XY8Mh z1P=9rCpT{|kK^dBjDw#5-H7k6X)y8ASv0c&H#5oYt78nvPluOh=jVsy;IHKH=`_;o|RM4WM<+7mxa(W!S9IAb}YtRk772 zu03iwxDY?QP~W1}Crw>AeP&qRYQtPJ#DMw2SJrPTP#VIohLfRp%G?YSV09^BCbKQw2-YJ{z5EUzKg$FBeSFy`qzS3+9x z*k|<##hk$Pn+?%;Vo1lP;-f}ry?{DY5uaLdn{8!$+@Qz(3WMUM)W*XcF^n!zb+~K8 zX*^Aw=LcMfCP7m%PH8FBbp*>E;+XWSO!ggcfoof^Ha&PYHCDu2aie#A%%RWNgBf3y z`Z_T4ExxKKS6@f-H~oIf-|HjXt&o{{FceAdqJ+P}M1(#OFmiKuOX4!V|5-879^LKmNW*A3qifEJL6!@hXJ_Z=77G5w9$ zYZ4n>F4iHn!jpKXNj>k_K_}spZ4IT@$4Aqrfn`g7k3Sv4E8L+mk~cWHfTKXO~KjdvJr z5);K(L!Y9P^7+Rf-=9yD!>GV%GT~X3NS-4mG~emWbH~EdA#}wMi^G}RbF!HL;MpZX zjwOH!FG&L`k54PP`s%j+JqO9t^jWAtpT@rWUWm z5W`OMzCwjy!^XKF#CyE!NH!g94Lo(;kZ}Ca1z~TPhGey=n>y%*?y0p$UzXj zi9D?eR$dDRA-nwE(II-_y&}^SOUp1!Cwgp&Nj(`pS+ulMzAze)AU&o)D1)2DF(9~L12Ug;qK}B12S}k^-o49j=2nMWxVxy-ih>d5_ozs{9@Kf1h}52V$u>&?G!6lTIzHGup(`(Y91x~|ImZ_-pFfTw%emxBHrZ&XE`BtFfU zQ`S=!^MACdK5M|HcVOY79|ebbqwUS3krgpf$2Q&_DS)9Tc^}Ekg%WfX zmR%nu`;m)*KSI=0PABNF@#Zjib&MO(9&z!XdmXjiYil`USD|wDg&Bplcl(_ZwS%yD z{?WCZI~qKLx^RLurk)9L)>SLig-g#HJnHzr6E*=m!u8Ja3Qel++43aILQAMnxfB@G z$*ZcP=gqN&Rlxv#dT1DMOT}f8NaSmw!=FE^8bP}++H^g*VK(Kc91#PAI zdU5k3AJ~FrY-ady!JkW|gmo0n^?n}Dr&g4iZFM!ottrWPV#c$0x;OWd*V^gk$+}dn zLLY!$;Klj9=$lyNI`WD(%A4*&^GlQ4zhd)CYu97s{$_stW`6xC{bqjsW`6x< ze*I>C{VL3_W#_!BnP12J{N&wh$f9$cXwk4;JTuQRa<&UD=ZvewiBfNat&iy!L6i7^ zuczyZ+|zq{hYW#C0ofbV*I{nx`Hh1~oce}i&$RqOHoWhl=b_8~{W;jF_C4l+CVPBv z;fLZUbpst*DC`;fs**h%ON@@nW8I-E4YO;(6F(e~kCtP)pL1j5VWa)+5Mhps4rIYS zHRG7fZCo6REe%))QT_x^u5BW^0$d^zZgpHo7yz32=r+(#Z}-e3jUmeHeYbpuuL@%s zc^t5Z8DJ4(wb-GeyKMifnuk*C2OHT7!p|FhWI#(o0S^ki{CfQrFrk(Ni`B?_ zL`@L>fM#So^9V$jr)S(#l|PQ77o(jJxyy&{*yb4dQ_LY{JQsR_*9I=SzfciekptIq zpZRFyP;+EoI7da^QJ81TCE`LA^9gkbK7A!d1R2wA;kC1)tBZ@POXBhkIkLcKQiRz1 zTAaHUc4XOp?G}Byil-#cXm|4XhyiHd9Pt;Caj?*}t1mBGs+!On+x2fERxH&iWd+ai zEpq%hIC0tl;Ci)xPin`oVRdgCqXnjrhasUhGHMSDM3Y zqAvn^yrwM%ug~B4Dt8xEY}NnZ;&sIQi?fMzAj!gnABu=D$pxT#+SWh`PiVE*YgYy} ze}{9qVqs8^4lUclYy;9!{N**i(RFlqefaL|{OnGEOUrp0GX=Hn*XgPSib>A(Oa^+| z<7?~eg#X2iolyT@3VOmbMK-l3JPKdXnl=ZWI>kqki2OD73D<+KvR@dKFle12{$<0n z>Wt36^8Uf$m)(<*E@!_ff>7z!*ir~!*W0fM;7JG&8`h4A7Yy>F4(4G}rFOMDh)Xg3 zkb*)eK(z44z7nKL47Uj~@!3%in&kvq1cod7wUTC7kcWe#sdSZj1Eg69ruNA-jkZ<~ zqUGeN8Bhrl&Em2aKvLQ@)2MDlC5V&?byl-T;N_!%~7U ziHNREp-=6Q%IHJ0aCrro)Ve2H?U2fd?Ya1eO`+DVkd+bRJbZQ$oVwNQI?9#@ZP4uoR~bbi z4piL~O4SUg1c{_BHy1g36%y*?~uCgLnsfi3TZ+)tu9)r) zTnW-m^T;%bWIF&=g;cYYJB=e)-Ox%&wY>B{O`+T_(UsYYh!W@&0P57OtJaIB%t3sV z!KWz%T85|gqX~EvK48KRG|K#idy^Xmx13nJ!&a7Xqlv>qO*D^erI6LG!g6Sa>zLM3 zY<2IV?hIO4vN@CSP%PoITu+T6-tGXFCgCt_GW~Xgt}O8aywl!b@>RfBy9GM3U0QN* zH;b)|Pibjr_4{-=J3&^$!D~0bN|5Y{S&vT*rP}VWm3AHQd}d;Ht%W;Sow|>kc89G5 z;W9}`n?kdlz^X#7C>d(w=v6DODg+aufF@#*7vYc^N4%Y3T#=BNf^~rhSGVr{k=h*%%K)d;v?NoxZA>VsE>eAB5hb){$~9e0Ye3PB5#YB!FgJ4RYb(V5Tp zT?Ddj&xqY)tU^eTM$U7i$+#ngRfy>GLxl#@a5n&}@gZXmCNo?gvz;}QiaW!&f(iH# zSpQtCV(d;X?gn9{HQRE>Eb==lLRa@i{T+gKFP6 z&JGS6N5fq~T#1Z+vF}I&C|Do5D#SAxMy7r(b>hD}BJL37iaR>o@5ElX^HjH&Z6jco zAg4jYCD-<9CtV3hwI8dGe0SOP#tnliaU5JbrZQ)9)N#V^n8%#?G72T;d;dk{9 z;$nJLf+n|XQdb2w9#V0EF(S9?Q7d+XW(jc~ZFdNEFL$pjFCpZ1J#v37jB-sjrT{6P z0<1;%hh({)s5F%z)jAnxW^I*`tjCmW4#LWtcVgZjy9PJ6f*W^CoqPB}@Gv&+Q+18+d1AYJpNZ3n;C@W40xPzs&r8d* z%hRj;Ze#c~j8!4h79g|S!8e}10MnhEIGC!(B=4hQr zrE`Jmo&#yxH|d7qC}6`k(X%+-I3N-)aR4$e2XO%JeI)wBw7NWuS`>nL<0)(6R6n9r z5G8>*KRda+E5fm2x|9@-Q{b>WXex@GKEv}4*d`=*R~P5W)HG}IqCau&MQ!&SPcmmv zQ7@Neja#die2$vwZf;=Ct{5s@BU_tAz` z0SZb#!avv44_G3reVlLb^u#fVJ0h0jO+rFLVgnK)1C{K_*ntlo4WG!HoMf&d zhueE-=m%zduoNJ;%Zbes#9{k;iFYDVt=d^Hr?Fg=ST+|+J_b#$3xkLBp97$`^&JC{ z)olSNF%9Bmzc>NjA*+a zCoe_xZ;61Lmk9WXP680?!`Ds7*sLT6Q;^Xy7w9((%^Ar71>w?lK0aBYQ0Mm&F9kYH z&=D&*P$YSp6I*R3CdBfVO!u0x=eg>2y|;ejt5ttS9#6I{MD_FrNNx;#gSnf!g+i<34y3dLZjkTWWVC zD8El4^|Jt15B>bP226euDPYOb6EmI{*z2gHMrC^h+HrRX|G=P>?&MPA^qJPZYog`jXt06D3qhNtDpwyDq76vJNnL z5+yhbN~+RHl}L7^6P4(vN+_8U(6X+lN~oz43NMkyp`}Ww*h)8DLQj>@kU(0xL?=}O zd!zNzNV};Lh(uSDL{GNSmAX)a-cPonr>KD?6c`jGRYFOX=s{n*YA;iQ3#Bn`b(uxQ zI;p05Ft}~0+tpJgl1=qd;>uDl#Q~l9whGFr>8fOCt=CQC(XvJ0f2yWu%FH*HQ?Q$Y zj(`;83b`X^3T0|5EGf4$_2GPgLRz*|PK7x|d&$}Wy@o~fZZ}mVTh+8&M@^QSs|*u@=DVeGasMWy{=&R`>*{b4lyr^=+cgO>tXrpt1+R8FILMN_g^1yUf%J(mGPtTUhsZbQ{rqM}Re7KA#z0_jG zOXXB3is~u)rB@{dXM>`oI-6cm6kJj|nF2|1r68Ym+UWwR#j^(@L+NGSP_lAVT`vlQ@BdJ1cLB~VcnklVdL^% z7Y(_npMF0N6Q^%GTPRTppWf;BNj}pwE}*gnvaQVVS8Pt_3niMu_sN!&_~vp&X!74!waNaNfV@(>57uGNaYnuQ4Ix+l76qH-z$=qeV=Uv3uPKf zs>gbJzLHM15?&}(Ns<~m>WFHJ8fmLX$K|A#eV=VZ$x=g3QA1bJFv`BqR-(>Vk|ddq zES6FUc!6v!Sw>XS27#UxW&C}%5`Dgs6yZCWi3jhKR*8;_S%#=dDW&&vx-zGW>T^7n zRtk0GF+DRh$r;l@MPTn+UBfkIl?|=92f(-yg+3<#j*kutJZU*G) z!`<=W-N`XI61%PgB6f_(9fi{3D^C18bg=feS2z<~>Pd4Nrw^Z%ENEVCuhl#!>y7yS zn#K@6%^m@g+gHZ`h&NaNdvZw*{z?vy?#_NXDZr!Sd&X~#6-4$`J z;BK|LEMm^2!SJ%VDH{wmk^8CnC}*zJ6|t`1EVeRM8p5xJldvj1>%=%s3EE(cxrvV& zj5jBVPDQlq*$P!vki5h-)d1^qts+00zP-U<1Lg!#RH=$6l{!&I*?1ZZG0ulm5n`QY zTPBe7*MKyN+SOpF$uz?ahPgc4W<~IInoo;@TYe3&b3*ui4Y2v;w#ES+ExL)_P_)ag z_BIrDaYTiN0-oJEZz#aUw{9B>I&;Cgp(wMlEGoe4O0vA30akFo*|rlWA9%UwpDfos z6aZ99HI=*|b|&|n_zG@(2MeBEaz{{t2?s5_klN97rJ(Kpe3*lehc}l+F2H>2I*@Mh z&x!L0uklps!U9VYn&xl$y*R$PJ;B;pS35Tl)(flRZtsoN12*)G^7<6Zh z_nQ&j!w|kb=fhKSg1$wEc<5z5c7LHz%h0C(WU49AiD|jgxi$1DurT1d@|bgYPAta? z#mqMeSl}jmu?!Z!ymdz*K0TtrKPHUq9r|Ej1f( zD`1_Ms~hA_{?7um)E}e5?_1*%NVheQO7N)hgkcVrAynp5FKmdGO7BZ&At6(N0sp@M<;>G#3C{tNVAAhPG;)!r>STjAh)Z8U(bY zCsl(GFLk175Y{>WsRm&yJ4FXu;FjWd6Mp9UHU+Zd!2MQv|LO#%fybwh| zR^8uS4kSMlL;;R!`^-^z|6Bg&+!`_C)v%e!EwIUC4;)z~lWT2cyU+BXC{f(?3J!HX z7>uUG&!XYc7$|TA&n{f^9Szvs>@lZ-2*f^piiAi7PizSywxV5#pmjSzhrJ{5H6O9Y znJUu3AB7_nXMc6Cm(AsC+kq|sV}co;*Nj(0lL@S@cp+$*!C!(eV2%x zx!j4aNd5M_NtxRwHDB=fk#m!DIQw!AGd$6ptaN3PESuM?ihN_iOyadHNW%p>>U5kKV~A#p@jYx;7gGe<|{)8M8ePEipiy&R?p z%ticQh9x1=p4qEMt-K`d(3IMnZ))>t6K+p#emc1+LeNdqKoh zN{ooE1vw`;=9dAsS12a3X}+*{UrY0TI?~`4NQ|XRatk*zV?|%xlY9|C~&tlSJ)e-1sWY!8)kcOF8u6skzS)q zs@A-THr?}Rfq?LMz&S1}TDS3wyXbjdpE_Vt%-f`kh|C+7xbrLv0_og+1P%QNciyj~ zXQ)G?rj(&SvM8ZY|A4gr^c$A17E7l&So+=hEwF84QRG}OT}dnJ<-9>K{d~$Gn0bA! z*ugi>BguU3S`P}#_4MQ6^%=LrCWZl!Mibk9OfYMz^29W8s?c*rpO0C{jL`K@DgOJK*e!`h zoaB`rkmWW0jj7D+8N&j!-D0#gFTR&}2u>GiiCw9~!)%I5giI?Gb7QYm>7;w9qcYzt3?-p;-r8#q&^yw`6AnHDM4QgM|EP^og5;JT8jc}I) zvuQMy89H3Z|F1*0tixx8veV@Ma9Df5s#VsSdfFiwi2{8?|>9D|LKs24Y=zy&-10<>NV` z29VQs$sR@?_zW88tiV}ZfXMrJYQnQ)$wh3W75e}cl45q#?U9A#_UhvBe~zv$FU6Vz zTwsJYp-yy!c#r&j4^Qu*vU{9!_kjx%&u|?_BGKFcUA|qgSoIg&x2ZbS#uRsP8J}v# zfb|EX?qD<;jM$(f4?1+vSIbPkp48S$P%TmbG5sbpBOUS3wqXeX@s|Nc3xD-)#$A&w3Wm(aW9t%zs!s{ZV3dsXSg7uYHTvG zb`~iuTWObHA%H<&D0%c=f7)`i4TNnjbQ;?h*X8YqZ30GgWFK0b9AHu!&tM@~=y3S9 zOuZLiOo8ebyt!45E?g7CTf9X(2<{++aPc#R6c}rsFm>1a)0$c&2UVCeb)>H+bSG3|ixqMLF9c;88O>cvy zuhuQzt1UP$>GEstjo+)?8v61oxS)FQ>KM!I-R)9!Gxlx?k~Y%1EX1vEO*|~NE|rz7 z%R}SYaX;J4%)gdbQ>W+*1&{c=R1$Zq-Eu4oX!?E{{2=!dZcpl|3wODSFW+PqC=q}` z+*o$FKOjm_iXz{fZpRdyu=eF@7bZ~^f<+m)3%w9h6Bi+HtfDM(A-p6nf zHeR(cF`EWwdtrQGqza|oCNv~_vLbbRTDPOL`~9xoYb(8d(p9APJ~_aI1HE2PmwWxb zqV$xGp6lb-k0P?Hb>kDzlV4nTZgOYfM>@`B0uCD1?n}R-|wUtpGA|QjlHpxE$%~3r7 zt?skKDURIA{kv}`{)_bjli>m$vAl3*~cbgrHhxvyE_T3Rn&E^5RN3x zE4jSst~{^kR~(k8N$$BBa08Fu>m_fafQI8->MYnP{m~O^+$t@!Qb#JaK>Bd9;}@ zePiziP=ccek(ujG=C>IHy#Cro!3;_MX5Gfx5mPlX^0(a#pIW)C=u&%q9b;P}TZi>z zex^4?WFxvw4bX-~Hb7G<#ueMD$kwAx;$4YsXkT4hMvA>2W*#~(md)>Qfw1uDBO`m$ z#=jeoL)(sr6K`Q7aSAc5J@Xb|IzGENkeh|4IdBAyX_UF;ShPyVA{i^sI+CkguLI(=QnHKu%&P)r0W!VPq2|iS@)NH%0azG~q~*GQR`n{;(Cw0R|Y8_*WzTx|xv;#{Upz_&c(Y7qX|)MR%OqND0?v|o zRu@C9WG}BFyqBg~Z34_iSymf?uPDiC6TlVbSZxBhWhqu0g|R5ZY7;;%Ot88bV5PwM z>r=6Oe$__7E|XrhQGm;2S8WvF{N$>;gShZQUE^?8POZ9Yz!fs9?i%WX#Hzc77F5ft zx@)-0(yHzn-_oqA#Q-}}J0~elIe?o>su}@VRq5DRQq?ta01O}k08Z1y;{X5v literal 15634 zcmV+tJ?+9DiwFP!00000|LuKybK5wU@85T-_B&u^GZlA@O^FXZXM1-X+ey3Ec6=?T zv$JuR3nC$#ZHnZOloR*V+|Pc`0Z55YiPVE)(p}XZOC$vRZ~z>f1DwYvwSCHTrLA;` ztPa)wP}8KI(*K!!no`qlonO6u51)1Svov)KAOErF%+?>7CtZXeT9@xnFOEN4o&0ci z^Yf5gI!5${cr)8J?S~@k<{X5sOsCOq#b&t`&@$McxYFO+} zr+~%3i&&1EMq6a!rHBDB2{bCVoJ@fDhC!^qG=y1c=;&vT~1%U&t8@lj}2bY&dRU&Zd7Q??>dLX&cUGpU5%{ zu>MHs)aYu9Uqed;o$B?XPMw~;`S5OeuSU#!Hg)y`wPEDaJ$&oTY=ekj5MPvpnFhob z^9tuwY?>X;$3;BF(GQp(;4j4lgkOp;(Tto|g`W%>(D@6jAojz>*F=e2965D}&)7f$ z#-jZgpj4}IRM?wG>ebfvxN{o(8f$9&7(HW9YzV{F~ zuo{YRD1!l!4mj&jO-7|YOy=Pwn2HeOy)Tv9yrey{%_kr`o?0bJU)-7N!hg65Y z`hiDnAI4z{Wy2Z_(+_luQJZ;1-Pg)>|2C?e2C(45k?`{gaccUy0}}v8B1rshJ}?Df zI{h@5EQ6DfyIBr3pnB=;<;67(9{twI`a2IMACYGgE(aItd&zTY*`{(gEsy1qF6JGOG`yMsOOxs2~6W+tP z@)GrMxJ-?y0n;%T>TY956pA(nrPxOHibLv_Q#TLPsBQ#u-{)_lG91cSntNrn$c7(pmbaP_r0$`_f^IK=t z#jH}<{)TzNWyBfRfA9zcy8eg-@jFzpR0%>vnZ>cQE!?z0nnazmn9Xj2rf6`^W6c)G zu}e4CPUcL9mqvl^5xGOR2PHq#Ci5=omIS|<4!3d}barb9w$h=T~Gj8~ZP?CZ{CaYQJwweW^o6 z&dk%<_cI$F4O=I}7FSeSTv2Jw&ly|dOtB@-8Cz2h)jv{N6O;dy$BbqT!an z!<%Uh3|VjMDplJWW!>(e$8c+yxl&niczhk)hV0MnHB7fNKyNE z;^yv#Iy=}5=lqr#Yp~nhLRzu~6mHr%h*k?MA)x3qB9dH2EWqmsGIPn8`limsJUqxI zhUviya6GeUr`FnAIaS;FaU~$l9t$-0xN>W7>pQO88st43SFVY@U^zu+6nZEF^A%mx z>>4Kp1@^ul0 zjHt5_hI0cDfO^mPy(`EN;y1(%SBg*m>3a{~M;EX|Sy8orZ3b-{O7ECG0I7VPa)Xf~ zJmt&=D$Soa*s#q{aG`OSLgoXgH{@s?nQRyM&R{`r37P9S){$})Jc8b89LYu3FYhiu z`<^&Ma`n^s>G?5v$3Xdj`fqOkhp6pdn_N&ga9r~4`a|pbN6KK)hHxz(I$d1}!m$_RO-r zJ3N@uXJ!M!u^&BQUtG(lD>SqiFKRa^+Tt(`BOfNN-wki;Y#BT~Dph3Ipa?9)9HT7Uf zVjVnzmT@PDSU>L|uz$k@X`PidXq_K4-^~x2@3QFlAOb>*+7B}d-xDOfGkR>ScNJM_ zPoV2^d%)Coo3;CzPGzdfv^O4TUD{RB)g(s(X^J4(sp&}wyl{%U?4K3%h4%>7AZRPPqWqqx~Xj^B!PP;wm8nmzXWWBF;wXxjq z({WETv~)G)r(y5wnTBBx|%UoST9yX>B+aCTk|L1ZV6O<%6kW ztj{K0I_RphV)PZG*QG}E^YW9e|Mg6^U6H2pG|L)P)IZI(p#T(gPum9LE+eIL#Y+g? z3AA>u6BE3MWP_?VHwl!-WAs(ggCD7f zXcuP`;SmL%48EoC#vp;itw2dM^~mMf?eWq1)mxB!J^1f#$^we_4$?2a6YAk>sc(nG z42a=?=4?AbbgNH{#qkNAQ-)`EQV~@)Qc!nHm92Deqm{Db4vIsGZ@rUC1fFlc^DC9z zZ=M2$Qph*o^OYLr#uVsE?Zu5tIajCz0irYY+@4=K3n(UFj7Y%k$t5y+GWpf%9}9qK zbx8$#IQqoyZ6r>F-HUZCGD4YFR3#>Hzx{dh_js3c?=jawz2YvdSMYz!Q0#64;zsk{ zC!a3Dk0Y1qpQ7h@W&i!c;e2kN7#dah-^)Me9;+kq8zcTAm~ALWyA^*C;OfGd!%!M^-tpGC3lbCeA!igS1RrM@c z6I7^H^9eP#smygFuMyOIimybZR29Twd5;_~5b;VPKV9?_7CxD{9C(zC`A`)bnQz>D zXu&madAOJ&HMPfoP|%iI^~hn-R+`hxoOgQcA2ZlZIfEnz@CHlZYxnQ3KO59^b{U?OMs1H9*r0%cV3|m-*CBk5ZQ8i*w6n5EcNfNBoWqXobN|)U_8RSyh;bvqgtv>f8Mcc;2tV{)^ zlu^TGR4A*l_awE{ZNt`ypmr;IxQ(C_EX5_mz!vf7a7(bqibeh4VNGH&rT(V%dfh(j zX?P~?bWwb2z%&gYfbf&EJ2LJu*zsNt~zn^mTaqM@+ z-J+g;EA5Uk=@@#&e)E4HnBDRNZ>9&JJG4g8rO=I^Viw?-heWuD719%P0$@% zZ)W-v3(n!=*V${eJ5btVqr29aj{<6XU-6K4<&LcN)XrL+e`{e(scR?rnh7vwtT#~0 zGdw=$akj(If3=ev`|v^8?^Amz8!cWRqcYPCQ+eQ4cM!*#6HYyO)e zKs5OO>rBTc`^mH{4C443p+Rc1xTb;U{AT!H`Tg>}&ZvFq*!;RY+%2=uej@}+t(&uF z=ZSf*#Gla&13-*iW?AnXYW+qiQf3N`KGUiD!|XRQQ_`Y^m>0iE;lcx{ii=jit!~?{ z-a4VdZ)-0J`+mm%+`hQq{z9*~hu+LgJHCI;zyC%El`C`pM*5zXH6N)RIMcEWqN0gL zLurs!I0LVg#`#TkKGZlL9nWX2(G#;+;Mh>HTS{X5wn$;No`u5M3Kh?h$sSfSgl~!n zC@GXyyT6T|7w(q3MpHfMy;ewx;?}n_=QoD2oyos@YAjy`J0L@)<*;%4 zJ6IPfOlvF<)5f6(Al^*Gy666jTDU}t>dV+a=5=yj^tDA|@Uz*576yZv&&^BLlVkENcycTmD-U}aJ^6BU(^iMp*#8~&IXFna1 zqa#cmc4~TuM8ah@a0ZI=2n><&bm=2+~(F2b=RjI`cf-w=hL6cVe$;odvOM21MdNkl;m86UB)R7YUL0Be7HRVL!8}F5YTCVuqyPkr5;0 z+~IG@#Dl>?W49tOne~?h6HV9)MxRbuz=?=WADzz2S@TyIcZ#1-42jP(_tw>@nA10S z8iC%exp_?cQn#OB_m2N)iZ;))tv`hmXv-YD4n#$ z&WGCXH3Dj}JzzfU0Z#(7ci1Tpk36i3)E^9*fHl|LG#~MR=L|ok0iBp%fX%-FEdc{o zx^vmlnF7oIg@Q<7M5TNQfAAJRzQL$1B94OG?~_GE7$ab6{>qQ*F|MQYL=>e5B9LX7 zKJ2-6Zj#fEDz$mSm!{EB+@KdA?lgjREwwYvM=p2z4Me`o(l5UsYNPtG^y0ao1I=U{ z!fYTPa;H&{vX@C?j_8E z3wqQ2x&~{doqRzz`(I5r%e&9zceT@Qgrc1ZjgXJF*RH6aca z7tzdyT+Jk-7h4~apN_B2FD{PB(SMTTliTy3&I-WE6}6$Y!A-20X*3laYGW0#Ro(vA z#x`}v_hOf?h)}J#TGvMC;}PFItV+8o#H#!G+7Mlb+j&()SJ(7owvJZC(=`ZKA4HUk z?}HbYRfSk9`@8=NfV$KROxj9mzp+i#P`qCGimijQx{H;>89K4 zVGbes%oDbM1xxv^tQ7&f+qv14lzGj?1Yr!EriwGzjyytMdDt4tO>QM78p zy+13eJdpp`61JBJU3~H!CwNT&nonjn`{D}Qcid>Fw20W9--%t0*l2RG5vjR(Qj*kJ z!wxzN9xZb$y*xY^9`#L2`g`>07+&ECjUM;l;QQB)LE!qsRtukm z!xuIJ?Y-vNd7POY_^HyanJnfD4I)`8e3(~ll=mQ~+GyaSBH=G=Od9n1`sV%V>wMBF zvRp*EZz{GpppF(8pnP*DKCd-1t=-54Xj1j@w(Q?+>z|58$kq6x2qTlMAR-op@3wL^y zs+v45qCtN%8pOL5PuLb+!KHg1B`4rxwPLct4+~Ip8iorj`=c&05$4TpS7cJMpxJX-Jz62v=@n^mnQ96ksu9K`-0Jb2E`%^CXwM4G$- zqN(m;9;p->c(T@sli zKzghj39dHDhM&BdO(w84Qp50=@0Wnl+a?U*Qw(Z3g1`s~!rasGhGb^Ppm4aD0v0JZ zb6w2YX}out$M>kSFBoEh&+QvFvCyIQ8DuOL9P@NrCRA|%^|J4vJs&FsZv1~}KnkEn zbvQP9ib{d^GD=jHdXLzKs{9@Kf1h}5M`Eiu(j*!9yY$w?I>SS(j{L{gF#h7_rAV?w zd)1M=nSGFbAz&!|{zf=BoqhDQHvx?3GpahCV_7gu4CmT2pG^z+s&SBc8xn#e_^;uA zRqdMeAG(FS`ahTSPN{{;lIb7YhUb_@7E0JlRjmg}F--)J4aYl)1JlWaE*o4sjwStv zXgBdp^j+IxlgE)+%zv|&S8~*7{AoD!y&W~Wpzzik%@K5Lku^uU5`QD&`U@19H!+&8 ze|FyH|Mmdqe-(pE3FOgW%)fIanljinlwXXe#S-uYbCs?rGVznejv&~LQ1*<@p{NH5>bRyn&CP zES=zCuy+tI!7J^w+iTXEtxN06$+{|^ze#h60G=MCUkdtjykQkllKAAroKHPv`TP$L z)fWv|bUHTZD}HIf&kju7^uypVue5_K8d(twb!wsSNCAvaeC{K8Ia7kJ!nW%nXFqW; z@JE1>%G((lY`i-5Uu^vbq(|KRGq1z8`)w^}>?%~wzA(M8_THddqIO^wPd_@QeM|i( z5Ess{#>6wh&U$Kvx^U}xg;yQ_cgAL*M>y^Uy3i!*UTjaYETn`Al}o-(?YyeGoxC-+ zv?>^&k6a|qtxu@}P1JMC&#?Kx=e~%LE-KEI+Xt)8jn-5jOxU78RJY6rn;9|n;gF!j zT?9tiDwsISjjLC{;~bp^pmv&zgP3E_qb~|9YzdYdQ!Yd}r1G+Qk3c&_ zm?|!QCbrq{2+TR#5%J-mR#A6RSK<|MoMY;PIx}WEo%t;Dh8Pa>3D(ZOpstjy7Y{%3 zfi2m_7K#sN{JB($X-DB&ALPyX#E!Dit=^CEXiCx_nf@f69%NqfTD!eGUYDp<$OF&| zbeum3zllw*E3c`eyy`7gzcji14Xa;TyB;O?clGOc_3L-_>v#3*clGOc_3L-_>v#3* zn^3>DtMNqY*D1e0dGivm@E#}JG%N@2%yX2Sd~n;k_shBCT79Fm)z+u!Qj2-392W)*YssAqRYL z;fLZUbpsun$m|)~s*(d7ON@@nW8I-C4YO*&6FnS~kEU%npL1j5VWZo+j7$+BGmDO7 zF?(vpG0PlW9E&3j*awmS_>YcdAi5%4tE@{3aGhWPXy&2Wz#w_tv*0wkD0A>#i50#k zj8){ZK_6y-MU2%_gNlK=%ATW|g;Hb(8|n+f&KqrHKuSX4W?^js4+^aO2HjO_ra(%9 z&1zykpd<)?Kr+&wcm$%Wx98kal|PQ67o(mKn#%{y)Z!TVQ_LZyKNVVm54x-D4YmX> z^k1k492z%^pP=N(zVI0pT1R1?Er$q)D&`St6MXtY^bj(p-9opsllPaG@2`l%59G)a zo5?}{YclRy+L1llbQLd2p2PC&;Q<5CzB=JALgiqoY1d%oQFs%2V>#YUI2FrvYLygK zU#A4O;nIQ-98jRJP|gW`Rj?OY0JTD?JB+$F<(@1RR4p6?uhx0v$1p_@xp{(iij}D1)#c>96Tz45|+?vzu&G3 zs+V;vTrF7W)TLw7GBMkLbP|1ei9EVaj<1j3oL`*Z3UEn2PoqgeE$d~zYk^>rjeQk3I<}q-Z69iVSd!XB23#Q%MS@C zgaSkpuk7~-sRWt$>L^09?oO~SftG=(=6ARa(u|ApaC9ZPUCEVs3#6$LObOD=qpcMo zsDnX(}T-G8;l|0h7K%>=&x^)vN5$duCRi#aM3v?<2O0IoAnFVQJ5X^SR zZ8e3KVcG6zl^{$kqH8^vR@0{hq}n(7Sh&1;FqM#pRzs?N)6d2~tOr^N_Pr-$W!N|m zpIrb)sasU46HN)?U@FpOLVsQ`u-y`at|Qtd)OCWd)E$V#dw^#dy< zVkU!u7XhnVhT0FVGJ--BsJbbXsu@rT5`}>p5LgkWx<$^~A(bIhEZ%GpsJf-7`Z1Lt zl*c7H<`)f}y6!#Ex>TweP+1Zsb{P zrSw31Rs^PQ;i^6?WftNhX-N^Lx(_y2L(*zLZpkE0sRvnUV$}_-9CzX#2=^k~^0M*l z)V(2A!B#t4&&}LYgsyJ(zDIB+NH@rOaD;Hd#Bds$ko$OkI|6 zlbOv!P1FdjB-zR!>(+is!J+AnZJ0Gj7^u_P@?S#SP7CnGV|fFB)Gbjsr_Lq zZ93q3%)sngOHZ(BC*1z9l^|Ry329Skwij4c$Q33-Z5+L7#Z`r1A{5X}Z1N%;QsaoX zH;ii%5>v1)vEb^~t-J0Y>8$x|Ic1R~R||`=QVQ=O^C_&!VCcttqbDn&<{K%{KwhFn!meFQ~m> zyzD|y^?0-H6VnPpg+8?g{I1L()?+cX1~jEz)5W;J#zQJDQAU)SLiOzj%?jc?Sk4&q zUT$7lo=DumGA-2FDkE9XwRUq5Rz4ixFX5`8 zQq@YbSr}A4jBXzWmk+aS@Vp;4X8`S;I6+35T~qz(+@3hZhE5omLSx8l;yEaILJdp} z(kcL_Roc?G0WOSNgQo33xg^R|GN&t$MRd!V8F#0S&ebjd#+g$44u0U@PxZS*UDG?B z*zV3_;&#Hnn^Lnti|u!^N9^ZUZ{O#48^fnztO}8~04K{WeBmC|mbUh*|+B)hqVHMd4T)oskG!hU|Ff&Pfo ztInSC8H3RS9}3r!x<+oQcsd)=?R3g47A8zebhPw9tje;s#pTU&JmupM3X(_yd2|Up z`$%n_-Q2vt$?(FkOA9V2a^moGI5GD3mYSAGK7~Ca+_H=tmZd!q_(Q*Cm=wrt;7Ciq z_zrAJo--xLanoE921I&roCgaw1t=)}2>)DD&u6iu_EEaQv-fXfPtROw#(%_N2%E{#_QnlYWm8=UGRKGk2z%0Z%-$hNBXwg}b2|8j0M~WoRQ(~*_*n(KylHpu4_LQl<)9G)cb~mqX zO;xMcJFd~_E&a`MRZrzPq-il|{( zUQ~b)Wc-=HM(FXgi7=roi0x1Y*~McJxc;!!LK)gmR|@U4?3`R<{9ho#l*gd=?|sXh zav?IWKm9NUXkLF-$lS#px?wsqpMfzZJA{`L!$17<4}|>b(U~$Aw);N~;q%&^{L>-U z#k=Z5O;|I0mtodfC|U$qy9|?4lav83%ik)Jns~2Cveeb$@3q)_1?Pp-?Z@ADV(+o` zfh70jMFCY(Vg)q#-jP%}R)Z$BV+HuklT@V}FA(oSH!LuS7f@0KpxI6*UO-J0PtIPmh8vt z0^k~!==6H=66uQO#ky*&Sf(nRhA2+P%M3DQU>PTtB$ml(Fk3KD6;P>*bRVdR66uPf zV*P%sgM-9KV;Nik&{(QWPG#AG$-#jleJs*$x8p^U^MMxvR@IT^RH2*}b4n(dtO_(h zQptlsqDZ=`dAWX~ToReeB?oA)-%l0FR+m>YQ5mo;TpEg|sfi-#s-kjge2lQ`smc^y zS-+DilvAB3*-Idk(%5isQ2O!hhZoAJPL%A#>6YAR6rA~r67Obmn^16{=qBIC`H_P2 zs@qPyPi%#KU<*nw^*#kv6pHO-a-7R6$Xnx`P4ajZH@c3TcpvY9io0(DVGf7qg*tJV zNd~XtmM*vZi2{jMa4(EAKRL;_Rg@SsCG|dy0t>YhW#Y6{k+Z11)cbTDSV&8hNr)b} zp{8(jGId~~_@)coBSDQGa;DVlbRFq3ah|Ipt4Z*pezF0+;8U;D4GdDm>Su>lYom;k zDiag4@U{t;43)sIzFp3jkBNB`*aiO zS(URxXdM(VQ)Oc9;Okg3N_^|kxF{JHhTGZE0)-D?v{Qv*mGJk8CX$5cCp)3!Y&tn* z62wA2q9k5x$=8acrCz67z%t1e;__^#ovEUmu7a0|R}rT|2W2}oPKBgm(!u?qpL(5c zKuJ+SPEetvqUw@*ovuR7R1v3C2Paf~U+3@Bb!eG7;(Vx+VpIHex{6MwiUhU0$>jyF zvLl10t0aX%Pqo|E-Pe1Az|h@Pe|y9` zH(0|gU~PQdlCi<~Fhy%6cxro%8|k&-Epibz7-TG8do`5Ys<1AUBHd+!0mc$3Rz#`Q zigKR2up-Jjr(`D2VnwW*?I0B=W;~B}gK=Vdr3S-GCyJ~Hwa!gDmWZkOC>M6k4aQ0X z_|lEdEX8U1? zr-~@oupnL^WtbYL!4RY5G!2HBit79|APqxkRfJln0us;p+hCZhV_$v^;Bz8Pehsj5 z;^}=2u(_vM?E*&q$!B_7&*Pn};V)H1f{ zuS_*0Ix|d1x-iEcg((cU-n+~`z96P;24dwK1T=7iJ)1ghY4ylW>)y zZ_KUudmLDl`#7IqAR=^rm)nZ=r6Vg}l-P)czw%p@mlwWuk_$_gKPbXjjWXpiDxK~Z z{(mt<-+Zw5h!6?5f{6a3$t+_YD{D2@avtqF!I}&lR|0D`B*GSFC;w*&TIx+v;P=ew zYNWlAUi#IMD*Z3rr7#mQ(^dn`ZWpyJCjAkEBdkQ2-9ENAL02vJ$C(A9!~NL#!b%MK z9+8fju@Yck&2sl;JMkRg=n*}@&TZH`Y@Kh%;t3HYP>`HoHG0(ct(lHT=WL3b_A@$} z&n$!3PCzCmTDeeksr16&9wYHhfjtyJ!3O0r9i?d~CmL}*=fR^>si0H6Y>>F^&fs=2 z)uWrs)uiw5YGW;hQd|s{K)Fk{h5s)>xv=zDfm4=LO>6|zn)>9*31GVDlp8l3KU349 zW7ERZTV0r0k$;zSBs!1(I_yaJN7N|7({T9nc}r&j2$CS)kr!u1=mW)2o+LydLal_} zr509xGXsK8JMn!(gV(vl<33ZJE_Dc*~5kN<*zjawxXP zY8cR^rdXx1t{XXZOIBE=an>VnXAQ8L1~6%R)i87^v#W-o%eS~{D#)a_$Z;tlE4U-J?7xK&v^E@r<@#9Tya z2|=LcQPXJMz(09VyBN`}+@&wCRN{7j`~h0m-SFeLSPbzmkU_nvF2o@CzE*D{AMdI>$qX2STY~4alz2w5jHCzx(RE9x_nW5_DsHn z0*7!q5uZLYa>YKAkNC9!PqmA{0zBuZq)`!!XhTdPn9JzF0!xgeJ+T*;n%RWuqN#4S zsqLpQ7@ghxbat~F1Qm0WNOw3Z{k!?JxD!N7q^Ah!nw$S21TF6dbWy62ZNXM{1G_kL zNLAoV(}9GYP^)xeqeLJpDca-t?J9uT#U^KA?0fMq>g3mW_3TVXF8vHlpa^%rdAMod zIo5L6a;0^*Q<=hc_0|auR^aV41}`;R;mu6zC-HY=vWHx&rk>Op3^v_@u07^bE+cSz zdv0ar2=Uo4K|U;aAWNO0BRrnSNgf5Ss_Tt0G)+l;$8$QqL z(?IHWN*Z&AMCJ`k+!mDizI5R{fW&!%2g%prGn5H&=TFferzoLN|B$r*{5zK4v22Ki zhu$u!zHAYT(klSdRjOqK+yW%sCJd(|jMA@jJUI7lkj^N+{Z=UlIt={i7~ z%q;6A;bpb>5qT66S#%V}CUj;6_u>e58k{4?9FU~EghYv3vr|8V@@=4Y_TB$cAUq8ch>eB?uoW> zyFBYjl!o$x(Wg^TX!XGH-ctPcC8qs{BTn*456S8p|JISIs;c8j0bHd4a*Wu0ukccr zE)f$EZm--DETPn&pen+1o|vG)7^W}<$1{%3p-6U@6M{4Zk=0W+1>u|1nI+8p<4|NJ z#8L!hP<;G8pBt!j*_aCr=8-81ouT#bh2yyIJZI*nCOnH?imX#G-PJsYTxfov6x;J8 zr{+AR(0TYl)P3RT)Vic;1VQ2@=5GQTq1unRnnFf70!}HM+Zu#zO1}tPT6@qf!j<*u zDI78zo?MyEe7I6rZ0En(%ZLT<-N2lhzf$3jF`<@Uz?}v;UQ+8e?lX&XnB!UC+%SIN zjfC^@E`+;v6+tL5Ws~D_4J!lr$0>91XTpC4_>uGrwC`B{5wa!e()D$|Ycb>4^XLoD zAU7mbc+FV36p^L&k_6cqiku2&d?LP{8!3vw7K&TbIr;?2eYr~xDA4A};H;P#dEU?* zL6#t)=UM?hMqC+z&Dll&v=8tOfqdX8mls|*=x;U#@-S)>p}wHE8UG1+&E0vBTe%*C z-R=DPxqECFxYslP^)M`cL}uJC9czmAp=W9#RSV}>et+@@_=*J)_@mP-B5f2<{b@y8 zB^Fbewidl#-kw&mz4J(_<7?9w8@uCz$@7zeet%`E{#aX=nuYCBg_*(n5n3ZGA4t%PHsbaJJVono+I z=caKG-TLVO(|`jo-teEFP?zdv@PaF%*X`FoGZ4$IXHGeXhb?tat0RNs(zGno&-d8f zEtHwh_z1lPfzq<(n#Yp8xR&W6egReZ*WsB6*E!UDNFs<-IY?pE3!x+j2i~y`iOazk zwOB%YUD;wxrx6>5=(AX^1#@9LEd!-v+7|5gUc70!tM&_+g{I-?UtuML|CR{Xc5?on z{QJ^qSnvpgW=VM0=|9q^`K9OE%Zne5uTDol9RK%O{MO&%)uWUnOc3&dH2|U>cNkfT zD1BtZjh50=(F-4onJAdmb(99WSi9U22(&kFfJN2VWNhy&5?XfBE;osXL0`&w#2KGx zIXni!HsyWHx_-CP0bXesu&%l4XL53YN~u4AhG3!r-Rm;-UV<_OqM!e2q?}wj28L^R zje5rG$aGk64&80&-a&)PM$#%@1OEDj7}kXZO3~E-lc?w zV@_l!#&MyYDM(rY`82QjP~7nxlB8Mc&qdgK8)Cl_f9D3pS7*1OP4VBulWC+WpAnq? zA^BgE;XExEW)&mOguI4stFOaT1JO&g&ptW3zCAlF!r!k6KfgE&xEa2~S!-?&WU1ZM z4kVZ4*G2t>8OY2Q7VTf(3`(xYl+}3tWNK(na4MlI#n(0h@sJ2#=Nt-MgIvoD3fND> z<_zAlyIc^Bc2~Y##UK{o;@57wk_b*s-;FF%#eQT&;(*6o>t!=>U}Na3!~sE6jQ%GE zc_H1eMpRYN*sEZr>`p-f?94>$;&xpCfv;lxWn4|%G`*4-e4>m(G57|nDe6_Xwq7k} z##~<9Ok7kp6&Eu-NI0OKeR0F!d-5O_N_-dtoFD1ra9O;Y!~C#ihedIk4wnZjiN8iy zpTkVhvBM=nj1Dutr-#eJS{)X6FJ^vpxZJflUVaf;?l3RFO`<5XXYuc`z-95ryfevi z^B$C#N>!J^j&zQ2(X8AvYd~IA+h`E{=a0M)7FShba-+>^O`W71`9`B`njeaWD^>5W+} zD#gywmlweW)%_P+FQM=5l&ag&cT148k=o@BaBrqvDr;+($NH1)e72a8>z7wor|1F& zk6^rl6Dy&0?ADpy{QcaU|BnUjcbDG&6?@;LHYgEM0Jl-W?uE@GMV4>Ok7IIgSQSZD zt9eYKC30L63MGByeU(p^OcwI{W;Yz%;P176T)+;PzI*QLS+ z9EV(z@|FlT-N`!3SDayClicpZ=i3AK3L>w=@ILtE(>&I| wL`xlv5nNe!ot=P# z<#G?rJm$&|99@>f){Bni#`)pUDtcz`GNKIP8B~lBu(gOXnlkLPr9r!-^I14l(H?$*f^uR5$cohLAXgevy6}u!Yk>QyKD)~k>rZ{Q9BzGJY1@wh_LHs_|nR4MTSjt z<4{DqVA%)`#GC%+Bf1Ng9iiLS0BwgtG9H6FBV2C^;%%kS&-r=C1j-_0l?24Kk>#f$TaK*KVeQ(;aBgD>aE)wZje=b! z*;u0hm&rBOD8Tut#`XtssX2Z{oRz}zuZ6R6qOpAgu8?PJ-%yvN8QV8Bzgm{DeZyUq zWNhE~R^}L622iV(b0G$BYbnM;Al1T6R02{i#n`4e^6yQ;s}e3d5Y((3j~NBmC0eyi s5~~y6e6X$Zsc#U2D#?SAG1Nm-toa>Q+!o=F|MrLf53GcG0jCxM0L2le^8f$< diff --git a/run/logs/debug-2.log.gz b/run/logs/debug-2.log.gz index 1709df33858ca8ddc368d78f06b1a19b1044e13b..bd12402bf484d8109df300e7b3fe681b98b8ecdd 100644 GIT binary patch literal 15634 zcmV+tJ?+9DiwFP!00000|LuKybK5wU@85T-_B&u^GZlA@O^FXZXM1-X+ey3Ec6=?T zv$JuR3nC$#ZHnZOloR*V+|Pc`0Z55YiPVE)(p}XZOC$vRZ~z>f1DwYvwSCHTrLA;` ztPa)wP}8KI(*K!!no`qlonO6u51)1Svov)KAOErF%+?>7CtZXeT9@xnFOEN4o&0ci z^Yf5gI!5${cr)8J?S~@k<{X5sOsCOq#b&t`&@$McxYFO+} zr+~%3i&&1EMq6a!rHBDB2{bCVoJ@fDhC!^qG=y1c=;&vT~1%U&t8@lj}2bY&dRU&Zd7Q??>dLX&cUGpU5%{ zu>MHs)aYu9Uqed;o$B?XPMw~;`S5OeuSU#!Hg)y`wPEDaJ$&oTY=ekj5MPvpnFhob z^9tuwY?>X;$3;BF(GQp(;4j4lgkOp;(Tto|g`W%>(D@6jAojz>*F=e2965D}&)7f$ z#-jZgpj4}IRM?wG>ebfvxN{o(8f$9&7(HW9YzV{F~ zuo{YRD1!l!4mj&jO-7|YOy=Pwn2HeOy)Tv9yrey{%_kr`o?0bJU)-7N!hg65Y z`hiDnAI4z{Wy2Z_(+_luQJZ;1-Pg)>|2C?e2C(45k?`{gaccUy0}}v8B1rshJ}?Df zI{h@5EQ6DfyIBr3pnB=;<;67(9{twI`a2IMACYGgE(aItd&zTY*`{(gEsy1qF6JGOG`yMsOOxs2~6W+tP z@)GrMxJ-?y0n;%T>TY956pA(nrPxOHibLv_Q#TLPsBQ#u-{)_lG91cSntNrn$c7(pmbaP_r0$`_f^IK=t z#jH}<{)TzNWyBfRfA9zcy8eg-@jFzpR0%>vnZ>cQE!?z0nnazmn9Xj2rf6`^W6c)G zu}e4CPUcL9mqvl^5xGOR2PHq#Ci5=omIS|<4!3d}barb9w$h=T~Gj8~ZP?CZ{CaYQJwweW^o6 z&dk%<_cI$F4O=I}7FSeSTv2Jw&ly|dOtB@-8Cz2h)jv{N6O;dy$BbqT!an z!<%Uh3|VjMDplJWW!>(e$8c+yxl&niczhk)hV0MnHB7fNKyNE z;^yv#Iy=}5=lqr#Yp~nhLRzu~6mHr%h*k?MA)x3qB9dH2EWqmsGIPn8`limsJUqxI zhUviya6GeUr`FnAIaS;FaU~$l9t$-0xN>W7>pQO88st43SFVY@U^zu+6nZEF^A%mx z>>4Kp1@^ul0 zjHt5_hI0cDfO^mPy(`EN;y1(%SBg*m>3a{~M;EX|Sy8orZ3b-{O7ECG0I7VPa)Xf~ zJmt&=D$Soa*s#q{aG`OSLgoXgH{@s?nQRyM&R{`r37P9S){$})Jc8b89LYu3FYhiu z`<^&Ma`n^s>G?5v$3Xdj`fqOkhp6pdn_N&ga9r~4`a|pbN6KK)hHxz(I$d1}!m$_RO-r zJ3N@uXJ!M!u^&BQUtG(lD>SqiFKRa^+Tt(`BOfNN-wki;Y#BT~Dph3Ipa?9)9HT7Uf zVjVnzmT@PDSU>L|uz$k@X`PidXq_K4-^~x2@3QFlAOb>*+7B}d-xDOfGkR>ScNJM_ zPoV2^d%)Coo3;CzPGzdfv^O4TUD{RB)g(s(X^J4(sp&}wyl{%U?4K3%h4%>7AZRPPqWqqx~Xj^B!PP;wm8nmzXWWBF;wXxjq z({WETv~)G)r(y5wnTBBx|%UoST9yX>B+aCTk|L1ZV6O<%6kW ztj{K0I_RphV)PZG*QG}E^YW9e|Mg6^U6H2pG|L)P)IZI(p#T(gPum9LE+eIL#Y+g? z3AA>u6BE3MWP_?VHwl!-WAs(ggCD7f zXcuP`;SmL%48EoC#vp;itw2dM^~mMf?eWq1)mxB!J^1f#$^we_4$?2a6YAk>sc(nG z42a=?=4?AbbgNH{#qkNAQ-)`EQV~@)Qc!nHm92Deqm{Db4vIsGZ@rUC1fFlc^DC9z zZ=M2$Qph*o^OYLr#uVsE?Zu5tIajCz0irYY+@4=K3n(UFj7Y%k$t5y+GWpf%9}9qK zbx8$#IQqoyZ6r>F-HUZCGD4YFR3#>Hzx{dh_js3c?=jawz2YvdSMYz!Q0#64;zsk{ zC!a3Dk0Y1qpQ7h@W&i!c;e2kN7#dah-^)Me9;+kq8zcTAm~ALWyA^*C;OfGd!%!M^-tpGC3lbCeA!igS1RrM@c z6I7^H^9eP#smygFuMyOIimybZR29Twd5;_~5b;VPKV9?_7CxD{9C(zC`A`)bnQz>D zXu&madAOJ&HMPfoP|%iI^~hn-R+`hxoOgQcA2ZlZIfEnz@CHlZYxnQ3KO59^b{U?OMs1H9*r0%cV3|m-*CBk5ZQ8i*w6n5EcNfNBoWqXobN|)U_8RSyh;bvqgtv>f8Mcc;2tV{)^ zlu^TGR4A*l_awE{ZNt`ypmr;IxQ(C_EX5_mz!vf7a7(bqibeh4VNGH&rT(V%dfh(j zX?P~?bWwb2z%&gYfbf&EJ2LJu*zsNt~zn^mTaqM@+ z-J+g;EA5Uk=@@#&e)E4HnBDRNZ>9&JJG4g8rO=I^Viw?-heWuD719%P0$@% zZ)W-v3(n!=*V${eJ5btVqr29aj{<6XU-6K4<&LcN)XrL+e`{e(scR?rnh7vwtT#~0 zGdw=$akj(If3=ev`|v^8?^Amz8!cWRqcYPCQ+eQ4cM!*#6HYyO)e zKs5OO>rBTc`^mH{4C443p+Rc1xTb;U{AT!H`Tg>}&ZvFq*!;RY+%2=uej@}+t(&uF z=ZSf*#Gla&13-*iW?AnXYW+qiQf3N`KGUiD!|XRQQ_`Y^m>0iE;lcx{ii=jit!~?{ z-a4VdZ)-0J`+mm%+`hQq{z9*~hu+LgJHCI;zyC%El`C`pM*5zXH6N)RIMcEWqN0gL zLurs!I0LVg#`#TkKGZlL9nWX2(G#;+;Mh>HTS{X5wn$;No`u5M3Kh?h$sSfSgl~!n zC@GXyyT6T|7w(q3MpHfMy;ewx;?}n_=QoD2oyos@YAjy`J0L@)<*;%4 zJ6IPfOlvF<)5f6(Al^*Gy666jTDU}t>dV+a=5=yj^tDA|@Uz*576yZv&&^BLlVkENcycTmD-U}aJ^6BU(^iMp*#8~&IXFna1 zqa#cmc4~TuM8ah@a0ZI=2n><&bm=2+~(F2b=RjI`cf-w=hL6cVe$;odvOM21MdNkl;m86UB)R7YUL0Be7HRVL!8}F5YTCVuqyPkr5;0 z+~IG@#Dl>?W49tOne~?h6HV9)MxRbuz=?=WADzz2S@TyIcZ#1-42jP(_tw>@nA10S z8iC%exp_?cQn#OB_m2N)iZ;))tv`hmXv-YD4n#$ z&WGCXH3Dj}JzzfU0Z#(7ci1Tpk36i3)E^9*fHl|LG#~MR=L|ok0iBp%fX%-FEdc{o zx^vmlnF7oIg@Q<7M5TNQfAAJRzQL$1B94OG?~_GE7$ab6{>qQ*F|MQYL=>e5B9LX7 zKJ2-6Zj#fEDz$mSm!{EB+@KdA?lgjREwwYvM=p2z4Me`o(l5UsYNPtG^y0ao1I=U{ z!fYTPa;H&{vX@C?j_8E z3wqQ2x&~{doqRzz`(I5r%e&9zceT@Qgrc1ZjgXJF*RH6aca z7tzdyT+Jk-7h4~apN_B2FD{PB(SMTTliTy3&I-WE6}6$Y!A-20X*3laYGW0#Ro(vA z#x`}v_hOf?h)}J#TGvMC;}PFItV+8o#H#!G+7Mlb+j&()SJ(7owvJZC(=`ZKA4HUk z?}HbYRfSk9`@8=NfV$KROxj9mzp+i#P`qCGimijQx{H;>89K4 zVGbes%oDbM1xxv^tQ7&f+qv14lzGj?1Yr!EriwGzjyytMdDt4tO>QM78p zy+13eJdpp`61JBJU3~H!CwNT&nonjn`{D}Qcid>Fw20W9--%t0*l2RG5vjR(Qj*kJ z!wxzN9xZb$y*xY^9`#L2`g`>07+&ECjUM;l;QQB)LE!qsRtukm z!xuIJ?Y-vNd7POY_^HyanJnfD4I)`8e3(~ll=mQ~+GyaSBH=G=Od9n1`sV%V>wMBF zvRp*EZz{GpppF(8pnP*DKCd-1t=-54Xj1j@w(Q?+>z|58$kq6x2qTlMAR-op@3wL^y zs+v45qCtN%8pOL5PuLb+!KHg1B`4rxwPLct4+~Ip8iorj`=c&05$4TpS7cJMpxJX-Jz62v=@n^mnQ96ksu9K`-0Jb2E`%^CXwM4G$- zqN(m;9;p->c(T@sli zKzghj39dHDhM&BdO(w84Qp50=@0Wnl+a?U*Qw(Z3g1`s~!rasGhGb^Ppm4aD0v0JZ zb6w2YX}out$M>kSFBoEh&+QvFvCyIQ8DuOL9P@NrCRA|%^|J4vJs&FsZv1~}KnkEn zbvQP9ib{d^GD=jHdXLzKs{9@Kf1h}5M`Eiu(j*!9yY$w?I>SS(j{L{gF#h7_rAV?w zd)1M=nSGFbAz&!|{zf=BoqhDQHvx?3GpahCV_7gu4CmT2pG^z+s&SBc8xn#e_^;uA zRqdMeAG(FS`ahTSPN{{;lIb7YhUb_@7E0JlRjmg}F--)J4aYl)1JlWaE*o4sjwStv zXgBdp^j+IxlgE)+%zv|&S8~*7{AoD!y&W~Wpzzik%@K5Lku^uU5`QD&`U@19H!+&8 ze|FyH|Mmdqe-(pE3FOgW%)fIanljinlwXXe#S-uYbCs?rGVznejv&~LQ1*<@p{NH5>bRyn&CP zES=zCuy+tI!7J^w+iTXEtxN06$+{|^ze#h60G=MCUkdtjykQkllKAAroKHPv`TP$L z)fWv|bUHTZD}HIf&kju7^uypVue5_K8d(twb!wsSNCAvaeC{K8Ia7kJ!nW%nXFqW; z@JE1>%G((lY`i-5Uu^vbq(|KRGq1z8`)w^}>?%~wzA(M8_THddqIO^wPd_@QeM|i( z5Ess{#>6wh&U$Kvx^U}xg;yQ_cgAL*M>y^Uy3i!*UTjaYETn`Al}o-(?YyeGoxC-+ zv?>^&k6a|qtxu@}P1JMC&#?Kx=e~%LE-KEI+Xt)8jn-5jOxU78RJY6rn;9|n;gF!j zT?9tiDwsISjjLC{;~bp^pmv&zgP3E_qb~|9YzdYdQ!Yd}r1G+Qk3c&_ zm?|!QCbrq{2+TR#5%J-mR#A6RSK<|MoMY;PIx}WEo%t;Dh8Pa>3D(ZOpstjy7Y{%3 zfi2m_7K#sN{JB($X-DB&ALPyX#E!Dit=^CEXiCx_nf@f69%NqfTD!eGUYDp<$OF&| zbeum3zllw*E3c`eyy`7gzcji14Xa;TyB;O?clGOc_3L-_>v#3*clGOc_3L-_>v#3* zn^3>DtMNqY*D1e0dGivm@E#}JG%N@2%yX2Sd~n;k_shBCT79Fm)z+u!Qj2-392W)*YssAqRYL z;fLZUbpsun$m|)~s*(d7ON@@nW8I-C4YO*&6FnS~kEU%npL1j5VWZo+j7$+BGmDO7 zF?(vpG0PlW9E&3j*awmS_>YcdAi5%4tE@{3aGhWPXy&2Wz#w_tv*0wkD0A>#i50#k zj8){ZK_6y-MU2%_gNlK=%ATW|g;Hb(8|n+f&KqrHKuSX4W?^js4+^aO2HjO_ra(%9 z&1zykpd<)?Kr+&wcm$%Wx98kal|PQ67o(mKn#%{y)Z!TVQ_LZyKNVVm54x-D4YmX> z^k1k492z%^pP=N(zVI0pT1R1?Er$q)D&`St6MXtY^bj(p-9opsllPaG@2`l%59G)a zo5?}{YclRy+L1llbQLd2p2PC&;Q<5CzB=JALgiqoY1d%oQFs%2V>#YUI2FrvYLygK zU#A4O;nIQ-98jRJP|gW`Rj?OY0JTD?JB+$F<(@1RR4p6?uhx0v$1p_@xp{(iij}D1)#c>96Tz45|+?vzu&G3 zs+V;vTrF7W)TLw7GBMkLbP|1ei9EVaj<1j3oL`*Z3UEn2PoqgeE$d~zYk^>rjeQk3I<}q-Z69iVSd!XB23#Q%MS@C zgaSkpuk7~-sRWt$>L^09?oO~SftG=(=6ARa(u|ApaC9ZPUCEVs3#6$LObOD=qpcMo zsDnX(}T-G8;l|0h7K%>=&x^)vN5$duCRi#aM3v?<2O0IoAnFVQJ5X^SR zZ8e3KVcG6zl^{$kqH8^vR@0{hq}n(7Sh&1;FqM#pRzs?N)6d2~tOr^N_Pr-$W!N|m zpIrb)sasU46HN)?U@FpOLVsQ`u-y`at|Qtd)OCWd)E$V#dw^#dy< zVkU!u7XhnVhT0FVGJ--BsJbbXsu@rT5`}>p5LgkWx<$^~A(bIhEZ%GpsJf-7`Z1Lt zl*c7H<`)f}y6!#Ex>TweP+1Zsb{P zrSw31Rs^PQ;i^6?WftNhX-N^Lx(_y2L(*zLZpkE0sRvnUV$}_-9CzX#2=^k~^0M*l z)V(2A!B#t4&&}LYgsyJ(zDIB+NH@rOaD;Hd#Bds$ko$OkI|6 zlbOv!P1FdjB-zR!>(+is!J+AnZJ0Gj7^u_P@?S#SP7CnGV|fFB)Gbjsr_Lq zZ93q3%)sngOHZ(BC*1z9l^|Ry329Skwij4c$Q33-Z5+L7#Z`r1A{5X}Z1N%;QsaoX zH;ii%5>v1)vEb^~t-J0Y>8$x|Ic1R~R||`=QVQ=O^C_&!VCcttqbDn&<{K%{KwhFn!meFQ~m> zyzD|y^?0-H6VnPpg+8?g{I1L()?+cX1~jEz)5W;J#zQJDQAU)SLiOzj%?jc?Sk4&q zUT$7lo=DumGA-2FDkE9XwRUq5Rz4ixFX5`8 zQq@YbSr}A4jBXzWmk+aS@Vp;4X8`S;I6+35T~qz(+@3hZhE5omLSx8l;yEaILJdp} z(kcL_Roc?G0WOSNgQo33xg^R|GN&t$MRd!V8F#0S&ebjd#+g$44u0U@PxZS*UDG?B z*zV3_;&#Hnn^Lnti|u!^N9^ZUZ{O#48^fnztO}8~04K{WeBmC|mbUh*|+B)hqVHMd4T)oskG!hU|Ff&Pfo ztInSC8H3RS9}3r!x<+oQcsd)=?R3g47A8zebhPw9tje;s#pTU&JmupM3X(_yd2|Up z`$%n_-Q2vt$?(FkOA9V2a^moGI5GD3mYSAGK7~Ca+_H=tmZd!q_(Q*Cm=wrt;7Ciq z_zrAJo--xLanoE921I&roCgaw1t=)}2>)DD&u6iu_EEaQv-fXfPtROw#(%_N2%E{#_QnlYWm8=UGRKGk2z%0Z%-$hNBXwg}b2|8j0M~WoRQ(~*_*n(KylHpu4_LQl<)9G)cb~mqX zO;xMcJFd~_E&a`MRZrzPq-il|{( zUQ~b)Wc-=HM(FXgi7=roi0x1Y*~McJxc;!!LK)gmR|@U4?3`R<{9ho#l*gd=?|sXh zav?IWKm9NUXkLF-$lS#px?wsqpMfzZJA{`L!$17<4}|>b(U~$Aw);N~;q%&^{L>-U z#k=Z5O;|I0mtodfC|U$qy9|?4lav83%ik)Jns~2Cveeb$@3q)_1?Pp-?Z@ADV(+o` zfh70jMFCY(Vg)q#-jP%}R)Z$BV+HuklT@V}FA(oSH!LuS7f@0KpxI6*UO-J0PtIPmh8vt z0^k~!==6H=66uQO#ky*&Sf(nRhA2+P%M3DQU>PTtB$ml(Fk3KD6;P>*bRVdR66uPf zV*P%sgM-9KV;Nik&{(QWPG#AG$-#jleJs*$x8p^U^MMxvR@IT^RH2*}b4n(dtO_(h zQptlsqDZ=`dAWX~ToReeB?oA)-%l0FR+m>YQ5mo;TpEg|sfi-#s-kjge2lQ`smc^y zS-+DilvAB3*-Idk(%5isQ2O!hhZoAJPL%A#>6YAR6rA~r67Obmn^16{=qBIC`H_P2 zs@qPyPi%#KU<*nw^*#kv6pHO-a-7R6$Xnx`P4ajZH@c3TcpvY9io0(DVGf7qg*tJV zNd~XtmM*vZi2{jMa4(EAKRL;_Rg@SsCG|dy0t>YhW#Y6{k+Z11)cbTDSV&8hNr)b} zp{8(jGId~~_@)coBSDQGa;DVlbRFq3ah|Ipt4Z*pezF0+;8U;D4GdDm>Su>lYom;k zDiag4@U{t;43)sIzFp3jkBNB`*aiO zS(URxXdM(VQ)Oc9;Okg3N_^|kxF{JHhTGZE0)-D?v{Qv*mGJk8CX$5cCp)3!Y&tn* z62wA2q9k5x$=8acrCz67z%t1e;__^#ovEUmu7a0|R}rT|2W2}oPKBgm(!u?qpL(5c zKuJ+SPEetvqUw@*ovuR7R1v3C2Paf~U+3@Bb!eG7;(Vx+VpIHex{6MwiUhU0$>jyF zvLl10t0aX%Pqo|E-Pe1Az|h@Pe|y9` zH(0|gU~PQdlCi<~Fhy%6cxro%8|k&-Epibz7-TG8do`5Ys<1AUBHd+!0mc$3Rz#`Q zigKR2up-Jjr(`D2VnwW*?I0B=W;~B}gK=Vdr3S-GCyJ~Hwa!gDmWZkOC>M6k4aQ0X z_|lEdEX8U1? zr-~@oupnL^WtbYL!4RY5G!2HBit79|APqxkRfJln0us;p+hCZhV_$v^;Bz8Pehsj5 z;^}=2u(_vM?E*&q$!B_7&*Pn};V)H1f{ zuS_*0Ix|d1x-iEcg((cU-n+~`z96P;24dwK1T=7iJ)1ghY4ylW>)y zZ_KUudmLDl`#7IqAR=^rm)nZ=r6Vg}l-P)czw%p@mlwWuk_$_gKPbXjjWXpiDxK~Z z{(mt<-+Zw5h!6?5f{6a3$t+_YD{D2@avtqF!I}&lR|0D`B*GSFC;w*&TIx+v;P=ew zYNWlAUi#IMD*Z3rr7#mQ(^dn`ZWpyJCjAkEBdkQ2-9ENAL02vJ$C(A9!~NL#!b%MK z9+8fju@Yck&2sl;JMkRg=n*}@&TZH`Y@Kh%;t3HYP>`HoHG0(ct(lHT=WL3b_A@$} z&n$!3PCzCmTDeeksr16&9wYHhfjtyJ!3O0r9i?d~CmL}*=fR^>si0H6Y>>F^&fs=2 z)uWrs)uiw5YGW;hQd|s{K)Fk{h5s)>xv=zDfm4=LO>6|zn)>9*31GVDlp8l3KU349 zW7ERZTV0r0k$;zSBs!1(I_yaJN7N|7({T9nc}r&j2$CS)kr!u1=mW)2o+LydLal_} zr509xGXsK8JMn!(gV(vl<33ZJE_Dc*~5kN<*zjawxXP zY8cR^rdXx1t{XXZOIBE=an>VnXAQ8L1~6%R)i87^v#W-o%eS~{D#)a_$Z;tlE4U-J?7xK&v^E@r<@#9Tya z2|=LcQPXJMz(09VyBN`}+@&wCRN{7j`~h0m-SFeLSPbzmkU_nvF2o@CzE*D{AMdI>$qX2STY~4alz2w5jHCzx(RE9x_nW5_DsHn z0*7!q5uZLYa>YKAkNC9!PqmA{0zBuZq)`!!XhTdPn9JzF0!xgeJ+T*;n%RWuqN#4S zsqLpQ7@ghxbat~F1Qm0WNOw3Z{k!?JxD!N7q^Ah!nw$S21TF6dbWy62ZNXM{1G_kL zNLAoV(}9GYP^)xeqeLJpDca-t?J9uT#U^KA?0fMq>g3mW_3TVXF8vHlpa^%rdAMod zIo5L6a;0^*Q<=hc_0|auR^aV41}`;R;mu6zC-HY=vWHx&rk>Op3^v_@u07^bE+cSz zdv0ar2=Uo4K|U;aAWNO0BRrnSNgf5Ss_Tt0G)+l;$8$QqL z(?IHWN*Z&AMCJ`k+!mDizI5R{fW&!%2g%prGn5H&=TFferzoLN|B$r*{5zK4v22Ki zhu$u!zHAYT(klSdRjOqK+yW%sCJd(|jMA@jJUI7lkj^N+{Z=UlIt={i7~ z%q;6A;bpb>5qT66S#%V}CUj;6_u>e58k{4?9FU~EghYv3vr|8V@@=4Y_TB$cAUq8ch>eB?uoW> zyFBYjl!o$x(Wg^TX!XGH-ctPcC8qs{BTn*456S8p|JISIs;c8j0bHd4a*Wu0ukccr zE)f$EZm--DETPn&pen+1o|vG)7^W}<$1{%3p-6U@6M{4Zk=0W+1>u|1nI+8p<4|NJ z#8L!hP<;G8pBt!j*_aCr=8-81ouT#bh2yyIJZI*nCOnH?imX#G-PJsYTxfov6x;J8 zr{+AR(0TYl)P3RT)Vic;1VQ2@=5GQTq1unRnnFf70!}HM+Zu#zO1}tPT6@qf!j<*u zDI78zo?MyEe7I6rZ0En(%ZLT<-N2lhzf$3jF`<@Uz?}v;UQ+8e?lX&XnB!UC+%SIN zjfC^@E`+;v6+tL5Ws~D_4J!lr$0>91XTpC4_>uGrwC`B{5wa!e()D$|Ycb>4^XLoD zAU7mbc+FV36p^L&k_6cqiku2&d?LP{8!3vw7K&TbIr;?2eYr~xDA4A};H;P#dEU?* zL6#t)=UM?hMqC+z&Dll&v=8tOfqdX8mls|*=x;U#@-S)>p}wHE8UG1+&E0vBTe%*C z-R=DPxqECFxYslP^)M`cL}uJC9czmAp=W9#RSV}>et+@@_=*J)_@mP-B5f2<{b@y8 zB^Fbewidl#-kw&mz4J(_<7?9w8@uCz$@7zeet%`E{#aX=nuYCBg_*(n5n3ZGA4t%PHsbaJJVono+I z=caKG-TLVO(|`jo-teEFP?zdv@PaF%*X`FoGZ4$IXHGeXhb?tat0RNs(zGno&-d8f zEtHwh_z1lPfzq<(n#Yp8xR&W6egReZ*WsB6*E!UDNFs<-IY?pE3!x+j2i~y`iOazk zwOB%YUD;wxrx6>5=(AX^1#@9LEd!-v+7|5gUc70!tM&_+g{I-?UtuML|CR{Xc5?on z{QJ^qSnvpgW=VM0=|9q^`K9OE%Zne5uTDol9RK%O{MO&%)uWUnOc3&dH2|U>cNkfT zD1BtZjh50=(F-4onJAdmb(99WSi9U22(&kFfJN2VWNhy&5?XfBE;osXL0`&w#2KGx zIXni!HsyWHx_-CP0bXesu&%l4XL53YN~u4AhG3!r-Rm;-UV<_OqM!e2q?}wj28L^R zje5rG$aGk64&80&-a&)PM$#%@1OEDj7}kXZO3~E-lc?w zV@_l!#&MyYDM(rY`82QjP~7nxlB8Mc&qdgK8)Cl_f9D3pS7*1OP4VBulWC+WpAnq? zA^BgE;XExEW)&mOguI4stFOaT1JO&g&ptW3zCAlF!r!k6KfgE&xEa2~S!-?&WU1ZM z4kVZ4*G2t>8OY2Q7VTf(3`(xYl+}3tWNK(na4MlI#n(0h@sJ2#=Nt-MgIvoD3fND> z<_zAlyIc^Bc2~Y##UK{o;@57wk_b*s-;FF%#eQT&;(*6o>t!=>U}Na3!~sE6jQ%GE zc_H1eMpRYN*sEZr>`p-f?94>$;&xpCfv;lxWn4|%G`*4-e4>m(G57|nDe6_Xwq7k} z##~<9Ok7kp6&Eu-NI0OKeR0F!d-5O_N_-dtoFD1ra9O;Y!~C#ihedIk4wnZjiN8iy zpTkVhvBM=nj1Dutr-#eJS{)X6FJ^vpxZJflUVaf;?l3RFO`<5XXYuc`z-95ryfevi z^B$C#N>!J^j&zQ2(X8AvYd~IA+h`E{=a0M)7FShba-+>^O`W71`9`B`njeaWD^>5W+} zD#gywmlweW)%_P+FQM=5l&ag&cT148k=o@BaBrqvDr;+($NH1)e72a8>z7wor|1F& zk6^rl6Dy&0?ADpy{QcaU|BnUjcbDG&6?@;LHYgEM0Jl-W?uE@GMV4>Ok7IIgSQSZD zt9eYKC30L63MGByeU(p^OcwI{W;Yz%;P176T)+;PzI*QLS+ z9EV(z@|FlT-N`!3SDayClicpZ=i3AK3L>w=@ILtE(>&I| wL`xlv5nNe!ot=P# z<#G?rJm$&|99@>f){Bni#`)pUDtcz`GNKIP8B~lBu(gOXnlkLPr9r!-^I14l(H?$*f^uR5$cohLAXgevy6}u!Yk>QyKD)~k>rZ{Q9BzGJY1@wh_LHs_|nR4MTSjt z<4{DqVA%)`#GC%+Bf1Ng9iiLS0BwgtG9H6FBV2C^;%%kS&-r=C1j-_0l?24Kk>#f$TaK*KVeQ(;aBgD>aE)wZje=b! z*;u0hm&rBOD8Tut#`XtssX2Z{oRz}zuZ6R6qOpAgu8?PJ-%yvN8QV8Bzgm{DeZyUq zWNhE~R^}L622iV(b0G$BYbnM;Al1T6R02{i#n`4e^6yQ;s}e3d5Y((3j~NBmC0eyi s5~~y6e6X$Zsc#U2D#?SAG1Nm-toa>Q+!o=F|MrLf53GcG0jCxM0L2le^8f$< literal 14957 zcmV-zI+Dd7iwFP!00000|LuKybK^LY=ifIG_Z>KMHBs&uo8n8 z+0D;G;nFqZH-bNN9Lsqa3dDa1gfB-&{KvQOm4=7H#D%|xZBZwj1=Kg`^PzBb^i2K0 za-Bl~>b*Zb`w5?sAfVy7W72PjLU;ZkIJNvk;beIC34R^id9F?TJ8^3Gl!UH-_uv!L zrgsJbEWsUX>^^$Ne~uMBkSS%=i1=+XwMAC&rx=9R6ID@)-%XAA3t3boQBM8ngYV9~ zL&2e;IJF#V_+%2Y7mJ^J^WOu_RY{i>QI<7LR(}59fA~@`7JW(H(pbonD2ao=M1QbG z(KJj&ny8Wxgv1ZoK>b3Vi4cu|AorlG+!Mwx!Wj&c7f|8YbiL4;P5&x<90{K-$8^62 zf-J)T8;=5+n!2|5HMCUHDNT(#b$a&h(}(4~8d3k*GUyM)fsxDh@Vz^8Oo9JG2zW{0 zG$1zTE99vJn;p)_g+Im74`~qMFF6CkFZq|4Bj;7&CzFI^{sJpV{BZF#RiY3_K^^=v zHjsj`Xg>ic(`phG_U4iJ4h@2$E=I-5xUDBw8kj4n^OATTuuO%~aR^ZTVKF*G;Y;8@ zgf7g65*!0btHB`G_UyrOD)5KL3I@>r)cR&Qhx8f9I-UiGfj!ZFnONU|-0t`nYJ~TX zu5D8P-lP-DA-44odI+*Cw5If)IR-6!hY2eYwZgLpY4 z2J|%uec}W#4pS%_)nHmdXxNlE)GzD4B30`CZCp7CVZuct5fl^R)Cvq27yw5iO#N;? zFlAu+SulA4C!%z-U1CD@;`_^sYZ5*Nos*9@XV5f$5k4GWo}HfG2v(34*jGSI!**xp z-KlHLrZ6PIjXNdI9rpKrYTOyK0GQ?8^+9~o=^c=<4C!DSNP%vnts!Nvb_)08_)<03c%QR?Ul$eIQVq>!V(sK@u}q1VLcbXt;e~m3=m!?Ea)! z{$T5M*U?yYk4%PGgmPvC89G<(=Nfmh!o5!0SUnQfpSOB>f%UIqur=0)d^;1?!=&*N z_i(t(jA;PVF;nVp6M|rYtPhB^zvw!E0^#M0hBPq8y4h<0))^|Y?`A;)jSgtKf8qZ| zfathSyV_v9J3tJ~4Oeqf;|zrpuIQFDsprg%^=WVd8Ue6Of&^VrE?p$_oHDRpXWwJN z(e=6D5#xzGP{EpdHbu3C3+5ONv!wsR|BZ&jRK{w5JZT(Z;8DYxSOy2!t=#<9MRmET z+@$f61@naIh%;vY;1&jS{Sgb|cc@~i5rl|(jV6Jb zbaCzHmKatV6}n6O5H&A+Nyzn|g|8$Kf*F&llbLP52xHep&Cha#d6x`Zgx}0;dV+>E z=kdSEMDFXFRt!c{vI^@Q%gA$`2YT&(r9L!sdH!GLSHfsE4qjkRPK9Wx{azCLVpkZs zGvA=!&m4F(?3@fc%uwktL!~p{XYBAj#SY(R>`WQd;7I9AEcREFJ1_;sfHmy#hC3V& zYo;?WWkWJlqDmT}x<2Sp!_;~`Mea|CE|2?NX*}unCI9hIkwy%sgRC0?S}(9&Tg{ zrscy7aDA(6rPkD~Y*FoeyK-wto7t}18r{W+ed#T+m&l#FPTp99)%I|gYWwdW%@dVVZ?pkR+dmu_zVOHier zBwP?LbUoq2^{3AD$vN$eMrTUq^h%WCUv~#Gth0yl*Av(G++}NWSE{>v4_%)hHsapN zg%yPHd`xW)B8?2!_2E|}jL#{-@DI^RqC|{$<+>_D7EbJokVS*rw->H~yoLvB2gskW z(x4~C(3#oxcZUa4@=P5-I1b_`^qXh9xUCqQ1~2onF{1cEyf!lj4G&a1{-Ug#b=8up z-8`ipI*&NUORBd&693$Rf0lw$>Z%JN^R)}a6HpFZhg-ZER`>vRah4J2H^MfuUGvX> z-caQo&n(-#^J&0#(}Fuh|JSY8&&CvLM+Y|61m|VyJeN^2w>z{sCHeRUGtaYe0nQTj z%Rd+0{{G7j$eMG8+!8H+{#S`C=*ydmCbSDsDeYW*JU%_Y`Y@;BGbnYOgt(8&70x5B znjUeT^&WK_YTmn(iDiHecptq5G2l);+#wadT42BZa}MWU0uw1mv0Mgai2tTU1L`ZA z$^h)%HSu9c5*<8&mT}RFS1Hy(SgA}4v~^n5p>@8|d^g`{zRROyg9r$1;yla0IfNcY?4wVowzpei2*wA*r8n8^4&{iH#RNB|Nlt>2cbtP$_o1|~_WTUU@ z+F0)Q$+)MPTDF?XY`CCc``NH5Qq^a}x;wn>W5cOYLRMWGsCr+a15Gte!x)qCq$hRN zfhrHo-b9&DT{FiD?Imic&V2pX!+g6XP;HjW-xPRtEQb#KpkHOksgCtA9q43CRH`cK zL^TF-pZ4iQCj(uT6|=9HJ)M~G&nq*V_KFtVU6H0Xn|15%KIPKLd{zer831k?{Cw}~_%#(WS3d&a!0;_E6!2g)E*x|+ zr9t|)0lLL~lBqkX3V-p7{dR$v=KUC+7$CkX4M6?}`|SY70HQZOZ(o5wSANIvOM&l+ zrEB16j7L{vYMkpW;amjk+apqFz#9VlzmI0{CFO>k~nimq<`SMHj3{+i%Z%t5< zS{jl4-va~5BTsJ4q5Oz)BFhdf?Md`}ne3G+LdI2~A&jrmZOI+<_YeB{A3 zZ+W<2k%ro1KPYRf?tO(tTUkjjGui3Wzt3PbWdc$-fM>9pp-g!>6r|{yG%55&WN32X zG}cBV<5wTd$t6M-rfG4`V~QFk^yr{1ihZW`?ITSjCl0{Z>ZMvo@XGNy0@|k z#vR1AS&NXRT15fGE!=41MnV-%tI~Q@pBM!bIddN1J!=#wlV~>%Ho~S}J;PD~1w*SM z7FJ=2G1yU5jYJfMvSzDjRa+v#DqB{;P1P#9oLeV@B5i~E%gIpHd`39EDjMAOsnDyU zOKe7kiWWPdQS-t1njnHE)s*Zb=mgD3$tbWzGCJH6?1^G=KUi3kL`2Fd%%ni=auViulsyZK8oR6*_(9YsMxEdG1m0uXgMjY&NDYSJCWfz zvgpHVf$*y$0%{7C&F)`E&r8?KkWMlG1La==rwkvnzM35>F>t>+|#l z*S?ER2|Oe(2CJqA-?2tgDGk1qW;qyM)=X(o=qFnlV-&+WB*9bAHkdUsij1fM4E7`O zZz31}MR3qUKhot5uaiBbK7xMUJ!+#&A=^bzD=WyZJHI3Y$ab6Fc=j%XQ!)kmd4IL- zOaZnAloDZCdZ2Bv|GKSjhxK>X_vLKAy-wF+`Q^=)=WN;myK^X|tiF}}QTbNWx7XI7 z#CCXoV;I|E{@qh!`7GE08EQ?3joaVByvSf$V}e)?4m|+zXFM!FyT7PKQ)Ht~&a2*o z2DnRzYpupj!dW3L%M;vfA4*jQoqMxK;d%;fGd}uD6PfTL%!uXI=37RLRF<8$oX6ok zzvC->IXa5&Cmv#AtozfmpALniBTOB3YWatPh~F@{c^I(o>%^epKc820?wIu3q0lWO zNWYw4&U_!&EliQiF0-J?Ex5DLn}vyN27<_bAi|5XCUORGf)C<^NbC_`DcP`}InS2w zI!L!Kr)TevKV94wc0m!l`FkUlD}u=%zKFBXvPH`YsqYZHxbyIU7kAF12Ny2hKz>hH zM-UEAmo&O~ulF5@ehG|1GSjNA_jRQ^DM}QqsG^+Tjad$n_%N%H3?N_jfVanT zPP4o(+9K~ug-a&|dt~oOKoeVJiJK@%Y(k|&v?8>cs47Yu(3beumtgL;g2KiA;l+?O zmJFm-kkek>MXAK3|Q&Sbw_s!BL5cxDuo%B3Pk+Dd;Itgqqguk3Ua?MEGohn z0aNQAY`Y%gI=WASBI}?6*|rtHn(GuMIR!+z+=>}hc!FMnn8o&PC*t_Ps~CB&9qU95 zPru@R4D=R?w&H{5q7L*#NowOjL~aAckY$#PxGj*Ahr7jim2STkcuTH{7K3hys=WG= zZwdTCDwPTvL=oYpfC}Z-S9Y!q(Q}!f zS4+`R$3U;*X^RQS_2T>R#iMm0*4&8OO#I!y0-zr8L(8yft3d)Y&gx=oO5k|Ja&RHO ze~>Q9=caQf7+y!D2;VTb|sxv#9>R-hz=UyWyBYbgnKci8Hoj&3#H$7k!U1{>Wk z@b5j}ouJ!8{nfiMY2<=5x_2k{?9iMB>k+moJ$wolng4P>W$8TELfVv49#AK6{dPk% z9x2kXt@wx$TF;;kwG|&T=yAWoAb9b*^)M$CL+#Wa?wUK>>r42@ne%jy3(+iSE53tlNeyz#gIP!^WTd+3Wdp0p%3+B+L^xllGO1%!uY>TfZN^O0aP`v5)Q}JG( zz}yO{Sq!7gVy4_+B0^u_FbZ>bi#*_j=n>;75Tm9r>|5-8797PhdVZQxU*wtl5lohY^N>~?sZbztgJNuO{Yp0JzlhK!o5E$ zsyvYY*x|mH2%UfOT{nCy0JK1uIrN*yecy4Ros!>)y&@L>8Rux#dIJ@v&9ST^%4{i{C|MoEqyi(D9u!m?4_sU%`h|l@gWg`>d^~+yLOPcJypVKh zF6Hjf;^q9*1E>>4gv7D(hr%f>%m~pJduo0rRBq!PMw`S$G1k~8=%jq{`Nt0z^W-op zaGETztV%**o|wKkU>7XY%`ZJ2LRSpFIGoFUCz}ZXo?QvZu>xR42|W~aO)X62GZ3YM zuCK^RaOs+#UH|ElIA~}l5}0t8W?7Hw;U3l=@ri9y8`GK`Md=JmpfKm^T2P`?Ja|_2 z{_+A7@3H$7JY&y1Q$jvj78J&d-SdkvJXkw=&e|Ke*$PL(1FmrKZw*E(FmsZHyFEfw zO&*ugK--K4$!;YRw#7$q*`CMA3D{VzU^e(+32NrQ^cx?!O=+J$_J3A2?UC9G9Tfs1L_}1%eoLJyc79X#v)O+w?zsqyonb*6i|U+nY5z6 zE9*Su6(loliE1?D+wz0oW#`d@pOYZjf#R%c&ENY5E21oGnyl1? zRiwWaE@_?jA8$THJ~W&|r%~b*sP8Z{a}W8gv6Fbr*`+(|K{d2I`R6)l=WNFya?I@d zZ}PG5%uyy|xD+Fidu2$fuUTM|xHwkE8G0~`W@AixJWefM$00_zVar$OM%OQezp?V~ zX2Ieod<6%4%5tC_-i2dc5#w2OpFMTqvaCmIFz6aRf+9yj^d|DODp`3g7=-NddrQXX zg^xEfOS-`mp)To0$%VuC?&>M^PzP~BDRb-2aX&c$nb4syA$CwAZnxY#>UHr98VYiu z{ez9_+iWzLIWW$FA@cr;z)o?`0gh#paq%6OodYpk@8yymBkdbWfN`?kQ_vopMuM|V zbl@lNW|Ijljl?v48U#(l;CG6_EJqL+A%VMly8cj@ISD8XE~bD*%FR3vb9R~^J?gVH z>g*eaSYW(;Lnk&~Xnh79i-yN6-IfJa96-JFJ7_P!3PBqGFA@qRP~$pW2XBgsq5m>U zRh4;<*oLb7o$&v@u-cCJQgNh-ve;L|_ZHR}ZDMuhKX!)67e6mWk|)}muISI4gZv8) zL+ST7!olbq;7xlA!0<3^KDqoMEZsL=(5x87)hqT}$aIpP)n8xuEJpvb*R(0u*9bBX=i1DyX+ z4lbjR$AdBd&X8!zVB1iBF`pJwz~{nMydo&XPZlcz7dNhdKJ{#%oa4SeB?80n(oV!ge$8}q?}B??q^+j?-QnJ^y?1=P5U!9;16w+1FDa+Bs2 z$T-&^A()-kVk73*_sPovl>e^O#yGc80NY&TCX5Rn4yn4X-V>l5fx9X$e#V#C?*!mE z$K~%lcs@=Efn?? zeN}}697~Lj%3|H2D-E?9!4p3m3ZE^!vH z6Fj=MiRj93t?5N@f&rkZk8T5l^mfle(iptV!FLsA__mxGa;_BDpcPS{kJVC#3PoKd zW$Jk-#eT4ny}j5=E_yd}e@x&q!UA;eN zo~rC|9K9Irgveb!bf-4M$ev;jDdVZs3%oIK(fx&Hz@c+9{|Rc2^c&--$U6%2Y`Frz zP(^)#I08O>5sU~jrrpA8XD1&oFF#%hF58e3miSC6{nzB&wX`Fv_ArE=A%lD&MOA!Nu!{ z#TRE2=|GZ&1$HRH!z7o0(rR7ss0E69LaY70R2x)(jjLk@@yOV+EzC9`p2S~X;u~Ej z$JfX2&M(eyIk>c(CoxkH+kTm^TA-K|T+gJSr#-xM&d=CiOwI}Q|Fxti_3qC!+!Gds zFX+shgHFB2N0Es9HTDVDgIC!v3`!Vu&Jq8r;i+}uaOIWvPY%26o{V(4_)Qsv{O#6F zAb?$OzaW4|E@*z9NvftG>kt-CC( zO`3689u7p4zv#YO(liLB0%_*a*2)lVce<}8&q_eG^oMPbXc3pS8Az*Xv=ULjap{u^ zb=eH6)pV)^s`2&ADoF!_U~0ux*aC%?U>P(nrV|leo58f2K8-`Fq7N;?<+X)OjYFy; zwsY|h%b;ynsjeWt_k^s97-!+L+d`-&(NrJ~rXpRc^fykR)re|EXW5PrpNBYa22&Lw z-Y}%9Cdqw;<)vw2?Fm>V6*C9q{bmt zAyXpWY#FF^Pe9hDQ{$K_5Xxs79Sur{u4yW*1k||s%Mhhj8Bm0+iB+6`Z~G7{(rk|i zE9vRMeZxarMO|+kR3$smnYD#N&0(oB5f@2I$}ly(vAGhGCO5vbnM<5fhOFsLmpuWi zCY{&~gnJ%tdFgmIO|?4M8aHtYGq*H@u7bj~KX4UDH_s!}CX(#|R2@<+Qtp&tYufnP z8?;JNttkCZTPU|rbXE2uq69i^Ay>0_svN{e8GOnBHGU4?D4q%gf=A&!Cj3C7%wM)Q z**vlKhpj5%CNqbHnrI){Dk0nMxp-Bg8LnemtFS3edo}D0T2-<+v+0;G;fq{Pts>t3 z09Gd9IBYZh_Jgh}@dCWl-eU6Y4PONUPHdO7l=b!ot%^^VQxRFy+Z}rXR)J)X)OvVq zDb@Cet+MNY=Tj52Yc1WuYMgNU!&ZTCnIxobq1j$w)gf1u47GLiY7|!;g7Hv5Grq|4 za7bk!Yb7(=Ch_)$aZN&E3f6KDu67WzS&VBE(xOJ`lxYJIo5Qyr0hcXlEudd>@am9n zJ~ig96z!zrUUAkTXlYXI){%72NNXuN`F!7HAe%l(+&{)Tgam2iJhhsPdqP-;h(0@1 zXfX}<1F#++QhIMv!}T%SSv#q?H;ikTfcJs*kL4=H{^Vj+gpHr=Rzozlqfs2Oy1 zmg&a9)!MOP&fX6gp9N=08NjB!tM`kq4gsg2exaY>;^44#G~5@&waDm~`;N4Lg3Y0; zLp+mWWa^hnC;s~*Vl9-7J98B6m@vN+d+E+o)1DozfLVc@1__s6+iRY5jYFz(D(t%} zt~WMMr{*zLIh!MngPtWM#K^pDA=N%mRXQ|B>Ch&z)ik0CM2aj!YJva_;~^}$@Te(G zU)b3vx+>xw8o|scxSI=BAsM%YZdHM44F$PizaMfNaK7`sxLH&-qFOV%%Il(QXupKR zGp)e0$qQO97%#gNR5KR-J~6EzRCK4-gx^&e#AXbEb)YpB3X@}FAr+SyBU^^EoKj7r zSwWl!+Z}`5%iJq#NQg#BwkAfsQ9|;k0Bh;}A-$P6b$f)gf=mmuw#G>In(>%z55n4; z8?iQsNZtRgE`l|)6#OUv`C_aBS9jp5TURs~O6fXs3W-&pzrOm}kT zV5%Nd_z)EnuHZx95r8lhz7!=e0|e?I&#XlV#3-E$RQD8!^S+5U6h{FYzKNd2@x}oW ze~AN-c{z*&cpoCs@8{JOW7H%RmRnC*6Q}y&rGh94%*FZH)olq5c~!EvDmdN)huuO` zQS9^uo_D}Dp>X^0@*0DCQ$Xk+3XT!UlO_@cbgh{E6Rvid-P}|V-W;vdUadesL z%9B7IU4qO$lDnO=o12d}Ibj&}X(0xAQXG~KCn5jd6U*k=r?6`Rb1h?@W!WnT>|xL` zEdq2laj3;#0vA>#-<=95a)CYKcI=M_Hn+!vybl+PtP1v za3_N0c(YI-pv#A3gJQ6+%ZwivR@*Hj-prIeA?ZHxj;I3viOAv?cA0*!K zM765ESx#fQEU|1MmSPN=+!O{6>7N78mAZQdAgj9qP+=Ox$$oJHyhBzWF;;&gD+j4! zJl(3=+aA<9S$an^RQ;D`0q*Jj^|Js+^)F8ZtQVz-{yh7 z7KA>y4{U47l*pp~$fDNmm-J_a(p}!68){JN83bdxLwGtd{KG&0AP9eYbf?sV<^E4Y z_`G%}|8$6Tv91PC6V?phW#Bp+Rf`a7mw`DoQ5mqZ?5!fIsrQ;Fi@KJ4uO;3q$QPpC zPrmOa-ec_pQSQl$0;;Ga3TW`XE2?s$22GR_1sLavs-hc8 zE?=^rtP6l^SfbnOB}-&0nitd6M6p~|$cCs+Cd&+RWn|13-cOe)XfR(eRTWT4N4gKx zREcawaj||s(ZNA#q_GT60B9^zrl7KX!Svujkv=W%@3>)h^nqEX9^XxSWq%0 zWL2O6l1d&7Qbn>=&CB&u< z$|D8&N|#daQ%hkV#Ddbxyw5=8g%WF-oRsnk%GP9O(=uMgg{~{7-Y0vY;_911SRmn9 zp>7gpTEMHgq{~u2RUp+0u7yeAC#U7MiW-BaWZq{{U?C}0CP_;bC5zh2ywBEwg|t+e zlud{HCf!0(pY2MyD)ej>tW2_sBo(@-+o?$^qz#iUt`Ggp z>udu`h6-|u3SAXVm(1&I6>6@EB&E8@P|09S@vDeuuy16P+)Yj9} z3tlH}hc2#6X;LOdP`97&L{5L~W;rUY%XN{Xy6NFa&I}zDjokZ88>~>ejg+3GGoJVp zy#Ci8{#9a*>++Vj7xK}vHcFoFvc&)snG|cH zY*OGPk{8xQ*(6Km5-rxmx`x}y`iz-Oq}^him|v+TJiSperZYvh7-}LDQ~Oaa9GhE= zm4xuC@hq%M&t8+uWSpS0#TX0I5VaU@K}wsNXxDJ7+&~2>N+VMf@EYF58;JaDGWB|3 zyG`m(0d;~X##5V7M!9iX3^C45(_)C3u+FamX%s`NCe$WX`()DJ7Qp-S1#= zl-bACyEa5r=Efi1;$XFo^+%z?tH0V?=j9hHp_Q=5NMt2cy!}zp?+9 zLkz43XO9SxfGda?JX+K?=fSdCjWr!Pt^(H5sk#mBWdAHdOZ+J+{Ju3^jkF+i)s~Pd z{crkGn5m#?tASRFXt0yXWISSYguNkT%(-H^KhA7W9qz~OH(FuP_lR^%&6NQAdOqIU zvXyuaaP){bz|I|5I~;>8$NY)FOQ0e-KWg-e6WB8Yx6bJl7wu=fWj?b_!Er-jVxgA{ z!7G)16y0OQzbUYW0w`FZJZhje4dr+vp6@>RWGWVSY9Qw`ac!4_rE;prCzmTpKah7N z5GtYM2ZMV=iDC=?zXavN(_;lrO;me)At3fN5U$)1*u@~sx#9SkST-43HtyaU+|5e( zKXQRa=d)i&9f|(%8hLyg27k`CWEO%V3F@8j;?4x}Kroi45Fy~PR-)UbHdcN!1A}1KZ+#~(Zu+4SIJ!OlaDMfn4BEO;H`n*?Y8kYIYgZ*? zeNmFujR?A-S69pMLRT<#A!3a0?;A$DbGUu(9!7TFIY8k|Y z%T~*fm3V8l3}xO?tDOLIK3Xk@8MmvJp)2;dYAeXJvsKGb7Wi4U3}Iy#tG41U_pWLy z;&R8TwjxgYRJ8(Q6?du@0j=ms)gr_zov2!bHRnIoB5ajhr&@%!*lVgq081REDk4+{ z>)IS2$9SN?QyvrpEy>bQ3`8yPdf66`;=BwcIF$UM;u0KDu>BGHb74)W@nYDNNBZAp z>IH_ZR_cX~k?lY40>*rhYUSDj6#@)KQ)Fk+@MsDYIDu!EuKA7x^mg%>(SV0VpFc%H zq=FfCI1xM1E=157&Cp@*gnunYtn_iOJr$f>Z4xrmQ94``==j7kJ2&u8G1kg%HLOyR zIsUN+=w5fj_TLgg)T8k7J%R7c6;AYl*i$Mxni2CEj~^K~iN}jC7cj#U&B;nn7LsLi z&8kC5s(XHv^vvXQ=JPeq7!p3hY6V2MV3H7z&5EzS#pY1x3XD!dK%S{^MZXH4@oNd5 z0_TPLc+O9SOF&_`woO@5VT@LbL917{uj5H1mkyP@47oTthehUr`55t^GLMirKB_f; zxzL%TBl3BuQ67zGLrf8v%lN?pOG2bQ(HD1e>V&xRXXuYCDiElDC`f<)9n0&)f?-1|x>q-VMVBj@Ok2dFDTQFP!u_S~ zfw=`~B~Y7q0rNKQ4|HK#sGA^=yp$?;R*f?hQlGhrgO+kV|9E_T&TNXAVE~-T%(h=r zSF9F45+1oW7Vm@637Og9ee|>hXRmx6wOq_*5Wa}x*<=Fnj>jP9h!MVf3F*7p1W_HG zW(zS#<70-^8ryUzfCMa*db?`-9lQOtal0(jNSyoef|93Gupy1m_1_cx_a$L)M}!uN zN)LtAHU6!uce`?z6dHj5chCY=hc9?nc#uk#X=WHlw;JbHu%k~<`)7GZEHD~Oi@RUr zwnF!iCzvY;`?)g^fi<1k+_gRlMOGp#Wl*~1`xwWOu znU`UB8o%V3o`Bue{3Tf4yk72Loo3B>8lUs%1F!qSHHdvlvIxS|OU#)BG(t-o^CLy_ zX#@g_Unpx4wki3>acR;(FTvF>KLf}OnFCL*EO$O!87z+bpY&x!!;fBQO|5?reg$Ge z?4U$CZL{%!+DyV6&qDWxvQ1_rT!7~f>?&0WghBZpbIG_|!^}YWaY{Y>8NV|E@<{vz z+IQ{X2*r|k=>-N`U8#BO`{adXZ5s-N-&C%sv6+8mio6jL*Q1DPYx^K&@5EmlI05!3%ciSY1F*e7_0Kt8cN$BUaUc*koD zws#&YQ*3Sqd|`LJG3G91<2fM) zkkfXB1H8Td6;#kgf%CY4ARpq+JIj0|m$A`c4N@#_OFhs~7=64v{;!jdS66(^0WL5? zTOdw!40VV6eFsnPpt3uhb9aFY63=iQM--yD0jjH1vRJ80uH)35YEyzcffT2jY7FUM zIOz>1li`F8b$O_h;Xti6`Lsd#K}A*r#Dt2}jFiM<+lD0o#9sy&iJyzkZ2AKw-my;| zvSbb2ErL_ahwkqYgU5D&a7paTgXWtD_WbCZcxiCZc-zeTE>Z_z)l;PsO=X7=f+>7H zfw>ZmfzmC}N_NSGuyT_m2)%ha02?p><~#QD6XFrW3SV$W^z?r7oPk(weQU}jJS?eu znjJYDmzHf?LD4PQ2ug)DW<4mgfU*&K4+^Di&n=H7Yw-@jEZBwr0;&kEqrDqubEw6T zc+AvlkfN#=N=X3@Jk}fv9s|G2785oNUod!|`E)Jeh3&KqlulS%u-f~{re$62mk0}8 zMZNtBD-qal1%91eIR7a8pQRC~;1LF@67hI3cqC8rbH?|V7e5?dosNDu{?D`ILA%YW zM=gh+`sV{A0HUrau?R0K5oNb*n4?gZ75(Tj=R_{7uH)3p<<{knK;RL-3nHq)CKGFC zvC^`mc9|PG4Ehqu11&SFgSQ-Q17Vx;Ubv2hXsEn_R~ZJ(Yi9acj2vK68c$#$Sm?C& zwo1L1U`&DP7rYrMCzq~?ArjuAo$+=uwTF*!skcHv|30I*+f^uLpnn5t!+Cz;K3L9Y zpLkxro9Ia|(6mC~%e>}8ezbBZq+LOOF2SzK8)CoW zf9FoTS7*18AMbxhJJU#0#u1GE5&7Q=!+9z$%;Y7w6X7j%TYVet8t`7CPxQ&z_3hc| zzVWm3s*t(9yG*ne_COY;wss&rC0`fy7oHb0hkKE~J`PIH$Bd_TF*CKaC&)^8ec`o@ zKr#%$>*S&6I*w;sVTt%@8PDJ;yT=sKcy(pVRRUreE^UVz!KoE^u@fj?kIYyd@Tq6N zY^DyVn<_J_)B#RZjJU@Kd7<5}MpW0(*sEf-0q#{a1nks8?EG|{1A(u6{AHX?%p1Ix z8hoORA~pC1t10W1-dL{|oH5rIH&hoZ8OwEgkh=7B_RWg|-pPYR`0il>aB*~z!(}mM z4vRyD9hSvLI$RzgB>5U|*Bs^oeH|_d9CVnw?|HZ^l+R@rJ6K!U$~~Fi zC`{iHTfSFYa$dq6B3r*#yEF9FRd7!A;Kea2*tUQki3M6f%b-4rFn^~92+ScW< z@#MH)ZE6-@g=?r&WPyT34PGgU6?Wxi>q2k-etv=ek0tHvOSfdoFTG?ID1M0_mr*Y6 zxz8g(k#EkoV@gg~c_fhPmlRPIf<+m5Bi-TIu&ZfAGJ8N;8}9^} zn2~|8JvY8E+JPeJ0ttl!SrL0ZT^;Cpzb{K&P46EHJw=obg(FGqNs^?>lBy5-JzY|I zg+7j5QIj{mWeMnoUtD-@GH2iiGA&`_!ItAqC@X_a3`DJ0eoel_gF4}Jas#~RPBZ=h z@f`z7%}j+$gH7y*;i?1GN)Hi~Y8U%t$5+W-7^ai3@D^;!fs$m>wefdkIHhh`oN rmvV+K?@G}uI$99shCx%Ln%A^;8BYcA6o`~v#Z&qJN>AHPA@czM@nrG> diff --git a/run/logs/debug-3.log.gz b/run/logs/debug-3.log.gz index 054d6570d01a176671ac6dc1524a5469fcb43f40..1709df33858ca8ddc368d78f06b1a19b1044e13b 100644 GIT binary patch literal 14957 zcmV-zI+Dd7iwFP!00000|LuKybK^LY=ifIG_Z>KMHBs&uo8n8 z+0D;G;nFqZH-bNN9Lsqa3dDa1gfB-&{KvQOm4=7H#D%|xZBZwj1=Kg`^PzBb^i2K0 za-Bl~>b*Zb`w5?sAfVy7W72PjLU;ZkIJNvk;beIC34R^id9F?TJ8^3Gl!UH-_uv!L zrgsJbEWsUX>^^$Ne~uMBkSS%=i1=+XwMAC&rx=9R6ID@)-%XAA3t3boQBM8ngYV9~ zL&2e;IJF#V_+%2Y7mJ^J^WOu_RY{i>QI<7LR(}59fA~@`7JW(H(pbonD2ao=M1QbG z(KJj&ny8Wxgv1ZoK>b3Vi4cu|AorlG+!Mwx!Wj&c7f|8YbiL4;P5&x<90{K-$8^62 zf-J)T8;=5+n!2|5HMCUHDNT(#b$a&h(}(4~8d3k*GUyM)fsxDh@Vz^8Oo9JG2zW{0 zG$1zTE99vJn;p)_g+Im74`~qMFF6CkFZq|4Bj;7&CzFI^{sJpV{BZF#RiY3_K^^=v zHjsj`Xg>ic(`phG_U4iJ4h@2$E=I-5xUDBw8kj4n^OATTuuO%~aR^ZTVKF*G;Y;8@ zgf7g65*!0btHB`G_UyrOD)5KL3I@>r)cR&Qhx8f9I-UiGfj!ZFnONU|-0t`nYJ~TX zu5D8P-lP-DA-44odI+*Cw5If)IR-6!hY2eYwZgLpY4 z2J|%uec}W#4pS%_)nHmdXxNlE)GzD4B30`CZCp7CVZuct5fl^R)Cvq27yw5iO#N;? zFlAu+SulA4C!%z-U1CD@;`_^sYZ5*Nos*9@XV5f$5k4GWo}HfG2v(34*jGSI!**xp z-KlHLrZ6PIjXNdI9rpKrYTOyK0GQ?8^+9~o=^c=<4C!DSNP%vnts!Nvb_)08_)<03c%QR?Ul$eIQVq>!V(sK@u}q1VLcbXt;e~m3=m!?Ea)! z{$T5M*U?yYk4%PGgmPvC89G<(=Nfmh!o5!0SUnQfpSOB>f%UIqur=0)d^;1?!=&*N z_i(t(jA;PVF;nVp6M|rYtPhB^zvw!E0^#M0hBPq8y4h<0))^|Y?`A;)jSgtKf8qZ| zfathSyV_v9J3tJ~4Oeqf;|zrpuIQFDsprg%^=WVd8Ue6Of&^VrE?p$_oHDRpXWwJN z(e=6D5#xzGP{EpdHbu3C3+5ONv!wsR|BZ&jRK{w5JZT(Z;8DYxSOy2!t=#<9MRmET z+@$f61@naIh%;vY;1&jS{Sgb|cc@~i5rl|(jV6Jb zbaCzHmKatV6}n6O5H&A+Nyzn|g|8$Kf*F&llbLP52xHep&Cha#d6x`Zgx}0;dV+>E z=kdSEMDFXFRt!c{vI^@Q%gA$`2YT&(r9L!sdH!GLSHfsE4qjkRPK9Wx{azCLVpkZs zGvA=!&m4F(?3@fc%uwktL!~p{XYBAj#SY(R>`WQd;7I9AEcREFJ1_;sfHmy#hC3V& zYo;?WWkWJlqDmT}x<2Sp!_;~`Mea|CE|2?NX*}unCI9hIkwy%sgRC0?S}(9&Tg{ zrscy7aDA(6rPkD~Y*FoeyK-wto7t}18r{W+ed#T+m&l#FPTp99)%I|gYWwdW%@dVVZ?pkR+dmu_zVOHier zBwP?LbUoq2^{3AD$vN$eMrTUq^h%WCUv~#Gth0yl*Av(G++}NWSE{>v4_%)hHsapN zg%yPHd`xW)B8?2!_2E|}jL#{-@DI^RqC|{$<+>_D7EbJokVS*rw->H~yoLvB2gskW z(x4~C(3#oxcZUa4@=P5-I1b_`^qXh9xUCqQ1~2onF{1cEyf!lj4G&a1{-Ug#b=8up z-8`ipI*&NUORBd&693$Rf0lw$>Z%JN^R)}a6HpFZhg-ZER`>vRah4J2H^MfuUGvX> z-caQo&n(-#^J&0#(}Fuh|JSY8&&CvLM+Y|61m|VyJeN^2w>z{sCHeRUGtaYe0nQTj z%Rd+0{{G7j$eMG8+!8H+{#S`C=*ydmCbSDsDeYW*JU%_Y`Y@;BGbnYOgt(8&70x5B znjUeT^&WK_YTmn(iDiHecptq5G2l);+#wadT42BZa}MWU0uw1mv0Mgai2tTU1L`ZA z$^h)%HSu9c5*<8&mT}RFS1Hy(SgA}4v~^n5p>@8|d^g`{zRROyg9r$1;yla0IfNcY?4wVowzpei2*wA*r8n8^4&{iH#RNB|Nlt>2cbtP$_o1|~_WTUU@ z+F0)Q$+)MPTDF?XY`CCc``NH5Qq^a}x;wn>W5cOYLRMWGsCr+a15Gte!x)qCq$hRN zfhrHo-b9&DT{FiD?Imic&V2pX!+g6XP;HjW-xPRtEQb#KpkHOksgCtA9q43CRH`cK zL^TF-pZ4iQCj(uT6|=9HJ)M~G&nq*V_KFtVU6H0Xn|15%KIPKLd{zer831k?{Cw}~_%#(WS3d&a!0;_E6!2g)E*x|+ zr9t|)0lLL~lBqkX3V-p7{dR$v=KUC+7$CkX4M6?}`|SY70HQZOZ(o5wSANIvOM&l+ zrEB16j7L{vYMkpW;amjk+apqFz#9VlzmI0{CFO>k~nimq<`SMHj3{+i%Z%t5< zS{jl4-va~5BTsJ4q5Oz)BFhdf?Md`}ne3G+LdI2~A&jrmZOI+<_YeB{A3 zZ+W<2k%ro1KPYRf?tO(tTUkjjGui3Wzt3PbWdc$-fM>9pp-g!>6r|{yG%55&WN32X zG}cBV<5wTd$t6M-rfG4`V~QFk^yr{1ihZW`?ITSjCl0{Z>ZMvo@XGNy0@|k z#vR1AS&NXRT15fGE!=41MnV-%tI~Q@pBM!bIddN1J!=#wlV~>%Ho~S}J;PD~1w*SM z7FJ=2G1yU5jYJfMvSzDjRa+v#DqB{;P1P#9oLeV@B5i~E%gIpHd`39EDjMAOsnDyU zOKe7kiWWPdQS-t1njnHE)s*Zb=mgD3$tbWzGCJH6?1^G=KUi3kL`2Fd%%ni=auViulsyZK8oR6*_(9YsMxEdG1m0uXgMjY&NDYSJCWfz zvgpHVf$*y$0%{7C&F)`E&r8?KkWMlG1La==rwkvnzM35>F>t>+|#l z*S?ER2|Oe(2CJqA-?2tgDGk1qW;qyM)=X(o=qFnlV-&+WB*9bAHkdUsij1fM4E7`O zZz31}MR3qUKhot5uaiBbK7xMUJ!+#&A=^bzD=WyZJHI3Y$ab6Fc=j%XQ!)kmd4IL- zOaZnAloDZCdZ2Bv|GKSjhxK>X_vLKAy-wF+`Q^=)=WN;myK^X|tiF}}QTbNWx7XI7 z#CCXoV;I|E{@qh!`7GE08EQ?3joaVByvSf$V}e)?4m|+zXFM!FyT7PKQ)Ht~&a2*o z2DnRzYpupj!dW3L%M;vfA4*jQoqMxK;d%;fGd}uD6PfTL%!uXI=37RLRF<8$oX6ok zzvC->IXa5&Cmv#AtozfmpALniBTOB3YWatPh~F@{c^I(o>%^epKc820?wIu3q0lWO zNWYw4&U_!&EliQiF0-J?Ex5DLn}vyN27<_bAi|5XCUORGf)C<^NbC_`DcP`}InS2w zI!L!Kr)TevKV94wc0m!l`FkUlD}u=%zKFBXvPH`YsqYZHxbyIU7kAF12Ny2hKz>hH zM-UEAmo&O~ulF5@ehG|1GSjNA_jRQ^DM}QqsG^+Tjad$n_%N%H3?N_jfVanT zPP4o(+9K~ug-a&|dt~oOKoeVJiJK@%Y(k|&v?8>cs47Yu(3beumtgL;g2KiA;l+?O zmJFm-kkek>MXAK3|Q&Sbw_s!BL5cxDuo%B3Pk+Dd;Itgqqguk3Ua?MEGohn z0aNQAY`Y%gI=WASBI}?6*|rtHn(GuMIR!+z+=>}hc!FMnn8o&PC*t_Ps~CB&9qU95 zPru@R4D=R?w&H{5q7L*#NowOjL~aAckY$#PxGj*Ahr7jim2STkcuTH{7K3hys=WG= zZwdTCDwPTvL=oYpfC}Z-S9Y!q(Q}!f zS4+`R$3U;*X^RQS_2T>R#iMm0*4&8OO#I!y0-zr8L(8yft3d)Y&gx=oO5k|Ja&RHO ze~>Q9=caQf7+y!D2;VTb|sxv#9>R-hz=UyWyBYbgnKci8Hoj&3#H$7k!U1{>Wk z@b5j}ouJ!8{nfiMY2<=5x_2k{?9iMB>k+moJ$wolng4P>W$8TELfVv49#AK6{dPk% z9x2kXt@wx$TF;;kwG|&T=yAWoAb9b*^)M$CL+#Wa?wUK>>r42@ne%jy3(+iSE53tlNeyz#gIP!^WTd+3Wdp0p%3+B+L^xllGO1%!uY>TfZN^O0aP`v5)Q}JG( zz}yO{Sq!7gVy4_+B0^u_FbZ>bi#*_j=n>;75Tm9r>|5-8797PhdVZQxU*wtl5lohY^N>~?sZbztgJNuO{Yp0JzlhK!o5E$ zsyvYY*x|mH2%UfOT{nCy0JK1uIrN*yecy4Ros!>)y&@L>8Rux#dIJ@v&9ST^%4{i{C|MoEqyi(D9u!m?4_sU%`h|l@gWg`>d^~+yLOPcJypVKh zF6Hjf;^q9*1E>>4gv7D(hr%f>%m~pJduo0rRBq!PMw`S$G1k~8=%jq{`Nt0z^W-op zaGETztV%**o|wKkU>7XY%`ZJ2LRSpFIGoFUCz}ZXo?QvZu>xR42|W~aO)X62GZ3YM zuCK^RaOs+#UH|ElIA~}l5}0t8W?7Hw;U3l=@ri9y8`GK`Md=JmpfKm^T2P`?Ja|_2 z{_+A7@3H$7JY&y1Q$jvj78J&d-SdkvJXkw=&e|Ke*$PL(1FmrKZw*E(FmsZHyFEfw zO&*ugK--K4$!;YRw#7$q*`CMA3D{VzU^e(+32NrQ^cx?!O=+J$_J3A2?UC9G9Tfs1L_}1%eoLJyc79X#v)O+w?zsqyonb*6i|U+nY5z6 zE9*Su6(loliE1?D+wz0oW#`d@pOYZjf#R%c&ENY5E21oGnyl1? zRiwWaE@_?jA8$THJ~W&|r%~b*sP8Z{a}W8gv6Fbr*`+(|K{d2I`R6)l=WNFya?I@d zZ}PG5%uyy|xD+Fidu2$fuUTM|xHwkE8G0~`W@AixJWefM$00_zVar$OM%OQezp?V~ zX2Ieod<6%4%5tC_-i2dc5#w2OpFMTqvaCmIFz6aRf+9yj^d|DODp`3g7=-NddrQXX zg^xEfOS-`mp)To0$%VuC?&>M^PzP~BDRb-2aX&c$nb4syA$CwAZnxY#>UHr98VYiu z{ez9_+iWzLIWW$FA@cr;z)o?`0gh#paq%6OodYpk@8yymBkdbWfN`?kQ_vopMuM|V zbl@lNW|Ijljl?v48U#(l;CG6_EJqL+A%VMly8cj@ISD8XE~bD*%FR3vb9R~^J?gVH z>g*eaSYW(;Lnk&~Xnh79i-yN6-IfJa96-JFJ7_P!3PBqGFA@qRP~$pW2XBgsq5m>U zRh4;<*oLb7o$&v@u-cCJQgNh-ve;L|_ZHR}ZDMuhKX!)67e6mWk|)}muISI4gZv8) zL+ST7!olbq;7xlA!0<3^KDqoMEZsL=(5x87)hqT}$aIpP)n8xuEJpvb*R(0u*9bBX=i1DyX+ z4lbjR$AdBd&X8!zVB1iBF`pJwz~{nMydo&XPZlcz7dNhdKJ{#%oa4SeB?80n(oV!ge$8}q?}B??q^+j?-QnJ^y?1=P5U!9;16w+1FDa+Bs2 z$T-&^A()-kVk73*_sPovl>e^O#yGc80NY&TCX5Rn4yn4X-V>l5fx9X$e#V#C?*!mE z$K~%lcs@=Efn?? zeN}}697~Lj%3|H2D-E?9!4p3m3ZE^!vH z6Fj=MiRj93t?5N@f&rkZk8T5l^mfle(iptV!FLsA__mxGa;_BDpcPS{kJVC#3PoKd zW$Jk-#eT4ny}j5=E_yd}e@x&q!UA;eN zo~rC|9K9Irgveb!bf-4M$ev;jDdVZs3%oIK(fx&Hz@c+9{|Rc2^c&--$U6%2Y`Frz zP(^)#I08O>5sU~jrrpA8XD1&oFF#%hF58e3miSC6{nzB&wX`Fv_ArE=A%lD&MOA!Nu!{ z#TRE2=|GZ&1$HRH!z7o0(rR7ss0E69LaY70R2x)(jjLk@@yOV+EzC9`p2S~X;u~Ej z$JfX2&M(eyIk>c(CoxkH+kTm^TA-K|T+gJSr#-xM&d=CiOwI}Q|Fxti_3qC!+!Gds zFX+shgHFB2N0Es9HTDVDgIC!v3`!Vu&Jq8r;i+}uaOIWvPY%26o{V(4_)Qsv{O#6F zAb?$OzaW4|E@*z9NvftG>kt-CC( zO`3689u7p4zv#YO(liLB0%_*a*2)lVce<}8&q_eG^oMPbXc3pS8Az*Xv=ULjap{u^ zb=eH6)pV)^s`2&ADoF!_U~0ux*aC%?U>P(nrV|leo58f2K8-`Fq7N;?<+X)OjYFy; zwsY|h%b;ynsjeWt_k^s97-!+L+d`-&(NrJ~rXpRc^fykR)re|EXW5PrpNBYa22&Lw z-Y}%9Cdqw;<)vw2?Fm>V6*C9q{bmt zAyXpWY#FF^Pe9hDQ{$K_5Xxs79Sur{u4yW*1k||s%Mhhj8Bm0+iB+6`Z~G7{(rk|i zE9vRMeZxarMO|+kR3$smnYD#N&0(oB5f@2I$}ly(vAGhGCO5vbnM<5fhOFsLmpuWi zCY{&~gnJ%tdFgmIO|?4M8aHtYGq*H@u7bj~KX4UDH_s!}CX(#|R2@<+Qtp&tYufnP z8?;JNttkCZTPU|rbXE2uq69i^Ay>0_svN{e8GOnBHGU4?D4q%gf=A&!Cj3C7%wM)Q z**vlKhpj5%CNqbHnrI){Dk0nMxp-Bg8LnemtFS3edo}D0T2-<+v+0;G;fq{Pts>t3 z09Gd9IBYZh_Jgh}@dCWl-eU6Y4PONUPHdO7l=b!ot%^^VQxRFy+Z}rXR)J)X)OvVq zDb@Cet+MNY=Tj52Yc1WuYMgNU!&ZTCnIxobq1j$w)gf1u47GLiY7|!;g7Hv5Grq|4 za7bk!Yb7(=Ch_)$aZN&E3f6KDu67WzS&VBE(xOJ`lxYJIo5Qyr0hcXlEudd>@am9n zJ~ig96z!zrUUAkTXlYXI){%72NNXuN`F!7HAe%l(+&{)Tgam2iJhhsPdqP-;h(0@1 zXfX}<1F#++QhIMv!}T%SSv#q?H;ikTfcJs*kL4=H{^Vj+gpHr=Rzozlqfs2Oy1 zmg&a9)!MOP&fX6gp9N=08NjB!tM`kq4gsg2exaY>;^44#G~5@&waDm~`;N4Lg3Y0; zLp+mWWa^hnC;s~*Vl9-7J98B6m@vN+d+E+o)1DozfLVc@1__s6+iRY5jYFz(D(t%} zt~WMMr{*zLIh!MngPtWM#K^pDA=N%mRXQ|B>Ch&z)ik0CM2aj!YJva_;~^}$@Te(G zU)b3vx+>xw8o|scxSI=BAsM%YZdHM44F$PizaMfNaK7`sxLH&-qFOV%%Il(QXupKR zGp)e0$qQO97%#gNR5KR-J~6EzRCK4-gx^&e#AXbEb)YpB3X@}FAr+SyBU^^EoKj7r zSwWl!+Z}`5%iJq#NQg#BwkAfsQ9|;k0Bh;}A-$P6b$f)gf=mmuw#G>In(>%z55n4; z8?iQsNZtRgE`l|)6#OUv`C_aBS9jp5TURs~O6fXs3W-&pzrOm}kT zV5%Nd_z)EnuHZx95r8lhz7!=e0|e?I&#XlV#3-E$RQD8!^S+5U6h{FYzKNd2@x}oW ze~AN-c{z*&cpoCs@8{JOW7H%RmRnC*6Q}y&rGh94%*FZH)olq5c~!EvDmdN)huuO` zQS9^uo_D}Dp>X^0@*0DCQ$Xk+3XT!UlO_@cbgh{E6Rvid-P}|V-W;vdUadesL z%9B7IU4qO$lDnO=o12d}Ibj&}X(0xAQXG~KCn5jd6U*k=r?6`Rb1h?@W!WnT>|xL` zEdq2laj3;#0vA>#-<=95a)CYKcI=M_Hn+!vybl+PtP1v za3_N0c(YI-pv#A3gJQ6+%ZwivR@*Hj-prIeA?ZHxj;I3viOAv?cA0*!K zM765ESx#fQEU|1MmSPN=+!O{6>7N78mAZQdAgj9qP+=Ox$$oJHyhBzWF;;&gD+j4! zJl(3=+aA<9S$an^RQ;D`0q*Jj^|Js+^)F8ZtQVz-{yh7 z7KA>y4{U47l*pp~$fDNmm-J_a(p}!68){JN83bdxLwGtd{KG&0AP9eYbf?sV<^E4Y z_`G%}|8$6Tv91PC6V?phW#Bp+Rf`a7mw`DoQ5mqZ?5!fIsrQ;Fi@KJ4uO;3q$QPpC zPrmOa-ec_pQSQl$0;;Ga3TW`XE2?s$22GR_1sLavs-hc8 zE?=^rtP6l^SfbnOB}-&0nitd6M6p~|$cCs+Cd&+RWn|13-cOe)XfR(eRTWT4N4gKx zREcawaj||s(ZNA#q_GT60B9^zrl7KX!Svujkv=W%@3>)h^nqEX9^XxSWq%0 zWL2O6l1d&7Qbn>=&CB&u< z$|D8&N|#daQ%hkV#Ddbxyw5=8g%WF-oRsnk%GP9O(=uMgg{~{7-Y0vY;_911SRmn9 zp>7gpTEMHgq{~u2RUp+0u7yeAC#U7MiW-BaWZq{{U?C}0CP_;bC5zh2ywBEwg|t+e zlud{HCf!0(pY2MyD)ej>tW2_sBo(@-+o?$^qz#iUt`Ggp z>udu`h6-|u3SAXVm(1&I6>6@EB&E8@P|09S@vDeuuy16P+)Yj9} z3tlH}hc2#6X;LOdP`97&L{5L~W;rUY%XN{Xy6NFa&I}zDjokZ88>~>ejg+3GGoJVp zy#Ci8{#9a*>++Vj7xK}vHcFoFvc&)snG|cH zY*OGPk{8xQ*(6Km5-rxmx`x}y`iz-Oq}^him|v+TJiSperZYvh7-}LDQ~Oaa9GhE= zm4xuC@hq%M&t8+uWSpS0#TX0I5VaU@K}wsNXxDJ7+&~2>N+VMf@EYF58;JaDGWB|3 zyG`m(0d;~X##5V7M!9iX3^C45(_)C3u+FamX%s`NCe$WX`()DJ7Qp-S1#= zl-bACyEa5r=Efi1;$XFo^+%z?tH0V?=j9hHp_Q=5NMt2cy!}zp?+9 zLkz43XO9SxfGda?JX+K?=fSdCjWr!Pt^(H5sk#mBWdAHdOZ+J+{Ju3^jkF+i)s~Pd z{crkGn5m#?tASRFXt0yXWISSYguNkT%(-H^KhA7W9qz~OH(FuP_lR^%&6NQAdOqIU zvXyuaaP){bz|I|5I~;>8$NY)FOQ0e-KWg-e6WB8Yx6bJl7wu=fWj?b_!Er-jVxgA{ z!7G)16y0OQzbUYW0w`FZJZhje4dr+vp6@>RWGWVSY9Qw`ac!4_rE;prCzmTpKah7N z5GtYM2ZMV=iDC=?zXavN(_;lrO;me)At3fN5U$)1*u@~sx#9SkST-43HtyaU+|5e( zKXQRa=d)i&9f|(%8hLyg27k`CWEO%V3F@8j;?4x}Kroi45Fy~PR-)UbHdcN!1A}1KZ+#~(Zu+4SIJ!OlaDMfn4BEO;H`n*?Y8kYIYgZ*? zeNmFujR?A-S69pMLRT<#A!3a0?;A$DbGUu(9!7TFIY8k|Y z%T~*fm3V8l3}xO?tDOLIK3Xk@8MmvJp)2;dYAeXJvsKGb7Wi4U3}Iy#tG41U_pWLy z;&R8TwjxgYRJ8(Q6?du@0j=ms)gr_zov2!bHRnIoB5ajhr&@%!*lVgq081REDk4+{ z>)IS2$9SN?QyvrpEy>bQ3`8yPdf66`;=BwcIF$UM;u0KDu>BGHb74)W@nYDNNBZAp z>IH_ZR_cX~k?lY40>*rhYUSDj6#@)KQ)Fk+@MsDYIDu!EuKA7x^mg%>(SV0VpFc%H zq=FfCI1xM1E=157&Cp@*gnunYtn_iOJr$f>Z4xrmQ94``==j7kJ2&u8G1kg%HLOyR zIsUN+=w5fj_TLgg)T8k7J%R7c6;AYl*i$Mxni2CEj~^K~iN}jC7cj#U&B;nn7LsLi z&8kC5s(XHv^vvXQ=JPeq7!p3hY6V2MV3H7z&5EzS#pY1x3XD!dK%S{^MZXH4@oNd5 z0_TPLc+O9SOF&_`woO@5VT@LbL917{uj5H1mkyP@47oTthehUr`55t^GLMirKB_f; zxzL%TBl3BuQ67zGLrf8v%lN?pOG2bQ(HD1e>V&xRXXuYCDiElDC`f<)9n0&)f?-1|x>q-VMVBj@Ok2dFDTQFP!u_S~ zfw=`~B~Y7q0rNKQ4|HK#sGA^=yp$?;R*f?hQlGhrgO+kV|9E_T&TNXAVE~-T%(h=r zSF9F45+1oW7Vm@637Og9ee|>hXRmx6wOq_*5Wa}x*<=Fnj>jP9h!MVf3F*7p1W_HG zW(zS#<70-^8ryUzfCMa*db?`-9lQOtal0(jNSyoef|93Gupy1m_1_cx_a$L)M}!uN zN)LtAHU6!uce`?z6dHj5chCY=hc9?nc#uk#X=WHlw;JbHu%k~<`)7GZEHD~Oi@RUr zwnF!iCzvY;`?)g^fi<1k+_gRlMOGp#Wl*~1`xwWOu znU`UB8o%V3o`Bue{3Tf4yk72Loo3B>8lUs%1F!qSHHdvlvIxS|OU#)BG(t-o^CLy_ zX#@g_Unpx4wki3>acR;(FTvF>KLf}OnFCL*EO$O!87z+bpY&x!!;fBQO|5?reg$Ge z?4U$CZL{%!+DyV6&qDWxvQ1_rT!7~f>?&0WghBZpbIG_|!^}YWaY{Y>8NV|E@<{vz z+IQ{X2*r|k=>-N`U8#BO`{adXZ5s-N-&C%sv6+8mio6jL*Q1DPYx^K&@5EmlI05!3%ciSY1F*e7_0Kt8cN$BUaUc*koD zws#&YQ*3Sqd|`LJG3G91<2fM) zkkfXB1H8Td6;#kgf%CY4ARpq+JIj0|m$A`c4N@#_OFhs~7=64v{;!jdS66(^0WL5? zTOdw!40VV6eFsnPpt3uhb9aFY63=iQM--yD0jjH1vRJ80uH)35YEyzcffT2jY7FUM zIOz>1li`F8b$O_h;Xti6`Lsd#K}A*r#Dt2}jFiM<+lD0o#9sy&iJyzkZ2AKw-my;| zvSbb2ErL_ahwkqYgU5D&a7paTgXWtD_WbCZcxiCZc-zeTE>Z_z)l;PsO=X7=f+>7H zfw>ZmfzmC}N_NSGuyT_m2)%ha02?p><~#QD6XFrW3SV$W^z?r7oPk(weQU}jJS?eu znjJYDmzHf?LD4PQ2ug)DW<4mgfU*&K4+^Di&n=H7Yw-@jEZBwr0;&kEqrDqubEw6T zc+AvlkfN#=N=X3@Jk}fv9s|G2785oNUod!|`E)Jeh3&KqlulS%u-f~{re$62mk0}8 zMZNtBD-qal1%91eIR7a8pQRC~;1LF@67hI3cqC8rbH?|V7e5?dosNDu{?D`ILA%YW zM=gh+`sV{A0HUrau?R0K5oNb*n4?gZ75(Tj=R_{7uH)3p<<{knK;RL-3nHq)CKGFC zvC^`mc9|PG4Ehqu11&SFgSQ-Q17Vx;Ubv2hXsEn_R~ZJ(Yi9acj2vK68c$#$Sm?C& zwo1L1U`&DP7rYrMCzq~?ArjuAo$+=uwTF*!skcHv|30I*+f^uLpnn5t!+Cz;K3L9Y zpLkxro9Ia|(6mC~%e>}8ezbBZq+LOOF2SzK8)CoW zf9FoTS7*18AMbxhJJU#0#u1GE5&7Q=!+9z$%;Y7w6X7j%TYVet8t`7CPxQ&z_3hc| zzVWm3s*t(9yG*ne_COY;wss&rC0`fy7oHb0hkKE~J`PIH$Bd_TF*CKaC&)^8ec`o@ zKr#%$>*S&6I*w;sVTt%@8PDJ;yT=sKcy(pVRRUreE^UVz!KoE^u@fj?kIYyd@Tq6N zY^DyVn<_J_)B#RZjJU@Kd7<5}MpW0(*sEf-0q#{a1nks8?EG|{1A(u6{AHX?%p1Ix z8hoORA~pC1t10W1-dL{|oH5rIH&hoZ8OwEgkh=7B_RWg|-pPYR`0il>aB*~z!(}mM z4vRyD9hSvLI$RzgB>5U|*Bs^oeH|_d9CVnw?|HZ^l+R@rJ6K!U$~~Fi zC`{iHTfSFYa$dq6B3r*#yEF9FRd7!A;Kea2*tUQki3M6f%b-4rFn^~92+ScW< z@#MH)ZE6-@g=?r&WPyT34PGgU6?Wxi>q2k-etv=ek0tHvOSfdoFTG?ID1M0_mr*Y6 zxz8g(k#EkoV@gg~c_fhPmlRPIf<+m5Bi-TIu&ZfAGJ8N;8}9^} zn2~|8JvY8E+JPeJ0ttl!SrL0ZT^;Cpzb{K&P46EHJw=obg(FGqNs^?>lBy5-JzY|I zg+7j5QIj{mWeMnoUtD-@GH2iiGA&`_!ItAqC@X_a3`DJ0eoel_gF4}Jas#~RPBZ=h z@f`z7%}j+$gH7y*;i?1GN)Hi~Y8U%t$5+W-7^ai3@D^;!fs$m>wefdkIHhh`oN rmvV+K?@G}uI$99shCx%Ln%A^;8BYcA6o`~v#Z&qJN>AHPA@czM@nrG> literal 16870 zcmV)WK(4aBn14>Xf(QkM)zm6d&G35tMrJh zj^*K4?n;Ah_eb)1MoqhOa{lfEeAeAB(#$b@{KukmTfb+XbQ*r>oP9VtJ@|Nj_}%g4 zk7IJ?7||Qz&28JX@5Y3BcRu;Nzb}4#4PRNXN2U(^)h(0R!Q5w_!5;U>{{AELeABV_ z2-JIfbo>K8qrT6A6Wd^4_egK?z&|p*J#sj{`3S%EZ(PTs-i|o2T)cXkjWD{hGBAjMh*Rw$j@6puRchrWFOZV`dGq(*QenEUu5;zTrE%*v~ zD#m7ei*XT8ar6V`2lz|DfbdK4CF00MRrtxE0bRVn3SvK8eod6f#gS8o_>2uCU@Y5@ z0ZO$RM}@t)r=HDxKd*~nu_A68$fXA69O^uyt_v(vVsvZ@RKHt}&X|1my}Q7H*-(IE z*zHwdkPB;mXWAwB!{r5iXn$sYHSIn22xOhi{XO5BYClcQuRv~R@)Og8+k3|{n0ITi zscBQo{F&{6EDOvTyJhx#cFVp745X2_r&E_sOv?gj)b32h$GY29bf<)i6HU2#lRGS8Kl8v z1)PM^&2p##)l2WrPA_P1?{^MATpmNy_=UVbI6FQ%xg@5a7TD)NOx<$k#?6tV&u1_s z{-rac_6_#;cBbFxb03)H*6~1mv)K)hu?Xp~4x~W0tJ;wAR|Rmj%qVXH_wd8{yOa0z z0oEORYTj)XGCUNhYlVD+?ZPXo0Q;~XVgGb+d0qXF22n@F>9u##kK$*Nn$$z z(H+kNK_o$|`~x5=>en!(Ayn8(UHrLb1+0NB0r@g1Ux`Co^0EX}|=jBD4VURFoj85*MEHXu?`cpcYQ!FZ^*H z99im)n1gNwW1Fmx z+`$xHTYqn<+}AwLF|{M1cL}`*2$?%uw}a@qfYCyRC<3Bx4g_j*JTw7QNFoLcArMZD zhT8{LDb@TlBtY5jPxF_`+}77j>d49rmx@S23T6bsxv)YP#$mo~h;8?)s~DWH-lEmB zQ>=d-gVoZ`l=m=hXGc98ud=usz;wXvkL#EqSRxw&BJEH8K7az@dE&%q5nt#TcRZ>(Ji%R(!>qNnV8QB>qt8uptx_*xZ@jFzp(q2bInaQ!W zCET<@o5byrVlgX^>K~kwShEFs?8?Pe%`9)cG%9pw_#tebe2&R=q09SoE>)+X!#|OU zmm|mb^{kQidex%R^Wq2E-Z>7 zXGYGb4MLBBJ8`4xpf0fI`3wY`J%C>V_IN)ofgf=4idS!9ug2Q6 z*QZ^od{Z6FiR}l}))A1+zKA|XT|7WYXOW!c;*;a63spvvBD&tHBvL=47_1;t)IM$wyIY}7e+!1gLf$fC6LGs$NGq0r;zc`)XuZM`0*ZDc zBF*KB1-Lgy<}R5~-_*I9hi5LtFmc<*@yx=Ny1#*5y@Q?g+K@K0vtAqA=62Q*axJGU zJJ?y@5PQLNiuNe<_+EQKv)RMSjhnsjm`l0B4YKwfC__a}W;Br+nhZ}T?}h4J)ba*2 zPTE)>{m_6&9YPb(Ym*1)`4IZuXPbGKOlRgJU-o9ec?JQShAj+FJjNzq42PQSi9K~b z$DJ|0jeIc{UKrm-P8dtaif>bX6`_|2cg^@Vi??7Ow7-q*zY@!6;gVGrP}!6D!@1`H z3q)u0hJ#h3(0C1`d|ia0+^Kw73?~L40P~)47Xi>A#BYcj&J>^g)A#PajeG^hvZ8AL zdLFbojNS>m15)`q<-Sc@z*EFOZ?R#U@8Ck?z(VF7m^Wm91D&j&-9dXkzGIlsH6Yu< zhCx-zt(b-xbQ>=KLL6}A5jw_^6*Q`3=Kh*Sp}xfl9&SjSntl*5d1A*68`d4igJ01g zI{X7`IzT6xBH5@^-F;2NiF{GgXmC&T)X{MO@wDm<4myZ$^u!tCvFSH^Z)Wt7*?@53 zM^D&S*K%;LF4DK37G)zu(SvBg;|@A5=u6^7)7?B`E; z+R=fLHz9bL*^fn(tUA0UC@IF*pS!Mwt6G|iY)!QM@m~e9U@$~W z+I1XjU)c}tJw}avx#+O`{V6d)ryG;=A5M-=4#<1<&H?D;^7?;>+8uPsDRl$KCGRgj zb}kN2Sm)~MSVH+t}I(P^zly#2BH!!9M)S>LqxmL_ zj`JHJw5WYIr|>;N!W(12CVF3ymF^U}E_X*v?RHsrsOeOus!Ruyk=CbuC0$K&B#_oc z6s+hVR*HaU5z$^Isn8^tnZ6&6zb|~$rUe!w>#<^bf^zxeW>=ei98(A$v`u-bTy^fa7n@Tvtd)Ds?3I259$}khBLi@tYCzw z{h`7}nraxjKB1H8pxaYNsys3VQ)SBfnlVw>AXY!HQ z0;*t&oa&@MVWU2sP?f2QI#uHzi+4I$mK8 z#RP*FkW5jYWr`h4@LH7~d`~?@yWCC*cT>>Td`IDpfqwQ_1&LUXoE={u?1Oy@ny&}{ z-ON}(@!UcB$#=pngN@9$Jz@sLa9DJCgCE@!W4Y6VmT$PtC>2qq>Jd+qRH>zd&)QMj zatFo!$uGT=D-@nzeCO91yT5n}6lx*A_@1w|FzcYea3R3UU4=>zAlm-V?fJR0gkl25 zhy>i9Tq1Z+506fNUjS@Whc(>VtxsiChtd=4TI7T>t7uA0;~^#%&EMj&)2+u`2knZR zv|YjfEkm)JXAn2yd!Kwh4L@GFO#d7`$0Pf1m$4BR{)y4m&u`@)b58(}_`5KB3)Ej_ zREI9Ub@jIvl&ko)Q(@G@RWWDGKP%eak459I_UkazGUG0Yjf<4%46}^ez_|s9eh=Sy zuf7MszV4ZBK=2GVD(rVsr9t|)0lF!Cl9@9t3xD~G6RKL=CLEWvSDs)lbwSLf zH);`ps#2~LfK2lwrk$_3M311VGVz9>LbIAP)WS_<~ zkMhnAFV4BcekfSuw`PC~RaH@xQ0tAn=|i7h@z9raKi3};z+|tWJ`;@G?W)2IN@3y8 zRzQ)n{?6MDLK6>|lPl;ERb$r}@#+KKP_61ck03LQzNLFB&%wBby9XN)vOufIg;>Ll zHen=`;j}WVcUYek1`|29@8CUe6etsGHwrewr(Q+FQkAqp9atg^Rv1+y7Db_;*)73yhrH5JNQ?5Z@#t^-XFVW4F= zaJAIDf=;lMlnet~#G}Klz#c0W^@E2siN%!qn=faaU8h86qG|Gi^& z#}B-@9)Ri4xr#o$P(o;v;XocLr3t~NQLd>vhR6@eTL7H|bH03O|I(V}2D- z(#AH91mW6TIekC*z0`Q!Ijz_I4mwvH-WnIrvdO;duSUn~-lb1U1b@=>OLZ7s3 zaDPRjA;lXP_tXxYS=sqf@i6jb&|o<~7N7ji2c1#-%(3~&@P)~A=D*55`*jlRf(D*b zTBg2q5{Lv&oiKEk-?^lwaVWn0;`^SEm((_A)apz<=dN>24cD=LrTm{OFs{DPnfu-R zS0xvcjB)RHKI>dPFpC9_4HdiZ9cul$Na2BS;1c53)op5a9))?)3C)ZvlimHwrh)D1 zozh0uFRJH}CVl+qJTUK-_;WSKcuiL>v#ejA9608GuAkiXbD*NrMZ5c*+;aGJ^&RK` zAq~pv#V@_@X}ws?_p+MtOYeO}OY(AV+Hos#@%=YKEeQ3=!4BER8MI?M5xMf7)=ji+ zd1DngI%$%uWx{nWvKL%<4*DdBh`bo9n!WjkH9h!*>>kw zBmk+m>1WU0Rd5QYKyjj;XH5aVFccDDRd%2{*niX3>tX$^^?fzluWq(DUC}dHe$!^R z!0rM{A*y1W2o z+Boz8#G8w#{QUZ&7EY1s^~E~5sCp+F;PxPHv>G=FXN|OM5=vPHO(*xxwavunugqg2 zig3$Tn4qsYF%n63UJD+F_u`5#`Mkd$UQgV^yjZtK$3N_m{e8?Fc4T^cM8a#F+=~Jc#98AQJz91TTu3 zSS6{Vd`SF}SSk6iAKQ)-1`D0t3czG9;U>XE z413Dx!x0NO5wYq0qeVGu@e0FE@okGS@p z|N1=41F6dsSGNlD(m%WaG7nGDD#%H%?tIvTZY#JW>5H8Qbtox3BFoO97W=y7!&YUj z4X{%;Jo2!PK=o<`6X&{L<|9^kj`<@R(5d+q#Qa;Z5-?t+yU-n-8HoI!D5w-hRLYm| z2k-FXTMXJF!YIhYAz4<0Ap&OR&wRTc!#X+-MD7hh1+pyDhc(yE&v6QfdP)mvD2`hT z5Rcl6IC7WBM=pZjv<>+xCx`rg^oFgF5oNr!@;lI%Td|Df-|5JQJWz)%f*f}Z%EvoY z+c8TEu8HP=R=SeXCgpS0CEtAbs?v&i`FtmWg6^p=rh5tJ*@E6^t(YM7-5n_C=HSJ2 zv%J4Xepj`2C?=WE2>EFH{fcNkc4q>$Oy*1Pad#1P&(7uX`;)8d%ah|Pj75PviHPbE zmSk8P$kb!(XGVORy8gYBx0lCpRGif@9Q*|6Qha|(f{C6kgPD!FnMtmmY<*0AI5pgN=r|DS)Bl|7~=(z7g2Xb?Rzh!`o@zt?M~cbbF|}dN&8vbwC>3I@4QzXwLl2 z2-}pAFawLsd%B(RY@V$~>NDGSyp14MJek@YqJGbij%~$9^}u`tb*QcQxIvHm6*|Sc zNv(%DWf-2OwZpC7&+Ug>T!`j=Rg8nCX(`lo1j}xtkn|f(_QsJ<9m|BZ>DINV{!%ap z9%HvgbXDqQVCGwV6;W0_-Cw)u_e1_(AK`9=%*cZwOI@C6?-KJ6dPKm;P2DYtJDHM8 z^#@-Ho5HYfk@uM&I}ktMUW(-7I&a? zTxe&sh}gZ~h+U4@=yLHKQp^01Hc9HNV+WlF_m(-4p6>1pkNT!1{XP100IzU|Mvvd% z>tLE!r1P6wZa!xuIJ?Y-v7d7QZ&_^HyanJnfD3nE!6e3(~l zl=dK}+GyaSBH=G=%o+6h;_}1M>jKj8yb-yiOLD1jhnCJ3ryf9^Fd`(5l{Y3wEH5Dh zw4oLc&-ymrVzf!j6Jt(1icZR>pT2*8y2uTq0;kD@CsiVOX=0#x;dPK~e&y*9x?+gM z;Y1$V=|lkV?3^IS62OWQdQAG7nwQB3+g1lv+QyUwXO8j7@gB~ojfQ3{e~EBu#&Es7 z9^ql_Qjb~|voNd4ewfXm0E$)_N|=cU&&uANonqcSexE`l>{%pA$mYs|!g$+zaWO{3 zYDdpm>ltpgWS`vO3K#uW=d=PdCtg^UyPDdQ3l_j<(;(ihc)qsi2rk|8C^rEgt2N99 zKP*7a@1g(7NA9^ac>c(R>#8K~r#PUZFKjO1@>6h`LG|&gSp5>1MREbzN|>HtZA}R6;_`9mb;{N-hH@yANtS;4xNR0 zQ=q=R)Xd!zx5f^mG3S@=um>g4_BKVkU^@;`VCL6<Sa86z zZJAKT8>p9k1MT@(AxPtYqX8*^8r9+0cvDmgyr-)~RjK!gZLG@QkpKJ4Yugt~#l9vX zxuka{)){VM_2l1o#_<v?$Yt^nv|EXIjtN*g1cS<8vmQ4S^Hay2PvQWZas%kSx zifJN%JafF0I53+$*s{Te<5<#vigpvvMBlX>izV*ZOgy^^Cw<4?n(A8e`7C53Bm zG)K{~Mb;eYT>OoQ>n~Ac-o$9W`QCY#|2qJje=P==QplshSbXP5G-Xsbl%I@;6e239B)`flp{XLm?_j?YafjIC29v@@$kK4+Sk;70CnLQYfL;7;%uN+s0){#S9sL%-*YwxJHl~K@d{0% z?&b0%%R)=2P`Tvm)XuA_-^-h0E31M5`ovY@-1?L%&_q4gd=HxseC~?~>9XQ{y?wA9 z^TC8A3RHE=ytA1RGavQ{YTV6$iHqF0c?B}g(P;o?r@7pSIq*FC^ajd*Q)pwHSSWxk zA#!8Jg$RdKURNIwXom<_#pTb$GW!hyp0gbh9}a32br*FdUJ=JRp+1;16QzZ1}n`kP451J%`dInjFJ1B`SqLm^_%(i zoB8#d`SqLm^_%(ioB8#NFu&HFif(3p9r5#%w@(2J&vC* z-vif0m;IYluv4uYOp8q3@WF*2ik~zMbYh~gXXvX+-r!hbbW|Se4qa)O)d-&G;h20f zZNvGJ7aNZ^TGwG@iU=7l+Ls0QG>l`O*|<0mTN?KM%{L`x_=Ygnk;evmm;n|sR;wK<`s=ows(C0yez2jvApE@1M+USc zRBo2u7Vx0J%Wu>jZssZji`CS;LroC=fM%pW@CZcb?@qX`f1w$0=-e!Rf|?`y$~h|Zj>0@!4iOism`A8h@aYrLL&%tR3$L9W zemFb(a84Y)AxBpDOpexyg*G{Nt?Y=lJD;xNDajKb9^c(z0NPiF{6%OStaR-fsr?tw z8_V%7Lsl%;sU5oAr8*^~4c8Wg;(!W;g?dhSR|R{*WobcQv<-ZXx7rszK;JpegMY{$ zyb^zS-K+fwM_Sv)ML>_%wAJ8;**jn5?xKpV`tKaPj+lROHkJ+~UYPJh5fLUi50oNx ztKHJ71WI^9tHWWpDkw$X;Odx8T{6SECShtZd(=tkG!!NtMblhc!H0WK-$X~Y!N zvYr;J7APh;*E1RDX?IVZlVkoDGj>A#e=h1trTa4t_k>5`^E->?pi}SgQ79sRiG9NL z;6?TegA)3k6U4u6c(S+6pL6B?qs=e7$0J=Xe^UgZ(tW?R5Wudto)Eyj5Fi$;9dp+o z=SLkZz{E}J`Y?T$fI=uhH1WuOhmcB;iO-HAH1+b$dIGHiqty$h1ZgG(c{n(ldii-h zX;y;CUhCd6X%^AeiV%$&CQrkFN|0z7m$d*=uiG$<)+4HE41(!5O`+znlpstjqH9~|(>SCu`p`05UJ<5B+HM{CP}7jgi0w@L!y;%+D@VIR zRz{5T@YzLhHr-FySbjH%rUY>?73oT)zi|RJji{6mUxYX>!ql|J-8iJOCdqAy*X9#VwC|!*qoZV`S&=)ruFk(BP^w-`?qU{wt02E zaZsh~Kzm*UrfKD>IV@!+;xcJT5vF?g#!Ae*wU9=QpQ~gNrxYP;Tuki-SUKs$Zy?-? zaLX&lvuUbT!PfZJaBk+7X3&*TxONAw1nCxeWLBYS+B7TyO77Ncg;gQdGUZM)*eVdL zX=tUST3-5}woq=D=*sLxgb8%oLat`5grf4Pz@wwOv3fOE!Bxn}{WRnd_+tVbd1) zjscb?;Us7?{dR+{Eb)B2)81n8?F?TD0!}T5wv_dD2Ca-wmt7KB(?zY6q)saAmy*c7d$~;ZjLRi*Plq1@8n_6>^2iP+Lc@ zMsZakmkJL$MnoK*-~m{hxUB;7I6N{UW4-*@ZCxigGa2no{2ekcR6X&0qk zBdkJ1j~^b2L!R5hWGZ-t-a90pFBBNLAJJJFQ zHixbX@eGEMsh>)n`0tL0J4CtRjt=)bu~zOpHGNjs3YaCxsncNfwLMvG+|9OWNM%li zJ!j4J#^&i%22L#XghtpUF)Gl)&ns~R+|QU2l~6;~M}T9cG& z8qFHw+*!^9>|X9(SwTWH6#Vg77<-K_0pcmZT6uq{W=yN;RuWR9lW}R*RvF1ASIaga zth_m11Z!uTK`T(H)vn8gLFL2f_F-`OFv|wd`*C>;(B6w3WTe>z)gMmmsY7h&gn=nE z#=It;gMug2z|I`xj=OfzO?9@bjffOu;I(_Srl&^ z5Q&#K0I8SbD1i4K68&~jT|P#6J1J|TR6nAWA0~l0JvlzVF2EtL%V<^x$2;J#YiKHr zoxa5L7T6{r*B{PKm+|Xaz2tM$NOrS^Ik!na>)@)w zetx2Xevj@mzJ6x1>X44Lz*kR-3fjtp{jeMbggbBEN>NzuF&n=5*ZVG&2uqmBe z!5+CXF%2jtHG*F;L)1S0=f5PfOZXDCzR)NCiUo7`nt2{9SRba-YrY(m?i$b1R=ppq z*7=nkxxQya7lg#5T_t;CI81QR3@0eTbXh)BDnWI?S~Cij;AR&iluTg3n7dL@hl<2x ztpmfpx}XMQAF0KEcZyeiE=-qMPM2>wlns9e8Z*kJkh&KF$YK2gtxR{YZA z0>)1}h9%R37d8TOA7$$V>M@R(8{A(7%+^ioAPA^_KdU0B*G!cSG5~HmChPlD-yjur ztJXony!D{+`=``Cxp?d!7zTc0bxoHBho-P6FKtAqrOz$Eb6{ELjyD6|e}NMvuNN+$3Kb2&p>zIm*vj!<>iOV%$`)(r{!*x$W6-AlE${7-ci#MNr16y zgx~Pt7ktt;!TCeKW0(}^Y@j_V{p6!ji&G7EzS6r@Fe1{O{GwQkwIy#-2 zIyz#8Z(*{+!Un(g{-~((NdA3i{MR4LV#&v#$xUH!k^UI~y>4&E0AzJr07^^)$)dA~ zL0{nnc#Eul#aaE8th`AS<4|RFP#;vz{+vW00rWYnUYM)a!CjC5S@zu=Pkmk;_)oTe zHOCVe$(!46G9^N2gZ>b){q;HZv#(5F(LlFE10aJRzIROfn)(lt;T&U)iD$erb)Z(L z>%wuYS19-Xd(L114;=TDJu)j%HD~;)smhz!OMy-k zbi@kwF%C>LA=GYcLacAea4r~o$W-6!4eO}g&8u5e)#`Qg(4985B(O~l33tH{4C=x& z|CKV7aMa$!ABvU+{ZUgbDI1K&ik4LEm0Z-8-0cq5H}>p>T&qbgOOixn8MK-Fa3rdv z^1QimB}~gd77W*(ySXV%9rzGknf9fRwt3IKUWDJd9>%k9&utS+-crlDwVhjcPWR=W z)Rnq@3Ci!0Q2i{x#WO^44Ve4@t>BTv;XTtIRveq6jvAKbMFki^#vchRgdRU5ehjPA zu?&if`yg=rai@byw4bgN+UeLiIiLBzK!h331?J!SmO0}}WL|%?Fc(8!f7U47#T~k2 zIx`MPGaNV{quK({Ndi2F&CEmKaAn?#-04b9@fRX>O)OfGklkU>(B)E1FT&J z=F}u*#LM!xilipqYmzMWwfK82_Fh50kov>;`(Erl);^NtfxIjL21KlY2H$&gd7T^MChTa86 zL8*SCogoZoR~ig@@dEL7MkrflX&4{!ezu|fVrsG?8JZdn5?Hi!3HYC?^^!%hZDq?1 z5~vZ3BJmqoatIPmK?_G0^k~!=nV$(66uN-#rkTjSf(mu zLsTc@Wk#7YFpU#a63gT?m@Sy73aHdax{uUEiF8F#vEeY*!BJwQu?$WCXe?DGr?PCp zRPtz)D3Y#fQEr$hmqey=%>mjQ z4pW7))#a5;R0d)Tr-q_wYNANGs;HbAA0zB~sxpOFHteMeq{p9<&JW`Oa`rX9)#8Nl}v7ii6?^94kq1aj` z$ECc2vNhh>q>NW_q3g+s_wgR6xcVj#=16#6s27Ks6!0o8>2i0ND3E9c*TT5)laq2= zMU6pIQt#6!uuwNqCQeHgC5t*py-(MHg|tMOgzA9{Y6?d$QwJ7`FS;N-64V%=WJ;qMboBndH0c0$QnbaKihh=p=QNxasQuN6s4y-v4)Ws)t# z_1RuGQ$;^r1uqk?B2I-K>UL_J3Q5DHhwH;I^*Y^vlA?l~ph8bY(XXqh_Va;TRQQ~Y(hie9FQ1hxCg=>@OjwnGnBrX(rjBB(dab|Rxc_R<`c z)a81}QN84F#Aiky6^+dMR2#fdvWy&(2HMB2|W`S9`j z=-~SJh#ZPN&@mDFH{_Z^Y4H_jcOJT4c#kDpoZ`!~w5Ylc4J_)5h0(|NQesUY*;};5BjL!_%tQtJ6Nq947a?7Su^nPhCNFQbQEkh|+ z4P|cwU+0Zcx_qa(#Q>R&HxhzbyU7^drRMG_)lfFcl8H3WEywEO!HRCNw&TPs#}(me zjgrx{@qj7{9@Ju}v3$twN4dOS++wUWfL~4KL7VA`#!cJDJU1C|i}B_pmaT}k->3?b zm&~;y;6bAze+G6dh8mb}wmvlp)@QaKMp|w&$}mH1iy=liVp|L`m0am1APpl~SA@EO zuleS}pGP|udvMiY_BXij|9pxTrl5EU;Byi_yad=eVeMZ6Y##8XbwK%#ilURX6z#fj zS1pBI9A&VjfR~ZjS_*J=B&wEzP6ZunDav$w#|kj}Qg5)0uCH!i z>Z{cvXvJ>poybEwx?C7th=XV6+$)!Wpv1<JZ&%JR<`<&7oxrz;e0YOFHa1*% zhKnx$Gv_A?wM;DfGgA$T&JEL%PR)r&frSCr2bb9gr^K|)K+JptFM=BE(bQS=^2(X= z>!F9#|Hqt>HwPZr7d{#A09@Y`!OF%RU*%VyL$#|9AJ31Fb@@YJ9(;-?%wE8Z{8mT( zLShu0nPN%iN#Sv(bS?fK@Iy_E`NJ={8e<}N742(JR=z4_4ng<%g940$Y>>u!Fe<(N zSN{KEh`xDe?+_spa19atdy`qlB4qV?tlI9dCgZo4z`9lLnFw9J7HG-1f?JtP`aQ-d+!;d7oU0K|n6ZAWcL~tHpIe~Y+)kXYYz@+Z zq*Yvr7f7$}@dDt94Qq$3^W|7PA)*8-l8d88kJ`R9*KzBd&2Z6v#2^E6%iz%vrY1T$ zQM^&>g)ug-#5V=~X`(O*s7*sT(TM9gcOISP21po4gJCw-alIVeEhc|-a=DiDgWhQEcJ=SD;*adaS`Yl$4&Ba@3mnU33vu@Zgb}7LO$oJc;{k(3Ag= zb2K`S|2hf?BmRgQMU+?$f5EqO9)KbV>K%D<=7io+%&0*^1R~;Tc)8fZ$}i_Y@L4># z!!oo4zx5By4j->Tn_$NGpRUIw&y!D+C2dqGL@+!;V@EogQ|l_A`oqV-wD?FIu|PzF z!SF+biuglg@`vs?@xMRh!|0Fjoc)UTlUx8RAyt?56sW||GU(p?rt0Em>`C}RT+BXo zbZVVZ7t!n=Eq)RtUg9-ms2(Gn;+5l2t-b=ni$%I!@MiR@fTndv{d{Nxo_=OMH1vG2 z(d%$-fgI(H9;1PC>NxIu&zYxjvFN2h4@0TuS%io{(<&jb;mNt_ELu-BY&-wOo~~H% z0T_E`{!9gX^Vm*}wC^(u7}@a-=7Dp`cm!o6fsY#-e90_AG2DPfE-Z>OYj(t3oPt6s zz)X{V0tk-f@9P-)<;?Z^-b**C&@pJ!%r5armDljWQRC{IMgT-c!qay>Q$<>2B`;}T~j zFVxxGGKkuk2eK+?k?+M+Yw;v9<~eh7@rjIxaheEcjVaY(d@YB(LDT*V_1Ln&NmPKy zd$8;c_^n{Mi2Q1~xsj&Fay7YQ0lE5ccJM!kAI{H3{2~9z*8_`CI}B2OgRF4_Pj8^I z8|2s<-vQC3JGL#6kgY(G=oYL&qmm#?GU|+CxMPNls_J7l8czq~>2y40{Y(2cY866~cAvAVfg4 z-NL{S0AigR%A=hi0B-%@8K`58cF{aP7YQWt)ew-tN{%|K;f^e=qbH*i<}YU^>0tTg)bxW` zb71kvBwjYJ**+M8*<+_ROlw3|DOcDpVOm3{)oN+AVjc^ktDi2gqcpf@xIacr=o@u; zXTEqQ?>gA3oNb9u9~n7kU&tr?T7XBZB=rmMoE(ueK%qO9C4x$05I>CNxwidLH@5DT zIeiygfZEm_KYJ5Dfjzm@^a`39 zbTduWAKUrr`0|J2%k3bjm^(|lL9X;~7Hn}Nh?qz&6w@HOeGw8)Pk*@+qxRaFLDDf^Tb`8L#pKbbHf6fs-LJJkSi3H7l@cIH8dh{U|IbTny zfl+i{)DRSO;l&KW&zNP2p*MKU6pXgC+)`pab;{K(-fK8Gy-CWzu(h zEusAa`-`Ev%RKJU<=COBS6=7{uYU3M_FnvY$K#Og&5IcbYQVpN>9ZqdpyyL$Z(cj6 z)P8>Ur{>0Bbw}zOk6{CysSob3lI{DfWKZjjLk>pl-S4aQ*oB9yV1#C#u?J-33IdW8 z{XvTiKYm0}2Hf7#wLFPY&6C@&h*eeIA^F)Kx3(0c>Zx*}`-% z;$OV`d4W-toY|F2zt}8y%Lj2+)cl&jO#{!dR>RgR&Xq0h?%OU12^y@yo86|^6<%s~ z!ssELAH?4)lilT>$PUA_tch@n+RhndaRajh6Vl}YJo()0TtzRg!{>RO8ijlP@lK6) z)u(fejX+m1`$!ro**RKq2l&EcF6CSF{2my;(ddX%2LqEV^Ihnri#8a_-j{-H@?KZ! zX<6^&Re*R`CGOA9d|x_s?(V{4_lxiuo+jZYbqXs|g;1z}OuBz;KbBFB*Y<9($dcA8 zdBC@IEEp5MoLS2GBl6;B z%=l=V|CsZ;^1vlumBB!p3^c|@eXXnNd2Tm=Nb8lnqF5t!v;yjkdd+jqAQy`Ubjcpt zZk>bkr?v)!DR~R7PB6V(Fg;1rnx9YdumH@ctcOLNlUvON(+A2lzcMNL3=F2*4#24S za&G{$X$N5PDKh}dG|#|VKF zQYB?j3Q?L9xYKd^!iyI^7WZAm^{9&|O?ttd_3eS+-gF@S8*DOmZ7=8IWZ3Sg{&smB zD;V^mD^9#+l`k-&#6~Z|acOW$HZx(NFJ~ z|LRIPJaY^T%J&-Q_3P=(8sA5yUK5}FW6p5S=gxEJAD4U2ndh)hn)WA;x^A|cc=Li` z9&HN?kuRcD)LW4iCh}jknMD%d$rm%Y2a*`ejSlJ!t4Am6*dFU&>qn;u z{ouL0wQitLM++|yI16uH#D(`nETB61yr?;Jwb@JMB>S-ld;gi(&&A(GP|x$@>o98O z-^2A8Y05c*(?2BtYcgJ>&BLsF#F>)U&~5c~7{WmGa!d{m505XdkB@eZpDW}65Ao`7 z(VE)>S?ad61Ia1*vZ%j2kDS{g1nbM=pj1}B0g}6t7qU|M?=8QOvEns7z7abD#l;N*~G6XR#Jlx zm8(zq;2t+ zu|%Em$B6`ld#kf+?WJO%C+guDHj_0cbMozFk{iTJXOcGV6~x2O{Ah1=DvfygWt`0f zWun|{iK5J&?IzwD^WBdv*&N}dS-WO7fV`@;(IV(o?2Pun z-o(Oa5Bkk*i}v)PtX0t-#MSMI_Fyk>N$ec+DjPz8D?&8fnxeH(!Ly21v?rGjN|P&H ztEy!yH@a<;zG$<0ueRX4M3Y~{UhUSTcDcY*pRqWN1TA)N^ zDRF<%7ME*5f>IRu#$r3B;Doi`%?9RJ<)(wG5G=|Vfcy#LiisF&N9^%4Khhl^kB#n# zDt(MWXrT{}f$1|i+Y93hLvSg*5upKj10>iZ14ZiM{r6rroH9o^kh3l{6)zV7Jo1wR z&kcTA@{Z1O`BamXvUgHS2Axw@N1PjB@;bR!Z3J@q_Zd2fQO+J2k)f)4>KVi^>CCYW z!mV%uI`@yr6i_hF@Z~T{dfbKHFL!ejFRr?d&1nD{TyPkD<(RJcjW_uD;dckuKbA$8 z15WKrqh5BVZW{KCKH_?VLC9S?=c(I}A0#Pnf~fhivnmcx*d+J*@cH7vo!!W5QREcA zd|m`_`tkMhCf*m!QIG9VfEGN8W2<_Q-0-p&Dnz_$aY!KaO1SnrQ?ECni)B!Gj|(YlyVKv3(+~gO@?4pb^;Hg{Tgj z?mycW+=i$Q!400xJ@t#~2wFRJp<;Bq5!Df%jl+&TS5!m$BT4O7)A*z9F7XS@O@6_5 zTcZnMC(vxP&0{%!{MdtUGV9T{SUqqGHkd3n4GOoH!j>w|pt2pm3LMuJ*NyBui-|qD z$PJ77BzzF=$2s%NeyD(_bxR7q6|-o8B==OIzIMcH4R<5A-3*^v1+9#pzou?UWXoM? z*x$8W%oo`l+OD^*3Pm za7_095~9pUHtJTg+&$Zv&rjJZ>eln9p!a@hyCntKm~BsS3{%bGL0rned=*B|`LNZzZtw6@gZQ z3~yDmc62khK3a*A2JoxNJZL8k7gsobJ+%<-OXXO1!7Y>jC~z4pOQbG#Pg!=%?h!B&E!dSE`H=VBYd@hv0_Ij>XR zRI4#g83vPY=P2_{m0MhD=6*$hm9`3>Peq}4^PLWqCD;$ak}c}Z|iX0SfB+Q$%92to!B`C7hsjS&55D8X$;Wx%y4Dk(7zhdy znCB03H}6oF1KHGkSP$g8MEisSE;Ik!{lEY2{{aH(m>^^}0syD^Gra%+ diff --git a/run/logs/debug-4.log.gz b/run/logs/debug-4.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..054d6570d01a176671ac6dc1524a5469fcb43f40 GIT binary patch literal 16870 zcmV)WK(4aBn14>Xf(QkM)zm6d&G35tMrJh zj^*K4?n;Ah_eb)1MoqhOa{lfEeAeAB(#$b@{KukmTfb+XbQ*r>oP9VtJ@|Nj_}%g4 zk7IJ?7||Qz&28JX@5Y3BcRu;Nzb}4#4PRNXN2U(^)h(0R!Q5w_!5;U>{{AELeABV_ z2-JIfbo>K8qrT6A6Wd^4_egK?z&|p*J#sj{`3S%EZ(PTs-i|o2T)cXkjWD{hGBAjMh*Rw$j@6puRchrWFOZV`dGq(*QenEUu5;zTrE%*v~ zD#m7ei*XT8ar6V`2lz|DfbdK4CF00MRrtxE0bRVn3SvK8eod6f#gS8o_>2uCU@Y5@ z0ZO$RM}@t)r=HDxKd*~nu_A68$fXA69O^uyt_v(vVsvZ@RKHt}&X|1my}Q7H*-(IE z*zHwdkPB;mXWAwB!{r5iXn$sYHSIn22xOhi{XO5BYClcQuRv~R@)Og8+k3|{n0ITi zscBQo{F&{6EDOvTyJhx#cFVp745X2_r&E_sOv?gj)b32h$GY29bf<)i6HU2#lRGS8Kl8v z1)PM^&2p##)l2WrPA_P1?{^MATpmNy_=UVbI6FQ%xg@5a7TD)NOx<$k#?6tV&u1_s z{-rac_6_#;cBbFxb03)H*6~1mv)K)hu?Xp~4x~W0tJ;wAR|Rmj%qVXH_wd8{yOa0z z0oEORYTj)XGCUNhYlVD+?ZPXo0Q;~XVgGb+d0qXF22n@F>9u##kK$*Nn$$z z(H+kNK_o$|`~x5=>en!(Ayn8(UHrLb1+0NB0r@g1Ux`Co^0EX}|=jBD4VURFoj85*MEHXu?`cpcYQ!FZ^*H z99im)n1gNwW1Fmx z+`$xHTYqn<+}AwLF|{M1cL}`*2$?%uw}a@qfYCyRC<3Bx4g_j*JTw7QNFoLcArMZD zhT8{LDb@TlBtY5jPxF_`+}77j>d49rmx@S23T6bsxv)YP#$mo~h;8?)s~DWH-lEmB zQ>=d-gVoZ`l=m=hXGc98ud=usz;wXvkL#EqSRxw&BJEH8K7az@dE&%q5nt#TcRZ>(Ji%R(!>qNnV8QB>qt8uptx_*xZ@jFzp(q2bInaQ!W zCET<@o5byrVlgX^>K~kwShEFs?8?Pe%`9)cG%9pw_#tebe2&R=q09SoE>)+X!#|OU zmm|mb^{kQidex%R^Wq2E-Z>7 zXGYGb4MLBBJ8`4xpf0fI`3wY`J%C>V_IN)ofgf=4idS!9ug2Q6 z*QZ^od{Z6FiR}l}))A1+zKA|XT|7WYXOW!c;*;a63spvvBD&tHBvL=47_1;t)IM$wyIY}7e+!1gLf$fC6LGs$NGq0r;zc`)XuZM`0*ZDc zBF*KB1-Lgy<}R5~-_*I9hi5LtFmc<*@yx=Ny1#*5y@Q?g+K@K0vtAqA=62Q*axJGU zJJ?y@5PQLNiuNe<_+EQKv)RMSjhnsjm`l0B4YKwfC__a}W;Br+nhZ}T?}h4J)ba*2 zPTE)>{m_6&9YPb(Ym*1)`4IZuXPbGKOlRgJU-o9ec?JQShAj+FJjNzq42PQSi9K~b z$DJ|0jeIc{UKrm-P8dtaif>bX6`_|2cg^@Vi??7Ow7-q*zY@!6;gVGrP}!6D!@1`H z3q)u0hJ#h3(0C1`d|ia0+^Kw73?~L40P~)47Xi>A#BYcj&J>^g)A#PajeG^hvZ8AL zdLFbojNS>m15)`q<-Sc@z*EFOZ?R#U@8Ck?z(VF7m^Wm91D&j&-9dXkzGIlsH6Yu< zhCx-zt(b-xbQ>=KLL6}A5jw_^6*Q`3=Kh*Sp}xfl9&SjSntl*5d1A*68`d4igJ01g zI{X7`IzT6xBH5@^-F;2NiF{GgXmC&T)X{MO@wDm<4myZ$^u!tCvFSH^Z)Wt7*?@53 zM^D&S*K%;LF4DK37G)zu(SvBg;|@A5=u6^7)7?B`E; z+R=fLHz9bL*^fn(tUA0UC@IF*pS!Mwt6G|iY)!QM@m~e9U@$~W z+I1XjU)c}tJw}avx#+O`{V6d)ryG;=A5M-=4#<1<&H?D;^7?;>+8uPsDRl$KCGRgj zb}kN2Sm)~MSVH+t}I(P^zly#2BH!!9M)S>LqxmL_ zj`JHJw5WYIr|>;N!W(12CVF3ymF^U}E_X*v?RHsrsOeOus!Ruyk=CbuC0$K&B#_oc z6s+hVR*HaU5z$^Isn8^tnZ6&6zb|~$rUe!w>#<^bf^zxeW>=ei98(A$v`u-bTy^fa7n@Tvtd)Ds?3I259$}khBLi@tYCzw z{h`7}nraxjKB1H8pxaYNsys3VQ)SBfnlVw>AXY!HQ z0;*t&oa&@MVWU2sP?f2QI#uHzi+4I$mK8 z#RP*FkW5jYWr`h4@LH7~d`~?@yWCC*cT>>Td`IDpfqwQ_1&LUXoE={u?1Oy@ny&}{ z-ON}(@!UcB$#=pngN@9$Jz@sLa9DJCgCE@!W4Y6VmT$PtC>2qq>Jd+qRH>zd&)QMj zatFo!$uGT=D-@nzeCO91yT5n}6lx*A_@1w|FzcYea3R3UU4=>zAlm-V?fJR0gkl25 zhy>i9Tq1Z+506fNUjS@Whc(>VtxsiChtd=4TI7T>t7uA0;~^#%&EMj&)2+u`2knZR zv|YjfEkm)JXAn2yd!Kwh4L@GFO#d7`$0Pf1m$4BR{)y4m&u`@)b58(}_`5KB3)Ej_ zREI9Ub@jIvl&ko)Q(@G@RWWDGKP%eak459I_UkazGUG0Yjf<4%46}^ez_|s9eh=Sy zuf7MszV4ZBK=2GVD(rVsr9t|)0lF!Cl9@9t3xD~G6RKL=CLEWvSDs)lbwSLf zH);`ps#2~LfK2lwrk$_3M311VGVz9>LbIAP)WS_<~ zkMhnAFV4BcekfSuw`PC~RaH@xQ0tAn=|i7h@z9raKi3};z+|tWJ`;@G?W)2IN@3y8 zRzQ)n{?6MDLK6>|lPl;ERb$r}@#+KKP_61ck03LQzNLFB&%wBby9XN)vOufIg;>Ll zHen=`;j}WVcUYek1`|29@8CUe6etsGHwrewr(Q+FQkAqp9atg^Rv1+y7Db_;*)73yhrH5JNQ?5Z@#t^-XFVW4F= zaJAIDf=;lMlnet~#G}Klz#c0W^@E2siN%!qn=faaU8h86qG|Gi^& z#}B-@9)Ri4xr#o$P(o;v;XocLr3t~NQLd>vhR6@eTL7H|bH03O|I(V}2D- z(#AH91mW6TIekC*z0`Q!Ijz_I4mwvH-WnIrvdO;duSUn~-lb1U1b@=>OLZ7s3 zaDPRjA;lXP_tXxYS=sqf@i6jb&|o<~7N7ji2c1#-%(3~&@P)~A=D*55`*jlRf(D*b zTBg2q5{Lv&oiKEk-?^lwaVWn0;`^SEm((_A)apz<=dN>24cD=LrTm{OFs{DPnfu-R zS0xvcjB)RHKI>dPFpC9_4HdiZ9cul$Na2BS;1c53)op5a9))?)3C)ZvlimHwrh)D1 zozh0uFRJH}CVl+qJTUK-_;WSKcuiL>v#ejA9608GuAkiXbD*NrMZ5c*+;aGJ^&RK` zAq~pv#V@_@X}ws?_p+MtOYeO}OY(AV+Hos#@%=YKEeQ3=!4BER8MI?M5xMf7)=ji+ zd1DngI%$%uWx{nWvKL%<4*DdBh`bo9n!WjkH9h!*>>kw zBmk+m>1WU0Rd5QYKyjj;XH5aVFccDDRd%2{*niX3>tX$^^?fzluWq(DUC}dHe$!^R z!0rM{A*y1W2o z+Boz8#G8w#{QUZ&7EY1s^~E~5sCp+F;PxPHv>G=FXN|OM5=vPHO(*xxwavunugqg2 zig3$Tn4qsYF%n63UJD+F_u`5#`Mkd$UQgV^yjZtK$3N_m{e8?Fc4T^cM8a#F+=~Jc#98AQJz91TTu3 zSS6{Vd`SF}SSk6iAKQ)-1`D0t3czG9;U>XE z413Dx!x0NO5wYq0qeVGu@e0FE@okGS@p z|N1=41F6dsSGNlD(m%WaG7nGDD#%H%?tIvTZY#JW>5H8Qbtox3BFoO97W=y7!&YUj z4X{%;Jo2!PK=o<`6X&{L<|9^kj`<@R(5d+q#Qa;Z5-?t+yU-n-8HoI!D5w-hRLYm| z2k-FXTMXJF!YIhYAz4<0Ap&OR&wRTc!#X+-MD7hh1+pyDhc(yE&v6QfdP)mvD2`hT z5Rcl6IC7WBM=pZjv<>+xCx`rg^oFgF5oNr!@;lI%Td|Df-|5JQJWz)%f*f}Z%EvoY z+c8TEu8HP=R=SeXCgpS0CEtAbs?v&i`FtmWg6^p=rh5tJ*@E6^t(YM7-5n_C=HSJ2 zv%J4Xepj`2C?=WE2>EFH{fcNkc4q>$Oy*1Pad#1P&(7uX`;)8d%ah|Pj75PviHPbE zmSk8P$kb!(XGVORy8gYBx0lCpRGif@9Q*|6Qha|(f{C6kgPD!FnMtmmY<*0AI5pgN=r|DS)Bl|7~=(z7g2Xb?Rzh!`o@zt?M~cbbF|}dN&8vbwC>3I@4QzXwLl2 z2-}pAFawLsd%B(RY@V$~>NDGSyp14MJek@YqJGbij%~$9^}u`tb*QcQxIvHm6*|Sc zNv(%DWf-2OwZpC7&+Ug>T!`j=Rg8nCX(`lo1j}xtkn|f(_QsJ<9m|BZ>DINV{!%ap z9%HvgbXDqQVCGwV6;W0_-Cw)u_e1_(AK`9=%*cZwOI@C6?-KJ6dPKm;P2DYtJDHM8 z^#@-Ho5HYfk@uM&I}ktMUW(-7I&a? zTxe&sh}gZ~h+U4@=yLHKQp^01Hc9HNV+WlF_m(-4p6>1pkNT!1{XP100IzU|Mvvd% z>tLE!r1P6wZa!xuIJ?Y-v7d7QZ&_^HyanJnfD3nE!6e3(~l zl=dK}+GyaSBH=G=%o+6h;_}1M>jKj8yb-yiOLD1jhnCJ3ryf9^Fd`(5l{Y3wEH5Dh zw4oLc&-ymrVzf!j6Jt(1icZR>pT2*8y2uTq0;kD@CsiVOX=0#x;dPK~e&y*9x?+gM z;Y1$V=|lkV?3^IS62OWQdQAG7nwQB3+g1lv+QyUwXO8j7@gB~ojfQ3{e~EBu#&Es7 z9^ql_Qjb~|voNd4ewfXm0E$)_N|=cU&&uANonqcSexE`l>{%pA$mYs|!g$+zaWO{3 zYDdpm>ltpgWS`vO3K#uW=d=PdCtg^UyPDdQ3l_j<(;(ihc)qsi2rk|8C^rEgt2N99 zKP*7a@1g(7NA9^ac>c(R>#8K~r#PUZFKjO1@>6h`LG|&gSp5>1MREbzN|>HtZA}R6;_`9mb;{N-hH@yANtS;4xNR0 zQ=q=R)Xd!zx5f^mG3S@=um>g4_BKVkU^@;`VCL6<Sa86z zZJAKT8>p9k1MT@(AxPtYqX8*^8r9+0cvDmgyr-)~RjK!gZLG@QkpKJ4Yugt~#l9vX zxuka{)){VM_2l1o#_<v?$Yt^nv|EXIjtN*g1cS<8vmQ4S^Hay2PvQWZas%kSx zifJN%JafF0I53+$*s{Te<5<#vigpvvMBlX>izV*ZOgy^^Cw<4?n(A8e`7C53Bm zG)K{~Mb;eYT>OoQ>n~Ac-o$9W`QCY#|2qJje=P==QplshSbXP5G-Xsbl%I@;6e239B)`flp{XLm?_j?YafjIC29v@@$kK4+Sk;70CnLQYfL;7;%uN+s0){#S9sL%-*YwxJHl~K@d{0% z?&b0%%R)=2P`Tvm)XuA_-^-h0E31M5`ovY@-1?L%&_q4gd=HxseC~?~>9XQ{y?wA9 z^TC8A3RHE=ytA1RGavQ{YTV6$iHqF0c?B}g(P;o?r@7pSIq*FC^ajd*Q)pwHSSWxk zA#!8Jg$RdKURNIwXom<_#pTb$GW!hyp0gbh9}a32br*FdUJ=JRp+1;16QzZ1}n`kP451J%`dInjFJ1B`SqLm^_%(i zoB8#d`SqLm^_%(ioB8#NFu&HFif(3p9r5#%w@(2J&vC* z-vif0m;IYluv4uYOp8q3@WF*2ik~zMbYh~gXXvX+-r!hbbW|Se4qa)O)d-&G;h20f zZNvGJ7aNZ^TGwG@iU=7l+Ls0QG>l`O*|<0mTN?KM%{L`x_=Ygnk;evmm;n|sR;wK<`s=ows(C0yez2jvApE@1M+USc zRBo2u7Vx0J%Wu>jZssZji`CS;LroC=fM%pW@CZcb?@qX`f1w$0=-e!Rf|?`y$~h|Zj>0@!4iOism`A8h@aYrLL&%tR3$L9W zemFb(a84Y)AxBpDOpexyg*G{Nt?Y=lJD;xNDajKb9^c(z0NPiF{6%OStaR-fsr?tw z8_V%7Lsl%;sU5oAr8*^~4c8Wg;(!W;g?dhSR|R{*WobcQv<-ZXx7rszK;JpegMY{$ zyb^zS-K+fwM_Sv)ML>_%wAJ8;**jn5?xKpV`tKaPj+lROHkJ+~UYPJh5fLUi50oNx ztKHJ71WI^9tHWWpDkw$X;Odx8T{6SECShtZd(=tkG!!NtMblhc!H0WK-$X~Y!N zvYr;J7APh;*E1RDX?IVZlVkoDGj>A#e=h1trTa4t_k>5`^E->?pi}SgQ79sRiG9NL z;6?TegA)3k6U4u6c(S+6pL6B?qs=e7$0J=Xe^UgZ(tW?R5Wudto)Eyj5Fi$;9dp+o z=SLkZz{E}J`Y?T$fI=uhH1WuOhmcB;iO-HAH1+b$dIGHiqty$h1ZgG(c{n(ldii-h zX;y;CUhCd6X%^AeiV%$&CQrkFN|0z7m$d*=uiG$<)+4HE41(!5O`+znlpstjqH9~|(>SCu`p`05UJ<5B+HM{CP}7jgi0w@L!y;%+D@VIR zRz{5T@YzLhHr-FySbjH%rUY>?73oT)zi|RJji{6mUxYX>!ql|J-8iJOCdqAy*X9#VwC|!*qoZV`S&=)ruFk(BP^w-`?qU{wt02E zaZsh~Kzm*UrfKD>IV@!+;xcJT5vF?g#!Ae*wU9=QpQ~gNrxYP;Tuki-SUKs$Zy?-? zaLX&lvuUbT!PfZJaBk+7X3&*TxONAw1nCxeWLBYS+B7TyO77Ncg;gQdGUZM)*eVdL zX=tUST3-5}woq=D=*sLxgb8%oLat`5grf4Pz@wwOv3fOE!Bxn}{WRnd_+tVbd1) zjscb?;Us7?{dR+{Eb)B2)81n8?F?TD0!}T5wv_dD2Ca-wmt7KB(?zY6q)saAmy*c7d$~;ZjLRi*Plq1@8n_6>^2iP+Lc@ zMsZakmkJL$MnoK*-~m{hxUB;7I6N{UW4-*@ZCxigGa2no{2ekcR6X&0qk zBdkJ1j~^b2L!R5hWGZ-t-a90pFBBNLAJJJFQ zHixbX@eGEMsh>)n`0tL0J4CtRjt=)bu~zOpHGNjs3YaCxsncNfwLMvG+|9OWNM%li zJ!j4J#^&i%22L#XghtpUF)Gl)&ns~R+|QU2l~6;~M}T9cG& z8qFHw+*!^9>|X9(SwTWH6#Vg77<-K_0pcmZT6uq{W=yN;RuWR9lW}R*RvF1ASIaga zth_m11Z!uTK`T(H)vn8gLFL2f_F-`OFv|wd`*C>;(B6w3WTe>z)gMmmsY7h&gn=nE z#=It;gMug2z|I`xj=OfzO?9@bjffOu;I(_Srl&^ z5Q&#K0I8SbD1i4K68&~jT|P#6J1J|TR6nAWA0~l0JvlzVF2EtL%V<^x$2;J#YiKHr zoxa5L7T6{r*B{PKm+|Xaz2tM$NOrS^Ik!na>)@)w zetx2Xevj@mzJ6x1>X44Lz*kR-3fjtp{jeMbggbBEN>NzuF&n=5*ZVG&2uqmBe z!5+CXF%2jtHG*F;L)1S0=f5PfOZXDCzR)NCiUo7`nt2{9SRba-YrY(m?i$b1R=ppq z*7=nkxxQya7lg#5T_t;CI81QR3@0eTbXh)BDnWI?S~Cij;AR&iluTg3n7dL@hl<2x ztpmfpx}XMQAF0KEcZyeiE=-qMPM2>wlns9e8Z*kJkh&KF$YK2gtxR{YZA z0>)1}h9%R37d8TOA7$$V>M@R(8{A(7%+^ioAPA^_KdU0B*G!cSG5~HmChPlD-yjur ztJXony!D{+`=``Cxp?d!7zTc0bxoHBho-P6FKtAqrOz$Eb6{ELjyD6|e}NMvuNN+$3Kb2&p>zIm*vj!<>iOV%$`)(r{!*x$W6-AlE${7-ci#MNr16y zgx~Pt7ktt;!TCeKW0(}^Y@j_V{p6!ji&G7EzS6r@Fe1{O{GwQkwIy#-2 zIyz#8Z(*{+!Un(g{-~((NdA3i{MR4LV#&v#$xUH!k^UI~y>4&E0AzJr07^^)$)dA~ zL0{nnc#Eul#aaE8th`AS<4|RFP#;vz{+vW00rWYnUYM)a!CjC5S@zu=Pkmk;_)oTe zHOCVe$(!46G9^N2gZ>b){q;HZv#(5F(LlFE10aJRzIROfn)(lt;T&U)iD$erb)Z(L z>%wuYS19-Xd(L114;=TDJu)j%HD~;)smhz!OMy-k zbi@kwF%C>LA=GYcLacAea4r~o$W-6!4eO}g&8u5e)#`Qg(4985B(O~l33tH{4C=x& z|CKV7aMa$!ABvU+{ZUgbDI1K&ik4LEm0Z-8-0cq5H}>p>T&qbgOOixn8MK-Fa3rdv z^1QimB}~gd77W*(ySXV%9rzGknf9fRwt3IKUWDJd9>%k9&utS+-crlDwVhjcPWR=W z)Rnq@3Ci!0Q2i{x#WO^44Ve4@t>BTv;XTtIRveq6jvAKbMFki^#vchRgdRU5ehjPA zu?&if`yg=rai@byw4bgN+UeLiIiLBzK!h331?J!SmO0}}WL|%?Fc(8!f7U47#T~k2 zIx`MPGaNV{quK({Ndi2F&CEmKaAn?#-04b9@fRX>O)OfGklkU>(B)E1FT&J z=F}u*#LM!xilipqYmzMWwfK82_Fh50kov>;`(Erl);^NtfxIjL21KlY2H$&gd7T^MChTa86 zL8*SCogoZoR~ig@@dEL7MkrflX&4{!ezu|fVrsG?8JZdn5?Hi!3HYC?^^!%hZDq?1 z5~vZ3BJmqoatIPmK?_G0^k~!=nV$(66uN-#rkTjSf(mu zLsTc@Wk#7YFpU#a63gT?m@Sy73aHdax{uUEiF8F#vEeY*!BJwQu?$WCXe?DGr?PCp zRPtz)D3Y#fQEr$hmqey=%>mjQ z4pW7))#a5;R0d)Tr-q_wYNANGs;HbAA0zB~sxpOFHteMeq{p9<&JW`Oa`rX9)#8Nl}v7ii6?^94kq1aj` z$ECc2vNhh>q>NW_q3g+s_wgR6xcVj#=16#6s27Ks6!0o8>2i0ND3E9c*TT5)laq2= zMU6pIQt#6!uuwNqCQeHgC5t*py-(MHg|tMOgzA9{Y6?d$QwJ7`FS;N-64V%=WJ;qMboBndH0c0$QnbaKihh=p=QNxasQuN6s4y-v4)Ws)t# z_1RuGQ$;^r1uqk?B2I-K>UL_J3Q5DHhwH;I^*Y^vlA?l~ph8bY(XXqh_Va;TRQQ~Y(hie9FQ1hxCg=>@OjwnGnBrX(rjBB(dab|Rxc_R<`c z)a81}QN84F#Aiky6^+dMR2#fdvWy&(2HMB2|W`S9`j z=-~SJh#ZPN&@mDFH{_Z^Y4H_jcOJT4c#kDpoZ`!~w5Ylc4J_)5h0(|NQesUY*;};5BjL!_%tQtJ6Nq947a?7Su^nPhCNFQbQEkh|+ z4P|cwU+0Zcx_qa(#Q>R&HxhzbyU7^drRMG_)lfFcl8H3WEywEO!HRCNw&TPs#}(me zjgrx{@qj7{9@Ju}v3$twN4dOS++wUWfL~4KL7VA`#!cJDJU1C|i}B_pmaT}k->3?b zm&~;y;6bAze+G6dh8mb}wmvlp)@QaKMp|w&$}mH1iy=liVp|L`m0am1APpl~SA@EO zuleS}pGP|udvMiY_BXij|9pxTrl5EU;Byi_yad=eVeMZ6Y##8XbwK%#ilURX6z#fj zS1pBI9A&VjfR~ZjS_*J=B&wEzP6ZunDav$w#|kj}Qg5)0uCH!i z>Z{cvXvJ>poybEwx?C7th=XV6+$)!Wpv1<JZ&%JR<`<&7oxrz;e0YOFHa1*% zhKnx$Gv_A?wM;DfGgA$T&JEL%PR)r&frSCr2bb9gr^K|)K+JptFM=BE(bQS=^2(X= z>!F9#|Hqt>HwPZr7d{#A09@Y`!OF%RU*%VyL$#|9AJ31Fb@@YJ9(;-?%wE8Z{8mT( zLShu0nPN%iN#Sv(bS?fK@Iy_E`NJ={8e<}N742(JR=z4_4ng<%g940$Y>>u!Fe<(N zSN{KEh`xDe?+_spa19atdy`qlB4qV?tlI9dCgZo4z`9lLnFw9J7HG-1f?JtP`aQ-d+!;d7oU0K|n6ZAWcL~tHpIe~Y+)kXYYz@+Z zq*Yvr7f7$}@dDt94Qq$3^W|7PA)*8-l8d88kJ`R9*KzBd&2Z6v#2^E6%iz%vrY1T$ zQM^&>g)ug-#5V=~X`(O*s7*sT(TM9gcOISP21po4gJCw-alIVeEhc|-a=DiDgWhQEcJ=SD;*adaS`Yl$4&Ba@3mnU33vu@Zgb}7LO$oJc;{k(3Ag= zb2K`S|2hf?BmRgQMU+?$f5EqO9)KbV>K%D<=7io+%&0*^1R~;Tc)8fZ$}i_Y@L4># z!!oo4zx5By4j->Tn_$NGpRUIw&y!D+C2dqGL@+!;V@EogQ|l_A`oqV-wD?FIu|PzF z!SF+biuglg@`vs?@xMRh!|0Fjoc)UTlUx8RAyt?56sW||GU(p?rt0Em>`C}RT+BXo zbZVVZ7t!n=Eq)RtUg9-ms2(Gn;+5l2t-b=ni$%I!@MiR@fTndv{d{Nxo_=OMH1vG2 z(d%$-fgI(H9;1PC>NxIu&zYxjvFN2h4@0TuS%io{(<&jb;mNt_ELu-BY&-wOo~~H% z0T_E`{!9gX^Vm*}wC^(u7}@a-=7Dp`cm!o6fsY#-e90_AG2DPfE-Z>OYj(t3oPt6s zz)X{V0tk-f@9P-)<;?Z^-b**C&@pJ!%r5armDljWQRC{IMgT-c!qay>Q$<>2B`;}T~j zFVxxGGKkuk2eK+?k?+M+Yw;v9<~eh7@rjIxaheEcjVaY(d@YB(LDT*V_1Ln&NmPKy zd$8;c_^n{Mi2Q1~xsj&Fay7YQ0lE5ccJM!kAI{H3{2~9z*8_`CI}B2OgRF4_Pj8^I z8|2s<-vQC3JGL#6kgY(G=oYL&qmm#?GU|+CxMPNls_J7l8czq~>2y40{Y(2cY866~cAvAVfg4 z-NL{S0AigR%A=hi0B-%@8K`58cF{aP7YQWt)ew-tN{%|K;f^e=qbH*i<}YU^>0tTg)bxW` zb71kvBwjYJ**+M8*<+_ROlw3|DOcDpVOm3{)oN+AVjc^ktDi2gqcpf@xIacr=o@u; zXTEqQ?>gA3oNb9u9~n7kU&tr?T7XBZB=rmMoE(ueK%qO9C4x$05I>CNxwidLH@5DT zIeiygfZEm_KYJ5Dfjzm@^a`39 zbTduWAKUrr`0|J2%k3bjm^(|lL9X;~7Hn}Nh?qz&6w@HOeGw8)Pk*@+qxRaFLDDf^Tb`8L#pKbbHf6fs-LJJkSi3H7l@cIH8dh{U|IbTny zfl+i{)DRSO;l&KW&zNP2p*MKU6pXgC+)`pab;{K(-fK8Gy-CWzu(h zEusAa`-`Ev%RKJU<=COBS6=7{uYU3M_FnvY$K#Og&5IcbYQVpN>9ZqdpyyL$Z(cj6 z)P8>Ur{>0Bbw}zOk6{CysSob3lI{DfWKZjjLk>pl-S4aQ*oB9yV1#C#u?J-33IdW8 z{XvTiKYm0}2Hf7#wLFPY&6C@&h*eeIA^F)Kx3(0c>Zx*}`-% z;$OV`d4W-toY|F2zt}8y%Lj2+)cl&jO#{!dR>RgR&Xq0h?%OU12^y@yo86|^6<%s~ z!ssELAH?4)lilT>$PUA_tch@n+RhndaRajh6Vl}YJo()0TtzRg!{>RO8ijlP@lK6) z)u(fejX+m1`$!ro**RKq2l&EcF6CSF{2my;(ddX%2LqEV^Ihnri#8a_-j{-H@?KZ! zX<6^&Re*R`CGOA9d|x_s?(V{4_lxiuo+jZYbqXs|g;1z}OuBz;KbBFB*Y<9($dcA8 zdBC@IEEp5MoLS2GBl6;B z%=l=V|CsZ;^1vlumBB!p3^c|@eXXnNd2Tm=Nb8lnqF5t!v;yjkdd+jqAQy`Ubjcpt zZk>bkr?v)!DR~R7PB6V(Fg;1rnx9YdumH@ctcOLNlUvON(+A2lzcMNL3=F2*4#24S za&G{$X$N5PDKh}dG|#|VKF zQYB?j3Q?L9xYKd^!iyI^7WZAm^{9&|O?ttd_3eS+-gF@S8*DOmZ7=8IWZ3Sg{&smB zD;V^mD^9#+l`k-&#6~Z|acOW$HZx(NFJ~ z|LRIPJaY^T%J&-Q_3P=(8sA5yUK5}FW6p5S=gxEJAD4U2ndh)hn)WA;x^A|cc=Li` z9&HN?kuRcD)LW4iCh}jknMD%d$rm%Y2a*`ejSlJ!t4Am6*dFU&>qn;u z{ouL0wQitLM++|yI16uH#D(`nETB61yr?;Jwb@JMB>S-ld;gi(&&A(GP|x$@>o98O z-^2A8Y05c*(?2BtYcgJ>&BLsF#F>)U&~5c~7{WmGa!d{m505XdkB@eZpDW}65Ao`7 z(VE)>S?ad61Ia1*vZ%j2kDS{g1nbM=pj1}B0g}6t7qU|M?=8QOvEns7z7abD#l;N*~G6XR#Jlx zm8(zq;2t+ zu|%Em$B6`ld#kf+?WJO%C+guDHj_0cbMozFk{iTJXOcGV6~x2O{Ah1=DvfygWt`0f zWun|{iK5J&?IzwD^WBdv*&N}dS-WO7fV`@;(IV(o?2Pun z-o(Oa5Bkk*i}v)PtX0t-#MSMI_Fyk>N$ec+DjPz8D?&8fnxeH(!Ly21v?rGjN|P&H ztEy!yH@a<;zG$<0ueRX4M3Y~{UhUSTcDcY*pRqWN1TA)N^ zDRF<%7ME*5f>IRu#$r3B;Doi`%?9RJ<)(wG5G=|Vfcy#LiisF&N9^%4Khhl^kB#n# zDt(MWXrT{}f$1|i+Y93hLvSg*5upKj10>iZ14ZiM{r6rroH9o^kh3l{6)zV7Jo1wR z&kcTA@{Z1O`BamXvUgHS2Axw@N1PjB@;bR!Z3J@q_Zd2fQO+J2k)f)4>KVi^>CCYW z!mV%uI`@yr6i_hF@Z~T{dfbKHFL!ejFRr?d&1nD{TyPkD<(RJcjW_uD;dckuKbA$8 z15WKrqh5BVZW{KCKH_?VLC9S?=c(I}A0#Pnf~fhivnmcx*d+J*@cH7vo!!W5QREcA zd|m`_`tkMhCf*m!QIG9VfEGN8W2<_Q-0-p&Dnz_$aY!KaO1SnrQ?ECni)B!Gj|(YlyVKv3(+~gO@?4pb^;Hg{Tgj z?mycW+=i$Q!400xJ@t#~2wFRJp<;Bq5!Df%jl+&TS5!m$BT4O7)A*z9F7XS@O@6_5 zTcZnMC(vxP&0{%!{MdtUGV9T{SUqqGHkd3n4GOoH!j>w|pt2pm3LMuJ*NyBui-|qD z$PJ77BzzF=$2s%NeyD(_bxR7q6|-o8B==OIzIMcH4R<5A-3*^v1+9#pzou?UWXoM? z*x$8W%oo`l+OD^*3Pm za7_095~9pUHtJTg+&$Zv&rjJZ>eln9p!a@hyCntKm~BsS3{%bGL0rned=*B|`LNZzZtw6@gZQ z3~yDmc62khK3a*A2JoxNJZL8k7gsobJ+%<-OXXO1!7Y>jC~z4pOQbG#Pg!=%?h!B&E!dSE`H=VBYd@hv0_Ij>XR zRI4#g83vPY=P2_{m0MhD=6*$hm9`3>Peq}4^PLWqCD;$ak}c}Z|iX0SfB+Q$%92to!B`C7hsjS&55D8X$;Wx%y4Dk(7zhdy znCB03H}6oF1KHGkSP$g8MEisSE;Ik!{lEY2{{aH(m>^^}0syD^Gra%+ literal 0 HcmV?d00001 diff --git a/run/logs/debug.log b/run/logs/debug.log index bc1bda471..86a3a1a18 100644 --- a/run/logs/debug.log +++ b/run/logs/debug.log @@ -1,950 +1,375 @@ -[30Dec2025 13:43:02.339] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] -[30Dec2025 13:43:02.343] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.17 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 -[30Dec2025 13:43:02.385] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] -[30Dec2025 13:43:02.405] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] -[30Dec2025 13:43:02.422] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] -[30Dec2025 13:43:02.436] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services -[30Dec2025 13:43:02.441] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run -[30Dec2025 13:43:02.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\mods -[30Dec2025 13:43:02.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config -[30Dec2025 13:43:02.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\fml.toml -[30Dec2025 13:43:02.486] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: -[30Dec2025 13:43:02.491] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow -[30Dec2025 13:43:02.575] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 -[30Dec2025 13:43:02.794] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 -[30Dec2025 13:43:02.870] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] -[30Dec2025 13:43:02.870] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading -[30Dec2025 13:43:02.870] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin -[30Dec2025 13:43:02.872] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin -[30Dec2025 13:43:02.872] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml -[30Dec2025 13:43:02.872] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 -[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading -[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 -[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 -[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b -[30Dec2025 13:43:02.875] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner -[30Dec2025 13:43:02.876] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 -[30Dec2025 13:43:02.876] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 -[30Dec2025 13:43:02.876] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 -[30Dec2025 13:43:02.878] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml -[30Dec2025 13:43:02.878] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services -[30Dec2025 13:43:02.885] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing -[30Dec2025 13:43:02.886] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin -[30Dec2025 13:43:02.901] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1a18644 -[30Dec2025 13:43:02.924] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/polar/.mcreator/gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT -[30Dec2025 13:43:02.930] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager -[30Dec2025 13:43:02.930] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) -[30Dec2025 13:43:02.932] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) -[30Dec2025 13:43:02.934] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) -[30Dec2025 13:43:02.935] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) -[30Dec2025 13:43:02.935] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) -[30Dec2025 13:43:02.938] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin -[30Dec2025 13:43:02.940] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml -[30Dec2025 13:43:02.940] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories -[30Dec2025 13:43:02.940] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run -[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\mods -[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config -[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\fml.toml -[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration -[30Dec2025 13:43:02.944] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile -[30Dec2025 13:43:02.948] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler -[30Dec2025 13:43:02.949] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclientuserdev as launch service -[30Dec2025 13:43:02.965] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] -[30Dec2025 13:43:02.968] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml -[30Dec2025 13:43:02.970] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' -[30Dec2025 13:43:02.971] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} -[30Dec2025 13:43:02.971] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning -[30Dec2025 13:43:02.973] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin -[30Dec2025 13:43:02.974] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin -[30Dec2025 13:43:02.974] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml -[30Dec2025 13:43:02.974] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan -[30Dec2025 13:43:02.988] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3070 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 591.44, NVIDIA Corporation -[30Dec2025 13:43:02.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] -[30Dec2025 13:43:02.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) -[30Dec2025 13:43:02.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) -[30Dec2025 13:43:03.002] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Got mod coordinates examplemod%%C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main;examplemod%%C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\classes\java\main from env -[30Dec2025 13:43:03.003] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main, C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\classes\java\main]}] -[30Dec2025 13:43:03.368] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} -[30Dec2025 13:43:03.379] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar -[30Dec2025 13:43:03.380] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.386] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar -[30Dec2025 13:43:03.386] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.392] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar -[30Dec2025 13:43:03.393] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.398] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar -[30Dec2025 13:43:03.398] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.403] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main -[30Dec2025 13:43:03.413] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {custom_ore_gen} mods - versions {1.0.0} -[30Dec2025 13:43:03.416] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / -[30Dec2025 13:43:03.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} -[30Dec2025 13:43:03.451] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar, it does not contain dependency information. -[30Dec2025 13:43:03.452] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. -[30Dec2025 13:43:03.452] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. -[30Dec2025 13:43:03.453] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. -[30Dec2025 13:43:03.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. -[30Dec2025 13:43:03.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. -[30Dec2025 13:43:03.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. -[30Dec2025 13:43:03.482] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! -[30Dec2025 13:43:03.484] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} -[30Dec2025 13:43:03.487] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] -[30Dec2025 13:43:03.489] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / -[30Dec2025 13:43:03.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} -[30Dec2025 13:43:03.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js -[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js -[30Dec2025 13:43:03.534] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main -[30Dec2025 13:43:03.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {custom_ore_gen} mods - versions {1.0.0} -[30Dec2025 13:43:03.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] -[30Dec2025 13:43:03.538] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml -[30Dec2025 13:43:03.556] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers -[30Dec2025 13:43:03.556] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 -[30Dec2025 13:43:03.558] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 -[30Dec2025 13:43:03.558] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 -[30Dec2025 13:43:03.565] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] -[30Dec2025 13:43:03.565] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft -[30Dec2025 13:43:03.565] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge -[30Dec2025 13:43:03.571] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 1 mod requirements (1 mandatory, 0 optional) -[30Dec2025 13:43:03.573] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) -[30Dec2025 13:43:04.040] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 33222 method mappings from methods.csv -[30Dec2025 13:43:04.070] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 31003 field mappings from fields.csv -[30Dec2025 13:43:04.151] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers -[30Dec2025 13:43:04.152] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin -[30Dec2025 13:43:04.154] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin -[30Dec2025 13:43:04.154] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml -[30Dec2025 13:43:04.154] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers -[30Dec2025 13:43:04.156] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js -[30Dec2025 13:43:04.514] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[30Dec2025 13:43:04.514] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js -[30Dec2025 13:43:04.620] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[30Dec2025 13:43:04.621] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js -[30Dec2025 13:43:04.682] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[30Dec2025 13:43:04.682] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js -[30Dec2025 13:43:04.780] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[30Dec2025 13:43:04.801] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2740e316 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} -[30Dec2025 13:43:04.804] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6aa7b67f to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} -[30Dec2025 13:43:04.806] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6bcc3f27 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} -[30Dec2025 13:43:04.806] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@79aee22a to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} -[30Dec2025 13:43:04.806] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@36920bd6 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@61514735 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6bee793f to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@655f69da to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@43b5021c to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} -[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} -[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml -[30Dec2025 13:43:05.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) -[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] -[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(custom_ore_gen) -[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(custom_ore_gen) -[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(custom_ore_gen) -[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(custom_ore_gen) -[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(custom_ore_gen) -[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(custom_ore_gen)] -[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: inject() running with 4 agents -[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] -[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(custom_ore_gen)] -[30Dec2025 13:43:05.196] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --assetIndex, 5] -[30Dec2025 13:43:05.248] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out -[30Dec2025 13:43:05.251] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] -[30Dec2025 13:43:05.811] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework -[30Dec2025 13:43:05.821] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple -[30Dec2025 13:43:05.821] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 -[30Dec2025 13:43:06.056] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@75babb67 -[30Dec2025 13:43:06.450] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@75babb67 -[30Dec2025 13:43:07.134] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType -[30Dec2025 13:43:07.735] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock -[30Dec2025 13:43:07.769] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock -[30Dec2025 13:43:07.843] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock -[30Dec2025 13:43:08.549] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack -[30Dec2025 13:43:09.119] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole -[30Dec2025 13:43:09.172] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem -[30Dec2025 13:43:10.131] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider -[30Dec2025 13:43:10.195] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 188 Datafixer optimizations took 184 milliseconds -[30Dec2025 13:43:10.235] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie -[30Dec2025 13:43:10.281] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager -[30Dec2025 13:43:10.370] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal -[30Dec2025 13:43:10.611] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal -[30Dec2025 13:43:10.648] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider -[30Dec2025 13:43:10.798] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager -[30Dec2025 13:43:10.915] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance -[30Dec2025 13:43:11.444] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure -[30Dec2025 13:43:11.480] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece -[30Dec2025 13:43:11.491] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece -[30Dec2025 13:43:11.498] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece -[30Dec2025 13:43:11.524] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece -[30Dec2025 13:43:11.625] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome -[30Dec2025 13:43:11.794] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Creating vanilla freeze snapshot -[30Dec2025 13:43:11.797] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.806] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.806] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.814] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.815] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.823] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.823] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.823] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.824] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.825] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.825] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.827] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.828] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.829] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.829] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.829] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.831] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.831] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: VANILLA -> ACTIVE -[30Dec2025 13:43:11.838] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Vanilla freeze snapshot created -[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema -[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema -[30Dec2025 13:43:12.216] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' -[30Dec2025 13:43:12.237] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev -[30Dec2025 13:43:12.398] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 -[30Dec2025 13:43:12.666] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 -[30Dec2025 13:43:12.692] [Render thread/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 16 threads for parallel mod-loading -[30Dec2025 13:43:12.702] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@75babb67 - got cpw.mods.cl.ModuleClassLoader@26e412ef -[30Dec2025 13:43:12.702] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod -[30Dec2025 13:43:12.708] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@75babb67 - got cpw.mods.cl.ModuleClassLoader@26e412ef -[30Dec2025 13:43:12.708] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mcreator.customoregen.CustomOreGenMod -[30Dec2025 13:43:12.742] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 47.3 from cpw.mods.modlauncher.TransformingClassLoader@75babb67 -[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge version 47.3.0 -[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge spec 47.3 -[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge group net.minecraftforge -[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.20.1 from cpw.mods.modlauncher.TransformingClassLoader@75babb67 -[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MC version information 1.20.1 -[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MCP version information 20230612.114412 -[30Dec2025 13:43:12.743] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.0, for MC 1.20.1 with MCP 20230612.114412 -[30Dec2025 13:43:12.745] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v47.3.0 Initialized -[30Dec2025 13:43:12.827] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for custom_ore_gen -[30Dec2025 13:43:12.831] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.customoregen.init.CustomOreGenModTabs to MOD -[30Dec2025 13:43:12.841] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false -[30Dec2025 13:43:12.841] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 17 -[30Dec2025 13:43:12.842] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available -[30Dec2025 13:43:12.842] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available -[30Dec2025 13:43:12.842] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available -[30Dec2025 13:43:12.843] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available -[30Dec2025 13:43:12.843] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable -java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled - at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:288) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] - at io.netty.util.internal.PlatformDependent0.(PlatformDependent0.java:282) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.internal.PlatformDependent.(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.ConstantPool.(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.AttributeKey$1.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.AttributeKey.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at net.minecraftforge.network.NetworkConstants.(NetworkConstants.java:34) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] - at net.minecraftforge.common.ForgeMod.(ForgeMod.java:429) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] - at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] - at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] - at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] - at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:500) ~[?:?] - at java.lang.reflect.Constructor.newInstance(Constructor.java:481) ~[?:?] - at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.20.1-47.3.0.jar%23192!/:?] - at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.0.jar%23195!/:?] - at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] - at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] - at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] - at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] - at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] - at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] - at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] -[30Dec2025 13:43:12.844] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true -[30Dec2025 13:43:12.846] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable -java.lang.IllegalAccessException: 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 - at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] - at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] - at java.lang.reflect.Method.invoke(Method.java:561) ~[?:?] - at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:410) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] - at io.netty.util.internal.PlatformDependent0.(PlatformDependent0.java:401) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.internal.PlatformDependent.(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.ConstantPool.(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.AttributeKey$1.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at io.netty.util.AttributeKey.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] - at net.minecraftforge.network.NetworkConstants.(NetworkConstants.java:34) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] - at net.minecraftforge.common.ForgeMod.(ForgeMod.java:429) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] - at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] - at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] - at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] - at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:500) ~[?:?] - at java.lang.reflect.Constructor.newInstance(Constructor.java:481) ~[?:?] - at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.20.1-47.3.0.jar%23192!/:?] - at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.0.jar%23195!/:?] - at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] - at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] - at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] - at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] - at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] - at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] - at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] -[30Dec2025 13:43:12.847] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.(long, int): unavailable -[30Dec2025 13:43:12.847] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available -[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 8552185856 bytes (maybe) -[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: C:\Users\polar\AppData\Local\Temp (java.io.tmpdir) -[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) -[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: Platform: Windows -[30Dec2025 13:43:12.849] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes -[30Dec2025 13:43:12.849] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 -[30Dec2025 13:43:12.850] [modloading-worker-0/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available -[30Dec2025 13:43:12.850] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false -[30Dec2025 13:43:12.874] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3 -[30Dec2025 13:43:12.894] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking -[30Dec2025 13:43:12.894] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking -[30Dec2025 13:43:12.895] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.ModLoadingContext/]: Attempted to register an empty config for type COMMON on mod forge -[30Dec2025 13:43:12.915] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge -[30Dec2025 13:43:12.916] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD -[30Dec2025 13:43:12.918] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$ColorRegisterHandler to MOD -[30Dec2025 13:43:12.922] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.data.ModelDataManager to FORGE -[30Dec2025 13:43:12.923] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ForgeHooksClient$ClientEvents to MOD -[30Dec2025 13:43:12.928] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ClientForgeMod to MOD -[30Dec2025 13:43:12.957] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Processing ObjectHolder annotations -[30Dec2025 13:43:12.984] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Found 3880 ObjectHolder annotations -[30Dec2025 13:43:12.989] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/energy/IEnergyStorage; -[30Dec2025 13:43:12.993] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandler; -[30Dec2025 13:43:12.993] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandlerItem; -[30Dec2025 13:43:12.993] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/items/IItemHandler; -[30Dec2025 13:43:12.994] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Unfreezing vanilla registries -[30Dec2025 13:43:12.998] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:sound_event -[30Dec2025 13:43:13.002] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:sound_event -[30Dec2025 13:43:13.003] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:fluid -[30Dec2025 13:43:13.003] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:fluid -[30Dec2025 13:43:13.015] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:block -[30Dec2025 13:43:13.016] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:block -[30Dec2025 13:43:13.018] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:attribute -[30Dec2025 13:43:13.018] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:attribute -[30Dec2025 13:43:13.018] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:mob_effect -[30Dec2025 13:43:13.020] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:mob_effect -[30Dec2025 13:43:13.020] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:particle_type -[30Dec2025 13:43:13.021] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:particle_type -[30Dec2025 13:43:13.028] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:item -[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:item -[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:entity_type -[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:entity_type -[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:sensor_type -[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:sensor_type -[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:memory_module_type -[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:memory_module_type -[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:potion -[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:potion -[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:game_event -[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:game_event -[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:enchantment -[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:enchantment -[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_entity_type -[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_entity_type -[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:painting_variant -[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:painting_variant -[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:stat_type -[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:stat_type -[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:custom_stat -[30Dec2025 13:43:13.038] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:custom_stat -[30Dec2025 13:43:13.038] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:chunk_status -[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:chunk_status -[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:rule_test -[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:rule_test -[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:rule_block_entity_modifier -[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:rule_block_entity_modifier -[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:pos_rule_test -[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:pos_rule_test -[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:menu -[30Dec2025 13:43:13.042] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:menu -[30Dec2025 13:43:13.042] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_type -[30Dec2025 13:43:13.042] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_type -[30Dec2025 13:43:13.054] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_serializer -[30Dec2025 13:43:13.055] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_serializer -[30Dec2025 13:43:13.055] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:position_source_type -[30Dec2025 13:43:13.055] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:position_source_type -[30Dec2025 13:43:13.057] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:command_argument_type -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:command_argument_type -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_type -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_type -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_profession -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_profession -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:point_of_interest_type -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:point_of_interest_type -[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:schedule -[30Dec2025 13:43:13.060] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:schedule -[30Dec2025 13:43:13.060] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:activity -[30Dec2025 13:43:13.060] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:activity -[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_pool_entry_type -[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_pool_entry_type -[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_function_type -[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_function_type -[30Dec2025 13:43:13.065] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_condition_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_condition_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_number_provider_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_number_provider_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_nbt_provider_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_nbt_provider_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_score_provider_type -[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_score_provider_type -[30Dec2025 13:43:13.067] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:float_provider_type -[30Dec2025 13:43:13.067] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:float_provider_type -[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:int_provider_type -[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:int_provider_type -[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:height_provider_type -[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:height_provider_type -[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_predicate_type -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_predicate_type -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/carver -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/carver -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_processor -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_processor -[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_placement -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_placement -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_piece -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_piece -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_type -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_type -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/placement_modifier_type -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/placement_modifier_type -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/block_state_provider_type -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/block_state_provider_type -[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/foliage_placer_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/foliage_placer_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/trunk_placer_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/trunk_placer_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/root_placer_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/root_placer_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/tree_decorator_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/tree_decorator_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature_size_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature_size_type -[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome_source -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome_source -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/chunk_generator -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/chunk_generator -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/material_condition -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/material_condition -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/material_rule -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/material_rule -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/density_function_type -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/density_function_type -[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_pool_element -[30Dec2025 13:43:13.075] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_pool_element -[30Dec2025 13:43:13.075] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:cat_variant -[30Dec2025 13:43:13.075] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:cat_variant -[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:frog_variant -[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:frog_variant -[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:banner_pattern -[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:banner_pattern -[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:instrument -[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:instrument -[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:decorated_pot_patterns -[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:decorated_pot_patterns -[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:creative_mode_tab -[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:creative_mode_tab -[30Dec2025 13:43:13.089] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:biome_modifier_serializers -[30Dec2025 13:43:13.091] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:biome_modifier_serializers -[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:display_contexts -[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:display_contexts -[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:entity_data_serializers -[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:entity_data_serializers -[30Dec2025 13:43:13.105] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:fluid_type -[30Dec2025 13:43:13.106] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:fluid_type -[30Dec2025 13:43:13.106] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:global_loot_modifier_serializers -[30Dec2025 13:43:13.107] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:global_loot_modifier_serializers -[30Dec2025 13:43:13.113] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:holder_set_type -[30Dec2025 13:43:13.114] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:holder_set_type -[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:structure_modifier_serializers -[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:structure_modifier_serializers -[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome -[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome -[30Dec2025 13:43:13.264] [Render thread/DEBUG] [net.minecraftforge.client.loading.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file / -[30Dec2025 13:43:13.269] [Render thread/DEBUG] [net.minecraftforge.client.loading.ClientModLoader/CORE]: Generating PackInfo named mod:custom_ore_gen for mod file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main -[30Dec2025 13:43:13.853] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [] -[30Dec2025 13:43:13.998] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources -[30Dec2025 13:43:14.015] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type CLIENT -[30Dec2025 13:43:14.016] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\forge-client.toml -[30Dec2025 13:43:14.017] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\forge-client.toml -[30Dec2025 13:43:14.024] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\forge-client.toml for changes -[30Dec2025 13:43:14.028] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml -[30Dec2025 13:43:14.029] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON -[30Dec2025 13:43:14.192] [Worker-Main-11/ERROR] [net.minecraft.client.resources.model.ModelManager/]: Failed to load blockstate minecraft:blockstates/diamond_ore.json from pack mod_resources -com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ - at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:436) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.util.GsonHelper.fromJson(GsonHelper.java:441) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.util.GsonHelper.parse(GsonHelper.java:505) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.util.GsonHelper.parse(GsonHelper.java:513) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.client.resources.model.ModelManager.lambda$loadBlockStates$12(ModelManager.java:137) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] - at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] - at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] - at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] - at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] - at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] - at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] -Caused by: java.io.EOFException: End of input at line 1 column 1 path $ - at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1455) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:558) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.stream.JsonReader.peek(JsonReader.java:433) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:769) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:725) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1007) ~[gson-2.10.jar%23130!/:?] - at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:434) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - ... 11 more -[30Dec2025 13:43:14.252] [Worker-Main-4/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.0.06.hex, loading -[30Dec2025 13:43:14.280] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json -[30Dec2025 13:43:15.019] [Forge Version Check/DEBUG] [net.minecraftforge.fml.VersionChecker/]: [forge] Received version check data: -{ - "homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", - "promos": { - "1.1-latest": "1.3.4.29", - "1.2.3-latest": "1.4.1.64", - "1.2.4-latest": "2.0.0.68", - "1.2.5-latest": "3.4.9.171", - "1.3.2-latest": "4.3.5.318", - "1.4.0-latest": "5.0.0.326", - "1.4.1-latest": "6.0.0.329", - "1.4.2-latest": "6.0.1.355", - "1.4.3-latest": "6.2.1.358", - "1.4.4-latest": "6.3.0.378", - "1.4.5-latest": "6.4.2.448", - "1.4.6-latest": "6.5.0.489", - "1.4.7-latest": "6.6.2.534", - "1.5-latest": "7.7.0.598", - "1.5.1-latest": "7.7.2.682", - "1.5.2-latest": "7.8.1.738", - "1.5.2-recommended": "7.8.1.738", - "1.6.1-latest": "8.9.0.775", - "1.6.2-latest": "9.10.1.871", - "1.6.2-recommended": "9.10.1.871", - "1.6.3-latest": "9.11.0.878", - "1.6.4-latest": "9.11.1.1345", - "1.6.4-recommended": "9.11.1.1345", - "1.7.2-latest": "10.12.2.1161", - "1.7.2-recommended": "10.12.2.1161", - "1.7.10-latest": "10.13.4.1614", - "1.7.10-recommended": "10.13.4.1614", - "1.8-latest": "11.14.4.1577", - "1.8-recommended": "11.14.4.1563", - "1.8.8-latest": "11.15.0.1655", - "1.8.9-latest": "11.15.1.2318", - "1.8.9-recommended": "11.15.1.2318", - "1.9-latest": "12.16.1.1938", - "1.9-recommended": "12.16.1.1887", - "1.9.4-latest": "12.17.0.2317", - "1.9.4-recommended": "12.17.0.2317", - "1.10-latest": "12.18.0.2000", - "1.10.2-latest": "12.18.3.2511", - "1.10.2-recommended": "12.18.3.2511", - "1.11-latest": "13.19.1.2199", - "1.11-recommended": "13.19.1.2189", - "1.11.2-latest": "13.20.1.2588", - "1.11.2-recommended": "13.20.1.2588", - "1.12-latest": "14.21.1.2443", - "1.12-recommended": "14.21.1.2387", - "1.12.1-latest": "14.22.1.2485", - "1.12.1-recommended": "14.22.1.2478", - "1.12.2-latest": "14.23.5.2864", - "1.12.2-recommended": "14.23.5.2859", - "1.13.2-latest": "25.0.223", - "1.14.2-latest": "26.0.63", - "1.14.3-latest": "27.0.60", - "1.14.4-latest": "28.2.27", - "1.14.4-recommended": "28.2.26", - "1.15-latest": "29.0.4", - "1.15.1-latest": "30.0.51", - "1.15.2-latest": "31.2.60", - "1.15.2-recommended": "31.2.57", - "1.16.1-latest": "32.0.108", - "1.16.2-latest": "33.0.61", - "1.16.3-latest": "34.1.42", - "1.16.3-recommended": "34.1.0", - "1.16.4-latest": "35.1.37", - "1.16.4-recommended": "35.1.4", - "1.16.5-latest": "36.2.42", - "1.16.5-recommended": "36.2.34", - "1.17.1-latest": "37.1.1", - "1.17.1-recommended": "37.1.1", - "1.18-latest": "38.0.17", - "1.18.1-latest": "39.1.2", - "1.18.1-recommended": "39.1.0", - "1.18.2-recommended": "40.3.0", - "1.18.2-latest": "40.3.12", - "1.19-latest": "41.1.0", - "1.19-recommended": "41.1.0", - "1.19.1-latest": "42.0.9", - "1.19.2-recommended": "43.5.0", - "1.19.2-latest": "43.5.2", - "1.19.3-latest": "44.1.23", - "1.19.3-recommended": "44.1.0", - "1.19.4-recommended": "45.4.0", - "1.19.4-latest": "45.4.3", - "1.20-latest": "46.0.14", - "1.20.1-recommended": "47.4.10", - "1.20.1-latest": "47.4.13", - "1.20.2-latest": "48.1.0", - "1.20.2-recommended": "48.1.0", - "1.20.3-latest": "49.0.2", - "1.20.4-latest": "49.2.4", - "1.20.4-recommended": "49.2.0", - "1.20.6-latest": "50.2.4", - "1.20.6-recommended": "50.2.0", - "1.21-latest": "51.0.33", - "1.21.1-latest": "52.1.8", - "1.21.1-recommended": "52.1.0", - "1.21.3-latest": "53.1.6", - "1.21.3-recommended": "53.1.0", - "1.21.4-latest": "54.1.11", - "1.21.4-recommended": "54.1.0", - "1.21.5-latest": "55.1.4", - "1.21.5-recommended": "55.1.0", - "1.21.6-latest": "56.0.9", - "1.21.7-latest": "57.0.3", - "1.21.8-latest": "58.1.11", - "1.21.8-recommended": "58.1.0", - "1.21.9-latest": "59.0.5", - "1.21.10-latest": "60.1.5", - "1.21.10-recommended": "60.1.0", - "1.21.11-latest": "61.0.3" - } -} -[30Dec2025 13:43:15.022] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 47.3.0 Target: 47.4.10 -[30Dec2025 13:43:16.109] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Freezing registries -[30Dec2025 13:43:16.110] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.123] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.123] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.135] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.135] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.144] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.144] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.144] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.145] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.146] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.149] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.151] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.151] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.152] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.152] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: FROZEN -> ACTIVE -[30Dec2025 13:43:17.118] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: All registries frozen -[30Dec2025 13:43:17.166] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6452 -[30Dec2025 13:43:17.197] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play -[30Dec2025 13:43:17.198] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break -[30Dec2025 13:43:17.275] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on Casque (Arctis 7 Game) -[30Dec2025 13:43:17.275] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started -[30Dec2025 13:43:17.408] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas -[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas -[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas -[30Dec2025 13:43:17.415] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas -[30Dec2025 13:43:17.416] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas -[30Dec2025 13:43:17.418] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas -[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas -[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas -[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas -[30Dec2025 13:43:17.639] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. -[30Dec2025 13:43:17.690] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas -[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas -[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas -[30Dec2025 13:43:18.190] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: java.lang.RuntimeException: Failed to parse into SignedJWT: 0 -[30Dec2025 13:43:20.773] [Render thread/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance -[30Dec2025 13:43:20.836] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.841] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.842] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.847] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.847] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.853] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.854] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.854] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.854] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.858] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.859] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.859] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.859] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: ACTIVE -> STAGING -[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: ACTIVE -> STAGING -[30Dec2025 13:43:21.204] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups -[30Dec2025 13:43:21.207] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied -[30Dec2025 13:43:21.247] [Render thread/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file / -[30Dec2025 13:43:21.248] [Render thread/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:custom_ore_gen for mod file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main -[30Dec2025 13:43:22.028] [Render thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/commands/SummonCommand -[30Dec2025 13:43:22.424] [Worker-Main-11/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/raid/Raid -[30Dec2025 13:43:22.813] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes -[30Dec2025 13:43:22.909] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1271 advancements -[30Dec2025 13:43:23.218] [Render thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save New World -[30Dec2025 13:43:23.235] [Render thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete New World -[30Dec2025 13:43:23.294] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.20.1 -[30Dec2025 13:43:23.295] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair -[30Dec2025 13:43:23.385] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER -[30Dec2025 13:43:23.386] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for .\saves\New World\serverconfig\forge-server.toml -[30Dec2025 13:43:23.387] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file .\saves\New World\serverconfig\forge-server.toml -[30Dec2025 13:43:23.388] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file .\saves\New World\serverconfig\forge-server.toml for changes -[30Dec2025 13:43:23.388] [Server thread/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-server.toml -[30Dec2025 13:43:23.391] [Thread-3/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies -[30Dec2025 13:43:23.391] [Thread-3/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! -[30Dec2025 13:43:23.456] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PhantomSpawner -[30Dec2025 13:43:23.461] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PatrolSpawner -[30Dec2025 13:43:23.465] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/CatSpawner -[30Dec2025 13:43:23.470] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/ai/village/VillageSiege -[30Dec2025 13:43:24.432] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld -[30Dec2025 13:43:25.346] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.467] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.971] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 21% -[30Dec2025 13:43:27.492] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 90% -[30Dec2025 13:43:27.498] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler -[30Dec2025 13:43:27.511] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3059 ms -[30Dec2025 13:43:27.559] [Server thread/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true -[30Dec2025 13:43:27.559] [Server thread/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true -[30Dec2025 13:43:27.559] [Server thread/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@e3ed8cb -[30Dec2025 13:43:27.579] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/NaturalSpawner -[30Dec2025 13:43:27.623] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 5, from 10 -[30Dec2025 13:43:27.625] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 -[30Dec2025 13:43:27.649] [Render thread/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 32 -[30Dec2025 13:43:27.678] [Render thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 -[30Dec2025 13:43:27.678] [Render thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 -[30Dec2025 13:43:27.701] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.noKeySetOptimization: false -[30Dec2025 13:43:27.701] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.selectorAutoRebuildThreshold: 512 -[30Dec2025 13:43:27.713] [Render thread/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available -[30Dec2025 13:43:27.803] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 39264 (auto-detected) -[30Dec2025 13:43:27.806] [Render thread/WARN] [io.netty.util.internal.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false -[30Dec2025 13:43:27.806] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: false -[30Dec2025 13:43:27.806] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: false -[30Dec2025 13:43:27.833] [Render thread/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (Software Loopback Interface 1, 127.0.0.1) -[30Dec2025 13:43:27.840] [Render thread/DEBUG] [io.netty.util.NetUtil/]: Failed to get SOMAXCONN from sysctl and file \proc\sys\net\core\somaxconn. Default: 200 -[30Dec2025 13:43:27.953] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: 3c:e9:f7:ff:fe:61:6a:93 (auto-detected) -[30Dec2025 13:43:28.050] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 32 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 32 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false -[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 -[30Dec2025 13:43:28.109] [Render thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled -[30Dec2025 13:43:28.109] [Render thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 -[30Dec2025 13:43:28.110] [Render thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 -[30Dec2025 13:43:28.185] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting local connection. -[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 -[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8 -[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32 -[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false -[30Dec2025 13:43:28.589] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting local connection. -[30Dec2025 13:43:28.623] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModData' to 'fml:handshake' sequence 0 -[30Dec2025 13:43:28.638] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0 -[30Dec2025 13:43:28.665] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModList' to 'fml:handshake' sequence 1 -[30Dec2025 13:43:28.665] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 -[30Dec2025 13:43:28.667] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Logging into server with mod list [minecraft, forge, custom_ore_gen] -[30Dec2025 13:43:28.670] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from server : ACCEPTED -[30Dec2025 13:43:28.670] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'custom_ore_gen:custom_ore_gen' : Version test of '1' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from server : ACCEPTED -[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from server -[30Dec2025 13:43:28.676] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 1 -[30Dec2025 13:43:28.677] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Accepted server connection -[30Dec2025 13:43:28.677] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 -[30Dec2025 13:43:28.677] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 1 of type net.minecraftforge.network.HandshakeMessages$C2SModListReply -[30Dec2025 13:43:28.677] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client connection with modlist [minecraft, forge, custom_ore_gen] -[30Dec2025 13:43:28.678] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/REGISTRIES]: Expecting 19 registries: [minecraft:command_argument_type, minecraft:recipe_serializer, minecraft:sound_event, minecraft:particle_type, minecraft:villager_profession, minecraft:item, minecraft:potion, minecraft:painting_variant, forge:fluid_type, minecraft:block_entity_type, forge:display_contexts, minecraft:block, forge:entity_data_serializers, minecraft:mob_effect, minecraft:stat_type, minecraft:menu, minecraft:enchantment, minecraft:fluid, minecraft:entity_type] -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'custom_ore_gen:custom_ore_gen' : Version test of '1' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from client : ACCEPTED -[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from client -[30Dec2025 13:43:28.680] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Accepted client connection mod list -[30Dec2025 13:43:28.723] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Config forge-server.toml' to 'fml:handshake' sequence 2 -[30Dec2025 13:43:28.724] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 -[30Dec2025 13:43:28.724] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received config sync from server -[30Dec2025 13:43:28.724] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 2 -[30Dec2025 13:43:28.724] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 -[30Dec2025 13:43:28.725] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 2 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge -[30Dec2025 13:43:28.725] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client -[30Dec2025 13:43:28.770] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Handshake complete! -[30Dec2025 13:43:28.832] [Netty Local Client IO #0/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. -[30Dec2025 13:43:28.912] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:eb2f5935] logged in with entity id 200 at (12.784762099758028, 72.0, -0.7788851899228265) -[30Dec2025 13:43:29.028] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game -[30Dec2025 13:43:29.591] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 16 advancements -[30Dec2025 13:43:53.371] [Render thread/DEBUG] [io.netty.util.internal.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0xd1754540a723402f -[30Dec2025 13:43:59.558] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] -[30Dec2025 13:43:59.562] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode -[30Dec2025 13:44:12.909] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev has made the advancement [Diamonds!] -[30Dec2025 13:44:12.910] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Dev has made the advancement [Diamonds!] -[30Dec2025 13:44:12.956] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 35 advancements -[30Dec2025 13:44:23.273] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] -[30Dec2025 13:44:23.275] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode -[30Dec2025 13:44:40.682] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Adventure Mode] -[30Dec2025 13:44:40.684] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Adventure Mode -[30Dec2025 13:44:45.911] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] -[30Dec2025 13:44:45.913] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode -[30Dec2025 13:45:34.585] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] -[30Dec2025 13:45:34.587] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode -[30Dec2025 13:45:47.103] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] -[30Dec2025 13:45:47.105] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode -[30Dec2025 13:45:53.698] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... -[30Dec2025 13:45:53.710] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[30Dec2025 13:45:53.738] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[30Dec2025 13:45:53.740] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[30Dec2025 13:45:53.744] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save New World -[30Dec2025 13:45:53.757] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete New World -[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected -[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game -[30Dec2025 13:45:54.462] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Stopping singleplayer server as player logged out -[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server -[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players -[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds -[30Dec2025 13:45:55.085] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[30Dec2025 13:45:55.717] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[30Dec2025 13:45:55.719] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[30Dec2025 13:45:55.720] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save New World -[30Dec2025 13:45:55.724] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete New World -[30Dec2025 13:45:55.734] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World): All chunks are saved -[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved -[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved -[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved -[30Dec2025 13:45:55.749] [Server thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Reverting to FROZEN data state. -[30Dec2025 13:45:55.749] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.753] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.753] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.758] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.758] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.761] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: ACTIVE -> FROZEN -[30Dec2025 13:45:56.032] [Server thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups -[30Dec2025 13:45:56.034] [Server thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied -[30Dec2025 13:45:56.034] [Server thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: FROZEN state restored. -[30Dec2025 13:45:56.034] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Unloading configs type SERVER -[30Dec2025 13:46:03.217] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! +[23janv.2026 13:39:24.349] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\polar\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] +[23janv.2026 13:39:24.361] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.12 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0 +[23janv.2026 13:39:24.399] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] +[23janv.2026 13:39:24.412] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] +[23janv.2026 13:39:24.425] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] +[23janv.2026 13:39:24.437] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services +[23janv.2026 13:39:24.443] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is D:\Developpement\custom_ore_gem\run +[23janv.2026 13:39:24.443] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is D:\Developpement\custom_ore_gem\run\mods +[23janv.2026 13:39:24.444] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is D:\Developpement\custom_ore_gem\run\config +[23janv.2026 13:39:24.444] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is D:\Developpement\custom_ore_gem\run\config\fml.toml +[23janv.2026 13:39:24.482] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: +[23janv.2026 13:39:24.489] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow +[23janv.2026 13:39:24.667] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 +[23janv.2026 13:39:25.029] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 +[23janv.2026 13:39:25.177] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] +[23janv.2026 13:39:25.177] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading +[23janv.2026 13:39:25.177] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin +[23janv.2026 13:39:25.179] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin +[23janv.2026 13:39:25.179] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml +[23janv.2026 13:39:25.179] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 +[23janv.2026 13:39:25.180] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading +[23janv.2026 13:39:25.180] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 +[23janv.2026 13:39:25.180] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 +[23janv.2026 13:39:25.180] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b +[23janv.2026 13:39:25.182] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner +[23janv.2026 13:39:25.183] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 +[23janv.2026 13:39:25.184] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 +[23janv.2026 13:39:25.184] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 +[23janv.2026 13:39:25.184] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml +[23janv.2026 13:39:25.184] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services +[23janv.2026 13:39:25.191] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing +[23janv.2026 13:39:25.191] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin +[23janv.2026 13:39:25.204] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@17046283 +[23janv.2026 13:39:25.219] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/polar/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT +[23janv.2026 13:39:25.222] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager +[23janv.2026 13:39:25.223] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) +[23janv.2026 13:39:25.223] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) +[23janv.2026 13:39:25.223] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) +[23janv.2026 13:39:25.225] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) +[23janv.2026 13:39:25.225] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) +[23janv.2026 13:39:25.227] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin +[23janv.2026 13:39:25.227] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml +[23janv.2026 13:39:25.227] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories +[23janv.2026 13:39:25.227] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is D:\Developpement\custom_ore_gem\run +[23janv.2026 13:39:25.229] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is D:\Developpement\custom_ore_gem\run\mods +[23janv.2026 13:39:25.229] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is D:\Developpement\custom_ore_gem\run\config +[23janv.2026 13:39:25.229] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is D:\Developpement\custom_ore_gem\run\config\fml.toml +[23janv.2026 13:39:25.229] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration +[23janv.2026 13:39:25.232] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile +[23janv.2026 13:39:25.234] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler +[23janv.2026 13:39:25.235] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclientuserdev as launch service +[23janv.2026 13:39:25.248] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] +[23janv.2026 13:39:25.249] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml +[23janv.2026 13:39:25.249] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' +[23janv.2026 13:39:25.251] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} +[23janv.2026 13:39:25.251] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning +[23janv.2026 13:39:25.251] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin +[23janv.2026 13:39:25.252] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin +[23janv.2026 13:39:25.252] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml +[23janv.2026 13:39:25.252] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan +[23janv.2026 13:39:25.261] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] +[23janv.2026 13:39:25.263] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) +[23janv.2026 13:39:25.263] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) +[23janv.2026 13:39:25.271] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Got mod coordinates examplemod%%D:\Developpement\custom_ore_gem\build\resources\main;examplemod%%D:\Developpement\custom_ore_gem\build\classes\java\main from env +[23janv.2026 13:39:25.271] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[D:\Developpement\custom_ore_gem\build\resources\main, D:\Developpement\custom_ore_gem\build\classes\java\main]}] +[23janv.2026 13:39:25.350] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: AMD Radeon RX 9070 GL version 4.6.0 Core Profile Context 26.1.1.251128, ATI Technologies Inc. +[23janv.2026 13:39:25.632] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} +[23janv.2026 13:39:25.638] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar +[23janv.2026 13:39:25.638] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.643] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar +[23janv.2026 13:39:25.643] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.647] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar +[23janv.2026 13:39:25.647] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.650] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar +[23janv.2026 13:39:25.650] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.655] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\Developpement\custom_ore_gem\build\resources\main +[23janv.2026 13:39:25.662] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {custom_ore_gen} mods - versions {2.1.6-forge} +[23janv.2026 13:39:25.666] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / +[23janv.2026 13:39:25.668] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} +[23janv.2026 13:39:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar, it does not contain dependency information. +[23janv.2026 13:39:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. +[23janv.2026 13:39:25.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. +[23janv.2026 13:39:25.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. +[23janv.2026 13:39:25.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. +[23janv.2026 13:39:25.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. +[23janv.2026 13:39:25.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. +[23janv.2026 13:39:25.734] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! +[23janv.2026 13:39:25.736] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} +[23janv.2026 13:39:25.739] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\polar\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] +[23janv.2026 13:39:25.739] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / +[23janv.2026 13:39:25.740] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} +[23janv.2026 13:39:25.741] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] +[23janv.2026 13:39:25.788] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js +[23janv.2026 13:39:25.790] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js +[23janv.2026 13:39:25.790] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js +[23janv.2026 13:39:25.790] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js +[23janv.2026 13:39:25.790] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js +[23janv.2026 13:39:25.790] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js +[23janv.2026 13:39:25.790] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js +[23janv.2026 13:39:25.791] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js +[23janv.2026 13:39:25.791] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\Developpement\custom_ore_gem\build\resources\main +[23janv.2026 13:39:25.792] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {custom_ore_gen} mods - versions {2.1.6-forge} +[23janv.2026 13:39:25.792] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\Developpement\custom_ore_gem\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] +[23janv.2026 13:39:25.794] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml +[23janv.2026 13:39:25.811] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers +[23janv.2026 13:39:25.812] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 +[23janv.2026 13:39:25.813] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 +[23janv.2026 13:39:25.814] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 +[23janv.2026 13:39:25.824] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] +[23janv.2026 13:39:25.824] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft +[23janv.2026 13:39:25.824] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge +[23janv.2026 13:39:25.827] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) +[23janv.2026 13:39:25.828] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 1 mod requirements missing (1 mandatory, 0 optional) +[23janv.2026 13:39:25.829] [main/ERROR] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Missing or unsupported mandatory dependencies: + Mod ID: 'kubejs', Requested by: 'custom_ore_gen', Expected range: '[1902.6.2-build.359,)', Actual version: '[MISSING]' +[23janv.2026 13:39:26.276] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 33222 method mappings from methods.csv +[23janv.2026 13:39:26.314] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 31003 field mappings from fields.csv +[23janv.2026 13:39:26.413] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers +[23janv.2026 13:39:26.414] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin +[23janv.2026 13:39:26.417] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin +[23janv.2026 13:39:26.418] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml +[23janv.2026 13:39:26.418] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers +[23janv.2026 13:39:26.419] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js +[23janv.2026 13:39:26.734] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[23janv.2026 13:39:26.734] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js +[23janv.2026 13:39:26.814] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[23janv.2026 13:39:26.814] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js +[23janv.2026 13:39:26.859] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[23janv.2026 13:39:26.859] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js +[23janv.2026 13:39:26.942] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[23janv.2026 13:39:26.957] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6f8aba08 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} +[23janv.2026 13:39:26.959] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1115433e to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4fdca00a to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@513b52af to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a8c93 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3bed3315 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@119b0892 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a3e8e24 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} +[23janv.2026 13:39:26.960] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4ed4a7e4 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} +[23janv.2026 13:39:26.961] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} +[23janv.2026 13:39:26.962] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} +[23janv.2026 13:39:26.962] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} +[23janv.2026 13:39:26.962] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} +[23janv.2026 13:39:26.962] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} +[23janv.2026 13:39:26.963] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c7350b0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} +[23janv.2026 13:39:26.964] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml +[23janv.2026 13:39:27.215] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[23janv.2026 13:39:27.215] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[23janv.2026 13:39:27.215] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) +[23janv.2026 13:39:27.215] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) +[23janv.2026 13:39:27.216] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[23janv.2026 13:39:27.217] [main/DEBUG] [mixin/]: inject() running with 3 agents +[23janv.2026 13:39:27.217] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[23janv.2026 13:39:27.217] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[23janv.2026 13:39:27.217] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[23janv.2026 13:39:27.218] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\polar\.gradle\caches\forge_gradle\assets, --assetIndex, 5] +[23janv.2026 13:39:27.337] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out +[23janv.2026 13:39:27.339] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] +[23janv.2026 13:39:27.635] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework +[23janv.2026 13:39:27.638] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple +[23janv.2026 13:39:27.638] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 +[23janv.2026 13:39:27.779] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@619f2afc +[23janv.2026 13:39:28.190] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@619f2afc +[23janv.2026 13:39:28.255] [main/WARN] [oshi.driver.windows.perfmon.PerfmonDisabled/]: Invalid registry value type detected for PerfOS counters. Should be REG_DWORD. Ignoring: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfOS\Performance\Disable Performance Counters. +[23janv.2026 13:39:28.957] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType +[23janv.2026 13:39:29.367] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock +[23janv.2026 13:39:29.393] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock +[23janv.2026 13:39:29.439] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock +[23janv.2026 13:39:30.015] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack +[23janv.2026 13:39:30.499] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole +[23janv.2026 13:39:30.533] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem +[23janv.2026 13:39:31.220] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider +[23janv.2026 13:39:31.290] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie +[23janv.2026 13:39:31.346] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager +[23janv.2026 13:39:31.382] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 188 Datafixer optimizations took 255 milliseconds +[23janv.2026 13:39:31.420] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal +[23janv.2026 13:39:31.637] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal +[23janv.2026 13:39:31.669] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider +[23janv.2026 13:39:31.785] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager +[23janv.2026 13:39:31.908] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance +[23janv.2026 13:39:32.415] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure +[23janv.2026 13:39:32.461] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece +[23janv.2026 13:39:32.474] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece +[23janv.2026 13:39:32.484] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece +[23janv.2026 13:39:32.501] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece +[23janv.2026 13:39:32.629] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome +[23janv.2026 13:39:32.817] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Creating vanilla freeze snapshot +[23janv.2026 13:39:32.819] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.835] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.835] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.846] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.848] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.856] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.857] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.857] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.858] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.858] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.858] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.858] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.859] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.859] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.860] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.860] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.860] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.861] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.861] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.863] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.864] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.864] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.864] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.864] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.864] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.865] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.866] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.866] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.866] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.867] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: VANILLA -> ACTIVE +[23janv.2026 13:39:32.873] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Vanilla freeze snapshot created +[23janv.2026 13:39:33.251] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema +[23janv.2026 13:39:33.252] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema +[23janv.2026 13:39:33.286] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[23janv.2026 13:39:33.302] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev +[23janv.2026 13:39:33.509] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 +[23janv.2026 13:39:33.871] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[23janv.2026 13:39:33.892] [Render thread/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 16 threads for parallel mod-loading +[23janv.2026 13:39:33.896] [Render thread/FATAL] [net.minecraftforge.fml.ModLoader/CORE]: Error during pre-loading phase +net.minecraftforge.fml.ModLoadingException: Mod §ecustom_ore_gen§r requires §6kubejs§r §o1902.6.2-build.359 or above§r +§7Currently, §6kubejs§r§7 is §o§nnot installed + at net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.3.0.jar:?] + at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] + at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] + at java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?] + at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] + at net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.3.0.jar:?] + at net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:69) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:89) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:69) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraft.client.Minecraft.(Minecraft.java:459) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraft.client.main.Main.main(Main.java:182) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.devService(ForgeClientUserdevLaunchHandler.java:19) ~[fmlloader-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.loading.targets.CommonDevLaunchHandler.lambda$makeService$7(CommonDevLaunchHandler.java:135) ~[fmlloader-1.20.1-47.3.0.jar:?] + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] +[23janv.2026 13:39:34.224] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.sound.SoundEngineLoadEvent to a broken mod state +[23janv.2026 13:39:34.348] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$Block to a broken mod state +[23janv.2026 13:39:34.351] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$Item to a broken mod state +[23janv.2026 13:39:34.486] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RenderLevelStageEvent$RegisterStageEvent to a broken mod state +[23janv.2026 13:39:34.543] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterParticleProvidersEvent to a broken mod state +[23janv.2026 13:39:34.597] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterClientReloadListenersEvent to a broken mod state +[23janv.2026 13:39:34.598] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$RegisterLayerDefinitions to a broken mod state +[23janv.2026 13:39:34.598] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$RegisterRenderers to a broken mod state +[23janv.2026 13:39:34.599] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterTextureAtlasSpriteLoadersEvent to a broken mod state +[23janv.2026 13:39:34.600] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterClientTooltipComponentFactoriesEvent to a broken mod state +[23janv.2026 13:39:34.601] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterEntitySpectatorShadersEvent to a broken mod state +[23janv.2026 13:39:34.601] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterKeyMappingsEvent to a broken mod state +[23janv.2026 13:39:34.604] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterRecipeBookCategoriesEvent to a broken mod state +[23janv.2026 13:39:34.609] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterGuiOverlaysEvent to a broken mod state +[23janv.2026 13:39:34.614] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterDimensionSpecialEffectsEvent to a broken mod state +[23janv.2026 13:39:34.616] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterNamedRenderTypesEvent to a broken mod state +[23janv.2026 13:39:34.617] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$ColorResolvers to a broken mod state +[23janv.2026 13:39:34.618] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterItemDecorationsEvent to a broken mod state +[23janv.2026 13:39:34.626] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterPresetEditorsEvent to a broken mod state +[23janv.2026 13:39:34.718] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla +[23janv.2026 13:39:34.764] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$RegisterGeometryLoaders to a broken mod state +[23janv.2026 13:39:34.885] [Worker-Main-6/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.0.06.hex, loading +[23janv.2026 13:39:35.650] [Worker-Main-12/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$RegisterAdditional to a broken mod state +[23janv.2026 13:39:36.148] [Worker-Main-12/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$ModifyBakingResult to a broken mod state +[23janv.2026 13:39:36.209] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6217 +[23janv.2026 13:39:36.234] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play +[23janv.2026 13:39:36.234] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break +[23janv.2026 13:39:36.287] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on SteelSeries Sonar - Gaming (SteelSeries Sonar Virtual Audio Device) +[23janv.2026 13:39:36.289] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started +[23janv.2026 13:39:36.289] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.sound.SoundEngineLoadEvent to a broken mod state +[23janv.2026 13:39:36.423] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas +[23janv.2026 13:39:36.431] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.431] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas +[23janv.2026 13:39:36.431] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.432] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas +[23janv.2026 13:39:36.432] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.432] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas +[23janv.2026 13:39:36.432] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.432] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas +[23janv.2026 13:39:36.435] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.435] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas +[23janv.2026 13:39:36.435] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$BakingCompleted to a broken mod state +[23janv.2026 13:39:36.511] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.513] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.569] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.570] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.574] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.576] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.580] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.581] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.582] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.582] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.584] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.585] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.586] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.586] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.589] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.589] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.590] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.590] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.591] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.596] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.596] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.596] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$AddLayers to a broken mod state +[23janv.2026 13:39:36.647] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[23janv.2026 13:39:36.687] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterShadersEvent to a broken mod state +[23janv.2026 13:39:36.698] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[23janv.2026 13:39:36.698] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.698] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[23janv.2026 13:39:36.698] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.700] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[23janv.2026 13:39:36.700] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.711] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[23janv.2026 13:39:36.743] [Render thread/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@619f2afc +[23janv.2026 13:39:36.793] [Render thread/FATAL] [net.minecraftforge.client.loading.ClientModLoader/]: Crash report saved to .\crash-reports\crash-2026-01-23_13.39.36-fml.txt +[23janv.2026 13:41:28.480] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! diff --git a/run/logs/latest.log b/run/logs/latest.log index e850cf657..ed64bb656 100644 --- a/run/logs/latest.log +++ b/run/logs/latest.log @@ -1,122 +1,144 @@ -[30Dec2025 13:43:02.339] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] -[30Dec2025 13:43:02.343] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.17 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 -[30Dec2025 13:43:02.491] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow -[30Dec2025 13:43:02.575] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 -[30Dec2025 13:43:02.794] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 -[30Dec2025 13:43:02.924] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/polar/.mcreator/gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT -[30Dec2025 13:43:02.988] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3070 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 591.44, NVIDIA Corporation -[30Dec2025 13:43:03.380] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.386] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.393] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.398] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file -[30Dec2025 13:43:03.482] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! -[30Dec2025 13:43:05.196] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --assetIndex, 5] -[30Dec2025 13:43:10.195] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 188 Datafixer optimizations took 184 milliseconds -[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema -[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema -[30Dec2025 13:43:12.216] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' -[30Dec2025 13:43:12.237] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev -[30Dec2025 13:43:12.398] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 -[30Dec2025 13:43:12.743] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.0, for MC 1.20.1 with MCP 20230612.114412 -[30Dec2025 13:43:12.745] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v47.3.0 Initialized -[30Dec2025 13:43:13.853] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [] -[30Dec2025 13:43:13.998] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources -[30Dec2025 13:43:14.192] [Worker-Main-11/ERROR] [net.minecraft.client.resources.model.ModelManager/]: Failed to load blockstate minecraft:blockstates/diamond_ore.json from pack mod_resources -com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ - at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:436) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.util.GsonHelper.fromJson(GsonHelper.java:441) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.util.GsonHelper.parse(GsonHelper.java:505) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.util.GsonHelper.parse(GsonHelper.java:513) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at net.minecraft.client.resources.model.ModelManager.lambda$loadBlockStates$12(ModelManager.java:137) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] - at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] - at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] - at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] - at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] - at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] - at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] -Caused by: java.io.EOFException: End of input at line 1 column 1 path $ - at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1455) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:558) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.stream.JsonReader.peek(JsonReader.java:433) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:769) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:725) ~[gson-2.10.jar%23130!/:?] - at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1007) ~[gson-2.10.jar%23130!/:?] - at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:434) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] - ... 11 more -[30Dec2025 13:43:14.252] [Worker-Main-4/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.0.06.hex, loading -[30Dec2025 13:43:14.280] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json -[30Dec2025 13:43:15.022] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 47.3.0 Target: 47.4.10 -[30Dec2025 13:43:17.197] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play -[30Dec2025 13:43:17.198] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break -[30Dec2025 13:43:17.275] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on Casque (Arctis 7 Game) -[30Dec2025 13:43:17.275] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started -[30Dec2025 13:43:17.408] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas -[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas -[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas -[30Dec2025 13:43:17.415] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas -[30Dec2025 13:43:17.416] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas -[30Dec2025 13:43:17.418] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas -[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas -[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas -[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas -[30Dec2025 13:43:17.639] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. -[30Dec2025 13:43:17.690] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas -[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas -[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas -[30Dec2025 13:43:18.190] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: java.lang.RuntimeException: Failed to parse into SignedJWT: 0 -[30Dec2025 13:43:20.773] [Render thread/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance -[30Dec2025 13:43:22.813] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes -[30Dec2025 13:43:22.909] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1271 advancements -[30Dec2025 13:43:23.294] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.20.1 -[30Dec2025 13:43:23.295] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair -[30Dec2025 13:43:24.432] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.467] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% -[30Dec2025 13:43:26.971] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 21% -[30Dec2025 13:43:27.492] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 90% -[30Dec2025 13:43:27.498] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler -[30Dec2025 13:43:27.511] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3059 ms -[30Dec2025 13:43:27.623] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 5, from 10 -[30Dec2025 13:43:27.625] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 -[30Dec2025 13:43:27.806] [Render thread/WARN] [io.netty.util.internal.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false -[30Dec2025 13:43:28.832] [Netty Local Client IO #0/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. -[30Dec2025 13:43:28.912] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:eb2f5935] logged in with entity id 200 at (12.784762099758028, 72.0, -0.7788851899228265) -[30Dec2025 13:43:29.028] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game -[30Dec2025 13:43:29.591] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 16 advancements -[30Dec2025 13:43:59.558] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] -[30Dec2025 13:43:59.562] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode -[30Dec2025 13:44:12.909] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev has made the advancement [Diamonds!] -[30Dec2025 13:44:12.910] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Dev has made the advancement [Diamonds!] -[30Dec2025 13:44:12.956] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 35 advancements -[30Dec2025 13:44:23.273] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] -[30Dec2025 13:44:23.275] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode -[30Dec2025 13:44:40.682] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Adventure Mode] -[30Dec2025 13:44:40.684] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Adventure Mode -[30Dec2025 13:44:45.911] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] -[30Dec2025 13:44:45.913] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode -[30Dec2025 13:45:34.585] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] -[30Dec2025 13:45:34.587] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode -[30Dec2025 13:45:47.103] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] -[30Dec2025 13:45:47.105] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode -[30Dec2025 13:45:53.698] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... -[30Dec2025 13:45:53.710] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[30Dec2025 13:45:53.738] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[30Dec2025 13:45:53.740] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected -[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game -[30Dec2025 13:45:54.462] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Stopping singleplayer server as player logged out -[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server -[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players -[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds -[30Dec2025 13:45:55.085] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[30Dec2025 13:45:55.717] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[30Dec2025 13:45:55.719] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[30Dec2025 13:45:55.734] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World): All chunks are saved -[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved -[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved -[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved -[30Dec2025 13:46:03.217] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! +[23janv.2026 13:39:24.349] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\polar\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] +[23janv.2026 13:39:24.361] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.12 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0 +[23janv.2026 13:39:24.489] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow +[23janv.2026 13:39:24.667] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 +[23janv.2026 13:39:25.029] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 +[23janv.2026 13:39:25.219] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/polar/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT +[23janv.2026 13:39:25.350] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: AMD Radeon RX 9070 GL version 4.6.0 Core Profile Context 26.1.1.251128, ATI Technologies Inc. +[23janv.2026 13:39:25.638] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.643] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.647] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.650] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file +[23janv.2026 13:39:25.734] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! +[23janv.2026 13:39:25.829] [main/ERROR] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Missing or unsupported mandatory dependencies: + Mod ID: 'kubejs', Requested by: 'custom_ore_gen', Expected range: '[1902.6.2-build.359,)', Actual version: '[MISSING]' +[23janv.2026 13:39:27.218] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\polar\.gradle\caches\forge_gradle\assets, --assetIndex, 5] +[23janv.2026 13:39:28.255] [main/WARN] [oshi.driver.windows.perfmon.PerfmonDisabled/]: Invalid registry value type detected for PerfOS counters. Should be REG_DWORD. Ignoring: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfOS\Performance\Disable Performance Counters. +[23janv.2026 13:39:31.382] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 188 Datafixer optimizations took 255 milliseconds +[23janv.2026 13:39:33.251] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema +[23janv.2026 13:39:33.252] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema +[23janv.2026 13:39:33.286] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[23janv.2026 13:39:33.302] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev +[23janv.2026 13:39:33.509] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 +[23janv.2026 13:39:33.896] [Render thread/FATAL] [net.minecraftforge.fml.ModLoader/CORE]: Error during pre-loading phase +net.minecraftforge.fml.ModLoadingException: Mod §ecustom_ore_gen§r requires §6kubejs§r §o1902.6.2-build.359 or above§r +§7Currently, §6kubejs§r§7 is §o§nnot installed + at net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.3.0.jar:?] + at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] + at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] + at java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?] + at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] + at net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.3.0.jar:?] + at net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:69) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:89) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:69) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraft.client.Minecraft.(Minecraft.java:459) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at net.minecraft.client.main.Main.main(Main.java:182) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.loading.targets.ForgeClientUserdevLaunchHandler.devService(ForgeClientUserdevLaunchHandler.java:19) ~[fmlloader-1.20.1-47.3.0.jar:?] + at net.minecraftforge.fml.loading.targets.CommonDevLaunchHandler.lambda$makeService$7(CommonDevLaunchHandler.java:135) ~[fmlloader-1.20.1-47.3.0.jar:?] + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] +[23janv.2026 13:39:34.224] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.sound.SoundEngineLoadEvent to a broken mod state +[23janv.2026 13:39:34.348] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$Block to a broken mod state +[23janv.2026 13:39:34.351] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$Item to a broken mod state +[23janv.2026 13:39:34.486] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RenderLevelStageEvent$RegisterStageEvent to a broken mod state +[23janv.2026 13:39:34.543] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterParticleProvidersEvent to a broken mod state +[23janv.2026 13:39:34.597] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterClientReloadListenersEvent to a broken mod state +[23janv.2026 13:39:34.598] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$RegisterLayerDefinitions to a broken mod state +[23janv.2026 13:39:34.598] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$RegisterRenderers to a broken mod state +[23janv.2026 13:39:34.599] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterTextureAtlasSpriteLoadersEvent to a broken mod state +[23janv.2026 13:39:34.600] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterClientTooltipComponentFactoriesEvent to a broken mod state +[23janv.2026 13:39:34.601] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterEntitySpectatorShadersEvent to a broken mod state +[23janv.2026 13:39:34.601] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterKeyMappingsEvent to a broken mod state +[23janv.2026 13:39:34.604] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterRecipeBookCategoriesEvent to a broken mod state +[23janv.2026 13:39:34.609] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterGuiOverlaysEvent to a broken mod state +[23janv.2026 13:39:34.614] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterDimensionSpecialEffectsEvent to a broken mod state +[23janv.2026 13:39:34.616] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterNamedRenderTypesEvent to a broken mod state +[23janv.2026 13:39:34.617] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterColorHandlersEvent$ColorResolvers to a broken mod state +[23janv.2026 13:39:34.618] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterItemDecorationsEvent to a broken mod state +[23janv.2026 13:39:34.626] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterPresetEditorsEvent to a broken mod state +[23janv.2026 13:39:34.718] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla +[23janv.2026 13:39:34.764] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$RegisterGeometryLoaders to a broken mod state +[23janv.2026 13:39:34.885] [Worker-Main-6/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.0.06.hex, loading +[23janv.2026 13:39:35.650] [Worker-Main-12/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$RegisterAdditional to a broken mod state +[23janv.2026 13:39:36.148] [Worker-Main-12/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$ModifyBakingResult to a broken mod state +[23janv.2026 13:39:36.234] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play +[23janv.2026 13:39:36.234] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break +[23janv.2026 13:39:36.287] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on SteelSeries Sonar - Gaming (SteelSeries Sonar Virtual Audio Device) +[23janv.2026 13:39:36.289] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started +[23janv.2026 13:39:36.289] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.sound.SoundEngineLoadEvent to a broken mod state +[23janv.2026 13:39:36.423] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas +[23janv.2026 13:39:36.431] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.431] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas +[23janv.2026 13:39:36.431] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.432] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas +[23janv.2026 13:39:36.432] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.432] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas +[23janv.2026 13:39:36.432] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.432] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas +[23janv.2026 13:39:36.435] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.435] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas +[23janv.2026 13:39:36.435] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.436] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.ModelEvent$BakingCompleted to a broken mod state +[23janv.2026 13:39:36.511] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.513] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.569] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.570] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.574] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.576] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.580] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.581] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.582] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.582] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.584] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.585] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.586] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.586] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.589] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.589] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.590] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.590] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.591] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.596] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.596] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels to a broken mod state +[23janv.2026 13:39:36.596] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.EntityRenderersEvent$AddLayers to a broken mod state +[23janv.2026 13:39:36.647] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[23janv.2026 13:39:36.687] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.RegisterShadersEvent to a broken mod state +[23janv.2026 13:39:36.698] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[23janv.2026 13:39:36.698] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.698] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[23janv.2026 13:39:36.698] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.700] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[23janv.2026 13:39:36.700] [Render thread/ERROR] [net.minecraftforge.fml.ModLoader/]: Cowardly refusing to send event net.minecraftforge.client.event.TextureStitchEvent$Post to a broken mod state +[23janv.2026 13:39:36.793] [Render thread/FATAL] [net.minecraftforge.client.loading.ClientModLoader/]: Crash report saved to .\crash-reports\crash-2026-01-23_13.39.36-fml.txt +[23janv.2026 13:41:28.480] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! diff --git a/src/main/resources/assets/custom_ore_gen/lang/fr_fr.json b/src/main/resources/assets/custom_ore_gen/lang/fr_fr.json new file mode 100644 index 000000000..ca50871d8 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/lang/fr_fr.json @@ -0,0 +1,31 @@ +{ + "block.custom_ore_gen.lapisore": "Minerai de lapis", + "block.custom_ore_gen.sharddiamondblockore": "Bloc de minerai d'éclat de diamant", + "block.custom_ore_gen.concentratedcoalore": "Minerai de charbon concentré", + "block.custom_ore_gen.ironore": "Minerai de fer", + "block.custom_ore_gen.redstoneore": "Minerai de redstone", + "block.custom_ore_gen.deepslatelapisore": "Minerai de lapis des abîmes", + "item.custom_ore_gen.sharddiamondpickaxe": "Pioche en éclat de diamant", + "item.custom_ore_gen.diamondshard.description_0": "Éclat de diamant, pour créer des outils ou assembler un diamant", + "block.custom_ore_gen.copperhighore": "Minerai de cuivre riche", + "block.custom_ore_gen.copperlowerore": "Minerai de cuivre des abîmes", + "block.custom_ore_gen.loweremeraldore": "Minerai d'émeraude pauvre", + "block.custom_ore_gen.deepslateredstoneore": "Minerai de redstone des abîmes", + "block.custom_ore_gen.deepslateironore": "Minerai de fer des abîmes", + "item.custom_ore_gen.sharddiamondaxe": "Hache en éclat de diamant", + "block.custom_ore_gen.deepslatesharddiamondore": "Minerai d'éclat de diamant des abîmes", + "block.custom_ore_gen.deepslatediamondore": "Minerai de diamant des abîmes", + "item.custom_ore_gen.shardironore": "Minerai d'éclat de fer", + "item.custom_ore_gen.diamondshard": "Éclat de diamant", + "block.custom_ore_gen.deepslatepuregoldenore": "Minerai d'or pur des abîmes", + "block.custom_ore_gen.puregoldenore": "Minerai d'or pur", + "block.custom_ore_gen.highemeraldore": "Minerai d'émeraude", + "item.custom_ore_gen.sharddiamondshovel": "Pelle en éclat de diamant", + "item.custom_ore_gen.ore_biome_finder": "Détecteur de minerai", + "item.custom_ore_gen.sharddiamondhelmet": "Casque en éclat de diamant", + "item.custom_ore_gen.sharddiamondchestplate": "Plastron en éclat de diamant", + "item.custom_ore_gen.sharddiamondleggings": "Jambières en éclat de diamant", + "item.custom_ore_gen.sharddiamondboots": "Bottes en éclat de diamant", + "item.custom_ore_gen.sharddiamondpaxel": "Paxel en éclat de diamant", + "itemGroup.custom_ore_gen": "Custom Ore Gen" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json new file mode 100644 index 000000000..99d683233 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_concentrated_coal.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:concentratedcoalore" + } + ], + "results": [ + { + "count": 4, + "item": "minecraft:coal" + }, + { + "chance": 0.50, + "item": "minecraft:coal" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 250 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperhighore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperhighore.json new file mode 100644 index 000000000..816014c41 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperhighore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:copperhighore" + } + ], + "results": [ + { + "count": 5, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json new file mode 100644 index 000000000..07497af38 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_copperlowerore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:copperlowerore" + } + ], + "results": [ + { + "count": 5, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_copper" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json new file mode 100644 index 000000000..65e700902 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_diamond_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatediamondore" + } + ], + "results": [ + { + "count": 2, + "item": "minecraft:diamond" + }, + { + "chance": 0.25, + "item": "minecraft:diamond" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json new file mode 100644 index 000000000..54bd07381 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_iron_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslateironore" + } + ], + "results": [ + { + "count": 1, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.30, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json new file mode 100644 index 000000000..a984d61e8 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_lapis_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatelapisore" + } + ], + "results": [ + { + "count": 10, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.50, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json new file mode 100644 index 000000000..444452fa9 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_pure_gold_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatepuregoldenore" + } + ], + "results": [ + { + "count": 3, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.50, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json new file mode 100644 index 000000000..20cc2c686 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_redstone_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslateredstoneore" + } + ], + "results": [ + { + "count": 6, + "item": "minecraft:redstone" + }, + { + "chance": 0.50, + "item": "minecraft:redstone" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json new file mode 100644 index 000000000..a16b94720 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_deepslate_shard_diamond_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:deepslatesharddiamondore" + } + ], + "results": [ + { + "count": 2, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.25, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json new file mode 100644 index 000000000..0fd957c99 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_highemeraldore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:highemeraldore" + } + ], + "results": [ + { + "count": 2, + "item": "minecraft:emerald" + }, + { + "chance": 0.25, + "item": "minecraft:emerald" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_impure_iron.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_impure_iron.json new file mode 100644 index 000000000..242ea336a --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_impure_iron.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:ironore" + } + ], + "results": [ + { + "count": 1, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.30, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 250 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json new file mode 100644 index 000000000..abc8c459b --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_lapis_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:lapisore" + } + ], + "results": [ + { + "count": 10, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.50, + "item": "minecraft:lapis_lazuli" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json new file mode 100644 index 000000000..5e98a9f68 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_loweremeraldore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:loweremeraldore" + } + ], + "results": [ + { + "count": 2, + "item": "minecraft:emerald" + }, + { + "chance": 0.25, + "item": "minecraft:emerald" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobbled_deepslate" + } + ], + "processingTime": 450 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_pure_gold.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_pure_gold.json new file mode 100644 index 000000000..2c89c2ab2 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_pure_gold.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:puregoldenore" + } + ], + "results": [ + { + "count": 3, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.50, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 250 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json new file mode 100644 index 000000000..5cef30eb7 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_redstone_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:redstoneore" + } + ], + "results": [ + { + "count": 6, + "item": "minecraft:redstone" + }, + { + "chance": 0.50, + "item": "minecraft:redstone" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json new file mode 100644 index 000000000..d05f74ea0 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/create_crushing_shard_diamond_ore.json @@ -0,0 +1,27 @@ +{ + "type": "create:crushing", + "ingredients": [ + { + "item": "custom_ore_gen:sharddiamondblockore" + } + ], + "results": [ + { + "count": 2, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.25, + "item": "custom_ore_gen:diamondshard" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.12, + "item": "minecraft:cobblestone" + } + ], + "processingTime": 350 +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json new file mode 100644 index 000000000..c77c6cf87 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_concentrated_coal.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:concentratedcoalore" + } + }, + "output": { + "count": 4, + "item": "minecraft:coal" + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json new file mode 100644 index 000000000..637b13934 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_impure_iron.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:ironore" + } + }, + "output": { + "count": 1, + "item": "minecraft:raw_iron" + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json new file mode 100644 index 000000000..d72f10c24 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_pure_gold.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:puregoldenore" + } + }, + "output": { + "count": 3, + "item": "minecraft:raw_gold" + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json new file mode 100644 index 000000000..859bda63f --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/mekanism_enriching_shard_diamond.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:enriching", + "input": { + "ingredient": { + "item": "custom_ore_gen:sharddiamondblockore" + } + }, + "output": { + "count": 2, + "item": "custom_ore_gen:diamondshard" + } +} \ No newline at end of file